Secret reminder types

This commit is contained in:
Daniel Hougaard
2024-01-19 00:27:34 +04:00
committed by Akhil Mohan
parent 4189d1028d
commit 3b39e38c89

View File

@@ -0,0 +1,25 @@
import { TSecrets } from "@app/db/schemas";
type TPartialSecret = Pick<TSecrets, "id" | "secretReminderRepeatDays" | "secretReminderNote">;
type TPartialInputSecret = Pick<
TSecrets,
"type" | "secretReminderNote" | "secretReminderRepeatDays" | "id"
>;
export type TCreateSecretReminderDTO = {
oldSecret: TPartialSecret;
newSecret: TPartialSecret;
projectId: string;
};
export type TDeleteSecretReminderDTO = {
secretId: string;
repeatDays: number;
};
export type THandleReminderDTO = {
newSecret: TPartialInputSecret;
oldSecret: TPartialSecret;
projectId: string;
};