@the-ai-company/cbio-node-runtime 1.70.1 → 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 (145) hide show
  1. package/README.md +1 -0
  2. package/dist/clients/owner/client.js +30 -4
  3. package/dist/clients/owner/client.js.map +1 -1
  4. package/dist/vault-core/contracts.d.ts +14 -6
  5. package/dist/vault-core/contracts.js.map +1 -1
  6. package/dist/vault-core/core.d.ts +7 -6
  7. package/dist/vault-core/core.js +91 -42
  8. package/dist/vault-core/core.js.map +1 -1
  9. package/dist/vault-core/defaults.d.ts +6 -5
  10. package/dist/vault-core/defaults.js +29 -21
  11. package/dist/vault-core/defaults.js.map +1 -1
  12. package/dist/vault-core/persistence.d.ts +7 -6
  13. package/dist/vault-core/persistence.js +97 -27
  14. package/dist/vault-core/persistence.js.map +1 -1
  15. package/dist/vault-core/ports.d.ts +5 -5
  16. package/dist/vault-ingress/index.d.ts +21 -0
  17. package/dist/vault-ingress/index.js +37 -14
  18. package/dist/vault-ingress/index.js.map +1 -1
  19. package/docs/ARCHITECTURE.md +3 -3
  20. package/docs/REFERENCE.md +4 -3
  21. package/docs/api/README.md +2 -2
  22. package/docs/api/classes/IdentityError.md +1 -1
  23. package/docs/api/classes/OwnerClientError.md +1 -1
  24. package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +6 -2
  25. package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +7 -7
  26. package/docs/api/classes/PersistentVaultAuditLog.md +1 -1
  27. package/docs/api/classes/PersistentVaultSecretCustody.md +1 -1
  28. package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +10 -10
  29. package/docs/api/classes/PersistentVaultSecretRepository.md +1 -1
  30. package/docs/api/classes/VaultCore.md +16 -16
  31. package/docs/api/classes/VaultCoreError.md +1 -1
  32. package/docs/api/enumerations/AuditOperation.md +1 -1
  33. package/docs/api/enumerations/DispatchStatus.md +1 -1
  34. package/docs/api/enumerations/IdentityErrorCode.md +1 -1
  35. package/docs/api/enumerations/OwnerClientErrorCode.md +1 -1
  36. package/docs/api/functions/createAgentClient.md +1 -1
  37. package/docs/api/functions/createIdentity.md +1 -1
  38. package/docs/api/functions/createOwnerClient.md +1 -1
  39. package/docs/api/functions/createPersistentVaultCoreDependencies.md +1 -1
  40. package/docs/api/functions/createVault.md +1 -1
  41. package/docs/api/functions/createVaultCore.md +1 -1
  42. package/docs/api/functions/createVaultCoreDependencies.md +1 -1
  43. package/docs/api/functions/createVaultService.md +1 -1
  44. package/docs/api/functions/createWorkspaceStorage.md +1 -1
  45. package/docs/api/functions/deriveRootAgentId.md +1 -1
  46. package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +1 -1
  47. package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
  48. package/docs/api/functions/handleVaultAgentControlHttp.md +1 -1
  49. package/docs/api/functions/handleVaultAuditSse.md +1 -1
  50. package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
  51. package/docs/api/functions/handleVaultPendingDispatchSse.md +1 -1
  52. package/docs/api/functions/initializeVaultCustody.md +1 -1
  53. package/docs/api/functions/listVaults.md +1 -1
  54. package/docs/api/functions/openOwnerSession.md +1 -1
  55. package/docs/api/functions/readVaultProfile.md +1 -1
  56. package/docs/api/functions/recoverVault.md +1 -1
  57. package/docs/api/functions/recoverVaultWorkingKey.md +1 -1
  58. package/docs/api/functions/restoreIdentity.md +1 -1
  59. package/docs/api/functions/updateVaultMetadata.md +1 -1
  60. package/docs/api/functions/writeVaultProfile.md +1 -1
  61. package/docs/api/interfaces/AgentClient.md +1 -1
  62. package/docs/api/interfaces/AgentDispatchIntent.md +1 -1
  63. package/docs/api/interfaces/AgentDispatchTransport.md +1 -1
  64. package/docs/api/interfaces/AgentIdentity.md +1 -1
  65. package/docs/api/interfaces/AgentIdentityRecord.md +1 -1
  66. package/docs/api/interfaces/AgentRequestRecord.md +11 -1
  67. package/docs/api/interfaces/AgentRuntimeManifest.md +1 -1
  68. package/docs/api/interfaces/AgentSecretGrant.md +3 -3
  69. package/docs/api/interfaces/AgentSigner.md +1 -1
  70. package/docs/api/interfaces/AgentVisibleRequestRecord.md +7 -1
  71. package/docs/api/interfaces/AgentVisibleSecretRecord.md +1 -1
  72. package/docs/api/interfaces/AuditEntry.md +1 -1
  73. package/docs/api/interfaces/CbioRuntime.md +1 -1
  74. package/docs/api/interfaces/CreateAgentClientOptions.md +1 -1
  75. package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
  76. package/docs/api/interfaces/CreateOwnerClientOptions.md +1 -1
  77. package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +1 -1
  78. package/docs/api/interfaces/CreateVaultOptions.md +1 -1
  79. package/docs/api/interfaces/CreatedVault.md +1 -1
  80. package/docs/api/interfaces/DefaultPolicyEngineOptions.md +1 -1
  81. package/docs/api/interfaces/DispatchAuthorization.md +1 -1
  82. package/docs/api/interfaces/DispatchInstruction.md +1 -1
  83. package/docs/api/interfaces/DispatchRequest.md +1 -1
  84. package/docs/api/interfaces/DispatchResult.md +1 -1
  85. package/docs/api/interfaces/IStorageProvider.md +1 -1
  86. package/docs/api/interfaces/InitializeVaultCustodyOptions.md +1 -1
  87. package/docs/api/interfaces/InitializedVaultCustody.md +1 -1
  88. package/docs/api/interfaces/OpenOwnerSessionOptions.md +1 -1
  89. package/docs/api/interfaces/OwnerAgentProvisionResult.md +1 -1
  90. package/docs/api/interfaces/OwnerAuditSubscription.md +1 -1
  91. package/docs/api/interfaces/OwnerClient.md +1 -1
  92. package/docs/api/interfaces/OwnerCreateSecretInput.md +1 -1
  93. package/docs/api/interfaces/OwnerPendingDispatchSubscription.md +1 -1
  94. package/docs/api/interfaces/OwnerRemoveSecretInput.md +1 -1
  95. package/docs/api/interfaces/OwnerRequestRecord.md +11 -1
  96. package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
  97. package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
  98. package/docs/api/interfaces/OwnerSession.md +1 -1
  99. package/docs/api/interfaces/OwnerUpdateSecretInput.md +1 -1
  100. package/docs/api/interfaces/OwnerVisibleRequestRecord.md +7 -1
  101. package/docs/api/interfaces/PendingDispatchEvent.md +1 -1
  102. package/docs/api/interfaces/RecoverVaultOptions.md +1 -1
  103. package/docs/api/interfaces/RecoveredVault.md +1 -1
  104. package/docs/api/interfaces/RequestRecord.md +5 -1
  105. package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
  106. package/docs/api/interfaces/SecretAlias.md +1 -1
  107. package/docs/api/interfaces/SecretDestinationGrant.md +3 -3
  108. package/docs/api/interfaces/SecretId.md +1 -1
  109. package/docs/api/interfaces/SecretRecord.md +1 -1
  110. package/docs/api/interfaces/Signer.md +1 -1
  111. package/docs/api/interfaces/VaultApproveDispatchInput.md +1 -1
  112. package/docs/api/interfaces/VaultAuditQueryInput.md +1 -1
  113. package/docs/api/interfaces/VaultCoreDependenciesOptions.md +1 -1
  114. package/docs/api/interfaces/VaultCreateAgentInput.md +1 -1
  115. package/docs/api/interfaces/VaultExportSecretInput.md +1 -1
  116. package/docs/api/interfaces/VaultGetRequestInput.md +1 -1
  117. package/docs/api/interfaces/VaultGrantAgentSecretInput.md +1 -1
  118. package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +1 -1
  119. package/docs/api/interfaces/VaultId.md +1 -1
  120. package/docs/api/interfaces/VaultImportAgentInput.md +1 -1
  121. package/docs/api/interfaces/VaultIssueSessionTokenInput.md +1 -1
  122. package/docs/api/interfaces/VaultListAgentsInput.md +1 -1
  123. package/docs/api/interfaces/VaultListGrantsInput.md +1 -1
  124. package/docs/api/interfaces/VaultListRequestsInput.md +1 -1
  125. package/docs/api/interfaces/VaultListSecretsInput.md +1 -1
  126. package/docs/api/interfaces/VaultMetadata.md +1 -1
  127. package/docs/api/interfaces/VaultObject.md +1 -1
  128. package/docs/api/interfaces/VaultPrincipal.md +1 -1
  129. package/docs/api/interfaces/VaultProfile.md +1 -1
  130. package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +1 -1
  131. package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +1 -1
  132. package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +1 -1
  133. package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +1 -1
  134. package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
  135. package/docs/api/interfaces/VaultService.md +1 -1
  136. package/docs/api/interfaces/VaultUpdateAgentInput.md +1 -1
  137. package/docs/api/type-aliases/AgentId.md +1 -1
  138. package/docs/api/type-aliases/AgentRequestResult.md +1 -1
  139. package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
  140. package/docs/api/type-aliases/DispatchApprovalDecision.md +1 -1
  141. package/docs/api/type-aliases/GrantStatus.md +1 -1
  142. package/docs/api/type-aliases/SecretLifecycleStatus.md +1 -1
  143. package/docs/api/type-aliases/VaultPrincipalKind.md +1 -1
  144. package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +1 -1
  145. package/package.json +6 -1
@@ -1,8 +1,8 @@
1
- **CBIO Node Runtime Agent API v1.70.1**
1
+ **CBIO Node Runtime Agent API v1.71.0**
2
2
 
3
3
  ***
4
4
 
5
- # CBIO Node Runtime Agent API v1.70.1
5
+ # CBIO Node Runtime Agent API v1.71.0
6
6
 
7
7
  ## Enumerations
8
8
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.70.1**](../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.70.1**](../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.70.1**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -12,7 +12,7 @@
12
12
 
13
13
  ### Constructor
14
14
 
15
- > **new PersistentVaultAgentIdentityRegistry**(`db`): `SqliteAgentIdentityRegistry`
15
+ > **new PersistentVaultAgentIdentityRegistry**(`db`, `custody`): `SqliteAgentIdentityRegistry`
16
16
 
17
17
  #### Parameters
18
18
 
@@ -20,6 +20,10 @@
20
20
 
21
21
  `Database`
22
22
 
23
+ ##### custody
24
+
25
+ `SecretCustody`
26
+
23
27
  #### Returns
24
28
 
25
29
  `SqliteAgentIdentityRegistry`
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.70.1**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -28,7 +28,7 @@
28
28
 
29
29
  ### delete()
30
30
 
31
- > **delete**(`vault_id`, `root_agent_id`, `secret_alias`): `Promise`\<`void`\>
31
+ > **delete**(`vault_id`, `root_agent_id`, `secret_id`): `Promise`\<`void`\>
32
32
 
33
33
  #### Parameters
34
34
 
@@ -40,9 +40,9 @@
40
40
 
41
41
  `string`
42
42
 
43
- ##### secret\_alias
43
+ ##### secret\_id
44
44
 
45
- `string`
45
+ [`SecretId`](../interfaces/SecretId.md)
46
46
 
47
47
  #### Returns
48
48
 
@@ -56,7 +56,7 @@
56
56
 
57
57
  ### get()
58
58
 
59
- > **get**(`vault_id`, `root_agent_id`, `secret_alias`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md) \| `null`\>
59
+ > **get**(`vault_id`, `root_agent_id`, `secret_id`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md) \| `null`\>
60
60
 
61
61
  #### Parameters
62
62
 
@@ -68,9 +68,9 @@
68
68
 
69
69
  `string`
70
70
 
71
- ##### secret\_alias
71
+ ##### secret\_id
72
72
 
73
- `string`
73
+ [`SecretId`](../interfaces/SecretId.md)
74
74
 
75
75
  #### Returns
76
76
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.70.1**](../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.70.1**](../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.70.1**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -28,7 +28,7 @@
28
28
 
29
29
  ### delete()
30
30
 
31
- > **delete**(`vault_id`, `secret_alias`, `site_id`): `Promise`\<`void`\>
31
+ > **delete**(`vault_id`, `secret_id`, `site_id`): `Promise`\<`void`\>
32
32
 
33
33
  #### Parameters
34
34
 
@@ -36,9 +36,9 @@
36
36
 
37
37
  [`VaultId`](../interfaces/VaultId.md)
38
38
 
39
- ##### secret\_alias
39
+ ##### secret\_id
40
40
 
41
- `string`
41
+ [`SecretId`](../interfaces/SecretId.md)
42
42
 
43
43
  ##### site\_id
44
44
 
@@ -56,7 +56,7 @@
56
56
 
57
57
  ### get()
58
58
 
59
- > **get**(`vault_id`, `secret_alias`, `site_id`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md) \| `null`\>
59
+ > **get**(`vault_id`, `secret_id`, `site_id`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md) \| `null`\>
60
60
 
61
61
  #### Parameters
62
62
 
@@ -64,9 +64,9 @@
64
64
 
65
65
  [`VaultId`](../interfaces/VaultId.md)
66
66
 
67
- ##### secret\_alias
67
+ ##### secret\_id
68
68
 
69
- `string`
69
+ [`SecretId`](../interfaces/SecretId.md)
70
70
 
71
71
  ##### site\_id
72
72
 
@@ -84,7 +84,7 @@
84
84
 
85
85
  ### list()
86
86
 
87
- > **list**(`vault_id`, `secret_alias?`): `Promise`\<readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]\>
87
+ > **list**(`vault_id`, `secret_id?`): `Promise`\<readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]\>
88
88
 
89
89
  #### Parameters
90
90
 
@@ -92,9 +92,9 @@
92
92
 
93
93
  [`VaultId`](../interfaces/VaultId.md)
94
94
 
95
- ##### secret\_alias?
95
+ ##### secret\_id?
96
96
 
97
- `string`
97
+ [`SecretId`](../interfaces/SecretId.md)
98
98
 
99
99
  #### Returns
100
100
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.70.1**](../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.70.1**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -272,7 +272,7 @@
272
272
 
273
273
  ### ownerGrantAgentSecret()
274
274
 
275
- > **ownerGrantAgentSecret**(`actor`, `root_agent_id`, `secret_alias`, `request?`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)\>
275
+ > **ownerGrantAgentSecret**(`actor`, `root_agent_id`, `secret_id`, `request?`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)\>
276
276
 
277
277
  #### Parameters
278
278
 
@@ -284,9 +284,9 @@
284
284
 
285
285
  `string`
286
286
 
287
- ##### secret\_alias
287
+ ##### secret\_id
288
288
 
289
- `string`
289
+ [`SecretId`](../interfaces/SecretId.md)
290
290
 
291
291
  ##### request?
292
292
 
@@ -302,7 +302,7 @@
302
302
 
303
303
  ### ownerGrantSecretDestination()
304
304
 
305
- > **ownerGrantSecretDestination**(`actor`, `secret_alias`, `site_id`, `request?`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)\>
305
+ > **ownerGrantSecretDestination**(`actor`, `secret_id`, `site_id`, `request?`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)\>
306
306
 
307
307
  #### Parameters
308
308
 
@@ -310,9 +310,9 @@
310
310
 
311
311
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
312
312
 
313
- ##### secret\_alias
313
+ ##### secret\_id
314
314
 
315
- `string`
315
+ [`SecretId`](../interfaces/SecretId.md)
316
316
 
317
317
  ##### site\_id
318
318
 
@@ -390,7 +390,7 @@
390
390
 
391
391
  ### ownerListGrants()
392
392
 
393
- > **ownerListGrants**(`actor`, `root_agent_id?`, `secret_alias?`): `Promise`\<\{ `agent_secrets`: readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]; `secret_destinations`: readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]; \}\>
393
+ > **ownerListGrants**(`actor`, `root_agent_id?`, `secret_id?`): `Promise`\<\{ `agent_secrets`: readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]; `secret_destinations`: readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]; \}\>
394
394
 
395
395
  #### Parameters
396
396
 
@@ -402,9 +402,9 @@
402
402
 
403
403
  `string`
404
404
 
405
- ##### secret\_alias?
405
+ ##### secret\_id?
406
406
 
407
- `string`
407
+ [`SecretId`](../interfaces/SecretId.md)
408
408
 
409
409
  #### Returns
410
410
 
@@ -574,7 +574,7 @@
574
574
 
575
575
  ### ownerRevokeAgentSecret()
576
576
 
577
- > **ownerRevokeAgentSecret**(`actor`, `root_agent_id`, `secret_alias`, `request?`): `Promise`\<`void`\>
577
+ > **ownerRevokeAgentSecret**(`actor`, `root_agent_id`, `secret_id`, `request?`): `Promise`\<`void`\>
578
578
 
579
579
  #### Parameters
580
580
 
@@ -586,9 +586,9 @@
586
586
 
587
587
  `string`
588
588
 
589
- ##### secret\_alias
589
+ ##### secret\_id
590
590
 
591
- `string`
591
+ [`SecretId`](../interfaces/SecretId.md)
592
592
 
593
593
  ##### request?
594
594
 
@@ -604,7 +604,7 @@
604
604
 
605
605
  ### ownerRevokeSecretDestination()
606
606
 
607
- > **ownerRevokeSecretDestination**(`actor`, `secret_alias`, `site_id`, `request?`): `Promise`\<`void`\>
607
+ > **ownerRevokeSecretDestination**(`actor`, `secret_id`, `site_id`, `request?`): `Promise`\<`void`\>
608
608
 
609
609
  #### Parameters
610
610
 
@@ -612,9 +612,9 @@
612
612
 
613
613
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
614
614
 
615
- ##### secret\_alias
615
+ ##### secret\_id
616
616
 
617
- `string`
617
+ [`SecretId`](../interfaces/SecretId.md)
618
618
 
619
619
  ##### site\_id
620
620
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../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.70.1**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.71.0**](../README.md)
2
2
 
3
3
  ***
4
4