@sparkvault/sdk-mobile 5.2.3 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +7 -1
- package/package.json +1 -1
- package/src/types.ts +7 -1
package/dist/types.d.ts
CHANGED
|
@@ -447,8 +447,14 @@ export interface UpdateVaultResponse {
|
|
|
447
447
|
description?: string;
|
|
448
448
|
updated_at: number;
|
|
449
449
|
}
|
|
450
|
+
/**
|
|
451
|
+
* Unseal with exactly one key: the Vault Master Key, or a DVAK token
|
|
452
|
+
* (`dvak_…`) issued for the vault. The VAT returned inherits a DVAK's
|
|
453
|
+
* access level.
|
|
454
|
+
*/
|
|
450
455
|
export interface UnsealVaultRequest {
|
|
451
|
-
vmk
|
|
456
|
+
vmk?: string;
|
|
457
|
+
dvak_token?: string;
|
|
452
458
|
ttl_seconds?: number;
|
|
453
459
|
}
|
|
454
460
|
export interface UnsealVaultResponse {
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -523,8 +523,14 @@ export interface UpdateVaultResponse {
|
|
|
523
523
|
updated_at: number;
|
|
524
524
|
}
|
|
525
525
|
|
|
526
|
+
/**
|
|
527
|
+
* Unseal with exactly one key: the Vault Master Key, or a DVAK token
|
|
528
|
+
* (`dvak_…`) issued for the vault. The VAT returned inherits a DVAK's
|
|
529
|
+
* access level.
|
|
530
|
+
*/
|
|
526
531
|
export interface UnsealVaultRequest {
|
|
527
|
-
vmk
|
|
532
|
+
vmk?: string;
|
|
533
|
+
dvak_token?: string;
|
|
528
534
|
ttl_seconds?: number;
|
|
529
535
|
}
|
|
530
536
|
|