@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.
- package/README.md +2 -2
- package/dist/clients/agent/client.d.ts +2 -2
- package/dist/clients/agent/client.js +46 -49
- package/dist/clients/agent/client.js.map +1 -1
- package/dist/clients/agent/contracts.d.ts +5 -5
- package/dist/clients/owner/client.js +169 -176
- package/dist/clients/owner/client.js.map +1 -1
- package/dist/clients/owner/contracts.d.ts +45 -48
- package/dist/protocol/childSecretNaming.d.ts +1 -1
- package/dist/protocol/childSecretNaming.js +2 -2
- package/dist/protocol/childSecretNaming.js.map +1 -1
- package/dist/protocol/crypto.d.ts +4 -4
- package/dist/protocol/crypto.js +14 -14
- package/dist/protocol/crypto.js.map +1 -1
- package/dist/protocol/identity.d.ts +2 -2
- package/dist/protocol/identity.js +4 -4
- package/dist/protocol/identity.js.map +1 -1
- package/dist/public-types.d.ts +1 -1
- package/dist/public-types.js +1 -1
- package/dist/public-types.js.map +1 -1
- package/dist/runtime/bootstrap.d.ts +6 -6
- package/dist/runtime/bootstrap.js +26 -26
- package/dist/runtime/bootstrap.js.map +1 -1
- package/dist/runtime/identity.d.ts +6 -6
- package/dist/runtime/identity.js +14 -12
- package/dist/runtime/identity.js.map +1 -1
- package/dist/runtime/index.d.ts +1 -1
- package/dist/runtime/index.js +1 -1
- package/dist/runtime/index.js.map +1 -1
- package/dist/runtime/owner-session.d.ts +1 -5
- package/dist/runtime/owner-session.js +4 -5
- package/dist/runtime/owner-session.js.map +1 -1
- package/dist/runtime/vault-metadata.d.ts +2 -2
- package/dist/runtime/vault-metadata.js +2 -2
- package/dist/runtime/vault-metadata.js.map +1 -1
- package/dist/vault-core/contracts.d.ts +235 -238
- package/dist/vault-core/contracts.js +25 -34
- package/dist/vault-core/contracts.js.map +1 -1
- package/dist/vault-core/core.d.ts +41 -41
- package/dist/vault-core/core.js +257 -255
- package/dist/vault-core/core.js.map +1 -1
- package/dist/vault-core/defaults.d.ts +25 -25
- package/dist/vault-core/defaults.js +95 -95
- package/dist/vault-core/defaults.js.map +1 -1
- package/dist/vault-core/index.d.ts +2 -2
- package/dist/vault-core/index.js +2 -2
- package/dist/vault-core/index.js.map +1 -1
- package/dist/vault-core/persistence.d.ts +19 -19
- package/dist/vault-core/persistence.js +78 -66
- package/dist/vault-core/persistence.js.map +1 -1
- package/dist/vault-core/ports.d.ts +23 -23
- package/dist/vault-core/tool-metadata.js +6 -6
- package/dist/vault-core/tool-metadata.js.map +1 -1
- package/dist/vault-ingress/defaults.d.ts +2 -2
- package/dist/vault-ingress/defaults.js +10 -10
- package/dist/vault-ingress/defaults.js.map +1 -1
- package/dist/vault-ingress/index.d.ts +46 -46
- package/dist/vault-ingress/index.js +34 -34
- 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 +27 -27
- package/dist/vault-ingress/remote-transport.js.map +1 -1
- package/docs/ARCHITECTURE.md +1 -1
- package/docs/CUSTODY_MODEL.md +3 -3
- package/docs/IDENTITY_MODEL.md +4 -4
- package/docs/REFERENCE.md +1 -1
- package/docs/api/README.md +3 -4
- package/docs/api/classes/IdentityError.md +1 -1
- package/docs/api/classes/OwnerClientError.md +1 -1
- package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +6 -6
- package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +12 -12
- package/docs/api/classes/PersistentVaultAuditLog.md +1 -1
- package/docs/api/classes/PersistentVaultSecretCustody.md +7 -7
- package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +12 -12
- package/docs/api/classes/PersistentVaultSecretRepository.md +7 -7
- package/docs/api/classes/VaultCore.md +53 -53
- package/docs/api/classes/VaultCoreError.md +1 -1
- package/docs/api/enumerations/AuditOperation.md +137 -0
- 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 -1
- package/docs/api/functions/createIdentity.md +2 -2
- package/docs/api/functions/createOwnerClient.md +1 -1
- package/docs/api/functions/createOwnerSession.md +1 -1
- package/docs/api/functions/createPersistentVaultCoreDependencies.md +3 -3
- 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 +3 -3
- package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +4 -4
- package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
- package/docs/api/functions/handleVaultAgentControlHttp.md +1 -1
- package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
- package/docs/api/functions/initializeVaultCustody.md +1 -1
- package/docs/api/functions/listVaults.md +1 -1
- package/docs/api/functions/readVaultProfile.md +3 -3
- package/docs/api/functions/recoverVault.md +4 -4
- package/docs/api/functions/recoverVaultWorkingKey.md +1 -1
- package/docs/api/functions/restoreIdentity.md +3 -3
- package/docs/api/functions/updateVaultMetadata.md +1 -1
- package/docs/api/functions/writeVaultProfile.md +3 -3
- package/docs/api/interfaces/AgentClient.md +3 -3
- package/docs/api/interfaces/AgentDispatchIntent.md +7 -7
- package/docs/api/interfaces/AgentDispatchTransport.md +1 -1
- package/docs/api/interfaces/AgentIdentity.md +3 -3
- package/docs/api/interfaces/AgentIdentityRecord.md +11 -11
- package/docs/api/interfaces/AgentRequestResult.md +9 -9
- package/docs/api/interfaces/AgentRuntimeManifest.md +13 -13
- package/docs/api/interfaces/AgentSecretGrant.md +11 -11
- package/docs/api/interfaces/AgentSigner.md +1 -1
- package/docs/api/interfaces/AgentVisibleRequestRecord.md +13 -13
- package/docs/api/interfaces/AgentVisibleSecretRecord.md +13 -13
- package/docs/api/interfaces/AuditEntry.md +45 -25
- package/docs/api/interfaces/CbioRuntime.md +10 -10
- package/docs/api/interfaces/CreateAgentClientOptions.md +1 -1
- package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
- package/docs/api/interfaces/CreateOwnerClientOptions.md +3 -13
- package/docs/api/interfaces/CreateOwnerSessionOptions.md +4 -10
- package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +3 -3
- package/docs/api/interfaces/CreateVaultOptions.md +2 -2
- package/docs/api/interfaces/CreatedVault.md +1 -1
- package/docs/api/interfaces/DefaultPolicyEngineOptions.md +9 -9
- package/docs/api/interfaces/DispatchAuthorization.md +11 -11
- package/docs/api/interfaces/DispatchInstruction.md +9 -9
- package/docs/api/interfaces/DispatchRequest.md +11 -11
- package/docs/api/interfaces/DispatchResult.md +11 -11
- 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/OwnerAgentProvisionResult.md +3 -3
- package/docs/api/interfaces/OwnerClient.md +5 -5
- package/docs/api/interfaces/OwnerCreateSecretInput.md +3 -3
- package/docs/api/interfaces/OwnerRemoveSecretInput.md +3 -3
- package/docs/api/interfaces/OwnerRequestRecord.md +19 -19
- package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
- package/docs/api/interfaces/OwnerSensitiveActionContext.md +1 -1
- package/docs/api/interfaces/OwnerSession.md +3 -3
- package/docs/api/interfaces/OwnerUpdateSecretInput.md +3 -3
- package/docs/api/interfaces/OwnerVisibleRequestRecord.md +21 -21
- package/docs/api/interfaces/RecoverVaultOptions.md +4 -4
- package/docs/api/interfaces/RecoveredVault.md +1 -1
- package/docs/api/interfaces/RequestRecord.md +19 -19
- package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
- package/docs/api/interfaces/SecretAlias.md +1 -1
- package/docs/api/interfaces/SecretDestinationGrant.md +11 -11
- package/docs/api/interfaces/SecretId.md +1 -1
- package/docs/api/interfaces/SecretRecord.md +13 -13
- package/docs/api/interfaces/Signer.md +1 -1
- package/docs/api/interfaces/VaultApproveDispatchInput.md +5 -5
- package/docs/api/interfaces/VaultAuditQueryInput.md +7 -7
- package/docs/api/interfaces/VaultCoreDependenciesOptions.md +5 -5
- package/docs/api/interfaces/VaultCreateAgentInput.md +3 -3
- package/docs/api/interfaces/VaultExportSecretInput.md +3 -3
- package/docs/api/interfaces/VaultGetRequestInput.md +5 -5
- package/docs/api/interfaces/VaultGrantAgentSecretInput.md +7 -7
- package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +7 -7
- package/docs/api/interfaces/VaultId.md +1 -1
- package/docs/api/interfaces/VaultImportAgentInput.md +5 -5
- package/docs/api/interfaces/VaultIssueSessionTokenInput.md +5 -5
- package/docs/api/interfaces/VaultListAgentsInput.md +3 -3
- package/docs/api/interfaces/VaultListGrantsInput.md +7 -7
- package/docs/api/interfaces/VaultListRequestsInput.md +5 -5
- package/docs/api/interfaces/VaultListSecretsInput.md +3 -3
- 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 +5 -5
- package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +3 -3
- package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +7 -7
- package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +7 -7
- package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
- package/docs/api/interfaces/VaultService.md +8 -8
- package/docs/api/interfaces/VaultUpdateAgentInput.md +5 -5
- package/docs/api/type-aliases/AgentId.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/SecretLifecycleStatus.md +1 -1
- 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 +1 -1
- package/examples/process-isolation.ts +21 -21
- package/package.json +2 -2
- package/docs/api/enumerations/AuditAction.md +0 -143
- package/docs/api/enumerations/AuditOutcome.md +0 -35
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### request\_id
|
|
22
22
|
|
|
23
|
-
> **
|
|
23
|
+
> **request\_id**: `string`
|
|
24
24
|
|
|
25
25
|
***
|
|
26
26
|
|
|
27
|
-
###
|
|
27
|
+
### response\_body?
|
|
28
28
|
|
|
29
|
-
> `optional` **
|
|
29
|
+
> `optional` **response\_body?**: `string`
|
|
30
30
|
|
|
31
31
|
***
|
|
32
32
|
|
|
33
|
-
###
|
|
33
|
+
### response\_status?
|
|
34
34
|
|
|
35
|
-
> `optional` **
|
|
35
|
+
> `optional` **response\_status?**: `number`
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
|
|
43
43
|
***
|
|
44
44
|
|
|
45
|
-
###
|
|
45
|
+
### target\_url
|
|
46
46
|
|
|
47
|
-
> **
|
|
47
|
+
> **target\_url**: `string`
|
|
48
48
|
|
|
49
49
|
***
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### vault\_id
|
|
52
52
|
|
|
53
|
-
> **
|
|
53
|
+
> **vault\_id**: [`VaultId`](VaultId.md)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### session\_token
|
|
16
16
|
|
|
17
|
-
> **
|
|
17
|
+
> **session\_token**: `OwnerSessionToken`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -58,11 +58,11 @@ A client for vault owners to manage secrets, agents, and grants.
|
|
|
58
58
|
|
|
59
59
|
### ownerDenyDispatch()
|
|
60
60
|
|
|
61
|
-
> **ownerDenyDispatch**(`
|
|
61
|
+
> **ownerDenyDispatch**(`request_id`): `Promise`\<`void`\>
|
|
62
62
|
|
|
63
63
|
#### Parameters
|
|
64
64
|
|
|
65
|
-
#####
|
|
65
|
+
##### request\_id
|
|
66
66
|
|
|
67
67
|
`string`
|
|
68
68
|
|
|
@@ -196,7 +196,7 @@ A client for vault owners to manage secrets, agents, and grants.
|
|
|
196
196
|
|
|
197
197
|
### ownerListGrants()
|
|
198
198
|
|
|
199
|
-
> **ownerListGrants**(`input?`): `Promise`\<\{ `
|
|
199
|
+
> **ownerListGrants**(`input?`): `Promise`\<\{ `agent_secrets`: readonly [`AgentSecretGrant`](AgentSecretGrant.md)[]; `secret_destinations`: readonly [`SecretDestinationGrant`](SecretDestinationGrant.md)[]; \}\>
|
|
200
200
|
|
|
201
201
|
#### Parameters
|
|
202
202
|
|
|
@@ -206,7 +206,7 @@ A client for vault owners to manage secrets, agents, and grants.
|
|
|
206
206
|
|
|
207
207
|
#### Returns
|
|
208
208
|
|
|
209
|
-
`Promise`\<\{ `
|
|
209
|
+
`Promise`\<\{ `agent_secrets`: readonly [`AgentSecretGrant`](AgentSecretGrant.md)[]; `secret_destinations`: readonly [`SecretDestinationGrant`](SecretDestinationGrant.md)[]; \}\>
|
|
210
210
|
|
|
211
211
|
***
|
|
212
212
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### requested\_at?
|
|
22
22
|
|
|
23
|
-
> `optional` **
|
|
23
|
+
> `optional` **requested\_at?**: `string`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### requested\_at?
|
|
22
22
|
|
|
23
|
-
> `optional` **
|
|
23
|
+
> `optional` **requested\_at?**: `string`
|
|
24
24
|
|
|
25
25
|
***
|
|
26
26
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -6,29 +6,29 @@
|
|
|
6
6
|
|
|
7
7
|
## Properties
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### created\_at
|
|
10
10
|
|
|
11
|
-
> **
|
|
11
|
+
> **created\_at**: `string`
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### execution\_status
|
|
16
16
|
|
|
17
|
-
> **
|
|
17
|
+
> **execution\_status**: [`DispatchStatus`](../enumerations/DispatchStatus.md)
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### missing\_grants?
|
|
22
22
|
|
|
23
|
-
> `optional` **
|
|
23
|
+
> `optional` **missing\_grants?**: `object`
|
|
24
24
|
|
|
25
|
-
####
|
|
25
|
+
#### agent\_secret?
|
|
26
26
|
|
|
27
|
-
> `optional` **
|
|
27
|
+
> `optional` **agent\_secret?**: `boolean`
|
|
28
28
|
|
|
29
|
-
####
|
|
29
|
+
#### secret\_destination?
|
|
30
30
|
|
|
31
|
-
> `optional` **
|
|
31
|
+
> `optional` **secret\_destination?**: `boolean`
|
|
32
32
|
|
|
33
33
|
***
|
|
34
34
|
|
|
@@ -54,19 +54,19 @@
|
|
|
54
54
|
|
|
55
55
|
> **method**: `string`
|
|
56
56
|
|
|
57
|
-
####
|
|
57
|
+
#### secret\_alias?
|
|
58
58
|
|
|
59
|
-
> `optional` **
|
|
59
|
+
> `optional` **secret\_alias?**: `string`
|
|
60
60
|
|
|
61
|
-
####
|
|
61
|
+
#### target\_url
|
|
62
62
|
|
|
63
|
-
> **
|
|
63
|
+
> **target\_url**: `string`
|
|
64
64
|
|
|
65
65
|
***
|
|
66
66
|
|
|
67
|
-
###
|
|
67
|
+
### request\_id
|
|
68
68
|
|
|
69
|
-
> **
|
|
69
|
+
> **request\_id**: `string`
|
|
70
70
|
|
|
71
71
|
***
|
|
72
72
|
|
|
@@ -92,6 +92,6 @@
|
|
|
92
92
|
|
|
93
93
|
***
|
|
94
94
|
|
|
95
|
-
###
|
|
95
|
+
### root\_agent\_id
|
|
96
96
|
|
|
97
|
-
> **
|
|
97
|
+
> **root\_agent\_id**: `string`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### vault\_id
|
|
22
22
|
|
|
23
|
-
> `readonly` **
|
|
23
|
+
> `readonly` **vault\_id**: `string`
|
|
24
24
|
|
|
25
25
|
## Methods
|
|
26
26
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### requested\_at?
|
|
22
22
|
|
|
23
|
-
> `optional` **
|
|
23
|
+
> `optional` **requested\_at?**: `string`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
## Properties
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### created\_at
|
|
10
10
|
|
|
11
|
-
> **
|
|
11
|
+
> **created\_at**: `string`
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### execution\_status
|
|
22
22
|
|
|
23
|
-
> **
|
|
23
|
+
> **execution\_status**: [`DispatchStatus`](../enumerations/DispatchStatus.md)
|
|
24
24
|
|
|
25
25
|
***
|
|
26
26
|
|
|
27
|
-
###
|
|
27
|
+
### has\_response\_body
|
|
28
28
|
|
|
29
|
-
> **
|
|
29
|
+
> **has\_response\_body**: `boolean`
|
|
30
30
|
|
|
31
31
|
***
|
|
32
32
|
|
|
33
|
-
###
|
|
33
|
+
### missing\_grants?
|
|
34
34
|
|
|
35
|
-
> `optional` **
|
|
35
|
+
> `optional` **missing\_grants?**: `object`
|
|
36
36
|
|
|
37
|
-
####
|
|
37
|
+
#### agent\_secret?
|
|
38
38
|
|
|
39
|
-
> `optional` **
|
|
39
|
+
> `optional` **agent\_secret?**: `boolean`
|
|
40
40
|
|
|
41
|
-
####
|
|
41
|
+
#### secret\_destination?
|
|
42
42
|
|
|
43
|
-
> `optional` **
|
|
43
|
+
> `optional` **secret\_destination?**: `boolean`
|
|
44
44
|
|
|
45
45
|
***
|
|
46
46
|
|
|
@@ -50,24 +50,24 @@
|
|
|
50
50
|
|
|
51
51
|
***
|
|
52
52
|
|
|
53
|
-
###
|
|
53
|
+
### request\_id
|
|
54
54
|
|
|
55
|
-
> **
|
|
55
|
+
> **request\_id**: `string`
|
|
56
56
|
|
|
57
57
|
***
|
|
58
58
|
|
|
59
|
-
###
|
|
59
|
+
### response\_status?
|
|
60
60
|
|
|
61
|
-
> `optional` **
|
|
61
|
+
> `optional` **response\_status?**: `number`
|
|
62
62
|
|
|
63
63
|
***
|
|
64
64
|
|
|
65
|
-
###
|
|
65
|
+
### root\_agent\_id
|
|
66
66
|
|
|
67
|
-
> **
|
|
67
|
+
> **root\_agent\_id**: `string`
|
|
68
68
|
|
|
69
69
|
***
|
|
70
70
|
|
|
71
|
-
###
|
|
71
|
+
### target\_url
|
|
72
72
|
|
|
73
|
-
> **
|
|
73
|
+
> **target\_url**: `string`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## Extends
|
|
8
8
|
|
|
9
|
-
- `Omit`\<[`CreatePersistentVaultCoreDependenciesOptions`](CreatePersistentVaultCoreDependenciesOptions.md), `"vaultWorkingKey"` \| `"
|
|
9
|
+
- `Omit`\<[`CreatePersistentVaultCoreDependenciesOptions`](CreatePersistentVaultCoreDependenciesOptions.md), `"vaultWorkingKey"` \| `"vault_id"`\>
|
|
10
10
|
|
|
11
11
|
## Extended by
|
|
12
12
|
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
|
|
71
71
|
***
|
|
72
72
|
|
|
73
|
-
###
|
|
73
|
+
### vault\_id
|
|
74
74
|
|
|
75
|
-
> **
|
|
75
|
+
> **vault\_id**: `string`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
## Properties
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### created\_at
|
|
10
10
|
|
|
11
|
-
> **
|
|
11
|
+
> **created\_at**: `string`
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
|
|
23
23
|
***
|
|
24
24
|
|
|
25
|
-
###
|
|
25
|
+
### missing\_grants?
|
|
26
26
|
|
|
27
|
-
> `optional` **
|
|
27
|
+
> `optional` **missing\_grants?**: `object`
|
|
28
28
|
|
|
29
|
-
####
|
|
29
|
+
#### agent\_secret?
|
|
30
30
|
|
|
31
|
-
> `optional` **
|
|
31
|
+
> `optional` **agent\_secret?**: `boolean`
|
|
32
32
|
|
|
33
|
-
####
|
|
33
|
+
#### secret\_destination?
|
|
34
34
|
|
|
35
|
-
> `optional` **
|
|
35
|
+
> `optional` **secret\_destination?**: `boolean`
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
@@ -58,19 +58,19 @@
|
|
|
58
58
|
|
|
59
59
|
> **method**: `string`
|
|
60
60
|
|
|
61
|
-
####
|
|
61
|
+
#### secret\_alias?
|
|
62
62
|
|
|
63
|
-
> `optional` **
|
|
63
|
+
> `optional` **secret\_alias?**: `string`
|
|
64
64
|
|
|
65
|
-
####
|
|
65
|
+
#### target\_url
|
|
66
66
|
|
|
67
|
-
> **
|
|
67
|
+
> **target\_url**: `string`
|
|
68
68
|
|
|
69
69
|
***
|
|
70
70
|
|
|
71
|
-
###
|
|
71
|
+
### request\_id
|
|
72
72
|
|
|
73
|
-
> **
|
|
73
|
+
> **request\_id**: `string`
|
|
74
74
|
|
|
75
75
|
***
|
|
76
76
|
|
|
@@ -96,12 +96,12 @@
|
|
|
96
96
|
|
|
97
97
|
***
|
|
98
98
|
|
|
99
|
-
###
|
|
99
|
+
### root\_agent\_id
|
|
100
100
|
|
|
101
|
-
> **
|
|
101
|
+
> **root\_agent\_id**: `string`
|
|
102
102
|
|
|
103
103
|
***
|
|
104
104
|
|
|
105
|
-
###
|
|
105
|
+
### vault\_id
|
|
106
106
|
|
|
107
|
-
> **
|
|
107
|
+
> **vault\_id**: [`VaultId`](VaultId.md)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -6,27 +6,27 @@
|
|
|
6
6
|
|
|
7
7
|
## Properties
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### granted\_at?
|
|
10
10
|
|
|
11
|
-
> `optional` **
|
|
11
|
+
> `optional` **granted\_at?**: `string`
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### requested\_at
|
|
16
16
|
|
|
17
|
-
> **
|
|
17
|
+
> **requested\_at**: `string`
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### secret\_alias
|
|
22
22
|
|
|
23
|
-
> **
|
|
23
|
+
> **secret\_alias**: `string`
|
|
24
24
|
|
|
25
25
|
***
|
|
26
26
|
|
|
27
|
-
###
|
|
27
|
+
### site\_id
|
|
28
28
|
|
|
29
|
-
> **
|
|
29
|
+
> **site\_id**: `string`
|
|
30
30
|
|
|
31
31
|
***
|
|
32
32
|
|
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
39
|
-
###
|
|
39
|
+
### vault\_id
|
|
40
40
|
|
|
41
|
-
> **
|
|
41
|
+
> **vault\_id**: [`VaultId`](VaultId.md)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -12,21 +12,21 @@
|
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### created\_at
|
|
16
16
|
|
|
17
|
-
> **
|
|
17
|
+
> **created\_at**: `string`
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### issuer\_id
|
|
22
22
|
|
|
23
|
-
> **
|
|
23
|
+
> **issuer\_id**: `string` \| `null`
|
|
24
24
|
|
|
25
25
|
***
|
|
26
26
|
|
|
27
|
-
###
|
|
27
|
+
### lifecycle\_status
|
|
28
28
|
|
|
29
|
-
> **
|
|
29
|
+
> **lifecycle\_status**: [`SecretLifecycleStatus`](../type-aliases/SecretLifecycleStatus.md)
|
|
30
30
|
|
|
31
31
|
***
|
|
32
32
|
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
|
|
49
49
|
***
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### secret\_id
|
|
52
52
|
|
|
53
|
-
> **
|
|
53
|
+
> **secret\_id**: [`SecretId`](SecretId.md)
|
|
54
54
|
|
|
55
55
|
***
|
|
56
56
|
|
|
@@ -72,15 +72,15 @@
|
|
|
72
72
|
|
|
73
73
|
***
|
|
74
74
|
|
|
75
|
-
###
|
|
75
|
+
### updated\_at
|
|
76
76
|
|
|
77
|
-
> **
|
|
77
|
+
> **updated\_at**: `string`
|
|
78
78
|
|
|
79
79
|
***
|
|
80
80
|
|
|
81
|
-
###
|
|
81
|
+
### vault\_id
|
|
82
82
|
|
|
83
|
-
> **
|
|
83
|
+
> **vault\_id**: [`VaultId`](VaultId.md)
|
|
84
84
|
|
|
85
85
|
***
|
|
86
86
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.63.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.63.8**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### request\_id
|
|
16
16
|
|
|
17
|
-
>
|
|
17
|
+
> **request\_id**: `string`
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### requested\_at?
|
|
22
22
|
|
|
23
|
-
> **
|
|
23
|
+
> `optional` **requested\_at?**: `string`
|