We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d8992d commit f1d73fdCopy full SHA for f1d73fd
1 file changed
src/types.ts
@@ -1464,6 +1464,8 @@ export type Event = CustomEventData & {
1464
user?: UserResponse;
1465
user_id?: string;
1466
watcher_count?: number;
1467
+ channel_last_message_at?: string;
1468
+ app?: Record<string, unknown>; // TODO: further specify type
1469
};
1470
1471
export type UserCustomEvent = CustomEventData & {
@@ -2346,6 +2348,8 @@ export type ChannelData = CustomChannelData &
2346
2348
created_by: UserResponse | null;
2347
2349
created_by_id: UserResponse['id'];
2350
members: string[] | Array<NewMemberPayload>;
2351
+ blocklist_behavior: AutomodBehavior;
2352
+ automod: Automod;
2353
}>;
2354
2355
export type ChannelMute = {
0 commit comments