@the-ai-company/cbio-node-runtime 1.63.7 → 1.64.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.
Files changed (191) hide show
  1. package/README.md +11 -5
  2. package/dist/clients/agent/client.d.ts +2 -2
  3. package/dist/clients/agent/client.js +46 -49
  4. package/dist/clients/agent/client.js.map +1 -1
  5. package/dist/clients/agent/contracts.d.ts +5 -5
  6. package/dist/clients/owner/client.js +209 -195
  7. package/dist/clients/owner/client.js.map +1 -1
  8. package/dist/clients/owner/contracts.d.ts +47 -48
  9. package/dist/protocol/childSecretNaming.d.ts +1 -1
  10. package/dist/protocol/childSecretNaming.js +2 -2
  11. package/dist/protocol/childSecretNaming.js.map +1 -1
  12. package/dist/protocol/crypto.d.ts +4 -4
  13. package/dist/protocol/crypto.js +14 -14
  14. package/dist/protocol/crypto.js.map +1 -1
  15. package/dist/protocol/identity.d.ts +2 -2
  16. package/dist/protocol/identity.js +4 -4
  17. package/dist/protocol/identity.js.map +1 -1
  18. package/dist/public-types.d.ts +1 -1
  19. package/dist/public-types.js +1 -1
  20. package/dist/public-types.js.map +1 -1
  21. package/dist/runtime/bootstrap.d.ts +6 -6
  22. package/dist/runtime/bootstrap.js +26 -26
  23. package/dist/runtime/bootstrap.js.map +1 -1
  24. package/dist/runtime/identity.d.ts +6 -6
  25. package/dist/runtime/identity.js +14 -12
  26. package/dist/runtime/identity.js.map +1 -1
  27. package/dist/runtime/index.d.ts +1 -1
  28. package/dist/runtime/index.js +1 -1
  29. package/dist/runtime/index.js.map +1 -1
  30. package/dist/runtime/owner-session.d.ts +1 -5
  31. package/dist/runtime/owner-session.js +4 -5
  32. package/dist/runtime/owner-session.js.map +1 -1
  33. package/dist/runtime/vault-metadata.d.ts +2 -2
  34. package/dist/runtime/vault-metadata.js +2 -2
  35. package/dist/runtime/vault-metadata.js.map +1 -1
  36. package/dist/vault-core/contracts.d.ts +235 -238
  37. package/dist/vault-core/contracts.js +25 -34
  38. package/dist/vault-core/contracts.js.map +1 -1
  39. package/dist/vault-core/core.d.ts +41 -42
  40. package/dist/vault-core/core.js +251 -274
  41. package/dist/vault-core/core.js.map +1 -1
  42. package/dist/vault-core/defaults.d.ts +25 -25
  43. package/dist/vault-core/defaults.js +95 -95
  44. package/dist/vault-core/defaults.js.map +1 -1
  45. package/dist/vault-core/errors.d.ts +1 -1
  46. package/dist/vault-core/errors.js.map +1 -1
  47. package/dist/vault-core/index.d.ts +2 -2
  48. package/dist/vault-core/index.js +2 -2
  49. package/dist/vault-core/index.js.map +1 -1
  50. package/dist/vault-core/persistence.d.ts +19 -19
  51. package/dist/vault-core/persistence.js +78 -67
  52. package/dist/vault-core/persistence.js.map +1 -1
  53. package/dist/vault-core/ports.d.ts +23 -23
  54. package/dist/vault-core/tool-metadata.js +6 -6
  55. package/dist/vault-core/tool-metadata.js.map +1 -1
  56. package/dist/vault-ingress/defaults.d.ts +2 -2
  57. package/dist/vault-ingress/defaults.js +10 -10
  58. package/dist/vault-ingress/defaults.js.map +1 -1
  59. package/dist/vault-ingress/index.d.ts +46 -47
  60. package/dist/vault-ingress/index.js +34 -37
  61. package/dist/vault-ingress/index.js.map +1 -1
  62. package/dist/vault-ingress/remote-transport.d.ts +2 -2
  63. package/dist/vault-ingress/remote-transport.js +27 -27
  64. package/dist/vault-ingress/remote-transport.js.map +1 -1
  65. package/docs/ARCHITECTURE.md +1 -1
  66. package/docs/CUSTODY_MODEL.md +3 -3
  67. package/docs/IDENTITY_MODEL.md +4 -4
  68. package/docs/REFERENCE.md +27 -2
  69. package/docs/api/README.md +3 -4
  70. package/docs/api/classes/IdentityError.md +1 -1
  71. package/docs/api/classes/OwnerClientError.md +1 -1
  72. package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +6 -6
  73. package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +12 -12
  74. package/docs/api/classes/PersistentVaultAuditLog.md +1 -1
  75. package/docs/api/classes/PersistentVaultSecretCustody.md +7 -7
  76. package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +12 -12
  77. package/docs/api/classes/PersistentVaultSecretRepository.md +7 -7
  78. package/docs/api/classes/VaultCore.md +53 -69
  79. package/docs/api/classes/VaultCoreError.md +1 -1
  80. package/docs/api/enumerations/AuditOperation.md +137 -0
  81. package/docs/api/enumerations/DispatchStatus.md +1 -1
  82. package/docs/api/enumerations/IdentityErrorCode.md +1 -1
  83. package/docs/api/enumerations/OwnerClientErrorCode.md +1 -1
  84. package/docs/api/functions/createAgentClient.md +1 -1
  85. package/docs/api/functions/createIdentity.md +2 -2
  86. package/docs/api/functions/createOwnerClient.md +1 -1
  87. package/docs/api/functions/createOwnerSession.md +1 -1
  88. package/docs/api/functions/createPersistentVaultCoreDependencies.md +3 -3
  89. package/docs/api/functions/createVault.md +1 -1
  90. package/docs/api/functions/createVaultCore.md +1 -1
  91. package/docs/api/functions/createVaultCoreDependencies.md +1 -1
  92. package/docs/api/functions/createVaultService.md +1 -1
  93. package/docs/api/functions/createWorkspaceStorage.md +1 -1
  94. package/docs/api/functions/deriveRootAgentId.md +3 -3
  95. package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +4 -4
  96. package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
  97. package/docs/api/functions/handleVaultAgentControlHttp.md +1 -1
  98. package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
  99. package/docs/api/functions/initializeVaultCustody.md +1 -1
  100. package/docs/api/functions/listVaults.md +1 -1
  101. package/docs/api/functions/readVaultProfile.md +3 -3
  102. package/docs/api/functions/recoverVault.md +4 -4
  103. package/docs/api/functions/recoverVaultWorkingKey.md +1 -1
  104. package/docs/api/functions/restoreIdentity.md +3 -3
  105. package/docs/api/functions/updateVaultMetadata.md +1 -1
  106. package/docs/api/functions/writeVaultProfile.md +3 -3
  107. package/docs/api/interfaces/AgentClient.md +3 -3
  108. package/docs/api/interfaces/AgentDispatchIntent.md +7 -7
  109. package/docs/api/interfaces/AgentDispatchTransport.md +1 -1
  110. package/docs/api/interfaces/AgentIdentity.md +3 -3
  111. package/docs/api/interfaces/AgentIdentityRecord.md +11 -11
  112. package/docs/api/interfaces/AgentRequestResult.md +9 -9
  113. package/docs/api/interfaces/AgentRuntimeManifest.md +13 -13
  114. package/docs/api/interfaces/AgentSecretGrant.md +11 -11
  115. package/docs/api/interfaces/AgentSigner.md +1 -1
  116. package/docs/api/interfaces/AgentVisibleRequestRecord.md +13 -13
  117. package/docs/api/interfaces/AgentVisibleSecretRecord.md +13 -13
  118. package/docs/api/interfaces/AuditEntry.md +45 -25
  119. package/docs/api/interfaces/CbioRuntime.md +10 -10
  120. package/docs/api/interfaces/CreateAgentClientOptions.md +1 -1
  121. package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
  122. package/docs/api/interfaces/CreateOwnerClientOptions.md +3 -13
  123. package/docs/api/interfaces/CreateOwnerSessionOptions.md +4 -10
  124. package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +3 -3
  125. package/docs/api/interfaces/CreateVaultOptions.md +2 -2
  126. package/docs/api/interfaces/CreatedVault.md +1 -1
  127. package/docs/api/interfaces/DefaultPolicyEngineOptions.md +9 -9
  128. package/docs/api/interfaces/DispatchAuthorization.md +11 -11
  129. package/docs/api/interfaces/DispatchInstruction.md +9 -9
  130. package/docs/api/interfaces/DispatchRequest.md +11 -11
  131. package/docs/api/interfaces/DispatchResult.md +11 -11
  132. package/docs/api/interfaces/IStorageProvider.md +1 -1
  133. package/docs/api/interfaces/InitializeVaultCustodyOptions.md +1 -1
  134. package/docs/api/interfaces/InitializedVaultCustody.md +1 -1
  135. package/docs/api/interfaces/OwnerAgentProvisionResult.md +3 -3
  136. package/docs/api/interfaces/OwnerClient.md +43 -11
  137. package/docs/api/interfaces/OwnerCreateSecretInput.md +3 -3
  138. package/docs/api/interfaces/OwnerRemoveSecretInput.md +3 -3
  139. package/docs/api/interfaces/OwnerRequestRecord.md +19 -19
  140. package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
  141. package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
  142. package/docs/api/interfaces/OwnerSession.md +3 -3
  143. package/docs/api/interfaces/OwnerUpdateSecretInput.md +3 -3
  144. package/docs/api/interfaces/OwnerVisibleRequestRecord.md +21 -21
  145. package/docs/api/interfaces/RecoverVaultOptions.md +4 -4
  146. package/docs/api/interfaces/RecoveredVault.md +1 -1
  147. package/docs/api/interfaces/RequestRecord.md +19 -19
  148. package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
  149. package/docs/api/interfaces/SecretAlias.md +1 -1
  150. package/docs/api/interfaces/SecretDestinationGrant.md +11 -11
  151. package/docs/api/interfaces/SecretId.md +1 -1
  152. package/docs/api/interfaces/SecretRecord.md +13 -13
  153. package/docs/api/interfaces/Signer.md +1 -1
  154. package/docs/api/interfaces/VaultApproveDispatchInput.md +5 -5
  155. package/docs/api/interfaces/VaultAuditQueryInput.md +7 -7
  156. package/docs/api/interfaces/VaultCoreDependenciesOptions.md +5 -5
  157. package/docs/api/interfaces/VaultCreateAgentInput.md +3 -3
  158. package/docs/api/interfaces/VaultExportSecretInput.md +3 -3
  159. package/docs/api/interfaces/VaultGetRequestInput.md +5 -5
  160. package/docs/api/interfaces/VaultGrantAgentSecretInput.md +7 -7
  161. package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +7 -7
  162. package/docs/api/interfaces/VaultId.md +1 -1
  163. package/docs/api/interfaces/VaultImportAgentInput.md +5 -5
  164. package/docs/api/interfaces/VaultIssueSessionTokenInput.md +5 -5
  165. package/docs/api/interfaces/VaultListAgentsInput.md +3 -3
  166. package/docs/api/interfaces/VaultListGrantsInput.md +7 -7
  167. package/docs/api/interfaces/VaultListRequestsInput.md +5 -5
  168. package/docs/api/interfaces/VaultListSecretsInput.md +3 -3
  169. package/docs/api/interfaces/VaultMetadata.md +1 -1
  170. package/docs/api/interfaces/VaultObject.md +1 -1
  171. package/docs/api/interfaces/VaultPrincipal.md +1 -1
  172. package/docs/api/interfaces/VaultProfile.md +1 -1
  173. package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +5 -5
  174. package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +3 -3
  175. package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +7 -7
  176. package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +7 -7
  177. package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
  178. package/docs/api/interfaces/VaultService.md +8 -24
  179. package/docs/api/interfaces/VaultUpdateAgentInput.md +5 -5
  180. package/docs/api/type-aliases/AgentId.md +1 -1
  181. package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
  182. package/docs/api/type-aliases/DispatchApprovalDecision.md +1 -1
  183. package/docs/api/type-aliases/GrantStatus.md +1 -1
  184. package/docs/api/type-aliases/SecretLifecycleStatus.md +1 -1
  185. package/docs/api/type-aliases/VaultPrincipalKind.md +1 -1
  186. package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +1 -1
  187. package/docs/zh/README.md +9 -3
  188. package/examples/process-isolation.ts +21 -21
  189. package/package.json +2 -2
  190. package/docs/api/enumerations/AuditAction.md +0 -143
  191. package/docs/api/enumerations/AuditOutcome.md +0 -35
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -6,27 +6,27 @@
6
6
 
7
7
  ## Properties
8
8
 
9
- ### grantedAt?
9
+ ### granted\_at?
10
10
 
11
- > `optional` **grantedAt?**: `string`
11
+ > `optional` **granted\_at?**: `string`
12
12
 
13
13
  ***
14
14
 
15
- ### requestedAt
15
+ ### requested\_at
16
16
 
17
- > **requestedAt**: `string`
17
+ > **requested\_at**: `string`
18
18
 
19
19
  ***
20
20
 
21
- ### rootAgentId
21
+ ### root\_agent\_id
22
22
 
23
- > **rootAgentId**: `string`
23
+ > **root\_agent\_id**: `string`
24
24
 
25
25
  ***
26
26
 
27
- ### secretAlias
27
+ ### secret\_alias
28
28
 
29
- > **secretAlias**: `string`
29
+ > **secret\_alias**: `string`
30
30
 
31
31
  ***
32
32
 
@@ -36,6 +36,6 @@
36
36
 
37
37
  ***
38
38
 
39
- ### vaultId
39
+ ### vault\_id
40
40
 
41
- > **vaultId**: [`VaultId`](VaultId.md)
41
+ > **vault\_id**: [`VaultId`](VaultId.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -6,9 +6,9 @@
6
6
 
7
7
  ## Properties
8
8
 
9
- ### createdAt
9
+ ### created\_at
10
10
 
11
- > **createdAt**: `string`
11
+ > **created\_at**: `string`
12
12
 
13
13
  ***
14
14
 
@@ -18,15 +18,15 @@
18
18
 
19
19
  ***
20
20
 
21
- ### executionStatus
21
+ ### execution\_status
22
22
 
23
- > **executionStatus**: [`DispatchStatus`](../enumerations/DispatchStatus.md)
23
+ > **execution\_status**: [`DispatchStatus`](../enumerations/DispatchStatus.md)
24
24
 
25
25
  ***
26
26
 
27
- ### hasResponseBody
27
+ ### has\_response\_body
28
28
 
29
- > **hasResponseBody**: `boolean`
29
+ > **has\_response\_body**: `boolean`
30
30
 
31
31
  ***
32
32
 
@@ -36,18 +36,18 @@
36
36
 
37
37
  ***
38
38
 
39
- ### requestId
39
+ ### request\_id
40
40
 
41
- > **requestId**: `string`
41
+ > **request\_id**: `string`
42
42
 
43
43
  ***
44
44
 
45
- ### responseStatus?
45
+ ### response\_status?
46
46
 
47
- > `optional` **responseStatus?**: `number`
47
+ > `optional` **response\_status?**: `number`
48
48
 
49
49
  ***
50
50
 
51
- ### targetUrl
51
+ ### target\_url
52
52
 
53
- > **targetUrl**: `string`
53
+ > **target\_url**: `string`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -12,9 +12,9 @@
12
12
 
13
13
  ***
14
14
 
15
- ### createdAt
15
+ ### created\_at
16
16
 
17
- > **createdAt**: `string`
17
+ > **created\_at**: `string`
18
18
 
19
19
  ***
20
20
 
@@ -24,21 +24,21 @@
24
24
 
25
25
  ***
26
26
 
27
- ### issuerId
27
+ ### issuer\_id
28
28
 
29
- > **issuerId**: `string` \| `null`
29
+ > **issuer\_id**: `string` \| `null`
30
30
 
31
31
  ***
32
32
 
33
- ### lifecycleStatus
33
+ ### lifecycle\_status
34
34
 
35
- > **lifecycleStatus**: [`SecretLifecycleStatus`](../type-aliases/SecretLifecycleStatus.md)
35
+ > **lifecycle\_status**: [`SecretLifecycleStatus`](../type-aliases/SecretLifecycleStatus.md)
36
36
 
37
37
  ***
38
38
 
39
- ### secretId
39
+ ### secret\_id
40
40
 
41
- > **secretId**: [`SecretId`](SecretId.md)
41
+ > **secret\_id**: [`SecretId`](SecretId.md)
42
42
 
43
43
  ***
44
44
 
@@ -48,15 +48,15 @@
48
48
 
49
49
  ***
50
50
 
51
- ### updatedAt
51
+ ### updated\_at
52
52
 
53
- > **updatedAt**: `string`
53
+ > **updated\_at**: `string`
54
54
 
55
55
  ***
56
56
 
57
- ### vaultId
57
+ ### vault\_id
58
58
 
59
- > **vaultId**: [`VaultId`](VaultId.md)
59
+ > **vault\_id**: [`VaultId`](VaultId.md)
60
60
 
61
61
  ***
62
62
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -6,15 +6,15 @@
6
6
 
7
7
  ## Properties
8
8
 
9
- ### action
9
+ ### actor
10
10
 
11
- > **action**: [`AuditAction`](../enumerations/AuditAction.md)
11
+ > **actor**: [`VaultPrincipal`](VaultPrincipal.md)
12
12
 
13
13
  ***
14
14
 
15
- ### actor
15
+ ### decision
16
16
 
17
- > **actor**: [`VaultPrincipal`](VaultPrincipal.md)
17
+ > **decision**: `"allowed"` \| `"denied"`
18
18
 
19
19
  ***
20
20
 
@@ -24,60 +24,80 @@
24
24
 
25
25
  ***
26
26
 
27
- ### entryId
27
+ ### error\_code?
28
+
29
+ > `optional` **error\_code?**: `string` \| `null`
30
+
31
+ ***
32
+
33
+ ### event\_id
28
34
 
29
- > **entryId**: `string`
35
+ > **event\_id**: `string`
30
36
 
31
37
  ***
32
38
 
33
- ### occurredAt
39
+ ### execution\_status
34
40
 
35
- > **occurredAt**: `string`
41
+ > **execution\_status**: `"not_executed"` \| `"succeeded"` \| `"failed"`
36
42
 
37
43
  ***
38
44
 
39
- ### outcome
45
+ ### operation
40
46
 
41
- > **outcome**: [`AuditOutcome`](../enumerations/AuditOutcome.md)
47
+ > **operation**: [`AuditOperation`](../enumerations/AuditOperation.md)
42
48
 
43
49
  ***
44
50
 
45
- ### requestId?
51
+ ### request\_id?
46
52
 
47
- > `optional` **requestId?**: `string`
53
+ > `optional` **request\_id?**: `string`
48
54
 
49
55
  ***
50
56
 
51
- ### rootAgentId?
57
+ ### root\_agent\_id?
52
58
 
53
- > `optional` **rootAgentId?**: `string`
59
+ > `optional` **root\_agent\_id?**: `string`
54
60
 
55
61
  ***
56
62
 
57
- ### secretAlias?
63
+ ### secret\_alias?
58
64
 
59
- > `optional` **secretAlias?**: `string`
65
+ > `optional` **secret\_alias?**: `string`
60
66
 
61
67
  ***
62
68
 
63
- ### secretId?
69
+ ### secret\_id?
64
70
 
65
- > `optional` **secretId?**: `string`
71
+ > `optional` **secret\_id?**: `string`
66
72
 
67
73
  ***
68
74
 
69
- ### siteId?
75
+ ### site\_id?
76
+
77
+ > `optional` **site\_id?**: `string`
78
+
79
+ ***
80
+
81
+ ### target?
82
+
83
+ > `optional` **target?**: `object`
84
+
85
+ #### kind
86
+
87
+ > **kind**: `"http"` \| `"other"`
88
+
89
+ #### url
70
90
 
71
- > `optional` **siteId?**: `string`
91
+ > **url**: `string`
72
92
 
73
93
  ***
74
94
 
75
- ### targetUrl?
95
+ ### ts
76
96
 
77
- > `optional` **targetUrl?**: `string`
97
+ > **ts**: `string`
78
98
 
79
99
  ***
80
100
 
81
- ### vaultId
101
+ ### vault\_id
82
102
 
83
- > **vaultId**: [`VaultId`](VaultId.md)
103
+ > **vault\_id**: `string`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -56,7 +56,7 @@ A CreatedIdentity containing the ID and keys.
56
56
 
57
57
  ```ts
58
58
  const identity = createIdentity({ nickname: 'my-agent' });
59
- console.log(identity.rootAgentId);
59
+ console.log(identity.root_agent_id);
60
60
  ```
61
61
 
62
62
  ***
@@ -230,9 +230,9 @@ Configuration for the new vault.
230
230
 
231
231
  ### deriveVaultWorkingKeyFromPassword
232
232
 
233
- > **deriveVaultWorkingKeyFromPassword**: (`password`, `vaultId`) => `string`
233
+ > **deriveVaultWorkingKeyFromPassword**: (`password`, `vault_id`) => `string`
234
234
 
235
- Derives a 256-bit working key from a user password and salt (vaultId).
235
+ Derives a 256-bit working key from a user password and salt (vault_id).
236
236
  Using scrypt for memory-hard key derivation to resist brute-force attacks.
237
237
 
238
238
  #### Parameters
@@ -241,7 +241,7 @@ Using scrypt for memory-hard key derivation to resist brute-force attacks.
241
241
 
242
242
  `string`
243
243
 
244
- ##### vaultId
244
+ ##### vault\_id
245
245
 
246
246
  `string`
247
247
 
@@ -392,7 +392,7 @@ Workspace storage where the vault was created.
392
392
 
393
393
  [`RecoverVaultOptions`](RecoverVaultOptions.md)
394
394
 
395
- Recovery options (must include `vaultId` and `password`).
395
+ Recovery options (must include `vault_id` and `password`).
396
396
 
397
397
  ##### Returns
398
398
 
@@ -404,7 +404,7 @@ A [RecoveredVault](RecoveredVault.md) instance.
404
404
 
405
405
  ```ts
406
406
  const vault = await recoverVault({
407
- vaultId: 'vault_123',
407
+ vault_id: 'vault_123',
408
408
  password: 'my-strong-password'
409
409
  });
410
410
  ```
@@ -421,7 +421,7 @@ Recovers an existing vault using the default workspace storage.
421
421
 
422
422
  [`RecoverVaultOptions`](RecoverVaultOptions.md)
423
423
 
424
- Recovery options including vaultId and password.
424
+ Recovery options including vault_id and password.
425
425
 
426
426
  ##### Returns
427
427
 
@@ -431,13 +431,13 @@ Recovery options including vaultId and password.
431
431
 
432
432
  ### restoreIdentity
433
433
 
434
- > **restoreIdentity**: (`privateKey`, `options`) => `CreatedIdentity`
434
+ > **restoreIdentity**: (`private_key`, `options`) => `CreatedIdentity`
435
435
 
436
436
  Restores an identity from an existing private key.
437
437
 
438
438
  #### Parameters
439
439
 
440
- ##### privateKey
440
+ ##### private\_key
441
441
 
442
442
  `string`
443
443
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -12,19 +12,9 @@
12
12
 
13
13
  ***
14
14
 
15
- ### ownerIdentity
15
+ ### password\_verifier?
16
16
 
17
- > **ownerIdentity**: `object`
18
-
19
- #### rootAgentId
20
-
21
- > **rootAgentId**: `string`
22
-
23
- ***
24
-
25
- ### passwordVerifier?
26
-
27
- > `optional` **passwordVerifier?**: (`password`) => `boolean` \| `Promise`\<`boolean`\>
17
+ > `optional` **password\_verifier?**: (`password`) => `boolean` \| `Promise`\<`boolean`\>
28
18
 
29
19
  #### Parameters
30
20
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -16,12 +16,6 @@
16
16
 
17
17
  ***
18
18
 
19
- ### ownerIdentity?
20
-
21
- > `optional` **ownerIdentity?**: `CreatedIdentity` \| \{ `rootAgentId`: `string`; \}
22
-
23
- ***
24
-
25
19
  ### password
26
20
 
27
21
  > **password**: `string`
@@ -118,10 +112,10 @@
118
112
 
119
113
  ***
120
114
 
121
- ### vaultId
115
+ ### vault\_id
122
116
 
123
- > **vaultId**: `string`
117
+ > **vault\_id**: `string`
124
118
 
125
119
  #### Inherited from
126
120
 
127
- [`RecoverVaultOptions`](RecoverVaultOptions.md).[`vaultId`](RecoverVaultOptions.md#vaultid)
121
+ [`RecoverVaultOptions`](RecoverVaultOptions.md).[`vault_id`](RecoverVaultOptions.md#vault_id)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -6,9 +6,9 @@
6
6
 
7
7
  ## Properties
8
8
 
9
- ### vaultId
9
+ ### vault\_id
10
10
 
11
- > **vaultId**: `string`
11
+ > **vault\_id**: `string`
12
12
 
13
13
  ***
14
14
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  ## Extends
8
8
 
9
- - `Omit`\<[`CreatePersistentVaultCoreDependenciesOptions`](CreatePersistentVaultCoreDependenciesOptions.md), `"vaultWorkingKey"` \| `"vaultId"`\>
9
+ - `Omit`\<[`CreatePersistentVaultCoreDependenciesOptions`](CreatePersistentVaultCoreDependenciesOptions.md), `"vaultWorkingKey"` \| `"vault_id"`\>
10
10
 
11
11
  ## Properties
12
12
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -16,22 +16,22 @@
16
16
 
17
17
  ***
18
18
 
19
+ ### trusted\_issuer\_ids?
20
+
21
+ > `optional` **trusted\_issuer\_ids?**: readonly `string`[]
22
+
23
+ ***
24
+
19
25
  ### trustedIssuerIdResolver?
20
26
 
21
- > `optional` **trustedIssuerIdResolver?**: (`issuerId`) => `boolean` \| `Promise`\<`boolean`\>
27
+ > `optional` **trustedIssuerIdResolver?**: (`issuer_id`) => `boolean` \| `Promise`\<`boolean`\>
22
28
 
23
29
  #### Parameters
24
30
 
25
- ##### issuerId
31
+ ##### issuer\_id
26
32
 
27
33
  `string`
28
34
 
29
35
  #### Returns
30
36
 
31
37
  `boolean` \| `Promise`\<`boolean`\>
32
-
33
- ***
34
-
35
- ### trustedIssuerIds?
36
-
37
- > `optional` **trustedIssuerIds?**: readonly `string`[]
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -12,17 +12,17 @@
12
12
 
13
13
  ***
14
14
 
15
- ### missingGrants?
15
+ ### missing\_grants?
16
16
 
17
- > `optional` **missingGrants?**: `object`
17
+ > `optional` **missing\_grants?**: `object`
18
18
 
19
- #### agentSecret?
19
+ #### agent\_secret?
20
20
 
21
- > `optional` **agentSecret?**: `boolean`
21
+ > `optional` **agent\_secret?**: `boolean`
22
22
 
23
- #### secretDestination?
23
+ #### secret\_destination?
24
24
 
25
- > `optional` **secretDestination?**: `boolean`
25
+ > `optional` **secret\_destination?**: `boolean`
26
26
 
27
27
  ***
28
28
 
@@ -32,12 +32,12 @@
32
32
 
33
33
  ***
34
34
 
35
- ### secretId
35
+ ### secret\_id
36
36
 
37
- > **secretId**: [`SecretId`](SecretId.md) \| `null`
37
+ > **secret\_id**: [`SecretId`](SecretId.md) \| `null`
38
38
 
39
39
  ***
40
40
 
41
- ### vaultId
41
+ ### vault\_id
42
42
 
43
- > **vaultId**: [`VaultId`](VaultId.md)
43
+ > **vault\_id**: [`VaultId`](VaultId.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -24,24 +24,24 @@
24
24
 
25
25
  ***
26
26
 
27
- ### requestId
27
+ ### request\_id
28
28
 
29
- > **requestId**: `string`
29
+ > **request\_id**: `string`
30
30
 
31
31
  ***
32
32
 
33
- ### secretId
33
+ ### secret\_id
34
34
 
35
- > **secretId**: [`SecretId`](SecretId.md)
35
+ > **secret\_id**: [`SecretId`](SecretId.md)
36
36
 
37
37
  ***
38
38
 
39
- ### targetUrl
39
+ ### target\_url
40
40
 
41
- > **targetUrl**: `string`
41
+ > **target\_url**: `string`
42
42
 
43
43
  ***
44
44
 
45
- ### vaultId
45
+ ### vault\_id
46
46
 
47
- > **vaultId**: [`VaultId`](VaultId.md)
47
+ > **vault\_id**: [`VaultId`](VaultId.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.7**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.64.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -48,21 +48,21 @@
48
48
 
49
49
  ***
50
50
 
51
- ### requestedAt
51
+ ### request\_id
52
52
 
53
- > **requestedAt**: `string`
53
+ > **request\_id**: `string`
54
54
 
55
55
  ***
56
56
 
57
- ### requestId
57
+ ### requested\_at
58
58
 
59
- > **requestId**: `string`
59
+ > **requested\_at**: `string`
60
60
 
61
61
  ***
62
62
 
63
- ### secretAlias?
63
+ ### secret\_alias?
64
64
 
65
- > `optional` **secretAlias?**: `string`
65
+ > `optional` **secret\_alias?**: `string`
66
66
 
67
67
  ***
68
68
 
@@ -72,12 +72,12 @@
72
72
 
73
73
  ***
74
74
 
75
- ### targetUrl
75
+ ### target\_url
76
76
 
77
- > **targetUrl**: `string`
77
+ > **target\_url**: `string`
78
78
 
79
79
  ***
80
80
 
81
- ### vaultId
81
+ ### vault\_id
82
82
 
83
- > **vaultId**: [`VaultId`](VaultId.md)
83
+ > **vault\_id**: [`VaultId`](VaultId.md)