@wix/automations 1.0.43 → 1.0.45
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.45",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/automations_activations": "1.0.
|
|
22
|
-
"@wix/automations_automations-service": "1.0.
|
|
23
|
-
"@wix/automations_automations-service-v-2": "1.0.
|
|
21
|
+
"@wix/automations_activations": "1.0.27",
|
|
22
|
+
"@wix/automations_automations-service": "1.0.20",
|
|
23
|
+
"@wix/automations_automations-service-v-2": "1.0.28"
|
|
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": "e9ad9fc057618ced6d7c23b7ccdf2678a120ff3518f434f2133b4145"
|
|
49
49
|
}
|
|
@@ -873,7 +873,10 @@ interface MetaSiteSpecialEvent$1 extends MetaSiteSpecialEventPayloadOneOf$1 {
|
|
|
873
873
|
version?: string;
|
|
874
874
|
/** A timestamp of the event. */
|
|
875
875
|
timestamp?: string;
|
|
876
|
-
/**
|
|
876
|
+
/**
|
|
877
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
878
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
879
|
+
*/
|
|
877
880
|
assets?: Asset$1[];
|
|
878
881
|
}
|
|
879
882
|
/** @oneof */
|
|
@@ -1256,6 +1259,14 @@ interface UpdatedWithPreviousEntity$1 {
|
|
|
1256
1259
|
/** updated automation */
|
|
1257
1260
|
currentAutomation?: Automation$2;
|
|
1258
1261
|
}
|
|
1262
|
+
interface MigrationUpdateAutomationRequest {
|
|
1263
|
+
/** Automation to be updated, may be partial */
|
|
1264
|
+
automation: Automation$2;
|
|
1265
|
+
}
|
|
1266
|
+
interface MigrationUpdateAutomationResponse {
|
|
1267
|
+
/** The updated Automation */
|
|
1268
|
+
automation?: Automation$2;
|
|
1269
|
+
}
|
|
1259
1270
|
interface DeleteAutomationRequest$1 {
|
|
1260
1271
|
/** Id of the Automation to delete */
|
|
1261
1272
|
automationId: string;
|
|
@@ -1663,6 +1674,9 @@ interface GetAutomationResponseNonNullableFields$1 {
|
|
|
1663
1674
|
interface UpdateAutomationResponseNonNullableFields$1 {
|
|
1664
1675
|
automation?: AutomationNonNullableFields$1;
|
|
1665
1676
|
}
|
|
1677
|
+
interface MigrationUpdateAutomationResponseNonNullableFields {
|
|
1678
|
+
automation?: AutomationNonNullableFields$1;
|
|
1679
|
+
}
|
|
1666
1680
|
interface QueryAutomationsResponseNonNullableFields$1 {
|
|
1667
1681
|
automations: AutomationNonNullableFields$1[];
|
|
1668
1682
|
}
|
|
@@ -1873,6 +1887,60 @@ interface UpdateAutomation$1 {
|
|
|
1873
1887
|
/** @readonly */
|
|
1874
1888
|
migratedToV3?: boolean | null;
|
|
1875
1889
|
}
|
|
1890
|
+
interface MigrationUpdateAutomation {
|
|
1891
|
+
/**
|
|
1892
|
+
* Automation ID
|
|
1893
|
+
* @readonly
|
|
1894
|
+
*/
|
|
1895
|
+
_id?: string | null;
|
|
1896
|
+
/** Revision */
|
|
1897
|
+
revision?: string | null;
|
|
1898
|
+
/** Automation name */
|
|
1899
|
+
name?: string;
|
|
1900
|
+
/** Automation description */
|
|
1901
|
+
description?: string;
|
|
1902
|
+
/**
|
|
1903
|
+
* Automation Type
|
|
1904
|
+
* @readonly
|
|
1905
|
+
*/
|
|
1906
|
+
type?: Type$2;
|
|
1907
|
+
/** Automation Status */
|
|
1908
|
+
status?: Status$2;
|
|
1909
|
+
/** Rule that contains a trigger and some actions */
|
|
1910
|
+
rule?: Rule;
|
|
1911
|
+
/**
|
|
1912
|
+
* Source Application Automation
|
|
1913
|
+
* @readonly
|
|
1914
|
+
*/
|
|
1915
|
+
source?: Source;
|
|
1916
|
+
/**
|
|
1917
|
+
* Metadata
|
|
1918
|
+
* @readonly
|
|
1919
|
+
*/
|
|
1920
|
+
metadata?: AutomationMetadata;
|
|
1921
|
+
/**
|
|
1922
|
+
* Created date
|
|
1923
|
+
* @readonly
|
|
1924
|
+
*/
|
|
1925
|
+
_createdDate?: Date;
|
|
1926
|
+
/**
|
|
1927
|
+
* Updated date
|
|
1928
|
+
* @readonly
|
|
1929
|
+
*/
|
|
1930
|
+
_updatedDate?: Date;
|
|
1931
|
+
/**
|
|
1932
|
+
* ESB Configuration ID
|
|
1933
|
+
* @readonly
|
|
1934
|
+
*/
|
|
1935
|
+
esbConfigurationId?: string | null;
|
|
1936
|
+
/**
|
|
1937
|
+
* Was this automation migrated from v1
|
|
1938
|
+
* @readonly
|
|
1939
|
+
*/
|
|
1940
|
+
migratedFromV1?: boolean | null;
|
|
1941
|
+
/** @readonly */
|
|
1942
|
+
migratedToV3?: boolean | null;
|
|
1943
|
+
}
|
|
1876
1944
|
interface DeleteAutomationOptions {
|
|
1877
1945
|
/** The revision of the Automation */
|
|
1878
1946
|
revision?: string;
|
|
@@ -1997,10 +2065,17 @@ interface UpdateAutomationSignature$1 {
|
|
|
1997
2065
|
/**
|
|
1998
2066
|
* Update a Automation, supports partial update
|
|
1999
2067
|
* Pass the latest `revision` for a successful update
|
|
2068
|
+
* @param - Automation ID
|
|
2069
|
+
*/
|
|
2070
|
+
(_id: string | null, automation: UpdateAutomation$1): Promise<UpdateAutomationResponse$1 & UpdateAutomationResponseNonNullableFields$1>;
|
|
2071
|
+
}
|
|
2072
|
+
declare function migrationUpdateAutomation$1(httpClient: HttpClient): MigrationUpdateAutomationSignature;
|
|
2073
|
+
interface MigrationUpdateAutomationSignature {
|
|
2074
|
+
/**
|
|
2000
2075
|
* @param - Automation ID
|
|
2001
2076
|
* @returns The updated Automation
|
|
2002
2077
|
*/
|
|
2003
|
-
(_id: string | null, automation:
|
|
2078
|
+
(_id: string | null, automation: MigrationUpdateAutomation): Promise<Automation$2 & AutomationNonNullableFields$1>;
|
|
2004
2079
|
}
|
|
2005
2080
|
declare function deleteAutomation$3(httpClient: HttpClient): DeleteAutomationSignature$1;
|
|
2006
2081
|
interface DeleteAutomationSignature$1 {
|
|
@@ -2090,6 +2165,7 @@ declare function createEventModule$2<T extends EventDefinition$2<any, string>>(e
|
|
|
2090
2165
|
declare const createAutomation$2: MaybeContext<BuildRESTFunction<typeof createAutomation$3> & typeof createAutomation$3>;
|
|
2091
2166
|
declare const getAutomation$2: MaybeContext<BuildRESTFunction<typeof getAutomation$3> & typeof getAutomation$3>;
|
|
2092
2167
|
declare const updateAutomation$2: MaybeContext<BuildRESTFunction<typeof updateAutomation$3> & typeof updateAutomation$3>;
|
|
2168
|
+
declare const migrationUpdateAutomation: MaybeContext<BuildRESTFunction<typeof migrationUpdateAutomation$1> & typeof migrationUpdateAutomation$1>;
|
|
2093
2169
|
declare const deleteAutomation$2: MaybeContext<BuildRESTFunction<typeof deleteAutomation$3> & typeof deleteAutomation$3>;
|
|
2094
2170
|
declare const queryAutomations$2: MaybeContext<BuildRESTFunction<typeof queryAutomations$3> & typeof queryAutomations$3>;
|
|
2095
2171
|
declare const overrideApplicationAutomation: MaybeContext<BuildRESTFunction<typeof overrideApplicationAutomation$1> & typeof overrideApplicationAutomation$1>;
|
|
@@ -2143,6 +2219,10 @@ type context$2_GetAutomationActivationStatsOptions = GetAutomationActivationStat
|
|
|
2143
2219
|
type context$2_MigrationBulkCreateAutomations = MigrationBulkCreateAutomations;
|
|
2144
2220
|
type context$2_MigrationBulkCreateAutomationsRequest = MigrationBulkCreateAutomationsRequest;
|
|
2145
2221
|
type context$2_MigrationBulkCreateAutomationsResponse = MigrationBulkCreateAutomationsResponse;
|
|
2222
|
+
type context$2_MigrationUpdateAutomation = MigrationUpdateAutomation;
|
|
2223
|
+
type context$2_MigrationUpdateAutomationRequest = MigrationUpdateAutomationRequest;
|
|
2224
|
+
type context$2_MigrationUpdateAutomationResponse = MigrationUpdateAutomationResponse;
|
|
2225
|
+
type context$2_MigrationUpdateAutomationResponseNonNullableFields = MigrationUpdateAutomationResponseNonNullableFields;
|
|
2146
2226
|
type context$2_MigrationUpdateMigratedToV3AutomationRequest = MigrationUpdateMigratedToV3AutomationRequest;
|
|
2147
2227
|
type context$2_MigrationUpdateMigratedToV3AutomationResponse = MigrationUpdateMigratedToV3AutomationResponse;
|
|
2148
2228
|
type context$2_Offset = Offset;
|
|
@@ -2174,10 +2254,11 @@ type context$2_ValidateAutomationByIdResponse = ValidateAutomationByIdResponse;
|
|
|
2174
2254
|
type context$2_ValidateAutomationByIdResponseNonNullableFields = ValidateAutomationByIdResponseNonNullableFields;
|
|
2175
2255
|
declare const context$2_generateActionInputMappingFromTemplate: typeof generateActionInputMappingFromTemplate;
|
|
2176
2256
|
declare const context$2_getAutomationActivationStats: typeof getAutomationActivationStats;
|
|
2257
|
+
declare const context$2_migrationUpdateAutomation: typeof migrationUpdateAutomation;
|
|
2177
2258
|
declare const context$2_overrideApplicationAutomation: typeof overrideApplicationAutomation;
|
|
2178
2259
|
declare const context$2_validateAutomationById: typeof validateAutomationById;
|
|
2179
2260
|
declare namespace context$2 {
|
|
2180
|
-
export { type Action$2 as Action, type ActionConfigurationError$1 as ActionConfigurationError, ActionErrorType$1 as ActionErrorType, type ActionEvent$2 as ActionEvent, type ActionProviderQuotaInfo$1 as ActionProviderQuotaInfo, type ActionQuotaInfo$1 as ActionQuotaInfo, type ActionValidationError$1 as ActionValidationError, type ActionValidationErrorErrorOneOf$1 as ActionValidationErrorErrorOneOf, type ActionValidationInfo$1 as ActionValidationInfo, type context$2_ActivationReport as ActivationReport, ActivationStatus$1 as ActivationStatus, type AdditionalInfo$1 as AdditionalInfo, type ApplicationError$2 as ApplicationError, type Asset$1 as Asset, type Automation$2 as Automation, type AutomationCreatedEnvelope$1 as AutomationCreatedEnvelope, type AutomationDeletedEnvelope$1 as AutomationDeletedEnvelope, type AutomationDeletedWithEntityEnvelope$1 as AutomationDeletedWithEntityEnvelope, type context$2_AutomationMetadata as AutomationMetadata, type AutomationNonNullableFields$1 as AutomationNonNullableFields, type AutomationUpdatedEnvelope$1 as AutomationUpdatedEnvelope, type AutomationUpdatedWithPreviousEntityEnvelope$1 as AutomationUpdatedWithPreviousEntityEnvelope, type AutomationsQueryBuilder$1 as AutomationsQueryBuilder, type AutomationsQueryResult$1 as AutomationsQueryResult, type BaseEventMetadata$2 as BaseEventMetadata, BlockType$1 as BlockType, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateApplicationAutomationRequest as BulkCreateApplicationAutomationRequest, type context$2_BulkCreateApplicationAutomationResponse as BulkCreateApplicationAutomationResponse, type BulkDeleteAutomationsRequest$1 as BulkDeleteAutomationsRequest, type BulkDeleteAutomationsResponse$1 as BulkDeleteAutomationsResponse, type CTA$1 as CTA, type context$2_Condition as Condition, type ConditionBlock$1 as ConditionBlock, type context$2_Conditions as Conditions, type CreateAutomationRequest$1 as CreateAutomationRequest, type CreateAutomationResponse$1 as CreateAutomationResponse, type CreateAutomationResponseNonNullableFields$1 as CreateAutomationResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$2_Debounce as Debounce, type Delay$1 as Delay, type context$2_DelayTypeOneOf as DelayTypeOneOf, type context$2_DeleteAutomationOptions as DeleteAutomationOptions, type DeleteAutomationRequest$1 as DeleteAutomationRequest, type DeleteAutomationResponse$1 as DeleteAutomationResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type DeletedWithEntity$1 as DeletedWithEntity, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type context$2_ExtendedFields as ExtendedFields, type Filter$2 as Filter, type context$2_GenerateActionInputMappingFromTemplateOptions as GenerateActionInputMappingFromTemplateOptions, type context$2_GenerateActionInputMappingFromTemplateRequest as GenerateActionInputMappingFromTemplateRequest, type context$2_GenerateActionInputMappingFromTemplateResponse as GenerateActionInputMappingFromTemplateResponse, type context$2_GenerateApplicationAutomationFromCustomRequest as GenerateApplicationAutomationFromCustomRequest, type context$2_GenerateApplicationAutomationFromCustomResponse as GenerateApplicationAutomationFromCustomResponse, type GetActionsQuotaInfoRequest$1 as GetActionsQuotaInfoRequest, type GetActionsQuotaInfoResponse$1 as GetActionsQuotaInfoResponse, type GetActionsQuotaInfoResponseNonNullableFields$1 as GetActionsQuotaInfoResponseNonNullableFields, type context$2_GetApplicationAutomationRequest as GetApplicationAutomationRequest, type context$2_GetApplicationAutomationResponse as GetApplicationAutomationResponse, type GetAutomationActionSchemaRequest$1 as GetAutomationActionSchemaRequest, type GetAutomationActionSchemaResponse$1 as GetAutomationActionSchemaResponse, type context$2_GetAutomationActivationReportsRequest as GetAutomationActivationReportsRequest, type context$2_GetAutomationActivationReportsResponse as GetAutomationActivationReportsResponse, type context$2_GetAutomationActivationReportsResponseNonNullableFields as GetAutomationActivationReportsResponseNonNullableFields, type context$2_GetAutomationActivationStatsOptions as GetAutomationActivationStatsOptions, type GetAutomationOptions$1 as GetAutomationOptions, type GetAutomationRequest$1 as GetAutomationRequest, type GetAutomationResponse$1 as GetAutomationResponse, type GetAutomationResponseNonNullableFields$1 as GetAutomationResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type ItemMetadata$2 as ItemMetadata, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$2_MigrationBulkCreateAutomations as MigrationBulkCreateAutomations, type context$2_MigrationBulkCreateAutomationsRequest as MigrationBulkCreateAutomationsRequest, type context$2_MigrationBulkCreateAutomationsResponse as MigrationBulkCreateAutomationsResponse, type context$2_MigrationUpdateMigratedToV3AutomationRequest as MigrationUpdateMigratedToV3AutomationRequest, type context$2_MigrationUpdateMigratedToV3AutomationResponse as MigrationUpdateMigratedToV3AutomationResponse, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$2_Offset as Offset, type context$2_OffsetValueOneOf as OffsetValueOneOf, type context$2_OverrideApplicationAutomationRequest as OverrideApplicationAutomationRequest, type context$2_OverrideApplicationAutomationResponse as OverrideApplicationAutomationResponse, type context$2_OverrideApplicationAutomationResponseNonNullableFields as OverrideApplicationAutomationResponseNonNullableFields, type context$2_Paging as Paging, type context$2_PagingMetadata as PagingMetadata, type context$2_PagingMetadataV2 as PagingMetadataV2, type Plan$1 as Plan, type ProviderConfigurationError$1 as ProviderConfigurationError, type context$2_QueryApplicationAutomationsRequest as QueryApplicationAutomationsRequest, type context$2_QueryApplicationAutomationsResponse as QueryApplicationAutomationsResponse, type context$2_QueryAutomationsOptions as QueryAutomationsOptions, type QueryAutomationsRequest$1 as QueryAutomationsRequest, type QueryAutomationsResponse$1 as QueryAutomationsResponse, type QueryAutomationsResponseNonNullableFields$1 as QueryAutomationsResponseNonNullableFields, type context$2_QueryV2 as QueryV2, type context$2_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type Quota$1 as Quota, type QuotaInfo$1 as QuotaInfo, type RateLimit$2 as RateLimit, type RestoreInfo$2 as RestoreInfo, type context$2_Rule as Rule, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type context$2_Source as Source, State$1 as State, Status$2 as Status, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$2_SyncApplicationAutomationsRequest as SyncApplicationAutomationsRequest, type context$2_SyncApplicationAutomationsResponse as SyncApplicationAutomationsResponse, type Trigger$2 as Trigger, type TriggerConfigurationError$1 as TriggerConfigurationError, TriggerErrorType$1 as TriggerErrorType, type TriggerValidationError$1 as TriggerValidationError, type TriggerValidationErrorErrorOneOf$1 as TriggerValidationErrorErrorOneOf, TriggerValidationErrorValidationErrorType$1 as TriggerValidationErrorValidationErrorType, Type$2 as Type, type context$2_Until as Until, type context$2_UpdateApplicationAutomationConfigurationIdRequest as UpdateApplicationAutomationConfigurationIdRequest, type context$2_UpdateApplicationAutomationConfigurationIdResponse as UpdateApplicationAutomationConfigurationIdResponse, type context$2_UpdateApplicationAutomationToMigratedFromV1Request as UpdateApplicationAutomationToMigratedFromV1Request, type context$2_UpdateApplicationAutomationToMigratedFromV1Response as UpdateApplicationAutomationToMigratedFromV1Response, type UpdateAutomation$1 as UpdateAutomation, type UpdateAutomationRequest$1 as UpdateAutomationRequest, type UpdateAutomationResponse$1 as UpdateAutomationResponse, type UpdateAutomationResponseNonNullableFields$1 as UpdateAutomationResponseNonNullableFields, type context$2_UpdatedAutomationsWithEsb as UpdatedAutomationsWithEsb, type UpdatedWithPreviousEntity$1 as UpdatedWithPreviousEntity, type UpgradeCTA$1 as UpgradeCTA, type context$2_ValidateAutomationByIdOptions as ValidateAutomationByIdOptions, type context$2_ValidateAutomationByIdRequest as ValidateAutomationByIdRequest, type context$2_ValidateAutomationByIdResponse as ValidateAutomationByIdResponse, type context$2_ValidateAutomationByIdResponseNonNullableFields as ValidateAutomationByIdResponseNonNullableFields, type ValidateAutomationRequest$1 as ValidateAutomationRequest, type ValidateAutomationResponse$1 as ValidateAutomationResponse, type ValidateAutomationResponseNonNullableFields$1 as ValidateAutomationResponseNonNullableFields, ValidationErrorType$1 as ValidationErrorType, WebhookIdentityType$2 as WebhookIdentityType, type _publicOnAutomationCreatedType$1 as _publicOnAutomationCreatedType, type _publicOnAutomationDeletedType$1 as _publicOnAutomationDeletedType, type _publicOnAutomationDeletedWithEntityType$1 as _publicOnAutomationDeletedWithEntityType, type _publicOnAutomationUpdatedType$1 as _publicOnAutomationUpdatedType, type _publicOnAutomationUpdatedWithPreviousEntityType$1 as _publicOnAutomationUpdatedWithPreviousEntityType, createAutomation$2 as createAutomation, deleteAutomation$2 as deleteAutomation, context$2_generateActionInputMappingFromTemplate as generateActionInputMappingFromTemplate, getActionsQuotaInfo$2 as getActionsQuotaInfo, getAutomation$2 as getAutomation, context$2_getAutomationActivationStats as getAutomationActivationStats, onAutomationCreated$2 as onAutomationCreated, onAutomationDeleted$2 as onAutomationDeleted, onAutomationDeletedWithEntity$2 as onAutomationDeletedWithEntity, onAutomationUpdated$2 as onAutomationUpdated, onAutomationUpdatedWithPreviousEntity$2 as onAutomationUpdatedWithPreviousEntity, context$2_overrideApplicationAutomation as overrideApplicationAutomation, onAutomationCreated$3 as publicOnAutomationCreated, onAutomationDeleted$3 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$3 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$3 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$3 as publicOnAutomationUpdatedWithPreviousEntity, queryAutomations$2 as queryAutomations, updateAutomation$2 as updateAutomation, validateAutomation$2 as validateAutomation, context$2_validateAutomationById as validateAutomationById };
|
|
2261
|
+
export { type Action$2 as Action, type ActionConfigurationError$1 as ActionConfigurationError, ActionErrorType$1 as ActionErrorType, type ActionEvent$2 as ActionEvent, type ActionProviderQuotaInfo$1 as ActionProviderQuotaInfo, type ActionQuotaInfo$1 as ActionQuotaInfo, type ActionValidationError$1 as ActionValidationError, type ActionValidationErrorErrorOneOf$1 as ActionValidationErrorErrorOneOf, type ActionValidationInfo$1 as ActionValidationInfo, type context$2_ActivationReport as ActivationReport, ActivationStatus$1 as ActivationStatus, type AdditionalInfo$1 as AdditionalInfo, type ApplicationError$2 as ApplicationError, type Asset$1 as Asset, type Automation$2 as Automation, type AutomationCreatedEnvelope$1 as AutomationCreatedEnvelope, type AutomationDeletedEnvelope$1 as AutomationDeletedEnvelope, type AutomationDeletedWithEntityEnvelope$1 as AutomationDeletedWithEntityEnvelope, type context$2_AutomationMetadata as AutomationMetadata, type AutomationNonNullableFields$1 as AutomationNonNullableFields, type AutomationUpdatedEnvelope$1 as AutomationUpdatedEnvelope, type AutomationUpdatedWithPreviousEntityEnvelope$1 as AutomationUpdatedWithPreviousEntityEnvelope, type AutomationsQueryBuilder$1 as AutomationsQueryBuilder, type AutomationsQueryResult$1 as AutomationsQueryResult, type BaseEventMetadata$2 as BaseEventMetadata, BlockType$1 as BlockType, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateApplicationAutomationRequest as BulkCreateApplicationAutomationRequest, type context$2_BulkCreateApplicationAutomationResponse as BulkCreateApplicationAutomationResponse, type BulkDeleteAutomationsRequest$1 as BulkDeleteAutomationsRequest, type BulkDeleteAutomationsResponse$1 as BulkDeleteAutomationsResponse, type CTA$1 as CTA, type context$2_Condition as Condition, type ConditionBlock$1 as ConditionBlock, type context$2_Conditions as Conditions, type CreateAutomationRequest$1 as CreateAutomationRequest, type CreateAutomationResponse$1 as CreateAutomationResponse, type CreateAutomationResponseNonNullableFields$1 as CreateAutomationResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$2_Debounce as Debounce, type Delay$1 as Delay, type context$2_DelayTypeOneOf as DelayTypeOneOf, type context$2_DeleteAutomationOptions as DeleteAutomationOptions, type DeleteAutomationRequest$1 as DeleteAutomationRequest, type DeleteAutomationResponse$1 as DeleteAutomationResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type DeletedWithEntity$1 as DeletedWithEntity, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type context$2_ExtendedFields as ExtendedFields, type Filter$2 as Filter, type context$2_GenerateActionInputMappingFromTemplateOptions as GenerateActionInputMappingFromTemplateOptions, type context$2_GenerateActionInputMappingFromTemplateRequest as GenerateActionInputMappingFromTemplateRequest, type context$2_GenerateActionInputMappingFromTemplateResponse as GenerateActionInputMappingFromTemplateResponse, type context$2_GenerateApplicationAutomationFromCustomRequest as GenerateApplicationAutomationFromCustomRequest, type context$2_GenerateApplicationAutomationFromCustomResponse as GenerateApplicationAutomationFromCustomResponse, type GetActionsQuotaInfoRequest$1 as GetActionsQuotaInfoRequest, type GetActionsQuotaInfoResponse$1 as GetActionsQuotaInfoResponse, type GetActionsQuotaInfoResponseNonNullableFields$1 as GetActionsQuotaInfoResponseNonNullableFields, type context$2_GetApplicationAutomationRequest as GetApplicationAutomationRequest, type context$2_GetApplicationAutomationResponse as GetApplicationAutomationResponse, type GetAutomationActionSchemaRequest$1 as GetAutomationActionSchemaRequest, type GetAutomationActionSchemaResponse$1 as GetAutomationActionSchemaResponse, type context$2_GetAutomationActivationReportsRequest as GetAutomationActivationReportsRequest, type context$2_GetAutomationActivationReportsResponse as GetAutomationActivationReportsResponse, type context$2_GetAutomationActivationReportsResponseNonNullableFields as GetAutomationActivationReportsResponseNonNullableFields, type context$2_GetAutomationActivationStatsOptions as GetAutomationActivationStatsOptions, type GetAutomationOptions$1 as GetAutomationOptions, type GetAutomationRequest$1 as GetAutomationRequest, type GetAutomationResponse$1 as GetAutomationResponse, type GetAutomationResponseNonNullableFields$1 as GetAutomationResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type ItemMetadata$2 as ItemMetadata, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$2_MigrationBulkCreateAutomations as MigrationBulkCreateAutomations, type context$2_MigrationBulkCreateAutomationsRequest as MigrationBulkCreateAutomationsRequest, type context$2_MigrationBulkCreateAutomationsResponse as MigrationBulkCreateAutomationsResponse, type context$2_MigrationUpdateAutomation as MigrationUpdateAutomation, type context$2_MigrationUpdateAutomationRequest as MigrationUpdateAutomationRequest, type context$2_MigrationUpdateAutomationResponse as MigrationUpdateAutomationResponse, type context$2_MigrationUpdateAutomationResponseNonNullableFields as MigrationUpdateAutomationResponseNonNullableFields, type context$2_MigrationUpdateMigratedToV3AutomationRequest as MigrationUpdateMigratedToV3AutomationRequest, type context$2_MigrationUpdateMigratedToV3AutomationResponse as MigrationUpdateMigratedToV3AutomationResponse, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$2_Offset as Offset, type context$2_OffsetValueOneOf as OffsetValueOneOf, type context$2_OverrideApplicationAutomationRequest as OverrideApplicationAutomationRequest, type context$2_OverrideApplicationAutomationResponse as OverrideApplicationAutomationResponse, type context$2_OverrideApplicationAutomationResponseNonNullableFields as OverrideApplicationAutomationResponseNonNullableFields, type context$2_Paging as Paging, type context$2_PagingMetadata as PagingMetadata, type context$2_PagingMetadataV2 as PagingMetadataV2, type Plan$1 as Plan, type ProviderConfigurationError$1 as ProviderConfigurationError, type context$2_QueryApplicationAutomationsRequest as QueryApplicationAutomationsRequest, type context$2_QueryApplicationAutomationsResponse as QueryApplicationAutomationsResponse, type context$2_QueryAutomationsOptions as QueryAutomationsOptions, type QueryAutomationsRequest$1 as QueryAutomationsRequest, type QueryAutomationsResponse$1 as QueryAutomationsResponse, type QueryAutomationsResponseNonNullableFields$1 as QueryAutomationsResponseNonNullableFields, type context$2_QueryV2 as QueryV2, type context$2_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type Quota$1 as Quota, type QuotaInfo$1 as QuotaInfo, type RateLimit$2 as RateLimit, type RestoreInfo$2 as RestoreInfo, type context$2_Rule as Rule, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type context$2_Source as Source, State$1 as State, Status$2 as Status, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$2_SyncApplicationAutomationsRequest as SyncApplicationAutomationsRequest, type context$2_SyncApplicationAutomationsResponse as SyncApplicationAutomationsResponse, type Trigger$2 as Trigger, type TriggerConfigurationError$1 as TriggerConfigurationError, TriggerErrorType$1 as TriggerErrorType, type TriggerValidationError$1 as TriggerValidationError, type TriggerValidationErrorErrorOneOf$1 as TriggerValidationErrorErrorOneOf, TriggerValidationErrorValidationErrorType$1 as TriggerValidationErrorValidationErrorType, Type$2 as Type, type context$2_Until as Until, type context$2_UpdateApplicationAutomationConfigurationIdRequest as UpdateApplicationAutomationConfigurationIdRequest, type context$2_UpdateApplicationAutomationConfigurationIdResponse as UpdateApplicationAutomationConfigurationIdResponse, type context$2_UpdateApplicationAutomationToMigratedFromV1Request as UpdateApplicationAutomationToMigratedFromV1Request, type context$2_UpdateApplicationAutomationToMigratedFromV1Response as UpdateApplicationAutomationToMigratedFromV1Response, type UpdateAutomation$1 as UpdateAutomation, type UpdateAutomationRequest$1 as UpdateAutomationRequest, type UpdateAutomationResponse$1 as UpdateAutomationResponse, type UpdateAutomationResponseNonNullableFields$1 as UpdateAutomationResponseNonNullableFields, type context$2_UpdatedAutomationsWithEsb as UpdatedAutomationsWithEsb, type UpdatedWithPreviousEntity$1 as UpdatedWithPreviousEntity, type UpgradeCTA$1 as UpgradeCTA, type context$2_ValidateAutomationByIdOptions as ValidateAutomationByIdOptions, type context$2_ValidateAutomationByIdRequest as ValidateAutomationByIdRequest, type context$2_ValidateAutomationByIdResponse as ValidateAutomationByIdResponse, type context$2_ValidateAutomationByIdResponseNonNullableFields as ValidateAutomationByIdResponseNonNullableFields, type ValidateAutomationRequest$1 as ValidateAutomationRequest, type ValidateAutomationResponse$1 as ValidateAutomationResponse, type ValidateAutomationResponseNonNullableFields$1 as ValidateAutomationResponseNonNullableFields, ValidationErrorType$1 as ValidationErrorType, WebhookIdentityType$2 as WebhookIdentityType, type _publicOnAutomationCreatedType$1 as _publicOnAutomationCreatedType, type _publicOnAutomationDeletedType$1 as _publicOnAutomationDeletedType, type _publicOnAutomationDeletedWithEntityType$1 as _publicOnAutomationDeletedWithEntityType, type _publicOnAutomationUpdatedType$1 as _publicOnAutomationUpdatedType, type _publicOnAutomationUpdatedWithPreviousEntityType$1 as _publicOnAutomationUpdatedWithPreviousEntityType, createAutomation$2 as createAutomation, deleteAutomation$2 as deleteAutomation, context$2_generateActionInputMappingFromTemplate as generateActionInputMappingFromTemplate, getActionsQuotaInfo$2 as getActionsQuotaInfo, getAutomation$2 as getAutomation, context$2_getAutomationActivationStats as getAutomationActivationStats, context$2_migrationUpdateAutomation as migrationUpdateAutomation, onAutomationCreated$2 as onAutomationCreated, onAutomationDeleted$2 as onAutomationDeleted, onAutomationDeletedWithEntity$2 as onAutomationDeletedWithEntity, onAutomationUpdated$2 as onAutomationUpdated, onAutomationUpdatedWithPreviousEntity$2 as onAutomationUpdatedWithPreviousEntity, context$2_overrideApplicationAutomation as overrideApplicationAutomation, onAutomationCreated$3 as publicOnAutomationCreated, onAutomationDeleted$3 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$3 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$3 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$3 as publicOnAutomationUpdatedWithPreviousEntity, queryAutomations$2 as queryAutomations, updateAutomation$2 as updateAutomation, validateAutomation$2 as validateAutomation, context$2_validateAutomationById as validateAutomationById };
|
|
2181
2262
|
}
|
|
2182
2263
|
|
|
2183
2264
|
interface Activation {
|
|
@@ -4710,7 +4791,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
4710
4791
|
version?: string;
|
|
4711
4792
|
/** A timestamp of the event. */
|
|
4712
4793
|
timestamp?: string;
|
|
4713
|
-
/**
|
|
4794
|
+
/**
|
|
4795
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
4796
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
4797
|
+
*/
|
|
4714
4798
|
assets?: Asset[];
|
|
4715
4799
|
}
|
|
4716
4800
|
/** @oneof */
|
|
@@ -873,7 +873,10 @@ interface MetaSiteSpecialEvent$1 extends MetaSiteSpecialEventPayloadOneOf$1 {
|
|
|
873
873
|
version?: string;
|
|
874
874
|
/** A timestamp of the event. */
|
|
875
875
|
timestamp?: string;
|
|
876
|
-
/**
|
|
876
|
+
/**
|
|
877
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
878
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
879
|
+
*/
|
|
877
880
|
assets?: Asset$1[];
|
|
878
881
|
}
|
|
879
882
|
/** @oneof */
|
|
@@ -1256,6 +1259,14 @@ interface UpdatedWithPreviousEntity$1 {
|
|
|
1256
1259
|
/** updated automation */
|
|
1257
1260
|
currentAutomation?: Automation$2;
|
|
1258
1261
|
}
|
|
1262
|
+
interface MigrationUpdateAutomationRequest {
|
|
1263
|
+
/** Automation to be updated, may be partial */
|
|
1264
|
+
automation: Automation$2;
|
|
1265
|
+
}
|
|
1266
|
+
interface MigrationUpdateAutomationResponse {
|
|
1267
|
+
/** The updated Automation */
|
|
1268
|
+
automation?: Automation$2;
|
|
1269
|
+
}
|
|
1259
1270
|
interface DeleteAutomationRequest$1 {
|
|
1260
1271
|
/** Id of the Automation to delete */
|
|
1261
1272
|
automationId: string;
|
|
@@ -1663,6 +1674,9 @@ interface GetAutomationResponseNonNullableFields$1 {
|
|
|
1663
1674
|
interface UpdateAutomationResponseNonNullableFields$1 {
|
|
1664
1675
|
automation?: AutomationNonNullableFields$1;
|
|
1665
1676
|
}
|
|
1677
|
+
interface MigrationUpdateAutomationResponseNonNullableFields {
|
|
1678
|
+
automation?: AutomationNonNullableFields$1;
|
|
1679
|
+
}
|
|
1666
1680
|
interface QueryAutomationsResponseNonNullableFields$1 {
|
|
1667
1681
|
automations: AutomationNonNullableFields$1[];
|
|
1668
1682
|
}
|
|
@@ -1873,6 +1887,60 @@ interface UpdateAutomation$1 {
|
|
|
1873
1887
|
/** @readonly */
|
|
1874
1888
|
migratedToV3?: boolean | null;
|
|
1875
1889
|
}
|
|
1890
|
+
interface MigrationUpdateAutomation {
|
|
1891
|
+
/**
|
|
1892
|
+
* Automation ID
|
|
1893
|
+
* @readonly
|
|
1894
|
+
*/
|
|
1895
|
+
_id?: string | null;
|
|
1896
|
+
/** Revision */
|
|
1897
|
+
revision?: string | null;
|
|
1898
|
+
/** Automation name */
|
|
1899
|
+
name?: string;
|
|
1900
|
+
/** Automation description */
|
|
1901
|
+
description?: string;
|
|
1902
|
+
/**
|
|
1903
|
+
* Automation Type
|
|
1904
|
+
* @readonly
|
|
1905
|
+
*/
|
|
1906
|
+
type?: Type$2;
|
|
1907
|
+
/** Automation Status */
|
|
1908
|
+
status?: Status$2;
|
|
1909
|
+
/** Rule that contains a trigger and some actions */
|
|
1910
|
+
rule?: Rule;
|
|
1911
|
+
/**
|
|
1912
|
+
* Source Application Automation
|
|
1913
|
+
* @readonly
|
|
1914
|
+
*/
|
|
1915
|
+
source?: Source;
|
|
1916
|
+
/**
|
|
1917
|
+
* Metadata
|
|
1918
|
+
* @readonly
|
|
1919
|
+
*/
|
|
1920
|
+
metadata?: AutomationMetadata;
|
|
1921
|
+
/**
|
|
1922
|
+
* Created date
|
|
1923
|
+
* @readonly
|
|
1924
|
+
*/
|
|
1925
|
+
_createdDate?: Date;
|
|
1926
|
+
/**
|
|
1927
|
+
* Updated date
|
|
1928
|
+
* @readonly
|
|
1929
|
+
*/
|
|
1930
|
+
_updatedDate?: Date;
|
|
1931
|
+
/**
|
|
1932
|
+
* ESB Configuration ID
|
|
1933
|
+
* @readonly
|
|
1934
|
+
*/
|
|
1935
|
+
esbConfigurationId?: string | null;
|
|
1936
|
+
/**
|
|
1937
|
+
* Was this automation migrated from v1
|
|
1938
|
+
* @readonly
|
|
1939
|
+
*/
|
|
1940
|
+
migratedFromV1?: boolean | null;
|
|
1941
|
+
/** @readonly */
|
|
1942
|
+
migratedToV3?: boolean | null;
|
|
1943
|
+
}
|
|
1876
1944
|
interface DeleteAutomationOptions {
|
|
1877
1945
|
/** The revision of the Automation */
|
|
1878
1946
|
revision?: string;
|
|
@@ -1997,10 +2065,17 @@ interface UpdateAutomationSignature$1 {
|
|
|
1997
2065
|
/**
|
|
1998
2066
|
* Update a Automation, supports partial update
|
|
1999
2067
|
* Pass the latest `revision` for a successful update
|
|
2068
|
+
* @param - Automation ID
|
|
2069
|
+
*/
|
|
2070
|
+
(_id: string | null, automation: UpdateAutomation$1): Promise<UpdateAutomationResponse$1 & UpdateAutomationResponseNonNullableFields$1>;
|
|
2071
|
+
}
|
|
2072
|
+
declare function migrationUpdateAutomation$1(httpClient: HttpClient): MigrationUpdateAutomationSignature;
|
|
2073
|
+
interface MigrationUpdateAutomationSignature {
|
|
2074
|
+
/**
|
|
2000
2075
|
* @param - Automation ID
|
|
2001
2076
|
* @returns The updated Automation
|
|
2002
2077
|
*/
|
|
2003
|
-
(_id: string | null, automation:
|
|
2078
|
+
(_id: string | null, automation: MigrationUpdateAutomation): Promise<Automation$2 & AutomationNonNullableFields$1>;
|
|
2004
2079
|
}
|
|
2005
2080
|
declare function deleteAutomation$3(httpClient: HttpClient): DeleteAutomationSignature$1;
|
|
2006
2081
|
interface DeleteAutomationSignature$1 {
|
|
@@ -2090,6 +2165,7 @@ declare function createEventModule$2<T extends EventDefinition$2<any, string>>(e
|
|
|
2090
2165
|
declare const createAutomation$2: MaybeContext<BuildRESTFunction<typeof createAutomation$3> & typeof createAutomation$3>;
|
|
2091
2166
|
declare const getAutomation$2: MaybeContext<BuildRESTFunction<typeof getAutomation$3> & typeof getAutomation$3>;
|
|
2092
2167
|
declare const updateAutomation$2: MaybeContext<BuildRESTFunction<typeof updateAutomation$3> & typeof updateAutomation$3>;
|
|
2168
|
+
declare const migrationUpdateAutomation: MaybeContext<BuildRESTFunction<typeof migrationUpdateAutomation$1> & typeof migrationUpdateAutomation$1>;
|
|
2093
2169
|
declare const deleteAutomation$2: MaybeContext<BuildRESTFunction<typeof deleteAutomation$3> & typeof deleteAutomation$3>;
|
|
2094
2170
|
declare const queryAutomations$2: MaybeContext<BuildRESTFunction<typeof queryAutomations$3> & typeof queryAutomations$3>;
|
|
2095
2171
|
declare const overrideApplicationAutomation: MaybeContext<BuildRESTFunction<typeof overrideApplicationAutomation$1> & typeof overrideApplicationAutomation$1>;
|
|
@@ -2143,6 +2219,10 @@ type index_d$2_GetAutomationActivationStatsOptions = GetAutomationActivationStat
|
|
|
2143
2219
|
type index_d$2_MigrationBulkCreateAutomations = MigrationBulkCreateAutomations;
|
|
2144
2220
|
type index_d$2_MigrationBulkCreateAutomationsRequest = MigrationBulkCreateAutomationsRequest;
|
|
2145
2221
|
type index_d$2_MigrationBulkCreateAutomationsResponse = MigrationBulkCreateAutomationsResponse;
|
|
2222
|
+
type index_d$2_MigrationUpdateAutomation = MigrationUpdateAutomation;
|
|
2223
|
+
type index_d$2_MigrationUpdateAutomationRequest = MigrationUpdateAutomationRequest;
|
|
2224
|
+
type index_d$2_MigrationUpdateAutomationResponse = MigrationUpdateAutomationResponse;
|
|
2225
|
+
type index_d$2_MigrationUpdateAutomationResponseNonNullableFields = MigrationUpdateAutomationResponseNonNullableFields;
|
|
2146
2226
|
type index_d$2_MigrationUpdateMigratedToV3AutomationRequest = MigrationUpdateMigratedToV3AutomationRequest;
|
|
2147
2227
|
type index_d$2_MigrationUpdateMigratedToV3AutomationResponse = MigrationUpdateMigratedToV3AutomationResponse;
|
|
2148
2228
|
type index_d$2_Offset = Offset;
|
|
@@ -2174,10 +2254,11 @@ type index_d$2_ValidateAutomationByIdResponse = ValidateAutomationByIdResponse;
|
|
|
2174
2254
|
type index_d$2_ValidateAutomationByIdResponseNonNullableFields = ValidateAutomationByIdResponseNonNullableFields;
|
|
2175
2255
|
declare const index_d$2_generateActionInputMappingFromTemplate: typeof generateActionInputMappingFromTemplate;
|
|
2176
2256
|
declare const index_d$2_getAutomationActivationStats: typeof getAutomationActivationStats;
|
|
2257
|
+
declare const index_d$2_migrationUpdateAutomation: typeof migrationUpdateAutomation;
|
|
2177
2258
|
declare const index_d$2_overrideApplicationAutomation: typeof overrideApplicationAutomation;
|
|
2178
2259
|
declare const index_d$2_validateAutomationById: typeof validateAutomationById;
|
|
2179
2260
|
declare namespace index_d$2 {
|
|
2180
|
-
export { type Action$2 as Action, type ActionConfigurationError$1 as ActionConfigurationError, ActionErrorType$1 as ActionErrorType, type ActionEvent$2 as ActionEvent, type ActionProviderQuotaInfo$1 as ActionProviderQuotaInfo, type ActionQuotaInfo$1 as ActionQuotaInfo, type ActionValidationError$1 as ActionValidationError, type ActionValidationErrorErrorOneOf$1 as ActionValidationErrorErrorOneOf, type ActionValidationInfo$1 as ActionValidationInfo, type index_d$2_ActivationReport as ActivationReport, ActivationStatus$1 as ActivationStatus, type AdditionalInfo$1 as AdditionalInfo, type ApplicationError$2 as ApplicationError, type Asset$1 as Asset, type Automation$2 as Automation, type AutomationCreatedEnvelope$1 as AutomationCreatedEnvelope, type AutomationDeletedEnvelope$1 as AutomationDeletedEnvelope, type AutomationDeletedWithEntityEnvelope$1 as AutomationDeletedWithEntityEnvelope, type index_d$2_AutomationMetadata as AutomationMetadata, type AutomationNonNullableFields$1 as AutomationNonNullableFields, type AutomationUpdatedEnvelope$1 as AutomationUpdatedEnvelope, type AutomationUpdatedWithPreviousEntityEnvelope$1 as AutomationUpdatedWithPreviousEntityEnvelope, type AutomationsQueryBuilder$1 as AutomationsQueryBuilder, type AutomationsQueryResult$1 as AutomationsQueryResult, type BaseEventMetadata$2 as BaseEventMetadata, BlockType$1 as BlockType, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateApplicationAutomationRequest as BulkCreateApplicationAutomationRequest, type index_d$2_BulkCreateApplicationAutomationResponse as BulkCreateApplicationAutomationResponse, type BulkDeleteAutomationsRequest$1 as BulkDeleteAutomationsRequest, type BulkDeleteAutomationsResponse$1 as BulkDeleteAutomationsResponse, type CTA$1 as CTA, type index_d$2_Condition as Condition, type ConditionBlock$1 as ConditionBlock, type index_d$2_Conditions as Conditions, type CreateAutomationRequest$1 as CreateAutomationRequest, type CreateAutomationResponse$1 as CreateAutomationResponse, type CreateAutomationResponseNonNullableFields$1 as CreateAutomationResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$2_Debounce as Debounce, type Delay$1 as Delay, type index_d$2_DelayTypeOneOf as DelayTypeOneOf, type index_d$2_DeleteAutomationOptions as DeleteAutomationOptions, type DeleteAutomationRequest$1 as DeleteAutomationRequest, type DeleteAutomationResponse$1 as DeleteAutomationResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type DeletedWithEntity$1 as DeletedWithEntity, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type index_d$2_ExtendedFields as ExtendedFields, type Filter$2 as Filter, type index_d$2_GenerateActionInputMappingFromTemplateOptions as GenerateActionInputMappingFromTemplateOptions, type index_d$2_GenerateActionInputMappingFromTemplateRequest as GenerateActionInputMappingFromTemplateRequest, type index_d$2_GenerateActionInputMappingFromTemplateResponse as GenerateActionInputMappingFromTemplateResponse, type index_d$2_GenerateApplicationAutomationFromCustomRequest as GenerateApplicationAutomationFromCustomRequest, type index_d$2_GenerateApplicationAutomationFromCustomResponse as GenerateApplicationAutomationFromCustomResponse, type GetActionsQuotaInfoRequest$1 as GetActionsQuotaInfoRequest, type GetActionsQuotaInfoResponse$1 as GetActionsQuotaInfoResponse, type GetActionsQuotaInfoResponseNonNullableFields$1 as GetActionsQuotaInfoResponseNonNullableFields, type index_d$2_GetApplicationAutomationRequest as GetApplicationAutomationRequest, type index_d$2_GetApplicationAutomationResponse as GetApplicationAutomationResponse, type GetAutomationActionSchemaRequest$1 as GetAutomationActionSchemaRequest, type GetAutomationActionSchemaResponse$1 as GetAutomationActionSchemaResponse, type index_d$2_GetAutomationActivationReportsRequest as GetAutomationActivationReportsRequest, type index_d$2_GetAutomationActivationReportsResponse as GetAutomationActivationReportsResponse, type index_d$2_GetAutomationActivationReportsResponseNonNullableFields as GetAutomationActivationReportsResponseNonNullableFields, type index_d$2_GetAutomationActivationStatsOptions as GetAutomationActivationStatsOptions, type GetAutomationOptions$1 as GetAutomationOptions, type GetAutomationRequest$1 as GetAutomationRequest, type GetAutomationResponse$1 as GetAutomationResponse, type GetAutomationResponseNonNullableFields$1 as GetAutomationResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type ItemMetadata$2 as ItemMetadata, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$2_MigrationBulkCreateAutomations as MigrationBulkCreateAutomations, type index_d$2_MigrationBulkCreateAutomationsRequest as MigrationBulkCreateAutomationsRequest, type index_d$2_MigrationBulkCreateAutomationsResponse as MigrationBulkCreateAutomationsResponse, type index_d$2_MigrationUpdateMigratedToV3AutomationRequest as MigrationUpdateMigratedToV3AutomationRequest, type index_d$2_MigrationUpdateMigratedToV3AutomationResponse as MigrationUpdateMigratedToV3AutomationResponse, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$2_Offset as Offset, type index_d$2_OffsetValueOneOf as OffsetValueOneOf, type index_d$2_OverrideApplicationAutomationRequest as OverrideApplicationAutomationRequest, type index_d$2_OverrideApplicationAutomationResponse as OverrideApplicationAutomationResponse, type index_d$2_OverrideApplicationAutomationResponseNonNullableFields as OverrideApplicationAutomationResponseNonNullableFields, type index_d$2_Paging as Paging, type index_d$2_PagingMetadata as PagingMetadata, type index_d$2_PagingMetadataV2 as PagingMetadataV2, type Plan$1 as Plan, type ProviderConfigurationError$1 as ProviderConfigurationError, type index_d$2_QueryApplicationAutomationsRequest as QueryApplicationAutomationsRequest, type index_d$2_QueryApplicationAutomationsResponse as QueryApplicationAutomationsResponse, type index_d$2_QueryAutomationsOptions as QueryAutomationsOptions, type QueryAutomationsRequest$1 as QueryAutomationsRequest, type QueryAutomationsResponse$1 as QueryAutomationsResponse, type QueryAutomationsResponseNonNullableFields$1 as QueryAutomationsResponseNonNullableFields, type index_d$2_QueryV2 as QueryV2, type index_d$2_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type Quota$1 as Quota, type QuotaInfo$1 as QuotaInfo, type RateLimit$2 as RateLimit, type RestoreInfo$2 as RestoreInfo, type index_d$2_Rule as Rule, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$2_Source as Source, State$1 as State, Status$2 as Status, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$2_SyncApplicationAutomationsRequest as SyncApplicationAutomationsRequest, type index_d$2_SyncApplicationAutomationsResponse as SyncApplicationAutomationsResponse, type Trigger$2 as Trigger, type TriggerConfigurationError$1 as TriggerConfigurationError, TriggerErrorType$1 as TriggerErrorType, type TriggerValidationError$1 as TriggerValidationError, type TriggerValidationErrorErrorOneOf$1 as TriggerValidationErrorErrorOneOf, TriggerValidationErrorValidationErrorType$1 as TriggerValidationErrorValidationErrorType, Type$2 as Type, type index_d$2_Until as Until, type index_d$2_UpdateApplicationAutomationConfigurationIdRequest as UpdateApplicationAutomationConfigurationIdRequest, type index_d$2_UpdateApplicationAutomationConfigurationIdResponse as UpdateApplicationAutomationConfigurationIdResponse, type index_d$2_UpdateApplicationAutomationToMigratedFromV1Request as UpdateApplicationAutomationToMigratedFromV1Request, type index_d$2_UpdateApplicationAutomationToMigratedFromV1Response as UpdateApplicationAutomationToMigratedFromV1Response, type UpdateAutomation$1 as UpdateAutomation, type UpdateAutomationRequest$1 as UpdateAutomationRequest, type UpdateAutomationResponse$1 as UpdateAutomationResponse, type UpdateAutomationResponseNonNullableFields$1 as UpdateAutomationResponseNonNullableFields, type index_d$2_UpdatedAutomationsWithEsb as UpdatedAutomationsWithEsb, type UpdatedWithPreviousEntity$1 as UpdatedWithPreviousEntity, type UpgradeCTA$1 as UpgradeCTA, type index_d$2_ValidateAutomationByIdOptions as ValidateAutomationByIdOptions, type index_d$2_ValidateAutomationByIdRequest as ValidateAutomationByIdRequest, type index_d$2_ValidateAutomationByIdResponse as ValidateAutomationByIdResponse, type index_d$2_ValidateAutomationByIdResponseNonNullableFields as ValidateAutomationByIdResponseNonNullableFields, type ValidateAutomationRequest$1 as ValidateAutomationRequest, type ValidateAutomationResponse$1 as ValidateAutomationResponse, type ValidateAutomationResponseNonNullableFields$1 as ValidateAutomationResponseNonNullableFields, ValidationErrorType$1 as ValidationErrorType, WebhookIdentityType$2 as WebhookIdentityType, type _publicOnAutomationCreatedType$1 as _publicOnAutomationCreatedType, type _publicOnAutomationDeletedType$1 as _publicOnAutomationDeletedType, type _publicOnAutomationDeletedWithEntityType$1 as _publicOnAutomationDeletedWithEntityType, type _publicOnAutomationUpdatedType$1 as _publicOnAutomationUpdatedType, type _publicOnAutomationUpdatedWithPreviousEntityType$1 as _publicOnAutomationUpdatedWithPreviousEntityType, createAutomation$2 as createAutomation, deleteAutomation$2 as deleteAutomation, index_d$2_generateActionInputMappingFromTemplate as generateActionInputMappingFromTemplate, getActionsQuotaInfo$2 as getActionsQuotaInfo, getAutomation$2 as getAutomation, index_d$2_getAutomationActivationStats as getAutomationActivationStats, onAutomationCreated$2 as onAutomationCreated, onAutomationDeleted$2 as onAutomationDeleted, onAutomationDeletedWithEntity$2 as onAutomationDeletedWithEntity, onAutomationUpdated$2 as onAutomationUpdated, onAutomationUpdatedWithPreviousEntity$2 as onAutomationUpdatedWithPreviousEntity, index_d$2_overrideApplicationAutomation as overrideApplicationAutomation, onAutomationCreated$3 as publicOnAutomationCreated, onAutomationDeleted$3 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$3 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$3 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$3 as publicOnAutomationUpdatedWithPreviousEntity, queryAutomations$2 as queryAutomations, updateAutomation$2 as updateAutomation, validateAutomation$2 as validateAutomation, index_d$2_validateAutomationById as validateAutomationById };
|
|
2261
|
+
export { type Action$2 as Action, type ActionConfigurationError$1 as ActionConfigurationError, ActionErrorType$1 as ActionErrorType, type ActionEvent$2 as ActionEvent, type ActionProviderQuotaInfo$1 as ActionProviderQuotaInfo, type ActionQuotaInfo$1 as ActionQuotaInfo, type ActionValidationError$1 as ActionValidationError, type ActionValidationErrorErrorOneOf$1 as ActionValidationErrorErrorOneOf, type ActionValidationInfo$1 as ActionValidationInfo, type index_d$2_ActivationReport as ActivationReport, ActivationStatus$1 as ActivationStatus, type AdditionalInfo$1 as AdditionalInfo, type ApplicationError$2 as ApplicationError, type Asset$1 as Asset, type Automation$2 as Automation, type AutomationCreatedEnvelope$1 as AutomationCreatedEnvelope, type AutomationDeletedEnvelope$1 as AutomationDeletedEnvelope, type AutomationDeletedWithEntityEnvelope$1 as AutomationDeletedWithEntityEnvelope, type index_d$2_AutomationMetadata as AutomationMetadata, type AutomationNonNullableFields$1 as AutomationNonNullableFields, type AutomationUpdatedEnvelope$1 as AutomationUpdatedEnvelope, type AutomationUpdatedWithPreviousEntityEnvelope$1 as AutomationUpdatedWithPreviousEntityEnvelope, type AutomationsQueryBuilder$1 as AutomationsQueryBuilder, type AutomationsQueryResult$1 as AutomationsQueryResult, type BaseEventMetadata$2 as BaseEventMetadata, BlockType$1 as BlockType, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateApplicationAutomationRequest as BulkCreateApplicationAutomationRequest, type index_d$2_BulkCreateApplicationAutomationResponse as BulkCreateApplicationAutomationResponse, type BulkDeleteAutomationsRequest$1 as BulkDeleteAutomationsRequest, type BulkDeleteAutomationsResponse$1 as BulkDeleteAutomationsResponse, type CTA$1 as CTA, type index_d$2_Condition as Condition, type ConditionBlock$1 as ConditionBlock, type index_d$2_Conditions as Conditions, type CreateAutomationRequest$1 as CreateAutomationRequest, type CreateAutomationResponse$1 as CreateAutomationResponse, type CreateAutomationResponseNonNullableFields$1 as CreateAutomationResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$2_Debounce as Debounce, type Delay$1 as Delay, type index_d$2_DelayTypeOneOf as DelayTypeOneOf, type index_d$2_DeleteAutomationOptions as DeleteAutomationOptions, type DeleteAutomationRequest$1 as DeleteAutomationRequest, type DeleteAutomationResponse$1 as DeleteAutomationResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type DeletedWithEntity$1 as DeletedWithEntity, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type index_d$2_ExtendedFields as ExtendedFields, type Filter$2 as Filter, type index_d$2_GenerateActionInputMappingFromTemplateOptions as GenerateActionInputMappingFromTemplateOptions, type index_d$2_GenerateActionInputMappingFromTemplateRequest as GenerateActionInputMappingFromTemplateRequest, type index_d$2_GenerateActionInputMappingFromTemplateResponse as GenerateActionInputMappingFromTemplateResponse, type index_d$2_GenerateApplicationAutomationFromCustomRequest as GenerateApplicationAutomationFromCustomRequest, type index_d$2_GenerateApplicationAutomationFromCustomResponse as GenerateApplicationAutomationFromCustomResponse, type GetActionsQuotaInfoRequest$1 as GetActionsQuotaInfoRequest, type GetActionsQuotaInfoResponse$1 as GetActionsQuotaInfoResponse, type GetActionsQuotaInfoResponseNonNullableFields$1 as GetActionsQuotaInfoResponseNonNullableFields, type index_d$2_GetApplicationAutomationRequest as GetApplicationAutomationRequest, type index_d$2_GetApplicationAutomationResponse as GetApplicationAutomationResponse, type GetAutomationActionSchemaRequest$1 as GetAutomationActionSchemaRequest, type GetAutomationActionSchemaResponse$1 as GetAutomationActionSchemaResponse, type index_d$2_GetAutomationActivationReportsRequest as GetAutomationActivationReportsRequest, type index_d$2_GetAutomationActivationReportsResponse as GetAutomationActivationReportsResponse, type index_d$2_GetAutomationActivationReportsResponseNonNullableFields as GetAutomationActivationReportsResponseNonNullableFields, type index_d$2_GetAutomationActivationStatsOptions as GetAutomationActivationStatsOptions, type GetAutomationOptions$1 as GetAutomationOptions, type GetAutomationRequest$1 as GetAutomationRequest, type GetAutomationResponse$1 as GetAutomationResponse, type GetAutomationResponseNonNullableFields$1 as GetAutomationResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type ItemMetadata$2 as ItemMetadata, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$2_MigrationBulkCreateAutomations as MigrationBulkCreateAutomations, type index_d$2_MigrationBulkCreateAutomationsRequest as MigrationBulkCreateAutomationsRequest, type index_d$2_MigrationBulkCreateAutomationsResponse as MigrationBulkCreateAutomationsResponse, type index_d$2_MigrationUpdateAutomation as MigrationUpdateAutomation, type index_d$2_MigrationUpdateAutomationRequest as MigrationUpdateAutomationRequest, type index_d$2_MigrationUpdateAutomationResponse as MigrationUpdateAutomationResponse, type index_d$2_MigrationUpdateAutomationResponseNonNullableFields as MigrationUpdateAutomationResponseNonNullableFields, type index_d$2_MigrationUpdateMigratedToV3AutomationRequest as MigrationUpdateMigratedToV3AutomationRequest, type index_d$2_MigrationUpdateMigratedToV3AutomationResponse as MigrationUpdateMigratedToV3AutomationResponse, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$2_Offset as Offset, type index_d$2_OffsetValueOneOf as OffsetValueOneOf, type index_d$2_OverrideApplicationAutomationRequest as OverrideApplicationAutomationRequest, type index_d$2_OverrideApplicationAutomationResponse as OverrideApplicationAutomationResponse, type index_d$2_OverrideApplicationAutomationResponseNonNullableFields as OverrideApplicationAutomationResponseNonNullableFields, type index_d$2_Paging as Paging, type index_d$2_PagingMetadata as PagingMetadata, type index_d$2_PagingMetadataV2 as PagingMetadataV2, type Plan$1 as Plan, type ProviderConfigurationError$1 as ProviderConfigurationError, type index_d$2_QueryApplicationAutomationsRequest as QueryApplicationAutomationsRequest, type index_d$2_QueryApplicationAutomationsResponse as QueryApplicationAutomationsResponse, type index_d$2_QueryAutomationsOptions as QueryAutomationsOptions, type QueryAutomationsRequest$1 as QueryAutomationsRequest, type QueryAutomationsResponse$1 as QueryAutomationsResponse, type QueryAutomationsResponseNonNullableFields$1 as QueryAutomationsResponseNonNullableFields, type index_d$2_QueryV2 as QueryV2, type index_d$2_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type Quota$1 as Quota, type QuotaInfo$1 as QuotaInfo, type RateLimit$2 as RateLimit, type RestoreInfo$2 as RestoreInfo, type index_d$2_Rule as Rule, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$2_Source as Source, State$1 as State, Status$2 as Status, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$2_SyncApplicationAutomationsRequest as SyncApplicationAutomationsRequest, type index_d$2_SyncApplicationAutomationsResponse as SyncApplicationAutomationsResponse, type Trigger$2 as Trigger, type TriggerConfigurationError$1 as TriggerConfigurationError, TriggerErrorType$1 as TriggerErrorType, type TriggerValidationError$1 as TriggerValidationError, type TriggerValidationErrorErrorOneOf$1 as TriggerValidationErrorErrorOneOf, TriggerValidationErrorValidationErrorType$1 as TriggerValidationErrorValidationErrorType, Type$2 as Type, type index_d$2_Until as Until, type index_d$2_UpdateApplicationAutomationConfigurationIdRequest as UpdateApplicationAutomationConfigurationIdRequest, type index_d$2_UpdateApplicationAutomationConfigurationIdResponse as UpdateApplicationAutomationConfigurationIdResponse, type index_d$2_UpdateApplicationAutomationToMigratedFromV1Request as UpdateApplicationAutomationToMigratedFromV1Request, type index_d$2_UpdateApplicationAutomationToMigratedFromV1Response as UpdateApplicationAutomationToMigratedFromV1Response, type UpdateAutomation$1 as UpdateAutomation, type UpdateAutomationRequest$1 as UpdateAutomationRequest, type UpdateAutomationResponse$1 as UpdateAutomationResponse, type UpdateAutomationResponseNonNullableFields$1 as UpdateAutomationResponseNonNullableFields, type index_d$2_UpdatedAutomationsWithEsb as UpdatedAutomationsWithEsb, type UpdatedWithPreviousEntity$1 as UpdatedWithPreviousEntity, type UpgradeCTA$1 as UpgradeCTA, type index_d$2_ValidateAutomationByIdOptions as ValidateAutomationByIdOptions, type index_d$2_ValidateAutomationByIdRequest as ValidateAutomationByIdRequest, type index_d$2_ValidateAutomationByIdResponse as ValidateAutomationByIdResponse, type index_d$2_ValidateAutomationByIdResponseNonNullableFields as ValidateAutomationByIdResponseNonNullableFields, type ValidateAutomationRequest$1 as ValidateAutomationRequest, type ValidateAutomationResponse$1 as ValidateAutomationResponse, type ValidateAutomationResponseNonNullableFields$1 as ValidateAutomationResponseNonNullableFields, ValidationErrorType$1 as ValidationErrorType, WebhookIdentityType$2 as WebhookIdentityType, type _publicOnAutomationCreatedType$1 as _publicOnAutomationCreatedType, type _publicOnAutomationDeletedType$1 as _publicOnAutomationDeletedType, type _publicOnAutomationDeletedWithEntityType$1 as _publicOnAutomationDeletedWithEntityType, type _publicOnAutomationUpdatedType$1 as _publicOnAutomationUpdatedType, type _publicOnAutomationUpdatedWithPreviousEntityType$1 as _publicOnAutomationUpdatedWithPreviousEntityType, createAutomation$2 as createAutomation, deleteAutomation$2 as deleteAutomation, index_d$2_generateActionInputMappingFromTemplate as generateActionInputMappingFromTemplate, getActionsQuotaInfo$2 as getActionsQuotaInfo, getAutomation$2 as getAutomation, index_d$2_getAutomationActivationStats as getAutomationActivationStats, index_d$2_migrationUpdateAutomation as migrationUpdateAutomation, onAutomationCreated$2 as onAutomationCreated, onAutomationDeleted$2 as onAutomationDeleted, onAutomationDeletedWithEntity$2 as onAutomationDeletedWithEntity, onAutomationUpdated$2 as onAutomationUpdated, onAutomationUpdatedWithPreviousEntity$2 as onAutomationUpdatedWithPreviousEntity, index_d$2_overrideApplicationAutomation as overrideApplicationAutomation, onAutomationCreated$3 as publicOnAutomationCreated, onAutomationDeleted$3 as publicOnAutomationDeleted, onAutomationDeletedWithEntity$3 as publicOnAutomationDeletedWithEntity, onAutomationUpdated$3 as publicOnAutomationUpdated, onAutomationUpdatedWithPreviousEntity$3 as publicOnAutomationUpdatedWithPreviousEntity, queryAutomations$2 as queryAutomations, updateAutomation$2 as updateAutomation, validateAutomation$2 as validateAutomation, index_d$2_validateAutomationById as validateAutomationById };
|
|
2181
2262
|
}
|
|
2182
2263
|
|
|
2183
2264
|
interface Activation {
|
|
@@ -4710,7 +4791,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
4710
4791
|
version?: string;
|
|
4711
4792
|
/** A timestamp of the event. */
|
|
4712
4793
|
timestamp?: string;
|
|
4713
|
-
/**
|
|
4794
|
+
/**
|
|
4795
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
4796
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
4797
|
+
*/
|
|
4714
4798
|
assets?: Asset[];
|
|
4715
4799
|
}
|
|
4716
4800
|
/** @oneof */
|
|
@@ -330,6 +330,14 @@ interface UpdateAutomationResponse$3 {
|
|
|
330
330
|
/** The updated Automation */
|
|
331
331
|
automation?: Automation$3;
|
|
332
332
|
}
|
|
333
|
+
interface MigrationUpdateAutomationRequest$1 {
|
|
334
|
+
/** Automation to be updated, may be partial */
|
|
335
|
+
automation: Automation$3;
|
|
336
|
+
}
|
|
337
|
+
interface MigrationUpdateAutomationResponse$1 {
|
|
338
|
+
/** The updated Automation */
|
|
339
|
+
automation?: Automation$3;
|
|
340
|
+
}
|
|
333
341
|
interface DeleteAutomationRequest$3 {
|
|
334
342
|
/** Id of the Automation to delete */
|
|
335
343
|
automationId: string;
|
|
@@ -699,6 +707,9 @@ interface GetAutomationResponseNonNullableFields$3 {
|
|
|
699
707
|
interface UpdateAutomationResponseNonNullableFields$3 {
|
|
700
708
|
automation?: AutomationNonNullableFields$3;
|
|
701
709
|
}
|
|
710
|
+
interface MigrationUpdateAutomationResponseNonNullableFields$1 {
|
|
711
|
+
automation?: AutomationNonNullableFields$3;
|
|
712
|
+
}
|
|
702
713
|
interface QueryAutomationsResponseNonNullableFields$3 {
|
|
703
714
|
automations: AutomationNonNullableFields$3[];
|
|
704
715
|
}
|
|
@@ -1119,6 +1130,14 @@ interface UpdateAutomationResponse$2 {
|
|
|
1119
1130
|
/** The updated Automation */
|
|
1120
1131
|
automation?: Automation$2;
|
|
1121
1132
|
}
|
|
1133
|
+
interface MigrationUpdateAutomationRequest {
|
|
1134
|
+
/** Automation to be updated, may be partial */
|
|
1135
|
+
automation: Automation$2;
|
|
1136
|
+
}
|
|
1137
|
+
interface MigrationUpdateAutomationResponse {
|
|
1138
|
+
/** The updated Automation */
|
|
1139
|
+
automation?: Automation$2;
|
|
1140
|
+
}
|
|
1122
1141
|
interface DeleteAutomationRequest$2 {
|
|
1123
1142
|
/** Id of the Automation to delete */
|
|
1124
1143
|
automationId: string;
|
|
@@ -1488,6 +1507,9 @@ interface GetAutomationResponseNonNullableFields$2 {
|
|
|
1488
1507
|
interface UpdateAutomationResponseNonNullableFields$2 {
|
|
1489
1508
|
automation?: AutomationNonNullableFields$2;
|
|
1490
1509
|
}
|
|
1510
|
+
interface MigrationUpdateAutomationResponseNonNullableFields {
|
|
1511
|
+
automation?: AutomationNonNullableFields$2;
|
|
1512
|
+
}
|
|
1491
1513
|
interface QueryAutomationsResponseNonNullableFields$2 {
|
|
1492
1514
|
automations: AutomationNonNullableFields$2[];
|
|
1493
1515
|
}
|
|
@@ -1593,6 +1615,9 @@ declare function getAutomation$1(): __PublicMethodMetaInfo$2<'GET', {
|
|
|
1593
1615
|
declare function updateAutomation$1(): __PublicMethodMetaInfo$2<'PATCH', {
|
|
1594
1616
|
automationId: string;
|
|
1595
1617
|
}, UpdateAutomationRequest$2, UpdateAutomationRequest$3, UpdateAutomationResponse$2 & UpdateAutomationResponseNonNullableFields$2, UpdateAutomationResponse$3 & UpdateAutomationResponseNonNullableFields$3>;
|
|
1618
|
+
declare function migrationUpdateAutomation(): __PublicMethodMetaInfo$2<'PATCH', {
|
|
1619
|
+
automationId: string;
|
|
1620
|
+
}, MigrationUpdateAutomationRequest, MigrationUpdateAutomationRequest$1, MigrationUpdateAutomationResponse & MigrationUpdateAutomationResponseNonNullableFields, MigrationUpdateAutomationResponse$1 & MigrationUpdateAutomationResponseNonNullableFields$1>;
|
|
1596
1621
|
declare function deleteAutomation$1(): __PublicMethodMetaInfo$2<'DELETE', {
|
|
1597
1622
|
automationId: string;
|
|
1598
1623
|
}, DeleteAutomationRequest$2, DeleteAutomationRequest$3, DeleteAutomationResponse$2, DeleteAutomationResponse$3>;
|
|
@@ -1610,10 +1635,11 @@ declare function generateActionInputMappingFromTemplate(): __PublicMethodMetaInf
|
|
|
1610
1635
|
|
|
1611
1636
|
declare const meta$2_generateActionInputMappingFromTemplate: typeof generateActionInputMappingFromTemplate;
|
|
1612
1637
|
declare const meta$2_getAutomationActivationStats: typeof getAutomationActivationStats;
|
|
1638
|
+
declare const meta$2_migrationUpdateAutomation: typeof migrationUpdateAutomation;
|
|
1613
1639
|
declare const meta$2_overrideApplicationAutomation: typeof overrideApplicationAutomation;
|
|
1614
1640
|
declare const meta$2_validateAutomationById: typeof validateAutomationById;
|
|
1615
1641
|
declare namespace meta$2 {
|
|
1616
|
-
export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, createAutomation$1 as createAutomation, deleteAutomation$1 as deleteAutomation, meta$2_generateActionInputMappingFromTemplate as generateActionInputMappingFromTemplate, getActionsQuotaInfo$1 as getActionsQuotaInfo, getAutomation$1 as getAutomation, meta$2_getAutomationActivationStats as getAutomationActivationStats, meta$2_overrideApplicationAutomation as overrideApplicationAutomation, queryAutomations$1 as queryAutomations, updateAutomation$1 as updateAutomation, validateAutomation$1 as validateAutomation, meta$2_validateAutomationById as validateAutomationById };
|
|
1642
|
+
export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, createAutomation$1 as createAutomation, deleteAutomation$1 as deleteAutomation, meta$2_generateActionInputMappingFromTemplate as generateActionInputMappingFromTemplate, getActionsQuotaInfo$1 as getActionsQuotaInfo, getAutomation$1 as getAutomation, meta$2_getAutomationActivationStats as getAutomationActivationStats, meta$2_migrationUpdateAutomation as migrationUpdateAutomation, meta$2_overrideApplicationAutomation as overrideApplicationAutomation, queryAutomations$1 as queryAutomations, updateAutomation$1 as updateAutomation, validateAutomation$1 as validateAutomation, meta$2_validateAutomationById as validateAutomationById };
|
|
1617
1643
|
}
|
|
1618
1644
|
|
|
1619
1645
|
interface ReportEventRequest$1 {
|