@the-ai-company/cbio-node-runtime 1.72.0 → 1.73.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.
- package/README.md +20 -35
- package/dist/clients/agent/client.d.ts +3 -6
- package/dist/clients/agent/client.js +15 -11
- package/dist/clients/agent/client.js.map +1 -1
- package/dist/clients/agent/contracts.d.ts +4 -4
- package/dist/clients/agent/index.d.ts +1 -1
- package/dist/clients/owner/client.js +8 -8
- package/dist/clients/owner/client.js.map +1 -1
- package/dist/clients/owner/contracts.d.ts +2 -2
- package/dist/public-types.d.ts +2 -2
- package/dist/public-types.js +1 -1
- package/dist/public-types.js.map +1 -1
- package/dist/runtime/bootstrap.js +22 -12
- package/dist/runtime/bootstrap.js.map +1 -1
- package/dist/runtime/index.d.ts +2 -2
- package/dist/runtime/index.js +1 -1
- package/dist/runtime/index.js.map +1 -1
- package/dist/storage/prefix.d.ts +1 -1
- package/dist/storage/prefix.js +2 -2
- package/dist/storage/prefix.js.map +1 -1
- package/dist/vault-core/contracts.d.ts +20 -142
- package/dist/vault-core/contracts.js +0 -20
- package/dist/vault-core/contracts.js.map +1 -1
- package/dist/vault-core/core.d.ts +8 -9
- package/dist/vault-core/core.js +69 -225
- package/dist/vault-core/core.js.map +1 -1
- package/dist/vault-core/defaults.d.ts +2 -4
- package/dist/vault-core/defaults.js +50 -47
- package/dist/vault-core/defaults.js.map +1 -1
- package/dist/vault-core/index.d.ts +2 -2
- package/dist/vault-core/index.js +1 -1
- package/dist/vault-core/index.js.map +1 -1
- package/dist/vault-core/persistence.d.ts +2 -4
- package/dist/vault-core/persistence.js +82 -55
- package/dist/vault-core/persistence.js.map +1 -1
- package/dist/vault-core/ports.d.ts +2 -4
- package/dist/vault-ingress/defaults.d.ts +2 -2
- package/dist/vault-ingress/defaults.js +3 -3
- package/dist/vault-ingress/defaults.js.map +1 -1
- package/dist/vault-ingress/index.d.ts +5 -5
- package/dist/vault-ingress/index.js +17 -29
- package/dist/vault-ingress/index.js.map +1 -1
- package/dist/vault-ingress/remote-transport.d.ts +2 -2
- package/dist/vault-ingress/remote-transport.js +7 -7
- package/dist/vault-ingress/remote-transport.js.map +1 -1
- package/dist/vault-ingress/server-utils.d.ts +1 -2
- package/dist/vault-ingress/server-utils.js +1 -1
- package/dist/vault-ingress/server-utils.js.map +1 -1
- package/docs/ARCHITECTURE.md +16 -14
- package/docs/REFERENCE.md +20 -37
- package/docs/api/README.md +5 -9
- package/docs/api/classes/IdentityError.md +1 -1
- package/docs/api/classes/OwnerClientError.md +1 -1
- package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +3 -3
- package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +6 -6
- package/docs/api/classes/PersistentVaultAuditLog.md +2 -2
- package/docs/api/classes/PersistentVaultSecretCustody.md +4 -4
- package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +7 -7
- package/docs/api/classes/PersistentVaultSecretRepository.md +4 -6
- package/docs/api/classes/VaultCore.md +21 -21
- package/docs/api/classes/VaultCoreError.md +1 -1
- package/docs/api/enumerations/DispatchStatus.md +1 -1
- package/docs/api/enumerations/IdentityErrorCode.md +1 -1
- package/docs/api/enumerations/OwnerClientErrorCode.md +1 -1
- package/docs/api/functions/createAgentClient.md +1 -3
- package/docs/api/functions/createIdentity.md +1 -1
- package/docs/api/functions/createOwnerClient.md +1 -1
- package/docs/api/functions/createPersistentVaultCoreDependencies.md +1 -1
- package/docs/api/functions/createVault.md +1 -1
- package/docs/api/functions/createVaultCore.md +1 -1
- package/docs/api/functions/createVaultCoreDependencies.md +1 -1
- package/docs/api/functions/createVaultService.md +1 -1
- package/docs/api/functions/createWorkspaceStorage.md +1 -1
- package/docs/api/functions/deriveRootAgentId.md +1 -1
- package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +1 -1
- package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
- package/docs/api/functions/handleVaultAgentControlHttp.md +1 -1
- package/docs/api/functions/handleVaultAuditSse.md +1 -1
- package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
- package/docs/api/functions/handleVaultPendingDispatchSse.md +1 -1
- package/docs/api/functions/initializeVaultCustody.md +1 -1
- package/docs/api/functions/listVaults.md +1 -1
- package/docs/api/functions/openOwnerSession.md +1 -1
- package/docs/api/functions/readVaultProfile.md +1 -1
- package/docs/api/functions/recoverVault.md +1 -1
- package/docs/api/functions/recoverVaultWorkingKey.md +1 -1
- package/docs/api/functions/restoreIdentity.md +1 -1
- package/docs/api/functions/updateVaultMetadata.md +1 -1
- package/docs/api/functions/writeVaultProfile.md +1 -1
- package/docs/api/interfaces/AgentClient.md +5 -5
- package/docs/api/interfaces/AgentDispatchIntent.md +1 -1
- package/docs/api/interfaces/AgentDispatchTransport.md +5 -5
- package/docs/api/interfaces/AgentIdentity.md +1 -1
- package/docs/api/interfaces/AgentIdentityRecord.md +2 -2
- package/docs/api/interfaces/AgentRequestRecord.md +93 -11
- package/docs/api/interfaces/AgentRuntimeManifest.md +1 -1
- package/docs/api/interfaces/AgentSecretGrant.md +3 -3
- package/docs/api/interfaces/AgentSigner.md +1 -1
- package/docs/api/interfaces/AuditEntry.md +9 -59
- package/docs/api/interfaces/CbioRuntime.md +1 -3
- package/docs/api/interfaces/CreateAgentClientOptions.md +1 -1
- package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
- package/docs/api/interfaces/CreateOwnerClientOptions.md +1 -1
- package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +1 -1
- package/docs/api/interfaces/CreateVaultOptions.md +1 -1
- package/docs/api/interfaces/CreatedVault.md +1 -1
- package/docs/api/interfaces/DefaultPolicyEngineOptions.md +1 -1
- package/docs/api/interfaces/DispatchAuthorization.md +3 -3
- package/docs/api/interfaces/DispatchInstruction.md +3 -3
- package/docs/api/interfaces/DispatchRequest.md +4 -4
- package/docs/api/interfaces/DispatchResult.md +2 -2
- package/docs/api/interfaces/IStorageProvider.md +1 -1
- package/docs/api/interfaces/InitializeVaultCustodyOptions.md +1 -1
- package/docs/api/interfaces/InitializedVaultCustody.md +1 -1
- package/docs/api/interfaces/OpenOwnerSessionOptions.md +1 -1
- package/docs/api/interfaces/OwnerAgentProvisionResult.md +1 -1
- package/docs/api/interfaces/OwnerAuditSubscription.md +3 -3
- package/docs/api/interfaces/OwnerClient.md +5 -5
- package/docs/api/interfaces/OwnerCreateSecretInput.md +1 -1
- package/docs/api/interfaces/OwnerPendingDispatchSubscription.md +1 -1
- package/docs/api/interfaces/OwnerRemoveSecretInput.md +1 -1
- package/docs/api/interfaces/OwnerRequestRecord.md +73 -11
- package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
- package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
- package/docs/api/interfaces/OwnerSession.md +1 -1
- package/docs/api/interfaces/OwnerUpdateSecretInput.md +1 -1
- package/docs/api/interfaces/PendingDispatchEvent.md +1 -1
- package/docs/api/interfaces/RecoverVaultOptions.md +1 -1
- package/docs/api/interfaces/RecoveredVault.md +1 -1
- package/docs/api/interfaces/RequestRecord.md +8 -7
- package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
- package/docs/api/interfaces/SecretDestinationGrant.md +3 -3
- package/docs/api/interfaces/SecretRecord.md +7 -7
- package/docs/api/interfaces/Signer.md +1 -1
- package/docs/api/interfaces/VaultApproveDispatchInput.md +1 -1
- package/docs/api/interfaces/VaultAuditQueryInput.md +1 -1
- package/docs/api/interfaces/VaultCoreDependenciesOptions.md +1 -1
- package/docs/api/interfaces/VaultCreateAgentInput.md +1 -1
- package/docs/api/interfaces/VaultExportSecretInput.md +1 -1
- package/docs/api/interfaces/VaultGetRequestInput.md +1 -1
- package/docs/api/interfaces/VaultGrantAgentSecretInput.md +1 -1
- package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +1 -1
- package/docs/api/interfaces/VaultImportAgentInput.md +1 -1
- package/docs/api/interfaces/VaultIssueSessionTokenInput.md +1 -1
- package/docs/api/interfaces/VaultListAgentsInput.md +1 -1
- package/docs/api/interfaces/VaultListGrantsInput.md +1 -1
- package/docs/api/interfaces/VaultListRequestsInput.md +1 -1
- package/docs/api/interfaces/VaultListSecretsInput.md +1 -1
- package/docs/api/interfaces/VaultMetadata.md +1 -1
- package/docs/api/interfaces/VaultObject.md +1 -1
- package/docs/api/interfaces/VaultPrincipal.md +1 -1
- package/docs/api/interfaces/VaultProfile.md +1 -1
- package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +1 -1
- package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +1 -1
- package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +1 -1
- package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +1 -1
- package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
- package/docs/api/interfaces/VaultService.md +12 -12
- package/docs/api/interfaces/VaultUpdateAgentInput.md +1 -1
- package/docs/api/type-aliases/AgentId.md +1 -1
- package/docs/api/type-aliases/AgentRequestResult.md +1 -1
- package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
- package/docs/api/type-aliases/DispatchApprovalDecision.md +1 -1
- package/docs/api/type-aliases/GrantStatus.md +1 -1
- package/docs/api/type-aliases/SecretAlias.md +7 -0
- package/docs/api/type-aliases/SecretId.md +7 -0
- package/docs/api/type-aliases/SecretLifecycleStatus.md +1 -1
- package/docs/api/type-aliases/VaultId.md +7 -0
- package/docs/api/type-aliases/VaultPrincipalKind.md +1 -1
- package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +1 -1
- package/docs/zh/README.md +33 -66
- package/package.json +1 -1
- package/docs/api/enumerations/AuditOperation.md +0 -107
- package/docs/api/interfaces/AgentVisibleRequestRecord.md +0 -59
- package/docs/api/interfaces/AgentVisibleSecretRecord.md +0 -65
- package/docs/api/interfaces/OwnerVisibleRequestRecord.md +0 -79
- package/docs/api/interfaces/SecretAlias.md +0 -11
- package/docs/api/interfaces/SecretId.md +0 -11
- package/docs/api/interfaces/VaultId.md +0 -11
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.73.0**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
##### secret\_id
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
`string`
|
|
42
42
|
|
|
43
43
|
#### Returns
|
|
44
44
|
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
|
|
59
59
|
##### secret\_id
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
`string`
|
|
62
62
|
|
|
63
63
|
#### Returns
|
|
64
64
|
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
|
|
79
79
|
##### secret\_id
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
`string`
|
|
82
82
|
|
|
83
83
|
##### plaintext
|
|
84
84
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.73.0**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
|
|
35
35
|
##### vault\_id
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
`string`
|
|
38
38
|
|
|
39
39
|
##### secret\_id
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
`string`
|
|
42
42
|
|
|
43
43
|
##### site\_id
|
|
44
44
|
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
|
|
63
63
|
##### vault\_id
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
`string`
|
|
66
66
|
|
|
67
67
|
##### secret\_id
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
`string`
|
|
70
70
|
|
|
71
71
|
##### site\_id
|
|
72
72
|
|
|
@@ -90,11 +90,11 @@
|
|
|
90
90
|
|
|
91
91
|
##### vault\_id
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
`string`
|
|
94
94
|
|
|
95
95
|
##### secret\_id?
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
`string`
|
|
98
98
|
|
|
99
99
|
#### Returns
|
|
100
100
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.73.0**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
##### secret\_id
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
`string`
|
|
38
38
|
|
|
39
39
|
#### Returns
|
|
40
40
|
|
|
@@ -54,8 +54,6 @@
|
|
|
54
54
|
|
|
55
55
|
##### alias
|
|
56
56
|
|
|
57
|
-
###### value
|
|
58
|
-
|
|
59
57
|
`string`
|
|
60
58
|
|
|
61
59
|
#### Returns
|
|
@@ -76,7 +74,7 @@
|
|
|
76
74
|
|
|
77
75
|
##### secret\_id
|
|
78
76
|
|
|
79
|
-
|
|
77
|
+
`string`
|
|
80
78
|
|
|
81
79
|
#### Returns
|
|
82
80
|
|
|
@@ -96,7 +94,7 @@
|
|
|
96
94
|
|
|
97
95
|
##### vault\_id
|
|
98
96
|
|
|
99
|
-
|
|
97
|
+
`string`
|
|
100
98
|
|
|
101
99
|
#### Returns
|
|
102
100
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.73.0**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
|
|
27
27
|
#### Get Signature
|
|
28
28
|
|
|
29
|
-
> **get** **vault\_id**():
|
|
29
|
+
> **get** **vault\_id**(): `string`
|
|
30
30
|
|
|
31
31
|
##### Returns
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
`string`
|
|
34
34
|
|
|
35
35
|
## Methods
|
|
36
36
|
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
### agentListRequests()
|
|
134
134
|
|
|
135
|
-
> **agentListRequests**(`command`): `Promise`\<readonly [`
|
|
135
|
+
> **agentListRequests**(`command`): `Promise`\<readonly [`AgentRequestRecord`](../interfaces/AgentRequestRecord.md)[]\>
|
|
136
136
|
|
|
137
137
|
#### Parameters
|
|
138
138
|
|
|
@@ -156,13 +156,13 @@
|
|
|
156
156
|
|
|
157
157
|
#### Returns
|
|
158
158
|
|
|
159
|
-
`Promise`\<readonly [`
|
|
159
|
+
`Promise`\<readonly [`AgentRequestRecord`](../interfaces/AgentRequestRecord.md)[]\>
|
|
160
160
|
|
|
161
161
|
***
|
|
162
162
|
|
|
163
163
|
### agentListSecrets()
|
|
164
164
|
|
|
165
|
-
> **agentListSecrets**(`command`): `Promise`\<readonly [`
|
|
165
|
+
> **agentListSecrets**(`command`): `Promise`\<readonly [`SecretRecord`](../interfaces/SecretRecord.md)[]\>
|
|
166
166
|
|
|
167
167
|
#### Parameters
|
|
168
168
|
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
|
|
187
187
|
#### Returns
|
|
188
188
|
|
|
189
|
-
`Promise`\<readonly [`
|
|
189
|
+
`Promise`\<readonly [`SecretRecord`](../interfaces/SecretRecord.md)[]\>
|
|
190
190
|
|
|
191
191
|
***
|
|
192
192
|
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
|
|
287
287
|
##### secret\_id
|
|
288
288
|
|
|
289
|
-
|
|
289
|
+
`string`
|
|
290
290
|
|
|
291
291
|
##### request?
|
|
292
292
|
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
|
|
313
313
|
##### secret\_id
|
|
314
314
|
|
|
315
|
-
|
|
315
|
+
`string`
|
|
316
316
|
|
|
317
317
|
##### site\_id
|
|
318
318
|
|
|
@@ -364,7 +364,7 @@
|
|
|
364
364
|
|
|
365
365
|
###### vault_id
|
|
366
366
|
|
|
367
|
-
|
|
367
|
+
`string`
|
|
368
368
|
|
|
369
369
|
#### Returns
|
|
370
370
|
|
|
@@ -404,7 +404,7 @@
|
|
|
404
404
|
|
|
405
405
|
##### secret\_id?
|
|
406
406
|
|
|
407
|
-
|
|
407
|
+
`string`
|
|
408
408
|
|
|
409
409
|
#### Returns
|
|
410
410
|
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
|
|
415
415
|
### ownerListRequests()
|
|
416
416
|
|
|
417
|
-
> **ownerListRequests**(`actor`, `root_agent_id?`): `Promise`\<readonly [`
|
|
417
|
+
> **ownerListRequests**(`actor`, `root_agent_id?`): `Promise`\<readonly [`OwnerRequestRecord`](../interfaces/OwnerRequestRecord.md)[]\>
|
|
418
418
|
|
|
419
419
|
#### Parameters
|
|
420
420
|
|
|
@@ -428,13 +428,13 @@
|
|
|
428
428
|
|
|
429
429
|
#### Returns
|
|
430
430
|
|
|
431
|
-
`Promise`\<readonly [`
|
|
431
|
+
`Promise`\<readonly [`OwnerRequestRecord`](../interfaces/OwnerRequestRecord.md)[]\>
|
|
432
432
|
|
|
433
433
|
***
|
|
434
434
|
|
|
435
435
|
### ownerListSecrets()
|
|
436
436
|
|
|
437
|
-
> **ownerListSecrets**(`actor`): `Promise`\<readonly [`
|
|
437
|
+
> **ownerListSecrets**(`actor`): `Promise`\<readonly [`SecretRecord`](../interfaces/SecretRecord.md)[]\>
|
|
438
438
|
|
|
439
439
|
#### Parameters
|
|
440
440
|
|
|
@@ -444,7 +444,7 @@
|
|
|
444
444
|
|
|
445
445
|
#### Returns
|
|
446
446
|
|
|
447
|
-
`Promise`\<readonly [`
|
|
447
|
+
`Promise`\<readonly [`SecretRecord`](../interfaces/SecretRecord.md)[]\>
|
|
448
448
|
|
|
449
449
|
***
|
|
450
450
|
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
|
|
527
527
|
###### vault_id
|
|
528
528
|
|
|
529
|
-
|
|
529
|
+
`string`
|
|
530
530
|
|
|
531
531
|
#### Returns
|
|
532
532
|
|
|
@@ -564,7 +564,7 @@
|
|
|
564
564
|
|
|
565
565
|
###### vault_id
|
|
566
566
|
|
|
567
|
-
|
|
567
|
+
`string`
|
|
568
568
|
|
|
569
569
|
#### Returns
|
|
570
570
|
|
|
@@ -588,7 +588,7 @@
|
|
|
588
588
|
|
|
589
589
|
##### secret\_id
|
|
590
590
|
|
|
591
|
-
|
|
591
|
+
`string`
|
|
592
592
|
|
|
593
593
|
##### request?
|
|
594
594
|
|
|
@@ -614,7 +614,7 @@
|
|
|
614
614
|
|
|
615
615
|
##### secret\_id
|
|
616
616
|
|
|
617
|
-
|
|
617
|
+
`string`
|
|
618
618
|
|
|
619
619
|
##### site\_id
|
|
620
620
|
|
|
@@ -650,7 +650,7 @@
|
|
|
650
650
|
|
|
651
651
|
###### vault_id
|
|
652
652
|
|
|
653
|
-
|
|
653
|
+
`string`
|
|
654
654
|
|
|
655
655
|
#### Returns
|
|
656
656
|
|
|
@@ -692,7 +692,7 @@
|
|
|
692
692
|
|
|
693
693
|
###### vault_id
|
|
694
694
|
|
|
695
|
-
|
|
695
|
+
`string`
|
|
696
696
|
|
|
697
697
|
#### Returns
|
|
698
698
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.73.0**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
> **createAgentClient**(`options`): [`AgentClient`](../interfaces/AgentClient.md)
|
|
8
8
|
|
|
9
|
-
Creates an [AgentClient](../interfaces/AgentClient.md) for a delegated identity.
|
|
10
|
-
|
|
11
9
|
## Parameters
|
|
12
10
|
|
|
13
11
|
### options
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.73.0**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -62,22 +62,22 @@ Introspects the current runtime environment, providing identity, grants, and a t
|
|
|
62
62
|
|
|
63
63
|
### agentListRequests()
|
|
64
64
|
|
|
65
|
-
> **agentListRequests**(): `Promise`\<readonly [`
|
|
65
|
+
> **agentListRequests**(): `Promise`\<readonly [`AgentRequestRecord`](AgentRequestRecord.md)[]\>
|
|
66
66
|
|
|
67
67
|
List previous requests sent by this agent.
|
|
68
68
|
|
|
69
69
|
#### Returns
|
|
70
70
|
|
|
71
|
-
`Promise`\<readonly [`
|
|
71
|
+
`Promise`\<readonly [`AgentRequestRecord`](AgentRequestRecord.md)[]\>
|
|
72
72
|
|
|
73
73
|
***
|
|
74
74
|
|
|
75
75
|
### agentListSecrets()
|
|
76
76
|
|
|
77
|
-
> **agentListSecrets**(): `Promise`\<readonly [`
|
|
77
|
+
> **agentListSecrets**(): `Promise`\<readonly [`SecretRecord`](SecretRecord.md)[]\>
|
|
78
78
|
|
|
79
79
|
List secrets the agent can see, including whether they are granted or not.
|
|
80
80
|
|
|
81
81
|
#### Returns
|
|
82
82
|
|
|
83
|
-
`Promise`\<readonly [`
|
|
83
|
+
`Promise`\<readonly [`SecretRecord`](SecretRecord.md)[]\>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.73.0**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
|
|
57
57
|
### agentListRequests()
|
|
58
58
|
|
|
59
|
-
> **agentListRequests**(`request`): `Promise`\<readonly [`
|
|
59
|
+
> **agentListRequests**(`request`): `Promise`\<readonly [`AgentRequestRecord`](AgentRequestRecord.md)[]\>
|
|
60
60
|
|
|
61
61
|
#### Parameters
|
|
62
62
|
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
|
|
67
67
|
#### Returns
|
|
68
68
|
|
|
69
|
-
`Promise`\<readonly [`
|
|
69
|
+
`Promise`\<readonly [`AgentRequestRecord`](AgentRequestRecord.md)[]\>
|
|
70
70
|
|
|
71
71
|
***
|
|
72
72
|
|
|
73
73
|
### agentListSecrets()
|
|
74
74
|
|
|
75
|
-
> **agentListSecrets**(`request`): `Promise`\<readonly [`
|
|
75
|
+
> **agentListSecrets**(`request`): `Promise`\<readonly [`SecretRecord`](SecretRecord.md)[]\>
|
|
76
76
|
|
|
77
77
|
#### Parameters
|
|
78
78
|
|
|
@@ -82,4 +82,4 @@
|
|
|
82
82
|
|
|
83
83
|
#### Returns
|
|
84
84
|
|
|
85
|
-
`Promise`\<readonly [`
|
|
85
|
+
`Promise`\<readonly [`SecretRecord`](SecretRecord.md)[]\>
|