Variable: rawChatEventSchema
ts
const rawChatEventSchema: ZodObject<{
channelId: ZodString;
chatChannelId: ZodOptional<ZodString>;
content: ZodString;
emojis: ZodOptional<ZodRecord<ZodString, ZodString>>;
eventSentAt: ZodOptional<ZodString>;
messageTime: ZodNumber;
profile: ZodObject<{
badges: ZodOptional<ZodArray<ZodObject<{
imageUrl: ZodString;
}, $loose>>>;
nickname: ZodString;
userRoleCode: ZodOptional<ZodString>;
verifiedMark: ZodOptional<ZodBoolean>;
}, $loose>;
senderChannelId: ZodString;
userRoleCode: ZodOptional<ZodString>;
}, $loose>;Defined in: src/types/events.ts:25