@discordjs/builders 2.0.0-dev.1765238522-f38395ec4 → 2.0.0-dev.1765281707-2c3bf5c81
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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -3131,8 +3131,8 @@ var numberOptionPredicate = import_zod8.z.object({
|
|
|
3131
3131
|
...numericMixinNumberOptionPredicate.shape
|
|
3132
3132
|
}).and(autocompleteOrNumberChoicesMixinOptionPredicate);
|
|
3133
3133
|
var stringOptionPredicate = basicOptionPredicate.extend({
|
|
3134
|
-
max_length: import_zod8.z.number().min(
|
|
3135
|
-
min_length: import_zod8.z.number().min(
|
|
3134
|
+
max_length: import_zod8.z.number().min(1).max(6e3).optional(),
|
|
3135
|
+
min_length: import_zod8.z.number().min(0).max(6e3).optional()
|
|
3136
3136
|
}).and(autocompleteOrStringChoicesMixinOptionPredicate);
|
|
3137
3137
|
var baseChatInputCommandPredicate = sharedNameAndDescriptionPredicate.extend({
|
|
3138
3138
|
contexts: import_zod8.z.array(import_zod8.z.enum(import_v1028.InteractionContextType)).optional(),
|
|
@@ -5862,7 +5862,7 @@ var MessageBuilder = class {
|
|
|
5862
5862
|
};
|
|
5863
5863
|
|
|
5864
5864
|
// src/index.ts
|
|
5865
|
-
var version = "2.0.0-dev.
|
|
5865
|
+
var version = "2.0.0-dev.1765281707-2c3bf5c81";
|
|
5866
5866
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5867
5867
|
0 && (module.exports = {
|
|
5868
5868
|
ActionRowBuilder,
|