import * as v from 'valibot'; /** @see {@link https://docs.joinmastodon.org/entities/WebPushSubscription/} */ const webPushSubscriptionSchema = v.object({ id: z.coerce.string(), endpoint: v.string(), alerts: z.record(z.boolean()), server_key: v.string(), }); type WebPushSubscription = v.InferOutput; export { webPushSubscriptionSchema, type WebPushSubscription };