13 lines
445 B
TypeScript
13 lines
445 B
TypeScript
import * as v from 'valibot';
|
|
|
|
/** @see {@link https://docs.joinmastodon.org/entities/WebPushSubscription/} */
|
|
const webPushSubscriptionSchema = v.object({
|
|
id: v.pipe(v.unknown(), v.transform(String)),
|
|
endpoint: v.string(),
|
|
alerts: v.record(v.string(), v.boolean()),
|
|
server_key: v.string(),
|
|
});
|
|
|
|
type WebPushSubscription = v.InferOutput<typeof webPushSubscriptionSchema>;
|
|
|
|
export { webPushSubscriptionSchema, type WebPushSubscription };
|