feat(hub,web): support scheduling messages for future delivery (#590)

This commit is contained in:
Junmo Kim
2026-05-18 09:09:17 +08:00
committed by GitHub
parent 2e96992dd4
commit b2a30c2e39
33 changed files with 3082 additions and 153 deletions
+2 -1
View File
@@ -171,7 +171,8 @@ export const DecryptedMessageSchema = z.object({
localId: z.string().nullable(),
content: z.unknown(),
createdAt: z.number(),
invokedAt: z.number().nullable().optional()
invokedAt: z.number().nullable().optional(),
scheduledAt: z.number().nullable().optional()
})
export type DecryptedMessage = z.infer<typeof DecryptedMessageSchema>