@wix/automations 1.0.80 → 1.0.81
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/automations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.81",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/automations_activations": "1.0.
|
|
24
|
+
"@wix/automations_activations": "1.0.50",
|
|
25
25
|
"@wix/automations_automations-service": "1.0.36",
|
|
26
26
|
"@wix/automations_automations-service-v-2": "1.0.49"
|
|
27
27
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "d99e02e1366c7b1a3cd7253d53d8ea2cc3dd501447be7b42cc26d82d"
|
|
52
52
|
}
|
|
@@ -3295,7 +3295,9 @@ interface BatchActivationRequest {
|
|
|
3295
3295
|
}
|
|
3296
3296
|
interface Empty$1 {
|
|
3297
3297
|
}
|
|
3298
|
-
interface ActivationActionStatusChanged extends ActivationActionStatusChangedStatusInfoOneOf {
|
|
3298
|
+
interface ActivationActionStatusChanged extends ActivationActionStatusChangedInfoOneOf, ActivationActionStatusChangedStatusInfoOneOf {
|
|
3299
|
+
/** App defined action info */
|
|
3300
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3299
3301
|
/** Started status information */
|
|
3300
3302
|
startedInfo?: StartedStatusInfo;
|
|
3301
3303
|
/** Ended status information */
|
|
@@ -3310,12 +3312,19 @@ interface ActivationActionStatusChanged extends ActivationActionStatusChangedSta
|
|
|
3310
3312
|
automationInfo?: AutomationInfo;
|
|
3311
3313
|
/** Action type */
|
|
3312
3314
|
type?: Type$1;
|
|
3315
|
+
/** External entity ID */
|
|
3316
|
+
externalEntityId?: string | null;
|
|
3313
3317
|
/** Event date */
|
|
3314
3318
|
statusChangedDate?: Date | null;
|
|
3315
3319
|
/** Action activation status */
|
|
3316
3320
|
status?: ActivationActionStatusChangedStatus;
|
|
3317
3321
|
}
|
|
3318
3322
|
/** @oneof */
|
|
3323
|
+
interface ActivationActionStatusChangedInfoOneOf {
|
|
3324
|
+
/** App defined action info */
|
|
3325
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3326
|
+
}
|
|
3327
|
+
/** @oneof */
|
|
3319
3328
|
interface ActivationActionStatusChangedStatusInfoOneOf {
|
|
3320
3329
|
/** Started status information */
|
|
3321
3330
|
startedInfo?: StartedStatusInfo;
|
|
@@ -3338,7 +3347,7 @@ interface ExpressionEvaluationResult {
|
|
|
3338
3347
|
/** Indicates if there was an error in the evaluation process */
|
|
3339
3348
|
error?: boolean;
|
|
3340
3349
|
}
|
|
3341
|
-
interface
|
|
3350
|
+
interface EndedStatusInfoAppDefinedActionInfo {
|
|
3342
3351
|
/** Output returned by the action implementer. */
|
|
3343
3352
|
output?: Record<string, any> | null;
|
|
3344
3353
|
}
|
|
@@ -3365,6 +3374,8 @@ interface AutomationInfo extends AutomationInfoOriginInfoOneOf {
|
|
|
3365
3374
|
_id?: string;
|
|
3366
3375
|
/** Origin type */
|
|
3367
3376
|
origin?: Origin$1;
|
|
3377
|
+
/** Trigger info */
|
|
3378
|
+
triggerInfo?: AutomationInfoTriggerInfo;
|
|
3368
3379
|
}
|
|
3369
3380
|
/** @oneof */
|
|
3370
3381
|
interface AutomationInfoOriginInfoOneOf {
|
|
@@ -3373,6 +3384,18 @@ interface AutomationInfoOriginInfoOneOf {
|
|
|
3373
3384
|
/** Preinstalled info */
|
|
3374
3385
|
preinstalledInfo?: PreinstalledOrigin$1;
|
|
3375
3386
|
}
|
|
3387
|
+
interface AutomationInfoTriggerInfo {
|
|
3388
|
+
/** Trigger app ID */
|
|
3389
|
+
appId?: string;
|
|
3390
|
+
/** Trigger key */
|
|
3391
|
+
triggerKey?: string;
|
|
3392
|
+
}
|
|
3393
|
+
interface AppDefinedActionInfo {
|
|
3394
|
+
/** Action app ID */
|
|
3395
|
+
appId?: string;
|
|
3396
|
+
/** Action key */
|
|
3397
|
+
actionKey?: string;
|
|
3398
|
+
}
|
|
3376
3399
|
declare enum ActivationActionStatusChangedStatus {
|
|
3377
3400
|
UNKNOWN_ACTION_ACTIVATION_STATUS = "UNKNOWN_ACTION_ACTIVATION_STATUS",
|
|
3378
3401
|
/**
|
|
@@ -3411,7 +3434,7 @@ interface StartedStatusInfoTypeInfoOneOf {
|
|
|
3411
3434
|
}
|
|
3412
3435
|
interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
3413
3436
|
/** APP DEFINED action additional info */
|
|
3414
|
-
appDefinedActionInfo?:
|
|
3437
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3415
3438
|
/** Condition action additional info */
|
|
3416
3439
|
conditionActionInfo?: ConditionActionInfo;
|
|
3417
3440
|
/** Rate limit action additional info */
|
|
@@ -3422,7 +3445,7 @@ interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
|
3422
3445
|
/** @oneof */
|
|
3423
3446
|
interface EndedStatusInfoTypeInfoOneOf {
|
|
3424
3447
|
/** APP DEFINED action additional info */
|
|
3425
|
-
appDefinedActionInfo?:
|
|
3448
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3426
3449
|
/** Condition action additional info */
|
|
3427
3450
|
conditionActionInfo?: ConditionActionInfo;
|
|
3428
3451
|
/** Rate limit action additional info */
|
|
@@ -3989,6 +4012,7 @@ type context$1_ActionStatus = ActionStatus;
|
|
|
3989
4012
|
type context$1_ActionsData = ActionsData;
|
|
3990
4013
|
type context$1_Activation = Activation;
|
|
3991
4014
|
type context$1_ActivationActionStatusChanged = ActivationActionStatusChanged;
|
|
4015
|
+
type context$1_ActivationActionStatusChangedInfoOneOf = ActivationActionStatusChangedInfoOneOf;
|
|
3992
4016
|
type context$1_ActivationActionStatusChangedStatus = ActivationActionStatusChangedStatus;
|
|
3993
4017
|
declare const context$1_ActivationActionStatusChangedStatus: typeof ActivationActionStatusChangedStatus;
|
|
3994
4018
|
type context$1_ActivationActionStatusChangedStatusInfoOneOf = ActivationActionStatusChangedStatusInfoOneOf;
|
|
@@ -4016,6 +4040,7 @@ declare const context$1_AutomationConfigurationStatus: typeof AutomationConfigur
|
|
|
4016
4040
|
type context$1_AutomationIdentifier = AutomationIdentifier;
|
|
4017
4041
|
type context$1_AutomationInfo = AutomationInfo;
|
|
4018
4042
|
type context$1_AutomationInfoOriginInfoOneOf = AutomationInfoOriginInfoOneOf;
|
|
4043
|
+
type context$1_AutomationInfoTriggerInfo = AutomationInfoTriggerInfo;
|
|
4019
4044
|
type context$1_BatchActivationRequest = BatchActivationRequest;
|
|
4020
4045
|
type context$1_BlockType = BlockType;
|
|
4021
4046
|
declare const context$1_BlockType: typeof BlockType;
|
|
@@ -4044,6 +4069,7 @@ type context$1_DelayActionInfo = DelayActionInfo;
|
|
|
4044
4069
|
type context$1_DelayHelper = DelayHelper;
|
|
4045
4070
|
type context$1_DelayOfOneOf = DelayOfOneOf;
|
|
4046
4071
|
type context$1_EndedStatusInfo = EndedStatusInfo;
|
|
4072
|
+
type context$1_EndedStatusInfoAppDefinedActionInfo = EndedStatusInfoAppDefinedActionInfo;
|
|
4047
4073
|
type context$1_EndedStatusInfoTypeInfoOneOf = EndedStatusInfoTypeInfoOneOf;
|
|
4048
4074
|
type context$1_EventInfo = EventInfo;
|
|
4049
4075
|
type context$1_ExecuteFromActionRequest = ExecuteFromActionRequest;
|
|
@@ -4109,7 +4135,7 @@ declare const context$1_cancelEvent: typeof cancelEvent;
|
|
|
4109
4135
|
declare const context$1_onActivationStatusChanged: typeof onActivationStatusChanged;
|
|
4110
4136
|
declare const context$1_reportEvent: typeof reportEvent;
|
|
4111
4137
|
declare namespace context$1 {
|
|
4112
|
-
export { type Action$1 as Action, type context$1_ActionActionOneOf as ActionActionOneOf, type context$1_ActionCompletedRequest as ActionCompletedRequest, type context$1_ActionData as ActionData, type ActionEvent$1 as ActionEvent, type ActionSettings$1 as ActionSettings, type context$1_ActionStatus as ActionStatus, type context$1_ActionsData as ActionsData, type context$1_Activation as Activation, type context$1_ActivationActionStatusChanged as ActivationActionStatusChanged, context$1_ActivationActionStatusChangedStatus as ActivationActionStatusChangedStatus, type context$1_ActivationActionStatusChangedStatusInfoOneOf as ActivationActionStatusChangedStatusInfoOneOf, type context$1_ActivationContinuedAfterSchedule as ActivationContinuedAfterSchedule, type context$1_ActivationRequest as ActivationRequest, type context$1_ActivationResumeAfterDelay as ActivationResumeAfterDelay, type context$1_ActivationScheduleCompleted as ActivationScheduleCompleted, type context$1_ActivationScheduleRequested as ActivationScheduleRequested, type context$1_ActivationSource as ActivationSource, type context$1_ActivationSourceOfOneOf as ActivationSourceOfOneOf, type context$1_ActivationStatus as ActivationStatus, type context$1_ActivationStatusChanged as ActivationStatusChanged, type context$1_ActivationStatusChangedEnvelope as ActivationStatusChangedEnvelope, type context$1_ActivationStatusChangedFailedStatusInfo as ActivationStatusChangedFailedStatusInfo, type context$1_ActivationStatusChangedStartedStatusInfo as ActivationStatusChangedStartedStatusInfo, context$1_ActivationStatusChangedStatus as ActivationStatusChangedStatus, type context$1_ActivationStatusChangedStatusInfoOneOf as ActivationStatusChangedStatusInfoOneOf, type AppDefinedAction$1 as AppDefinedAction, type context$1_AppDefinedActionInfo as AppDefinedActionInfo, type ApplicationError$1 as ApplicationError, type ApplicationOrigin$1 as ApplicationOrigin, type context$1_AsyncAction as AsyncAction, type AuditInfo$1 as AuditInfo, type AuditInfoIdOneOf$1 as AuditInfoIdOneOf, type Automation$1 as Automation, type AutomationConfiguration$1 as AutomationConfiguration, type context$1_AutomationConfigurationAction as AutomationConfigurationAction, type context$1_AutomationConfigurationActionInfoOneOf as AutomationConfigurationActionInfoOneOf, context$1_AutomationConfigurationStatus as AutomationConfigurationStatus, type context$1_AutomationIdentifier as AutomationIdentifier, type context$1_AutomationInfo as AutomationInfo, type context$1_AutomationInfoOriginInfoOneOf as AutomationInfoOriginInfoOneOf, type AutomationOriginInfoOneOf$1 as AutomationOriginInfoOneOf, type AutomationSettings$1 as AutomationSettings, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_BatchActivationRequest as BatchActivationRequest, context$1_BlockType as BlockType, type BulkActionMetadata$1 as BulkActionMetadata, type context$1_BulkCancelEventRequest as BulkCancelEventRequest, type context$1_BulkCancelEventResponse as BulkCancelEventResponse, type context$1_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type context$1_BulkCancelEventResult as BulkCancelEventResult, type context$1_BulkReportEventRequest as BulkReportEventRequest, type context$1_BulkReportEventResponse as BulkReportEventResponse, type context$1_BulkReportEventResponseNonNullableFields as BulkReportEventResponseNonNullableFields, type context$1_BulkReportEventResult as BulkReportEventResult, type context$1_CancelEventRequest as CancelEventRequest, type context$1_CancelEventResponse as CancelEventResponse, type context$1_CancelPendingScheduleRequest as CancelPendingScheduleRequest, type context$1_CancelPendingScheduleRequestByOneOf as CancelPendingScheduleRequestByOneOf, type context$1_CancelPendingScheduleResponse as CancelPendingScheduleResponse, context$1_CancellationReason as CancellationReason, type context$1_CancelledStatusInfo as CancelledStatusInfo, type context$1_Case as Case, type ConditionAction$1 as ConditionAction, type context$1_ConditionActionInfo as ConditionActionInfo, type context$1_ConditionBlock as ConditionBlock, type ConditionExpressionGroup$1 as ConditionExpressionGroup, type context$1_ConditionFilter as ConditionFilter, type context$1_Delay as Delay, type DelayAction$1 as DelayAction, type context$1_DelayActionInfo as DelayActionInfo, type context$1_DelayHelper as DelayHelper, type context$1_DelayOfOneOf as DelayOfOneOf, Domain$1 as Domain, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type DraftInfo$1 as DraftInfo, type Empty$1 as Empty, type context$1_EndedStatusInfo as EndedStatusInfo, type context$1_EndedStatusInfoTypeInfoOneOf as EndedStatusInfoTypeInfoOneOf, type Enrichment$1 as Enrichment, type Enrichments$1 as Enrichments, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventInfo as EventInfo, type EventMetadata$1 as EventMetadata, type context$1_ExecuteFromActionRequest as ExecuteFromActionRequest, type context$1_ExecuteFromActionResponse as ExecuteFromActionResponse, type context$1_ExpressionEvaluationResult as ExpressionEvaluationResult, type context$1_FailedStatusInfo as FailedStatusInfo, type Filter$1 as Filter, type FutureDateActivationOffset$1 as FutureDateActivationOffset, type context$1_Idempotency as Idempotency, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, context$1_IdentifierType as IdentifierType, type context$1_Identity as Identity, type context$1_IfFilter as IfFilter, type context$1_InitiatedStatusInfo as InitiatedStatusInfo, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, Operator$1 as Operator, Origin$1 as Origin, type context$1_Output as Output, type OutputAction$1 as OutputAction, type context$1_PreinstalledIdentifier as PreinstalledIdentifier, type PreinstalledOrigin$1 as PreinstalledOrigin, type RateLimit$1 as RateLimit, type RateLimitAction$1 as RateLimitAction, type context$1_RateLimitActionInfo as RateLimitActionInfo, type context$1_RateLimiting as RateLimiting, type context$1_RefreshPayloadRequest as RefreshPayloadRequest, type context$1_RefreshPayloadResponse as RefreshPayloadResponse, type context$1_ReportDomainEventRequest as ReportDomainEventRequest, type context$1_ReportDomainEventResponse as ReportDomainEventResponse, type context$1_ReportEventOptions as ReportEventOptions, type context$1_ReportEventRequest as ReportEventRequest, type context$1_ReportEventResponse as ReportEventResponse, type context$1_ReportEventResponseNonNullableFields as ReportEventResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, type context$1_RunAutomationRequest as RunAutomationRequest, type context$1_RunAutomationResponse as RunAutomationResponse, type context$1_Runtime as Runtime, type context$1_Schedule as Schedule, type context$1_ScheduleActivationRequested as ScheduleActivationRequested, type context$1_ScheduleRequest as ScheduleRequest, type context$1_ScheduleResponse as ScheduleResponse, context$1_ScheduleStatus as ScheduleStatus, type context$1_ScheduledAction as ScheduledAction, type context$1_ScheduledStatusInfo as ScheduledStatusInfo, type context$1_Scheduler as Scheduler, type context$1_Service as Service, type context$1_ServiceMapping as ServiceMapping, type context$1_SetVariables as SetVariables, type SetVariablesAction$1 as SetVariablesAction, type context$1_SimpleDelay as SimpleDelay, type context$1_SpiAction as SpiAction, type context$1_StartedStatusInfo as StartedStatusInfo, type context$1_StartedStatusInfoAppDefinedActionInfo as StartedStatusInfoAppDefinedActionInfo, type context$1_StartedStatusInfoDelayActionInfo as StartedStatusInfoDelayActionInfo, type context$1_StartedStatusInfoTypeInfoOneOf as StartedStatusInfoTypeInfoOneOf, Status$1 as Status, type context$1_SwitchFilter as SwitchFilter, type context$1_SystemHelper as SystemHelper, type context$1_SystemHelperHelperOneOf as SystemHelperHelperOneOf, context$1_Target as Target, TimeUnit$1 as TimeUnit, type Trigger$1 as Trigger, type context$1_TriggerInfo as TriggerInfo, Type$1 as Type, context$1_Units as Units, type context$1_UpdatePendingSchedulesPayloadRequest as UpdatePendingSchedulesPayloadRequest, type context$1_UpdatePendingSchedulesPayloadResponse as UpdatePendingSchedulesPayloadResponse, type context$1_V1RunAutomationRequest as V1RunAutomationRequest, type context$1_V1RunAutomationRequestIdentifierOneOf as V1RunAutomationRequestIdentifierOneOf, type context$1_V1RunAutomationResponse as V1RunAutomationResponse, WebhookIdentityType$1 as WebhookIdentityType, type context$1__publicOnActivationStatusChangedType as _publicOnActivationStatusChangedType, context$1_bulkCancelEvent as bulkCancelEvent, context$1_bulkReportEvent as bulkReportEvent, context$1_cancelEvent as cancelEvent, context$1_onActivationStatusChanged as onActivationStatusChanged, onActivationStatusChanged$1 as publicOnActivationStatusChanged, context$1_reportEvent as reportEvent };
|
|
4138
|
+
export { type Action$1 as Action, type context$1_ActionActionOneOf as ActionActionOneOf, type context$1_ActionCompletedRequest as ActionCompletedRequest, type context$1_ActionData as ActionData, type ActionEvent$1 as ActionEvent, type ActionSettings$1 as ActionSettings, type context$1_ActionStatus as ActionStatus, type context$1_ActionsData as ActionsData, type context$1_Activation as Activation, type context$1_ActivationActionStatusChanged as ActivationActionStatusChanged, type context$1_ActivationActionStatusChangedInfoOneOf as ActivationActionStatusChangedInfoOneOf, context$1_ActivationActionStatusChangedStatus as ActivationActionStatusChangedStatus, type context$1_ActivationActionStatusChangedStatusInfoOneOf as ActivationActionStatusChangedStatusInfoOneOf, type context$1_ActivationContinuedAfterSchedule as ActivationContinuedAfterSchedule, type context$1_ActivationRequest as ActivationRequest, type context$1_ActivationResumeAfterDelay as ActivationResumeAfterDelay, type context$1_ActivationScheduleCompleted as ActivationScheduleCompleted, type context$1_ActivationScheduleRequested as ActivationScheduleRequested, type context$1_ActivationSource as ActivationSource, type context$1_ActivationSourceOfOneOf as ActivationSourceOfOneOf, type context$1_ActivationStatus as ActivationStatus, type context$1_ActivationStatusChanged as ActivationStatusChanged, type context$1_ActivationStatusChangedEnvelope as ActivationStatusChangedEnvelope, type context$1_ActivationStatusChangedFailedStatusInfo as ActivationStatusChangedFailedStatusInfo, type context$1_ActivationStatusChangedStartedStatusInfo as ActivationStatusChangedStartedStatusInfo, context$1_ActivationStatusChangedStatus as ActivationStatusChangedStatus, type context$1_ActivationStatusChangedStatusInfoOneOf as ActivationStatusChangedStatusInfoOneOf, type AppDefinedAction$1 as AppDefinedAction, type context$1_AppDefinedActionInfo as AppDefinedActionInfo, type ApplicationError$1 as ApplicationError, type ApplicationOrigin$1 as ApplicationOrigin, type context$1_AsyncAction as AsyncAction, type AuditInfo$1 as AuditInfo, type AuditInfoIdOneOf$1 as AuditInfoIdOneOf, type Automation$1 as Automation, type AutomationConfiguration$1 as AutomationConfiguration, type context$1_AutomationConfigurationAction as AutomationConfigurationAction, type context$1_AutomationConfigurationActionInfoOneOf as AutomationConfigurationActionInfoOneOf, context$1_AutomationConfigurationStatus as AutomationConfigurationStatus, type context$1_AutomationIdentifier as AutomationIdentifier, type context$1_AutomationInfo as AutomationInfo, type context$1_AutomationInfoOriginInfoOneOf as AutomationInfoOriginInfoOneOf, type context$1_AutomationInfoTriggerInfo as AutomationInfoTriggerInfo, type AutomationOriginInfoOneOf$1 as AutomationOriginInfoOneOf, type AutomationSettings$1 as AutomationSettings, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_BatchActivationRequest as BatchActivationRequest, context$1_BlockType as BlockType, type BulkActionMetadata$1 as BulkActionMetadata, type context$1_BulkCancelEventRequest as BulkCancelEventRequest, type context$1_BulkCancelEventResponse as BulkCancelEventResponse, type context$1_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type context$1_BulkCancelEventResult as BulkCancelEventResult, type context$1_BulkReportEventRequest as BulkReportEventRequest, type context$1_BulkReportEventResponse as BulkReportEventResponse, type context$1_BulkReportEventResponseNonNullableFields as BulkReportEventResponseNonNullableFields, type context$1_BulkReportEventResult as BulkReportEventResult, type context$1_CancelEventRequest as CancelEventRequest, type context$1_CancelEventResponse as CancelEventResponse, type context$1_CancelPendingScheduleRequest as CancelPendingScheduleRequest, type context$1_CancelPendingScheduleRequestByOneOf as CancelPendingScheduleRequestByOneOf, type context$1_CancelPendingScheduleResponse as CancelPendingScheduleResponse, context$1_CancellationReason as CancellationReason, type context$1_CancelledStatusInfo as CancelledStatusInfo, type context$1_Case as Case, type ConditionAction$1 as ConditionAction, type context$1_ConditionActionInfo as ConditionActionInfo, type context$1_ConditionBlock as ConditionBlock, type ConditionExpressionGroup$1 as ConditionExpressionGroup, type context$1_ConditionFilter as ConditionFilter, type context$1_Delay as Delay, type DelayAction$1 as DelayAction, type context$1_DelayActionInfo as DelayActionInfo, type context$1_DelayHelper as DelayHelper, type context$1_DelayOfOneOf as DelayOfOneOf, Domain$1 as Domain, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type DraftInfo$1 as DraftInfo, type Empty$1 as Empty, type context$1_EndedStatusInfo as EndedStatusInfo, type context$1_EndedStatusInfoAppDefinedActionInfo as EndedStatusInfoAppDefinedActionInfo, type context$1_EndedStatusInfoTypeInfoOneOf as EndedStatusInfoTypeInfoOneOf, type Enrichment$1 as Enrichment, type Enrichments$1 as Enrichments, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventInfo as EventInfo, type EventMetadata$1 as EventMetadata, type context$1_ExecuteFromActionRequest as ExecuteFromActionRequest, type context$1_ExecuteFromActionResponse as ExecuteFromActionResponse, type context$1_ExpressionEvaluationResult as ExpressionEvaluationResult, type context$1_FailedStatusInfo as FailedStatusInfo, type Filter$1 as Filter, type FutureDateActivationOffset$1 as FutureDateActivationOffset, type context$1_Idempotency as Idempotency, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, context$1_IdentifierType as IdentifierType, type context$1_Identity as Identity, type context$1_IfFilter as IfFilter, type context$1_InitiatedStatusInfo as InitiatedStatusInfo, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, Operator$1 as Operator, Origin$1 as Origin, type context$1_Output as Output, type OutputAction$1 as OutputAction, type context$1_PreinstalledIdentifier as PreinstalledIdentifier, type PreinstalledOrigin$1 as PreinstalledOrigin, type RateLimit$1 as RateLimit, type RateLimitAction$1 as RateLimitAction, type context$1_RateLimitActionInfo as RateLimitActionInfo, type context$1_RateLimiting as RateLimiting, type context$1_RefreshPayloadRequest as RefreshPayloadRequest, type context$1_RefreshPayloadResponse as RefreshPayloadResponse, type context$1_ReportDomainEventRequest as ReportDomainEventRequest, type context$1_ReportDomainEventResponse as ReportDomainEventResponse, type context$1_ReportEventOptions as ReportEventOptions, type context$1_ReportEventRequest as ReportEventRequest, type context$1_ReportEventResponse as ReportEventResponse, type context$1_ReportEventResponseNonNullableFields as ReportEventResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, type context$1_RunAutomationRequest as RunAutomationRequest, type context$1_RunAutomationResponse as RunAutomationResponse, type context$1_Runtime as Runtime, type context$1_Schedule as Schedule, type context$1_ScheduleActivationRequested as ScheduleActivationRequested, type context$1_ScheduleRequest as ScheduleRequest, type context$1_ScheduleResponse as ScheduleResponse, context$1_ScheduleStatus as ScheduleStatus, type context$1_ScheduledAction as ScheduledAction, type context$1_ScheduledStatusInfo as ScheduledStatusInfo, type context$1_Scheduler as Scheduler, type context$1_Service as Service, type context$1_ServiceMapping as ServiceMapping, type context$1_SetVariables as SetVariables, type SetVariablesAction$1 as SetVariablesAction, type context$1_SimpleDelay as SimpleDelay, type context$1_SpiAction as SpiAction, type context$1_StartedStatusInfo as StartedStatusInfo, type context$1_StartedStatusInfoAppDefinedActionInfo as StartedStatusInfoAppDefinedActionInfo, type context$1_StartedStatusInfoDelayActionInfo as StartedStatusInfoDelayActionInfo, type context$1_StartedStatusInfoTypeInfoOneOf as StartedStatusInfoTypeInfoOneOf, Status$1 as Status, type context$1_SwitchFilter as SwitchFilter, type context$1_SystemHelper as SystemHelper, type context$1_SystemHelperHelperOneOf as SystemHelperHelperOneOf, context$1_Target as Target, TimeUnit$1 as TimeUnit, type Trigger$1 as Trigger, type context$1_TriggerInfo as TriggerInfo, Type$1 as Type, context$1_Units as Units, type context$1_UpdatePendingSchedulesPayloadRequest as UpdatePendingSchedulesPayloadRequest, type context$1_UpdatePendingSchedulesPayloadResponse as UpdatePendingSchedulesPayloadResponse, type context$1_V1RunAutomationRequest as V1RunAutomationRequest, type context$1_V1RunAutomationRequestIdentifierOneOf as V1RunAutomationRequestIdentifierOneOf, type context$1_V1RunAutomationResponse as V1RunAutomationResponse, WebhookIdentityType$1 as WebhookIdentityType, type context$1__publicOnActivationStatusChangedType as _publicOnActivationStatusChangedType, context$1_bulkCancelEvent as bulkCancelEvent, context$1_bulkReportEvent as bulkReportEvent, context$1_cancelEvent as cancelEvent, context$1_onActivationStatusChanged as onActivationStatusChanged, onActivationStatusChanged$1 as publicOnActivationStatusChanged, context$1_reportEvent as reportEvent };
|
|
4113
4139
|
}
|
|
4114
4140
|
|
|
4115
4141
|
interface Automation extends AutomationOriginInfoOneOf {
|
|
@@ -3295,7 +3295,9 @@ interface BatchActivationRequest {
|
|
|
3295
3295
|
}
|
|
3296
3296
|
interface Empty$1 {
|
|
3297
3297
|
}
|
|
3298
|
-
interface ActivationActionStatusChanged extends ActivationActionStatusChangedStatusInfoOneOf {
|
|
3298
|
+
interface ActivationActionStatusChanged extends ActivationActionStatusChangedInfoOneOf, ActivationActionStatusChangedStatusInfoOneOf {
|
|
3299
|
+
/** App defined action info */
|
|
3300
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3299
3301
|
/** Started status information */
|
|
3300
3302
|
startedInfo?: StartedStatusInfo;
|
|
3301
3303
|
/** Ended status information */
|
|
@@ -3310,12 +3312,19 @@ interface ActivationActionStatusChanged extends ActivationActionStatusChangedSta
|
|
|
3310
3312
|
automationInfo?: AutomationInfo;
|
|
3311
3313
|
/** Action type */
|
|
3312
3314
|
type?: Type$1;
|
|
3315
|
+
/** External entity ID */
|
|
3316
|
+
externalEntityId?: string | null;
|
|
3313
3317
|
/** Event date */
|
|
3314
3318
|
statusChangedDate?: Date | null;
|
|
3315
3319
|
/** Action activation status */
|
|
3316
3320
|
status?: ActivationActionStatusChangedStatus;
|
|
3317
3321
|
}
|
|
3318
3322
|
/** @oneof */
|
|
3323
|
+
interface ActivationActionStatusChangedInfoOneOf {
|
|
3324
|
+
/** App defined action info */
|
|
3325
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3326
|
+
}
|
|
3327
|
+
/** @oneof */
|
|
3319
3328
|
interface ActivationActionStatusChangedStatusInfoOneOf {
|
|
3320
3329
|
/** Started status information */
|
|
3321
3330
|
startedInfo?: StartedStatusInfo;
|
|
@@ -3338,7 +3347,7 @@ interface ExpressionEvaluationResult {
|
|
|
3338
3347
|
/** Indicates if there was an error in the evaluation process */
|
|
3339
3348
|
error?: boolean;
|
|
3340
3349
|
}
|
|
3341
|
-
interface
|
|
3350
|
+
interface EndedStatusInfoAppDefinedActionInfo {
|
|
3342
3351
|
/** Output returned by the action implementer. */
|
|
3343
3352
|
output?: Record<string, any> | null;
|
|
3344
3353
|
}
|
|
@@ -3365,6 +3374,8 @@ interface AutomationInfo extends AutomationInfoOriginInfoOneOf {
|
|
|
3365
3374
|
_id?: string;
|
|
3366
3375
|
/** Origin type */
|
|
3367
3376
|
origin?: Origin$1;
|
|
3377
|
+
/** Trigger info */
|
|
3378
|
+
triggerInfo?: AutomationInfoTriggerInfo;
|
|
3368
3379
|
}
|
|
3369
3380
|
/** @oneof */
|
|
3370
3381
|
interface AutomationInfoOriginInfoOneOf {
|
|
@@ -3373,6 +3384,18 @@ interface AutomationInfoOriginInfoOneOf {
|
|
|
3373
3384
|
/** Preinstalled info */
|
|
3374
3385
|
preinstalledInfo?: PreinstalledOrigin$1;
|
|
3375
3386
|
}
|
|
3387
|
+
interface AutomationInfoTriggerInfo {
|
|
3388
|
+
/** Trigger app ID */
|
|
3389
|
+
appId?: string;
|
|
3390
|
+
/** Trigger key */
|
|
3391
|
+
triggerKey?: string;
|
|
3392
|
+
}
|
|
3393
|
+
interface AppDefinedActionInfo {
|
|
3394
|
+
/** Action app ID */
|
|
3395
|
+
appId?: string;
|
|
3396
|
+
/** Action key */
|
|
3397
|
+
actionKey?: string;
|
|
3398
|
+
}
|
|
3376
3399
|
declare enum ActivationActionStatusChangedStatus {
|
|
3377
3400
|
UNKNOWN_ACTION_ACTIVATION_STATUS = "UNKNOWN_ACTION_ACTIVATION_STATUS",
|
|
3378
3401
|
/**
|
|
@@ -3411,7 +3434,7 @@ interface StartedStatusInfoTypeInfoOneOf {
|
|
|
3411
3434
|
}
|
|
3412
3435
|
interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
3413
3436
|
/** APP DEFINED action additional info */
|
|
3414
|
-
appDefinedActionInfo?:
|
|
3437
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3415
3438
|
/** Condition action additional info */
|
|
3416
3439
|
conditionActionInfo?: ConditionActionInfo;
|
|
3417
3440
|
/** Rate limit action additional info */
|
|
@@ -3422,7 +3445,7 @@ interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
|
3422
3445
|
/** @oneof */
|
|
3423
3446
|
interface EndedStatusInfoTypeInfoOneOf {
|
|
3424
3447
|
/** APP DEFINED action additional info */
|
|
3425
|
-
appDefinedActionInfo?:
|
|
3448
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3426
3449
|
/** Condition action additional info */
|
|
3427
3450
|
conditionActionInfo?: ConditionActionInfo;
|
|
3428
3451
|
/** Rate limit action additional info */
|
|
@@ -3989,6 +4012,7 @@ type index_d$1_ActionStatus = ActionStatus;
|
|
|
3989
4012
|
type index_d$1_ActionsData = ActionsData;
|
|
3990
4013
|
type index_d$1_Activation = Activation;
|
|
3991
4014
|
type index_d$1_ActivationActionStatusChanged = ActivationActionStatusChanged;
|
|
4015
|
+
type index_d$1_ActivationActionStatusChangedInfoOneOf = ActivationActionStatusChangedInfoOneOf;
|
|
3992
4016
|
type index_d$1_ActivationActionStatusChangedStatus = ActivationActionStatusChangedStatus;
|
|
3993
4017
|
declare const index_d$1_ActivationActionStatusChangedStatus: typeof ActivationActionStatusChangedStatus;
|
|
3994
4018
|
type index_d$1_ActivationActionStatusChangedStatusInfoOneOf = ActivationActionStatusChangedStatusInfoOneOf;
|
|
@@ -4016,6 +4040,7 @@ declare const index_d$1_AutomationConfigurationStatus: typeof AutomationConfigur
|
|
|
4016
4040
|
type index_d$1_AutomationIdentifier = AutomationIdentifier;
|
|
4017
4041
|
type index_d$1_AutomationInfo = AutomationInfo;
|
|
4018
4042
|
type index_d$1_AutomationInfoOriginInfoOneOf = AutomationInfoOriginInfoOneOf;
|
|
4043
|
+
type index_d$1_AutomationInfoTriggerInfo = AutomationInfoTriggerInfo;
|
|
4019
4044
|
type index_d$1_BatchActivationRequest = BatchActivationRequest;
|
|
4020
4045
|
type index_d$1_BlockType = BlockType;
|
|
4021
4046
|
declare const index_d$1_BlockType: typeof BlockType;
|
|
@@ -4044,6 +4069,7 @@ type index_d$1_DelayActionInfo = DelayActionInfo;
|
|
|
4044
4069
|
type index_d$1_DelayHelper = DelayHelper;
|
|
4045
4070
|
type index_d$1_DelayOfOneOf = DelayOfOneOf;
|
|
4046
4071
|
type index_d$1_EndedStatusInfo = EndedStatusInfo;
|
|
4072
|
+
type index_d$1_EndedStatusInfoAppDefinedActionInfo = EndedStatusInfoAppDefinedActionInfo;
|
|
4047
4073
|
type index_d$1_EndedStatusInfoTypeInfoOneOf = EndedStatusInfoTypeInfoOneOf;
|
|
4048
4074
|
type index_d$1_EventInfo = EventInfo;
|
|
4049
4075
|
type index_d$1_ExecuteFromActionRequest = ExecuteFromActionRequest;
|
|
@@ -4109,7 +4135,7 @@ declare const index_d$1_cancelEvent: typeof cancelEvent;
|
|
|
4109
4135
|
declare const index_d$1_onActivationStatusChanged: typeof onActivationStatusChanged;
|
|
4110
4136
|
declare const index_d$1_reportEvent: typeof reportEvent;
|
|
4111
4137
|
declare namespace index_d$1 {
|
|
4112
|
-
export { type Action$1 as Action, type index_d$1_ActionActionOneOf as ActionActionOneOf, type index_d$1_ActionCompletedRequest as ActionCompletedRequest, type index_d$1_ActionData as ActionData, type ActionEvent$1 as ActionEvent, type ActionSettings$1 as ActionSettings, type index_d$1_ActionStatus as ActionStatus, type index_d$1_ActionsData as ActionsData, type index_d$1_Activation as Activation, type index_d$1_ActivationActionStatusChanged as ActivationActionStatusChanged, index_d$1_ActivationActionStatusChangedStatus as ActivationActionStatusChangedStatus, type index_d$1_ActivationActionStatusChangedStatusInfoOneOf as ActivationActionStatusChangedStatusInfoOneOf, type index_d$1_ActivationContinuedAfterSchedule as ActivationContinuedAfterSchedule, type index_d$1_ActivationRequest as ActivationRequest, type index_d$1_ActivationResumeAfterDelay as ActivationResumeAfterDelay, type index_d$1_ActivationScheduleCompleted as ActivationScheduleCompleted, type index_d$1_ActivationScheduleRequested as ActivationScheduleRequested, type index_d$1_ActivationSource as ActivationSource, type index_d$1_ActivationSourceOfOneOf as ActivationSourceOfOneOf, type index_d$1_ActivationStatus as ActivationStatus, type index_d$1_ActivationStatusChanged as ActivationStatusChanged, type index_d$1_ActivationStatusChangedEnvelope as ActivationStatusChangedEnvelope, type index_d$1_ActivationStatusChangedFailedStatusInfo as ActivationStatusChangedFailedStatusInfo, type index_d$1_ActivationStatusChangedStartedStatusInfo as ActivationStatusChangedStartedStatusInfo, index_d$1_ActivationStatusChangedStatus as ActivationStatusChangedStatus, type index_d$1_ActivationStatusChangedStatusInfoOneOf as ActivationStatusChangedStatusInfoOneOf, type AppDefinedAction$1 as AppDefinedAction, type index_d$1_AppDefinedActionInfo as AppDefinedActionInfo, type ApplicationError$1 as ApplicationError, type ApplicationOrigin$1 as ApplicationOrigin, type index_d$1_AsyncAction as AsyncAction, type AuditInfo$1 as AuditInfo, type AuditInfoIdOneOf$1 as AuditInfoIdOneOf, type Automation$1 as Automation, type AutomationConfiguration$1 as AutomationConfiguration, type index_d$1_AutomationConfigurationAction as AutomationConfigurationAction, type index_d$1_AutomationConfigurationActionInfoOneOf as AutomationConfigurationActionInfoOneOf, index_d$1_AutomationConfigurationStatus as AutomationConfigurationStatus, type index_d$1_AutomationIdentifier as AutomationIdentifier, type index_d$1_AutomationInfo as AutomationInfo, type index_d$1_AutomationInfoOriginInfoOneOf as AutomationInfoOriginInfoOneOf, type AutomationOriginInfoOneOf$1 as AutomationOriginInfoOneOf, type AutomationSettings$1 as AutomationSettings, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BatchActivationRequest as BatchActivationRequest, index_d$1_BlockType as BlockType, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkCancelEventRequest as BulkCancelEventRequest, type index_d$1_BulkCancelEventResponse as BulkCancelEventResponse, type index_d$1_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type index_d$1_BulkCancelEventResult as BulkCancelEventResult, type index_d$1_BulkReportEventRequest as BulkReportEventRequest, type index_d$1_BulkReportEventResponse as BulkReportEventResponse, type index_d$1_BulkReportEventResponseNonNullableFields as BulkReportEventResponseNonNullableFields, type index_d$1_BulkReportEventResult as BulkReportEventResult, type index_d$1_CancelEventRequest as CancelEventRequest, type index_d$1_CancelEventResponse as CancelEventResponse, type index_d$1_CancelPendingScheduleRequest as CancelPendingScheduleRequest, type index_d$1_CancelPendingScheduleRequestByOneOf as CancelPendingScheduleRequestByOneOf, type index_d$1_CancelPendingScheduleResponse as CancelPendingScheduleResponse, index_d$1_CancellationReason as CancellationReason, type index_d$1_CancelledStatusInfo as CancelledStatusInfo, type index_d$1_Case as Case, type ConditionAction$1 as ConditionAction, type index_d$1_ConditionActionInfo as ConditionActionInfo, type index_d$1_ConditionBlock as ConditionBlock, type ConditionExpressionGroup$1 as ConditionExpressionGroup, type index_d$1_ConditionFilter as ConditionFilter, type index_d$1_Delay as Delay, type DelayAction$1 as DelayAction, type index_d$1_DelayActionInfo as DelayActionInfo, type index_d$1_DelayHelper as DelayHelper, type index_d$1_DelayOfOneOf as DelayOfOneOf, Domain$1 as Domain, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type DraftInfo$1 as DraftInfo, type Empty$1 as Empty, type index_d$1_EndedStatusInfo as EndedStatusInfo, type index_d$1_EndedStatusInfoTypeInfoOneOf as EndedStatusInfoTypeInfoOneOf, type Enrichment$1 as Enrichment, type Enrichments$1 as Enrichments, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventInfo as EventInfo, type EventMetadata$1 as EventMetadata, type index_d$1_ExecuteFromActionRequest as ExecuteFromActionRequest, type index_d$1_ExecuteFromActionResponse as ExecuteFromActionResponse, type index_d$1_ExpressionEvaluationResult as ExpressionEvaluationResult, type index_d$1_FailedStatusInfo as FailedStatusInfo, type Filter$1 as Filter, type FutureDateActivationOffset$1 as FutureDateActivationOffset, type index_d$1_Idempotency as Idempotency, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, index_d$1_IdentifierType as IdentifierType, type index_d$1_Identity as Identity, type index_d$1_IfFilter as IfFilter, type index_d$1_InitiatedStatusInfo as InitiatedStatusInfo, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, Operator$1 as Operator, Origin$1 as Origin, type index_d$1_Output as Output, type OutputAction$1 as OutputAction, type index_d$1_PreinstalledIdentifier as PreinstalledIdentifier, type PreinstalledOrigin$1 as PreinstalledOrigin, type RateLimit$1 as RateLimit, type RateLimitAction$1 as RateLimitAction, type index_d$1_RateLimitActionInfo as RateLimitActionInfo, type index_d$1_RateLimiting as RateLimiting, type index_d$1_RefreshPayloadRequest as RefreshPayloadRequest, type index_d$1_RefreshPayloadResponse as RefreshPayloadResponse, type index_d$1_ReportDomainEventRequest as ReportDomainEventRequest, type index_d$1_ReportDomainEventResponse as ReportDomainEventResponse, type index_d$1_ReportEventOptions as ReportEventOptions, type index_d$1_ReportEventRequest as ReportEventRequest, type index_d$1_ReportEventResponse as ReportEventResponse, type index_d$1_ReportEventResponseNonNullableFields as ReportEventResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, type index_d$1_RunAutomationRequest as RunAutomationRequest, type index_d$1_RunAutomationResponse as RunAutomationResponse, type index_d$1_Runtime as Runtime, type index_d$1_Schedule as Schedule, type index_d$1_ScheduleActivationRequested as ScheduleActivationRequested, type index_d$1_ScheduleRequest as ScheduleRequest, type index_d$1_ScheduleResponse as ScheduleResponse, index_d$1_ScheduleStatus as ScheduleStatus, type index_d$1_ScheduledAction as ScheduledAction, type index_d$1_ScheduledStatusInfo as ScheduledStatusInfo, type index_d$1_Scheduler as Scheduler, type index_d$1_Service as Service, type index_d$1_ServiceMapping as ServiceMapping, type index_d$1_SetVariables as SetVariables, type SetVariablesAction$1 as SetVariablesAction, type index_d$1_SimpleDelay as SimpleDelay, type index_d$1_SpiAction as SpiAction, type index_d$1_StartedStatusInfo as StartedStatusInfo, type index_d$1_StartedStatusInfoAppDefinedActionInfo as StartedStatusInfoAppDefinedActionInfo, type index_d$1_StartedStatusInfoDelayActionInfo as StartedStatusInfoDelayActionInfo, type index_d$1_StartedStatusInfoTypeInfoOneOf as StartedStatusInfoTypeInfoOneOf, Status$1 as Status, type index_d$1_SwitchFilter as SwitchFilter, type index_d$1_SystemHelper as SystemHelper, type index_d$1_SystemHelperHelperOneOf as SystemHelperHelperOneOf, index_d$1_Target as Target, TimeUnit$1 as TimeUnit, type Trigger$1 as Trigger, type index_d$1_TriggerInfo as TriggerInfo, Type$1 as Type, index_d$1_Units as Units, type index_d$1_UpdatePendingSchedulesPayloadRequest as UpdatePendingSchedulesPayloadRequest, type index_d$1_UpdatePendingSchedulesPayloadResponse as UpdatePendingSchedulesPayloadResponse, type index_d$1_V1RunAutomationRequest as V1RunAutomationRequest, type index_d$1_V1RunAutomationRequestIdentifierOneOf as V1RunAutomationRequestIdentifierOneOf, type index_d$1_V1RunAutomationResponse as V1RunAutomationResponse, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicOnActivationStatusChangedType as _publicOnActivationStatusChangedType, index_d$1_bulkCancelEvent as bulkCancelEvent, index_d$1_bulkReportEvent as bulkReportEvent, index_d$1_cancelEvent as cancelEvent, index_d$1_onActivationStatusChanged as onActivationStatusChanged, onActivationStatusChanged$1 as publicOnActivationStatusChanged, index_d$1_reportEvent as reportEvent };
|
|
4138
|
+
export { type Action$1 as Action, type index_d$1_ActionActionOneOf as ActionActionOneOf, type index_d$1_ActionCompletedRequest as ActionCompletedRequest, type index_d$1_ActionData as ActionData, type ActionEvent$1 as ActionEvent, type ActionSettings$1 as ActionSettings, type index_d$1_ActionStatus as ActionStatus, type index_d$1_ActionsData as ActionsData, type index_d$1_Activation as Activation, type index_d$1_ActivationActionStatusChanged as ActivationActionStatusChanged, type index_d$1_ActivationActionStatusChangedInfoOneOf as ActivationActionStatusChangedInfoOneOf, index_d$1_ActivationActionStatusChangedStatus as ActivationActionStatusChangedStatus, type index_d$1_ActivationActionStatusChangedStatusInfoOneOf as ActivationActionStatusChangedStatusInfoOneOf, type index_d$1_ActivationContinuedAfterSchedule as ActivationContinuedAfterSchedule, type index_d$1_ActivationRequest as ActivationRequest, type index_d$1_ActivationResumeAfterDelay as ActivationResumeAfterDelay, type index_d$1_ActivationScheduleCompleted as ActivationScheduleCompleted, type index_d$1_ActivationScheduleRequested as ActivationScheduleRequested, type index_d$1_ActivationSource as ActivationSource, type index_d$1_ActivationSourceOfOneOf as ActivationSourceOfOneOf, type index_d$1_ActivationStatus as ActivationStatus, type index_d$1_ActivationStatusChanged as ActivationStatusChanged, type index_d$1_ActivationStatusChangedEnvelope as ActivationStatusChangedEnvelope, type index_d$1_ActivationStatusChangedFailedStatusInfo as ActivationStatusChangedFailedStatusInfo, type index_d$1_ActivationStatusChangedStartedStatusInfo as ActivationStatusChangedStartedStatusInfo, index_d$1_ActivationStatusChangedStatus as ActivationStatusChangedStatus, type index_d$1_ActivationStatusChangedStatusInfoOneOf as ActivationStatusChangedStatusInfoOneOf, type AppDefinedAction$1 as AppDefinedAction, type index_d$1_AppDefinedActionInfo as AppDefinedActionInfo, type ApplicationError$1 as ApplicationError, type ApplicationOrigin$1 as ApplicationOrigin, type index_d$1_AsyncAction as AsyncAction, type AuditInfo$1 as AuditInfo, type AuditInfoIdOneOf$1 as AuditInfoIdOneOf, type Automation$1 as Automation, type AutomationConfiguration$1 as AutomationConfiguration, type index_d$1_AutomationConfigurationAction as AutomationConfigurationAction, type index_d$1_AutomationConfigurationActionInfoOneOf as AutomationConfigurationActionInfoOneOf, index_d$1_AutomationConfigurationStatus as AutomationConfigurationStatus, type index_d$1_AutomationIdentifier as AutomationIdentifier, type index_d$1_AutomationInfo as AutomationInfo, type index_d$1_AutomationInfoOriginInfoOneOf as AutomationInfoOriginInfoOneOf, type index_d$1_AutomationInfoTriggerInfo as AutomationInfoTriggerInfo, type AutomationOriginInfoOneOf$1 as AutomationOriginInfoOneOf, type AutomationSettings$1 as AutomationSettings, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BatchActivationRequest as BatchActivationRequest, index_d$1_BlockType as BlockType, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkCancelEventRequest as BulkCancelEventRequest, type index_d$1_BulkCancelEventResponse as BulkCancelEventResponse, type index_d$1_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type index_d$1_BulkCancelEventResult as BulkCancelEventResult, type index_d$1_BulkReportEventRequest as BulkReportEventRequest, type index_d$1_BulkReportEventResponse as BulkReportEventResponse, type index_d$1_BulkReportEventResponseNonNullableFields as BulkReportEventResponseNonNullableFields, type index_d$1_BulkReportEventResult as BulkReportEventResult, type index_d$1_CancelEventRequest as CancelEventRequest, type index_d$1_CancelEventResponse as CancelEventResponse, type index_d$1_CancelPendingScheduleRequest as CancelPendingScheduleRequest, type index_d$1_CancelPendingScheduleRequestByOneOf as CancelPendingScheduleRequestByOneOf, type index_d$1_CancelPendingScheduleResponse as CancelPendingScheduleResponse, index_d$1_CancellationReason as CancellationReason, type index_d$1_CancelledStatusInfo as CancelledStatusInfo, type index_d$1_Case as Case, type ConditionAction$1 as ConditionAction, type index_d$1_ConditionActionInfo as ConditionActionInfo, type index_d$1_ConditionBlock as ConditionBlock, type ConditionExpressionGroup$1 as ConditionExpressionGroup, type index_d$1_ConditionFilter as ConditionFilter, type index_d$1_Delay as Delay, type DelayAction$1 as DelayAction, type index_d$1_DelayActionInfo as DelayActionInfo, type index_d$1_DelayHelper as DelayHelper, type index_d$1_DelayOfOneOf as DelayOfOneOf, Domain$1 as Domain, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type DraftInfo$1 as DraftInfo, type Empty$1 as Empty, type index_d$1_EndedStatusInfo as EndedStatusInfo, type index_d$1_EndedStatusInfoAppDefinedActionInfo as EndedStatusInfoAppDefinedActionInfo, type index_d$1_EndedStatusInfoTypeInfoOneOf as EndedStatusInfoTypeInfoOneOf, type Enrichment$1 as Enrichment, type Enrichments$1 as Enrichments, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventInfo as EventInfo, type EventMetadata$1 as EventMetadata, type index_d$1_ExecuteFromActionRequest as ExecuteFromActionRequest, type index_d$1_ExecuteFromActionResponse as ExecuteFromActionResponse, type index_d$1_ExpressionEvaluationResult as ExpressionEvaluationResult, type index_d$1_FailedStatusInfo as FailedStatusInfo, type Filter$1 as Filter, type FutureDateActivationOffset$1 as FutureDateActivationOffset, type index_d$1_Idempotency as Idempotency, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, index_d$1_IdentifierType as IdentifierType, type index_d$1_Identity as Identity, type index_d$1_IfFilter as IfFilter, type index_d$1_InitiatedStatusInfo as InitiatedStatusInfo, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, Operator$1 as Operator, Origin$1 as Origin, type index_d$1_Output as Output, type OutputAction$1 as OutputAction, type index_d$1_PreinstalledIdentifier as PreinstalledIdentifier, type PreinstalledOrigin$1 as PreinstalledOrigin, type RateLimit$1 as RateLimit, type RateLimitAction$1 as RateLimitAction, type index_d$1_RateLimitActionInfo as RateLimitActionInfo, type index_d$1_RateLimiting as RateLimiting, type index_d$1_RefreshPayloadRequest as RefreshPayloadRequest, type index_d$1_RefreshPayloadResponse as RefreshPayloadResponse, type index_d$1_ReportDomainEventRequest as ReportDomainEventRequest, type index_d$1_ReportDomainEventResponse as ReportDomainEventResponse, type index_d$1_ReportEventOptions as ReportEventOptions, type index_d$1_ReportEventRequest as ReportEventRequest, type index_d$1_ReportEventResponse as ReportEventResponse, type index_d$1_ReportEventResponseNonNullableFields as ReportEventResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, type index_d$1_RunAutomationRequest as RunAutomationRequest, type index_d$1_RunAutomationResponse as RunAutomationResponse, type index_d$1_Runtime as Runtime, type index_d$1_Schedule as Schedule, type index_d$1_ScheduleActivationRequested as ScheduleActivationRequested, type index_d$1_ScheduleRequest as ScheduleRequest, type index_d$1_ScheduleResponse as ScheduleResponse, index_d$1_ScheduleStatus as ScheduleStatus, type index_d$1_ScheduledAction as ScheduledAction, type index_d$1_ScheduledStatusInfo as ScheduledStatusInfo, type index_d$1_Scheduler as Scheduler, type index_d$1_Service as Service, type index_d$1_ServiceMapping as ServiceMapping, type index_d$1_SetVariables as SetVariables, type SetVariablesAction$1 as SetVariablesAction, type index_d$1_SimpleDelay as SimpleDelay, type index_d$1_SpiAction as SpiAction, type index_d$1_StartedStatusInfo as StartedStatusInfo, type index_d$1_StartedStatusInfoAppDefinedActionInfo as StartedStatusInfoAppDefinedActionInfo, type index_d$1_StartedStatusInfoDelayActionInfo as StartedStatusInfoDelayActionInfo, type index_d$1_StartedStatusInfoTypeInfoOneOf as StartedStatusInfoTypeInfoOneOf, Status$1 as Status, type index_d$1_SwitchFilter as SwitchFilter, type index_d$1_SystemHelper as SystemHelper, type index_d$1_SystemHelperHelperOneOf as SystemHelperHelperOneOf, index_d$1_Target as Target, TimeUnit$1 as TimeUnit, type Trigger$1 as Trigger, type index_d$1_TriggerInfo as TriggerInfo, Type$1 as Type, index_d$1_Units as Units, type index_d$1_UpdatePendingSchedulesPayloadRequest as UpdatePendingSchedulesPayloadRequest, type index_d$1_UpdatePendingSchedulesPayloadResponse as UpdatePendingSchedulesPayloadResponse, type index_d$1_V1RunAutomationRequest as V1RunAutomationRequest, type index_d$1_V1RunAutomationRequestIdentifierOneOf as V1RunAutomationRequestIdentifierOneOf, type index_d$1_V1RunAutomationResponse as V1RunAutomationResponse, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicOnActivationStatusChangedType as _publicOnActivationStatusChangedType, index_d$1_bulkCancelEvent as bulkCancelEvent, index_d$1_bulkReportEvent as bulkReportEvent, index_d$1_cancelEvent as cancelEvent, index_d$1_onActivationStatusChanged as onActivationStatusChanged, onActivationStatusChanged$1 as publicOnActivationStatusChanged, index_d$1_reportEvent as reportEvent };
|
|
4113
4139
|
}
|
|
4114
4140
|
|
|
4115
4141
|
interface Automation extends AutomationOriginInfoOneOf {
|