diff --git a/deno/payloads/v10/application.ts b/deno/payloads/v10/application.ts index 58a3f13b..8dfc6751 100644 --- a/deno/payloads/v10/application.ts +++ b/deno/payloads/v10/application.ts @@ -120,12 +120,12 @@ export interface APIApplication { /** * The interactions endpoint URL for the application */ - interactions_endpoint_url?: string; + interactions_endpoint_url?: string | null; /** * The application's role connection verification entry point, * which when configured will render the app as a verification method in the guild role verification configuration */ - role_connections_verification_url?: string; + role_connections_verification_url?: string | null; /** * Up to 5 tags of max 20 characters each describing the content and functionality of the application */ diff --git a/deno/payloads/v9/application.ts b/deno/payloads/v9/application.ts index 58a3f13b..8dfc6751 100644 --- a/deno/payloads/v9/application.ts +++ b/deno/payloads/v9/application.ts @@ -120,12 +120,12 @@ export interface APIApplication { /** * The interactions endpoint URL for the application */ - interactions_endpoint_url?: string; + interactions_endpoint_url?: string | null; /** * The application's role connection verification entry point, * which when configured will render the app as a verification method in the guild role verification configuration */ - role_connections_verification_url?: string; + role_connections_verification_url?: string | null; /** * Up to 5 tags of max 20 characters each describing the content and functionality of the application */ diff --git a/payloads/v10/application.ts b/payloads/v10/application.ts index d1a9ab80..d168dac3 100644 --- a/payloads/v10/application.ts +++ b/payloads/v10/application.ts @@ -120,12 +120,12 @@ export interface APIApplication { /** * The interactions endpoint URL for the application */ - interactions_endpoint_url?: string; + interactions_endpoint_url?: string | null; /** * The application's role connection verification entry point, * which when configured will render the app as a verification method in the guild role verification configuration */ - role_connections_verification_url?: string; + role_connections_verification_url?: string | null; /** * Up to 5 tags of max 20 characters each describing the content and functionality of the application */ diff --git a/payloads/v9/application.ts b/payloads/v9/application.ts index d1a9ab80..d168dac3 100644 --- a/payloads/v9/application.ts +++ b/payloads/v9/application.ts @@ -120,12 +120,12 @@ export interface APIApplication { /** * The interactions endpoint URL for the application */ - interactions_endpoint_url?: string; + interactions_endpoint_url?: string | null; /** * The application's role connection verification entry point, * which when configured will render the app as a verification method in the guild role verification configuration */ - role_connections_verification_url?: string; + role_connections_verification_url?: string | null; /** * Up to 5 tags of max 20 characters each describing the content and functionality of the application */