We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea7fe99 commit 318825aCopy full SHA for 318825a
src/types.ts
@@ -353,7 +353,7 @@ export type ChannelMemberUpdates<
353
export type ChannelMemberResponse<
354
StreamChatGenerics extends ExtendableGenerics = DefaultGenerics
355
> = StreamChatGenerics['memberType'] & {
356
- archived_at?: string;
+ archived_at?: string | null;
357
ban_expires?: string;
358
banned?: boolean;
359
channel_role?: Role;
@@ -363,7 +363,7 @@ export type ChannelMemberResponse<
363
invited?: boolean;
364
is_moderator?: boolean;
365
notifications_muted?: boolean;
366
- pinned_at?: string;
+ pinned_at?: string | null;
367
role?: string;
368
shadow_banned?: boolean;
369
status?: InviteStatus;
0 commit comments