* helper * Add script to move notification settings * wip, removal of NotificationSettings * event name * iteration * test * test * Remove last of NotificationSettings model * refactor * More fixes * snapshots * Change emails to class instances for type safety * test * docs * Update migration for self-hosted * tsc
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { isEmpty } from "lodash";
|
|
import { z } from "zod";
|
|
import { NotificationEventType } from "@shared/types";
|
|
|
|
export const NotificationSettingsCreateSchema = z.object({
|
|
body: z.object({
|
|
eventType: z.nativeEnum(NotificationEventType),
|
|
}),
|
|
});
|
|
|
|
export type NotificationSettingsCreateReq = z.infer<
|
|
typeof NotificationSettingsCreateSchema
|
|
>;
|
|
|
|
export const NotificationSettingsDeleteSchema = z.object({
|
|
body: z.object({
|
|
eventType: z.nativeEnum(NotificationEventType),
|
|
}),
|
|
});
|
|
|
|
export type NotificationSettingsDeleteReq = z.infer<
|
|
typeof NotificationSettingsDeleteSchema
|
|
>;
|
|
|
|
export const NotificationsUnsubscribeSchema = z
|
|
.object({
|
|
body: z.object({
|
|
userId: z.string().uuid().optional(),
|
|
token: z.string().optional(),
|
|
eventType: z.nativeEnum(NotificationEventType).optional(),
|
|
}),
|
|
query: z.object({
|
|
userId: z.string().uuid().optional(),
|
|
token: z.string().optional(),
|
|
eventType: z.nativeEnum(NotificationEventType).optional(),
|
|
}),
|
|
})
|
|
.refine((req) => !(isEmpty(req.body.userId) && isEmpty(req.query.userId)), {
|
|
message: "userId is required",
|
|
});
|
|
|
|
export type NotificationsUnsubscribeReq = z.infer<
|
|
typeof NotificationsUnsubscribeSchema
|
|
>;
|