1 files changed, 3 insertions, 3 deletions
diff --git a/dist/models/Application.d.ts b/dist/models/Application.d.ts
index 53483c49..68e026bb 100644
--- a/dist/models/Application.d.ts
+++ b/dist/models/Application.d.ts
@@ -1,6 +1,6 @@
export interface ApplicationCommand {
- id: bigint;
- application_id: bigint;
+ id: string;
+ application_id: string;
name: string;
description: string;
options?: ApplicationCommandOption[];
@@ -28,7 +28,7 @@ export declare enum ApplicationCommandOptionType {
ROLE = 8
}
export interface ApplicationCommandInteractionData {
- id: bigint;
+ id: string;
name: string;
options?: ApplicationCommandInteractionDataOption[];
}
|