mirror of
https://github.com/bitwarden/browser
synced 2026-02-14 07:23:45 +00:00
Create new types for SSH_Key within 1pux
This commit is contained in:
committed by
Bernd Schoolmann
parent
b18fa68acc
commit
950ef83d4c
@@ -46,6 +46,7 @@ export enum CategoryEnum {
|
||||
EmailAccount = "111",
|
||||
API_Credential = "112",
|
||||
MedicalRecord = "113",
|
||||
SSH_Key = "114",
|
||||
}
|
||||
|
||||
export interface Item {
|
||||
@@ -116,6 +117,7 @@ export interface Value {
|
||||
creditCardType?: string | null;
|
||||
creditCardNumber?: string | null;
|
||||
reference?: string | null;
|
||||
sshKey?: SSHKey | null;
|
||||
}
|
||||
|
||||
export interface Email {
|
||||
@@ -130,6 +132,19 @@ export interface Address {
|
||||
zip: string;
|
||||
state: string;
|
||||
}
|
||||
|
||||
export interface SSHKey {
|
||||
privateKey: string;
|
||||
metadata: SSHKeyMetadata;
|
||||
}
|
||||
|
||||
export interface SSHKeyMetadata {
|
||||
privateKey: string;
|
||||
publicKey: string;
|
||||
fingerprint: string;
|
||||
keyType: string;
|
||||
}
|
||||
|
||||
export interface InputTraits {
|
||||
keyboard: string;
|
||||
correction: string;
|
||||
|
||||
Reference in New Issue
Block a user