@discordjs/builders 2.0.0-dev.1760443302-7a3a21b26 → 2.0.0-dev.1760486511-25b22c67a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -2579,6 +2579,7 @@ var LabelBuilder = class extends ComponentBuilder {
2579
2579
  const { component, ...rest } = data;
2580
2580
  this.data = {
2581
2581
  ...structuredClone(rest),
2582
+ // @ts-expect-error fixed in https://github.com/discordjs/discord.js/pull/11108
2582
2583
  component: component ? createComponentBuilder(component) : void 0,
2583
2584
  type: import_v1024.ComponentType.Label
2584
2585
  };
@@ -3690,6 +3691,7 @@ var ModalBuilder = class {
3690
3691
  const { components = [], ...rest } = data;
3691
3692
  this.data = {
3692
3693
  ...structuredClone(rest),
3694
+ // @ts-expect-error fixed in https://github.com/discordjs/discord.js/pull/11108
3693
3695
  components: components.map((component) => createComponentBuilder(component))
3694
3696
  };
3695
3697
  }
@@ -5626,7 +5628,7 @@ var MessageBuilder = class {
5626
5628
  };
5627
5629
 
5628
5630
  // src/index.ts
5629
- var version = "2.0.0-dev.1760443302-7a3a21b26";
5631
+ var version = "2.0.0-dev.1760486511-25b22c67a";
5630
5632
  // Annotate the CommonJS export names for ESM import in node:
5631
5633
  0 && (module.exports = {
5632
5634
  ActionRowBuilder,