[Frontend] Add SECRET credential type for storing generic sensitive values (#4258)

This commit is contained in:
Marc Kelechava
2025-12-10 08:56:12 -08:00
committed by GitHub
parent e953dad878
commit 0207d13855
9 changed files with 283 additions and 66 deletions

View File

@@ -6,6 +6,7 @@ const typeParam = "type";
export const CredentialModalTypes = {
PASSWORD: "password",
CREDIT_CARD: "credit-card",
SECRET: "secret",
} as const;
export type CredentialModalType =