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

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 (189) hide show
  1. package/README.md +2 -2
  2. package/dist/clients/agent/client.d.ts +2 -2
  3. package/dist/clients/agent/client.js +46 -49
  4. package/dist/clients/agent/client.js.map +1 -1
  5. package/dist/clients/agent/contracts.d.ts +5 -5
  6. package/dist/clients/owner/client.js +169 -176
  7. package/dist/clients/owner/client.js.map +1 -1
  8. package/dist/clients/owner/contracts.d.ts +45 -48
  9. package/dist/protocol/childSecretNaming.d.ts +1 -1
  10. package/dist/protocol/childSecretNaming.js +2 -2
  11. package/dist/protocol/childSecretNaming.js.map +1 -1
  12. package/dist/protocol/crypto.d.ts +4 -4
  13. package/dist/protocol/crypto.js +14 -14
  14. package/dist/protocol/crypto.js.map +1 -1
  15. package/dist/protocol/identity.d.ts +2 -2
  16. package/dist/protocol/identity.js +4 -4
  17. package/dist/protocol/identity.js.map +1 -1
  18. package/dist/public-types.d.ts +1 -1
  19. package/dist/public-types.js +1 -1
  20. package/dist/public-types.js.map +1 -1
  21. package/dist/runtime/bootstrap.d.ts +6 -6
  22. package/dist/runtime/bootstrap.js +26 -26
  23. package/dist/runtime/bootstrap.js.map +1 -1
  24. package/dist/runtime/identity.d.ts +6 -6
  25. package/dist/runtime/identity.js +14 -12
  26. package/dist/runtime/identity.js.map +1 -1
  27. package/dist/runtime/index.d.ts +1 -1
  28. package/dist/runtime/index.js +1 -1
  29. package/dist/runtime/index.js.map +1 -1
  30. package/dist/runtime/owner-session.d.ts +1 -5
  31. package/dist/runtime/owner-session.js +4 -5
  32. package/dist/runtime/owner-session.js.map +1 -1
  33. package/dist/runtime/vault-metadata.d.ts +2 -2
  34. package/dist/runtime/vault-metadata.js +2 -2
  35. package/dist/runtime/vault-metadata.js.map +1 -1
  36. package/dist/vault-core/contracts.d.ts +235 -238
  37. package/dist/vault-core/contracts.js +25 -34
  38. package/dist/vault-core/contracts.js.map +1 -1
  39. package/dist/vault-core/core.d.ts +41 -41
  40. package/dist/vault-core/core.js +257 -255
  41. package/dist/vault-core/core.js.map +1 -1
  42. package/dist/vault-core/defaults.d.ts +25 -25
  43. package/dist/vault-core/defaults.js +95 -95
  44. package/dist/vault-core/defaults.js.map +1 -1
  45. package/dist/vault-core/index.d.ts +2 -2
  46. package/dist/vault-core/index.js +2 -2
  47. package/dist/vault-core/index.js.map +1 -1
  48. package/dist/vault-core/persistence.d.ts +19 -19
  49. package/dist/vault-core/persistence.js +78 -66
  50. package/dist/vault-core/persistence.js.map +1 -1
  51. package/dist/vault-core/ports.d.ts +23 -23
  52. package/dist/vault-core/tool-metadata.js +6 -6
  53. package/dist/vault-core/tool-metadata.js.map +1 -1
  54. package/dist/vault-ingress/defaults.d.ts +2 -2
  55. package/dist/vault-ingress/defaults.js +10 -10
  56. package/dist/vault-ingress/defaults.js.map +1 -1
  57. package/dist/vault-ingress/index.d.ts +46 -46
  58. package/dist/vault-ingress/index.js +34 -34
  59. package/dist/vault-ingress/index.js.map +1 -1
  60. package/dist/vault-ingress/remote-transport.d.ts +2 -2
  61. package/dist/vault-ingress/remote-transport.js +27 -27
  62. package/dist/vault-ingress/remote-transport.js.map +1 -1
  63. package/docs/ARCHITECTURE.md +1 -1
  64. package/docs/CUSTODY_MODEL.md +3 -3
  65. package/docs/IDENTITY_MODEL.md +4 -4
  66. package/docs/REFERENCE.md +1 -1
  67. package/docs/api/README.md +3 -4
  68. package/docs/api/classes/IdentityError.md +1 -1
  69. package/docs/api/classes/OwnerClientError.md +1 -1
  70. package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +6 -6
  71. package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +12 -12
  72. package/docs/api/classes/PersistentVaultAuditLog.md +1 -1
  73. package/docs/api/classes/PersistentVaultSecretCustody.md +7 -7
  74. package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +12 -12
  75. package/docs/api/classes/PersistentVaultSecretRepository.md +7 -7
  76. package/docs/api/classes/VaultCore.md +53 -53
  77. package/docs/api/classes/VaultCoreError.md +1 -1
  78. package/docs/api/enumerations/AuditOperation.md +137 -0
  79. package/docs/api/enumerations/DispatchStatus.md +1 -1
  80. package/docs/api/enumerations/IdentityErrorCode.md +1 -1
  81. package/docs/api/enumerations/OwnerClientErrorCode.md +1 -1
  82. package/docs/api/functions/createAgentClient.md +1 -1
  83. package/docs/api/functions/createIdentity.md +2 -2
  84. package/docs/api/functions/createOwnerClient.md +1 -1
  85. package/docs/api/functions/createOwnerSession.md +1 -1
  86. package/docs/api/functions/createPersistentVaultCoreDependencies.md +3 -3
  87. package/docs/api/functions/createVault.md +1 -1
  88. package/docs/api/functions/createVaultCore.md +1 -1
  89. package/docs/api/functions/createVaultCoreDependencies.md +1 -1
  90. package/docs/api/functions/createVaultService.md +1 -1
  91. package/docs/api/functions/createWorkspaceStorage.md +1 -1
  92. package/docs/api/functions/deriveRootAgentId.md +3 -3
  93. package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +4 -4
  94. package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
  95. package/docs/api/functions/handleVaultAgentControlHttp.md +1 -1
  96. package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
  97. package/docs/api/functions/initializeVaultCustody.md +1 -1
  98. package/docs/api/functions/listVaults.md +1 -1
  99. package/docs/api/functions/readVaultProfile.md +3 -3
  100. package/docs/api/functions/recoverVault.md +4 -4
  101. package/docs/api/functions/recoverVaultWorkingKey.md +1 -1
  102. package/docs/api/functions/restoreIdentity.md +3 -3
  103. package/docs/api/functions/updateVaultMetadata.md +1 -1
  104. package/docs/api/functions/writeVaultProfile.md +3 -3
  105. package/docs/api/interfaces/AgentClient.md +3 -3
  106. package/docs/api/interfaces/AgentDispatchIntent.md +7 -7
  107. package/docs/api/interfaces/AgentDispatchTransport.md +1 -1
  108. package/docs/api/interfaces/AgentIdentity.md +3 -3
  109. package/docs/api/interfaces/AgentIdentityRecord.md +11 -11
  110. package/docs/api/interfaces/AgentRequestResult.md +9 -9
  111. package/docs/api/interfaces/AgentRuntimeManifest.md +13 -13
  112. package/docs/api/interfaces/AgentSecretGrant.md +11 -11
  113. package/docs/api/interfaces/AgentSigner.md +1 -1
  114. package/docs/api/interfaces/AgentVisibleRequestRecord.md +13 -13
  115. package/docs/api/interfaces/AgentVisibleSecretRecord.md +13 -13
  116. package/docs/api/interfaces/AuditEntry.md +45 -25
  117. package/docs/api/interfaces/CbioRuntime.md +10 -10
  118. package/docs/api/interfaces/CreateAgentClientOptions.md +1 -1
  119. package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
  120. package/docs/api/interfaces/CreateOwnerClientOptions.md +3 -13
  121. package/docs/api/interfaces/CreateOwnerSessionOptions.md +4 -10
  122. package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +3 -3
  123. package/docs/api/interfaces/CreateVaultOptions.md +2 -2
  124. package/docs/api/interfaces/CreatedVault.md +1 -1
  125. package/docs/api/interfaces/DefaultPolicyEngineOptions.md +9 -9
  126. package/docs/api/interfaces/DispatchAuthorization.md +11 -11
  127. package/docs/api/interfaces/DispatchInstruction.md +9 -9
  128. package/docs/api/interfaces/DispatchRequest.md +11 -11
  129. package/docs/api/interfaces/DispatchResult.md +11 -11
  130. package/docs/api/interfaces/IStorageProvider.md +1 -1
  131. package/docs/api/interfaces/InitializeVaultCustodyOptions.md +1 -1
  132. package/docs/api/interfaces/InitializedVaultCustody.md +1 -1
  133. package/docs/api/interfaces/OwnerAgentProvisionResult.md +3 -3
  134. package/docs/api/interfaces/OwnerClient.md +5 -5
  135. package/docs/api/interfaces/OwnerCreateSecretInput.md +3 -3
  136. package/docs/api/interfaces/OwnerRemoveSecretInput.md +3 -3
  137. package/docs/api/interfaces/OwnerRequestRecord.md +19 -19
  138. package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
  139. package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
  140. package/docs/api/interfaces/OwnerSession.md +3 -3
  141. package/docs/api/interfaces/OwnerUpdateSecretInput.md +3 -3
  142. package/docs/api/interfaces/OwnerVisibleRequestRecord.md +21 -21
  143. package/docs/api/interfaces/RecoverVaultOptions.md +4 -4
  144. package/docs/api/interfaces/RecoveredVault.md +1 -1
  145. package/docs/api/interfaces/RequestRecord.md +19 -19
  146. package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
  147. package/docs/api/interfaces/SecretAlias.md +1 -1
  148. package/docs/api/interfaces/SecretDestinationGrant.md +11 -11
  149. package/docs/api/interfaces/SecretId.md +1 -1
  150. package/docs/api/interfaces/SecretRecord.md +13 -13
  151. package/docs/api/interfaces/Signer.md +1 -1
  152. package/docs/api/interfaces/VaultApproveDispatchInput.md +5 -5
  153. package/docs/api/interfaces/VaultAuditQueryInput.md +7 -7
  154. package/docs/api/interfaces/VaultCoreDependenciesOptions.md +5 -5
  155. package/docs/api/interfaces/VaultCreateAgentInput.md +3 -3
  156. package/docs/api/interfaces/VaultExportSecretInput.md +3 -3
  157. package/docs/api/interfaces/VaultGetRequestInput.md +5 -5
  158. package/docs/api/interfaces/VaultGrantAgentSecretInput.md +7 -7
  159. package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +7 -7
  160. package/docs/api/interfaces/VaultId.md +1 -1
  161. package/docs/api/interfaces/VaultImportAgentInput.md +5 -5
  162. package/docs/api/interfaces/VaultIssueSessionTokenInput.md +5 -5
  163. package/docs/api/interfaces/VaultListAgentsInput.md +3 -3
  164. package/docs/api/interfaces/VaultListGrantsInput.md +7 -7
  165. package/docs/api/interfaces/VaultListRequestsInput.md +5 -5
  166. package/docs/api/interfaces/VaultListSecretsInput.md +3 -3
  167. package/docs/api/interfaces/VaultMetadata.md +1 -1
  168. package/docs/api/interfaces/VaultObject.md +1 -1
  169. package/docs/api/interfaces/VaultPrincipal.md +1 -1
  170. package/docs/api/interfaces/VaultProfile.md +1 -1
  171. package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +5 -5
  172. package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +3 -3
  173. package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +7 -7
  174. package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +7 -7
  175. package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
  176. package/docs/api/interfaces/VaultService.md +8 -8
  177. package/docs/api/interfaces/VaultUpdateAgentInput.md +5 -5
  178. package/docs/api/type-aliases/AgentId.md +1 -1
  179. package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
  180. package/docs/api/type-aliases/DispatchApprovalDecision.md +1 -1
  181. package/docs/api/type-aliases/GrantStatus.md +1 -1
  182. package/docs/api/type-aliases/SecretLifecycleStatus.md +1 -1
  183. package/docs/api/type-aliases/VaultPrincipalKind.md +1 -1
  184. package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +1 -1
  185. package/docs/zh/README.md +1 -1
  186. package/examples/process-isolation.ts +21 -21
  187. package/package.json +2 -2
  188. package/docs/api/enumerations/AuditAction.md +0 -143
  189. package/docs/api/enumerations/AuditOutcome.md +0 -35
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.8**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -28,19 +28,19 @@
28
28
 
29
29
  ### delete()
30
30
 
31
- > **delete**(`vaultId`, `rootAgentId`, `secretAlias`): `Promise`\<`void`\>
31
+ > **delete**(`vault_id`, `root_agent_id`, `secret_alias`): `Promise`\<`void`\>
32
32
 
33
33
  #### Parameters
34
34
 
35
- ##### vaultId
35
+ ##### vault\_id
36
36
 
37
37
  [`VaultId`](../interfaces/VaultId.md)
38
38
 
39
- ##### rootAgentId
39
+ ##### root\_agent\_id
40
40
 
41
41
  `string`
42
42
 
43
- ##### secretAlias
43
+ ##### secret\_alias
44
44
 
45
45
  `string`
46
46
 
@@ -56,19 +56,19 @@
56
56
 
57
57
  ### get()
58
58
 
59
- > **get**(`vaultId`, `rootAgentId`, `secretAlias`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md) \| `null`\>
59
+ > **get**(`vault_id`, `root_agent_id`, `secret_alias`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md) \| `null`\>
60
60
 
61
61
  #### Parameters
62
62
 
63
- ##### vaultId
63
+ ##### vault\_id
64
64
 
65
65
  [`VaultId`](../interfaces/VaultId.md)
66
66
 
67
- ##### rootAgentId
67
+ ##### root\_agent\_id
68
68
 
69
69
  `string`
70
70
 
71
- ##### secretAlias
71
+ ##### secret\_alias
72
72
 
73
73
  `string`
74
74
 
@@ -84,15 +84,15 @@
84
84
 
85
85
  ### list()
86
86
 
87
- > **list**(`vaultId`, `rootAgentId?`): `Promise`\<readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]\>
87
+ > **list**(`vault_id`, `root_agent_id?`): `Promise`\<readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]\>
88
88
 
89
89
  #### Parameters
90
90
 
91
- ##### vaultId
91
+ ##### vault\_id
92
92
 
93
93
  [`VaultId`](../interfaces/VaultId.md)
94
94
 
95
- ##### rootAgentId?
95
+ ##### root\_agent\_id?
96
96
 
97
97
  `string`
98
98
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.8**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.8**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -32,11 +32,11 @@
32
32
 
33
33
  ### delete()
34
34
 
35
- > **delete**(`secretId`): `Promise`\<`void`\>
35
+ > **delete**(`secret_id`): `Promise`\<`void`\>
36
36
 
37
37
  #### Parameters
38
38
 
39
- ##### secretId
39
+ ##### secret\_id
40
40
 
41
41
  [`SecretId`](../interfaces/SecretId.md)
42
42
 
@@ -52,11 +52,11 @@
52
52
 
53
53
  ### load()
54
54
 
55
- > **load**(`secretId`): `Promise`\<`string` \| `null`\>
55
+ > **load**(`secret_id`): `Promise`\<`string` \| `null`\>
56
56
 
57
57
  #### Parameters
58
58
 
59
- ##### secretId
59
+ ##### secret\_id
60
60
 
61
61
  [`SecretId`](../interfaces/SecretId.md)
62
62
 
@@ -72,11 +72,11 @@
72
72
 
73
73
  ### store()
74
74
 
75
- > **store**(`secretId`, `plaintext`): `Promise`\<`void`\>
75
+ > **store**(`secret_id`, `plaintext`): `Promise`\<`void`\>
76
76
 
77
77
  #### Parameters
78
78
 
79
- ##### secretId
79
+ ##### secret\_id
80
80
 
81
81
  [`SecretId`](../interfaces/SecretId.md)
82
82
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.8**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -28,19 +28,19 @@
28
28
 
29
29
  ### delete()
30
30
 
31
- > **delete**(`vaultId`, `secretAlias`, `siteId`): `Promise`\<`void`\>
31
+ > **delete**(`vault_id`, `secret_alias`, `site_id`): `Promise`\<`void`\>
32
32
 
33
33
  #### Parameters
34
34
 
35
- ##### vaultId
35
+ ##### vault\_id
36
36
 
37
37
  [`VaultId`](../interfaces/VaultId.md)
38
38
 
39
- ##### secretAlias
39
+ ##### secret\_alias
40
40
 
41
41
  `string`
42
42
 
43
- ##### siteId
43
+ ##### site\_id
44
44
 
45
45
  `string`
46
46
 
@@ -56,19 +56,19 @@
56
56
 
57
57
  ### get()
58
58
 
59
- > **get**(`vaultId`, `secretAlias`, `siteId`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md) \| `null`\>
59
+ > **get**(`vault_id`, `secret_alias`, `site_id`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md) \| `null`\>
60
60
 
61
61
  #### Parameters
62
62
 
63
- ##### vaultId
63
+ ##### vault\_id
64
64
 
65
65
  [`VaultId`](../interfaces/VaultId.md)
66
66
 
67
- ##### secretAlias
67
+ ##### secret\_alias
68
68
 
69
69
  `string`
70
70
 
71
- ##### siteId
71
+ ##### site\_id
72
72
 
73
73
  `string`
74
74
 
@@ -84,15 +84,15 @@
84
84
 
85
85
  ### list()
86
86
 
87
- > **list**(`vaultId`, `secretAlias?`): `Promise`\<readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]\>
87
+ > **list**(`vault_id`, `secret_alias?`): `Promise`\<readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]\>
88
88
 
89
89
  #### Parameters
90
90
 
91
- ##### vaultId
91
+ ##### vault\_id
92
92
 
93
93
  [`VaultId`](../interfaces/VaultId.md)
94
94
 
95
- ##### secretAlias?
95
+ ##### secret\_alias?
96
96
 
97
97
  `string`
98
98
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.8**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -28,11 +28,11 @@
28
28
 
29
29
  ### delete()
30
30
 
31
- > **delete**(`secretId`): `Promise`\<`void`\>
31
+ > **delete**(`secret_id`): `Promise`\<`void`\>
32
32
 
33
33
  #### Parameters
34
34
 
35
- ##### secretId
35
+ ##### secret\_id
36
36
 
37
37
  [`SecretId`](../interfaces/SecretId.md)
38
38
 
@@ -70,11 +70,11 @@
70
70
 
71
71
  ### getById()
72
72
 
73
- > **getById**(`secretId`): `Promise`\<[`SecretRecord`](../interfaces/SecretRecord.md) \| `null`\>
73
+ > **getById**(`secret_id`): `Promise`\<[`SecretRecord`](../interfaces/SecretRecord.md) \| `null`\>
74
74
 
75
75
  #### Parameters
76
76
 
77
- ##### secretId
77
+ ##### secret\_id
78
78
 
79
79
  [`SecretId`](../interfaces/SecretId.md)
80
80
 
@@ -90,11 +90,11 @@
90
90
 
91
91
  ### list()
92
92
 
93
- > **list**(`vaultId`): `Promise`\<readonly [`SecretRecord`](../interfaces/SecretRecord.md)[]\>
93
+ > **list**(`vault_id`): `Promise`\<readonly [`SecretRecord`](../interfaces/SecretRecord.md)[]\>
94
94
 
95
95
  #### Parameters
96
96
 
97
- ##### vaultId
97
+ ##### vault\_id
98
98
 
99
99
  [`VaultId`](../interfaces/VaultId.md)
100
100
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.8**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -22,11 +22,11 @@
22
22
 
23
23
  ## Accessors
24
24
 
25
- ### vaultId
25
+ ### vault\_id
26
26
 
27
27
  #### Get Signature
28
28
 
29
- > **get** **vaultId**(): [`VaultId`](../interfaces/VaultId.md)
29
+ > **get** **vault\_id**(): [`VaultId`](../interfaces/VaultId.md)
30
30
 
31
31
  ##### Returns
32
32
 
@@ -82,15 +82,15 @@
82
82
 
83
83
  `any`
84
84
 
85
- ###### requestedAt
85
+ ###### request_id
86
86
 
87
87
  `string`
88
88
 
89
- ###### requestId
89
+ ###### requested_at
90
90
 
91
91
  `string`
92
92
 
93
- ###### targetRequestId
93
+ ###### target_request_id
94
94
 
95
95
  `string`
96
96
 
@@ -116,11 +116,11 @@
116
116
 
117
117
  `any`
118
118
 
119
- ###### requestedAt
119
+ ###### request_id
120
120
 
121
121
  `string`
122
122
 
123
- ###### requestId
123
+ ###### requested_at
124
124
 
125
125
  `string`
126
126
 
@@ -146,11 +146,11 @@
146
146
 
147
147
  `any`
148
148
 
149
- ###### requestedAt
149
+ ###### request_id
150
150
 
151
151
  `string`
152
152
 
153
- ###### requestId
153
+ ###### requested_at
154
154
 
155
155
  `string`
156
156
 
@@ -176,11 +176,11 @@
176
176
 
177
177
  `any`
178
178
 
179
- ###### requestedAt
179
+ ###### request_id
180
180
 
181
181
  `string`
182
182
 
183
- ###### requestId
183
+ ###### requested_at
184
184
 
185
185
  `string`
186
186
 
@@ -192,7 +192,7 @@
192
192
 
193
193
  ### ownerApproveDispatch()
194
194
 
195
- > **ownerApproveDispatch**(`actor`, `requestId`, `decision`): `Promise`\<[`DispatchResult`](../interfaces/DispatchResult.md) \| `null`\>
195
+ > **ownerApproveDispatch**(`actor`, `request_id`, `decision`): `Promise`\<[`DispatchResult`](../interfaces/DispatchResult.md) \| `null`\>
196
196
 
197
197
  #### Parameters
198
198
 
@@ -200,7 +200,7 @@
200
200
 
201
201
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
202
202
 
203
- ##### requestId
203
+ ##### request\_id
204
204
 
205
205
  `string`
206
206
 
@@ -252,7 +252,7 @@
252
252
 
253
253
  ### ownerGetRequest()
254
254
 
255
- > **ownerGetRequest**(`actor`, `requestId`): `Promise`\<[`OwnerRequestRecord`](../interfaces/OwnerRequestRecord.md)\>
255
+ > **ownerGetRequest**(`actor`, `request_id`): `Promise`\<[`OwnerRequestRecord`](../interfaces/OwnerRequestRecord.md)\>
256
256
 
257
257
  #### Parameters
258
258
 
@@ -260,7 +260,7 @@
260
260
 
261
261
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
262
262
 
263
- ##### requestId
263
+ ##### request\_id
264
264
 
265
265
  `string`
266
266
 
@@ -272,7 +272,7 @@
272
272
 
273
273
  ### ownerGrantAgentSecret()
274
274
 
275
- > **ownerGrantAgentSecret**(`actor`, `rootAgentId`, `secretAlias`, `request?`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)\>
275
+ > **ownerGrantAgentSecret**(`actor`, `root_agent_id`, `secret_alias`, `request?`): `Promise`\<[`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)\>
276
276
 
277
277
  #### Parameters
278
278
 
@@ -280,17 +280,17 @@
280
280
 
281
281
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
282
282
 
283
- ##### rootAgentId
283
+ ##### root\_agent\_id
284
284
 
285
285
  `string`
286
286
 
287
- ##### secretAlias
287
+ ##### secret\_alias
288
288
 
289
289
  `string`
290
290
 
291
291
  ##### request?
292
292
 
293
- ###### requestId?
293
+ ###### request_id?
294
294
 
295
295
  `string`
296
296
 
@@ -302,7 +302,7 @@
302
302
 
303
303
  ### ownerGrantSecretDestination()
304
304
 
305
- > **ownerGrantSecretDestination**(`actor`, `secretAlias`, `siteId`, `request?`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)\>
305
+ > **ownerGrantSecretDestination**(`actor`, `secret_alias`, `site_id`, `request?`): `Promise`\<[`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)\>
306
306
 
307
307
  #### Parameters
308
308
 
@@ -310,17 +310,17 @@
310
310
 
311
311
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
312
312
 
313
- ##### secretAlias
313
+ ##### secret\_alias
314
314
 
315
315
  `string`
316
316
 
317
- ##### siteId
317
+ ##### site\_id
318
318
 
319
319
  `string`
320
320
 
321
321
  ##### request?
322
322
 
323
- ###### requestId?
323
+ ###### request_id?
324
324
 
325
325
  `string`
326
326
 
@@ -348,7 +348,7 @@
348
348
 
349
349
  ### ownerIssueSessionToken()
350
350
 
351
- > **ownerIssueSessionToken**(`request`): `Promise`\<\{ `issuedAt`: `string`; `rootAgentId`: `string`; `token`: `string`; \}\>
351
+ > **ownerIssueSessionToken**(`request`): `Promise`\<\{ `issued_at`: `string`; `root_agent_id`: `string`; `token`: `string`; \}\>
352
352
 
353
353
  #### Parameters
354
354
 
@@ -358,17 +358,17 @@
358
358
 
359
359
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md)
360
360
 
361
- ###### rootAgentId
361
+ ###### root_agent_id
362
362
 
363
363
  `string`
364
364
 
365
- ###### vaultId
365
+ ###### vault_id
366
366
 
367
367
  [`VaultId`](../interfaces/VaultId.md)
368
368
 
369
369
  #### Returns
370
370
 
371
- `Promise`\<\{ `issuedAt`: `string`; `rootAgentId`: `string`; `token`: `string`; \}\>
371
+ `Promise`\<\{ `issued_at`: `string`; `root_agent_id`: `string`; `token`: `string`; \}\>
372
372
 
373
373
  ***
374
374
 
@@ -390,7 +390,7 @@
390
390
 
391
391
  ### ownerListGrants()
392
392
 
393
- > **ownerListGrants**(`actor`, `rootAgentId?`, `secretAlias?`): `Promise`\<\{ `agentSecrets`: readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]; `secretDestinations`: readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]; \}\>
393
+ > **ownerListGrants**(`actor`, `root_agent_id?`, `secret_alias?`): `Promise`\<\{ `agent_secrets`: readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]; `secret_destinations`: readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]; \}\>
394
394
 
395
395
  #### Parameters
396
396
 
@@ -398,23 +398,23 @@
398
398
 
399
399
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
400
400
 
401
- ##### rootAgentId?
401
+ ##### root\_agent\_id?
402
402
 
403
403
  `string`
404
404
 
405
- ##### secretAlias?
405
+ ##### secret\_alias?
406
406
 
407
407
  `string`
408
408
 
409
409
  #### Returns
410
410
 
411
- `Promise`\<\{ `agentSecrets`: readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]; `secretDestinations`: readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]; \}\>
411
+ `Promise`\<\{ `agent_secrets`: readonly [`AgentSecretGrant`](../interfaces/AgentSecretGrant.md)[]; `secret_destinations`: readonly [`SecretDestinationGrant`](../interfaces/SecretDestinationGrant.md)[]; \}\>
412
412
 
413
413
  ***
414
414
 
415
415
  ### ownerListRequests()
416
416
 
417
- > **ownerListRequests**(`actor`, `rootAgentId?`): `Promise`\<readonly [`OwnerVisibleRequestRecord`](../interfaces/OwnerVisibleRequestRecord.md)[]\>
417
+ > **ownerListRequests**(`actor`, `root_agent_id?`): `Promise`\<readonly [`OwnerVisibleRequestRecord`](../interfaces/OwnerVisibleRequestRecord.md)[]\>
418
418
 
419
419
  #### Parameters
420
420
 
@@ -422,7 +422,7 @@
422
422
 
423
423
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
424
424
 
425
- ##### rootAgentId?
425
+ ##### root\_agent\_id?
426
426
 
427
427
  `string`
428
428
 
@@ -516,15 +516,15 @@
516
516
 
517
517
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md)
518
518
 
519
- ###### requestedAt
519
+ ###### request_id
520
520
 
521
521
  `string`
522
522
 
523
- ###### requestId
523
+ ###### requested_at
524
524
 
525
525
  `string`
526
526
 
527
- ###### vaultId
527
+ ###### vault_id
528
528
 
529
529
  [`VaultId`](../interfaces/VaultId.md)
530
530
 
@@ -554,15 +554,15 @@
554
554
 
555
555
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md)
556
556
 
557
- ###### requestedAt
557
+ ###### request_id
558
558
 
559
559
  `string`
560
560
 
561
- ###### requestId
561
+ ###### requested_at
562
562
 
563
563
  `string`
564
564
 
565
- ###### vaultId
565
+ ###### vault_id
566
566
 
567
567
  [`VaultId`](../interfaces/VaultId.md)
568
568
 
@@ -574,7 +574,7 @@
574
574
 
575
575
  ### ownerRevokeAgentSecret()
576
576
 
577
- > **ownerRevokeAgentSecret**(`actor`, `rootAgentId`, `secretAlias`, `request?`): `Promise`\<`void`\>
577
+ > **ownerRevokeAgentSecret**(`actor`, `root_agent_id`, `secret_alias`, `request?`): `Promise`\<`void`\>
578
578
 
579
579
  #### Parameters
580
580
 
@@ -582,17 +582,17 @@
582
582
 
583
583
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
584
584
 
585
- ##### rootAgentId
585
+ ##### root\_agent\_id
586
586
 
587
587
  `string`
588
588
 
589
- ##### secretAlias
589
+ ##### secret\_alias
590
590
 
591
591
  `string`
592
592
 
593
593
  ##### request?
594
594
 
595
- ###### requestId?
595
+ ###### request_id?
596
596
 
597
597
  `string`
598
598
 
@@ -604,7 +604,7 @@
604
604
 
605
605
  ### ownerRevokeSecretDestination()
606
606
 
607
- > **ownerRevokeSecretDestination**(`actor`, `secretAlias`, `siteId`, `request?`): `Promise`\<`void`\>
607
+ > **ownerRevokeSecretDestination**(`actor`, `secret_alias`, `site_id`, `request?`): `Promise`\<`void`\>
608
608
 
609
609
  #### Parameters
610
610
 
@@ -612,17 +612,17 @@
612
612
 
613
613
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md) & `object`
614
614
 
615
- ##### secretAlias
615
+ ##### secret\_alias
616
616
 
617
617
  `string`
618
618
 
619
- ##### siteId
619
+ ##### site\_id
620
620
 
621
621
  `string`
622
622
 
623
623
  ##### request?
624
624
 
625
- ###### requestId?
625
+ ###### request_id?
626
626
 
627
627
  `string`
628
628
 
@@ -648,7 +648,7 @@
648
648
 
649
649
  `string`
650
650
 
651
- ###### vaultId
651
+ ###### vault_id
652
652
 
653
653
  [`VaultId`](../interfaces/VaultId.md)
654
654
 
@@ -678,19 +678,19 @@
678
678
 
679
679
  [`VaultPrincipal`](../interfaces/VaultPrincipal.md)
680
680
 
681
- ###### requestedAt
681
+ ###### request_id
682
682
 
683
683
  `string`
684
684
 
685
- ###### requestId
685
+ ###### requested_at
686
686
 
687
687
  `string`
688
688
 
689
- ###### rootAgentId
689
+ ###### root_agent_id
690
690
 
691
691
  `string`
692
692
 
693
- ###### vaultId
693
+ ###### vault_id
694
694
 
695
695
  [`VaultId`](../interfaces/VaultId.md)
696
696
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.63.6**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.63.8**](../README.md)
2
2
 
3
3
  ***
4
4