fix: invite-one-accept deep link would not route properly

This commit is contained in:
2025-07-14 20:49:40 -06:00
parent 861408c7bc
commit 33ce6bdb72
6 changed files with 70 additions and 53 deletions

View File

@@ -50,13 +50,15 @@ export const deepLinkSchemas = {
jwt: z.string(),
}),
contacts: z.object({
contacts: z.string(), // JSON string of contacts array
contactJwt: z.string().optional(),
inviteJwt: z.string().optional(),
}),
did: z.object({
did: z.string(),
}),
"invite-one-accept": z.object({
jwt: z.string(),
// optional because A) it could be a query param, and B) the page displays an input if things go wrong
jwt: z.string().optional(),
}),
"onboard-meeting-members": z.object({
id: z.string(),