1 files changed, 16 insertions, 16 deletions
diff --git a/src/schemas/api/developers/ApplicationModifySchema.ts b/src/schemas/api/developers/ApplicationModifySchema.ts
index a8717976..c550660a 100644
--- a/src/schemas/api/developers/ApplicationModifySchema.ts
+++ b/src/schemas/api/developers/ApplicationModifySchema.ts
@@ -17,22 +17,22 @@
*/
export interface ApplicationModifySchema {
- description?: string;
- icon?: string;
- cover_image?: string;
- interactions_endpoint_url?: string;
- max_participants?: number | null;
- name?: string;
- privacy_policy_url?: string;
- role_connections_verification_url?: string;
- tags?: string[];
- terms_of_service_url?: string;
- bot_public?: boolean;
- bot_require_code_grant?: boolean;
- flags?: number;
- custom_install_url?: string;
- guild_id?: string;
- /*install_params?: { TODO: Validation
+ description?: string;
+ icon?: string;
+ cover_image?: string;
+ interactions_endpoint_url?: string;
+ max_participants?: number | null;
+ name?: string;
+ privacy_policy_url?: string;
+ role_connections_verification_url?: string;
+ tags?: string[];
+ terms_of_service_url?: string;
+ bot_public?: boolean;
+ bot_require_code_grant?: boolean;
+ flags?: number;
+ custom_install_url?: string;
+ guild_id?: string;
+ /*install_params?: { TODO: Validation
scopes: string[];
permissions: string;
};*/
|