Skip to content

Commit

Permalink
feat(APIGuild): add incidents_data
Browse files Browse the repository at this point in the history
  • Loading branch information
sdanialraza committed Jan 24, 2025
1 parent 27840d1 commit fbb36a4
Show file tree
Hide file tree
Showing 8 changed files with 124 additions and 0 deletions.
23 changes: 23 additions & 0 deletions deno/payloads/v10/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@ export interface APIGuild extends APIPartialGuild {
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
*/
safety_alerts_channel_id: Snowflake | null;
/**
* The incidents data for this guild
*/
incidents_data: APIIncidentsData | null;
}

/**
Expand Down Expand Up @@ -1160,3 +1164,22 @@ export enum GuildOnboardingPromptType {
MultipleChoice,
Dropdown,
}

export interface APIIncidentsData {
/**
* When invites get enabled again
*/
invites_disabled_until: string | null;
/**
* When direct messages get enabled again
*/
dms_disabled_until: string | null;
/**
* When the dm spam was detected at
*/
dm_spam_detected_at: string | null;
/**
* When the raid was detected at
*/
raid_detected_at: string | null;
}
23 changes: 23 additions & 0 deletions deno/payloads/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@ export interface APIGuild extends APIPartialGuild {
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
*/
safety_alerts_channel_id: Snowflake | null;
/**
* The incidents data for this guild
*/
incidents_data: APIIncidentsData | null;
}

/**
Expand Down Expand Up @@ -1152,3 +1156,22 @@ export enum GuildOnboardingPromptType {
MultipleChoice,
Dropdown,
}

export interface APIIncidentsData {
/**
* When invites get enabled again
*/
invites_disabled_until: string | null;
/**
* When direct messages get enabled again
*/
dms_disabled_until: string | null;
/**
* When the dm spam was detected at
*/
dm_spam_detected_at: string | null;
/**
* When the raid was detected at
*/
raid_detected_at: string | null;
}
8 changes: 8 additions & 0 deletions deno/rest/v10/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,14 @@ export const Routes = {
return `/guilds/${guildId}/onboarding` as const;
},

/**
* Route for:
* - PUT `/guilds/${guild.id}/incident-actions`
*/
guildIncidentActions(guildId: Snowflake) {
return `/guilds/${guildId}/incident-actions` as const;
},

/**
* Route for:
* - GET `/applications/@me`
Expand Down
8 changes: 8 additions & 0 deletions deno/rest/v9/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,14 @@ export const Routes = {
return `/guilds/${guildId}/onboarding` as const;
},

/**
* Route for:
* - PUT `/guilds/${guild.id}/incident-actions`
*/
guildIncidentActions(guildId: Snowflake) {
return `/guilds/${guildId}/incident-actions` as const;
},

/**
* Route for:
* - GET `/applications/@me`
Expand Down
23 changes: 23 additions & 0 deletions payloads/v10/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@ export interface APIGuild extends APIPartialGuild {
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
*/
safety_alerts_channel_id: Snowflake | null;
/**
* The incidents data for this guild
*/
incidents_data: APIIncidentsData | null;
}

/**
Expand Down Expand Up @@ -1160,3 +1164,22 @@ export enum GuildOnboardingPromptType {
MultipleChoice,
Dropdown,
}

export interface APIIncidentsData {
/**
* When invites get enabled again
*/
invites_disabled_until: string | null;
/**
* When direct messages get enabled again
*/
dms_disabled_until: string | null;
/**
* When the dm spam was detected at
*/
dm_spam_detected_at: string | null;
/**
* When the raid was detected at
*/
raid_detected_at: string | null;
}
23 changes: 23 additions & 0 deletions payloads/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@ export interface APIGuild extends APIPartialGuild {
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
*/
safety_alerts_channel_id: Snowflake | null;
/**
* The incidents data for this guild
*/
incidents_data: APIIncidentsData | null;
}

/**
Expand Down Expand Up @@ -1152,3 +1156,22 @@ export enum GuildOnboardingPromptType {
MultipleChoice,
Dropdown,
}

export interface APIIncidentsData {
/**
* When invites get enabled again
*/
invites_disabled_until: string | null;
/**
* When direct messages get enabled again
*/
dms_disabled_until: string | null;
/**
* When the dm spam was detected at
*/
dm_spam_detected_at: string | null;
/**
* When the raid was detected at
*/
raid_detected_at: string | null;
}
8 changes: 8 additions & 0 deletions rest/v10/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,14 @@ export const Routes = {
return `/guilds/${guildId}/onboarding` as const;
},

/**
* Route for:
* - PUT `/guilds/${guild.id}/incident-actions`
*/
guildIncidentActions(guildId: Snowflake) {
return `/guilds/${guildId}/incident-actions` as const;
},

/**
* Route for:
* - GET `/applications/@me`
Expand Down
8 changes: 8 additions & 0 deletions rest/v9/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,14 @@ export const Routes = {
return `/guilds/${guildId}/onboarding` as const;
},

/**
* Route for:
* - PUT `/guilds/${guild.id}/incident-actions`
*/
guildIncidentActions(guildId: Snowflake) {
return `/guilds/${guildId}/incident-actions` as const;
},

/**
* Route for:
* - GET `/applications/@me`
Expand Down

0 comments on commit fbb36a4

Please sign in to comment.