Skip to content

Commit

Permalink
docs(APIGuild): any guild can have description (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvito7 committed Mar 29, 2022
1 parent f173b18 commit 16a996d
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions deno/payloads/v10/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
*/
banner?: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down Expand Up @@ -267,7 +267,7 @@ export interface APIGuild extends APIPartialGuild {
*/
vanity_url_code: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description: string | null;
/**
Expand Down
4 changes: 2 additions & 2 deletions deno/payloads/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
*/
banner?: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down Expand Up @@ -267,7 +267,7 @@ export interface APIGuild extends APIPartialGuild {
*/
vanity_url_code: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion deno/rest/v10/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export type RESTPatchAPIGuildJSONBody = AddUndefinedToPossiblyUndefinedPropertie
*/
features?: GuildFeature[];
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion deno/rest/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export type RESTPatchAPIGuildJSONBody = AddUndefinedToPossiblyUndefinedPropertie
*/
features?: GuildFeature[];
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down
4 changes: 2 additions & 2 deletions payloads/v10/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
*/
banner?: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down Expand Up @@ -267,7 +267,7 @@ export interface APIGuild extends APIPartialGuild {
*/
vanity_url_code: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description: string | null;
/**
Expand Down
4 changes: 2 additions & 2 deletions payloads/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface APIPartialGuild extends Omit<APIUnavailableGuild, 'unavailable'
*/
banner?: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down Expand Up @@ -267,7 +267,7 @@ export interface APIGuild extends APIPartialGuild {
*/
vanity_url_code: string | null;
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion rest/v10/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export type RESTPatchAPIGuildJSONBody = AddUndefinedToPossiblyUndefinedPropertie
*/
features?: GuildFeature[];
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion rest/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export type RESTPatchAPIGuildJSONBody = AddUndefinedToPossiblyUndefinedPropertie
*/
features?: GuildFeature[];
/**
* The description for the guild, if the guild is discoverable
* The description for the guild
*/
description?: string | null;
/**
Expand Down

0 comments on commit 16a996d

Please sign in to comment.