@discordjs/builders 2.0.0-dev.1766016119-427636ee7 → 2.0.0-dev.1766552010-7884ecd3a

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
@@ -104,7 +104,7 @@ var localeMapPredicate = z2.strictObject(
104
104
  // src/components/Assertions.ts
105
105
  var emojiPredicate = z3.strictObject({
106
106
  id: snowflakePredicate.optional(),
107
- name: z3.string().min(2).max(32).optional(),
107
+ name: z3.string().min(1).max(32).optional(),
108
108
  animated: z3.boolean().optional()
109
109
  }).refine((data) => data.id !== void 0 || data.name !== void 0, {
110
110
  error: "Either 'id' or 'name' must be provided"
@@ -5724,7 +5724,7 @@ var MessageBuilder = class {
5724
5724
  };
5725
5725
 
5726
5726
  // src/index.ts
5727
- var version = "2.0.0-dev.1766016119-427636ee7";
5727
+ var version = "2.0.0-dev.1766552010-7884ecd3a";
5728
5728
  export {
5729
5729
  ActionRowBuilder,
5730
5730
  AllowedMentionsBuilder,