-
-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: components v2 in builders #10788
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 2 Skipped Deployments
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
didn't look at your tests; otherwise, so far mostly LGTM
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #10788 +/- ##
==========================================
+ Coverage 39.12% 39.99% +0.86%
==========================================
Files 244 253 +9
Lines 14798 15248 +450
Branches 1412 1469 +57
==========================================
+ Hits 5790 6098 +308
- Misses 8996 9138 +142
Partials 12 12
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
packages/builders/src/components/selectMenu/StringSelectMenuOption.ts
Outdated
Show resolved
Hide resolved
73107a2
to
62124db
Compare
5ab5a10
to
20bd512
Compare
ecd6c68
to
a2aae6c
Compare
* const thumbnail = new ThumbnailBuilder({ | ||
* description: 'some text', | ||
* media: { | ||
* url: 'https://cdn.discordapp.com/embed/assets/4.png', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* url: 'https://cdn.discordapp.com/embed/assets/4.png', | |
* url: 'https://cdn.discordapp.com/embed/avatars/4.png', |
.refine((flags) => { | ||
// If we have flags, ensure we don't have the ComponentsV2 flag | ||
if (flags) { | ||
return (flags & MessageFlags.IsComponentsV2) !== MessageFlags.IsComponentsV2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feels more idiomatic as it is not an inverse check:
return (flags & MessageFlags.IsComponentsV2) !== MessageFlags.IsComponentsV2; | |
return (flags & MessageFlags.IsComponentsV2) === 0 |
Please describe the changes this PR makes and why it should be merged:
🤫
Status and versioning classification: