Updated typings

This commit is contained in:
Daniel Hougaard
2023-11-28 13:49:28 +04:00
parent 6efb58da1a
commit 8886e57d4f
3 changed files with 6 additions and 6 deletions

View File

@@ -139,7 +139,7 @@ export const useUpdateSecretV3 = ({
latestFileKey,
tags,
secretComment,
secretReminderCron,
secretReminderRepeatDays,
secretReminderNote,
newSecretName,
skipMultilineEncoding
@@ -160,7 +160,7 @@ export const useUpdateSecretV3 = ({
environment,
type,
secretReminderNote,
secretReminderCron,
secretReminderRepeatDays,
secretPath,
secretId,
...encryptSecret(randomBytes, newSecretName ?? secretName, secretValue, secretComment),

View File

@@ -69,7 +69,7 @@ export const decryptSecrets = (
value: secretValue,
tags: encSecret.tags,
comment: secretComment,
reminderCron: encSecret.secretReminderCron,
reminderRepeatDays: encSecret.secretReminderRepeatDays,
reminderNote: encSecret.secretReminderNote,
createdAt: encSecret.createdAt,
updatedAt: encSecret.updatedAt,

View File

@@ -20,7 +20,7 @@ export type EncryptedSecret = {
secretCommentCiphertext: string;
secretCommentIV: string;
secretCommentTag: string;
secretReminderCron?: string | null;
secretReminderRepeatDays?: number | null;
secretReminderNote?: string | null;
tags: WsTag[];
};
@@ -31,7 +31,7 @@ export type DecryptedSecret = {
key: string;
value: string;
comment: string;
reminderCron?: string | null;
reminderRepeatDays?: number | null;
reminderNote?: string | null;
tags: WsTag[];
createdAt: string;
@@ -116,7 +116,7 @@ export type TUpdateSecretsV3DTO = {
secretId?: string;
secretValue: string;
secretComment?: string;
secretReminderCron?: string | null;
secretReminderRepeatDays?: number | null;
secretReminderNote?: string | null;
tags?: string[];
};