File tree 4 files changed +60
-0
lines changed
4 files changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -280,6 +280,10 @@ export interface APIGuild extends APIPartialGuild {
280
280
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
281
281
*/
282
282
safety_alerts_channel_id : Snowflake | null ;
283
+ /**
284
+ * The incidents data for this guild
285
+ */
286
+ incidents_data : IncidentsData ;
283
287
}
284
288
285
289
/**
@@ -1120,3 +1124,14 @@ export enum GuildOnboardingPromptType {
1120
1124
MultipleChoice ,
1121
1125
Dropdown ,
1122
1126
}
1127
+
1128
+ export interface IncidentsData {
1129
+ /**
1130
+ * When invites get enabled again
1131
+ */
1132
+ invites_disabled_until : string | null ;
1133
+ /**
1134
+ * When direct messages get enabled again
1135
+ */
1136
+ dms_disabled_until : string | null ;
1137
+ }
Original file line number Diff line number Diff line change @@ -280,6 +280,10 @@ export interface APIGuild extends APIPartialGuild {
280
280
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
281
281
*/
282
282
safety_alerts_channel_id : Snowflake | null ;
283
+ /**
284
+ * The incidents data for this guild
285
+ */
286
+ incidents_data : IncidentsData ;
283
287
}
284
288
285
289
/**
@@ -1112,3 +1116,14 @@ export enum GuildOnboardingPromptType {
1112
1116
MultipleChoice ,
1113
1117
Dropdown ,
1114
1118
}
1119
+
1120
+ export interface IncidentsData {
1121
+ /**
1122
+ * When invites get enabled again
1123
+ */
1124
+ invites_disabled_until : string | null ;
1125
+ /**
1126
+ * When direct messages get enabled again
1127
+ */
1128
+ dms_disabled_until : string | null ;
1129
+ }
Original file line number Diff line number Diff line change @@ -280,6 +280,10 @@ export interface APIGuild extends APIPartialGuild {
280
280
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
281
281
*/
282
282
safety_alerts_channel_id : Snowflake | null ;
283
+ /**
284
+ * The incidents data for this guild
285
+ */
286
+ incidents_data : IncidentsData ;
283
287
}
284
288
285
289
/**
@@ -1120,3 +1124,14 @@ export enum GuildOnboardingPromptType {
1120
1124
MultipleChoice ,
1121
1125
Dropdown ,
1122
1126
}
1127
+
1128
+ export interface IncidentsData {
1129
+ /**
1130
+ * When invites get enabled again
1131
+ */
1132
+ invites_disabled_until : string | null ;
1133
+ /**
1134
+ * When direct messages get enabled again
1135
+ */
1136
+ dms_disabled_until : string | null ;
1137
+ }
Original file line number Diff line number Diff line change @@ -280,6 +280,10 @@ export interface APIGuild extends APIPartialGuild {
280
280
* The id of the channel where admins and moderators of Community guilds receive safety alerts from Discord
281
281
*/
282
282
safety_alerts_channel_id : Snowflake | null ;
283
+ /**
284
+ * The incidents data for this guild
285
+ */
286
+ incidents_data : IncidentsData ;
283
287
}
284
288
285
289
/**
@@ -1112,3 +1116,14 @@ export enum GuildOnboardingPromptType {
1112
1116
MultipleChoice ,
1113
1117
Dropdown ,
1114
1118
}
1119
+
1120
+ export interface IncidentsData {
1121
+ /**
1122
+ * When invites get enabled again
1123
+ */
1124
+ invites_disabled_until : string | null ;
1125
+ /**
1126
+ * When direct messages get enabled again
1127
+ */
1128
+ dms_disabled_until : string | null ;
1129
+ }
You can’t perform that action at this time.
0 commit comments