mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-05-30 07:20:10 +00:00
fix: add RESTPutAPIGuildIncidentActionsResult (#1388)
This commit is contained in:
3
deno/payloads/v10/guild.ts
generated
3
deno/payloads/v10/guild.ts
generated
@@ -1237,6 +1237,9 @@ export enum GuildOnboardingPromptType {
|
||||
Dropdown,
|
||||
}
|
||||
|
||||
/**
|
||||
* @see {@link https://discord.com/developers/docs/resources/guild#incidents-data-object}
|
||||
*/
|
||||
export interface APIIncidentsData {
|
||||
/**
|
||||
* When invites get enabled again
|
||||
|
||||
3
deno/payloads/v9/guild.ts
generated
3
deno/payloads/v9/guild.ts
generated
@@ -1229,6 +1229,9 @@ export enum GuildOnboardingPromptType {
|
||||
Dropdown,
|
||||
}
|
||||
|
||||
/**
|
||||
* @see {@link https://discord.com/developers/docs/resources/guild#incidents-data-object}
|
||||
*/
|
||||
export interface APIIncidentsData {
|
||||
/**
|
||||
* When invites get enabled again
|
||||
|
||||
3
deno/rest/v10/guild.ts
generated
3
deno/rest/v10/guild.ts
generated
@@ -27,6 +27,7 @@ import type {
|
||||
APIGuildOnboardingPrompt,
|
||||
APIGuildOnboardingPromptOption,
|
||||
APIRoleColors,
|
||||
APIIncidentsData,
|
||||
} from '../../payloads/v10/mod.ts';
|
||||
import type {
|
||||
_AddUndefinedToPossiblyUndefinedPropertiesOfInterface,
|
||||
@@ -1049,3 +1050,5 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
3
deno/rest/v9/guild.ts
generated
3
deno/rest/v9/guild.ts
generated
@@ -27,6 +27,7 @@ import type {
|
||||
APIGuildOnboardingPrompt,
|
||||
APIGuildOnboardingPromptOption,
|
||||
APIRoleColors,
|
||||
APIIncidentsData,
|
||||
} from '../../payloads/v9/mod.ts';
|
||||
import type {
|
||||
_AddUndefinedToPossiblyUndefinedPropertiesOfInterface,
|
||||
@@ -1055,3 +1056,5 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
@@ -1237,6 +1237,9 @@ export enum GuildOnboardingPromptType {
|
||||
Dropdown,
|
||||
}
|
||||
|
||||
/**
|
||||
* @see {@link https://discord.com/developers/docs/resources/guild#incidents-data-object}
|
||||
*/
|
||||
export interface APIIncidentsData {
|
||||
/**
|
||||
* When invites get enabled again
|
||||
|
||||
@@ -1229,6 +1229,9 @@ export enum GuildOnboardingPromptType {
|
||||
Dropdown,
|
||||
}
|
||||
|
||||
/**
|
||||
* @see {@link https://discord.com/developers/docs/resources/guild#incidents-data-object}
|
||||
*/
|
||||
export interface APIIncidentsData {
|
||||
/**
|
||||
* When invites get enabled again
|
||||
|
||||
@@ -27,6 +27,7 @@ import type {
|
||||
APIGuildOnboardingPrompt,
|
||||
APIGuildOnboardingPromptOption,
|
||||
APIRoleColors,
|
||||
APIIncidentsData,
|
||||
} from '../../payloads/v10/index';
|
||||
import type {
|
||||
_AddUndefinedToPossiblyUndefinedPropertiesOfInterface,
|
||||
@@ -1049,3 +1050,5 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
@@ -27,6 +27,7 @@ import type {
|
||||
APIGuildOnboardingPrompt,
|
||||
APIGuildOnboardingPromptOption,
|
||||
APIRoleColors,
|
||||
APIIncidentsData,
|
||||
} from '../../payloads/v9/index';
|
||||
import type {
|
||||
_AddUndefinedToPossiblyUndefinedPropertiesOfInterface,
|
||||
@@ -1055,3 +1056,5 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
Reference in New Issue
Block a user