Skip to content

Commit

Permalink
feat(GatewayGuildCreateDispatchData): add missing unavailable (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvito7 committed Jul 15, 2022
1 parent e78de0c commit 59e2477
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 4 additions & 0 deletions deno/gateway/v10.ts
Expand Up @@ -533,6 +533,10 @@ export interface GatewayGuildCreateDispatchData extends APIGuild {
* **This field is only sent within the [GUILD_CREATE](https://discord.com/developers/docs/topics/gateway#guild-create) event**
*/
large: boolean;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
/**
* Total number of members in this guild
*
Expand Down
4 changes: 4 additions & 0 deletions deno/gateway/v9.ts
Expand Up @@ -532,6 +532,10 @@ export interface GatewayGuildCreateDispatchData extends APIGuild {
* **This field is only sent within the [GUILD_CREATE](https://discord.com/developers/docs/topics/gateway#guild-create) event**
*/
large: boolean;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
/**
* Total number of members in this guild
*
Expand Down
4 changes: 0 additions & 4 deletions deno/payloads/v10/guild.ts
Expand Up @@ -69,10 +69,6 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
* The vanity url code for the guild
*/
vanity_url_code?: string | null;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
}

/**
Expand Down
4 changes: 0 additions & 4 deletions deno/payloads/v9/guild.ts
Expand Up @@ -69,10 +69,6 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
* The vanity url code for the guild
*/
vanity_url_code?: string | null;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions gateway/v10.ts
Expand Up @@ -533,6 +533,10 @@ export interface GatewayGuildCreateDispatchData extends APIGuild {
* **This field is only sent within the [GUILD_CREATE](https://discord.com/developers/docs/topics/gateway#guild-create) event**
*/
large: boolean;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
/**
* Total number of members in this guild
*
Expand Down
4 changes: 4 additions & 0 deletions gateway/v9.ts
Expand Up @@ -532,6 +532,10 @@ export interface GatewayGuildCreateDispatchData extends APIGuild {
* **This field is only sent within the [GUILD_CREATE](https://discord.com/developers/docs/topics/gateway#guild-create) event**
*/
large: boolean;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
/**
* Total number of members in this guild
*
Expand Down
4 changes: 0 additions & 4 deletions payloads/v10/guild.ts
Expand Up @@ -69,10 +69,6 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
* The vanity url code for the guild
*/
vanity_url_code?: string | null;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
}

/**
Expand Down
4 changes: 0 additions & 4 deletions payloads/v9/guild.ts
Expand Up @@ -69,10 +69,6 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
* The vanity url code for the guild
*/
vanity_url_code?: string | null;
/**
* `true` if this guild is unavailable due to an outage
*/
unavailable?: boolean;
}

/**
Expand Down

1 comment on commit 59e2477

@vercel
Copy link

@vercel vercel bot commented on 59e2477 Jul 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.