aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-shared/src/schemas.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/service-shared/src/schemas.ts')
-rw-r--r--packages/service-shared/src/schemas.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/service-shared/src/schemas.ts b/packages/service-shared/src/schemas.ts
index 1513e43..586750c 100644
--- a/packages/service-shared/src/schemas.ts
+++ b/packages/service-shared/src/schemas.ts
@@ -26,3 +26,10 @@ export const unreadCount = z.object({
26}); 26});
27 27
28export type UnreadCount = z.infer<typeof unreadCount>; 28export type UnreadCount = z.infer<typeof unreadCount>;
29
30export const webSource = z.object({
31 code: z.string(),
32 url: z.string().nonempty(),
33});
34
35export type WebSource = z.infer<typeof webSource>;