mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-06-04 18:00:11 +00:00
fix(RESTPutAPIGuildIncidentActionsJSONBody): add null (#1387)
This commit is contained in:
4
deno/rest/v10/guild.ts
generated
4
deno/rest/v10/guild.ts
generated
@@ -1044,11 +1044,11 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
/**
|
||||
* When invites will be enabled again
|
||||
*/
|
||||
invites_disabled_until?: string | undefined;
|
||||
invites_disabled_until?: string | null | undefined;
|
||||
/**
|
||||
* When direct messages will be enabled again
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
dms_disabled_until?: string | null | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
4
deno/rest/v9/guild.ts
generated
4
deno/rest/v9/guild.ts
generated
@@ -1050,11 +1050,11 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
/**
|
||||
* When invites will be enabled again
|
||||
*/
|
||||
invites_disabled_until?: string | undefined;
|
||||
invites_disabled_until?: string | null | undefined;
|
||||
/**
|
||||
* When direct messages will be enabled again
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
dms_disabled_until?: string | null | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
@@ -1044,11 +1044,11 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
/**
|
||||
* When invites will be enabled again
|
||||
*/
|
||||
invites_disabled_until?: string | undefined;
|
||||
invites_disabled_until?: string | null | undefined;
|
||||
/**
|
||||
* When direct messages will be enabled again
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
dms_disabled_until?: string | null | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
@@ -1050,11 +1050,11 @@ export interface RESTPutAPIGuildIncidentActionsJSONBody {
|
||||
/**
|
||||
* When invites will be enabled again
|
||||
*/
|
||||
invites_disabled_until?: string | undefined;
|
||||
invites_disabled_until?: string | null | undefined;
|
||||
/**
|
||||
* When direct messages will be enabled again
|
||||
*/
|
||||
dms_disabled_until?: string | undefined;
|
||||
dms_disabled_until?: string | null | undefined;
|
||||
}
|
||||
|
||||
export type RESTPutAPIGuildIncidentActionsResult = APIIncidentsData;
|
||||
|
||||
Reference in New Issue
Block a user