Skip to content

Commit

Permalink
Merge pull request #6 from withuno/matching_hosts_support
Browse files Browse the repository at this point in the history
support for matching_hosts that leak into existing vaults
  • Loading branch information
ceberly authored Jun 1, 2023
2 parents c1e5b12 + 950294f commit 8b3562f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions schemas/7/vault.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"properties": {
"idCardValue": { "type": "string" },
"vaultSchemaMajor": { "type": "integer" },
"vaultSchemaMinor": { "type": "integer" },
"uuid": {
"type": "string",
"format": "uuid"
Expand Down Expand Up @@ -294,6 +295,7 @@
"type": "string",
"format": "uuid"
},
"matching_hosts": { "type": "array", "items": { "type": "string" } },
"name": { "type": "string" },
"url": { "type": "string" },
"username": { "type": "string" },
Expand Down
2 changes: 2 additions & 0 deletions types/vault.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
export interface Vault {
idCardValue: string;
vaultSchemaMajor: number;
vaultSchemaMinor?: number;
uuid: string;
email?: string;
validatedPhoneNumber?: string;
Expand All @@ -34,6 +35,7 @@ export interface Vault {
}
export interface ManualItem {
id: string;
matching_hosts?: string[];
name?: string;
url?: string;
username?: string;
Expand Down

0 comments on commit 8b3562f

Please sign in to comment.