@the-ai-company/cbio-node-runtime 1.63.3 → 1.63.6

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 (233) hide show
  1. package/README.md +48 -209
  2. package/dist/clients/agent/client.d.ts +18 -40
  3. package/dist/clients/agent/client.js +22 -109
  4. package/dist/clients/agent/client.js.map +1 -1
  5. package/dist/clients/agent/contracts.d.ts +1 -8
  6. package/dist/clients/agent/index.d.ts +1 -1
  7. package/dist/clients/owner/client.d.ts +2 -102
  8. package/dist/clients/owner/client.js +111 -266
  9. package/dist/clients/owner/client.js.map +1 -1
  10. package/dist/clients/owner/contracts.d.ts +37 -75
  11. package/dist/clients/owner/index.d.ts +2 -4
  12. package/dist/clients/owner/index.js +1 -2
  13. package/dist/clients/owner/index.js.map +1 -1
  14. package/dist/internal/id-factory.d.ts +0 -2
  15. package/dist/internal/id-factory.js +0 -6
  16. package/dist/internal/id-factory.js.map +1 -1
  17. package/dist/protocol/identity.d.ts +1 -1
  18. package/dist/protocol/identity.js +3 -3
  19. package/dist/protocol/identity.js.map +1 -1
  20. package/dist/public-types.d.ts +5 -14
  21. package/dist/public-types.js +1 -8
  22. package/dist/public-types.js.map +1 -1
  23. package/dist/runtime/bootstrap.d.ts +1 -3
  24. package/dist/runtime/bootstrap.js.map +1 -1
  25. package/dist/runtime/identity.d.ts +2 -2
  26. package/dist/runtime/identity.js +3 -5
  27. package/dist/runtime/identity.js.map +1 -1
  28. package/dist/runtime/index.d.ts +10 -12
  29. package/dist/runtime/index.js +7 -8
  30. package/dist/runtime/index.js.map +1 -1
  31. package/dist/runtime/owner-session.d.ts +7 -6
  32. package/dist/runtime/owner-session.js +5 -6
  33. package/dist/runtime/owner-session.js.map +1 -1
  34. package/dist/storage/fs.d.ts +3 -2
  35. package/dist/storage/fs.js +8 -5
  36. package/dist/storage/fs.js.map +1 -1
  37. package/dist/storage/prefix.d.ts +1 -0
  38. package/dist/storage/prefix.js +7 -0
  39. package/dist/storage/prefix.js.map +1 -1
  40. package/dist/storage/provider.d.ts +2 -0
  41. package/dist/vault-core/contracts.d.ts +95 -210
  42. package/dist/vault-core/contracts.js +8 -11
  43. package/dist/vault-core/contracts.js.map +1 -1
  44. package/dist/vault-core/core.d.ts +119 -62
  45. package/dist/vault-core/core.js +518 -1180
  46. package/dist/vault-core/core.js.map +1 -1
  47. package/dist/vault-core/defaults.d.ts +22 -44
  48. package/dist/vault-core/defaults.js +65 -234
  49. package/dist/vault-core/defaults.js.map +1 -1
  50. package/dist/vault-core/errors.d.ts +3 -2
  51. package/dist/vault-core/errors.js.map +1 -1
  52. package/dist/vault-core/index.d.ts +5 -5
  53. package/dist/vault-core/index.js +2 -2
  54. package/dist/vault-core/index.js.map +1 -1
  55. package/dist/vault-core/persistence.d.ts +72 -119
  56. package/dist/vault-core/persistence.js +310 -427
  57. package/dist/vault-core/persistence.js.map +1 -1
  58. package/dist/vault-core/ports.d.ts +19 -30
  59. package/dist/vault-core/read-policy.d.ts +3 -2
  60. package/dist/vault-core/read-policy.js.map +1 -1
  61. package/dist/vault-core/tool-metadata.js +2 -2
  62. package/dist/vault-core/tool-metadata.js.map +1 -1
  63. package/dist/vault-ingress/defaults.d.ts +4 -2
  64. package/dist/vault-ingress/defaults.js +14 -8
  65. package/dist/vault-ingress/defaults.js.map +1 -1
  66. package/dist/vault-ingress/index.d.ts +39 -119
  67. package/dist/vault-ingress/index.js +98 -456
  68. package/dist/vault-ingress/index.js.map +1 -1
  69. package/dist/vault-ingress/remote-transport.d.ts +5 -3
  70. package/dist/vault-ingress/remote-transport.js +8 -28
  71. package/dist/vault-ingress/remote-transport.js.map +1 -1
  72. package/docs/ARCHITECTURE.md +39 -22
  73. package/docs/CUSTODY_MODEL.md +1 -1
  74. package/docs/IDENTITY_MODEL.md +5 -5
  75. package/docs/MIGRATION-1.51.md +19 -19
  76. package/docs/MIGRATION-1.65.md +87 -0
  77. package/docs/PROCESS_ISOLATION.md +2 -2
  78. package/docs/REFERENCE.md +42 -224
  79. package/docs/api/README.md +48 -30
  80. package/docs/api/classes/IdentityError.md +1 -1
  81. package/docs/api/classes/OwnerClientError.md +1 -1
  82. package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +89 -0
  83. package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +125 -0
  84. package/docs/api/classes/PersistentVaultAuditLog.md +65 -0
  85. package/docs/api/classes/PersistentVaultSecretCustody.md +93 -0
  86. package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +125 -0
  87. package/docs/api/classes/PersistentVaultSecretRepository.md +127 -0
  88. package/docs/api/classes/VaultCore.md +264 -237
  89. package/docs/api/classes/VaultCoreError.md +3 -3
  90. package/docs/api/enumerations/AuditAction.md +143 -0
  91. package/docs/api/enumerations/AuditOutcome.md +35 -0
  92. package/docs/api/enumerations/DispatchStatus.md +35 -0
  93. package/docs/api/enumerations/IdentityErrorCode.md +1 -1
  94. package/docs/api/enumerations/OwnerClientErrorCode.md +1 -1
  95. package/docs/api/functions/createAgentClient.md +1 -15
  96. package/docs/api/functions/createIdentity.md +2 -2
  97. package/docs/api/functions/createOwnerClient.md +17 -0
  98. package/docs/api/functions/createOwnerSession.md +1 -1
  99. package/docs/api/functions/createPersistentVaultCoreDependencies.md +4 -4
  100. package/docs/api/functions/createVault.md +1 -1
  101. package/docs/api/functions/createVaultCore.md +1 -1
  102. package/docs/api/functions/createVaultCoreDependencies.md +1 -1
  103. package/docs/api/functions/createVaultService.md +5 -13
  104. package/docs/api/functions/createWorkspaceStorage.md +1 -1
  105. package/docs/api/functions/deriveRootAgentId.md +17 -0
  106. package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +1 -1
  107. package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
  108. package/docs/api/functions/handleVaultAgentControlHttp.md +2 -2
  109. package/docs/api/functions/handleVaultHttpDispatch.md +2 -2
  110. package/docs/api/functions/initializeVaultCustody.md +7 -3
  111. package/docs/api/functions/listVaults.md +1 -1
  112. package/docs/api/functions/readVaultProfile.md +1 -1
  113. package/docs/api/functions/recoverVault.md +1 -1
  114. package/docs/api/functions/recoverVaultWorkingKey.md +4 -8
  115. package/docs/api/functions/restoreIdentity.md +1 -1
  116. package/docs/api/functions/updateVaultMetadata.md +1 -1
  117. package/docs/api/functions/writeVaultProfile.md +1 -1
  118. package/docs/api/interfaces/AgentClient.md +20 -59
  119. package/docs/api/interfaces/AgentDispatchIntent.md +1 -1
  120. package/docs/api/interfaces/AgentDispatchTransport.md +12 -44
  121. package/docs/api/interfaces/AgentIdentity.md +3 -3
  122. package/docs/api/interfaces/AgentIdentityRecord.md +47 -0
  123. package/docs/api/interfaces/AgentRequestResult.md +35 -0
  124. package/docs/api/interfaces/AgentRuntimeManifest.md +55 -0
  125. package/docs/api/interfaces/AgentSecretGrant.md +41 -0
  126. package/docs/api/interfaces/AgentSigner.md +1 -1
  127. package/docs/api/interfaces/AgentVisibleRequestRecord.md +53 -0
  128. package/docs/api/interfaces/AgentVisibleSecretRecord.md +65 -0
  129. package/docs/api/interfaces/AuditEntry.md +83 -0
  130. package/docs/api/interfaces/CbioRuntime.md +13 -154
  131. package/docs/api/interfaces/CreateAgentClientOptions.md +4 -10
  132. package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
  133. package/docs/api/interfaces/{CreateVaultClientOptions.md → CreateOwnerClientOptions.md} +9 -11
  134. package/docs/api/interfaces/CreateOwnerSessionOptions.md +3 -121
  135. package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +3 -131
  136. package/docs/api/interfaces/CreateVaultOptions.md +1 -125
  137. package/docs/api/interfaces/CreatedVault.md +2 -2
  138. package/docs/api/interfaces/DefaultPolicyEngineOptions.md +1 -13
  139. package/docs/api/interfaces/DispatchAuthorization.md +43 -0
  140. package/docs/api/interfaces/DispatchInstruction.md +47 -0
  141. package/docs/api/interfaces/DispatchRequest.md +83 -0
  142. package/docs/api/interfaces/DispatchResult.md +53 -0
  143. package/docs/api/interfaces/IStorageProvider.md +13 -1
  144. package/docs/api/interfaces/InitializeVaultCustodyOptions.md +31 -11
  145. package/docs/api/interfaces/InitializedVaultCustody.md +1 -7
  146. package/docs/api/interfaces/OwnerAgentProvisionResult.md +2 -2
  147. package/docs/api/interfaces/OwnerClient.md +401 -0
  148. package/docs/api/interfaces/OwnerCreateSecretInput.md +1 -1
  149. package/docs/api/interfaces/OwnerRemoveSecretInput.md +1 -1
  150. package/docs/api/interfaces/OwnerRequestRecord.md +97 -0
  151. package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
  152. package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
  153. package/docs/api/interfaces/OwnerSession.md +3 -3
  154. package/docs/api/interfaces/OwnerUpdateSecretInput.md +1 -1
  155. package/docs/api/interfaces/OwnerVisibleRequestRecord.md +73 -0
  156. package/docs/api/interfaces/RecoverVaultOptions.md +1 -125
  157. package/docs/api/interfaces/RecoveredVault.md +2 -2
  158. package/docs/api/interfaces/RequestRecord.md +107 -0
  159. package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
  160. package/docs/api/interfaces/SecretAlias.md +11 -0
  161. package/docs/api/interfaces/SecretDestinationGrant.md +41 -0
  162. package/docs/api/interfaces/SecretId.md +11 -0
  163. package/docs/api/interfaces/SecretRecord.md +89 -0
  164. package/docs/api/interfaces/Signer.md +1 -1
  165. package/docs/api/interfaces/VaultApproveDispatchInput.md +3 -9
  166. package/docs/api/interfaces/VaultAuditQueryInput.md +1 -1
  167. package/docs/api/interfaces/VaultCoreDependenciesOptions.md +1 -5
  168. package/docs/api/interfaces/VaultCreateAgentInput.md +1 -1
  169. package/docs/api/interfaces/VaultExportSecretInput.md +1 -1
  170. package/docs/api/interfaces/VaultGetRequestInput.md +17 -0
  171. package/docs/api/interfaces/VaultGrantAgentSecretInput.md +23 -0
  172. package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +23 -0
  173. package/docs/api/interfaces/VaultId.md +11 -0
  174. package/docs/api/interfaces/VaultImportAgentInput.md +1 -1
  175. package/docs/api/interfaces/VaultIssueSessionTokenInput.md +5 -5
  176. package/docs/api/interfaces/VaultListAgentsInput.md +1 -1
  177. package/docs/api/interfaces/VaultListGrantsInput.md +23 -0
  178. package/docs/api/interfaces/VaultListRequestsInput.md +17 -0
  179. package/docs/api/interfaces/VaultListSecretsInput.md +1 -1
  180. package/docs/api/interfaces/VaultMetadata.md +1 -1
  181. package/docs/api/interfaces/VaultObject.md +2 -2
  182. package/docs/api/interfaces/VaultPrincipal.md +17 -0
  183. package/docs/api/interfaces/VaultProfile.md +1 -1
  184. package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +7 -7
  185. package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +1 -1
  186. package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +23 -0
  187. package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +23 -0
  188. package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
  189. package/docs/api/interfaces/VaultService.md +511 -0
  190. package/docs/api/interfaces/VaultUpdateAgentInput.md +7 -7
  191. package/docs/api/type-aliases/AgentId.md +7 -0
  192. package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
  193. package/docs/api/type-aliases/DispatchApprovalDecision.md +7 -0
  194. package/docs/api/type-aliases/GrantStatus.md +7 -0
  195. package/docs/api/type-aliases/SecretLifecycleStatus.md +7 -0
  196. package/docs/api/type-aliases/VaultPrincipalKind.md +7 -0
  197. package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +2 -2
  198. package/docs/es/README.md +3 -3
  199. package/docs/fr/README.md +3 -3
  200. package/docs/ja/README.md +5 -5
  201. package/docs/ko/README.md +5 -5
  202. package/docs/pt/README.md +3 -3
  203. package/docs/zh/PROCESS_ISOLATION.md +2 -2
  204. package/docs/zh/README.md +47 -63
  205. package/examples/process-isolation.ts +26 -35
  206. package/package.json +1 -1
  207. package/docs/api/functions/createOwnerHttpFlowBoundary.md +0 -17
  208. package/docs/api/functions/createStandardAcquireBoundary.md +0 -31
  209. package/docs/api/functions/createStandardDispatchBoundary.md +0 -23
  210. package/docs/api/functions/createVaultClient.md +0 -32
  211. package/docs/api/functions/deriveIdentityId.md +0 -17
  212. package/docs/api/functions/wrapVaultCoreAsVaultService.md +0 -31
  213. package/docs/api/interfaces/AgentSubmitCapabilityRequestInput.md +0 -41
  214. package/docs/api/interfaces/VaultApproveCapabilityRequestInput.md +0 -23
  215. package/docs/api/interfaces/VaultClient.md +0 -473
  216. package/docs/api/interfaces/VaultGrantCapabilityInput.md +0 -79
  217. package/docs/api/interfaces/VaultGrantCapabilityRequest.md +0 -23
  218. package/docs/api/interfaces/VaultIdentity.md +0 -11
  219. package/docs/api/interfaces/VaultListCapabilitiesInput.md +0 -17
  220. package/docs/api/interfaces/VaultRegisterFlowInput.md +0 -77
  221. package/docs/api/interfaces/VaultRevokeCapabilityInput.md +0 -23
  222. package/docs/api/interfaces/VaultSigner.md +0 -21
  223. package/docs/api/interfaces/VaultSubmitCapabilityRequestInput.md +0 -73
  224. package/docs/api/type-aliases/AgentCapabilityEnvelope.md +0 -7
  225. package/docs/api/type-aliases/AgentVisibleSecretRecord.md +0 -7
  226. package/docs/api/type-aliases/CreateOwnerClientOptions.md +0 -7
  227. package/docs/api/type-aliases/OwnerAgentView.md +0 -7
  228. package/docs/api/type-aliases/OwnerClient.md +0 -13
  229. package/docs/api/type-aliases/OwnerGrantCapabilityInput.md +0 -7
  230. package/docs/api/type-aliases/OwnerPendingApprovalView.md +0 -7
  231. package/docs/api/type-aliases/OwnerRequestDetailView.md +0 -7
  232. package/docs/api/type-aliases/OwnerRequestSummaryView.md +0 -7
  233. package/docs/api/type-aliases/OwnerSecretView.md +0 -7
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.3**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -26,24 +26,10 @@ Creates an [AgentClient](AgentClient.md) for a delegated identity.
26
26
 
27
27
  [`CreateAgentClientOptions`](CreateAgentClientOptions.md)
28
28
 
29
- Configuration including agent identity, capability, and transport.
30
-
31
29
  #### Returns
32
30
 
33
31
  [`AgentClient`](AgentClient.md)
34
32
 
35
- An initialized [AgentClient](AgentClient.md).
36
-
37
- #### Example
38
-
39
- ```ts
40
- const agent = createAgentClient({
41
- agentIdentity,
42
- capability,
43
- vault
44
- });
45
- ```
46
-
47
33
  ***
48
34
 
49
35
  ### createIdentity
@@ -70,24 +56,24 @@ A CreatedIdentity containing the ID and keys.
70
56
 
71
57
  ```ts
72
58
  const identity = createIdentity({ nickname: 'my-agent' });
73
- console.log(identity.identityId);
59
+ console.log(identity.rootAgentId);
74
60
  ```
75
61
 
76
62
  ***
77
63
 
78
- ### createOwnerHttpFlowBoundary
64
+ ### createOwnerClient
79
65
 
80
- > **createOwnerHttpFlowBoundary**: (`boundary`) => `OwnerHttpFlowBoundary`
66
+ > **createOwnerClient**: (`options`) => `Promise`\<[`OwnerClient`](OwnerClient.md)\>
81
67
 
82
68
  #### Parameters
83
69
 
84
- ##### boundary
70
+ ##### options
85
71
 
86
- `OwnerHttpFlowBoundary`
72
+ [`CreateOwnerClientOptions`](CreateOwnerClientOptions.md)
87
73
 
88
74
  #### Returns
89
75
 
90
- `OwnerHttpFlowBoundary`
76
+ `Promise`\<[`OwnerClient`](OwnerClient.md)\>
91
77
 
92
78
  ***
93
79
 
@@ -129,58 +115,6 @@ console.log(identity.identityId);
129
115
 
130
116
  ***
131
117
 
132
- ### createStandardAcquireBoundary
133
-
134
- > **createStandardAcquireBoundary**: (`input`) => `OwnerHttpFlowBoundary`
135
-
136
- #### Parameters
137
-
138
- ##### input
139
-
140
- ###### method?
141
-
142
- `string`
143
-
144
- ###### responseField
145
-
146
- `"access_token"` \| `"refresh_token"` \| `"id_token"`
147
-
148
- ###### storeAlias
149
-
150
- `string`
151
-
152
- ###### targetUrl
153
-
154
- `string`
155
-
156
- #### Returns
157
-
158
- `OwnerHttpFlowBoundary`
159
-
160
- ***
161
-
162
- ### createStandardDispatchBoundary
163
-
164
- > **createStandardDispatchBoundary**: (`input`) => `OwnerHttpFlowBoundary`
165
-
166
- #### Parameters
167
-
168
- ##### input
169
-
170
- ###### method
171
-
172
- `string`
173
-
174
- ###### targetUrl
175
-
176
- `string`
177
-
178
- #### Returns
179
-
180
- `OwnerHttpFlowBoundary`
181
-
182
- ***
183
-
184
118
  ### createVault
185
119
 
186
120
  > **createVault**: \{(`storage`, `options`): `Promise`\<[`CreatedVault`](CreatedVault.md)\>; (`options`): `Promise`\<[`CreatedVault`](CreatedVault.md)\>; \}
@@ -240,37 +174,6 @@ Configuration for the new vault.
240
174
 
241
175
  ***
242
176
 
243
- ### createVaultClient
244
-
245
- > **createVaultClient**: (`options`) => [`VaultClient`](VaultClient.md)
246
-
247
- Creates a [VaultClient](VaultClient.md) instance for a specific vault owner.
248
-
249
- #### Parameters
250
-
251
- ##### options
252
-
253
- [`CreateVaultClientOptions`](CreateVaultClientOptions.md)
254
-
255
- Configuration including optional owner identity and the vault service.
256
-
257
- #### Returns
258
-
259
- [`VaultClient`](VaultClient.md)
260
-
261
- An initialized [VaultClient](VaultClient.md).
262
-
263
- #### Example
264
-
265
- ```ts
266
- const client = createVaultClient({
267
- ownerIdentity,
268
- vault
269
- });
270
- ```
271
-
272
- ***
273
-
274
177
  ### createVaultCore
275
178
 
276
179
  > **createVaultCore**: (`deps`) => [`VaultCore`](../classes/VaultCore.md)
@@ -305,31 +208,23 @@ const client = createVaultClient({
305
208
 
306
209
  ### createVaultService
307
210
 
308
- > **createVaultService**: (`deps`, `options`) => `VaultService`
211
+ > **createVaultService**: (`authority`, `options?`) => [`VaultService`](VaultService.md)
309
212
 
310
213
  #### Parameters
311
214
 
312
- ##### deps
215
+ ##### authority
313
216
 
314
- `VaultCoreDependencies`
217
+ [`VaultCore`](../classes/VaultCore.md)
315
218
 
316
219
  ##### options?
317
220
 
318
- ###### clock?
319
-
320
- `Clock`
321
-
322
- ###### customFlows?
323
-
324
- `VaultCustomFlowResolver`
325
-
326
221
  ###### fetchImpl?
327
222
 
328
223
  \{(`input`, `init?`): `Promise`\<`Response`\>; (`input`, `init?`): `Promise`\<`Response`\>; \}
329
224
 
330
225
  #### Returns
331
226
 
332
- `VaultService`
227
+ [`VaultService`](VaultService.md)
333
228
 
334
229
  ***
335
230
 
@@ -370,7 +265,7 @@ Using scrypt for memory-hard key derivation to resist brute-force attacks.
370
265
 
371
266
  ##### service
372
267
 
373
- `VaultService`
268
+ [`VaultService`](VaultService.md)
374
269
 
375
270
  ##### body
376
271
 
@@ -393,7 +288,7 @@ This can be used in any HTTP server framework (Express, Fastify, etc.).
393
288
 
394
289
  ##### service
395
290
 
396
- `VaultService`
291
+ [`VaultService`](VaultService.md)
397
292
 
398
293
  The VaultService instance to handle the request.
399
294
 
@@ -475,12 +370,6 @@ A list of vault IDs.
475
370
 
476
371
  ***
477
372
 
478
- ### PersistentVaultCapabilityRevocationRegistry
479
-
480
- > **PersistentVaultCapabilityRevocationRegistry**: *typeof* `FileCapabilityRevocationRegistry`
481
-
482
- ***
483
-
484
373
  ### recoverVault
485
374
 
486
375
  > **recoverVault**: \{(`storage`, `options`): `Promise`\<[`RecoveredVault`](RecoveredVault.md)\>; (`options`): `Promise`\<[`RecoveredVault`](RecoveredVault.md)\>; \}
@@ -583,33 +472,3 @@ const identity = restoreIdentity('MIIB...');
583
472
  ### VaultCoreError
584
473
 
585
474
  > **VaultCoreError**: *typeof* [`VaultCoreError`](../classes/VaultCoreError.md)
586
-
587
- ***
588
-
589
- ### wrapVaultCoreAsVaultService
590
-
591
- > **wrapVaultCoreAsVaultService**: (`core`, `options`) => `VaultService`
592
-
593
- #### Parameters
594
-
595
- ##### core
596
-
597
- [`VaultCore`](../classes/VaultCore.md)
598
-
599
- ##### options?
600
-
601
- ###### clock?
602
-
603
- `Clock`
604
-
605
- ###### customFlows?
606
-
607
- `VaultCustomFlowResolver`
608
-
609
- ###### fetchImpl?
610
-
611
- \{(`input`, `init?`): `Promise`\<`Response`\>; (`input`, `init?`): `Promise`\<`Response`\>; \}
612
-
613
- #### Returns
614
-
615
- `VaultService`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.3**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -6,15 +6,9 @@
6
6
 
7
7
  ## Properties
8
8
 
9
- ### agentIdentity
9
+ ### agentRecord
10
10
 
11
- > **agentIdentity**: `CreatedIdentity` \| [`AgentIdentity`](AgentIdentity.md)
12
-
13
- ***
14
-
15
- ### capability
16
-
17
- > **capability**: `AgentCapability`
11
+ > **agentRecord**: [`AgentIdentity`](AgentIdentity.md) \| \{ `id`: `string`; \}
18
12
 
19
13
  ***
20
14
 
@@ -38,4 +32,4 @@
38
32
 
39
33
  ### vault?
40
34
 
41
- > `optional` **vault?**: `VaultService`
35
+ > `optional` **vault?**: [`VaultService`](VaultService.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.3**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,8 +1,8 @@
1
- [**CBIO Node Runtime Agent API v1.63.3**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
2
2
 
3
3
  ***
4
4
 
5
- # Interface: CreateVaultClientOptions
5
+ # Interface: CreateOwnerClientOptions
6
6
 
7
7
  ## Properties
8
8
 
@@ -12,9 +12,13 @@
12
12
 
13
13
  ***
14
14
 
15
- ### ownerIdentity?
15
+ ### ownerIdentity
16
16
 
17
- > `optional` **ownerIdentity?**: `CreatedIdentity` \| [`VaultIdentity`](VaultIdentity.md)
17
+ > **ownerIdentity**: `object`
18
+
19
+ #### rootAgentId
20
+
21
+ > **rootAgentId**: `string`
18
22
 
19
23
  ***
20
24
 
@@ -54,12 +58,6 @@
54
58
 
55
59
  ***
56
60
 
57
- ### signer?
58
-
59
- > `optional` **signer?**: [`VaultSigner`](VaultSigner.md)
60
-
61
- ***
62
-
63
61
  ### skipWarmup?
64
62
 
65
63
  > `optional` **skipWarmup?**: `boolean`
@@ -68,4 +66,4 @@
68
66
 
69
67
  ### vault
70
68
 
71
- > **vault**: `VaultService`
69
+ > **vault**: [`VaultService`](VaultService.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.3**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -10,89 +10,15 @@
10
10
 
11
11
  ## Properties
12
12
 
13
- ### authHeaderName?
14
-
15
- > `optional` **authHeaderName?**: `string`
16
-
17
- #### Inherited from
18
-
19
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`authHeaderName`](VaultCoreDependenciesOptions.md#authheadername)
20
-
21
- ***
22
-
23
- ### authPrefix?
24
-
25
- > `optional` **authPrefix?**: `string`
26
-
27
- #### Inherited from
28
-
29
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`authPrefix`](VaultCoreDependenciesOptions.md#authprefix)
30
-
31
- ***
32
-
33
13
  ### clock?
34
14
 
35
15
  > `optional` **clock?**: `Clock`
36
16
 
37
- #### Overrides
38
-
39
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`clock`](VaultCoreDependenciesOptions.md#clock)
40
-
41
- ***
42
-
43
- ### fetchImpl?
44
-
45
- > `optional` **fetchImpl?**: \{(`input`, `init?`): `Promise`\<`Response`\>; (`input`, `init?`): `Promise`\<`Response`\>; \}
46
-
47
- #### Call Signature
48
-
49
- > (`input`, `init?`): `Promise`\<`Response`\>
50
-
51
- [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)
52
-
53
- ##### Parameters
54
-
55
- ###### input
56
-
57
- `URL` \| `RequestInfo`
58
-
59
- ###### init?
60
-
61
- `RequestInit`
62
-
63
- ##### Returns
64
-
65
- `Promise`\<`Response`\>
66
-
67
- #### Call Signature
68
-
69
- > (`input`, `init?`): `Promise`\<`Response`\>
70
-
71
- [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)
72
-
73
- ##### Parameters
74
-
75
- ###### input
76
-
77
- `string` \| `URL` \| `Request`
78
-
79
- ###### init?
80
-
81
- `RequestInit`
82
-
83
- ##### Returns
84
-
85
- `Promise`\<`Response`\>
86
-
87
- #### Inherited from
88
-
89
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`fetchImpl`](VaultCoreDependenciesOptions.md#fetchimpl)
90
-
91
17
  ***
92
18
 
93
19
  ### ownerIdentity?
94
20
 
95
- > `optional` **ownerIdentity?**: `CreatedIdentity` \| [`VaultIdentity`](VaultIdentity.md)
21
+ > `optional` **ownerIdentity?**: `CreatedIdentity` \| \{ `rootAgentId`: `string`; \}
96
22
 
97
23
  ***
98
24
 
@@ -106,36 +32,6 @@
106
32
 
107
33
  ***
108
34
 
109
- ### policy?
110
-
111
- > `optional` **policy?**: [`DefaultPolicyEngineOptions`](DefaultPolicyEngineOptions.md)
112
-
113
- #### Inherited from
114
-
115
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`policy`](VaultCoreDependenciesOptions.md#policy)
116
-
117
- ***
118
-
119
- ### proofVerifier?
120
-
121
- > `optional` **proofVerifier?**: `SignatureAgentProofVerifierOptions`
122
-
123
- #### Inherited from
124
-
125
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`proofVerifier`](VaultCoreDependenciesOptions.md#proofverifier)
126
-
127
- ***
128
-
129
- ### replayGuard?
130
-
131
- > `optional` **replayGuard?**: `ReplayGuard`
132
-
133
- #### Inherited from
134
-
135
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`replayGuard`](VaultCoreDependenciesOptions.md#replayguard)
136
-
137
- ***
138
-
139
35
  ### sensitiveActionVerifier?
140
36
 
141
37
  > `optional` **sensitiveActionVerifier?**: (`confirmation`, `context`) => `boolean` \| `Promise`\<`boolean`\>
@@ -156,19 +52,9 @@
156
52
 
157
53
  ***
158
54
 
159
- ### sessionTokens?
160
-
161
- > `optional` **sessionTokens?**: `ISessionTokenRegistry`
162
-
163
- #### Inherited from
164
-
165
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`sessionTokens`](VaultCoreDependenciesOptions.md#sessiontokens)
166
-
167
- ***
168
-
169
55
  ### signer?
170
56
 
171
- > `optional` **signer?**: [`VaultSigner`](VaultSigner.md)
57
+ > `optional` **signer?**: `any`
172
58
 
173
59
  ***
174
60
 
@@ -182,10 +68,6 @@
182
68
 
183
69
  > `optional` **vault?**: `object`
184
70
 
185
- #### customFlows?
186
-
187
- > `optional` **customFlows?**: `VaultCustomFlowResolver`
188
-
189
71
  #### fetchImpl?
190
72
 
191
73
  > `optional` **fetchImpl?**: \{(`input`, `init?`): `Promise`\<`Response`\>; (`input`, `init?`): `Promise`\<`Response`\>; \}
@@ -1,142 +1,14 @@
1
- [**CBIO Node Runtime Agent API v1.63.3**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
2
2
 
3
3
  ***
4
4
 
5
5
  # Interface: CreatePersistentVaultCoreDependenciesOptions
6
6
 
7
- ## Extends
8
-
9
- - [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md)
10
-
11
7
  ## Properties
12
8
 
13
- ### authHeaderName?
14
-
15
- > `optional` **authHeaderName?**: `string`
16
-
17
- #### Inherited from
18
-
19
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`authHeaderName`](VaultCoreDependenciesOptions.md#authheadername)
20
-
21
- ***
22
-
23
- ### authPrefix?
24
-
25
- > `optional` **authPrefix?**: `string`
26
-
27
- #### Inherited from
28
-
29
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`authPrefix`](VaultCoreDependenciesOptions.md#authprefix)
30
-
31
- ***
32
-
33
- ### clock?
34
-
35
- > `optional` **clock?**: `Clock`
36
-
37
- #### Inherited from
38
-
39
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`clock`](VaultCoreDependenciesOptions.md#clock)
40
-
41
- ***
42
-
43
- ### fetchImpl?
44
-
45
- > `optional` **fetchImpl?**: \{(`input`, `init?`): `Promise`\<`Response`\>; (`input`, `init?`): `Promise`\<`Response`\>; \}
46
-
47
- #### Call Signature
48
-
49
- > (`input`, `init?`): `Promise`\<`Response`\>
50
-
51
- [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)
52
-
53
- ##### Parameters
54
-
55
- ###### input
56
-
57
- `URL` \| `RequestInfo`
58
-
59
- ###### init?
60
-
61
- `RequestInit`
62
-
63
- ##### Returns
64
-
65
- `Promise`\<`Response`\>
66
-
67
- #### Call Signature
68
-
69
- > (`input`, `init?`): `Promise`\<`Response`\>
70
-
71
- [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)
72
-
73
- ##### Parameters
74
-
75
- ###### input
76
-
77
- `string` \| `URL` \| `Request`
78
-
79
- ###### init?
80
-
81
- `RequestInit`
82
-
83
- ##### Returns
84
-
85
- `Promise`\<`Response`\>
86
-
87
- #### Inherited from
88
-
89
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`fetchImpl`](VaultCoreDependenciesOptions.md#fetchimpl)
90
-
91
- ***
92
-
93
- ### policy?
94
-
95
- > `optional` **policy?**: [`DefaultPolicyEngineOptions`](DefaultPolicyEngineOptions.md)
96
-
97
- #### Inherited from
98
-
99
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`policy`](VaultCoreDependenciesOptions.md#policy)
100
-
101
- ***
102
-
103
- ### proofVerifier?
104
-
105
- > `optional` **proofVerifier?**: `SignatureAgentProofVerifierOptions`
106
-
107
- #### Inherited from
108
-
109
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`proofVerifier`](VaultCoreDependenciesOptions.md#proofverifier)
110
-
111
- ***
112
-
113
- ### replayGuard?
114
-
115
- > `optional` **replayGuard?**: `ReplayGuard`
116
-
117
- #### Inherited from
118
-
119
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`replayGuard`](VaultCoreDependenciesOptions.md#replayguard)
120
-
121
- ***
122
-
123
- ### sessionTokens?
124
-
125
- > `optional` **sessionTokens?**: `ISessionTokenRegistry`
126
-
127
- #### Inherited from
128
-
129
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`sessionTokens`](VaultCoreDependenciesOptions.md#sessiontokens)
130
-
131
- ***
132
-
133
- ### vaultId?
134
-
135
- > `optional` **vaultId?**: `string`
136
-
137
- #### Inherited from
9
+ ### vaultId
138
10
 
139
- [`VaultCoreDependenciesOptions`](VaultCoreDependenciesOptions.md).[`vaultId`](VaultCoreDependenciesOptions.md#vaultid)
11
+ > **vaultId**: `string`
140
12
 
141
13
  ***
142
14