* feat: instant meeting browser notifcations * chore: support multiple notifications * chore: save progress * fix: add test notification and move file * fix: type err * chore: feedback improvements * chore: undo DENY
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
import { z } from "zod";
|
|
|
|
export const subscriptionSchema = z.object({
|
|
endpoint: z.string(),
|
|
expirationTime: z.any().optional(),
|
|
keys: z.object({
|
|
auth: z.string(),
|
|
p256dh: z.string(),
|
|
}),
|
|
});
|