1
1
import { AutoModerationRulePayload } from "../autoMod/autoMod.ts" ;
2
2
import { OverwritePayload } from "../channels/guild.ts" ;
3
- import { GuildThreadChannelPayload } from "../channels/thread.ts" ;
3
+ import {
4
+ GuildThreadChannelPayload ,
5
+ ThreadMetadataPayload ,
6
+ } from "../channels/thread.ts" ;
4
7
import { IntegrationPayload } from "../guilds/integration.ts" ;
8
+ import { GuildPayload } from "../guilds/guild.ts" ;
5
9
import { RolePayload } from "../guilds/role.ts" ;
6
- import { ApplicationCommandPayload } from "../interactions/command.ts" ;
10
+ import {
11
+ ApplicationCommandPayload ,
12
+ ApplicationCommandPermissions ,
13
+ } from "../interactions/command.ts" ;
7
14
import {
8
15
ScheduledEventPayload ,
9
16
ScheduledEventPrivacyLevel ,
10
17
ScheduledEventStatus ,
11
18
} from "../scheduledEvent/scheduledEvent.ts" ;
12
- import { StagePrivacyLevel } from "../stageInstances/stage.ts" ;
13
- import { StickerFormatType } from "../stickers/sticker.ts" ;
19
+ import {
20
+ StageInstancePayload ,
21
+ StagePrivacyLevel ,
22
+ } from "../stageInstances/stage.ts" ;
23
+ import { StickerFormatType , StickerPayload } from "../stickers/sticker.ts" ;
14
24
import { UserPayload } from "../users/user.ts" ;
15
25
import { WebhookPayload } from "../webhooks/webhook.ts" ;
26
+ import { ChannelPayload } from "../channels/base.ts" ;
27
+ import { GuildMemberPayload } from "../guilds/member.ts" ;
28
+ import { InvitePayload } from "../invites/intive.ts" ;
29
+ import { EmojiPayload } from "../emojis/emoij.ts" ;
16
30
17
31
export interface AuditLogPayload {
18
32
application_commands : ApplicationCommandPayload [ ] ;
@@ -90,6 +104,8 @@ export enum AuditLogEvents {
90
104
AUTO_MODERATION_BLOCK_MESSAGE = 143 ,
91
105
AUTO_MODERATION_FLAG_TO_CHANNEL = 144 ,
92
106
AUTO_MODERATION_USER_COMMUNICATION_DISABLED = 145 ,
107
+ CREATOR_MONETIZATION_REQUEST_CREATED = 150 ,
108
+ CREATOR_MONETIZATION_TERMS_ACCEPTED = 151 ,
93
109
}
94
110
95
111
export interface AuditLogEntryInfoPayload {
@@ -104,6 +120,7 @@ export interface AuditLogEntryInfoPayload {
104
120
message_id ?: string ;
105
121
role_name ?: string ;
106
122
type ?: string ;
123
+ integration_type ?: string ;
107
124
}
108
125
109
126
type AuditLogChangeValue =
@@ -115,7 +132,20 @@ type AuditLogChangeValue =
115
132
| StagePrivacyLevel
116
133
| ScheduledEventPrivacyLevel
117
134
| ScheduledEventStatus
118
- | RolePayload ;
135
+ | RolePayload
136
+ | GuildPayload
137
+ | ChannelPayload
138
+ | GuildMemberPayload
139
+ | InvitePayload
140
+ | WebhookPayload
141
+ | EmojiPayload
142
+ | IntegrationPayload
143
+ | StageInstancePayload
144
+ | StickerPayload
145
+ // | GuildScheduledEventPayload
146
+ | ThreadMetadataPayload
147
+ | ApplicationCommandPermissions
148
+ | AutoModerationRulePayload ;
119
149
120
150
export interface AuditLogChangePayload {
121
151
new_value ?: AuditLogChangeValue ;
0 commit comments