From a024d6343c672d15754e14ef3d183eee02b5432f Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Wed, 22 Oct 2025 18:00:16 +0200 Subject: [PATCH] fix: add `BulkApplicationCommandCreateSchema` --- src/schemas/api/bots/ApplicationCommandCreateSchema.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/schemas/api/bots/ApplicationCommandCreateSchema.ts b/src/schemas/api/bots/ApplicationCommandCreateSchema.ts index 0217d889..a03b81cd 100644 --- a/src/schemas/api/bots/ApplicationCommandCreateSchema.ts +++ b/src/schemas/api/bots/ApplicationCommandCreateSchema.ts @@ -17,3 +17,5 @@ export interface ApplicationCommandCreateSchema { contexts?: InteractionContextType[]; handler?: ApplicationCommandHandlerType; } + +export type BulkApplicationCommandCreateSchema = ApplicationCommandCreateSchema[];