@the-ai-company/cbio-node-runtime 1.63.2 → 1.63.5

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 (227) 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 +119 -240
  9. package/dist/clients/owner/client.js.map +1 -1
  10. package/dist/clients/owner/contracts.d.ts +37 -70
  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 -0
  21. package/dist/public-types.js +2 -0
  22. package/dist/public-types.js.map +1 -0
  23. package/dist/runtime/bootstrap.js.map +1 -1
  24. package/dist/runtime/identity.d.ts +2 -2
  25. package/dist/runtime/identity.js +3 -5
  26. package/dist/runtime/identity.js.map +1 -1
  27. package/dist/runtime/index.d.ts +10 -11
  28. package/dist/runtime/index.js +7 -8
  29. package/dist/runtime/index.js.map +1 -1
  30. package/dist/runtime/owner-session.d.ts +7 -6
  31. package/dist/runtime/owner-session.js +5 -6
  32. package/dist/runtime/owner-session.js.map +1 -1
  33. package/dist/storage/fs.d.ts +3 -2
  34. package/dist/storage/fs.js +8 -5
  35. package/dist/storage/fs.js.map +1 -1
  36. package/dist/storage/prefix.d.ts +1 -0
  37. package/dist/storage/prefix.js +7 -0
  38. package/dist/storage/prefix.js.map +1 -1
  39. package/dist/storage/provider.d.ts +2 -0
  40. package/dist/vault-core/contracts.d.ts +112 -193
  41. package/dist/vault-core/contracts.js +5 -8
  42. package/dist/vault-core/contracts.js.map +1 -1
  43. package/dist/vault-core/core.d.ts +127 -62
  44. package/dist/vault-core/core.js +500 -1182
  45. package/dist/vault-core/core.js.map +1 -1
  46. package/dist/vault-core/defaults.d.ts +26 -42
  47. package/dist/vault-core/defaults.js +73 -229
  48. package/dist/vault-core/defaults.js.map +1 -1
  49. package/dist/vault-core/errors.d.ts +3 -2
  50. package/dist/vault-core/errors.js.map +1 -1
  51. package/dist/vault-core/index.d.ts +5 -5
  52. package/dist/vault-core/index.js +2 -2
  53. package/dist/vault-core/index.js.map +1 -1
  54. package/dist/vault-core/persistence.d.ts +78 -118
  55. package/dist/vault-core/persistence.js +329 -421
  56. package/dist/vault-core/persistence.js.map +1 -1
  57. package/dist/vault-core/ports.d.ts +19 -24
  58. package/dist/vault-core/read-policy.d.ts +3 -2
  59. package/dist/vault-core/read-policy.js.map +1 -1
  60. package/dist/vault-core/tool-metadata.js +2 -2
  61. package/dist/vault-core/tool-metadata.js.map +1 -1
  62. package/dist/vault-ingress/defaults.d.ts +4 -2
  63. package/dist/vault-ingress/defaults.js +14 -8
  64. package/dist/vault-ingress/defaults.js.map +1 -1
  65. package/dist/vault-ingress/index.d.ts +43 -117
  66. package/dist/vault-ingress/index.js +98 -453
  67. package/dist/vault-ingress/index.js.map +1 -1
  68. package/dist/vault-ingress/remote-transport.d.ts +5 -3
  69. package/dist/vault-ingress/remote-transport.js +8 -28
  70. package/dist/vault-ingress/remote-transport.js.map +1 -1
  71. package/docs/ARCHITECTURE.md +39 -22
  72. package/docs/CUSTODY_MODEL.md +1 -1
  73. package/docs/IDENTITY_MODEL.md +5 -5
  74. package/docs/MIGRATION-1.51.md +19 -19
  75. package/docs/MIGRATION-1.65.md +61 -0
  76. package/docs/PROCESS_ISOLATION.md +2 -2
  77. package/docs/REFERENCE.md +42 -200
  78. package/docs/api/README.md +50 -22
  79. package/docs/api/classes/IdentityError.md +1 -1
  80. package/docs/api/classes/OwnerClientError.md +1 -1
  81. package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +89 -0
  82. package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +125 -0
  83. package/docs/api/classes/PersistentVaultAuditLog.md +65 -0
  84. package/docs/api/classes/PersistentVaultCustomHttpFlowRegistry.md +69 -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 +299 -214
  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 -9
  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 -150
  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 -117
  135. package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +3 -131
  136. package/docs/api/interfaces/CreateVaultOptions.md +1 -121
  137. package/docs/api/interfaces/CreatedVault.md +2 -2
  138. package/docs/api/interfaces/CustomHttpFlowDefinition.md +71 -0
  139. package/docs/api/interfaces/DefaultPolicyEngineOptions.md +1 -13
  140. package/docs/api/interfaces/DispatchAuthorization.md +43 -0
  141. package/docs/api/interfaces/DispatchInstruction.md +47 -0
  142. package/docs/api/interfaces/DispatchRequest.md +83 -0
  143. package/docs/api/interfaces/DispatchResult.md +53 -0
  144. package/docs/api/interfaces/IStorageProvider.md +13 -1
  145. package/docs/api/interfaces/InitializeVaultCustodyOptions.md +31 -11
  146. package/docs/api/interfaces/InitializedVaultCustody.md +1 -7
  147. package/docs/api/interfaces/OwnerAgentProvisionResult.md +2 -2
  148. package/docs/api/interfaces/OwnerClient.md +417 -0
  149. package/docs/api/interfaces/OwnerCreateSecretInput.md +1 -1
  150. package/docs/api/interfaces/OwnerRemoveSecretInput.md +1 -1
  151. package/docs/api/interfaces/OwnerRequestRecord.md +97 -0
  152. package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
  153. package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
  154. package/docs/api/interfaces/OwnerSession.md +3 -3
  155. package/docs/api/interfaces/OwnerUpdateSecretInput.md +1 -1
  156. package/docs/api/interfaces/OwnerVisibleRequestRecord.md +73 -0
  157. package/docs/api/interfaces/RecoverVaultOptions.md +1 -121
  158. package/docs/api/interfaces/RecoveredVault.md +2 -2
  159. package/docs/api/interfaces/RequestRecord.md +107 -0
  160. package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
  161. package/docs/api/interfaces/SecretAlias.md +11 -0
  162. package/docs/api/interfaces/SecretDestinationGrant.md +41 -0
  163. package/docs/api/interfaces/SecretId.md +11 -0
  164. package/docs/api/interfaces/SecretRecord.md +89 -0
  165. package/docs/api/interfaces/Signer.md +1 -1
  166. package/docs/api/interfaces/VaultApproveDispatchInput.md +3 -9
  167. package/docs/api/interfaces/VaultAuditQueryInput.md +1 -1
  168. package/docs/api/interfaces/VaultCoreDependenciesOptions.md +1 -5
  169. package/docs/api/interfaces/VaultCreateAgentInput.md +1 -1
  170. package/docs/api/interfaces/VaultExportSecretInput.md +1 -1
  171. package/docs/api/interfaces/VaultGetRequestInput.md +17 -0
  172. package/docs/api/interfaces/VaultGrantAgentSecretInput.md +23 -0
  173. package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +23 -0
  174. package/docs/api/interfaces/VaultId.md +11 -0
  175. package/docs/api/interfaces/VaultImportAgentInput.md +1 -1
  176. package/docs/api/interfaces/VaultIssueSessionTokenInput.md +5 -5
  177. package/docs/api/interfaces/VaultListAgentsInput.md +1 -1
  178. package/docs/api/interfaces/VaultListGrantsInput.md +23 -0
  179. package/docs/api/interfaces/VaultListRequestsInput.md +17 -0
  180. package/docs/api/interfaces/VaultListSecretsInput.md +1 -1
  181. package/docs/api/interfaces/VaultMetadata.md +1 -1
  182. package/docs/api/interfaces/VaultObject.md +2 -2
  183. package/docs/api/interfaces/VaultPrincipal.md +17 -0
  184. package/docs/api/interfaces/VaultProfile.md +1 -1
  185. package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +7 -7
  186. package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +1 -1
  187. package/docs/api/interfaces/VaultRegisterFlowInput.md +1 -1
  188. package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +23 -0
  189. package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +23 -0
  190. package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
  191. package/docs/api/interfaces/VaultService.md +547 -0
  192. package/docs/api/interfaces/VaultUpdateAgentInput.md +7 -7
  193. package/docs/api/type-aliases/AgentId.md +7 -0
  194. package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
  195. package/docs/api/type-aliases/DispatchApprovalDecision.md +7 -0
  196. package/docs/api/type-aliases/GrantStatus.md +7 -0
  197. package/docs/api/type-aliases/SecretLifecycleStatus.md +7 -0
  198. package/docs/api/type-aliases/VaultPrincipalKind.md +7 -0
  199. package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +2 -2
  200. package/docs/es/README.md +3 -3
  201. package/docs/fr/README.md +3 -3
  202. package/docs/ja/README.md +5 -5
  203. package/docs/ko/README.md +5 -5
  204. package/docs/pt/README.md +3 -3
  205. package/docs/zh/PROCESS_ISOLATION.md +2 -2
  206. package/docs/zh/README.md +24 -24
  207. package/examples/process-isolation.ts +26 -35
  208. package/package.json +3 -2
  209. package/docs/api/functions/createOwnerHttpFlowBoundary.md +0 -17
  210. package/docs/api/functions/createStandardAcquireBoundary.md +0 -31
  211. package/docs/api/functions/createStandardDispatchBoundary.md +0 -23
  212. package/docs/api/functions/createVaultClient.md +0 -32
  213. package/docs/api/functions/deriveIdentityId.md +0 -17
  214. package/docs/api/functions/wrapVaultCoreAsVaultService.md +0 -31
  215. package/docs/api/interfaces/AgentSubmitCapabilityRequestInput.md +0 -41
  216. package/docs/api/interfaces/VaultApproveCapabilityRequestInput.md +0 -23
  217. package/docs/api/interfaces/VaultClient.md +0 -473
  218. package/docs/api/interfaces/VaultGrantCapabilityInput.md +0 -79
  219. package/docs/api/interfaces/VaultGrantCapabilityRequest.md +0 -23
  220. package/docs/api/interfaces/VaultIdentity.md +0 -11
  221. package/docs/api/interfaces/VaultListCapabilitiesInput.md +0 -17
  222. package/docs/api/interfaces/VaultRevokeCapabilityInput.md +0 -23
  223. package/docs/api/interfaces/VaultSigner.md +0 -21
  224. package/docs/api/interfaces/VaultSubmitCapabilityRequestInput.md +0 -73
  225. package/docs/api/type-aliases/AgentCapabilityEnvelope.md +0 -7
  226. package/docs/api/type-aliases/AgentVisibleSecretRecord.md +0 -7
  227. package/docs/api/type-aliases/OwnerGrantCapabilityInput.md +0 -7
@@ -0,0 +1,417 @@
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
+
3
+ ***
4
+
5
+ # Interface: OwnerClient
6
+
7
+ A client for vault owners to manage secrets, agents, and grants.
8
+
9
+ ## Methods
10
+
11
+ ### ownerApproveDispatch()
12
+
13
+ > **ownerApproveDispatch**(`input`): `Promise`\<[`DispatchResult`](DispatchResult.md) \| `null`\>
14
+
15
+ #### Parameters
16
+
17
+ ##### input
18
+
19
+ [`VaultApproveDispatchInput`](VaultApproveDispatchInput.md)
20
+
21
+ #### Returns
22
+
23
+ `Promise`\<[`DispatchResult`](DispatchResult.md) \| `null`\>
24
+
25
+ ***
26
+
27
+ ### ownerCreateAgent()
28
+
29
+ > **ownerCreateAgent**(`input`): `Promise`\<[`OwnerAgentProvisionResult`](OwnerAgentProvisionResult.md)\>
30
+
31
+ #### Parameters
32
+
33
+ ##### input
34
+
35
+ [`VaultCreateAgentInput`](VaultCreateAgentInput.md)
36
+
37
+ #### Returns
38
+
39
+ `Promise`\<[`OwnerAgentProvisionResult`](OwnerAgentProvisionResult.md)\>
40
+
41
+ ***
42
+
43
+ ### ownerCreateSecret()
44
+
45
+ > **ownerCreateSecret**(`input`): `Promise`\<[`SecretRecord`](SecretRecord.md)\>
46
+
47
+ #### Parameters
48
+
49
+ ##### input
50
+
51
+ [`OwnerCreateSecretInput`](OwnerCreateSecretInput.md)
52
+
53
+ #### Returns
54
+
55
+ `Promise`\<[`SecretRecord`](SecretRecord.md)\>
56
+
57
+ ***
58
+
59
+ ### ownerDenyDispatch()
60
+
61
+ > **ownerDenyDispatch**(`requestId`): `Promise`\<`void`\>
62
+
63
+ #### Parameters
64
+
65
+ ##### requestId
66
+
67
+ `string`
68
+
69
+ #### Returns
70
+
71
+ `Promise`\<`void`\>
72
+
73
+ ***
74
+
75
+ ### ownerExportSecret()
76
+
77
+ > **ownerExportSecret**(`input`): `Promise`\<`OwnerSecretExport`\>
78
+
79
+ #### Parameters
80
+
81
+ ##### input
82
+
83
+ [`VaultExportSecretInput`](VaultExportSecretInput.md)
84
+
85
+ #### Returns
86
+
87
+ `Promise`\<`OwnerSecretExport`\>
88
+
89
+ ***
90
+
91
+ ### ownerGetRequest()
92
+
93
+ > **ownerGetRequest**(`input`): `Promise`\<[`OwnerRequestRecord`](OwnerRequestRecord.md)\>
94
+
95
+ #### Parameters
96
+
97
+ ##### input
98
+
99
+ [`VaultGetRequestInput`](VaultGetRequestInput.md)
100
+
101
+ #### Returns
102
+
103
+ `Promise`\<[`OwnerRequestRecord`](OwnerRequestRecord.md)\>
104
+
105
+ ***
106
+
107
+ ### ownerGrantAgentSecret()
108
+
109
+ > **ownerGrantAgentSecret**(`input`): `Promise`\<[`AgentSecretGrant`](AgentSecretGrant.md)\>
110
+
111
+ #### Parameters
112
+
113
+ ##### input
114
+
115
+ [`VaultGrantAgentSecretInput`](VaultGrantAgentSecretInput.md)
116
+
117
+ #### Returns
118
+
119
+ `Promise`\<[`AgentSecretGrant`](AgentSecretGrant.md)\>
120
+
121
+ ***
122
+
123
+ ### ownerGrantSecretDestination()
124
+
125
+ > **ownerGrantSecretDestination**(`input`): `Promise`\<[`SecretDestinationGrant`](SecretDestinationGrant.md)\>
126
+
127
+ #### Parameters
128
+
129
+ ##### input
130
+
131
+ [`VaultGrantSecretDestinationInput`](VaultGrantSecretDestinationInput.md)
132
+
133
+ #### Returns
134
+
135
+ `Promise`\<[`SecretDestinationGrant`](SecretDestinationGrant.md)\>
136
+
137
+ ***
138
+
139
+ ### ownerImportAgent()
140
+
141
+ > **ownerImportAgent**(`input`): `Promise`\<[`OwnerAgentProvisionResult`](OwnerAgentProvisionResult.md)\>
142
+
143
+ #### Parameters
144
+
145
+ ##### input
146
+
147
+ [`VaultImportAgentInput`](VaultImportAgentInput.md)
148
+
149
+ #### Returns
150
+
151
+ `Promise`\<[`OwnerAgentProvisionResult`](OwnerAgentProvisionResult.md)\>
152
+
153
+ ***
154
+
155
+ ### ownerIssueAllSessionTokens()
156
+
157
+ > **ownerIssueAllSessionTokens**(): `Promise`\<readonly `OwnerSessionToken`[]\>
158
+
159
+ #### Returns
160
+
161
+ `Promise`\<readonly `OwnerSessionToken`[]\>
162
+
163
+ ***
164
+
165
+ ### ownerIssueSessionToken()
166
+
167
+ > **ownerIssueSessionToken**(`input`): `Promise`\<`OwnerSessionToken`\>
168
+
169
+ #### Parameters
170
+
171
+ ##### input
172
+
173
+ [`VaultIssueSessionTokenInput`](VaultIssueSessionTokenInput.md)
174
+
175
+ #### Returns
176
+
177
+ `Promise`\<`OwnerSessionToken`\>
178
+
179
+ ***
180
+
181
+ ### ownerListAgents()
182
+
183
+ > **ownerListAgents**(`input?`): `Promise`\<readonly [`AgentIdentityRecord`](AgentIdentityRecord.md)[]\>
184
+
185
+ #### Parameters
186
+
187
+ ##### input?
188
+
189
+ [`VaultListAgentsInput`](VaultListAgentsInput.md)
190
+
191
+ #### Returns
192
+
193
+ `Promise`\<readonly [`AgentIdentityRecord`](AgentIdentityRecord.md)[]\>
194
+
195
+ ***
196
+
197
+ ### ownerListGrants()
198
+
199
+ > **ownerListGrants**(`input?`): `Promise`\<\{ `agentSecrets`: readonly [`AgentSecretGrant`](AgentSecretGrant.md)[]; `secretDestinations`: readonly [`SecretDestinationGrant`](SecretDestinationGrant.md)[]; \}\>
200
+
201
+ #### Parameters
202
+
203
+ ##### input?
204
+
205
+ [`VaultListGrantsInput`](VaultListGrantsInput.md)
206
+
207
+ #### Returns
208
+
209
+ `Promise`\<\{ `agentSecrets`: readonly [`AgentSecretGrant`](AgentSecretGrant.md)[]; `secretDestinations`: readonly [`SecretDestinationGrant`](SecretDestinationGrant.md)[]; \}\>
210
+
211
+ ***
212
+
213
+ ### ownerListRequests()
214
+
215
+ > **ownerListRequests**(`input?`): `Promise`\<readonly [`OwnerVisibleRequestRecord`](OwnerVisibleRequestRecord.md)[]\>
216
+
217
+ #### Parameters
218
+
219
+ ##### input?
220
+
221
+ [`VaultListRequestsInput`](VaultListRequestsInput.md)
222
+
223
+ #### Returns
224
+
225
+ `Promise`\<readonly [`OwnerVisibleRequestRecord`](OwnerVisibleRequestRecord.md)[]\>
226
+
227
+ ***
228
+
229
+ ### ownerListSecrets()
230
+
231
+ > **ownerListSecrets**(`input?`): `Promise`\<readonly [`AgentVisibleSecretRecord`](AgentVisibleSecretRecord.md)[]\>
232
+
233
+ #### Parameters
234
+
235
+ ##### input?
236
+
237
+ [`VaultListSecretsInput`](VaultListSecretsInput.md)
238
+
239
+ #### Returns
240
+
241
+ `Promise`\<readonly [`AgentVisibleSecretRecord`](AgentVisibleSecretRecord.md)[]\>
242
+
243
+ ***
244
+
245
+ ### ownerOnPendingDispatch()
246
+
247
+ > **ownerOnPendingDispatch**(`callback`): () => `void`
248
+
249
+ #### Parameters
250
+
251
+ ##### callback
252
+
253
+ (`record`) => `void`
254
+
255
+ #### Returns
256
+
257
+ () => `void`
258
+
259
+ ***
260
+
261
+ ### ownerReadAgentPrivateKey()
262
+
263
+ > **ownerReadAgentPrivateKey**(`input`): `Promise`\<`string`\>
264
+
265
+ #### Parameters
266
+
267
+ ##### input
268
+
269
+ [`VaultReadAgentPrivateKeyInput`](VaultReadAgentPrivateKeyInput.md)
270
+
271
+ #### Returns
272
+
273
+ `Promise`\<`string`\>
274
+
275
+ ***
276
+
277
+ ### ownerReadAudit()
278
+
279
+ > **ownerReadAudit**(`query?`): `Promise`\<readonly [`AuditEntry`](AuditEntry.md)[]\>
280
+
281
+ #### Parameters
282
+
283
+ ##### query?
284
+
285
+ [`VaultAuditQueryInput`](VaultAuditQueryInput.md)
286
+
287
+ #### Returns
288
+
289
+ `Promise`\<readonly [`AuditEntry`](AuditEntry.md)[]\>
290
+
291
+ ***
292
+
293
+ ### ownerReadSecretPlaintext()
294
+
295
+ > **ownerReadSecretPlaintext**(`input`): `Promise`\<`string`\>
296
+
297
+ #### Parameters
298
+
299
+ ##### input
300
+
301
+ [`VaultReadSecretPlaintextInput`](VaultReadSecretPlaintextInput.md)
302
+
303
+ #### Returns
304
+
305
+ `Promise`\<`string`\>
306
+
307
+ ***
308
+
309
+ ### ownerRegisterFlow()
310
+
311
+ > **ownerRegisterFlow**(`input`): `Promise`\<[`CustomHttpFlowDefinition`](CustomHttpFlowDefinition.md)\>
312
+
313
+ #### Parameters
314
+
315
+ ##### input
316
+
317
+ [`VaultRegisterFlowInput`](VaultRegisterFlowInput.md)
318
+
319
+ #### Returns
320
+
321
+ `Promise`\<[`CustomHttpFlowDefinition`](CustomHttpFlowDefinition.md)\>
322
+
323
+ ***
324
+
325
+ ### ownerRemoveSecret()
326
+
327
+ > **ownerRemoveSecret**(`input`): `Promise`\<`void`\>
328
+
329
+ #### Parameters
330
+
331
+ ##### input
332
+
333
+ [`OwnerRemoveSecretInput`](OwnerRemoveSecretInput.md)
334
+
335
+ #### Returns
336
+
337
+ `Promise`\<`void`\>
338
+
339
+ ***
340
+
341
+ ### ownerRevokeAgentSecret()
342
+
343
+ > **ownerRevokeAgentSecret**(`input`): `Promise`\<`void`\>
344
+
345
+ #### Parameters
346
+
347
+ ##### input
348
+
349
+ [`VaultRevokeAgentSecretInput`](VaultRevokeAgentSecretInput.md)
350
+
351
+ #### Returns
352
+
353
+ `Promise`\<`void`\>
354
+
355
+ ***
356
+
357
+ ### ownerRevokeSecretDestination()
358
+
359
+ > **ownerRevokeSecretDestination**(`input`): `Promise`\<`void`\>
360
+
361
+ #### Parameters
362
+
363
+ ##### input
364
+
365
+ [`VaultRevokeSecretDestinationInput`](VaultRevokeSecretDestinationInput.md)
366
+
367
+ #### Returns
368
+
369
+ `Promise`\<`void`\>
370
+
371
+ ***
372
+
373
+ ### ownerRevokeSessionToken()
374
+
375
+ > **ownerRevokeSessionToken**(`input`): `Promise`\<`void`\>
376
+
377
+ #### Parameters
378
+
379
+ ##### input
380
+
381
+ [`VaultRevokeSessionTokenInput`](VaultRevokeSessionTokenInput.md)
382
+
383
+ #### Returns
384
+
385
+ `Promise`\<`void`\>
386
+
387
+ ***
388
+
389
+ ### ownerUpdateAgent()
390
+
391
+ > **ownerUpdateAgent**(`input`): `Promise`\<[`AgentIdentityRecord`](AgentIdentityRecord.md)\>
392
+
393
+ #### Parameters
394
+
395
+ ##### input
396
+
397
+ [`VaultUpdateAgentInput`](VaultUpdateAgentInput.md)
398
+
399
+ #### Returns
400
+
401
+ `Promise`\<[`AgentIdentityRecord`](AgentIdentityRecord.md)\>
402
+
403
+ ***
404
+
405
+ ### ownerUpdateSecret()
406
+
407
+ > **ownerUpdateSecret**(`input`): `Promise`\<[`SecretRecord`](SecretRecord.md)\>
408
+
409
+ #### Parameters
410
+
411
+ ##### input
412
+
413
+ [`OwnerUpdateSecretInput`](OwnerUpdateSecretInput.md)
414
+
415
+ #### Returns
416
+
417
+ `Promise`\<[`SecretRecord`](SecretRecord.md)\>
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.2**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.2**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -0,0 +1,97 @@
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
+
3
+ ***
4
+
5
+ # Interface: OwnerRequestRecord
6
+
7
+ ## Properties
8
+
9
+ ### createdAt
10
+
11
+ > **createdAt**: `string`
12
+
13
+ ***
14
+
15
+ ### executionStatus
16
+
17
+ > **executionStatus**: [`DispatchStatus`](../enumerations/DispatchStatus.md)
18
+
19
+ ***
20
+
21
+ ### missingGrants?
22
+
23
+ > `optional` **missingGrants?**: `object`
24
+
25
+ #### agentSecret?
26
+
27
+ > `optional` **agentSecret?**: `boolean`
28
+
29
+ #### secretDestination?
30
+
31
+ > `optional` **secretDestination?**: `boolean`
32
+
33
+ ***
34
+
35
+ ### reason
36
+
37
+ > **reason**: `string`
38
+
39
+ ***
40
+
41
+ ### request
42
+
43
+ > **request**: `object`
44
+
45
+ #### body?
46
+
47
+ > `optional` **body?**: `string`
48
+
49
+ #### headers?
50
+
51
+ > `optional` **headers?**: `Record`\<`string`, `string`\>
52
+
53
+ #### method
54
+
55
+ > **method**: `string`
56
+
57
+ #### secretAlias?
58
+
59
+ > `optional` **secretAlias?**: `string`
60
+
61
+ #### targetUrl
62
+
63
+ > **targetUrl**: `string`
64
+
65
+ ***
66
+
67
+ ### requestId
68
+
69
+ > **requestId**: `string`
70
+
71
+ ***
72
+
73
+ ### response?
74
+
75
+ > `optional` **response?**: `object`
76
+
77
+ #### body?
78
+
79
+ > `optional` **body?**: `string`
80
+
81
+ #### error?
82
+
83
+ > `optional` **error?**: `string`
84
+
85
+ #### headers?
86
+
87
+ > `optional` **headers?**: `Record`\<`string`, `string`\>
88
+
89
+ #### status?
90
+
91
+ > `optional` **status?**: `number`
92
+
93
+ ***
94
+
95
+ ### rootAgentId
96
+
97
+ > **rootAgentId**: `string`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.2**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.2**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.2**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -26,11 +26,11 @@
26
26
 
27
27
  ### client()
28
28
 
29
- > **client**(): `Promise`\<[`VaultClient`](VaultClient.md)\>
29
+ > **client**(): `Promise`\<[`OwnerClient`](OwnerClient.md)\>
30
30
 
31
31
  #### Returns
32
32
 
33
- `Promise`\<[`VaultClient`](VaultClient.md)\>
33
+ `Promise`\<[`OwnerClient`](OwnerClient.md)\>
34
34
 
35
35
  ***
36
36
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.2**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -0,0 +1,73 @@
1
+ [**CBIO Node Runtime Agent API v1.63.5**](../README.md)
2
+
3
+ ***
4
+
5
+ # Interface: OwnerVisibleRequestRecord
6
+
7
+ ## Properties
8
+
9
+ ### createdAt
10
+
11
+ > **createdAt**: `string`
12
+
13
+ ***
14
+
15
+ ### error?
16
+
17
+ > `optional` **error?**: `string`
18
+
19
+ ***
20
+
21
+ ### executionStatus
22
+
23
+ > **executionStatus**: [`DispatchStatus`](../enumerations/DispatchStatus.md)
24
+
25
+ ***
26
+
27
+ ### hasResponseBody
28
+
29
+ > **hasResponseBody**: `boolean`
30
+
31
+ ***
32
+
33
+ ### missingGrants?
34
+
35
+ > `optional` **missingGrants?**: `object`
36
+
37
+ #### agentSecret?
38
+
39
+ > `optional` **agentSecret?**: `boolean`
40
+
41
+ #### secretDestination?
42
+
43
+ > `optional` **secretDestination?**: `boolean`
44
+
45
+ ***
46
+
47
+ ### reason
48
+
49
+ > **reason**: `string`
50
+
51
+ ***
52
+
53
+ ### requestId
54
+
55
+ > **requestId**: `string`
56
+
57
+ ***
58
+
59
+ ### responseStatus?
60
+
61
+ > `optional` **responseStatus?**: `number`
62
+
63
+ ***
64
+
65
+ ### rootAgentId
66
+
67
+ > **rootAgentId**: `string`
68
+
69
+ ***
70
+
71
+ ### targetUrl
72
+
73
+ > **targetUrl**: `string`