@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
|
|
|
@@ -239,6 +239,35 @@ Using scrypt for memory-hard key derivation to resist brute-force attacks.
|
|
|
239
239
|
|
|
240
240
|
***
|
|
241
241
|
|
|
242
|
+
### handleVaultAuditSse
|
|
243
|
+
|
|
244
|
+
> **handleVaultAuditSse**: (`service`, `options`) => `Response`
|
|
245
|
+
|
|
246
|
+
Creates an SSE response that streams owner-visible audit entries.
|
|
247
|
+
Host applications should authenticate owner access before exposing this helper remotely.
|
|
248
|
+
|
|
249
|
+
#### Parameters
|
|
250
|
+
|
|
251
|
+
##### service
|
|
252
|
+
|
|
253
|
+
[`VaultService`](VaultService.md)
|
|
254
|
+
|
|
255
|
+
The VaultService instance to subscribe against.
|
|
256
|
+
|
|
257
|
+
##### options?
|
|
258
|
+
|
|
259
|
+
`VaultAuditSseOptions` = `{}`
|
|
260
|
+
|
|
261
|
+
Stream options such as replay cursor, filtering, and abort handling.
|
|
262
|
+
|
|
263
|
+
#### Returns
|
|
264
|
+
|
|
265
|
+
`Response`
|
|
266
|
+
|
|
267
|
+
A streaming SSE Response that emits `audit_entry` events by default.
|
|
268
|
+
|
|
269
|
+
***
|
|
270
|
+
|
|
242
271
|
### handleVaultHttpDispatch
|
|
243
272
|
|
|
244
273
|
> **handleVaultHttpDispatch**: (`service`, `body`) => `Promise`\<`VaultAgentDispatchResponse` \| `VaultAgentDispatchErrorResponse`\>
|
|
@@ -268,6 +297,35 @@ A JSON-serializable response object.
|
|
|
268
297
|
|
|
269
298
|
***
|
|
270
299
|
|
|
300
|
+
### handleVaultPendingDispatchSse
|
|
301
|
+
|
|
302
|
+
> **handleVaultPendingDispatchSse**: (`service`, `options`) => `Response`
|
|
303
|
+
|
|
304
|
+
Creates an SSE response that streams owner-visible pending dispatch events.
|
|
305
|
+
Host applications should authenticate owner access before exposing this helper remotely.
|
|
306
|
+
|
|
307
|
+
#### Parameters
|
|
308
|
+
|
|
309
|
+
##### service
|
|
310
|
+
|
|
311
|
+
[`VaultService`](VaultService.md)
|
|
312
|
+
|
|
313
|
+
The VaultService instance to subscribe against.
|
|
314
|
+
|
|
315
|
+
##### options?
|
|
316
|
+
|
|
317
|
+
`VaultPendingDispatchSseOptions` = `{}`
|
|
318
|
+
|
|
319
|
+
Stream options such as replay cursor and abort handling.
|
|
320
|
+
|
|
321
|
+
#### Returns
|
|
322
|
+
|
|
323
|
+
`Response`
|
|
324
|
+
|
|
325
|
+
A streaming SSE Response that emits `pending_dispatch` events.
|
|
326
|
+
|
|
327
|
+
***
|
|
328
|
+
|
|
271
329
|
### IdentityError
|
|
272
330
|
|
|
273
331
|
> **IdentityError**: *typeof* [`IdentityError`](../classes/IdentityError.md)
|
|
@@ -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
|
|
|
@@ -13,25 +13,3 @@
|
|
|
13
13
|
#### Returns
|
|
14
14
|
|
|
15
15
|
`Date`
|
|
16
|
-
|
|
17
|
-
***
|
|
18
|
-
|
|
19
|
-
### trusted\_issuer\_ids?
|
|
20
|
-
|
|
21
|
-
> `optional` **trusted\_issuer\_ids?**: readonly `string`[]
|
|
22
|
-
|
|
23
|
-
***
|
|
24
|
-
|
|
25
|
-
### trustedIssuerIdResolver?
|
|
26
|
-
|
|
27
|
-
> `optional` **trustedIssuerIdResolver?**: (`issuer_id`) => `boolean` \| `Promise`\<`boolean`\>
|
|
28
|
-
|
|
29
|
-
#### Parameters
|
|
30
|
-
|
|
31
|
-
##### issuer\_id
|
|
32
|
-
|
|
33
|
-
`string`
|
|
34
|
-
|
|
35
|
-
#### Returns
|
|
36
|
-
|
|
37
|
-
`boolean` \| `Promise`\<`boolean`\>
|
|
@@ -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
|
|
|
@@ -30,6 +30,12 @@
|
|
|
30
30
|
|
|
31
31
|
***
|
|
32
32
|
|
|
33
|
+
### response\_headers?
|
|
34
|
+
|
|
35
|
+
> `optional` **response\_headers?**: `Record`\<`string`, `string`\>
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
33
39
|
### response\_status?
|
|
34
40
|
|
|
35
41
|
> `optional` **response\_status?**: `number`
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
# Interface: OwnerAuditSubscription
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### afterEventId?
|
|
10
|
+
|
|
11
|
+
> `optional` **afterEventId?**: `string`
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### operations?
|
|
16
|
+
|
|
17
|
+
> `optional` **operations?**: readonly [`AuditOperation`](../enumerations/AuditOperation.md)[]
|
|
18
|
+
|
|
19
|
+
***
|
|
20
|
+
|
|
21
|
+
### request\_id?
|
|
22
|
+
|
|
23
|
+
> `optional` **request\_id?**: `string`
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### root\_agent\_id?
|
|
28
|
+
|
|
29
|
+
> `optional` **root\_agent\_id?**: `string`
|
|
30
|
+
|
|
31
|
+
## Methods
|
|
32
|
+
|
|
33
|
+
### onEvent()
|
|
34
|
+
|
|
35
|
+
> **onEvent**(`entry`): `void`
|
|
36
|
+
|
|
37
|
+
#### Parameters
|
|
38
|
+
|
|
39
|
+
##### entry
|
|
40
|
+
|
|
41
|
+
[`AuditEntry`](AuditEntry.md)
|
|
42
|
+
|
|
43
|
+
#### Returns
|
|
44
|
+
|
|
45
|
+
`void`
|
|
@@ -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
|
|
|
@@ -258,15 +258,31 @@ A client for vault owners to manage secrets, agents, and grants.
|
|
|
258
258
|
|
|
259
259
|
***
|
|
260
260
|
|
|
261
|
+
### ownerOnAudit()
|
|
262
|
+
|
|
263
|
+
> **ownerOnAudit**(`subscription`): () => `void`
|
|
264
|
+
|
|
265
|
+
#### Parameters
|
|
266
|
+
|
|
267
|
+
##### subscription
|
|
268
|
+
|
|
269
|
+
[`OwnerAuditSubscription`](OwnerAuditSubscription.md)
|
|
270
|
+
|
|
271
|
+
#### Returns
|
|
272
|
+
|
|
273
|
+
() => `void`
|
|
274
|
+
|
|
275
|
+
***
|
|
276
|
+
|
|
261
277
|
### ownerOnPendingDispatch()
|
|
262
278
|
|
|
263
|
-
> **ownerOnPendingDispatch**(`
|
|
279
|
+
> **ownerOnPendingDispatch**(`subscription`): () => `void`
|
|
264
280
|
|
|
265
281
|
#### Parameters
|
|
266
282
|
|
|
267
|
-
#####
|
|
283
|
+
##### subscription
|
|
268
284
|
|
|
269
|
-
|
|
285
|
+
[`OwnerPendingDispatchSubscription`](OwnerPendingDispatchSubscription.md)
|
|
270
286
|
|
|
271
287
|
#### Returns
|
|
272
288
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
# Interface: OwnerPendingDispatchSubscription
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### afterEventId?
|
|
10
|
+
|
|
11
|
+
> `optional` **afterEventId?**: `string`
|
|
12
|
+
|
|
13
|
+
## Methods
|
|
14
|
+
|
|
15
|
+
### onEvent()
|
|
16
|
+
|
|
17
|
+
> **onEvent**(`event`): `void`
|
|
18
|
+
|
|
19
|
+
#### Parameters
|
|
20
|
+
|
|
21
|
+
##### event
|
|
22
|
+
|
|
23
|
+
[`PendingDispatchEvent`](PendingDispatchEvent.md)
|
|
24
|
+
|
|
25
|
+
#### Returns
|
|
26
|
+
|
|
27
|
+
`void`
|
|
@@ -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
|
|
|
@@ -70,6 +70,12 @@
|
|
|
70
70
|
|
|
71
71
|
***
|
|
72
72
|
|
|
73
|
+
### requested\_at
|
|
74
|
+
|
|
75
|
+
> **requested\_at**: `string`
|
|
76
|
+
|
|
77
|
+
***
|
|
78
|
+
|
|
73
79
|
### response?
|
|
74
80
|
|
|
75
81
|
> `optional` **response?**: `object`
|
|
@@ -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,9 +12,15 @@
|
|
|
12
12
|
|
|
13
13
|
***
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### new\_alias?
|
|
16
16
|
|
|
17
|
-
> **
|
|
17
|
+
> `optional` **new\_alias?**: `string`
|
|
18
|
+
|
|
19
|
+
***
|
|
20
|
+
|
|
21
|
+
### plaintext?
|
|
22
|
+
|
|
23
|
+
> `optional` **plaintext?**: `string`
|
|
18
24
|
|
|
19
25
|
***
|
|
20
26
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[**CBIO Node Runtime Agent API v1.70.1**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
# Interface: PendingDispatchEvent
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### emitted\_at
|
|
10
|
+
|
|
11
|
+
> **emitted\_at**: `string`
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### event\_id
|
|
16
|
+
|
|
17
|
+
> **event\_id**: `string`
|
|
18
|
+
|
|
19
|
+
***
|
|
20
|
+
|
|
21
|
+
### record
|
|
22
|
+
|
|
23
|
+
> **record**: [`RequestRecord`](RequestRecord.md)
|
|
@@ -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
|
|
|
@@ -36,6 +36,20 @@
|
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
39
|
+
### pending\_dispatch\_event?
|
|
40
|
+
|
|
41
|
+
> `optional` **pending\_dispatch\_event?**: `object`
|
|
42
|
+
|
|
43
|
+
#### emitted\_at
|
|
44
|
+
|
|
45
|
+
> **emitted\_at**: `string`
|
|
46
|
+
|
|
47
|
+
#### event\_id
|
|
48
|
+
|
|
49
|
+
> **event\_id**: `string`
|
|
50
|
+
|
|
51
|
+
***
|
|
52
|
+
|
|
39
53
|
### reason
|
|
40
54
|
|
|
41
55
|
> **reason**: `string`
|
|
@@ -74,6 +88,12 @@
|
|
|
74
88
|
|
|
75
89
|
***
|
|
76
90
|
|
|
91
|
+
### requested\_at
|
|
92
|
+
|
|
93
|
+
> **requested\_at**: `string`
|
|
94
|
+
|
|
95
|
+
***
|
|
96
|
+
|
|
77
97
|
### response?
|
|
78
98
|
|
|
79
99
|
> `optional` **response?**: `object`
|