mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-19 04:53:30 +01:00
feat: upgrade zod to v4 (#11258)
* feat: upgrade zod to v4 * fix: requested changes --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
@@ -22,7 +22,7 @@ export type Command = {
|
||||
* Defines the schema for a command
|
||||
*/
|
||||
export const schema = z.object({
|
||||
data: z.record(z.any()),
|
||||
data: z.record(z.string(), z.any()),
|
||||
execute: z.function(),
|
||||
});
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ export type Event<EventName extends keyof ClientEvents = keyof ClientEvents> = {
|
||||
/**
|
||||
* Whether or not the event should only be listened to once
|
||||
*
|
||||
* @defaultValue false
|
||||
* @defaultValue `false`
|
||||
*/
|
||||
once?: boolean;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user