@wix/automations 1.0.80 → 1.0.82
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.82",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/automations_activations": "1.0.
|
|
25
|
-
"@wix/automations_automations-service": "1.0.
|
|
26
|
-
"@wix/automations_automations-service-v-2": "1.0.
|
|
24
|
+
"@wix/automations_activations": "1.0.50",
|
|
25
|
+
"@wix/automations_automations-service": "1.0.37",
|
|
26
|
+
"@wix/automations_automations-service-v-2": "1.0.50"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "db50912d5b02062004ae220939c319699614f78447adecb3be71d50b"
|
|
52
52
|
}
|
|
@@ -1147,6 +1147,21 @@ interface SiteMarkedAsTemplate$1 {
|
|
|
1147
1147
|
}
|
|
1148
1148
|
interface SiteMarkedAsWixSite$1 {
|
|
1149
1149
|
}
|
|
1150
|
+
/**
|
|
1151
|
+
* Represents a service provisioned a site.
|
|
1152
|
+
*
|
|
1153
|
+
* Note on `origin_instance_id`:
|
|
1154
|
+
* There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
|
|
1155
|
+
* This is because of the following scenario:
|
|
1156
|
+
*
|
|
1157
|
+
* Imagine you have a template where a third-party application (TPA) includes some stub data,
|
|
1158
|
+
* such as a product catalog. When you create a site from this template, you inherit this
|
|
1159
|
+
* default product catalog. However, if the template's product catalog is modified,
|
|
1160
|
+
* your site will retain the catalog as it was at the time of site creation. This ensures that
|
|
1161
|
+
* your site remains consistent with what you initially received and does not include any
|
|
1162
|
+
* changes made to the original template afterward.
|
|
1163
|
+
* To ensure this, the TPA on the template gets a new instance_id.
|
|
1164
|
+
*/
|
|
1150
1165
|
interface ServiceProvisioned$1 {
|
|
1151
1166
|
/** Either UUID or EmbeddedServiceType. */
|
|
1152
1167
|
appDefId?: string;
|
|
@@ -3295,7 +3310,9 @@ interface BatchActivationRequest {
|
|
|
3295
3310
|
}
|
|
3296
3311
|
interface Empty$1 {
|
|
3297
3312
|
}
|
|
3298
|
-
interface ActivationActionStatusChanged extends ActivationActionStatusChangedStatusInfoOneOf {
|
|
3313
|
+
interface ActivationActionStatusChanged extends ActivationActionStatusChangedInfoOneOf, ActivationActionStatusChangedStatusInfoOneOf {
|
|
3314
|
+
/** App defined action info */
|
|
3315
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3299
3316
|
/** Started status information */
|
|
3300
3317
|
startedInfo?: StartedStatusInfo;
|
|
3301
3318
|
/** Ended status information */
|
|
@@ -3310,12 +3327,19 @@ interface ActivationActionStatusChanged extends ActivationActionStatusChangedSta
|
|
|
3310
3327
|
automationInfo?: AutomationInfo;
|
|
3311
3328
|
/** Action type */
|
|
3312
3329
|
type?: Type$1;
|
|
3330
|
+
/** External entity ID */
|
|
3331
|
+
externalEntityId?: string | null;
|
|
3313
3332
|
/** Event date */
|
|
3314
3333
|
statusChangedDate?: Date | null;
|
|
3315
3334
|
/** Action activation status */
|
|
3316
3335
|
status?: ActivationActionStatusChangedStatus;
|
|
3317
3336
|
}
|
|
3318
3337
|
/** @oneof */
|
|
3338
|
+
interface ActivationActionStatusChangedInfoOneOf {
|
|
3339
|
+
/** App defined action info */
|
|
3340
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3341
|
+
}
|
|
3342
|
+
/** @oneof */
|
|
3319
3343
|
interface ActivationActionStatusChangedStatusInfoOneOf {
|
|
3320
3344
|
/** Started status information */
|
|
3321
3345
|
startedInfo?: StartedStatusInfo;
|
|
@@ -3338,7 +3362,7 @@ interface ExpressionEvaluationResult {
|
|
|
3338
3362
|
/** Indicates if there was an error in the evaluation process */
|
|
3339
3363
|
error?: boolean;
|
|
3340
3364
|
}
|
|
3341
|
-
interface
|
|
3365
|
+
interface EndedStatusInfoAppDefinedActionInfo {
|
|
3342
3366
|
/** Output returned by the action implementer. */
|
|
3343
3367
|
output?: Record<string, any> | null;
|
|
3344
3368
|
}
|
|
@@ -3365,6 +3389,8 @@ interface AutomationInfo extends AutomationInfoOriginInfoOneOf {
|
|
|
3365
3389
|
_id?: string;
|
|
3366
3390
|
/** Origin type */
|
|
3367
3391
|
origin?: Origin$1;
|
|
3392
|
+
/** Trigger info */
|
|
3393
|
+
triggerInfo?: AutomationInfoTriggerInfo;
|
|
3368
3394
|
}
|
|
3369
3395
|
/** @oneof */
|
|
3370
3396
|
interface AutomationInfoOriginInfoOneOf {
|
|
@@ -3373,6 +3399,18 @@ interface AutomationInfoOriginInfoOneOf {
|
|
|
3373
3399
|
/** Preinstalled info */
|
|
3374
3400
|
preinstalledInfo?: PreinstalledOrigin$1;
|
|
3375
3401
|
}
|
|
3402
|
+
interface AutomationInfoTriggerInfo {
|
|
3403
|
+
/** Trigger app ID */
|
|
3404
|
+
appId?: string;
|
|
3405
|
+
/** Trigger key */
|
|
3406
|
+
triggerKey?: string;
|
|
3407
|
+
}
|
|
3408
|
+
interface AppDefinedActionInfo {
|
|
3409
|
+
/** Action app ID */
|
|
3410
|
+
appId?: string;
|
|
3411
|
+
/** Action key */
|
|
3412
|
+
actionKey?: string;
|
|
3413
|
+
}
|
|
3376
3414
|
declare enum ActivationActionStatusChangedStatus {
|
|
3377
3415
|
UNKNOWN_ACTION_ACTIVATION_STATUS = "UNKNOWN_ACTION_ACTIVATION_STATUS",
|
|
3378
3416
|
/**
|
|
@@ -3411,7 +3449,7 @@ interface StartedStatusInfoTypeInfoOneOf {
|
|
|
3411
3449
|
}
|
|
3412
3450
|
interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
3413
3451
|
/** APP DEFINED action additional info */
|
|
3414
|
-
appDefinedActionInfo?:
|
|
3452
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3415
3453
|
/** Condition action additional info */
|
|
3416
3454
|
conditionActionInfo?: ConditionActionInfo;
|
|
3417
3455
|
/** Rate limit action additional info */
|
|
@@ -3422,7 +3460,7 @@ interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
|
3422
3460
|
/** @oneof */
|
|
3423
3461
|
interface EndedStatusInfoTypeInfoOneOf {
|
|
3424
3462
|
/** APP DEFINED action additional info */
|
|
3425
|
-
appDefinedActionInfo?:
|
|
3463
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3426
3464
|
/** Condition action additional info */
|
|
3427
3465
|
conditionActionInfo?: ConditionActionInfo;
|
|
3428
3466
|
/** Rate limit action additional info */
|
|
@@ -3989,6 +4027,7 @@ type context$1_ActionStatus = ActionStatus;
|
|
|
3989
4027
|
type context$1_ActionsData = ActionsData;
|
|
3990
4028
|
type context$1_Activation = Activation;
|
|
3991
4029
|
type context$1_ActivationActionStatusChanged = ActivationActionStatusChanged;
|
|
4030
|
+
type context$1_ActivationActionStatusChangedInfoOneOf = ActivationActionStatusChangedInfoOneOf;
|
|
3992
4031
|
type context$1_ActivationActionStatusChangedStatus = ActivationActionStatusChangedStatus;
|
|
3993
4032
|
declare const context$1_ActivationActionStatusChangedStatus: typeof ActivationActionStatusChangedStatus;
|
|
3994
4033
|
type context$1_ActivationActionStatusChangedStatusInfoOneOf = ActivationActionStatusChangedStatusInfoOneOf;
|
|
@@ -4016,6 +4055,7 @@ declare const context$1_AutomationConfigurationStatus: typeof AutomationConfigur
|
|
|
4016
4055
|
type context$1_AutomationIdentifier = AutomationIdentifier;
|
|
4017
4056
|
type context$1_AutomationInfo = AutomationInfo;
|
|
4018
4057
|
type context$1_AutomationInfoOriginInfoOneOf = AutomationInfoOriginInfoOneOf;
|
|
4058
|
+
type context$1_AutomationInfoTriggerInfo = AutomationInfoTriggerInfo;
|
|
4019
4059
|
type context$1_BatchActivationRequest = BatchActivationRequest;
|
|
4020
4060
|
type context$1_BlockType = BlockType;
|
|
4021
4061
|
declare const context$1_BlockType: typeof BlockType;
|
|
@@ -4044,6 +4084,7 @@ type context$1_DelayActionInfo = DelayActionInfo;
|
|
|
4044
4084
|
type context$1_DelayHelper = DelayHelper;
|
|
4045
4085
|
type context$1_DelayOfOneOf = DelayOfOneOf;
|
|
4046
4086
|
type context$1_EndedStatusInfo = EndedStatusInfo;
|
|
4087
|
+
type context$1_EndedStatusInfoAppDefinedActionInfo = EndedStatusInfoAppDefinedActionInfo;
|
|
4047
4088
|
type context$1_EndedStatusInfoTypeInfoOneOf = EndedStatusInfoTypeInfoOneOf;
|
|
4048
4089
|
type context$1_EventInfo = EventInfo;
|
|
4049
4090
|
type context$1_ExecuteFromActionRequest = ExecuteFromActionRequest;
|
|
@@ -4109,7 +4150,7 @@ declare const context$1_cancelEvent: typeof cancelEvent;
|
|
|
4109
4150
|
declare const context$1_onActivationStatusChanged: typeof onActivationStatusChanged;
|
|
4110
4151
|
declare const context$1_reportEvent: typeof reportEvent;
|
|
4111
4152
|
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 };
|
|
4153
|
+
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
4154
|
}
|
|
4114
4155
|
|
|
4115
4156
|
interface Automation extends AutomationOriginInfoOneOf {
|
|
@@ -5157,6 +5198,21 @@ interface SiteMarkedAsTemplate {
|
|
|
5157
5198
|
}
|
|
5158
5199
|
interface SiteMarkedAsWixSite {
|
|
5159
5200
|
}
|
|
5201
|
+
/**
|
|
5202
|
+
* Represents a service provisioned a site.
|
|
5203
|
+
*
|
|
5204
|
+
* Note on `origin_instance_id`:
|
|
5205
|
+
* There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
|
|
5206
|
+
* This is because of the following scenario:
|
|
5207
|
+
*
|
|
5208
|
+
* Imagine you have a template where a third-party application (TPA) includes some stub data,
|
|
5209
|
+
* such as a product catalog. When you create a site from this template, you inherit this
|
|
5210
|
+
* default product catalog. However, if the template's product catalog is modified,
|
|
5211
|
+
* your site will retain the catalog as it was at the time of site creation. This ensures that
|
|
5212
|
+
* your site remains consistent with what you initially received and does not include any
|
|
5213
|
+
* changes made to the original template afterward.
|
|
5214
|
+
* To ensure this, the TPA on the template gets a new instance_id.
|
|
5215
|
+
*/
|
|
5160
5216
|
interface ServiceProvisioned {
|
|
5161
5217
|
/** Either UUID or EmbeddedServiceType. */
|
|
5162
5218
|
appDefId?: string;
|
|
@@ -1147,6 +1147,21 @@ interface SiteMarkedAsTemplate$1 {
|
|
|
1147
1147
|
}
|
|
1148
1148
|
interface SiteMarkedAsWixSite$1 {
|
|
1149
1149
|
}
|
|
1150
|
+
/**
|
|
1151
|
+
* Represents a service provisioned a site.
|
|
1152
|
+
*
|
|
1153
|
+
* Note on `origin_instance_id`:
|
|
1154
|
+
* There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
|
|
1155
|
+
* This is because of the following scenario:
|
|
1156
|
+
*
|
|
1157
|
+
* Imagine you have a template where a third-party application (TPA) includes some stub data,
|
|
1158
|
+
* such as a product catalog. When you create a site from this template, you inherit this
|
|
1159
|
+
* default product catalog. However, if the template's product catalog is modified,
|
|
1160
|
+
* your site will retain the catalog as it was at the time of site creation. This ensures that
|
|
1161
|
+
* your site remains consistent with what you initially received and does not include any
|
|
1162
|
+
* changes made to the original template afterward.
|
|
1163
|
+
* To ensure this, the TPA on the template gets a new instance_id.
|
|
1164
|
+
*/
|
|
1150
1165
|
interface ServiceProvisioned$1 {
|
|
1151
1166
|
/** Either UUID or EmbeddedServiceType. */
|
|
1152
1167
|
appDefId?: string;
|
|
@@ -3295,7 +3310,9 @@ interface BatchActivationRequest {
|
|
|
3295
3310
|
}
|
|
3296
3311
|
interface Empty$1 {
|
|
3297
3312
|
}
|
|
3298
|
-
interface ActivationActionStatusChanged extends ActivationActionStatusChangedStatusInfoOneOf {
|
|
3313
|
+
interface ActivationActionStatusChanged extends ActivationActionStatusChangedInfoOneOf, ActivationActionStatusChangedStatusInfoOneOf {
|
|
3314
|
+
/** App defined action info */
|
|
3315
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3299
3316
|
/** Started status information */
|
|
3300
3317
|
startedInfo?: StartedStatusInfo;
|
|
3301
3318
|
/** Ended status information */
|
|
@@ -3310,12 +3327,19 @@ interface ActivationActionStatusChanged extends ActivationActionStatusChangedSta
|
|
|
3310
3327
|
automationInfo?: AutomationInfo;
|
|
3311
3328
|
/** Action type */
|
|
3312
3329
|
type?: Type$1;
|
|
3330
|
+
/** External entity ID */
|
|
3331
|
+
externalEntityId?: string | null;
|
|
3313
3332
|
/** Event date */
|
|
3314
3333
|
statusChangedDate?: Date | null;
|
|
3315
3334
|
/** Action activation status */
|
|
3316
3335
|
status?: ActivationActionStatusChangedStatus;
|
|
3317
3336
|
}
|
|
3318
3337
|
/** @oneof */
|
|
3338
|
+
interface ActivationActionStatusChangedInfoOneOf {
|
|
3339
|
+
/** App defined action info */
|
|
3340
|
+
appDefinedInfo?: AppDefinedActionInfo;
|
|
3341
|
+
}
|
|
3342
|
+
/** @oneof */
|
|
3319
3343
|
interface ActivationActionStatusChangedStatusInfoOneOf {
|
|
3320
3344
|
/** Started status information */
|
|
3321
3345
|
startedInfo?: StartedStatusInfo;
|
|
@@ -3338,7 +3362,7 @@ interface ExpressionEvaluationResult {
|
|
|
3338
3362
|
/** Indicates if there was an error in the evaluation process */
|
|
3339
3363
|
error?: boolean;
|
|
3340
3364
|
}
|
|
3341
|
-
interface
|
|
3365
|
+
interface EndedStatusInfoAppDefinedActionInfo {
|
|
3342
3366
|
/** Output returned by the action implementer. */
|
|
3343
3367
|
output?: Record<string, any> | null;
|
|
3344
3368
|
}
|
|
@@ -3365,6 +3389,8 @@ interface AutomationInfo extends AutomationInfoOriginInfoOneOf {
|
|
|
3365
3389
|
_id?: string;
|
|
3366
3390
|
/** Origin type */
|
|
3367
3391
|
origin?: Origin$1;
|
|
3392
|
+
/** Trigger info */
|
|
3393
|
+
triggerInfo?: AutomationInfoTriggerInfo;
|
|
3368
3394
|
}
|
|
3369
3395
|
/** @oneof */
|
|
3370
3396
|
interface AutomationInfoOriginInfoOneOf {
|
|
@@ -3373,6 +3399,18 @@ interface AutomationInfoOriginInfoOneOf {
|
|
|
3373
3399
|
/** Preinstalled info */
|
|
3374
3400
|
preinstalledInfo?: PreinstalledOrigin$1;
|
|
3375
3401
|
}
|
|
3402
|
+
interface AutomationInfoTriggerInfo {
|
|
3403
|
+
/** Trigger app ID */
|
|
3404
|
+
appId?: string;
|
|
3405
|
+
/** Trigger key */
|
|
3406
|
+
triggerKey?: string;
|
|
3407
|
+
}
|
|
3408
|
+
interface AppDefinedActionInfo {
|
|
3409
|
+
/** Action app ID */
|
|
3410
|
+
appId?: string;
|
|
3411
|
+
/** Action key */
|
|
3412
|
+
actionKey?: string;
|
|
3413
|
+
}
|
|
3376
3414
|
declare enum ActivationActionStatusChangedStatus {
|
|
3377
3415
|
UNKNOWN_ACTION_ACTIVATION_STATUS = "UNKNOWN_ACTION_ACTIVATION_STATUS",
|
|
3378
3416
|
/**
|
|
@@ -3411,7 +3449,7 @@ interface StartedStatusInfoTypeInfoOneOf {
|
|
|
3411
3449
|
}
|
|
3412
3450
|
interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
3413
3451
|
/** APP DEFINED action additional info */
|
|
3414
|
-
appDefinedActionInfo?:
|
|
3452
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3415
3453
|
/** Condition action additional info */
|
|
3416
3454
|
conditionActionInfo?: ConditionActionInfo;
|
|
3417
3455
|
/** Rate limit action additional info */
|
|
@@ -3422,7 +3460,7 @@ interface EndedStatusInfo extends EndedStatusInfoTypeInfoOneOf {
|
|
|
3422
3460
|
/** @oneof */
|
|
3423
3461
|
interface EndedStatusInfoTypeInfoOneOf {
|
|
3424
3462
|
/** APP DEFINED action additional info */
|
|
3425
|
-
appDefinedActionInfo?:
|
|
3463
|
+
appDefinedActionInfo?: EndedStatusInfoAppDefinedActionInfo;
|
|
3426
3464
|
/** Condition action additional info */
|
|
3427
3465
|
conditionActionInfo?: ConditionActionInfo;
|
|
3428
3466
|
/** Rate limit action additional info */
|
|
@@ -3989,6 +4027,7 @@ type index_d$1_ActionStatus = ActionStatus;
|
|
|
3989
4027
|
type index_d$1_ActionsData = ActionsData;
|
|
3990
4028
|
type index_d$1_Activation = Activation;
|
|
3991
4029
|
type index_d$1_ActivationActionStatusChanged = ActivationActionStatusChanged;
|
|
4030
|
+
type index_d$1_ActivationActionStatusChangedInfoOneOf = ActivationActionStatusChangedInfoOneOf;
|
|
3992
4031
|
type index_d$1_ActivationActionStatusChangedStatus = ActivationActionStatusChangedStatus;
|
|
3993
4032
|
declare const index_d$1_ActivationActionStatusChangedStatus: typeof ActivationActionStatusChangedStatus;
|
|
3994
4033
|
type index_d$1_ActivationActionStatusChangedStatusInfoOneOf = ActivationActionStatusChangedStatusInfoOneOf;
|
|
@@ -4016,6 +4055,7 @@ declare const index_d$1_AutomationConfigurationStatus: typeof AutomationConfigur
|
|
|
4016
4055
|
type index_d$1_AutomationIdentifier = AutomationIdentifier;
|
|
4017
4056
|
type index_d$1_AutomationInfo = AutomationInfo;
|
|
4018
4057
|
type index_d$1_AutomationInfoOriginInfoOneOf = AutomationInfoOriginInfoOneOf;
|
|
4058
|
+
type index_d$1_AutomationInfoTriggerInfo = AutomationInfoTriggerInfo;
|
|
4019
4059
|
type index_d$1_BatchActivationRequest = BatchActivationRequest;
|
|
4020
4060
|
type index_d$1_BlockType = BlockType;
|
|
4021
4061
|
declare const index_d$1_BlockType: typeof BlockType;
|
|
@@ -4044,6 +4084,7 @@ type index_d$1_DelayActionInfo = DelayActionInfo;
|
|
|
4044
4084
|
type index_d$1_DelayHelper = DelayHelper;
|
|
4045
4085
|
type index_d$1_DelayOfOneOf = DelayOfOneOf;
|
|
4046
4086
|
type index_d$1_EndedStatusInfo = EndedStatusInfo;
|
|
4087
|
+
type index_d$1_EndedStatusInfoAppDefinedActionInfo = EndedStatusInfoAppDefinedActionInfo;
|
|
4047
4088
|
type index_d$1_EndedStatusInfoTypeInfoOneOf = EndedStatusInfoTypeInfoOneOf;
|
|
4048
4089
|
type index_d$1_EventInfo = EventInfo;
|
|
4049
4090
|
type index_d$1_ExecuteFromActionRequest = ExecuteFromActionRequest;
|
|
@@ -4109,7 +4150,7 @@ declare const index_d$1_cancelEvent: typeof cancelEvent;
|
|
|
4109
4150
|
declare const index_d$1_onActivationStatusChanged: typeof onActivationStatusChanged;
|
|
4110
4151
|
declare const index_d$1_reportEvent: typeof reportEvent;
|
|
4111
4152
|
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 };
|
|
4153
|
+
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
4154
|
}
|
|
4114
4155
|
|
|
4115
4156
|
interface Automation extends AutomationOriginInfoOneOf {
|
|
@@ -5157,6 +5198,21 @@ interface SiteMarkedAsTemplate {
|
|
|
5157
5198
|
}
|
|
5158
5199
|
interface SiteMarkedAsWixSite {
|
|
5159
5200
|
}
|
|
5201
|
+
/**
|
|
5202
|
+
* Represents a service provisioned a site.
|
|
5203
|
+
*
|
|
5204
|
+
* Note on `origin_instance_id`:
|
|
5205
|
+
* There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
|
|
5206
|
+
* This is because of the following scenario:
|
|
5207
|
+
*
|
|
5208
|
+
* Imagine you have a template where a third-party application (TPA) includes some stub data,
|
|
5209
|
+
* such as a product catalog. When you create a site from this template, you inherit this
|
|
5210
|
+
* default product catalog. However, if the template's product catalog is modified,
|
|
5211
|
+
* your site will retain the catalog as it was at the time of site creation. This ensures that
|
|
5212
|
+
* your site remains consistent with what you initially received and does not include any
|
|
5213
|
+
* changes made to the original template afterward.
|
|
5214
|
+
* To ensure this, the TPA on the template gets a new instance_id.
|
|
5215
|
+
*/
|
|
5160
5216
|
interface ServiceProvisioned {
|
|
5161
5217
|
/** Either UUID or EmbeddedServiceType. */
|
|
5162
5218
|
appDefId?: string;
|