@wix/automations 1.0.48 → 1.0.49
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 +5 -5
- package/type-bundles/context.bundle.d.ts +303 -48
- package/type-bundles/index.bundle.d.ts +303 -48
- package/type-bundles/meta.bundle.d.ts +506 -17
|
@@ -512,12 +512,12 @@ interface Automation$2 {
|
|
|
512
512
|
* Created date
|
|
513
513
|
* @readonly
|
|
514
514
|
*/
|
|
515
|
-
_createdDate?: Date;
|
|
515
|
+
_createdDate?: Date | null;
|
|
516
516
|
/**
|
|
517
517
|
* Updated date
|
|
518
518
|
* @readonly
|
|
519
519
|
*/
|
|
520
|
-
_updatedDate?: Date;
|
|
520
|
+
_updatedDate?: Date | null;
|
|
521
521
|
/**
|
|
522
522
|
* ESB Configuration ID
|
|
523
523
|
* @readonly
|
|
@@ -856,7 +856,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
856
856
|
/** ID of the entity associated with the event. */
|
|
857
857
|
entityId?: string;
|
|
858
858
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
859
|
-
eventTime?: Date;
|
|
859
|
+
eventTime?: Date | null;
|
|
860
860
|
/**
|
|
861
861
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
862
862
|
* (for example, GDPR).
|
|
@@ -885,7 +885,7 @@ interface EntityCreatedEvent$2 {
|
|
|
885
885
|
entity?: string;
|
|
886
886
|
}
|
|
887
887
|
interface RestoreInfo$2 {
|
|
888
|
-
deletedDate?: Date;
|
|
888
|
+
deletedDate?: Date | null;
|
|
889
889
|
}
|
|
890
890
|
interface EntityUpdatedEvent$2 {
|
|
891
891
|
/**
|
|
@@ -1111,7 +1111,7 @@ interface SiteDeleted$1 {
|
|
|
1111
1111
|
}
|
|
1112
1112
|
interface DeleteContext$1 {
|
|
1113
1113
|
/** When the meta site was deleted. */
|
|
1114
|
-
dateDeleted?: Date;
|
|
1114
|
+
dateDeleted?: Date | null;
|
|
1115
1115
|
/** A status. */
|
|
1116
1116
|
deleteStatus?: DeleteStatus$1;
|
|
1117
1117
|
/** A reason (flow). */
|
|
@@ -1523,8 +1523,8 @@ interface ActivationReport {
|
|
|
1523
1523
|
activationId?: string;
|
|
1524
1524
|
requestId?: string;
|
|
1525
1525
|
status?: ActivationStatus$1;
|
|
1526
|
-
creationDate?: Date;
|
|
1527
|
-
updateDate?: Date;
|
|
1526
|
+
creationDate?: Date | null;
|
|
1527
|
+
updateDate?: Date | null;
|
|
1528
1528
|
/** will be populated when status = FAILED */
|
|
1529
1529
|
error?: string | null;
|
|
1530
1530
|
}
|
|
@@ -1616,7 +1616,7 @@ interface Quota$1 {
|
|
|
1616
1616
|
* Quota renewal date in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
|
|
1617
1617
|
* For example, 10 July 2020 at 15:00 is written as `2020-07-10 15:00:00.000`.
|
|
1618
1618
|
*/
|
|
1619
|
-
renewalDate?: Date;
|
|
1619
|
+
renewalDate?: Date | null;
|
|
1620
1620
|
/** The user's current quota usage. */
|
|
1621
1621
|
currentUsage?: string;
|
|
1622
1622
|
/** Quota limit data. */
|
|
@@ -1860,7 +1860,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
|
1860
1860
|
/** ID of the entity associated with the event. */
|
|
1861
1861
|
entityId?: string;
|
|
1862
1862
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1863
|
-
eventTime?: Date;
|
|
1863
|
+
eventTime?: Date | null;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
1866
1866
|
* (for example, GDPR).
|
|
@@ -1936,12 +1936,12 @@ interface UpdateAutomation$1 {
|
|
|
1936
1936
|
* Created date
|
|
1937
1937
|
* @readonly
|
|
1938
1938
|
*/
|
|
1939
|
-
_createdDate?: Date;
|
|
1939
|
+
_createdDate?: Date | null;
|
|
1940
1940
|
/**
|
|
1941
1941
|
* Updated date
|
|
1942
1942
|
* @readonly
|
|
1943
1943
|
*/
|
|
1944
|
-
_updatedDate?: Date;
|
|
1944
|
+
_updatedDate?: Date | null;
|
|
1945
1945
|
/**
|
|
1946
1946
|
* ESB Configuration ID
|
|
1947
1947
|
* @readonly
|
|
@@ -1990,12 +1990,12 @@ interface MigrationUpdateAutomation {
|
|
|
1990
1990
|
* Created date
|
|
1991
1991
|
* @readonly
|
|
1992
1992
|
*/
|
|
1993
|
-
_createdDate?: Date;
|
|
1993
|
+
_createdDate?: Date | null;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* Updated date
|
|
1996
1996
|
* @readonly
|
|
1997
1997
|
*/
|
|
1998
|
-
_updatedDate?: Date;
|
|
1998
|
+
_updatedDate?: Date | null;
|
|
1999
1999
|
/**
|
|
2000
2000
|
* ESB Configuration ID
|
|
2001
2001
|
* @readonly
|
|
@@ -2345,7 +2345,7 @@ interface Automation$1 extends AutomationOriginInfoOneOf$1 {
|
|
|
2345
2345
|
* Date and time the automation was created.
|
|
2346
2346
|
* @readonly
|
|
2347
2347
|
*/
|
|
2348
|
-
_createdDate?: Date;
|
|
2348
|
+
_createdDate?: Date | null;
|
|
2349
2349
|
/**
|
|
2350
2350
|
* The entity that last updated the automation.
|
|
2351
2351
|
* @readonly
|
|
@@ -2355,7 +2355,7 @@ interface Automation$1 extends AutomationOriginInfoOneOf$1 {
|
|
|
2355
2355
|
* Date and time the automation was last updated.
|
|
2356
2356
|
* @readonly
|
|
2357
2357
|
*/
|
|
2358
|
-
_updatedDate?: Date;
|
|
2358
|
+
_updatedDate?: Date | null;
|
|
2359
2359
|
/** Automation name that is displayed on the user's site. */
|
|
2360
2360
|
name?: string;
|
|
2361
2361
|
/** Automation description. */
|
|
@@ -2698,7 +2698,7 @@ interface ActivationStatusChanged extends ActivationStatusChangedStatusInfoOneOf
|
|
|
2698
2698
|
/** Activation status */
|
|
2699
2699
|
status?: ActivationStatusChangedStatus;
|
|
2700
2700
|
/** Change event created date */
|
|
2701
|
-
statusChangedDate?: Date;
|
|
2701
|
+
statusChangedDate?: Date | null;
|
|
2702
2702
|
}
|
|
2703
2703
|
/** @oneof */
|
|
2704
2704
|
interface ActivationStatusChangedStatusInfoOneOf {
|
|
@@ -2763,7 +2763,7 @@ interface ScheduledStatusInfo {
|
|
|
2763
2763
|
/** Schedule identifier */
|
|
2764
2764
|
scheduleId?: string;
|
|
2765
2765
|
/** Indicating when the activation should start */
|
|
2766
|
-
date?: Date;
|
|
2766
|
+
date?: Date | null;
|
|
2767
2767
|
}
|
|
2768
2768
|
interface CancelledStatusInfo {
|
|
2769
2769
|
/** Cancellation reason */
|
|
@@ -2799,11 +2799,11 @@ interface Schedule {
|
|
|
2799
2799
|
/** @readonly */
|
|
2800
2800
|
scheduleStatus?: ScheduleStatus;
|
|
2801
2801
|
/** @readonly */
|
|
2802
|
-
scheduleDate?: Date;
|
|
2802
|
+
scheduleDate?: Date | null;
|
|
2803
2803
|
/** @readonly */
|
|
2804
|
-
_createdDate?: Date;
|
|
2804
|
+
_createdDate?: Date | null;
|
|
2805
2805
|
/** @readonly */
|
|
2806
|
-
_updatedDate?: Date;
|
|
2806
|
+
_updatedDate?: Date | null;
|
|
2807
2807
|
overrideable?: boolean | null;
|
|
2808
2808
|
triggerInfo?: TriggerInfo;
|
|
2809
2809
|
automation?: Automation$1;
|
|
@@ -2905,7 +2905,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
2905
2905
|
/** ID of the entity associated with the event. */
|
|
2906
2906
|
entityId?: string;
|
|
2907
2907
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2908
|
-
eventTime?: Date;
|
|
2908
|
+
eventTime?: Date | null;
|
|
2909
2909
|
/**
|
|
2910
2910
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2911
2911
|
* (for example, GDPR).
|
|
@@ -2934,7 +2934,7 @@ interface EntityCreatedEvent$1 {
|
|
|
2934
2934
|
entity?: string;
|
|
2935
2935
|
}
|
|
2936
2936
|
interface RestoreInfo$1 {
|
|
2937
|
-
deletedDate?: Date;
|
|
2937
|
+
deletedDate?: Date | null;
|
|
2938
2938
|
}
|
|
2939
2939
|
interface EntityUpdatedEvent$1 {
|
|
2940
2940
|
/**
|
|
@@ -3244,7 +3244,7 @@ interface ActivationActionStatusChanged extends ActivationActionStatusChangedSta
|
|
|
3244
3244
|
/** Action type */
|
|
3245
3245
|
type?: Type$1;
|
|
3246
3246
|
/** Event date */
|
|
3247
|
-
statusChangedDate?: Date;
|
|
3247
|
+
statusChangedDate?: Date | null;
|
|
3248
3248
|
/** Action activation status */
|
|
3249
3249
|
status?: ActivationActionStatusChangedStatus;
|
|
3250
3250
|
}
|
|
@@ -3263,7 +3263,7 @@ interface StartedStatusInfoAppDefinedActionInfo {
|
|
|
3263
3263
|
}
|
|
3264
3264
|
interface DelayActionInfo {
|
|
3265
3265
|
/** Indicates when this action becomes completed and the activation will move to the post actions */
|
|
3266
|
-
date?: Date;
|
|
3266
|
+
date?: Date | null;
|
|
3267
3267
|
}
|
|
3268
3268
|
interface ExpressionEvaluationResult {
|
|
3269
3269
|
/** Indicates if the expression was evaluated to true or false */
|
|
@@ -3367,7 +3367,7 @@ interface ActivationResumeAfterDelay {
|
|
|
3367
3367
|
/** Activation schedule identifier */
|
|
3368
3368
|
scheduleId?: string;
|
|
3369
3369
|
/** Activation schedule due date */
|
|
3370
|
-
scheduleDate?: Date;
|
|
3370
|
+
scheduleDate?: Date | null;
|
|
3371
3371
|
/** Activation payload */
|
|
3372
3372
|
payload?: Record<string, any> | null;
|
|
3373
3373
|
/** Activation Automation */
|
|
@@ -3419,9 +3419,9 @@ interface ActivationScheduleRequested {
|
|
|
3419
3419
|
/** Activation identifier */
|
|
3420
3420
|
_id?: string;
|
|
3421
3421
|
/** Activation schedule request date */
|
|
3422
|
-
requestedDate?: Date;
|
|
3422
|
+
requestedDate?: Date | null;
|
|
3423
3423
|
/** Activation schedule due date */
|
|
3424
|
-
scheduleDate?: Date;
|
|
3424
|
+
scheduleDate?: Date | null;
|
|
3425
3425
|
/** Activation payload */
|
|
3426
3426
|
payload?: Record<string, any> | null;
|
|
3427
3427
|
/** Activation Automation */
|
|
@@ -3677,7 +3677,7 @@ interface ActivationScheduleCompleted {
|
|
|
3677
3677
|
/** Activation schedule identifier */
|
|
3678
3678
|
scheduleId?: string;
|
|
3679
3679
|
/** Activation schedule due date */
|
|
3680
|
-
scheduleDate?: Date;
|
|
3680
|
+
scheduleDate?: Date | null;
|
|
3681
3681
|
/** Activation payload */
|
|
3682
3682
|
payload?: Record<string, any> | null;
|
|
3683
3683
|
/** Activation Automation */
|
|
@@ -3755,7 +3755,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
3755
3755
|
/** ID of the entity associated with the event. */
|
|
3756
3756
|
entityId?: string;
|
|
3757
3757
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3758
|
-
eventTime?: Date;
|
|
3758
|
+
eventTime?: Date | null;
|
|
3759
3759
|
/**
|
|
3760
3760
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3761
3761
|
* (for example, GDPR).
|
|
@@ -4049,7 +4049,7 @@ interface Automation extends AutomationOriginInfoOneOf {
|
|
|
4049
4049
|
* Date and time the automation was created.
|
|
4050
4050
|
* @readonly
|
|
4051
4051
|
*/
|
|
4052
|
-
_createdDate?: Date;
|
|
4052
|
+
_createdDate?: Date | null;
|
|
4053
4053
|
/**
|
|
4054
4054
|
* The entity that last updated the automation.
|
|
4055
4055
|
* @readonly
|
|
@@ -4059,7 +4059,7 @@ interface Automation extends AutomationOriginInfoOneOf {
|
|
|
4059
4059
|
* Date and time the automation was last updated.
|
|
4060
4060
|
* @readonly
|
|
4061
4061
|
*/
|
|
4062
|
-
_updatedDate?: Date;
|
|
4062
|
+
_updatedDate?: Date | null;
|
|
4063
4063
|
/** Automation name that is displayed on the user's site. */
|
|
4064
4064
|
name?: string;
|
|
4065
4065
|
/** Automation description. */
|
|
@@ -4408,7 +4408,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
4408
4408
|
/** ID of the entity associated with the event. */
|
|
4409
4409
|
entityId?: string;
|
|
4410
4410
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4411
|
-
eventTime?: Date;
|
|
4411
|
+
eventTime?: Date | null;
|
|
4412
4412
|
/**
|
|
4413
4413
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
4414
4414
|
* (for example, GDPR).
|
|
@@ -4437,7 +4437,7 @@ interface EntityCreatedEvent {
|
|
|
4437
4437
|
entity?: string;
|
|
4438
4438
|
}
|
|
4439
4439
|
interface RestoreInfo {
|
|
4440
|
-
deletedDate?: Date;
|
|
4440
|
+
deletedDate?: Date | null;
|
|
4441
4441
|
}
|
|
4442
4442
|
interface EntityUpdatedEvent {
|
|
4443
4443
|
/**
|
|
@@ -4568,7 +4568,7 @@ interface BulkActionMetadata {
|
|
|
4568
4568
|
}
|
|
4569
4569
|
interface CreatePreinstalledAutomationRequest {
|
|
4570
4570
|
/** Preinstalled automation to be created. */
|
|
4571
|
-
automation
|
|
4571
|
+
automation: Automation;
|
|
4572
4572
|
/** Optional - hide the created automation behind a spec */
|
|
4573
4573
|
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4574
4574
|
/**
|
|
@@ -4603,7 +4603,7 @@ interface CreatePreinstalledAutomationResponse {
|
|
|
4603
4603
|
}
|
|
4604
4604
|
interface UpdatePreinstalledAutomationRequest {
|
|
4605
4605
|
/** Preinstalled automation to update. */
|
|
4606
|
-
automation
|
|
4606
|
+
automation: Automation;
|
|
4607
4607
|
/** Optional - hide the updated automation behind a spec */
|
|
4608
4608
|
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4609
4609
|
}
|
|
@@ -4613,7 +4613,7 @@ interface UpdatePreinstalledAutomationResponse {
|
|
|
4613
4613
|
}
|
|
4614
4614
|
interface DeletePreinstalledAutomationRequest {
|
|
4615
4615
|
/** Preinstalled Component Id */
|
|
4616
|
-
componentId
|
|
4616
|
+
componentId: string;
|
|
4617
4617
|
/**
|
|
4618
4618
|
* Optional - makes the deletion operation gradual
|
|
4619
4619
|
* The automation will not return if the variant returns for the site
|
|
@@ -4993,7 +4993,7 @@ interface SiteDeleted {
|
|
|
4993
4993
|
}
|
|
4994
4994
|
interface DeleteContext {
|
|
4995
4995
|
/** When the meta site was deleted. */
|
|
4996
|
-
dateDeleted?: Date;
|
|
4996
|
+
dateDeleted?: Date | null;
|
|
4997
4997
|
/** A status. */
|
|
4998
4998
|
deleteStatus?: DeleteStatus;
|
|
4999
4999
|
/** A reason (flow). */
|
|
@@ -5079,7 +5079,7 @@ interface CreateDraftAutomationResponse {
|
|
|
5079
5079
|
}
|
|
5080
5080
|
interface GetOrCreateDraftAutomationRequest {
|
|
5081
5081
|
/** Original automation id */
|
|
5082
|
-
originalAutomationId
|
|
5082
|
+
originalAutomationId: string;
|
|
5083
5083
|
}
|
|
5084
5084
|
interface GetOrCreateDraftAutomationResponse {
|
|
5085
5085
|
/** Draft automation. */
|
|
@@ -5087,7 +5087,7 @@ interface GetOrCreateDraftAutomationResponse {
|
|
|
5087
5087
|
}
|
|
5088
5088
|
interface UpdateDraftAutomationRequest {
|
|
5089
5089
|
/** Automation to be updated, may be partial. */
|
|
5090
|
-
automation
|
|
5090
|
+
automation: Automation;
|
|
5091
5091
|
}
|
|
5092
5092
|
interface UpdateDraftAutomationResponse {
|
|
5093
5093
|
/** Updated draft automation. */
|
|
@@ -5115,13 +5115,13 @@ interface DraftsInfo {
|
|
|
5115
5115
|
}
|
|
5116
5116
|
interface DeleteDraftAutomationRequest {
|
|
5117
5117
|
/** Id of the draft automation to delete. */
|
|
5118
|
-
automationId
|
|
5118
|
+
automationId: string;
|
|
5119
5119
|
}
|
|
5120
5120
|
interface DeleteDraftAutomationResponse {
|
|
5121
5121
|
}
|
|
5122
5122
|
interface PublishDraftAutomationRequest {
|
|
5123
5123
|
/** Id of the draft automation to publish. */
|
|
5124
|
-
automationId
|
|
5124
|
+
automationId: string;
|
|
5125
5125
|
}
|
|
5126
5126
|
interface PublishDraftAutomationResponse {
|
|
5127
5127
|
/** Updated automation after publishing the draft */
|
|
@@ -5295,9 +5295,9 @@ declare enum AutomationErrorType {
|
|
|
5295
5295
|
}
|
|
5296
5296
|
interface GetAutomationActionSchemaRequest {
|
|
5297
5297
|
/** Automation ID */
|
|
5298
|
-
automationId
|
|
5298
|
+
automationId: string;
|
|
5299
5299
|
/** Action ID */
|
|
5300
|
-
actionId
|
|
5300
|
+
actionId: string;
|
|
5301
5301
|
}
|
|
5302
5302
|
interface GetAutomationActionSchemaResponse {
|
|
5303
5303
|
/** The accumulated payload schema for an action. */
|
|
@@ -5361,7 +5361,7 @@ interface Quota {
|
|
|
5361
5361
|
* Quota renewal date in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
|
|
5362
5362
|
* For example, 10 July 2020 at 15:00 is written as `2020-07-10 15:00:00.000`.
|
|
5363
5363
|
*/
|
|
5364
|
-
renewalDate?: Date;
|
|
5364
|
+
renewalDate?: Date | null;
|
|
5365
5365
|
/** The user's current quota usage. */
|
|
5366
5366
|
currentUsage?: string;
|
|
5367
5367
|
/** Quota limit data. */
|
|
@@ -5477,12 +5477,36 @@ interface BulkDeleteAutomationsResponseNonNullableFields {
|
|
|
5477
5477
|
results: BulkDeleteResultNonNullableFields[];
|
|
5478
5478
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
5479
5479
|
}
|
|
5480
|
+
interface CreatePreinstalledAutomationResponseNonNullableFields {
|
|
5481
|
+
automation?: AutomationNonNullableFields;
|
|
5482
|
+
}
|
|
5483
|
+
interface UpdatePreinstalledAutomationResponseNonNullableFields {
|
|
5484
|
+
automation?: AutomationNonNullableFields;
|
|
5485
|
+
}
|
|
5486
|
+
interface QueryPreinstalledAutomationsForAppResponseNonNullableFields {
|
|
5487
|
+
automations: AutomationNonNullableFields[];
|
|
5488
|
+
}
|
|
5480
5489
|
interface QueryAutomationsResponseNonNullableFields {
|
|
5481
5490
|
automations: AutomationNonNullableFields[];
|
|
5482
5491
|
}
|
|
5483
5492
|
interface CopyAutomationResponseNonNullableFields {
|
|
5484
5493
|
automation?: AutomationNonNullableFields;
|
|
5485
5494
|
}
|
|
5495
|
+
interface CreateDraftAutomationResponseNonNullableFields {
|
|
5496
|
+
automation?: AutomationNonNullableFields;
|
|
5497
|
+
}
|
|
5498
|
+
interface GetOrCreateDraftAutomationResponseNonNullableFields {
|
|
5499
|
+
automation?: AutomationNonNullableFields;
|
|
5500
|
+
}
|
|
5501
|
+
interface UpdateDraftAutomationResponseNonNullableFields {
|
|
5502
|
+
automation?: AutomationNonNullableFields;
|
|
5503
|
+
}
|
|
5504
|
+
interface QueryAutomationsWithDraftsResponseNonNullableFields {
|
|
5505
|
+
automations: AutomationNonNullableFields[];
|
|
5506
|
+
}
|
|
5507
|
+
interface PublishDraftAutomationResponseNonNullableFields {
|
|
5508
|
+
automation?: AutomationNonNullableFields;
|
|
5509
|
+
}
|
|
5486
5510
|
interface TriggerConfigurationErrorNonNullableFields {
|
|
5487
5511
|
errorType: TriggerErrorType;
|
|
5488
5512
|
}
|
|
@@ -5591,7 +5615,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
5591
5615
|
/** ID of the entity associated with the event. */
|
|
5592
5616
|
entityId?: string;
|
|
5593
5617
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
5594
|
-
eventTime?: Date;
|
|
5618
|
+
eventTime?: Date | null;
|
|
5595
5619
|
/**
|
|
5596
5620
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
5597
5621
|
* (for example, GDPR).
|
|
@@ -5660,7 +5684,7 @@ interface UpdateAutomation {
|
|
|
5660
5684
|
* Date and time the automation was created.
|
|
5661
5685
|
* @readonly
|
|
5662
5686
|
*/
|
|
5663
|
-
_createdDate?: Date;
|
|
5687
|
+
_createdDate?: Date | null;
|
|
5664
5688
|
/**
|
|
5665
5689
|
* The entity that last updated the automation.
|
|
5666
5690
|
* @readonly
|
|
@@ -5670,7 +5694,7 @@ interface UpdateAutomation {
|
|
|
5670
5694
|
* Date and time the automation was last updated.
|
|
5671
5695
|
* @readonly
|
|
5672
5696
|
*/
|
|
5673
|
-
_updatedDate?: Date;
|
|
5697
|
+
_updatedDate?: Date | null;
|
|
5674
5698
|
/** Automation name that is displayed on the user's site. */
|
|
5675
5699
|
name?: string;
|
|
5676
5700
|
/** Automation description. */
|
|
@@ -5689,6 +5713,30 @@ interface UpdateAutomation {
|
|
|
5689
5713
|
/** Namespace */
|
|
5690
5714
|
namespace?: string | null;
|
|
5691
5715
|
}
|
|
5716
|
+
interface CreatePreinstalledAutomationOptions {
|
|
5717
|
+
/** Optional - hide the created automation behind a spec */
|
|
5718
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
5719
|
+
/**
|
|
5720
|
+
* Optional - the information about the original site automation that was used to create this preinstalled automation
|
|
5721
|
+
* Usually an existing automation in a site is used to create the preinstalled automation, this is the relevant information.
|
|
5722
|
+
*/
|
|
5723
|
+
originAutomationInfo?: OriginAutomationInfo;
|
|
5724
|
+
}
|
|
5725
|
+
interface UpdatePreinstalledAutomationOptions {
|
|
5726
|
+
/** Optional - hide the updated automation behind a spec */
|
|
5727
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
5728
|
+
}
|
|
5729
|
+
interface DeletePreinstalledAutomationOptions {
|
|
5730
|
+
/**
|
|
5731
|
+
* Optional - makes the deletion operation gradual
|
|
5732
|
+
* The automation will not return if the variant returns for the site
|
|
5733
|
+
*/
|
|
5734
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
5735
|
+
}
|
|
5736
|
+
interface QueryPreinstalledAutomationsForAppOptions {
|
|
5737
|
+
/** WQL expression. */
|
|
5738
|
+
query?: CommonCursorQuery;
|
|
5739
|
+
}
|
|
5692
5740
|
interface QueryCursorResult {
|
|
5693
5741
|
cursors: Cursors;
|
|
5694
5742
|
hasNext: () => boolean;
|
|
@@ -5755,10 +5803,81 @@ interface CopyAutomationOptions {
|
|
|
5755
5803
|
/** Automation origin. */
|
|
5756
5804
|
origin?: Origin;
|
|
5757
5805
|
}
|
|
5806
|
+
interface CreateDraftAutomationOptions {
|
|
5807
|
+
/** Draft automation to be created. */
|
|
5808
|
+
automation?: Automation;
|
|
5809
|
+
}
|
|
5810
|
+
interface UpdateDraftAutomation {
|
|
5811
|
+
/** Application info */
|
|
5812
|
+
applicationInfo?: ApplicationOrigin;
|
|
5813
|
+
/** Preinstalled info */
|
|
5814
|
+
preinstalledInfo?: PreinstalledOrigin;
|
|
5815
|
+
/**
|
|
5816
|
+
* Automation ID.
|
|
5817
|
+
* @readonly
|
|
5818
|
+
*/
|
|
5819
|
+
_id?: string | null;
|
|
5820
|
+
/**
|
|
5821
|
+
* Revision number, which increments by 1 each time the automation is updated.
|
|
5822
|
+
* To prevent conflicting changes,
|
|
5823
|
+
* the current revision must be passed when updating the automation.
|
|
5824
|
+
*
|
|
5825
|
+
* Ignored when creating an automation.
|
|
5826
|
+
* @readonly
|
|
5827
|
+
*/
|
|
5828
|
+
revision?: string | null;
|
|
5829
|
+
/**
|
|
5830
|
+
* Information about the creator of the automation.
|
|
5831
|
+
* @readonly
|
|
5832
|
+
*/
|
|
5833
|
+
createdBy?: AuditInfo;
|
|
5834
|
+
/**
|
|
5835
|
+
* Date and time the automation was created.
|
|
5836
|
+
* @readonly
|
|
5837
|
+
*/
|
|
5838
|
+
_createdDate?: Date | null;
|
|
5839
|
+
/**
|
|
5840
|
+
* The entity that last updated the automation.
|
|
5841
|
+
* @readonly
|
|
5842
|
+
*/
|
|
5843
|
+
updatedBy?: AuditInfo;
|
|
5844
|
+
/**
|
|
5845
|
+
* Date and time the automation was last updated.
|
|
5846
|
+
* @readonly
|
|
5847
|
+
*/
|
|
5848
|
+
_updatedDate?: Date | null;
|
|
5849
|
+
/** Automation name that is displayed on the user's site. */
|
|
5850
|
+
name?: string;
|
|
5851
|
+
/** Automation description. */
|
|
5852
|
+
description?: string | null;
|
|
5853
|
+
/** Object that defines the automation's trigger, actions, and activation status. */
|
|
5854
|
+
configuration?: AutomationConfiguration;
|
|
5855
|
+
/** Defines how the automation was added to the site. */
|
|
5856
|
+
origin?: Origin;
|
|
5857
|
+
/** Automation settings. */
|
|
5858
|
+
settings?: AutomationSettings;
|
|
5859
|
+
/**
|
|
5860
|
+
* Draft info (optional - only if the automation is a draft)
|
|
5861
|
+
* @readonly
|
|
5862
|
+
*/
|
|
5863
|
+
draftInfo?: DraftInfo;
|
|
5864
|
+
/** Namespace */
|
|
5865
|
+
namespace?: string | null;
|
|
5866
|
+
}
|
|
5867
|
+
interface QueryAutomationsWithDraftsOptions {
|
|
5868
|
+
/** WQL expression. */
|
|
5869
|
+
query?: CursorQuery;
|
|
5870
|
+
}
|
|
5758
5871
|
interface ValidateAutomationOptions {
|
|
5759
5872
|
/** Settings to customize the validation. */
|
|
5760
5873
|
validationSettings?: ValidationSettings;
|
|
5761
5874
|
}
|
|
5875
|
+
interface GetAutomationActionSchemaIdentifiers {
|
|
5876
|
+
/** Automation ID */
|
|
5877
|
+
automationId: string;
|
|
5878
|
+
/** Action ID */
|
|
5879
|
+
actionId: string;
|
|
5880
|
+
}
|
|
5762
5881
|
|
|
5763
5882
|
declare function createAutomation$1(httpClient: HttpClient): CreateAutomationSignature;
|
|
5764
5883
|
interface CreateAutomationSignature {
|
|
@@ -5809,6 +5928,37 @@ interface BulkDeleteAutomationsSignature {
|
|
|
5809
5928
|
*/
|
|
5810
5929
|
(automationIds: string[]): Promise<BulkDeleteAutomationsResponse & BulkDeleteAutomationsResponseNonNullableFields>;
|
|
5811
5930
|
}
|
|
5931
|
+
declare function createPreinstalledAutomation$1(httpClient: HttpClient): CreatePreinstalledAutomationSignature;
|
|
5932
|
+
interface CreatePreinstalledAutomationSignature {
|
|
5933
|
+
/**
|
|
5934
|
+
* Creates a Preinstalled Automation.
|
|
5935
|
+
* @param - Preinstalled automation to be created.
|
|
5936
|
+
*/
|
|
5937
|
+
(automation: Automation, options?: CreatePreinstalledAutomationOptions | undefined): Promise<CreatePreinstalledAutomationResponse & CreatePreinstalledAutomationResponseNonNullableFields>;
|
|
5938
|
+
}
|
|
5939
|
+
declare function updatePreinstalledAutomation$1(httpClient: HttpClient): UpdatePreinstalledAutomationSignature;
|
|
5940
|
+
interface UpdatePreinstalledAutomationSignature {
|
|
5941
|
+
/**
|
|
5942
|
+
* Updates a Preinstalled Automation.
|
|
5943
|
+
* @param - Preinstalled automation to update.
|
|
5944
|
+
*/
|
|
5945
|
+
(automation: Automation, options?: UpdatePreinstalledAutomationOptions | undefined): Promise<UpdatePreinstalledAutomationResponse & UpdatePreinstalledAutomationResponseNonNullableFields>;
|
|
5946
|
+
}
|
|
5947
|
+
declare function deletePreinstalledAutomation$1(httpClient: HttpClient): DeletePreinstalledAutomationSignature;
|
|
5948
|
+
interface DeletePreinstalledAutomationSignature {
|
|
5949
|
+
/**
|
|
5950
|
+
* Deletes a Preinstalled Automation.
|
|
5951
|
+
* @param - Preinstalled Component Id
|
|
5952
|
+
*/
|
|
5953
|
+
(componentId: string, options?: DeletePreinstalledAutomationOptions | undefined): Promise<void>;
|
|
5954
|
+
}
|
|
5955
|
+
declare function queryPreinstalledAutomationsForApp$1(httpClient: HttpClient): QueryPreinstalledAutomationsForAppSignature;
|
|
5956
|
+
interface QueryPreinstalledAutomationsForAppSignature {
|
|
5957
|
+
/**
|
|
5958
|
+
* Allows an app to query for his preinstalled automations
|
|
5959
|
+
*/
|
|
5960
|
+
(options?: QueryPreinstalledAutomationsForAppOptions | undefined): Promise<QueryPreinstalledAutomationsForAppResponse & QueryPreinstalledAutomationsForAppResponseNonNullableFields>;
|
|
5961
|
+
}
|
|
5812
5962
|
declare function queryAutomations$1(httpClient: HttpClient): QueryAutomationsSignature;
|
|
5813
5963
|
interface QueryAutomationsSignature {
|
|
5814
5964
|
/**
|
|
@@ -5836,6 +5986,66 @@ interface CopyAutomationSignature {
|
|
|
5836
5986
|
*/
|
|
5837
5987
|
(automationId: string, options?: CopyAutomationOptions | undefined): Promise<CopyAutomationResponse & CopyAutomationResponseNonNullableFields>;
|
|
5838
5988
|
}
|
|
5989
|
+
declare function createDraftAutomation$1(httpClient: HttpClient): CreateDraftAutomationSignature;
|
|
5990
|
+
interface CreateDraftAutomationSignature {
|
|
5991
|
+
/**
|
|
5992
|
+
* Creates a draft automation.
|
|
5993
|
+
*/
|
|
5994
|
+
(options?: CreateDraftAutomationOptions | undefined): Promise<CreateDraftAutomationResponse & CreateDraftAutomationResponseNonNullableFields>;
|
|
5995
|
+
}
|
|
5996
|
+
declare function getOrCreateDraftAutomation$1(httpClient: HttpClient): GetOrCreateDraftAutomationSignature;
|
|
5997
|
+
interface GetOrCreateDraftAutomationSignature {
|
|
5998
|
+
/**
|
|
5999
|
+
* Gets the draft of the given original automation if exists, or creates one and returns it
|
|
6000
|
+
*
|
|
6001
|
+
* - if the original automation is a draft, returns the original automation
|
|
6002
|
+
* @param - Original automation id
|
|
6003
|
+
*/
|
|
6004
|
+
(originalAutomationId: string): Promise<GetOrCreateDraftAutomationResponse & GetOrCreateDraftAutomationResponseNonNullableFields>;
|
|
6005
|
+
}
|
|
6006
|
+
declare function updateDraftAutomation$1(httpClient: HttpClient): UpdateDraftAutomationSignature;
|
|
6007
|
+
interface UpdateDraftAutomationSignature {
|
|
6008
|
+
/**
|
|
6009
|
+
* Updates a draft automation
|
|
6010
|
+
* @param - Automation ID.
|
|
6011
|
+
*/
|
|
6012
|
+
(_id: string | null, automation: UpdateDraftAutomation): Promise<UpdateDraftAutomationResponse & UpdateDraftAutomationResponseNonNullableFields>;
|
|
6013
|
+
}
|
|
6014
|
+
declare function queryAutomationsWithDrafts$1(httpClient: HttpClient): QueryAutomationsWithDraftsSignature;
|
|
6015
|
+
interface QueryAutomationsWithDraftsSignature {
|
|
6016
|
+
/**
|
|
6017
|
+
* Retrieves a list of automations including drafts. Max query filter depth is 3.
|
|
6018
|
+
*
|
|
6019
|
+
* Relevant automations for the query are returned. This includes automations created on the site and pre-installed automations.
|
|
6020
|
+
* If there's an existing override for a pre-installed automation, the override is returned in the query result.
|
|
6021
|
+
* The query only returns automations from apps that are installed on the site.
|
|
6022
|
+
*
|
|
6023
|
+
* - new drafts that are not related to existing automations will be returned in the list
|
|
6024
|
+
* - the response will contain a map of originalAutomationId => relatedDrafts
|
|
6025
|
+
*
|
|
6026
|
+
* To learn about working with _Query_ endpoints, see
|
|
6027
|
+
* [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
|
|
6028
|
+
* [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination),
|
|
6029
|
+
* and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
6030
|
+
*/
|
|
6031
|
+
(options?: QueryAutomationsWithDraftsOptions | undefined): Promise<QueryAutomationsWithDraftsResponse & QueryAutomationsWithDraftsResponseNonNullableFields>;
|
|
6032
|
+
}
|
|
6033
|
+
declare function deleteDraftAutomation$1(httpClient: HttpClient): DeleteDraftAutomationSignature;
|
|
6034
|
+
interface DeleteDraftAutomationSignature {
|
|
6035
|
+
/**
|
|
6036
|
+
* Deletes a draft automation.
|
|
6037
|
+
* @param - Id of the draft automation to delete.
|
|
6038
|
+
*/
|
|
6039
|
+
(automationId: string): Promise<void>;
|
|
6040
|
+
}
|
|
6041
|
+
declare function publishDraftAutomation$1(httpClient: HttpClient): PublishDraftAutomationSignature;
|
|
6042
|
+
interface PublishDraftAutomationSignature {
|
|
6043
|
+
/**
|
|
6044
|
+
* Publishes a draft automation, applying the changes to live automation
|
|
6045
|
+
* @param - Id of the draft automation to publish.
|
|
6046
|
+
*/
|
|
6047
|
+
(automationId: string): Promise<PublishDraftAutomationResponse & PublishDraftAutomationResponseNonNullableFields>;
|
|
6048
|
+
}
|
|
5839
6049
|
declare function validateAutomation$1(httpClient: HttpClient): ValidateAutomationSignature;
|
|
5840
6050
|
interface ValidateAutomationSignature {
|
|
5841
6051
|
/**
|
|
@@ -5844,6 +6054,13 @@ interface ValidateAutomationSignature {
|
|
|
5844
6054
|
*/
|
|
5845
6055
|
(automation: Automation, options?: ValidateAutomationOptions | undefined): Promise<ValidateAutomationResponse & ValidateAutomationResponseNonNullableFields>;
|
|
5846
6056
|
}
|
|
6057
|
+
declare function getAutomationActionSchema$1(httpClient: HttpClient): GetAutomationActionSchemaSignature;
|
|
6058
|
+
interface GetAutomationActionSchemaSignature {
|
|
6059
|
+
/**
|
|
6060
|
+
* Gets the payload schema received by the action whose ID is passed in.
|
|
6061
|
+
*/
|
|
6062
|
+
(identifiers: GetAutomationActionSchemaIdentifiers): Promise<GetAutomationActionSchemaResponse>;
|
|
6063
|
+
}
|
|
5847
6064
|
declare function getActionsQuotaInfo$1(httpClient: HttpClient): GetActionsQuotaInfoSignature;
|
|
5848
6065
|
interface GetActionsQuotaInfoSignature {
|
|
5849
6066
|
/**
|
|
@@ -5864,9 +6081,20 @@ declare const getAutomation: MaybeContext<BuildRESTFunction<typeof getAutomation
|
|
|
5864
6081
|
declare const updateAutomation: MaybeContext<BuildRESTFunction<typeof updateAutomation$1> & typeof updateAutomation$1>;
|
|
5865
6082
|
declare const deleteAutomation: MaybeContext<BuildRESTFunction<typeof deleteAutomation$1> & typeof deleteAutomation$1>;
|
|
5866
6083
|
declare const bulkDeleteAutomations: MaybeContext<BuildRESTFunction<typeof bulkDeleteAutomations$1> & typeof bulkDeleteAutomations$1>;
|
|
6084
|
+
declare const createPreinstalledAutomation: MaybeContext<BuildRESTFunction<typeof createPreinstalledAutomation$1> & typeof createPreinstalledAutomation$1>;
|
|
6085
|
+
declare const updatePreinstalledAutomation: MaybeContext<BuildRESTFunction<typeof updatePreinstalledAutomation$1> & typeof updatePreinstalledAutomation$1>;
|
|
6086
|
+
declare const deletePreinstalledAutomation: MaybeContext<BuildRESTFunction<typeof deletePreinstalledAutomation$1> & typeof deletePreinstalledAutomation$1>;
|
|
6087
|
+
declare const queryPreinstalledAutomationsForApp: MaybeContext<BuildRESTFunction<typeof queryPreinstalledAutomationsForApp$1> & typeof queryPreinstalledAutomationsForApp$1>;
|
|
5867
6088
|
declare const queryAutomations: MaybeContext<BuildRESTFunction<typeof queryAutomations$1> & typeof queryAutomations$1>;
|
|
5868
6089
|
declare const copyAutomation: MaybeContext<BuildRESTFunction<typeof copyAutomation$1> & typeof copyAutomation$1>;
|
|
6090
|
+
declare const createDraftAutomation: MaybeContext<BuildRESTFunction<typeof createDraftAutomation$1> & typeof createDraftAutomation$1>;
|
|
6091
|
+
declare const getOrCreateDraftAutomation: MaybeContext<BuildRESTFunction<typeof getOrCreateDraftAutomation$1> & typeof getOrCreateDraftAutomation$1>;
|
|
6092
|
+
declare const updateDraftAutomation: MaybeContext<BuildRESTFunction<typeof updateDraftAutomation$1> & typeof updateDraftAutomation$1>;
|
|
6093
|
+
declare const queryAutomationsWithDrafts: MaybeContext<BuildRESTFunction<typeof queryAutomationsWithDrafts$1> & typeof queryAutomationsWithDrafts$1>;
|
|
6094
|
+
declare const deleteDraftAutomation: MaybeContext<BuildRESTFunction<typeof deleteDraftAutomation$1> & typeof deleteDraftAutomation$1>;
|
|
6095
|
+
declare const publishDraftAutomation: MaybeContext<BuildRESTFunction<typeof publishDraftAutomation$1> & typeof publishDraftAutomation$1>;
|
|
5869
6096
|
declare const validateAutomation: MaybeContext<BuildRESTFunction<typeof validateAutomation$1> & typeof validateAutomation$1>;
|
|
6097
|
+
declare const getAutomationActionSchema: MaybeContext<BuildRESTFunction<typeof getAutomationActionSchema$1> & typeof getAutomationActionSchema$1>;
|
|
5870
6098
|
declare const getActionsQuotaInfo: MaybeContext<BuildRESTFunction<typeof getActionsQuotaInfo$1> & typeof getActionsQuotaInfo$1>;
|
|
5871
6099
|
|
|
5872
6100
|
type _publicOnAutomationCreatedType = typeof onAutomationCreated$1;
|
|
@@ -5951,10 +6179,14 @@ type index_d_CopyAutomationResponseNonNullableFields = CopyAutomationResponseNon
|
|
|
5951
6179
|
type index_d_CreateAutomationRequest = CreateAutomationRequest;
|
|
5952
6180
|
type index_d_CreateAutomationResponse = CreateAutomationResponse;
|
|
5953
6181
|
type index_d_CreateAutomationResponseNonNullableFields = CreateAutomationResponseNonNullableFields;
|
|
6182
|
+
type index_d_CreateDraftAutomationOptions = CreateDraftAutomationOptions;
|
|
5954
6183
|
type index_d_CreateDraftAutomationRequest = CreateDraftAutomationRequest;
|
|
5955
6184
|
type index_d_CreateDraftAutomationResponse = CreateDraftAutomationResponse;
|
|
6185
|
+
type index_d_CreateDraftAutomationResponseNonNullableFields = CreateDraftAutomationResponseNonNullableFields;
|
|
6186
|
+
type index_d_CreatePreinstalledAutomationOptions = CreatePreinstalledAutomationOptions;
|
|
5956
6187
|
type index_d_CreatePreinstalledAutomationRequest = CreatePreinstalledAutomationRequest;
|
|
5957
6188
|
type index_d_CreatePreinstalledAutomationResponse = CreatePreinstalledAutomationResponse;
|
|
6189
|
+
type index_d_CreatePreinstalledAutomationResponseNonNullableFields = CreatePreinstalledAutomationResponseNonNullableFields;
|
|
5958
6190
|
type index_d_CursorPaging = CursorPaging;
|
|
5959
6191
|
type index_d_CursorPagingMetadata = CursorPagingMetadata;
|
|
5960
6192
|
type index_d_CursorQuery = CursorQuery;
|
|
@@ -5966,6 +6198,7 @@ type index_d_DeleteAutomationResponse = DeleteAutomationResponse;
|
|
|
5966
6198
|
type index_d_DeleteContext = DeleteContext;
|
|
5967
6199
|
type index_d_DeleteDraftAutomationRequest = DeleteDraftAutomationRequest;
|
|
5968
6200
|
type index_d_DeleteDraftAutomationResponse = DeleteDraftAutomationResponse;
|
|
6201
|
+
type index_d_DeletePreinstalledAutomationOptions = DeletePreinstalledAutomationOptions;
|
|
5969
6202
|
type index_d_DeletePreinstalledAutomationRequest = DeletePreinstalledAutomationRequest;
|
|
5970
6203
|
type index_d_DeletePreinstalledAutomationResponse = DeletePreinstalledAutomationResponse;
|
|
5971
6204
|
type index_d_DeleteStatus = DeleteStatus;
|
|
@@ -5985,6 +6218,7 @@ type index_d_FutureDateActivationOffset = FutureDateActivationOffset;
|
|
|
5985
6218
|
type index_d_GetActionsQuotaInfoRequest = GetActionsQuotaInfoRequest;
|
|
5986
6219
|
type index_d_GetActionsQuotaInfoResponse = GetActionsQuotaInfoResponse;
|
|
5987
6220
|
type index_d_GetActionsQuotaInfoResponseNonNullableFields = GetActionsQuotaInfoResponseNonNullableFields;
|
|
6221
|
+
type index_d_GetAutomationActionSchemaIdentifiers = GetAutomationActionSchemaIdentifiers;
|
|
5988
6222
|
type index_d_GetAutomationActionSchemaRequest = GetAutomationActionSchemaRequest;
|
|
5989
6223
|
type index_d_GetAutomationActionSchemaResponse = GetAutomationActionSchemaResponse;
|
|
5990
6224
|
type index_d_GetAutomationOptions = GetAutomationOptions;
|
|
@@ -5995,6 +6229,7 @@ type index_d_GetAutomationRevisionRequest = GetAutomationRevisionRequest;
|
|
|
5995
6229
|
type index_d_GetAutomationRevisionResponse = GetAutomationRevisionResponse;
|
|
5996
6230
|
type index_d_GetOrCreateDraftAutomationRequest = GetOrCreateDraftAutomationRequest;
|
|
5997
6231
|
type index_d_GetOrCreateDraftAutomationResponse = GetOrCreateDraftAutomationResponse;
|
|
6232
|
+
type index_d_GetOrCreateDraftAutomationResponseNonNullableFields = GetOrCreateDraftAutomationResponseNonNullableFields;
|
|
5998
6233
|
type index_d_IdentificationData = IdentificationData;
|
|
5999
6234
|
type index_d_IdentificationDataIdOneOf = IdentificationDataIdOneOf;
|
|
6000
6235
|
type index_d_ItemMetadata = ItemMetadata;
|
|
@@ -6016,13 +6251,18 @@ type index_d_PreinstalledOrigin = PreinstalledOrigin;
|
|
|
6016
6251
|
type index_d_ProviderConfigurationError = ProviderConfigurationError;
|
|
6017
6252
|
type index_d_PublishDraftAutomationRequest = PublishDraftAutomationRequest;
|
|
6018
6253
|
type index_d_PublishDraftAutomationResponse = PublishDraftAutomationResponse;
|
|
6254
|
+
type index_d_PublishDraftAutomationResponseNonNullableFields = PublishDraftAutomationResponseNonNullableFields;
|
|
6019
6255
|
type index_d_QueryAutomationsRequest = QueryAutomationsRequest;
|
|
6020
6256
|
type index_d_QueryAutomationsResponse = QueryAutomationsResponse;
|
|
6021
6257
|
type index_d_QueryAutomationsResponseNonNullableFields = QueryAutomationsResponseNonNullableFields;
|
|
6258
|
+
type index_d_QueryAutomationsWithDraftsOptions = QueryAutomationsWithDraftsOptions;
|
|
6022
6259
|
type index_d_QueryAutomationsWithDraftsRequest = QueryAutomationsWithDraftsRequest;
|
|
6023
6260
|
type index_d_QueryAutomationsWithDraftsResponse = QueryAutomationsWithDraftsResponse;
|
|
6261
|
+
type index_d_QueryAutomationsWithDraftsResponseNonNullableFields = QueryAutomationsWithDraftsResponseNonNullableFields;
|
|
6262
|
+
type index_d_QueryPreinstalledAutomationsForAppOptions = QueryPreinstalledAutomationsForAppOptions;
|
|
6024
6263
|
type index_d_QueryPreinstalledAutomationsForAppRequest = QueryPreinstalledAutomationsForAppRequest;
|
|
6025
6264
|
type index_d_QueryPreinstalledAutomationsForAppResponse = QueryPreinstalledAutomationsForAppResponse;
|
|
6265
|
+
type index_d_QueryPreinstalledAutomationsForAppResponseNonNullableFields = QueryPreinstalledAutomationsForAppResponseNonNullableFields;
|
|
6026
6266
|
type index_d_Quota = Quota;
|
|
6027
6267
|
type index_d_QuotaInfo = QuotaInfo;
|
|
6028
6268
|
type index_d_RateLimit = RateLimit;
|
|
@@ -6067,10 +6307,14 @@ type index_d_UpdateAutomation = UpdateAutomation;
|
|
|
6067
6307
|
type index_d_UpdateAutomationRequest = UpdateAutomationRequest;
|
|
6068
6308
|
type index_d_UpdateAutomationResponse = UpdateAutomationResponse;
|
|
6069
6309
|
type index_d_UpdateAutomationResponseNonNullableFields = UpdateAutomationResponseNonNullableFields;
|
|
6310
|
+
type index_d_UpdateDraftAutomation = UpdateDraftAutomation;
|
|
6070
6311
|
type index_d_UpdateDraftAutomationRequest = UpdateDraftAutomationRequest;
|
|
6071
6312
|
type index_d_UpdateDraftAutomationResponse = UpdateDraftAutomationResponse;
|
|
6313
|
+
type index_d_UpdateDraftAutomationResponseNonNullableFields = UpdateDraftAutomationResponseNonNullableFields;
|
|
6314
|
+
type index_d_UpdatePreinstalledAutomationOptions = UpdatePreinstalledAutomationOptions;
|
|
6072
6315
|
type index_d_UpdatePreinstalledAutomationRequest = UpdatePreinstalledAutomationRequest;
|
|
6073
6316
|
type index_d_UpdatePreinstalledAutomationResponse = UpdatePreinstalledAutomationResponse;
|
|
6317
|
+
type index_d_UpdatePreinstalledAutomationResponseNonNullableFields = UpdatePreinstalledAutomationResponseNonNullableFields;
|
|
6074
6318
|
type index_d_UpdatedWithPreviousEntity = UpdatedWithPreviousEntity;
|
|
6075
6319
|
type index_d_UpgradeCTA = UpgradeCTA;
|
|
6076
6320
|
type index_d_ValidateAutomationOptions = ValidateAutomationOptions;
|
|
@@ -6092,19 +6336,30 @@ type index_d__publicOnAutomationUpdatedWithPreviousEntityType = _publicOnAutomat
|
|
|
6092
6336
|
declare const index_d_bulkDeleteAutomations: typeof bulkDeleteAutomations;
|
|
6093
6337
|
declare const index_d_copyAutomation: typeof copyAutomation;
|
|
6094
6338
|
declare const index_d_createAutomation: typeof createAutomation;
|
|
6339
|
+
declare const index_d_createDraftAutomation: typeof createDraftAutomation;
|
|
6340
|
+
declare const index_d_createPreinstalledAutomation: typeof createPreinstalledAutomation;
|
|
6095
6341
|
declare const index_d_deleteAutomation: typeof deleteAutomation;
|
|
6342
|
+
declare const index_d_deleteDraftAutomation: typeof deleteDraftAutomation;
|
|
6343
|
+
declare const index_d_deletePreinstalledAutomation: typeof deletePreinstalledAutomation;
|
|
6096
6344
|
declare const index_d_getActionsQuotaInfo: typeof getActionsQuotaInfo;
|
|
6097
6345
|
declare const index_d_getAutomation: typeof getAutomation;
|
|
6346
|
+
declare const index_d_getAutomationActionSchema: typeof getAutomationActionSchema;
|
|
6347
|
+
declare const index_d_getOrCreateDraftAutomation: typeof getOrCreateDraftAutomation;
|
|
6098
6348
|
declare const index_d_onAutomationCreated: typeof onAutomationCreated;
|
|
6099
6349
|
declare const index_d_onAutomationDeleted: typeof onAutomationDeleted;
|
|
6100
6350
|
declare const index_d_onAutomationDeletedWithEntity: typeof onAutomationDeletedWithEntity;
|
|
6101
6351
|
declare const index_d_onAutomationUpdated: typeof onAutomationUpdated;
|
|
6102
6352
|
declare const index_d_onAutomationUpdatedWithPreviousEntity: typeof onAutomationUpdatedWithPreviousEntity;
|
|
6353
|
+
declare const index_d_publishDraftAutomation: typeof publishDraftAutomation;
|
|
6103
6354
|
declare const index_d_queryAutomations: typeof queryAutomations;
|
|
6355
|
+
declare const index_d_queryAutomationsWithDrafts: typeof queryAutomationsWithDrafts;
|
|
6356
|
+
declare const index_d_queryPreinstalledAutomationsForApp: typeof queryPreinstalledAutomationsForApp;
|
|
6104
6357
|
declare const index_d_updateAutomation: typeof updateAutomation;
|
|
6358
|
+
declare const index_d_updateDraftAutomation: typeof updateDraftAutomation;
|
|
6359
|
+
declare const index_d_updatePreinstalledAutomation: typeof updatePreinstalledAutomation;
|
|
6105
6360
|
declare const index_d_validateAutomation: typeof validateAutomation;
|
|
6106
6361
|
declare namespace index_d {
|
|
6107
|
-
export { type index_d_Action as Action, type index_d_ActionConfigurationError as ActionConfigurationError, index_d_ActionErrorType as ActionErrorType, type index_d_ActionEvent as ActionEvent, type index_d_ActionInfoOneOf as ActionInfoOneOf, type index_d_ActionProviderQuotaInfo as ActionProviderQuotaInfo, type index_d_ActionQuotaInfo as ActionQuotaInfo, type index_d_ActionSettings as ActionSettings, type index_d_ActionValidationError as ActionValidationError, type index_d_ActionValidationErrorErrorOneOf as ActionValidationErrorErrorOneOf, type index_d_ActionValidationInfo as ActionValidationInfo, type index_d_AdditionalInfo as AdditionalInfo, type index_d_AppDefinedAction as AppDefinedAction, type index_d_ApplicationError as ApplicationError, type index_d_ApplicationOrigin as ApplicationOrigin, type index_d_Asset as Asset, type index_d_AuditInfo as AuditInfo, type index_d_AuditInfoIdOneOf as AuditInfoIdOneOf, type index_d_Automation as Automation, type index_d_AutomationConfiguration as AutomationConfiguration, type index_d_AutomationConfigurationError as AutomationConfigurationError, type index_d_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type index_d_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type index_d_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, index_d_AutomationErrorType as AutomationErrorType, type index_d_AutomationNonNullableFields as AutomationNonNullableFields, type index_d_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type index_d_AutomationSettings as AutomationSettings, type index_d_AutomationUpdatedEnvelope as AutomationUpdatedEnvelope, type index_d_AutomationUpdatedWithPreviousEntityEnvelope as AutomationUpdatedWithPreviousEntityEnvelope, type index_d_AutomationValidationError as AutomationValidationError, type index_d_AutomationValidationErrorErrorOneOf as AutomationValidationErrorErrorOneOf, index_d_AutomationValidationErrorValidationErrorType as AutomationValidationErrorValidationErrorType, type index_d_AutomationsQueryBuilder as AutomationsQueryBuilder, type index_d_AutomationsQueryResult as AutomationsQueryResult, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkDeleteAutomationsRequest as BulkDeleteAutomationsRequest, type index_d_BulkDeleteAutomationsResponse as BulkDeleteAutomationsResponse, type index_d_BulkDeleteAutomationsResponseNonNullableFields as BulkDeleteAutomationsResponseNonNullableFields, type index_d_BulkDeleteResult as BulkDeleteResult, type index_d_CTA as CTA, type index_d_CommonCursorPaging as CommonCursorPaging, type index_d_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d_CommonCursorQuery as CommonCursorQuery, type index_d_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d_CommonCursors as CommonCursors, index_d_CommonSortOrder as CommonSortOrder, type index_d_CommonSorting as CommonSorting, type index_d_ConditionAction as ConditionAction, type index_d_ConditionExpressionGroup as ConditionExpressionGroup, type index_d_CopyAutomationOptions as CopyAutomationOptions, type index_d_CopyAutomationRequest as CopyAutomationRequest, type index_d_CopyAutomationResponse as CopyAutomationResponse, type index_d_CopyAutomationResponseNonNullableFields as CopyAutomationResponseNonNullableFields, type index_d_CreateAutomationRequest as CreateAutomationRequest, type index_d_CreateAutomationResponse as CreateAutomationResponse, type index_d_CreateAutomationResponseNonNullableFields as CreateAutomationResponseNonNullableFields, type index_d_CreateDraftAutomationRequest as CreateDraftAutomationRequest, type index_d_CreateDraftAutomationResponse as CreateDraftAutomationResponse, type index_d_CreatePreinstalledAutomationRequest as CreatePreinstalledAutomationRequest, type index_d_CreatePreinstalledAutomationResponse as CreatePreinstalledAutomationResponse, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DelayAction as DelayAction, type index_d_DeleteAutomationRequest as DeleteAutomationRequest, type index_d_DeleteAutomationResponse as DeleteAutomationResponse, type index_d_DeleteContext as DeleteContext, type index_d_DeleteDraftAutomationRequest as DeleteDraftAutomationRequest, type index_d_DeleteDraftAutomationResponse as DeleteDraftAutomationResponse, type index_d_DeletePreinstalledAutomationRequest as DeletePreinstalledAutomationRequest, type index_d_DeletePreinstalledAutomationResponse as DeletePreinstalledAutomationResponse, index_d_DeleteStatus as DeleteStatus, type index_d_DeletedWithEntity as DeletedWithEntity, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DraftInfo as DraftInfo, type index_d_DraftsInfo as DraftsInfo, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_Filter as Filter, type index_d_FutureDateActivationOffset as FutureDateActivationOffset, type index_d_GetActionsQuotaInfoRequest as GetActionsQuotaInfoRequest, type index_d_GetActionsQuotaInfoResponse as GetActionsQuotaInfoResponse, type index_d_GetActionsQuotaInfoResponseNonNullableFields as GetActionsQuotaInfoResponseNonNullableFields, type index_d_GetAutomationActionSchemaRequest as GetAutomationActionSchemaRequest, type index_d_GetAutomationActionSchemaResponse as GetAutomationActionSchemaResponse, type index_d_GetAutomationOptions as GetAutomationOptions, type index_d_GetAutomationRequest as GetAutomationRequest, type index_d_GetAutomationResponse as GetAutomationResponse, type index_d_GetAutomationResponseNonNullableFields as GetAutomationResponseNonNullableFields, type index_d_GetAutomationRevisionRequest as GetAutomationRevisionRequest, type index_d_GetAutomationRevisionResponse as GetAutomationRevisionResponse, type index_d_GetOrCreateDraftAutomationRequest as GetOrCreateDraftAutomationRequest, type index_d_GetOrCreateDraftAutomationResponse as GetOrCreateDraftAutomationResponse, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, index_d_Namespace as Namespace, type index_d_NamespaceChanged as NamespaceChanged, index_d_Operator as Operator, index_d_Origin as Origin, type index_d_OriginAutomationInfo as OriginAutomationInfo, type index_d_OutputAction as OutputAction, type index_d_Plan as Plan, type index_d_PreinstalledAutomationSpecInfo as PreinstalledAutomationSpecInfo, type index_d_PreinstalledOrigin as PreinstalledOrigin, type index_d_ProviderConfigurationError as ProviderConfigurationError, type index_d_PublishDraftAutomationRequest as PublishDraftAutomationRequest, type index_d_PublishDraftAutomationResponse as PublishDraftAutomationResponse, type index_d_QueryAutomationsRequest as QueryAutomationsRequest, type index_d_QueryAutomationsResponse as QueryAutomationsResponse, type index_d_QueryAutomationsResponseNonNullableFields as QueryAutomationsResponseNonNullableFields, type index_d_QueryAutomationsWithDraftsRequest as QueryAutomationsWithDraftsRequest, type index_d_QueryAutomationsWithDraftsResponse as QueryAutomationsWithDraftsResponse, type index_d_QueryPreinstalledAutomationsForAppRequest as QueryPreinstalledAutomationsForAppRequest, type index_d_QueryPreinstalledAutomationsForAppResponse as QueryPreinstalledAutomationsForAppResponse, type index_d_Quota as Quota, type index_d_QuotaInfo as QuotaInfo, type index_d_RateLimit as RateLimit, type index_d_RateLimitAction as RateLimitAction, type index_d_RestoreInfo as RestoreInfo, type index_d_ServiceProvisioned as ServiceProvisioned, type index_d_ServiceRemoved as ServiceRemoved, type index_d_SiteCreated as SiteCreated, index_d_SiteCreatedContext as SiteCreatedContext, type index_d_SiteDeleted as SiteDeleted, type index_d_SiteHardDeleted as SiteHardDeleted, type index_d_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d_SitePublished as SitePublished, type index_d_SiteRenamed as SiteRenamed, type index_d_SiteTransferred as SiteTransferred, type index_d_SiteUndeleted as SiteUndeleted, type index_d_SiteUnpublished as SiteUnpublished, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_State as State, index_d_Status as Status, type index_d_StudioAssigned as StudioAssigned, type index_d_StudioUnassigned as StudioUnassigned, index_d_TimeUnit as TimeUnit, type index_d_Trigger as Trigger, type index_d_TriggerConfigurationError as TriggerConfigurationError, index_d_TriggerErrorType as TriggerErrorType, type index_d_TriggerValidationError as TriggerValidationError, type index_d_TriggerValidationErrorErrorOneOf as TriggerValidationErrorErrorOneOf, index_d_TriggerValidationErrorValidationErrorType as TriggerValidationErrorValidationErrorType, index_d_Type as Type, type index_d_UpdateAutomation as UpdateAutomation, type index_d_UpdateAutomationRequest as UpdateAutomationRequest, type index_d_UpdateAutomationResponse as UpdateAutomationResponse, type index_d_UpdateAutomationResponseNonNullableFields as UpdateAutomationResponseNonNullableFields, type index_d_UpdateDraftAutomationRequest as UpdateDraftAutomationRequest, type index_d_UpdateDraftAutomationResponse as UpdateDraftAutomationResponse, type index_d_UpdatePreinstalledAutomationRequest as UpdatePreinstalledAutomationRequest, type index_d_UpdatePreinstalledAutomationResponse as UpdatePreinstalledAutomationResponse, type index_d_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type index_d_UpgradeCTA as UpgradeCTA, type index_d_ValidateAutomationOptions as ValidateAutomationOptions, type index_d_ValidateAutomationRequest as ValidateAutomationRequest, type index_d_ValidateAutomationResponse as ValidateAutomationResponse, type index_d_ValidateAutomationResponseNonNullableFields as ValidateAutomationResponseNonNullableFields, index_d_ValidationErrorSeverity as ValidationErrorSeverity, index_d_ValidationErrorType as ValidationErrorType, type index_d_ValidationSettings as ValidationSettings, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnAutomationCreatedType as _publicOnAutomationCreatedType, type index_d__publicOnAutomationDeletedType as _publicOnAutomationDeletedType, type index_d__publicOnAutomationDeletedWithEntityType as _publicOnAutomationDeletedWithEntityType, type index_d__publicOnAutomationUpdatedType as _publicOnAutomationUpdatedType, type index_d__publicOnAutomationUpdatedWithPreviousEntityType as _publicOnAutomationUpdatedWithPreviousEntityType, index_d_bulkDeleteAutomations as bulkDeleteAutomations, index_d_copyAutomation as copyAutomation, index_d_createAutomation as createAutomation, index_d_deleteAutomation as deleteAutomation, index_d_getActionsQuotaInfo as getActionsQuotaInfo, index_d_getAutomation as getAutomation, index_d_onAutomationCreated as onAutomationCreated, index_d_onAutomationDeleted as onAutomationDeleted, index_d_onAutomationDeletedWithEntity as onAutomationDeletedWithEntity, index_d_onAutomationUpdated as onAutomationUpdated, index_d_onAutomationUpdatedWithPreviousEntity as onAutomationUpdatedWithPreviousEntity, onAutomationCreated$1 as publicOnAutomationCreated, onAutomationDeleted$1 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$1 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$1 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$1 as publicOnAutomationUpdatedWithPreviousEntity, index_d_queryAutomations as queryAutomations, index_d_updateAutomation as updateAutomation, index_d_validateAutomation as validateAutomation };
|
|
6362
|
+
export { type index_d_Action as Action, type index_d_ActionConfigurationError as ActionConfigurationError, index_d_ActionErrorType as ActionErrorType, type index_d_ActionEvent as ActionEvent, type index_d_ActionInfoOneOf as ActionInfoOneOf, type index_d_ActionProviderQuotaInfo as ActionProviderQuotaInfo, type index_d_ActionQuotaInfo as ActionQuotaInfo, type index_d_ActionSettings as ActionSettings, type index_d_ActionValidationError as ActionValidationError, type index_d_ActionValidationErrorErrorOneOf as ActionValidationErrorErrorOneOf, type index_d_ActionValidationInfo as ActionValidationInfo, type index_d_AdditionalInfo as AdditionalInfo, type index_d_AppDefinedAction as AppDefinedAction, type index_d_ApplicationError as ApplicationError, type index_d_ApplicationOrigin as ApplicationOrigin, type index_d_Asset as Asset, type index_d_AuditInfo as AuditInfo, type index_d_AuditInfoIdOneOf as AuditInfoIdOneOf, type index_d_Automation as Automation, type index_d_AutomationConfiguration as AutomationConfiguration, type index_d_AutomationConfigurationError as AutomationConfigurationError, type index_d_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type index_d_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type index_d_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, index_d_AutomationErrorType as AutomationErrorType, type index_d_AutomationNonNullableFields as AutomationNonNullableFields, type index_d_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type index_d_AutomationSettings as AutomationSettings, type index_d_AutomationUpdatedEnvelope as AutomationUpdatedEnvelope, type index_d_AutomationUpdatedWithPreviousEntityEnvelope as AutomationUpdatedWithPreviousEntityEnvelope, type index_d_AutomationValidationError as AutomationValidationError, type index_d_AutomationValidationErrorErrorOneOf as AutomationValidationErrorErrorOneOf, index_d_AutomationValidationErrorValidationErrorType as AutomationValidationErrorValidationErrorType, type index_d_AutomationsQueryBuilder as AutomationsQueryBuilder, type index_d_AutomationsQueryResult as AutomationsQueryResult, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkDeleteAutomationsRequest as BulkDeleteAutomationsRequest, type index_d_BulkDeleteAutomationsResponse as BulkDeleteAutomationsResponse, type index_d_BulkDeleteAutomationsResponseNonNullableFields as BulkDeleteAutomationsResponseNonNullableFields, type index_d_BulkDeleteResult as BulkDeleteResult, type index_d_CTA as CTA, type index_d_CommonCursorPaging as CommonCursorPaging, type index_d_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d_CommonCursorQuery as CommonCursorQuery, type index_d_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d_CommonCursors as CommonCursors, index_d_CommonSortOrder as CommonSortOrder, type index_d_CommonSorting as CommonSorting, type index_d_ConditionAction as ConditionAction, type index_d_ConditionExpressionGroup as ConditionExpressionGroup, type index_d_CopyAutomationOptions as CopyAutomationOptions, type index_d_CopyAutomationRequest as CopyAutomationRequest, type index_d_CopyAutomationResponse as CopyAutomationResponse, type index_d_CopyAutomationResponseNonNullableFields as CopyAutomationResponseNonNullableFields, type index_d_CreateAutomationRequest as CreateAutomationRequest, type index_d_CreateAutomationResponse as CreateAutomationResponse, type index_d_CreateAutomationResponseNonNullableFields as CreateAutomationResponseNonNullableFields, type index_d_CreateDraftAutomationOptions as CreateDraftAutomationOptions, type index_d_CreateDraftAutomationRequest as CreateDraftAutomationRequest, type index_d_CreateDraftAutomationResponse as CreateDraftAutomationResponse, type index_d_CreateDraftAutomationResponseNonNullableFields as CreateDraftAutomationResponseNonNullableFields, type index_d_CreatePreinstalledAutomationOptions as CreatePreinstalledAutomationOptions, type index_d_CreatePreinstalledAutomationRequest as CreatePreinstalledAutomationRequest, type index_d_CreatePreinstalledAutomationResponse as CreatePreinstalledAutomationResponse, type index_d_CreatePreinstalledAutomationResponseNonNullableFields as CreatePreinstalledAutomationResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DelayAction as DelayAction, type index_d_DeleteAutomationRequest as DeleteAutomationRequest, type index_d_DeleteAutomationResponse as DeleteAutomationResponse, type index_d_DeleteContext as DeleteContext, type index_d_DeleteDraftAutomationRequest as DeleteDraftAutomationRequest, type index_d_DeleteDraftAutomationResponse as DeleteDraftAutomationResponse, type index_d_DeletePreinstalledAutomationOptions as DeletePreinstalledAutomationOptions, type index_d_DeletePreinstalledAutomationRequest as DeletePreinstalledAutomationRequest, type index_d_DeletePreinstalledAutomationResponse as DeletePreinstalledAutomationResponse, index_d_DeleteStatus as DeleteStatus, type index_d_DeletedWithEntity as DeletedWithEntity, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DraftInfo as DraftInfo, type index_d_DraftsInfo as DraftsInfo, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_Filter as Filter, type index_d_FutureDateActivationOffset as FutureDateActivationOffset, type index_d_GetActionsQuotaInfoRequest as GetActionsQuotaInfoRequest, type index_d_GetActionsQuotaInfoResponse as GetActionsQuotaInfoResponse, type index_d_GetActionsQuotaInfoResponseNonNullableFields as GetActionsQuotaInfoResponseNonNullableFields, type index_d_GetAutomationActionSchemaIdentifiers as GetAutomationActionSchemaIdentifiers, type index_d_GetAutomationActionSchemaRequest as GetAutomationActionSchemaRequest, type index_d_GetAutomationActionSchemaResponse as GetAutomationActionSchemaResponse, type index_d_GetAutomationOptions as GetAutomationOptions, type index_d_GetAutomationRequest as GetAutomationRequest, type index_d_GetAutomationResponse as GetAutomationResponse, type index_d_GetAutomationResponseNonNullableFields as GetAutomationResponseNonNullableFields, type index_d_GetAutomationRevisionRequest as GetAutomationRevisionRequest, type index_d_GetAutomationRevisionResponse as GetAutomationRevisionResponse, type index_d_GetOrCreateDraftAutomationRequest as GetOrCreateDraftAutomationRequest, type index_d_GetOrCreateDraftAutomationResponse as GetOrCreateDraftAutomationResponse, type index_d_GetOrCreateDraftAutomationResponseNonNullableFields as GetOrCreateDraftAutomationResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, index_d_Namespace as Namespace, type index_d_NamespaceChanged as NamespaceChanged, index_d_Operator as Operator, index_d_Origin as Origin, type index_d_OriginAutomationInfo as OriginAutomationInfo, type index_d_OutputAction as OutputAction, type index_d_Plan as Plan, type index_d_PreinstalledAutomationSpecInfo as PreinstalledAutomationSpecInfo, type index_d_PreinstalledOrigin as PreinstalledOrigin, type index_d_ProviderConfigurationError as ProviderConfigurationError, type index_d_PublishDraftAutomationRequest as PublishDraftAutomationRequest, type index_d_PublishDraftAutomationResponse as PublishDraftAutomationResponse, type index_d_PublishDraftAutomationResponseNonNullableFields as PublishDraftAutomationResponseNonNullableFields, type index_d_QueryAutomationsRequest as QueryAutomationsRequest, type index_d_QueryAutomationsResponse as QueryAutomationsResponse, type index_d_QueryAutomationsResponseNonNullableFields as QueryAutomationsResponseNonNullableFields, type index_d_QueryAutomationsWithDraftsOptions as QueryAutomationsWithDraftsOptions, type index_d_QueryAutomationsWithDraftsRequest as QueryAutomationsWithDraftsRequest, type index_d_QueryAutomationsWithDraftsResponse as QueryAutomationsWithDraftsResponse, type index_d_QueryAutomationsWithDraftsResponseNonNullableFields as QueryAutomationsWithDraftsResponseNonNullableFields, type index_d_QueryPreinstalledAutomationsForAppOptions as QueryPreinstalledAutomationsForAppOptions, type index_d_QueryPreinstalledAutomationsForAppRequest as QueryPreinstalledAutomationsForAppRequest, type index_d_QueryPreinstalledAutomationsForAppResponse as QueryPreinstalledAutomationsForAppResponse, type index_d_QueryPreinstalledAutomationsForAppResponseNonNullableFields as QueryPreinstalledAutomationsForAppResponseNonNullableFields, type index_d_Quota as Quota, type index_d_QuotaInfo as QuotaInfo, type index_d_RateLimit as RateLimit, type index_d_RateLimitAction as RateLimitAction, type index_d_RestoreInfo as RestoreInfo, type index_d_ServiceProvisioned as ServiceProvisioned, type index_d_ServiceRemoved as ServiceRemoved, type index_d_SiteCreated as SiteCreated, index_d_SiteCreatedContext as SiteCreatedContext, type index_d_SiteDeleted as SiteDeleted, type index_d_SiteHardDeleted as SiteHardDeleted, type index_d_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d_SitePublished as SitePublished, type index_d_SiteRenamed as SiteRenamed, type index_d_SiteTransferred as SiteTransferred, type index_d_SiteUndeleted as SiteUndeleted, type index_d_SiteUnpublished as SiteUnpublished, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_State as State, index_d_Status as Status, type index_d_StudioAssigned as StudioAssigned, type index_d_StudioUnassigned as StudioUnassigned, index_d_TimeUnit as TimeUnit, type index_d_Trigger as Trigger, type index_d_TriggerConfigurationError as TriggerConfigurationError, index_d_TriggerErrorType as TriggerErrorType, type index_d_TriggerValidationError as TriggerValidationError, type index_d_TriggerValidationErrorErrorOneOf as TriggerValidationErrorErrorOneOf, index_d_TriggerValidationErrorValidationErrorType as TriggerValidationErrorValidationErrorType, index_d_Type as Type, type index_d_UpdateAutomation as UpdateAutomation, type index_d_UpdateAutomationRequest as UpdateAutomationRequest, type index_d_UpdateAutomationResponse as UpdateAutomationResponse, type index_d_UpdateAutomationResponseNonNullableFields as UpdateAutomationResponseNonNullableFields, type index_d_UpdateDraftAutomation as UpdateDraftAutomation, type index_d_UpdateDraftAutomationRequest as UpdateDraftAutomationRequest, type index_d_UpdateDraftAutomationResponse as UpdateDraftAutomationResponse, type index_d_UpdateDraftAutomationResponseNonNullableFields as UpdateDraftAutomationResponseNonNullableFields, type index_d_UpdatePreinstalledAutomationOptions as UpdatePreinstalledAutomationOptions, type index_d_UpdatePreinstalledAutomationRequest as UpdatePreinstalledAutomationRequest, type index_d_UpdatePreinstalledAutomationResponse as UpdatePreinstalledAutomationResponse, type index_d_UpdatePreinstalledAutomationResponseNonNullableFields as UpdatePreinstalledAutomationResponseNonNullableFields, type index_d_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type index_d_UpgradeCTA as UpgradeCTA, type index_d_ValidateAutomationOptions as ValidateAutomationOptions, type index_d_ValidateAutomationRequest as ValidateAutomationRequest, type index_d_ValidateAutomationResponse as ValidateAutomationResponse, type index_d_ValidateAutomationResponseNonNullableFields as ValidateAutomationResponseNonNullableFields, index_d_ValidationErrorSeverity as ValidationErrorSeverity, index_d_ValidationErrorType as ValidationErrorType, type index_d_ValidationSettings as ValidationSettings, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnAutomationCreatedType as _publicOnAutomationCreatedType, type index_d__publicOnAutomationDeletedType as _publicOnAutomationDeletedType, type index_d__publicOnAutomationDeletedWithEntityType as _publicOnAutomationDeletedWithEntityType, type index_d__publicOnAutomationUpdatedType as _publicOnAutomationUpdatedType, type index_d__publicOnAutomationUpdatedWithPreviousEntityType as _publicOnAutomationUpdatedWithPreviousEntityType, index_d_bulkDeleteAutomations as bulkDeleteAutomations, index_d_copyAutomation as copyAutomation, index_d_createAutomation as createAutomation, index_d_createDraftAutomation as createDraftAutomation, index_d_createPreinstalledAutomation as createPreinstalledAutomation, index_d_deleteAutomation as deleteAutomation, index_d_deleteDraftAutomation as deleteDraftAutomation, index_d_deletePreinstalledAutomation as deletePreinstalledAutomation, index_d_getActionsQuotaInfo as getActionsQuotaInfo, index_d_getAutomation as getAutomation, index_d_getAutomationActionSchema as getAutomationActionSchema, index_d_getOrCreateDraftAutomation as getOrCreateDraftAutomation, index_d_onAutomationCreated as onAutomationCreated, index_d_onAutomationDeleted as onAutomationDeleted, index_d_onAutomationDeletedWithEntity as onAutomationDeletedWithEntity, index_d_onAutomationUpdated as onAutomationUpdated, index_d_onAutomationUpdatedWithPreviousEntity as onAutomationUpdatedWithPreviousEntity, onAutomationCreated$1 as publicOnAutomationCreated, onAutomationDeleted$1 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$1 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$1 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$1 as publicOnAutomationUpdatedWithPreviousEntity, index_d_publishDraftAutomation as publishDraftAutomation, index_d_queryAutomations as queryAutomations, index_d_queryAutomationsWithDrafts as queryAutomationsWithDrafts, index_d_queryPreinstalledAutomationsForApp as queryPreinstalledAutomationsForApp, index_d_updateAutomation as updateAutomation, index_d_updateDraftAutomation as updateDraftAutomation, index_d_updatePreinstalledAutomation as updatePreinstalledAutomation, index_d_validateAutomation as validateAutomation };
|
|
6108
6363
|
}
|
|
6109
6364
|
|
|
6110
6365
|
export { index_d$1 as activations, index_d$2 as automationsService, index_d as automationsServiceV2 };
|