@discordjs/builders 2.0.0-dev.1742170412-79b79b6a4 → 2.0.0-dev.1742688827-73f2ef9c8

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.mjs CHANGED
@@ -1004,7 +1004,7 @@ var textInputPredicate = z3.object({
1004
1004
  min_length: z3.number().min(0).max(4e3).optional(),
1005
1005
  max_length: z3.number().min(1).max(4e3).optional(),
1006
1006
  placeholder: z3.string().max(100).optional(),
1007
- value: z3.string().max(4e3).optional(),
1007
+ value: z3.string().min(1).max(4e3).optional(),
1008
1008
  required: z3.boolean().optional()
1009
1009
  });
1010
1010
 
@@ -4154,7 +4154,7 @@ var MessageBuilder = class {
4154
4154
  };
4155
4155
 
4156
4156
  // src/index.ts
4157
- var version = "2.0.0-dev.1742170412-79b79b6a4";
4157
+ var version = "2.0.0-dev.1742688827-73f2ef9c8";
4158
4158
  export {
4159
4159
  ActionRowBuilder,
4160
4160
  AllowedMentionsBuilder,