diff --git a/deno/gateway/v10.ts b/deno/gateway/v10.ts index 37be704f..73093d32 100644 --- a/deno/gateway/v10.ts +++ b/deno/gateway/v10.ts @@ -821,11 +821,11 @@ export interface GatewayGuildMembersChunkDispatchData { /** * The chunk index in the expected chunks for this response (`0 <= chunk_index < chunk_count`) */ - chunk_index?: number; + chunk_index: number; /** * The total number of expected chunks for this response */ - chunk_count?: number; + chunk_count: number; /** * If passing an invalid id to `REQUEST_GUILD_MEMBERS`, it will be returned here */ diff --git a/deno/gateway/v9.ts b/deno/gateway/v9.ts index e463a475..31c1af79 100644 --- a/deno/gateway/v9.ts +++ b/deno/gateway/v9.ts @@ -820,11 +820,11 @@ export interface GatewayGuildMembersChunkDispatchData { /** * The chunk index in the expected chunks for this response (`0 <= chunk_index < chunk_count`) */ - chunk_index?: number; + chunk_index: number; /** * The total number of expected chunks for this response */ - chunk_count?: number; + chunk_count: number; /** * If passing an invalid id to `REQUEST_GUILD_MEMBERS`, it will be returned here */ diff --git a/gateway/v10.ts b/gateway/v10.ts index f48012c2..3ca844ad 100644 --- a/gateway/v10.ts +++ b/gateway/v10.ts @@ -821,11 +821,11 @@ export interface GatewayGuildMembersChunkDispatchData { /** * The chunk index in the expected chunks for this response (`0 <= chunk_index < chunk_count`) */ - chunk_index?: number; + chunk_index: number; /** * The total number of expected chunks for this response */ - chunk_count?: number; + chunk_count: number; /** * If passing an invalid id to `REQUEST_GUILD_MEMBERS`, it will be returned here */ diff --git a/gateway/v9.ts b/gateway/v9.ts index 55a84208..1586c821 100644 --- a/gateway/v9.ts +++ b/gateway/v9.ts @@ -820,11 +820,11 @@ export interface GatewayGuildMembersChunkDispatchData { /** * The chunk index in the expected chunks for this response (`0 <= chunk_index < chunk_count`) */ - chunk_index?: number; + chunk_index: number; /** * The total number of expected chunks for this response */ - chunk_count?: number; + chunk_count: number; /** * If passing an invalid id to `REQUEST_GUILD_MEMBERS`, it will be returned here */