@the-ai-company/cbio-node-runtime 1.68.0 → 1.70.1
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 +40 -6
- package/dist/clients/owner/client.js +11 -2
- package/dist/clients/owner/client.js.map +1 -1
- package/dist/clients/owner/contracts.d.ts +4 -2
- package/dist/public-types.d.ts +2 -1
- package/dist/public-types.js.map +1 -1
- package/dist/runtime/index.d.ts +4 -2
- package/dist/runtime/index.js +1 -1
- package/dist/runtime/index.js.map +1 -1
- package/dist/vault-core/contracts.d.ts +49 -29
- package/dist/vault-core/contracts.js +0 -6
- package/dist/vault-core/contracts.js.map +1 -1
- package/dist/vault-core/core.d.ts +4 -5
- package/dist/vault-core/core.js +65 -37
- package/dist/vault-core/core.js.map +1 -1
- package/dist/vault-core/defaults.d.ts +8 -6
- package/dist/vault-core/defaults.js +98 -16
- package/dist/vault-core/defaults.js.map +1 -1
- package/dist/vault-core/index.d.ts +3 -3
- package/dist/vault-core/index.js +1 -1
- package/dist/vault-core/index.js.map +1 -1
- package/dist/vault-core/persistence.d.ts +34 -36
- package/dist/vault-core/persistence.js +268 -333
- package/dist/vault-core/persistence.js.map +1 -1
- package/dist/vault-core/ports.d.ts +5 -3
- package/dist/vault-ingress/defaults.d.ts +1 -1
- package/dist/vault-ingress/index.d.ts +2 -1
- package/dist/vault-ingress/index.js +5 -2
- package/dist/vault-ingress/index.js.map +1 -1
- package/dist/vault-ingress/server-utils.d.ts +30 -0
- package/dist/vault-ingress/server-utils.js +151 -0
- package/dist/vault-ingress/server-utils.js.map +1 -1
- package/docs/REFERENCE.md +4 -0
- package/docs/api/README.md +9 -3
- package/docs/api/classes/IdentityError.md +1 -1
- package/docs/api/classes/OwnerClientError.md +1 -1
- package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +5 -5
- package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +5 -5
- package/docs/api/classes/PersistentVaultAuditLog.md +29 -5
- package/docs/api/classes/PersistentVaultSecretCustody.md +5 -5
- package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +5 -5
- package/docs/api/classes/PersistentVaultSecretRepository.md +5 -5
- package/docs/api/classes/VaultCore.md +10 -10
- package/docs/api/classes/VaultCoreError.md +1 -1
- package/docs/api/enumerations/AuditOperation.md +1 -37
- 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 +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 +30 -0
- package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
- package/docs/api/functions/handleVaultPendingDispatchSse.md +30 -0
- 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 +3 -3
- package/docs/api/interfaces/AgentDispatchIntent.md +1 -1
- package/docs/api/interfaces/AgentDispatchTransport.md +3 -3
- package/docs/api/interfaces/AgentIdentity.md +1 -1
- package/docs/api/interfaces/AgentIdentityRecord.md +1 -1
- package/docs/api/interfaces/AgentRequestRecord.md +83 -0
- package/docs/api/interfaces/AgentRuntimeManifest.md +1 -1
- package/docs/api/interfaces/AgentSecretGrant.md +1 -1
- package/docs/api/interfaces/AgentSigner.md +1 -1
- package/docs/api/interfaces/AgentVisibleRequestRecord.md +1 -1
- package/docs/api/interfaces/AgentVisibleSecretRecord.md +1 -1
- package/docs/api/interfaces/AuditEntry.md +1 -1
- package/docs/api/interfaces/CbioRuntime.md +59 -1
- 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 -23
- package/docs/api/interfaces/DispatchAuthorization.md +1 -1
- package/docs/api/interfaces/DispatchInstruction.md +1 -1
- package/docs/api/interfaces/DispatchRequest.md +1 -1
- package/docs/api/interfaces/DispatchResult.md +7 -1
- 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 +45 -0
- package/docs/api/interfaces/OwnerClient.md +20 -4
- package/docs/api/interfaces/OwnerCreateSecretInput.md +1 -1
- package/docs/api/interfaces/OwnerPendingDispatchSubscription.md +27 -0
- package/docs/api/interfaces/OwnerRemoveSecretInput.md +1 -1
- package/docs/api/interfaces/OwnerRequestRecord.md +7 -1
- 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 +9 -3
- package/docs/api/interfaces/OwnerVisibleRequestRecord.md +1 -1
- package/docs/api/interfaces/PendingDispatchEvent.md +23 -0
- package/docs/api/interfaces/RecoverVaultOptions.md +1 -1
- package/docs/api/interfaces/RecoveredVault.md +1 -1
- package/docs/api/interfaces/RequestRecord.md +21 -1
- package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
- package/docs/api/interfaces/SecretAlias.md +1 -1
- package/docs/api/interfaces/SecretDestinationGrant.md +1 -1
- package/docs/api/interfaces/SecretId.md +1 -1
- package/docs/api/interfaces/SecretRecord.md +1 -1
- 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/VaultId.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 +22 -6
- package/docs/api/interfaces/VaultUpdateAgentInput.md +1 -1
- package/docs/api/type-aliases/AgentId.md +1 -1
- package/docs/api/type-aliases/AgentRequestResult.md +7 -0
- 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 +2 -2
- package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +1 -1
- package/docs/zh/README.md +11 -3
- package/package.json +5 -3
- package/docs/api/interfaces/AgentRequestResult.md +0 -35
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
|
|
13
13
|
### Constructor
|
|
14
14
|
|
|
15
|
-
> **new PersistentVaultSecretDestinationGrantRegistry**(`
|
|
15
|
+
> **new PersistentVaultSecretDestinationGrantRegistry**(`db`): `SqliteSecretDestinationGrantRegistry`
|
|
16
16
|
|
|
17
17
|
#### Parameters
|
|
18
18
|
|
|
19
|
-
#####
|
|
19
|
+
##### db
|
|
20
20
|
|
|
21
|
-
`
|
|
21
|
+
`Database`
|
|
22
22
|
|
|
23
23
|
#### Returns
|
|
24
24
|
|
|
25
|
-
`
|
|
25
|
+
`SqliteSecretDestinationGrantRegistry`
|
|
26
26
|
|
|
27
27
|
## Methods
|
|
28
28
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
|
|
13
13
|
### Constructor
|
|
14
14
|
|
|
15
|
-
> **new PersistentVaultSecretRepository**(`
|
|
15
|
+
> **new PersistentVaultSecretRepository**(`db`): `SqliteSecretRepository`
|
|
16
16
|
|
|
17
17
|
#### Parameters
|
|
18
18
|
|
|
19
|
-
#####
|
|
19
|
+
##### db
|
|
20
20
|
|
|
21
|
-
`
|
|
21
|
+
`Database`
|
|
22
22
|
|
|
23
23
|
#### Returns
|
|
24
24
|
|
|
25
|
-
`
|
|
25
|
+
`SqliteSecretRepository`
|
|
26
26
|
|
|
27
27
|
## Methods
|
|
28
28
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
|
|
69
69
|
### agentGetRequest()
|
|
70
70
|
|
|
71
|
-
> **agentGetRequest**(`command`): `Promise
|
|
71
|
+
> **agentGetRequest**(`command`): `Promise`\<[`AgentRequestRecord`](../interfaces/AgentRequestRecord.md)\>
|
|
72
72
|
|
|
73
73
|
#### Parameters
|
|
74
74
|
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
|
|
97
97
|
#### Returns
|
|
98
98
|
|
|
99
|
-
`Promise
|
|
99
|
+
`Promise`\<[`AgentRequestRecord`](../interfaces/AgentRequestRecord.md)\>
|
|
100
100
|
|
|
101
101
|
***
|
|
102
102
|
|
|
@@ -448,15 +448,15 @@
|
|
|
448
448
|
|
|
449
449
|
***
|
|
450
450
|
|
|
451
|
-
###
|
|
451
|
+
### ownerOnAudit()
|
|
452
452
|
|
|
453
|
-
> **
|
|
453
|
+
> **ownerOnAudit**(`subscription`): () => `void`
|
|
454
454
|
|
|
455
455
|
#### Parameters
|
|
456
456
|
|
|
457
|
-
#####
|
|
457
|
+
##### subscription
|
|
458
458
|
|
|
459
|
-
|
|
459
|
+
[`OwnerAuditSubscription`](../interfaces/OwnerAuditSubscription.md)
|
|
460
460
|
|
|
461
461
|
#### Returns
|
|
462
462
|
|
|
@@ -466,13 +466,13 @@
|
|
|
466
466
|
|
|
467
467
|
### ownerOnPendingDispatch()
|
|
468
468
|
|
|
469
|
-
> **ownerOnPendingDispatch**(`
|
|
469
|
+
> **ownerOnPendingDispatch**(`subscription`): () => `void`
|
|
470
470
|
|
|
471
471
|
#### Parameters
|
|
472
472
|
|
|
473
|
-
#####
|
|
473
|
+
##### subscription
|
|
474
474
|
|
|
475
|
-
|
|
475
|
+
[`OwnerPendingDispatchSubscription`](../interfaces/OwnerPendingDispatchSubscription.md)
|
|
476
476
|
|
|
477
477
|
#### Returns
|
|
478
478
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -60,42 +60,6 @@
|
|
|
60
60
|
|
|
61
61
|
***
|
|
62
62
|
|
|
63
|
-
### MANAGEMENT\_LIST\_AGENTS
|
|
64
|
-
|
|
65
|
-
> **MANAGEMENT\_LIST\_AGENTS**: `"management.list_agents"`
|
|
66
|
-
|
|
67
|
-
***
|
|
68
|
-
|
|
69
|
-
### MANAGEMENT\_LIST\_GRANTS
|
|
70
|
-
|
|
71
|
-
> **MANAGEMENT\_LIST\_GRANTS**: `"management.list_grants"`
|
|
72
|
-
|
|
73
|
-
***
|
|
74
|
-
|
|
75
|
-
### MANAGEMENT\_LIST\_REQUESTS
|
|
76
|
-
|
|
77
|
-
> **MANAGEMENT\_LIST\_REQUESTS**: `"management.list_requests"`
|
|
78
|
-
|
|
79
|
-
***
|
|
80
|
-
|
|
81
|
-
### MANAGEMENT\_LIST\_SECRETS
|
|
82
|
-
|
|
83
|
-
> **MANAGEMENT\_LIST\_SECRETS**: `"management.list_secrets"`
|
|
84
|
-
|
|
85
|
-
***
|
|
86
|
-
|
|
87
|
-
### MANAGEMENT\_READ\_AUDIT
|
|
88
|
-
|
|
89
|
-
> **MANAGEMENT\_READ\_AUDIT**: `"management.read_audit"`
|
|
90
|
-
|
|
91
|
-
***
|
|
92
|
-
|
|
93
|
-
### MANAGEMENT\_READ\_REQUEST
|
|
94
|
-
|
|
95
|
-
> **MANAGEMENT\_READ\_REQUEST**: `"management.read_request"`
|
|
96
|
-
|
|
97
|
-
***
|
|
98
|
-
|
|
99
63
|
### POLICY\_EVALUATE
|
|
100
64
|
|
|
101
65
|
> **POLICY\_EVALUATE**: `"policy.evaluate_dispatch"`
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
# Function: handleVaultAuditSse()
|
|
6
|
+
|
|
7
|
+
> **handleVaultAuditSse**(`service`, `options?`): `Response`
|
|
8
|
+
|
|
9
|
+
Creates an SSE response that streams owner-visible audit entries.
|
|
10
|
+
Host applications should authenticate owner access before exposing this helper remotely.
|
|
11
|
+
|
|
12
|
+
## Parameters
|
|
13
|
+
|
|
14
|
+
### service
|
|
15
|
+
|
|
16
|
+
[`VaultService`](../interfaces/VaultService.md)
|
|
17
|
+
|
|
18
|
+
The VaultService instance to subscribe against.
|
|
19
|
+
|
|
20
|
+
### options?
|
|
21
|
+
|
|
22
|
+
`VaultAuditSseOptions` = `{}`
|
|
23
|
+
|
|
24
|
+
Stream options such as replay cursor, filtering, and abort handling.
|
|
25
|
+
|
|
26
|
+
## Returns
|
|
27
|
+
|
|
28
|
+
`Response`
|
|
29
|
+
|
|
30
|
+
A streaming SSE Response that emits `audit_entry` events by default.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
# Function: handleVaultPendingDispatchSse()
|
|
6
|
+
|
|
7
|
+
> **handleVaultPendingDispatchSse**(`service`, `options?`): `Response`
|
|
8
|
+
|
|
9
|
+
Creates an SSE response that streams owner-visible pending dispatch events.
|
|
10
|
+
Host applications should authenticate owner access before exposing this helper remotely.
|
|
11
|
+
|
|
12
|
+
## Parameters
|
|
13
|
+
|
|
14
|
+
### service
|
|
15
|
+
|
|
16
|
+
[`VaultService`](../interfaces/VaultService.md)
|
|
17
|
+
|
|
18
|
+
The VaultService instance to subscribe against.
|
|
19
|
+
|
|
20
|
+
### options?
|
|
21
|
+
|
|
22
|
+
`VaultPendingDispatchSseOptions` = `{}`
|
|
23
|
+
|
|
24
|
+
Stream options such as replay cursor and abort handling.
|
|
25
|
+
|
|
26
|
+
## Returns
|
|
27
|
+
|
|
28
|
+
`Response`
|
|
29
|
+
|
|
30
|
+
A streaming SSE Response that emits `pending_dispatch` events.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -32,7 +32,7 @@ If the grant is missing, it will return an AWAITING_APPROVAL status.
|
|
|
32
32
|
|
|
33
33
|
### agentGetRequest()
|
|
34
34
|
|
|
35
|
-
> **agentGetRequest**(`request_id`): `Promise`\<[`
|
|
35
|
+
> **agentGetRequest**(`request_id`): `Promise`\<[`AgentRequestRecord`](AgentRequestRecord.md)\>
|
|
36
36
|
|
|
37
37
|
Get details of a specific request.
|
|
38
38
|
|
|
@@ -44,7 +44,7 @@ Get details of a specific request.
|
|
|
44
44
|
|
|
45
45
|
#### Returns
|
|
46
46
|
|
|
47
|
-
`Promise`\<[`
|
|
47
|
+
`Promise`\<[`AgentRequestRecord`](AgentRequestRecord.md)\>
|
|
48
48
|
|
|
49
49
|
***
|
|
50
50
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[**CBIO Node Runtime Agent API v1.
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
### agentGetRequest()
|
|
26
26
|
|
|
27
|
-
> **agentGetRequest**(`request`): `Promise`\<[`
|
|
27
|
+
> **agentGetRequest**(`request`): `Promise`\<[`AgentRequestRecord`](AgentRequestRecord.md)\>
|
|
28
28
|
|
|
29
29
|
#### Parameters
|
|
30
30
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
#### Returns
|
|
36
36
|
|
|
37
|
-
`Promise`\<[`
|
|
37
|
+
`Promise`\<[`AgentRequestRecord`](AgentRequestRecord.md)\>
|
|
38
38
|
|
|
39
39
|
***
|
|
40
40
|
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
# Interface: AgentRequestRecord
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### created\_at
|
|
10
|
+
|
|
11
|
+
> **created\_at**: `string`
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### execution\_status
|
|
16
|
+
|
|
17
|
+
> **execution\_status**: [`DispatchStatus`](../enumerations/DispatchStatus.md)
|
|
18
|
+
|
|
19
|
+
***
|
|
20
|
+
|
|
21
|
+
### reason
|
|
22
|
+
|
|
23
|
+
> **reason**: `string`
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### request
|
|
28
|
+
|
|
29
|
+
> **request**: `object`
|
|
30
|
+
|
|
31
|
+
#### body?
|
|
32
|
+
|
|
33
|
+
> `optional` **body?**: `string`
|
|
34
|
+
|
|
35
|
+
#### headers?
|
|
36
|
+
|
|
37
|
+
> `optional` **headers?**: `Record`\<`string`, `string`\>
|
|
38
|
+
|
|
39
|
+
#### method
|
|
40
|
+
|
|
41
|
+
> **method**: `string`
|
|
42
|
+
|
|
43
|
+
#### secret\_alias?
|
|
44
|
+
|
|
45
|
+
> `optional` **secret\_alias?**: `string`
|
|
46
|
+
|
|
47
|
+
#### target\_url
|
|
48
|
+
|
|
49
|
+
> **target\_url**: `string`
|
|
50
|
+
|
|
51
|
+
***
|
|
52
|
+
|
|
53
|
+
### request\_id
|
|
54
|
+
|
|
55
|
+
> **request\_id**: `string`
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### requested\_at
|
|
60
|
+
|
|
61
|
+
> **requested\_at**: `string`
|
|
62
|
+
|
|
63
|
+
***
|
|
64
|
+
|
|
65
|
+
### response?
|
|
66
|
+
|
|
67
|
+
> `optional` **response?**: `object`
|
|
68
|
+
|
|
69
|
+
#### body?
|
|
70
|
+
|
|
71
|
+
> `optional` **body?**: `string`
|
|
72
|
+
|
|
73
|
+
#### error?
|
|
74
|
+
|
|
75
|
+
> `optional` **error?**: `string`
|
|
76
|
+
|
|
77
|
+
#### headers?
|
|
78
|
+
|
|
79
|
+
> `optional` **headers?**: `Record`\<`string`, `string`\>
|
|
80
|
+
|
|
81
|
+
#### status?
|
|
82
|
+
|
|
83
|
+
> `optional` **status?**: `number`
|