@the-ai-company/cbio-node-runtime 1.69.0 → 1.71.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 (158) hide show
  1. package/README.md +25 -0
  2. package/dist/clients/owner/client.js +39 -4
  3. package/dist/clients/owner/client.js.map +1 -1
  4. package/dist/clients/owner/contracts.d.ts +3 -1
  5. package/dist/public-types.d.ts +2 -1
  6. package/dist/public-types.js.map +1 -1
  7. package/dist/runtime/index.d.ts +4 -2
  8. package/dist/runtime/index.js +1 -1
  9. package/dist/runtime/index.js.map +1 -1
  10. package/dist/vault-core/contracts.d.ts +26 -28
  11. package/dist/vault-core/contracts.js +0 -6
  12. package/dist/vault-core/contracts.js.map +1 -1
  13. package/dist/vault-core/core.d.ts +8 -6
  14. package/dist/vault-core/core.js +125 -52
  15. package/dist/vault-core/core.js.map +1 -1
  16. package/dist/vault-core/defaults.d.ts +11 -11
  17. package/dist/vault-core/defaults.js +75 -35
  18. package/dist/vault-core/defaults.js.map +1 -1
  19. package/dist/vault-core/index.d.ts +3 -3
  20. package/dist/vault-core/index.js +1 -1
  21. package/dist/vault-core/index.js.map +1 -1
  22. package/dist/vault-core/persistence.d.ts +39 -42
  23. package/dist/vault-core/persistence.js +332 -372
  24. package/dist/vault-core/persistence.js.map +1 -1
  25. package/dist/vault-core/ports.d.ts +9 -8
  26. package/dist/vault-ingress/index.d.ts +22 -0
  27. package/dist/vault-ingress/index.js +40 -14
  28. package/dist/vault-ingress/index.js.map +1 -1
  29. package/dist/vault-ingress/server-utils.d.ts +30 -0
  30. package/dist/vault-ingress/server-utils.js +151 -0
  31. package/dist/vault-ingress/server-utils.js.map +1 -1
  32. package/docs/ARCHITECTURE.md +3 -3
  33. package/docs/REFERENCE.md +7 -3
  34. package/docs/api/README.md +5 -2
  35. package/docs/api/classes/IdentityError.md +1 -1
  36. package/docs/api/classes/OwnerClientError.md +1 -1
  37. package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +9 -5
  38. package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +11 -11
  39. package/docs/api/classes/PersistentVaultAuditLog.md +29 -5
  40. package/docs/api/classes/PersistentVaultSecretCustody.md +5 -5
  41. package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +14 -14
  42. package/docs/api/classes/PersistentVaultSecretRepository.md +5 -5
  43. package/docs/api/classes/VaultCore.md +32 -16
  44. package/docs/api/classes/VaultCoreError.md +1 -1
  45. package/docs/api/enumerations/AuditOperation.md +1 -37
  46. package/docs/api/enumerations/DispatchStatus.md +1 -1
  47. package/docs/api/enumerations/IdentityErrorCode.md +1 -1
  48. package/docs/api/enumerations/OwnerClientErrorCode.md +1 -1
  49. package/docs/api/functions/createAgentClient.md +1 -1
  50. package/docs/api/functions/createIdentity.md +1 -1
  51. package/docs/api/functions/createOwnerClient.md +1 -1
  52. package/docs/api/functions/createPersistentVaultCoreDependencies.md +1 -1
  53. package/docs/api/functions/createVault.md +1 -1
  54. package/docs/api/functions/createVaultCore.md +1 -1
  55. package/docs/api/functions/createVaultCoreDependencies.md +1 -1
  56. package/docs/api/functions/createVaultService.md +1 -1
  57. package/docs/api/functions/createWorkspaceStorage.md +1 -1
  58. package/docs/api/functions/deriveRootAgentId.md +1 -1
  59. package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +1 -1
  60. package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
  61. package/docs/api/functions/handleVaultAgentControlHttp.md +1 -1
  62. package/docs/api/functions/handleVaultAuditSse.md +30 -0
  63. package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
  64. package/docs/api/functions/handleVaultPendingDispatchSse.md +30 -0
  65. package/docs/api/functions/initializeVaultCustody.md +1 -1
  66. package/docs/api/functions/listVaults.md +1 -1
  67. package/docs/api/functions/openOwnerSession.md +1 -1
  68. package/docs/api/functions/readVaultProfile.md +1 -1
  69. package/docs/api/functions/recoverVault.md +1 -1
  70. package/docs/api/functions/recoverVaultWorkingKey.md +1 -1
  71. package/docs/api/functions/restoreIdentity.md +1 -1
  72. package/docs/api/functions/updateVaultMetadata.md +1 -1
  73. package/docs/api/functions/writeVaultProfile.md +1 -1
  74. package/docs/api/interfaces/AgentClient.md +1 -1
  75. package/docs/api/interfaces/AgentDispatchIntent.md +1 -1
  76. package/docs/api/interfaces/AgentDispatchTransport.md +1 -1
  77. package/docs/api/interfaces/AgentIdentity.md +1 -1
  78. package/docs/api/interfaces/AgentIdentityRecord.md +1 -1
  79. package/docs/api/interfaces/AgentRequestRecord.md +11 -1
  80. package/docs/api/interfaces/AgentRuntimeManifest.md +1 -1
  81. package/docs/api/interfaces/AgentSecretGrant.md +3 -3
  82. package/docs/api/interfaces/AgentSigner.md +1 -1
  83. package/docs/api/interfaces/AgentVisibleRequestRecord.md +7 -1
  84. package/docs/api/interfaces/AgentVisibleSecretRecord.md +1 -1
  85. package/docs/api/interfaces/AuditEntry.md +1 -1
  86. package/docs/api/interfaces/CbioRuntime.md +59 -1
  87. package/docs/api/interfaces/CreateAgentClientOptions.md +1 -1
  88. package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
  89. package/docs/api/interfaces/CreateOwnerClientOptions.md +1 -1
  90. package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +1 -1
  91. package/docs/api/interfaces/CreateVaultOptions.md +1 -1
  92. package/docs/api/interfaces/CreatedVault.md +1 -1
  93. package/docs/api/interfaces/DefaultPolicyEngineOptions.md +1 -23
  94. package/docs/api/interfaces/DispatchAuthorization.md +1 -1
  95. package/docs/api/interfaces/DispatchInstruction.md +1 -1
  96. package/docs/api/interfaces/DispatchRequest.md +1 -1
  97. package/docs/api/interfaces/DispatchResult.md +1 -1
  98. package/docs/api/interfaces/IStorageProvider.md +1 -1
  99. package/docs/api/interfaces/InitializeVaultCustodyOptions.md +1 -1
  100. package/docs/api/interfaces/InitializedVaultCustody.md +1 -1
  101. package/docs/api/interfaces/OpenOwnerSessionOptions.md +1 -1
  102. package/docs/api/interfaces/OwnerAgentProvisionResult.md +1 -1
  103. package/docs/api/interfaces/OwnerAuditSubscription.md +45 -0
  104. package/docs/api/interfaces/OwnerClient.md +17 -1
  105. package/docs/api/interfaces/OwnerCreateSecretInput.md +1 -1
  106. package/docs/api/interfaces/OwnerPendingDispatchSubscription.md +1 -1
  107. package/docs/api/interfaces/OwnerRemoveSecretInput.md +1 -1
  108. package/docs/api/interfaces/OwnerRequestRecord.md +11 -1
  109. package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
  110. package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
  111. package/docs/api/interfaces/OwnerSession.md +1 -1
  112. package/docs/api/interfaces/OwnerUpdateSecretInput.md +9 -3
  113. package/docs/api/interfaces/OwnerVisibleRequestRecord.md +7 -1
  114. package/docs/api/interfaces/PendingDispatchEvent.md +1 -1
  115. package/docs/api/interfaces/RecoverVaultOptions.md +1 -1
  116. package/docs/api/interfaces/RecoveredVault.md +1 -1
  117. package/docs/api/interfaces/RequestRecord.md +5 -1
  118. package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
  119. package/docs/api/interfaces/SecretAlias.md +1 -1
  120. package/docs/api/interfaces/SecretDestinationGrant.md +3 -3
  121. package/docs/api/interfaces/SecretId.md +1 -1
  122. package/docs/api/interfaces/SecretRecord.md +1 -1
  123. package/docs/api/interfaces/Signer.md +1 -1
  124. package/docs/api/interfaces/VaultApproveDispatchInput.md +1 -1
  125. package/docs/api/interfaces/VaultAuditQueryInput.md +1 -1
  126. package/docs/api/interfaces/VaultCoreDependenciesOptions.md +1 -1
  127. package/docs/api/interfaces/VaultCreateAgentInput.md +1 -1
  128. package/docs/api/interfaces/VaultExportSecretInput.md +1 -1
  129. package/docs/api/interfaces/VaultGetRequestInput.md +1 -1
  130. package/docs/api/interfaces/VaultGrantAgentSecretInput.md +1 -1
  131. package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +1 -1
  132. package/docs/api/interfaces/VaultId.md +1 -1
  133. package/docs/api/interfaces/VaultImportAgentInput.md +1 -1
  134. package/docs/api/interfaces/VaultIssueSessionTokenInput.md +1 -1
  135. package/docs/api/interfaces/VaultListAgentsInput.md +1 -1
  136. package/docs/api/interfaces/VaultListGrantsInput.md +1 -1
  137. package/docs/api/interfaces/VaultListRequestsInput.md +1 -1
  138. package/docs/api/interfaces/VaultListSecretsInput.md +1 -1
  139. package/docs/api/interfaces/VaultMetadata.md +1 -1
  140. package/docs/api/interfaces/VaultObject.md +1 -1
  141. package/docs/api/interfaces/VaultPrincipal.md +1 -1
  142. package/docs/api/interfaces/VaultProfile.md +1 -1
  143. package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +1 -1
  144. package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +1 -1
  145. package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +1 -1
  146. package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +1 -1
  147. package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
  148. package/docs/api/interfaces/VaultService.md +17 -1
  149. package/docs/api/interfaces/VaultUpdateAgentInput.md +1 -1
  150. package/docs/api/type-aliases/AgentId.md +1 -1
  151. package/docs/api/type-aliases/AgentRequestResult.md +1 -1
  152. package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
  153. package/docs/api/type-aliases/DispatchApprovalDecision.md +1 -1
  154. package/docs/api/type-aliases/GrantStatus.md +1 -1
  155. package/docs/api/type-aliases/SecretLifecycleStatus.md +1 -1
  156. package/docs/api/type-aliases/VaultPrincipalKind.md +2 -2
  157. package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +1 -1
  158. package/package.json +10 -3
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -44,6 +44,10 @@
44
44
 
45
45
  > `optional` **secret\_alias?**: `string`
46
46
 
47
+ #### secret\_id?
48
+
49
+ > `optional` **secret\_id?**: [`SecretId`](SecretId.md)
50
+
47
51
  #### target\_url
48
52
 
49
53
  > **target\_url**: `string`
@@ -81,3 +85,9 @@
81
85
  #### status?
82
86
 
83
87
  > `optional` **status?**: `number`
88
+
89
+ ***
90
+
91
+ ### secret\_id?
92
+
93
+ > `optional` **secret\_id?**: [`SecretId`](SecretId.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -24,9 +24,9 @@
24
24
 
25
25
  ***
26
26
 
27
- ### secret\_alias
27
+ ### secret\_id
28
28
 
29
- > **secret\_alias**: `string`
29
+ > **secret\_id**: [`SecretId`](SecretId.md)
30
30
 
31
31
  ***
32
32
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -48,6 +48,12 @@
48
48
 
49
49
  ***
50
50
 
51
+ ### secret\_id?
52
+
53
+ > `optional` **secret\_id?**: [`SecretId`](SecretId.md)
54
+
55
+ ***
56
+
51
57
  ### target\_url
52
58
 
53
59
  > **target\_url**: `string`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -239,6 +239,35 @@ Using scrypt for memory-hard key derivation to resist brute-force attacks.
239
239
 
240
240
  ***
241
241
 
242
+ ### handleVaultAuditSse
243
+
244
+ > **handleVaultAuditSse**: (`service`, `options`) => `Response`
245
+
246
+ Creates an SSE response that streams owner-visible audit entries.
247
+ Host applications should authenticate owner access before exposing this helper remotely.
248
+
249
+ #### Parameters
250
+
251
+ ##### service
252
+
253
+ [`VaultService`](VaultService.md)
254
+
255
+ The VaultService instance to subscribe against.
256
+
257
+ ##### options?
258
+
259
+ `VaultAuditSseOptions` = `{}`
260
+
261
+ Stream options such as replay cursor, filtering, and abort handling.
262
+
263
+ #### Returns
264
+
265
+ `Response`
266
+
267
+ A streaming SSE Response that emits `audit_entry` events by default.
268
+
269
+ ***
270
+
242
271
  ### handleVaultHttpDispatch
243
272
 
244
273
  > **handleVaultHttpDispatch**: (`service`, `body`) => `Promise`\<`VaultAgentDispatchResponse` \| `VaultAgentDispatchErrorResponse`\>
@@ -268,6 +297,35 @@ A JSON-serializable response object.
268
297
 
269
298
  ***
270
299
 
300
+ ### handleVaultPendingDispatchSse
301
+
302
+ > **handleVaultPendingDispatchSse**: (`service`, `options`) => `Response`
303
+
304
+ Creates an SSE response that streams owner-visible pending dispatch events.
305
+ Host applications should authenticate owner access before exposing this helper remotely.
306
+
307
+ #### Parameters
308
+
309
+ ##### service
310
+
311
+ [`VaultService`](VaultService.md)
312
+
313
+ The VaultService instance to subscribe against.
314
+
315
+ ##### options?
316
+
317
+ `VaultPendingDispatchSseOptions` = `{}`
318
+
319
+ Stream options such as replay cursor and abort handling.
320
+
321
+ #### Returns
322
+
323
+ `Response`
324
+
325
+ A streaming SSE Response that emits `pending_dispatch` events.
326
+
327
+ ***
328
+
271
329
  ### IdentityError
272
330
 
273
331
  > **IdentityError**: *typeof* [`IdentityError`](../classes/IdentityError.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -13,25 +13,3 @@
13
13
  #### Returns
14
14
 
15
15
  `Date`
16
-
17
- ***
18
-
19
- ### trusted\_issuer\_ids?
20
-
21
- > `optional` **trusted\_issuer\_ids?**: readonly `string`[]
22
-
23
- ***
24
-
25
- ### trustedIssuerIdResolver?
26
-
27
- > `optional` **trustedIssuerIdResolver?**: (`issuer_id`) => `boolean` \| `Promise`\<`boolean`\>
28
-
29
- #### Parameters
30
-
31
- ##### issuer\_id
32
-
33
- `string`
34
-
35
- #### Returns
36
-
37
- `boolean` \| `Promise`\<`boolean`\>
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -0,0 +1,45 @@
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
+
3
+ ***
4
+
5
+ # Interface: OwnerAuditSubscription
6
+
7
+ ## Properties
8
+
9
+ ### afterEventId?
10
+
11
+ > `optional` **afterEventId?**: `string`
12
+
13
+ ***
14
+
15
+ ### operations?
16
+
17
+ > `optional` **operations?**: readonly [`AuditOperation`](../enumerations/AuditOperation.md)[]
18
+
19
+ ***
20
+
21
+ ### request\_id?
22
+
23
+ > `optional` **request\_id?**: `string`
24
+
25
+ ***
26
+
27
+ ### root\_agent\_id?
28
+
29
+ > `optional` **root\_agent\_id?**: `string`
30
+
31
+ ## Methods
32
+
33
+ ### onEvent()
34
+
35
+ > **onEvent**(`entry`): `void`
36
+
37
+ #### Parameters
38
+
39
+ ##### entry
40
+
41
+ [`AuditEntry`](AuditEntry.md)
42
+
43
+ #### Returns
44
+
45
+ `void`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -258,6 +258,22 @@ A client for vault owners to manage secrets, agents, and grants.
258
258
 
259
259
  ***
260
260
 
261
+ ### ownerOnAudit()
262
+
263
+ > **ownerOnAudit**(`subscription`): () => `void`
264
+
265
+ #### Parameters
266
+
267
+ ##### subscription
268
+
269
+ [`OwnerAuditSubscription`](OwnerAuditSubscription.md)
270
+
271
+ #### Returns
272
+
273
+ () => `void`
274
+
275
+ ***
276
+
261
277
  ### ownerOnPendingDispatch()
262
278
 
263
279
  > **ownerOnPendingDispatch**(`subscription`): () => `void`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -58,6 +58,10 @@
58
58
 
59
59
  > `optional` **secret\_alias?**: `string`
60
60
 
61
+ #### secret\_id?
62
+
63
+ > `optional` **secret\_id?**: [`SecretId`](SecretId.md)
64
+
61
65
  #### target\_url
62
66
 
63
67
  > **target\_url**: `string`
@@ -101,3 +105,9 @@
101
105
  ### root\_agent\_id
102
106
 
103
107
  > **root\_agent\_id**: `string`
108
+
109
+ ***
110
+
111
+ ### secret\_id?
112
+
113
+ > `optional` **secret\_id?**: [`SecretId`](SecretId.md)
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -12,9 +12,15 @@
12
12
 
13
13
  ***
14
14
 
15
- ### plaintext
15
+ ### new\_alias?
16
16
 
17
- > **plaintext**: `string`
17
+ > `optional` **new\_alias?**: `string`
18
+
19
+ ***
20
+
21
+ ### plaintext?
22
+
23
+ > `optional` **plaintext?**: `string`
18
24
 
19
25
  ***
20
26
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -68,6 +68,12 @@
68
68
 
69
69
  ***
70
70
 
71
+ ### secret\_id?
72
+
73
+ > `optional` **secret\_id?**: [`SecretId`](SecretId.md)
74
+
75
+ ***
76
+
71
77
  ### target\_url
72
78
 
73
79
  > **target\_url**: `string`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -76,6 +76,10 @@
76
76
 
77
77
  > `optional` **secret\_alias?**: `string`
78
78
 
79
+ #### secret\_id
80
+
81
+ > **secret\_id**: [`SecretId`](SecretId.md) \| `null`
82
+
79
83
  #### target\_url
80
84
 
81
85
  > **target\_url**: `string`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -18,9 +18,9 @@
18
18
 
19
19
  ***
20
20
 
21
- ### secret\_alias
21
+ ### secret\_id
22
22
 
23
- > **secret\_alias**: `string`
23
+ > **secret\_id**: [`SecretId`](SecretId.md)
24
24
 
25
25
  ***
26
26
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.69.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4