Optional secret reminder typing

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

View File

@@ -116,6 +116,8 @@ export type TUpdateBulkSecretDTO = {
secretCommentIV?: string;
secretCommentTag?: string;
skipMultilineEncoding?: boolean;
secretReminderRepeatDays?: number | null;
secretReminderNote?: string | null;
}>;
} & TProjectPermission;
@@ -166,6 +168,8 @@ export type TUpdateSecretRawDTO = TProjectPermission & {
secretValue?: string;
type: SecretType;
skipMultilineEncoding?: boolean;
secretReminderRepeatDays?: number | null;
secretReminderNote?: string | null;
};
export type TDeleteSecretRawDTO = TProjectPermission & {