@wix/automations 1.0.26 → 1.0.28
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.28",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@wix/automations_activations": "1.0.20",
|
|
22
|
-
"@wix/automations_automations-service": "1.0.
|
|
23
|
-
"@wix/automations_automations-service-v-2": "1.0.
|
|
22
|
+
"@wix/automations_automations-service": "1.0.12",
|
|
23
|
+
"@wix/automations_automations-service-v-2": "1.0.14"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"glob": "^10.4.1",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"fqdn": ""
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
-
"falconPackageHash": "
|
|
48
|
+
"falconPackageHash": "2e87071c758472861ed2e95dd664a6f1d270a04c01bbe3e5597adf19"
|
|
49
49
|
}
|
|
@@ -341,17 +341,15 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
341
341
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
342
342
|
cursorPaging?: CursorPaging$1;
|
|
343
343
|
/**
|
|
344
|
-
* Filter object
|
|
345
|
-
*
|
|
346
|
-
*
|
|
347
|
-
* "fieldName2":{"$operator":"value2"}
|
|
348
|
-
* }`
|
|
349
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
344
|
+
* Filter object.
|
|
345
|
+
*
|
|
346
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
350
347
|
*/
|
|
351
348
|
filter?: Record<string, any> | null;
|
|
352
349
|
/**
|
|
353
|
-
* Sort object
|
|
354
|
-
*
|
|
350
|
+
* Sort object.
|
|
351
|
+
*
|
|
352
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
355
353
|
*/
|
|
356
354
|
sort?: Sorting$1[];
|
|
357
355
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -4135,20 +4133,46 @@ interface BulkActionMetadata {
|
|
|
4135
4133
|
}
|
|
4136
4134
|
interface CreatePreinstalledAutomationRequest {
|
|
4137
4135
|
/** Preinstalled automation to be created. */
|
|
4138
|
-
automation
|
|
4136
|
+
automation?: Automation;
|
|
4137
|
+
/** Optional - hide the created automation behind a spec */
|
|
4138
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4139
|
+
}
|
|
4140
|
+
interface PreinstalledAutomationSpecInfo {
|
|
4141
|
+
/** Spec to conduct on for the automation */
|
|
4142
|
+
spec?: string;
|
|
4143
|
+
/**
|
|
4144
|
+
* Value the spec should return in order to affect the user with the operation
|
|
4145
|
+
* e.g. creation - show the users the automation, update - show the users the updated automation, deletion - not show the users the automation
|
|
4146
|
+
*/
|
|
4147
|
+
variantValue?: string | null;
|
|
4148
|
+
/**
|
|
4149
|
+
* Version from which the experiment should decide whether to expose it to users when !conduct(spec).contains(variant_value)
|
|
4150
|
+
* For example, if 50 is set, version 49 and below (including 49) will not expose the preinstalled automation to the user.
|
|
4151
|
+
*/
|
|
4152
|
+
experimentVersion?: number | null;
|
|
4139
4153
|
}
|
|
4140
4154
|
interface CreatePreinstalledAutomationResponse {
|
|
4141
4155
|
/** The created preinstalled automation. */
|
|
4142
4156
|
automation?: Automation;
|
|
4143
4157
|
}
|
|
4158
|
+
interface UpdatePreinstalledAutomationRequest {
|
|
4159
|
+
/** Preinstalled automation to update. */
|
|
4160
|
+
automation?: Automation;
|
|
4161
|
+
/** Optional - hide the updated automation behind a spec */
|
|
4162
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4163
|
+
}
|
|
4164
|
+
interface UpdatePreinstalledAutomationResponse {
|
|
4165
|
+
/** Updated preinstalled automation. */
|
|
4166
|
+
automation?: Automation;
|
|
4167
|
+
}
|
|
4144
4168
|
interface DeletePreinstalledAutomationRequest {
|
|
4145
|
-
/**
|
|
4146
|
-
|
|
4169
|
+
/** Preinstalled Component Id */
|
|
4170
|
+
componentId?: string;
|
|
4147
4171
|
/**
|
|
4148
|
-
*
|
|
4149
|
-
*
|
|
4172
|
+
* Optional - makes the deletion operation gradual
|
|
4173
|
+
* The automation will not return if the variant returns for the site
|
|
4150
4174
|
*/
|
|
4151
|
-
|
|
4175
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4152
4176
|
}
|
|
4153
4177
|
interface DeletePreinstalledAutomationResponse {
|
|
4154
4178
|
}
|
|
@@ -4876,9 +4900,6 @@ interface BulkDeleteAutomationsResponseNonNullableFields {
|
|
|
4876
4900
|
results: BulkDeleteResultNonNullableFields[];
|
|
4877
4901
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4878
4902
|
}
|
|
4879
|
-
interface CreatePreinstalledAutomationResponseNonNullableFields {
|
|
4880
|
-
automation?: AutomationNonNullableFields;
|
|
4881
|
-
}
|
|
4882
4903
|
interface QueryAutomationsResponseNonNullableFields {
|
|
4883
4904
|
automations: AutomationNonNullableFields[];
|
|
4884
4905
|
}
|
|
@@ -5091,13 +5112,6 @@ interface UpdateAutomation {
|
|
|
5091
5112
|
/** Namespace */
|
|
5092
5113
|
namespace?: string | null;
|
|
5093
5114
|
}
|
|
5094
|
-
interface DeletePreinstalledAutomationOptions {
|
|
5095
|
-
/**
|
|
5096
|
-
* Whether to ignore the override check.
|
|
5097
|
-
* Default: `false`
|
|
5098
|
-
*/
|
|
5099
|
-
ignoreOverrideCheck?: boolean;
|
|
5100
|
-
}
|
|
5101
5115
|
interface QueryCursorResult {
|
|
5102
5116
|
cursors: Cursors;
|
|
5103
5117
|
hasNext: () => boolean;
|
|
@@ -5289,22 +5303,6 @@ interface BulkDeleteAutomationsSignature {
|
|
|
5289
5303
|
*/
|
|
5290
5304
|
(automationIds: string[]): Promise<BulkDeleteAutomationsResponse & BulkDeleteAutomationsResponseNonNullableFields>;
|
|
5291
5305
|
}
|
|
5292
|
-
declare function createPreinstalledAutomation$1(httpClient: HttpClient): CreatePreinstalledAutomationSignature;
|
|
5293
|
-
interface CreatePreinstalledAutomationSignature {
|
|
5294
|
-
/**
|
|
5295
|
-
* Temporary - Creates a Preinstalled Automation.
|
|
5296
|
-
* @param - Preinstalled automation to be created.
|
|
5297
|
-
*/
|
|
5298
|
-
(automation: Automation): Promise<CreatePreinstalledAutomationResponse & CreatePreinstalledAutomationResponseNonNullableFields>;
|
|
5299
|
-
}
|
|
5300
|
-
declare function deletePreinstalledAutomation$1(httpClient: HttpClient): DeletePreinstalledAutomationSignature;
|
|
5301
|
-
interface DeletePreinstalledAutomationSignature {
|
|
5302
|
-
/**
|
|
5303
|
-
* Temporary - Deletes a Preinstalled Automation.
|
|
5304
|
-
* @param - Automation ID.
|
|
5305
|
-
*/
|
|
5306
|
-
(automationId: string, options?: DeletePreinstalledAutomationOptions | undefined): Promise<void>;
|
|
5307
|
-
}
|
|
5308
5306
|
declare function queryAutomations$1(httpClient: HttpClient): QueryAutomationsSignature;
|
|
5309
5307
|
interface QueryAutomationsSignature {
|
|
5310
5308
|
/**
|
|
@@ -5419,8 +5417,6 @@ declare const getAutomation: BuildRESTFunction<typeof getAutomation$1> & typeof
|
|
|
5419
5417
|
declare const updateAutomation: BuildRESTFunction<typeof updateAutomation$1> & typeof updateAutomation$1;
|
|
5420
5418
|
declare const deleteAutomation: BuildRESTFunction<typeof deleteAutomation$1> & typeof deleteAutomation$1;
|
|
5421
5419
|
declare const bulkDeleteAutomations: BuildRESTFunction<typeof bulkDeleteAutomations$1> & typeof bulkDeleteAutomations$1;
|
|
5422
|
-
declare const createPreinstalledAutomation: BuildRESTFunction<typeof createPreinstalledAutomation$1> & typeof createPreinstalledAutomation$1;
|
|
5423
|
-
declare const deletePreinstalledAutomation: BuildRESTFunction<typeof deletePreinstalledAutomation$1> & typeof deletePreinstalledAutomation$1;
|
|
5424
5420
|
declare const queryAutomations: BuildRESTFunction<typeof queryAutomations$1> & typeof queryAutomations$1;
|
|
5425
5421
|
declare const copyAutomation: BuildRESTFunction<typeof copyAutomation$1> & typeof copyAutomation$1;
|
|
5426
5422
|
declare const createDraftAutomation: BuildRESTFunction<typeof createDraftAutomation$1> & typeof createDraftAutomation$1;
|
|
@@ -5505,7 +5501,6 @@ type context_CreateDraftAutomationResponse = CreateDraftAutomationResponse;
|
|
|
5505
5501
|
type context_CreateDraftAutomationResponseNonNullableFields = CreateDraftAutomationResponseNonNullableFields;
|
|
5506
5502
|
type context_CreatePreinstalledAutomationRequest = CreatePreinstalledAutomationRequest;
|
|
5507
5503
|
type context_CreatePreinstalledAutomationResponse = CreatePreinstalledAutomationResponse;
|
|
5508
|
-
type context_CreatePreinstalledAutomationResponseNonNullableFields = CreatePreinstalledAutomationResponseNonNullableFields;
|
|
5509
5504
|
type context_CursorPaging = CursorPaging;
|
|
5510
5505
|
type context_CursorPagingMetadata = CursorPagingMetadata;
|
|
5511
5506
|
type context_CursorQuery = CursorQuery;
|
|
@@ -5517,7 +5512,6 @@ type context_DeleteAutomationResponse = DeleteAutomationResponse;
|
|
|
5517
5512
|
type context_DeleteContext = DeleteContext;
|
|
5518
5513
|
type context_DeleteDraftAutomationRequest = DeleteDraftAutomationRequest;
|
|
5519
5514
|
type context_DeleteDraftAutomationResponse = DeleteDraftAutomationResponse;
|
|
5520
|
-
type context_DeletePreinstalledAutomationOptions = DeletePreinstalledAutomationOptions;
|
|
5521
5515
|
type context_DeletePreinstalledAutomationRequest = DeletePreinstalledAutomationRequest;
|
|
5522
5516
|
type context_DeletePreinstalledAutomationResponse = DeletePreinstalledAutomationResponse;
|
|
5523
5517
|
type context_DeleteStatus = DeleteStatus;
|
|
@@ -5564,6 +5558,7 @@ type context_Origin = Origin;
|
|
|
5564
5558
|
declare const context_Origin: typeof Origin;
|
|
5565
5559
|
type context_OutputAction = OutputAction;
|
|
5566
5560
|
type context_Plan = Plan;
|
|
5561
|
+
type context_PreinstalledAutomationSpecInfo = PreinstalledAutomationSpecInfo;
|
|
5567
5562
|
type context_PreinstalledOrigin = PreinstalledOrigin;
|
|
5568
5563
|
type context_ProviderConfigurationError = ProviderConfigurationError;
|
|
5569
5564
|
type context_PublishDraftAutomationRequest = PublishDraftAutomationRequest;
|
|
@@ -5623,6 +5618,8 @@ type context_UpdateDraftAutomation = UpdateDraftAutomation;
|
|
|
5623
5618
|
type context_UpdateDraftAutomationRequest = UpdateDraftAutomationRequest;
|
|
5624
5619
|
type context_UpdateDraftAutomationResponse = UpdateDraftAutomationResponse;
|
|
5625
5620
|
type context_UpdateDraftAutomationResponseNonNullableFields = UpdateDraftAutomationResponseNonNullableFields;
|
|
5621
|
+
type context_UpdatePreinstalledAutomationRequest = UpdatePreinstalledAutomationRequest;
|
|
5622
|
+
type context_UpdatePreinstalledAutomationResponse = UpdatePreinstalledAutomationResponse;
|
|
5626
5623
|
type context_UpdatedWithPreviousEntity = UpdatedWithPreviousEntity;
|
|
5627
5624
|
type context_UpgradeCTA = UpgradeCTA;
|
|
5628
5625
|
type context_ValidateAutomationOptions = ValidateAutomationOptions;
|
|
@@ -5643,10 +5640,8 @@ declare const context_bulkDeleteAutomations: typeof bulkDeleteAutomations;
|
|
|
5643
5640
|
declare const context_copyAutomation: typeof copyAutomation;
|
|
5644
5641
|
declare const context_createAutomation: typeof createAutomation;
|
|
5645
5642
|
declare const context_createDraftAutomation: typeof createDraftAutomation;
|
|
5646
|
-
declare const context_createPreinstalledAutomation: typeof createPreinstalledAutomation;
|
|
5647
5643
|
declare const context_deleteAutomation: typeof deleteAutomation;
|
|
5648
5644
|
declare const context_deleteDraftAutomation: typeof deleteDraftAutomation;
|
|
5649
|
-
declare const context_deletePreinstalledAutomation: typeof deletePreinstalledAutomation;
|
|
5650
5645
|
declare const context_getActionsQuotaInfo: typeof getActionsQuotaInfo;
|
|
5651
5646
|
declare const context_getAutomation: typeof getAutomation;
|
|
5652
5647
|
declare const context_getAutomationActionSchema: typeof getAutomationActionSchema;
|
|
@@ -5662,7 +5657,7 @@ declare const context_updateAutomation: typeof updateAutomation;
|
|
|
5662
5657
|
declare const context_updateDraftAutomation: typeof updateDraftAutomation;
|
|
5663
5658
|
declare const context_validateAutomation: typeof validateAutomation;
|
|
5664
5659
|
declare namespace context {
|
|
5665
|
-
export { type context_Action as Action, type context_ActionConfigurationError as ActionConfigurationError, context_ActionErrorType as ActionErrorType, type context_ActionEvent as ActionEvent, type context_ActionInfoOneOf as ActionInfoOneOf, type context_ActionProviderQuotaInfo as ActionProviderQuotaInfo, type context_ActionQuotaInfo as ActionQuotaInfo, type context_ActionSettings as ActionSettings, type context_ActionValidationError as ActionValidationError, type context_ActionValidationErrorErrorOneOf as ActionValidationErrorErrorOneOf, type context_ActionValidationInfo as ActionValidationInfo, type context_AdditionalInfo as AdditionalInfo, type context_AppDefinedAction as AppDefinedAction, type context_ApplicationError as ApplicationError, type context_ApplicationOrigin as ApplicationOrigin, type context_Asset as Asset, type context_AuditInfo as AuditInfo, type context_AuditInfoIdOneOf as AuditInfoIdOneOf, type context_Automation as Automation, type context_AutomationConfiguration as AutomationConfiguration, type context_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type context_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type context_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, type context_AutomationNonNullableFields as AutomationNonNullableFields, type context_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type context_AutomationSettings as AutomationSettings, type context_AutomationUpdatedEnvelope as AutomationUpdatedEnvelope, type context_AutomationUpdatedWithPreviousEntityEnvelope as AutomationUpdatedWithPreviousEntityEnvelope, type context_AutomationsQueryBuilder as AutomationsQueryBuilder, type context_AutomationsQueryResult as AutomationsQueryResult, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkDeleteAutomationsRequest as BulkDeleteAutomationsRequest, type context_BulkDeleteAutomationsResponse as BulkDeleteAutomationsResponse, type context_BulkDeleteAutomationsResponseNonNullableFields as BulkDeleteAutomationsResponseNonNullableFields, type context_BulkDeleteResult as BulkDeleteResult, type context_CTA as CTA, type context_ConditionAction as ConditionAction, type context_ConditionExpressionGroup as ConditionExpressionGroup, type context_CopyAutomationOptions as CopyAutomationOptions, type context_CopyAutomationRequest as CopyAutomationRequest, type context_CopyAutomationResponse as CopyAutomationResponse, type context_CopyAutomationResponseNonNullableFields as CopyAutomationResponseNonNullableFields, type context_CreateAutomationRequest as CreateAutomationRequest, type context_CreateAutomationResponse as CreateAutomationResponse, type context_CreateAutomationResponseNonNullableFields as CreateAutomationResponseNonNullableFields, type context_CreateDraftAutomationOptions as CreateDraftAutomationOptions, type context_CreateDraftAutomationRequest as CreateDraftAutomationRequest, type context_CreateDraftAutomationResponse as CreateDraftAutomationResponse, type context_CreateDraftAutomationResponseNonNullableFields as CreateDraftAutomationResponseNonNullableFields, type context_CreatePreinstalledAutomationRequest as CreatePreinstalledAutomationRequest, type context_CreatePreinstalledAutomationResponse as CreatePreinstalledAutomationResponse, type context_CreatePreinstalledAutomationResponseNonNullableFields as CreatePreinstalledAutomationResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_DelayAction as DelayAction, type context_DeleteAutomationRequest as DeleteAutomationRequest, type context_DeleteAutomationResponse as DeleteAutomationResponse, type context_DeleteContext as DeleteContext, type context_DeleteDraftAutomationRequest as DeleteDraftAutomationRequest, type context_DeleteDraftAutomationResponse as DeleteDraftAutomationResponse, type context_DeletePreinstalledAutomationOptions as DeletePreinstalledAutomationOptions, type context_DeletePreinstalledAutomationRequest as DeletePreinstalledAutomationRequest, type context_DeletePreinstalledAutomationResponse as DeletePreinstalledAutomationResponse, context_DeleteStatus as DeleteStatus, type context_DeletedWithEntity as DeletedWithEntity, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DraftInfo as DraftInfo, type context_DraftsInfo as DraftsInfo, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_Filter as Filter, type context_FutureDateActivationOffset as FutureDateActivationOffset, type context_GetActionsQuotaInfoRequest as GetActionsQuotaInfoRequest, type context_GetActionsQuotaInfoResponse as GetActionsQuotaInfoResponse, type context_GetActionsQuotaInfoResponseNonNullableFields as GetActionsQuotaInfoResponseNonNullableFields, type context_GetAutomationActionSchemaIdentifiers as GetAutomationActionSchemaIdentifiers, type context_GetAutomationActionSchemaRequest as GetAutomationActionSchemaRequest, type context_GetAutomationActionSchemaResponse as GetAutomationActionSchemaResponse, type context_GetAutomationOptions as GetAutomationOptions, type context_GetAutomationRequest as GetAutomationRequest, type context_GetAutomationResponse as GetAutomationResponse, type context_GetAutomationResponseNonNullableFields as GetAutomationResponseNonNullableFields, type context_GetAutomationRevisionRequest as GetAutomationRevisionRequest, type context_GetAutomationRevisionResponse as GetAutomationRevisionResponse, type context_GetOrCreateDraftAutomationRequest as GetOrCreateDraftAutomationRequest, type context_GetOrCreateDraftAutomationResponse as GetOrCreateDraftAutomationResponse, type context_GetOrCreateDraftAutomationResponseNonNullableFields as GetOrCreateDraftAutomationResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_ItemMetadata as ItemMetadata, type context_MessageEnvelope as MessageEnvelope, type context_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, context_Namespace as Namespace, type context_NamespaceChanged as NamespaceChanged, context_Operator as Operator, context_Origin as Origin, type context_OutputAction as OutputAction, type context_Plan as Plan, type context_PreinstalledOrigin as PreinstalledOrigin, type context_ProviderConfigurationError as ProviderConfigurationError, type context_PublishDraftAutomationRequest as PublishDraftAutomationRequest, type context_PublishDraftAutomationResponse as PublishDraftAutomationResponse, type context_QueryAutomationsRequest as QueryAutomationsRequest, type context_QueryAutomationsResponse as QueryAutomationsResponse, type context_QueryAutomationsResponseNonNullableFields as QueryAutomationsResponseNonNullableFields, type context_QueryAutomationsWithDraftsOptions as QueryAutomationsWithDraftsOptions, type context_QueryAutomationsWithDraftsRequest as QueryAutomationsWithDraftsRequest, type context_QueryAutomationsWithDraftsResponse as QueryAutomationsWithDraftsResponse, type context_QueryAutomationsWithDraftsResponseNonNullableFields as QueryAutomationsWithDraftsResponseNonNullableFields, type context_Quota as Quota, type context_QuotaInfo as QuotaInfo, type context_RateLimit as RateLimit, type context_RateLimitAction as RateLimitAction, type context_RestoreInfo as RestoreInfo, type context_ServiceProvisioned as ServiceProvisioned, type context_ServiceRemoved as ServiceRemoved, type context_SiteCreated as SiteCreated, context_SiteCreatedContext as SiteCreatedContext, type context_SiteDeleted as SiteDeleted, type context_SiteHardDeleted as SiteHardDeleted, type context_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context_SitePublished as SitePublished, type context_SiteRenamed as SiteRenamed, type context_SiteTransferred as SiteTransferred, type context_SiteUndeleted as SiteUndeleted, type context_SiteUnpublished as SiteUnpublished, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_State as State, context_Status as Status, type context_StudioAssigned as StudioAssigned, type context_StudioUnassigned as StudioUnassigned, context_TimeUnit as TimeUnit, type context_Trigger as Trigger, type context_TriggerConfigurationError as TriggerConfigurationError, context_TriggerErrorType as TriggerErrorType, type context_TriggerValidationError as TriggerValidationError, type context_TriggerValidationErrorErrorOneOf as TriggerValidationErrorErrorOneOf, context_TriggerValidationErrorValidationErrorType as TriggerValidationErrorValidationErrorType, context_Type as Type, type context_UpdateAutomation as UpdateAutomation, type context_UpdateAutomationRequest as UpdateAutomationRequest, type context_UpdateAutomationResponse as UpdateAutomationResponse, type context_UpdateAutomationResponseNonNullableFields as UpdateAutomationResponseNonNullableFields, type context_UpdateDraftAutomation as UpdateDraftAutomation, type context_UpdateDraftAutomationRequest as UpdateDraftAutomationRequest, type context_UpdateDraftAutomationResponse as UpdateDraftAutomationResponse, type context_UpdateDraftAutomationResponseNonNullableFields as UpdateDraftAutomationResponseNonNullableFields, type context_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type context_UpgradeCTA as UpgradeCTA, type context_ValidateAutomationOptions as ValidateAutomationOptions, type context_ValidateAutomationRequest as ValidateAutomationRequest, type context_ValidateAutomationResponse as ValidateAutomationResponse, type context_ValidateAutomationResponseNonNullableFields as ValidateAutomationResponseNonNullableFields, context_ValidationErrorType as ValidationErrorType, type context_ValidationSettings as ValidationSettings, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnAutomationCreatedType as _publicOnAutomationCreatedType, type context__publicOnAutomationDeletedType as _publicOnAutomationDeletedType, type context__publicOnAutomationDeletedWithEntityType as _publicOnAutomationDeletedWithEntityType, type context__publicOnAutomationUpdatedType as _publicOnAutomationUpdatedType, type context__publicOnAutomationUpdatedWithPreviousEntityType as _publicOnAutomationUpdatedWithPreviousEntityType, context_bulkDeleteAutomations as bulkDeleteAutomations, context_copyAutomation as copyAutomation, context_createAutomation as createAutomation, context_createDraftAutomation as createDraftAutomation, context_createPreinstalledAutomation as createPreinstalledAutomation, context_deleteAutomation as deleteAutomation, context_deleteDraftAutomation as deleteDraftAutomation, context_deletePreinstalledAutomation as deletePreinstalledAutomation, context_getActionsQuotaInfo as getActionsQuotaInfo, context_getAutomation as getAutomation, context_getAutomationActionSchema as getAutomationActionSchema, context_getOrCreateDraftAutomation as getOrCreateDraftAutomation, context_onAutomationCreated as onAutomationCreated, context_onAutomationDeleted as onAutomationDeleted, context_onAutomationDeletedWithEntity as onAutomationDeletedWithEntity, context_onAutomationUpdated as onAutomationUpdated, context_onAutomationUpdatedWithPreviousEntity as onAutomationUpdatedWithPreviousEntity, onAutomationCreated$1 as publicOnAutomationCreated, onAutomationDeleted$1 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$1 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$1 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$1 as publicOnAutomationUpdatedWithPreviousEntity, context_queryAutomations as queryAutomations, context_queryAutomationsWithDrafts as queryAutomationsWithDrafts, context_updateAutomation as updateAutomation, context_updateDraftAutomation as updateDraftAutomation, context_validateAutomation as validateAutomation };
|
|
5660
|
+
export { type context_Action as Action, type context_ActionConfigurationError as ActionConfigurationError, context_ActionErrorType as ActionErrorType, type context_ActionEvent as ActionEvent, type context_ActionInfoOneOf as ActionInfoOneOf, type context_ActionProviderQuotaInfo as ActionProviderQuotaInfo, type context_ActionQuotaInfo as ActionQuotaInfo, type context_ActionSettings as ActionSettings, type context_ActionValidationError as ActionValidationError, type context_ActionValidationErrorErrorOneOf as ActionValidationErrorErrorOneOf, type context_ActionValidationInfo as ActionValidationInfo, type context_AdditionalInfo as AdditionalInfo, type context_AppDefinedAction as AppDefinedAction, type context_ApplicationError as ApplicationError, type context_ApplicationOrigin as ApplicationOrigin, type context_Asset as Asset, type context_AuditInfo as AuditInfo, type context_AuditInfoIdOneOf as AuditInfoIdOneOf, type context_Automation as Automation, type context_AutomationConfiguration as AutomationConfiguration, type context_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type context_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type context_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, type context_AutomationNonNullableFields as AutomationNonNullableFields, type context_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type context_AutomationSettings as AutomationSettings, type context_AutomationUpdatedEnvelope as AutomationUpdatedEnvelope, type context_AutomationUpdatedWithPreviousEntityEnvelope as AutomationUpdatedWithPreviousEntityEnvelope, type context_AutomationsQueryBuilder as AutomationsQueryBuilder, type context_AutomationsQueryResult as AutomationsQueryResult, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkDeleteAutomationsRequest as BulkDeleteAutomationsRequest, type context_BulkDeleteAutomationsResponse as BulkDeleteAutomationsResponse, type context_BulkDeleteAutomationsResponseNonNullableFields as BulkDeleteAutomationsResponseNonNullableFields, type context_BulkDeleteResult as BulkDeleteResult, type context_CTA as CTA, type context_ConditionAction as ConditionAction, type context_ConditionExpressionGroup as ConditionExpressionGroup, type context_CopyAutomationOptions as CopyAutomationOptions, type context_CopyAutomationRequest as CopyAutomationRequest, type context_CopyAutomationResponse as CopyAutomationResponse, type context_CopyAutomationResponseNonNullableFields as CopyAutomationResponseNonNullableFields, type context_CreateAutomationRequest as CreateAutomationRequest, type context_CreateAutomationResponse as CreateAutomationResponse, type context_CreateAutomationResponseNonNullableFields as CreateAutomationResponseNonNullableFields, type context_CreateDraftAutomationOptions as CreateDraftAutomationOptions, type context_CreateDraftAutomationRequest as CreateDraftAutomationRequest, type context_CreateDraftAutomationResponse as CreateDraftAutomationResponse, type context_CreateDraftAutomationResponseNonNullableFields as CreateDraftAutomationResponseNonNullableFields, type context_CreatePreinstalledAutomationRequest as CreatePreinstalledAutomationRequest, type context_CreatePreinstalledAutomationResponse as CreatePreinstalledAutomationResponse, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_DelayAction as DelayAction, type context_DeleteAutomationRequest as DeleteAutomationRequest, type context_DeleteAutomationResponse as DeleteAutomationResponse, type context_DeleteContext as DeleteContext, type context_DeleteDraftAutomationRequest as DeleteDraftAutomationRequest, type context_DeleteDraftAutomationResponse as DeleteDraftAutomationResponse, type context_DeletePreinstalledAutomationRequest as DeletePreinstalledAutomationRequest, type context_DeletePreinstalledAutomationResponse as DeletePreinstalledAutomationResponse, context_DeleteStatus as DeleteStatus, type context_DeletedWithEntity as DeletedWithEntity, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DraftInfo as DraftInfo, type context_DraftsInfo as DraftsInfo, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_Filter as Filter, type context_FutureDateActivationOffset as FutureDateActivationOffset, type context_GetActionsQuotaInfoRequest as GetActionsQuotaInfoRequest, type context_GetActionsQuotaInfoResponse as GetActionsQuotaInfoResponse, type context_GetActionsQuotaInfoResponseNonNullableFields as GetActionsQuotaInfoResponseNonNullableFields, type context_GetAutomationActionSchemaIdentifiers as GetAutomationActionSchemaIdentifiers, type context_GetAutomationActionSchemaRequest as GetAutomationActionSchemaRequest, type context_GetAutomationActionSchemaResponse as GetAutomationActionSchemaResponse, type context_GetAutomationOptions as GetAutomationOptions, type context_GetAutomationRequest as GetAutomationRequest, type context_GetAutomationResponse as GetAutomationResponse, type context_GetAutomationResponseNonNullableFields as GetAutomationResponseNonNullableFields, type context_GetAutomationRevisionRequest as GetAutomationRevisionRequest, type context_GetAutomationRevisionResponse as GetAutomationRevisionResponse, type context_GetOrCreateDraftAutomationRequest as GetOrCreateDraftAutomationRequest, type context_GetOrCreateDraftAutomationResponse as GetOrCreateDraftAutomationResponse, type context_GetOrCreateDraftAutomationResponseNonNullableFields as GetOrCreateDraftAutomationResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_ItemMetadata as ItemMetadata, type context_MessageEnvelope as MessageEnvelope, type context_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, context_Namespace as Namespace, type context_NamespaceChanged as NamespaceChanged, context_Operator as Operator, context_Origin as Origin, type context_OutputAction as OutputAction, type context_Plan as Plan, type context_PreinstalledAutomationSpecInfo as PreinstalledAutomationSpecInfo, type context_PreinstalledOrigin as PreinstalledOrigin, type context_ProviderConfigurationError as ProviderConfigurationError, type context_PublishDraftAutomationRequest as PublishDraftAutomationRequest, type context_PublishDraftAutomationResponse as PublishDraftAutomationResponse, type context_QueryAutomationsRequest as QueryAutomationsRequest, type context_QueryAutomationsResponse as QueryAutomationsResponse, type context_QueryAutomationsResponseNonNullableFields as QueryAutomationsResponseNonNullableFields, type context_QueryAutomationsWithDraftsOptions as QueryAutomationsWithDraftsOptions, type context_QueryAutomationsWithDraftsRequest as QueryAutomationsWithDraftsRequest, type context_QueryAutomationsWithDraftsResponse as QueryAutomationsWithDraftsResponse, type context_QueryAutomationsWithDraftsResponseNonNullableFields as QueryAutomationsWithDraftsResponseNonNullableFields, type context_Quota as Quota, type context_QuotaInfo as QuotaInfo, type context_RateLimit as RateLimit, type context_RateLimitAction as RateLimitAction, type context_RestoreInfo as RestoreInfo, type context_ServiceProvisioned as ServiceProvisioned, type context_ServiceRemoved as ServiceRemoved, type context_SiteCreated as SiteCreated, context_SiteCreatedContext as SiteCreatedContext, type context_SiteDeleted as SiteDeleted, type context_SiteHardDeleted as SiteHardDeleted, type context_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context_SitePublished as SitePublished, type context_SiteRenamed as SiteRenamed, type context_SiteTransferred as SiteTransferred, type context_SiteUndeleted as SiteUndeleted, type context_SiteUnpublished as SiteUnpublished, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_State as State, context_Status as Status, type context_StudioAssigned as StudioAssigned, type context_StudioUnassigned as StudioUnassigned, context_TimeUnit as TimeUnit, type context_Trigger as Trigger, type context_TriggerConfigurationError as TriggerConfigurationError, context_TriggerErrorType as TriggerErrorType, type context_TriggerValidationError as TriggerValidationError, type context_TriggerValidationErrorErrorOneOf as TriggerValidationErrorErrorOneOf, context_TriggerValidationErrorValidationErrorType as TriggerValidationErrorValidationErrorType, context_Type as Type, type context_UpdateAutomation as UpdateAutomation, type context_UpdateAutomationRequest as UpdateAutomationRequest, type context_UpdateAutomationResponse as UpdateAutomationResponse, type context_UpdateAutomationResponseNonNullableFields as UpdateAutomationResponseNonNullableFields, type context_UpdateDraftAutomation as UpdateDraftAutomation, type context_UpdateDraftAutomationRequest as UpdateDraftAutomationRequest, type context_UpdateDraftAutomationResponse as UpdateDraftAutomationResponse, type context_UpdateDraftAutomationResponseNonNullableFields as UpdateDraftAutomationResponseNonNullableFields, type context_UpdatePreinstalledAutomationRequest as UpdatePreinstalledAutomationRequest, type context_UpdatePreinstalledAutomationResponse as UpdatePreinstalledAutomationResponse, type context_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type context_UpgradeCTA as UpgradeCTA, type context_ValidateAutomationOptions as ValidateAutomationOptions, type context_ValidateAutomationRequest as ValidateAutomationRequest, type context_ValidateAutomationResponse as ValidateAutomationResponse, type context_ValidateAutomationResponseNonNullableFields as ValidateAutomationResponseNonNullableFields, context_ValidationErrorType as ValidationErrorType, type context_ValidationSettings as ValidationSettings, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnAutomationCreatedType as _publicOnAutomationCreatedType, type context__publicOnAutomationDeletedType as _publicOnAutomationDeletedType, type context__publicOnAutomationDeletedWithEntityType as _publicOnAutomationDeletedWithEntityType, type context__publicOnAutomationUpdatedType as _publicOnAutomationUpdatedType, type context__publicOnAutomationUpdatedWithPreviousEntityType as _publicOnAutomationUpdatedWithPreviousEntityType, context_bulkDeleteAutomations as bulkDeleteAutomations, context_copyAutomation as copyAutomation, context_createAutomation as createAutomation, context_createDraftAutomation as createDraftAutomation, context_deleteAutomation as deleteAutomation, context_deleteDraftAutomation as deleteDraftAutomation, context_getActionsQuotaInfo as getActionsQuotaInfo, context_getAutomation as getAutomation, context_getAutomationActionSchema as getAutomationActionSchema, context_getOrCreateDraftAutomation as getOrCreateDraftAutomation, context_onAutomationCreated as onAutomationCreated, context_onAutomationDeleted as onAutomationDeleted, context_onAutomationDeletedWithEntity as onAutomationDeletedWithEntity, context_onAutomationUpdated as onAutomationUpdated, context_onAutomationUpdatedWithPreviousEntity as onAutomationUpdatedWithPreviousEntity, onAutomationCreated$1 as publicOnAutomationCreated, onAutomationDeleted$1 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$1 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$1 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$1 as publicOnAutomationUpdatedWithPreviousEntity, context_queryAutomations as queryAutomations, context_queryAutomationsWithDrafts as queryAutomationsWithDrafts, context_updateAutomation as updateAutomation, context_updateDraftAutomation as updateDraftAutomation, context_validateAutomation as validateAutomation };
|
|
5666
5661
|
}
|
|
5667
5662
|
|
|
5668
5663
|
export { context$1 as activations, context$2 as automationsService, context as automationsServiceV2 };
|
|
@@ -341,17 +341,15 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
341
341
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
342
342
|
cursorPaging?: CursorPaging$1;
|
|
343
343
|
/**
|
|
344
|
-
* Filter object
|
|
345
|
-
*
|
|
346
|
-
*
|
|
347
|
-
* "fieldName2":{"$operator":"value2"}
|
|
348
|
-
* }`
|
|
349
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
344
|
+
* Filter object.
|
|
345
|
+
*
|
|
346
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
350
347
|
*/
|
|
351
348
|
filter?: Record<string, any> | null;
|
|
352
349
|
/**
|
|
353
|
-
* Sort object
|
|
354
|
-
*
|
|
350
|
+
* Sort object.
|
|
351
|
+
*
|
|
352
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
355
353
|
*/
|
|
356
354
|
sort?: Sorting$1[];
|
|
357
355
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -4135,20 +4133,46 @@ interface BulkActionMetadata {
|
|
|
4135
4133
|
}
|
|
4136
4134
|
interface CreatePreinstalledAutomationRequest {
|
|
4137
4135
|
/** Preinstalled automation to be created. */
|
|
4138
|
-
automation
|
|
4136
|
+
automation?: Automation;
|
|
4137
|
+
/** Optional - hide the created automation behind a spec */
|
|
4138
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4139
|
+
}
|
|
4140
|
+
interface PreinstalledAutomationSpecInfo {
|
|
4141
|
+
/** Spec to conduct on for the automation */
|
|
4142
|
+
spec?: string;
|
|
4143
|
+
/**
|
|
4144
|
+
* Value the spec should return in order to affect the user with the operation
|
|
4145
|
+
* e.g. creation - show the users the automation, update - show the users the updated automation, deletion - not show the users the automation
|
|
4146
|
+
*/
|
|
4147
|
+
variantValue?: string | null;
|
|
4148
|
+
/**
|
|
4149
|
+
* Version from which the experiment should decide whether to expose it to users when !conduct(spec).contains(variant_value)
|
|
4150
|
+
* For example, if 50 is set, version 49 and below (including 49) will not expose the preinstalled automation to the user.
|
|
4151
|
+
*/
|
|
4152
|
+
experimentVersion?: number | null;
|
|
4139
4153
|
}
|
|
4140
4154
|
interface CreatePreinstalledAutomationResponse {
|
|
4141
4155
|
/** The created preinstalled automation. */
|
|
4142
4156
|
automation?: Automation;
|
|
4143
4157
|
}
|
|
4158
|
+
interface UpdatePreinstalledAutomationRequest {
|
|
4159
|
+
/** Preinstalled automation to update. */
|
|
4160
|
+
automation?: Automation;
|
|
4161
|
+
/** Optional - hide the updated automation behind a spec */
|
|
4162
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4163
|
+
}
|
|
4164
|
+
interface UpdatePreinstalledAutomationResponse {
|
|
4165
|
+
/** Updated preinstalled automation. */
|
|
4166
|
+
automation?: Automation;
|
|
4167
|
+
}
|
|
4144
4168
|
interface DeletePreinstalledAutomationRequest {
|
|
4145
|
-
/**
|
|
4146
|
-
|
|
4169
|
+
/** Preinstalled Component Id */
|
|
4170
|
+
componentId?: string;
|
|
4147
4171
|
/**
|
|
4148
|
-
*
|
|
4149
|
-
*
|
|
4172
|
+
* Optional - makes the deletion operation gradual
|
|
4173
|
+
* The automation will not return if the variant returns for the site
|
|
4150
4174
|
*/
|
|
4151
|
-
|
|
4175
|
+
specInfo?: PreinstalledAutomationSpecInfo;
|
|
4152
4176
|
}
|
|
4153
4177
|
interface DeletePreinstalledAutomationResponse {
|
|
4154
4178
|
}
|
|
@@ -4876,9 +4900,6 @@ interface BulkDeleteAutomationsResponseNonNullableFields {
|
|
|
4876
4900
|
results: BulkDeleteResultNonNullableFields[];
|
|
4877
4901
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4878
4902
|
}
|
|
4879
|
-
interface CreatePreinstalledAutomationResponseNonNullableFields {
|
|
4880
|
-
automation?: AutomationNonNullableFields;
|
|
4881
|
-
}
|
|
4882
4903
|
interface QueryAutomationsResponseNonNullableFields {
|
|
4883
4904
|
automations: AutomationNonNullableFields[];
|
|
4884
4905
|
}
|
|
@@ -5091,13 +5112,6 @@ interface UpdateAutomation {
|
|
|
5091
5112
|
/** Namespace */
|
|
5092
5113
|
namespace?: string | null;
|
|
5093
5114
|
}
|
|
5094
|
-
interface DeletePreinstalledAutomationOptions {
|
|
5095
|
-
/**
|
|
5096
|
-
* Whether to ignore the override check.
|
|
5097
|
-
* Default: `false`
|
|
5098
|
-
*/
|
|
5099
|
-
ignoreOverrideCheck?: boolean;
|
|
5100
|
-
}
|
|
5101
5115
|
interface QueryCursorResult {
|
|
5102
5116
|
cursors: Cursors;
|
|
5103
5117
|
hasNext: () => boolean;
|
|
@@ -5289,22 +5303,6 @@ interface BulkDeleteAutomationsSignature {
|
|
|
5289
5303
|
*/
|
|
5290
5304
|
(automationIds: string[]): Promise<BulkDeleteAutomationsResponse & BulkDeleteAutomationsResponseNonNullableFields>;
|
|
5291
5305
|
}
|
|
5292
|
-
declare function createPreinstalledAutomation$1(httpClient: HttpClient): CreatePreinstalledAutomationSignature;
|
|
5293
|
-
interface CreatePreinstalledAutomationSignature {
|
|
5294
|
-
/**
|
|
5295
|
-
* Temporary - Creates a Preinstalled Automation.
|
|
5296
|
-
* @param - Preinstalled automation to be created.
|
|
5297
|
-
*/
|
|
5298
|
-
(automation: Automation): Promise<CreatePreinstalledAutomationResponse & CreatePreinstalledAutomationResponseNonNullableFields>;
|
|
5299
|
-
}
|
|
5300
|
-
declare function deletePreinstalledAutomation$1(httpClient: HttpClient): DeletePreinstalledAutomationSignature;
|
|
5301
|
-
interface DeletePreinstalledAutomationSignature {
|
|
5302
|
-
/**
|
|
5303
|
-
* Temporary - Deletes a Preinstalled Automation.
|
|
5304
|
-
* @param - Automation ID.
|
|
5305
|
-
*/
|
|
5306
|
-
(automationId: string, options?: DeletePreinstalledAutomationOptions | undefined): Promise<void>;
|
|
5307
|
-
}
|
|
5308
5306
|
declare function queryAutomations$1(httpClient: HttpClient): QueryAutomationsSignature;
|
|
5309
5307
|
interface QueryAutomationsSignature {
|
|
5310
5308
|
/**
|
|
@@ -5419,8 +5417,6 @@ declare const getAutomation: BuildRESTFunction<typeof getAutomation$1> & typeof
|
|
|
5419
5417
|
declare const updateAutomation: BuildRESTFunction<typeof updateAutomation$1> & typeof updateAutomation$1;
|
|
5420
5418
|
declare const deleteAutomation: BuildRESTFunction<typeof deleteAutomation$1> & typeof deleteAutomation$1;
|
|
5421
5419
|
declare const bulkDeleteAutomations: BuildRESTFunction<typeof bulkDeleteAutomations$1> & typeof bulkDeleteAutomations$1;
|
|
5422
|
-
declare const createPreinstalledAutomation: BuildRESTFunction<typeof createPreinstalledAutomation$1> & typeof createPreinstalledAutomation$1;
|
|
5423
|
-
declare const deletePreinstalledAutomation: BuildRESTFunction<typeof deletePreinstalledAutomation$1> & typeof deletePreinstalledAutomation$1;
|
|
5424
5420
|
declare const queryAutomations: BuildRESTFunction<typeof queryAutomations$1> & typeof queryAutomations$1;
|
|
5425
5421
|
declare const copyAutomation: BuildRESTFunction<typeof copyAutomation$1> & typeof copyAutomation$1;
|
|
5426
5422
|
declare const createDraftAutomation: BuildRESTFunction<typeof createDraftAutomation$1> & typeof createDraftAutomation$1;
|
|
@@ -5505,7 +5501,6 @@ type index_d_CreateDraftAutomationResponse = CreateDraftAutomationResponse;
|
|
|
5505
5501
|
type index_d_CreateDraftAutomationResponseNonNullableFields = CreateDraftAutomationResponseNonNullableFields;
|
|
5506
5502
|
type index_d_CreatePreinstalledAutomationRequest = CreatePreinstalledAutomationRequest;
|
|
5507
5503
|
type index_d_CreatePreinstalledAutomationResponse = CreatePreinstalledAutomationResponse;
|
|
5508
|
-
type index_d_CreatePreinstalledAutomationResponseNonNullableFields = CreatePreinstalledAutomationResponseNonNullableFields;
|
|
5509
5504
|
type index_d_CursorPaging = CursorPaging;
|
|
5510
5505
|
type index_d_CursorPagingMetadata = CursorPagingMetadata;
|
|
5511
5506
|
type index_d_CursorQuery = CursorQuery;
|
|
@@ -5517,7 +5512,6 @@ type index_d_DeleteAutomationResponse = DeleteAutomationResponse;
|
|
|
5517
5512
|
type index_d_DeleteContext = DeleteContext;
|
|
5518
5513
|
type index_d_DeleteDraftAutomationRequest = DeleteDraftAutomationRequest;
|
|
5519
5514
|
type index_d_DeleteDraftAutomationResponse = DeleteDraftAutomationResponse;
|
|
5520
|
-
type index_d_DeletePreinstalledAutomationOptions = DeletePreinstalledAutomationOptions;
|
|
5521
5515
|
type index_d_DeletePreinstalledAutomationRequest = DeletePreinstalledAutomationRequest;
|
|
5522
5516
|
type index_d_DeletePreinstalledAutomationResponse = DeletePreinstalledAutomationResponse;
|
|
5523
5517
|
type index_d_DeleteStatus = DeleteStatus;
|
|
@@ -5564,6 +5558,7 @@ type index_d_Origin = Origin;
|
|
|
5564
5558
|
declare const index_d_Origin: typeof Origin;
|
|
5565
5559
|
type index_d_OutputAction = OutputAction;
|
|
5566
5560
|
type index_d_Plan = Plan;
|
|
5561
|
+
type index_d_PreinstalledAutomationSpecInfo = PreinstalledAutomationSpecInfo;
|
|
5567
5562
|
type index_d_PreinstalledOrigin = PreinstalledOrigin;
|
|
5568
5563
|
type index_d_ProviderConfigurationError = ProviderConfigurationError;
|
|
5569
5564
|
type index_d_PublishDraftAutomationRequest = PublishDraftAutomationRequest;
|
|
@@ -5623,6 +5618,8 @@ type index_d_UpdateDraftAutomation = UpdateDraftAutomation;
|
|
|
5623
5618
|
type index_d_UpdateDraftAutomationRequest = UpdateDraftAutomationRequest;
|
|
5624
5619
|
type index_d_UpdateDraftAutomationResponse = UpdateDraftAutomationResponse;
|
|
5625
5620
|
type index_d_UpdateDraftAutomationResponseNonNullableFields = UpdateDraftAutomationResponseNonNullableFields;
|
|
5621
|
+
type index_d_UpdatePreinstalledAutomationRequest = UpdatePreinstalledAutomationRequest;
|
|
5622
|
+
type index_d_UpdatePreinstalledAutomationResponse = UpdatePreinstalledAutomationResponse;
|
|
5626
5623
|
type index_d_UpdatedWithPreviousEntity = UpdatedWithPreviousEntity;
|
|
5627
5624
|
type index_d_UpgradeCTA = UpgradeCTA;
|
|
5628
5625
|
type index_d_ValidateAutomationOptions = ValidateAutomationOptions;
|
|
@@ -5643,10 +5640,8 @@ declare const index_d_bulkDeleteAutomations: typeof bulkDeleteAutomations;
|
|
|
5643
5640
|
declare const index_d_copyAutomation: typeof copyAutomation;
|
|
5644
5641
|
declare const index_d_createAutomation: typeof createAutomation;
|
|
5645
5642
|
declare const index_d_createDraftAutomation: typeof createDraftAutomation;
|
|
5646
|
-
declare const index_d_createPreinstalledAutomation: typeof createPreinstalledAutomation;
|
|
5647
5643
|
declare const index_d_deleteAutomation: typeof deleteAutomation;
|
|
5648
5644
|
declare const index_d_deleteDraftAutomation: typeof deleteDraftAutomation;
|
|
5649
|
-
declare const index_d_deletePreinstalledAutomation: typeof deletePreinstalledAutomation;
|
|
5650
5645
|
declare const index_d_getActionsQuotaInfo: typeof getActionsQuotaInfo;
|
|
5651
5646
|
declare const index_d_getAutomation: typeof getAutomation;
|
|
5652
5647
|
declare const index_d_getAutomationActionSchema: typeof getAutomationActionSchema;
|
|
@@ -5662,7 +5657,7 @@ declare const index_d_updateAutomation: typeof updateAutomation;
|
|
|
5662
5657
|
declare const index_d_updateDraftAutomation: typeof updateDraftAutomation;
|
|
5663
5658
|
declare const index_d_validateAutomation: typeof validateAutomation;
|
|
5664
5659
|
declare namespace index_d {
|
|
5665
|
-
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_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type index_d_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type index_d_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, 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_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_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_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_OutputAction as OutputAction, type index_d_Plan as Plan, 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_QueryAutomationsWithDraftsOptions as QueryAutomationsWithDraftsOptions, type index_d_QueryAutomationsWithDraftsRequest as QueryAutomationsWithDraftsRequest, type index_d_QueryAutomationsWithDraftsResponse as QueryAutomationsWithDraftsResponse, type index_d_QueryAutomationsWithDraftsResponseNonNullableFields as QueryAutomationsWithDraftsResponseNonNullableFields, 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_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_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_queryAutomations as queryAutomations, index_d_queryAutomationsWithDrafts as queryAutomationsWithDrafts, index_d_updateAutomation as updateAutomation, index_d_updateDraftAutomation as updateDraftAutomation, index_d_validateAutomation as validateAutomation };
|
|
5660
|
+
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_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type index_d_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type index_d_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, 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_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_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_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_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_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_QueryAutomationsWithDraftsOptions as QueryAutomationsWithDraftsOptions, type index_d_QueryAutomationsWithDraftsRequest as QueryAutomationsWithDraftsRequest, type index_d_QueryAutomationsWithDraftsResponse as QueryAutomationsWithDraftsResponse, type index_d_QueryAutomationsWithDraftsResponseNonNullableFields as QueryAutomationsWithDraftsResponseNonNullableFields, 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_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_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_deleteAutomation as deleteAutomation, index_d_deleteDraftAutomation as deleteDraftAutomation, 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_queryAutomations as queryAutomations, index_d_queryAutomationsWithDrafts as queryAutomationsWithDrafts, index_d_updateAutomation as updateAutomation, index_d_updateDraftAutomation as updateDraftAutomation, index_d_validateAutomation as validateAutomation };
|
|
5666
5661
|
}
|
|
5667
5662
|
|
|
5668
5663
|
export { index_d$1 as activations, index_d$2 as automationsService, index_d as automationsServiceV2 };
|
|
@@ -236,17 +236,15 @@ interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
|
|
|
236
236
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
237
237
|
cursorPaging?: CursorPaging$3;
|
|
238
238
|
/**
|
|
239
|
-
* Filter object
|
|
240
|
-
*
|
|
241
|
-
*
|
|
242
|
-
* "fieldName2":{"$operator":"value2"}
|
|
243
|
-
* }`
|
|
244
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
239
|
+
* Filter object.
|
|
240
|
+
*
|
|
241
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
245
242
|
*/
|
|
246
243
|
filter?: Record<string, any> | null;
|
|
247
244
|
/**
|
|
248
|
-
* Sort object
|
|
249
|
-
*
|
|
245
|
+
* Sort object.
|
|
246
|
+
*
|
|
247
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
250
248
|
*/
|
|
251
249
|
sort?: Sorting$3[];
|
|
252
250
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -1027,17 +1025,15 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
1027
1025
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
1028
1026
|
cursorPaging?: CursorPaging$2;
|
|
1029
1027
|
/**
|
|
1030
|
-
* Filter object
|
|
1031
|
-
*
|
|
1032
|
-
*
|
|
1033
|
-
* "fieldName2":{"$operator":"value2"}
|
|
1034
|
-
* }`
|
|
1035
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
1028
|
+
* Filter object.
|
|
1029
|
+
*
|
|
1030
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
1036
1031
|
*/
|
|
1037
1032
|
filter?: Record<string, any> | null;
|
|
1038
1033
|
/**
|
|
1039
|
-
* Sort object
|
|
1040
|
-
*
|
|
1034
|
+
* Sort object.
|
|
1035
|
+
*
|
|
1036
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
1041
1037
|
*/
|
|
1042
1038
|
sort?: Sorting$2[];
|
|
1043
1039
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -2466,25 +2462,6 @@ interface BulkActionMetadata$1 {
|
|
|
2466
2462
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
2467
2463
|
undetailedFailures?: number;
|
|
2468
2464
|
}
|
|
2469
|
-
interface CreatePreinstalledAutomationRequest$1 {
|
|
2470
|
-
/** Preinstalled automation to be created. */
|
|
2471
|
-
automation: Automation$1;
|
|
2472
|
-
}
|
|
2473
|
-
interface CreatePreinstalledAutomationResponse$1 {
|
|
2474
|
-
/** The created preinstalled automation. */
|
|
2475
|
-
automation?: Automation$1;
|
|
2476
|
-
}
|
|
2477
|
-
interface DeletePreinstalledAutomationRequest$1 {
|
|
2478
|
-
/** Automation ID. */
|
|
2479
|
-
automationId: string;
|
|
2480
|
-
/**
|
|
2481
|
-
* Whether to ignore the override check.
|
|
2482
|
-
* Default: `false`
|
|
2483
|
-
*/
|
|
2484
|
-
ignoreOverrideCheck?: boolean;
|
|
2485
|
-
}
|
|
2486
|
-
interface DeletePreinstalledAutomationResponse$1 {
|
|
2487
|
-
}
|
|
2488
2465
|
interface QueryAutomationsRequest$1 {
|
|
2489
2466
|
/** WQL expression. */
|
|
2490
2467
|
query?: CursorQuery$1;
|
|
@@ -2928,9 +2905,6 @@ interface BulkDeleteAutomationsResponseNonNullableFields$1 {
|
|
|
2928
2905
|
results: BulkDeleteResultNonNullableFields$1[];
|
|
2929
2906
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
2930
2907
|
}
|
|
2931
|
-
interface CreatePreinstalledAutomationResponseNonNullableFields$1 {
|
|
2932
|
-
automation?: AutomationNonNullableFields$1;
|
|
2933
|
-
}
|
|
2934
2908
|
interface QueryAutomationsResponseNonNullableFields$1 {
|
|
2935
2909
|
automations: AutomationNonNullableFields$1[];
|
|
2936
2910
|
}
|
|
@@ -3429,25 +3403,6 @@ interface BulkActionMetadata {
|
|
|
3429
3403
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
3430
3404
|
undetailedFailures?: number;
|
|
3431
3405
|
}
|
|
3432
|
-
interface CreatePreinstalledAutomationRequest {
|
|
3433
|
-
/** Preinstalled automation to be created. */
|
|
3434
|
-
automation: Automation;
|
|
3435
|
-
}
|
|
3436
|
-
interface CreatePreinstalledAutomationResponse {
|
|
3437
|
-
/** The created preinstalled automation. */
|
|
3438
|
-
automation?: Automation;
|
|
3439
|
-
}
|
|
3440
|
-
interface DeletePreinstalledAutomationRequest {
|
|
3441
|
-
/** Automation ID. */
|
|
3442
|
-
automationId: string;
|
|
3443
|
-
/**
|
|
3444
|
-
* Whether to ignore the override check.
|
|
3445
|
-
* Default: `false`
|
|
3446
|
-
*/
|
|
3447
|
-
ignoreOverrideCheck?: boolean;
|
|
3448
|
-
}
|
|
3449
|
-
interface DeletePreinstalledAutomationResponse {
|
|
3450
|
-
}
|
|
3451
3406
|
interface QueryAutomationsRequest {
|
|
3452
3407
|
/** WQL expression. */
|
|
3453
3408
|
query?: CursorQuery;
|
|
@@ -3891,9 +3846,6 @@ interface BulkDeleteAutomationsResponseNonNullableFields {
|
|
|
3891
3846
|
results: BulkDeleteResultNonNullableFields[];
|
|
3892
3847
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
3893
3848
|
}
|
|
3894
|
-
interface CreatePreinstalledAutomationResponseNonNullableFields {
|
|
3895
|
-
automation?: AutomationNonNullableFields;
|
|
3896
|
-
}
|
|
3897
3849
|
interface QueryAutomationsResponseNonNullableFields {
|
|
3898
3850
|
automations: AutomationNonNullableFields[];
|
|
3899
3851
|
}
|
|
@@ -4002,10 +3954,6 @@ declare function deleteAutomation(): __PublicMethodMetaInfo<'DELETE', {
|
|
|
4002
3954
|
automationId: string;
|
|
4003
3955
|
}, DeleteAutomationRequest, DeleteAutomationRequest$1, DeleteAutomationResponse, DeleteAutomationResponse$1>;
|
|
4004
3956
|
declare function bulkDeleteAutomations(): __PublicMethodMetaInfo<'POST', {}, BulkDeleteAutomationsRequest, BulkDeleteAutomationsRequest$1, BulkDeleteAutomationsResponse & BulkDeleteAutomationsResponseNonNullableFields, BulkDeleteAutomationsResponse$1 & BulkDeleteAutomationsResponseNonNullableFields$1>;
|
|
4005
|
-
declare function createPreinstalledAutomation(): __PublicMethodMetaInfo<'POST', {}, CreatePreinstalledAutomationRequest, CreatePreinstalledAutomationRequest$1, CreatePreinstalledAutomationResponse & CreatePreinstalledAutomationResponseNonNullableFields, CreatePreinstalledAutomationResponse$1 & CreatePreinstalledAutomationResponseNonNullableFields$1>;
|
|
4006
|
-
declare function deletePreinstalledAutomation(): __PublicMethodMetaInfo<'DELETE', {
|
|
4007
|
-
automationId: string;
|
|
4008
|
-
}, DeletePreinstalledAutomationRequest, DeletePreinstalledAutomationRequest$1, DeletePreinstalledAutomationResponse, DeletePreinstalledAutomationResponse$1>;
|
|
4009
3957
|
declare function queryAutomations(): __PublicMethodMetaInfo<'POST', {}, QueryAutomationsRequest, QueryAutomationsRequest$1, QueryAutomationsResponse & QueryAutomationsResponseNonNullableFields, QueryAutomationsResponse$1 & QueryAutomationsResponseNonNullableFields$1>;
|
|
4010
3958
|
declare function copyAutomation(): __PublicMethodMetaInfo<'POST', {
|
|
4011
3959
|
automationId: string;
|
|
@@ -4033,10 +3981,8 @@ declare const meta_bulkDeleteAutomations: typeof bulkDeleteAutomations;
|
|
|
4033
3981
|
declare const meta_copyAutomation: typeof copyAutomation;
|
|
4034
3982
|
declare const meta_createAutomation: typeof createAutomation;
|
|
4035
3983
|
declare const meta_createDraftAutomation: typeof createDraftAutomation;
|
|
4036
|
-
declare const meta_createPreinstalledAutomation: typeof createPreinstalledAutomation;
|
|
4037
3984
|
declare const meta_deleteAutomation: typeof deleteAutomation;
|
|
4038
3985
|
declare const meta_deleteDraftAutomation: typeof deleteDraftAutomation;
|
|
4039
|
-
declare const meta_deletePreinstalledAutomation: typeof deletePreinstalledAutomation;
|
|
4040
3986
|
declare const meta_getActionsQuotaInfo: typeof getActionsQuotaInfo;
|
|
4041
3987
|
declare const meta_getAutomation: typeof getAutomation;
|
|
4042
3988
|
declare const meta_getAutomationActionSchema: typeof getAutomationActionSchema;
|
|
@@ -4047,7 +3993,7 @@ declare const meta_updateAutomation: typeof updateAutomation;
|
|
|
4047
3993
|
declare const meta_updateDraftAutomation: typeof updateDraftAutomation;
|
|
4048
3994
|
declare const meta_validateAutomation: typeof validateAutomation;
|
|
4049
3995
|
declare namespace meta {
|
|
4050
|
-
export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_bulkDeleteAutomations as bulkDeleteAutomations, meta_copyAutomation as copyAutomation, meta_createAutomation as createAutomation, meta_createDraftAutomation as createDraftAutomation,
|
|
3996
|
+
export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_bulkDeleteAutomations as bulkDeleteAutomations, meta_copyAutomation as copyAutomation, meta_createAutomation as createAutomation, meta_createDraftAutomation as createDraftAutomation, meta_deleteAutomation as deleteAutomation, meta_deleteDraftAutomation as deleteDraftAutomation, meta_getActionsQuotaInfo as getActionsQuotaInfo, meta_getAutomation as getAutomation, meta_getAutomationActionSchema as getAutomationActionSchema, meta_getOrCreateDraftAutomation as getOrCreateDraftAutomation, meta_queryAutomations as queryAutomations, meta_queryAutomationsWithDrafts as queryAutomationsWithDrafts, meta_updateAutomation as updateAutomation, meta_updateDraftAutomation as updateDraftAutomation, meta_validateAutomation as validateAutomation };
|
|
4051
3997
|
}
|
|
4052
3998
|
|
|
4053
3999
|
export { meta$1 as activations, meta$2 as automationsService, meta as automationsServiceV2 };
|