bigbuffet-rw/packages/pl-api/lib/entities/web-push-subscription.ts
marcin mikołajczak bc65755862 pl-api: Update docs
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-11-29 16:01:54 +01:00

19 lines
504 B
TypeScript

import * as v from 'valibot';
/**
* @category Schemas
* @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(),
});
/**
* @category Entity types
*/
type WebPushSubscription = v.InferOutput<typeof webPushSubscriptionSchema>;
export { webPushSubscriptionSchema, type WebPushSubscription };