@wix/automations 1.0.43 → 1.0.44
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.44",
|
|
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.19",
|
|
23
|
+
"@wix/automations_automations-service-v-2": "1.0.27"
|
|
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": "32d47d2cecc2bb7cbb1439527be771358eede3743c67dea80e0dd50a"
|
|
49
49
|
}
|
|
@@ -1256,6 +1256,14 @@ interface UpdatedWithPreviousEntity$1 {
|
|
|
1256
1256
|
/** updated automation */
|
|
1257
1257
|
currentAutomation?: Automation$2;
|
|
1258
1258
|
}
|
|
1259
|
+
interface MigrationUpdateAutomationRequest {
|
|
1260
|
+
/** Automation to be updated, may be partial */
|
|
1261
|
+
automation: Automation$2;
|
|
1262
|
+
}
|
|
1263
|
+
interface MigrationUpdateAutomationResponse {
|
|
1264
|
+
/** The updated Automation */
|
|
1265
|
+
automation?: Automation$2;
|
|
1266
|
+
}
|
|
1259
1267
|
interface DeleteAutomationRequest$1 {
|
|
1260
1268
|
/** Id of the Automation to delete */
|
|
1261
1269
|
automationId: string;
|
|
@@ -1663,6 +1671,9 @@ interface GetAutomationResponseNonNullableFields$1 {
|
|
|
1663
1671
|
interface UpdateAutomationResponseNonNullableFields$1 {
|
|
1664
1672
|
automation?: AutomationNonNullableFields$1;
|
|
1665
1673
|
}
|
|
1674
|
+
interface MigrationUpdateAutomationResponseNonNullableFields {
|
|
1675
|
+
automation?: AutomationNonNullableFields$1;
|
|
1676
|
+
}
|
|
1666
1677
|
interface QueryAutomationsResponseNonNullableFields$1 {
|
|
1667
1678
|
automations: AutomationNonNullableFields$1[];
|
|
1668
1679
|
}
|
|
@@ -1873,6 +1884,60 @@ interface UpdateAutomation$1 {
|
|
|
1873
1884
|
/** @readonly */
|
|
1874
1885
|
migratedToV3?: boolean | null;
|
|
1875
1886
|
}
|
|
1887
|
+
interface MigrationUpdateAutomation {
|
|
1888
|
+
/**
|
|
1889
|
+
* Automation ID
|
|
1890
|
+
* @readonly
|
|
1891
|
+
*/
|
|
1892
|
+
_id?: string | null;
|
|
1893
|
+
/** Revision */
|
|
1894
|
+
revision?: string | null;
|
|
1895
|
+
/** Automation name */
|
|
1896
|
+
name?: string;
|
|
1897
|
+
/** Automation description */
|
|
1898
|
+
description?: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* Automation Type
|
|
1901
|
+
* @readonly
|
|
1902
|
+
*/
|
|
1903
|
+
type?: Type$2;
|
|
1904
|
+
/** Automation Status */
|
|
1905
|
+
status?: Status$2;
|
|
1906
|
+
/** Rule that contains a trigger and some actions */
|
|
1907
|
+
rule?: Rule;
|
|
1908
|
+
/**
|
|
1909
|
+
* Source Application Automation
|
|
1910
|
+
* @readonly
|
|
1911
|
+
*/
|
|
1912
|
+
source?: Source;
|
|
1913
|
+
/**
|
|
1914
|
+
* Metadata
|
|
1915
|
+
* @readonly
|
|
1916
|
+
*/
|
|
1917
|
+
metadata?: AutomationMetadata;
|
|
1918
|
+
/**
|
|
1919
|
+
* Created date
|
|
1920
|
+
* @readonly
|
|
1921
|
+
*/
|
|
1922
|
+
_createdDate?: Date;
|
|
1923
|
+
/**
|
|
1924
|
+
* Updated date
|
|
1925
|
+
* @readonly
|
|
1926
|
+
*/
|
|
1927
|
+
_updatedDate?: Date;
|
|
1928
|
+
/**
|
|
1929
|
+
* ESB Configuration ID
|
|
1930
|
+
* @readonly
|
|
1931
|
+
*/
|
|
1932
|
+
esbConfigurationId?: string | null;
|
|
1933
|
+
/**
|
|
1934
|
+
* Was this automation migrated from v1
|
|
1935
|
+
* @readonly
|
|
1936
|
+
*/
|
|
1937
|
+
migratedFromV1?: boolean | null;
|
|
1938
|
+
/** @readonly */
|
|
1939
|
+
migratedToV3?: boolean | null;
|
|
1940
|
+
}
|
|
1876
1941
|
interface DeleteAutomationOptions {
|
|
1877
1942
|
/** The revision of the Automation */
|
|
1878
1943
|
revision?: string;
|
|
@@ -1997,10 +2062,17 @@ interface UpdateAutomationSignature$1 {
|
|
|
1997
2062
|
/**
|
|
1998
2063
|
* Update a Automation, supports partial update
|
|
1999
2064
|
* Pass the latest `revision` for a successful update
|
|
2065
|
+
* @param - Automation ID
|
|
2066
|
+
*/
|
|
2067
|
+
(_id: string | null, automation: UpdateAutomation$1): Promise<UpdateAutomationResponse$1 & UpdateAutomationResponseNonNullableFields$1>;
|
|
2068
|
+
}
|
|
2069
|
+
declare function migrationUpdateAutomation$1(httpClient: HttpClient): MigrationUpdateAutomationSignature;
|
|
2070
|
+
interface MigrationUpdateAutomationSignature {
|
|
2071
|
+
/**
|
|
2000
2072
|
* @param - Automation ID
|
|
2001
2073
|
* @returns The updated Automation
|
|
2002
2074
|
*/
|
|
2003
|
-
(_id: string | null, automation:
|
|
2075
|
+
(_id: string | null, automation: MigrationUpdateAutomation): Promise<Automation$2 & AutomationNonNullableFields$1>;
|
|
2004
2076
|
}
|
|
2005
2077
|
declare function deleteAutomation$3(httpClient: HttpClient): DeleteAutomationSignature$1;
|
|
2006
2078
|
interface DeleteAutomationSignature$1 {
|
|
@@ -2090,6 +2162,7 @@ declare function createEventModule$2<T extends EventDefinition$2<any, string>>(e
|
|
|
2090
2162
|
declare const createAutomation$2: MaybeContext<BuildRESTFunction<typeof createAutomation$3> & typeof createAutomation$3>;
|
|
2091
2163
|
declare const getAutomation$2: MaybeContext<BuildRESTFunction<typeof getAutomation$3> & typeof getAutomation$3>;
|
|
2092
2164
|
declare const updateAutomation$2: MaybeContext<BuildRESTFunction<typeof updateAutomation$3> & typeof updateAutomation$3>;
|
|
2165
|
+
declare const migrationUpdateAutomation: MaybeContext<BuildRESTFunction<typeof migrationUpdateAutomation$1> & typeof migrationUpdateAutomation$1>;
|
|
2093
2166
|
declare const deleteAutomation$2: MaybeContext<BuildRESTFunction<typeof deleteAutomation$3> & typeof deleteAutomation$3>;
|
|
2094
2167
|
declare const queryAutomations$2: MaybeContext<BuildRESTFunction<typeof queryAutomations$3> & typeof queryAutomations$3>;
|
|
2095
2168
|
declare const overrideApplicationAutomation: MaybeContext<BuildRESTFunction<typeof overrideApplicationAutomation$1> & typeof overrideApplicationAutomation$1>;
|
|
@@ -2143,6 +2216,10 @@ type context$2_GetAutomationActivationStatsOptions = GetAutomationActivationStat
|
|
|
2143
2216
|
type context$2_MigrationBulkCreateAutomations = MigrationBulkCreateAutomations;
|
|
2144
2217
|
type context$2_MigrationBulkCreateAutomationsRequest = MigrationBulkCreateAutomationsRequest;
|
|
2145
2218
|
type context$2_MigrationBulkCreateAutomationsResponse = MigrationBulkCreateAutomationsResponse;
|
|
2219
|
+
type context$2_MigrationUpdateAutomation = MigrationUpdateAutomation;
|
|
2220
|
+
type context$2_MigrationUpdateAutomationRequest = MigrationUpdateAutomationRequest;
|
|
2221
|
+
type context$2_MigrationUpdateAutomationResponse = MigrationUpdateAutomationResponse;
|
|
2222
|
+
type context$2_MigrationUpdateAutomationResponseNonNullableFields = MigrationUpdateAutomationResponseNonNullableFields;
|
|
2146
2223
|
type context$2_MigrationUpdateMigratedToV3AutomationRequest = MigrationUpdateMigratedToV3AutomationRequest;
|
|
2147
2224
|
type context$2_MigrationUpdateMigratedToV3AutomationResponse = MigrationUpdateMigratedToV3AutomationResponse;
|
|
2148
2225
|
type context$2_Offset = Offset;
|
|
@@ -2174,10 +2251,11 @@ type context$2_ValidateAutomationByIdResponse = ValidateAutomationByIdResponse;
|
|
|
2174
2251
|
type context$2_ValidateAutomationByIdResponseNonNullableFields = ValidateAutomationByIdResponseNonNullableFields;
|
|
2175
2252
|
declare const context$2_generateActionInputMappingFromTemplate: typeof generateActionInputMappingFromTemplate;
|
|
2176
2253
|
declare const context$2_getAutomationActivationStats: typeof getAutomationActivationStats;
|
|
2254
|
+
declare const context$2_migrationUpdateAutomation: typeof migrationUpdateAutomation;
|
|
2177
2255
|
declare const context$2_overrideApplicationAutomation: typeof overrideApplicationAutomation;
|
|
2178
2256
|
declare const context$2_validateAutomationById: typeof validateAutomationById;
|
|
2179
2257
|
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 };
|
|
2258
|
+
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
2259
|
}
|
|
2182
2260
|
|
|
2183
2261
|
interface Activation {
|
|
@@ -1256,6 +1256,14 @@ interface UpdatedWithPreviousEntity$1 {
|
|
|
1256
1256
|
/** updated automation */
|
|
1257
1257
|
currentAutomation?: Automation$2;
|
|
1258
1258
|
}
|
|
1259
|
+
interface MigrationUpdateAutomationRequest {
|
|
1260
|
+
/** Automation to be updated, may be partial */
|
|
1261
|
+
automation: Automation$2;
|
|
1262
|
+
}
|
|
1263
|
+
interface MigrationUpdateAutomationResponse {
|
|
1264
|
+
/** The updated Automation */
|
|
1265
|
+
automation?: Automation$2;
|
|
1266
|
+
}
|
|
1259
1267
|
interface DeleteAutomationRequest$1 {
|
|
1260
1268
|
/** Id of the Automation to delete */
|
|
1261
1269
|
automationId: string;
|
|
@@ -1663,6 +1671,9 @@ interface GetAutomationResponseNonNullableFields$1 {
|
|
|
1663
1671
|
interface UpdateAutomationResponseNonNullableFields$1 {
|
|
1664
1672
|
automation?: AutomationNonNullableFields$1;
|
|
1665
1673
|
}
|
|
1674
|
+
interface MigrationUpdateAutomationResponseNonNullableFields {
|
|
1675
|
+
automation?: AutomationNonNullableFields$1;
|
|
1676
|
+
}
|
|
1666
1677
|
interface QueryAutomationsResponseNonNullableFields$1 {
|
|
1667
1678
|
automations: AutomationNonNullableFields$1[];
|
|
1668
1679
|
}
|
|
@@ -1873,6 +1884,60 @@ interface UpdateAutomation$1 {
|
|
|
1873
1884
|
/** @readonly */
|
|
1874
1885
|
migratedToV3?: boolean | null;
|
|
1875
1886
|
}
|
|
1887
|
+
interface MigrationUpdateAutomation {
|
|
1888
|
+
/**
|
|
1889
|
+
* Automation ID
|
|
1890
|
+
* @readonly
|
|
1891
|
+
*/
|
|
1892
|
+
_id?: string | null;
|
|
1893
|
+
/** Revision */
|
|
1894
|
+
revision?: string | null;
|
|
1895
|
+
/** Automation name */
|
|
1896
|
+
name?: string;
|
|
1897
|
+
/** Automation description */
|
|
1898
|
+
description?: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* Automation Type
|
|
1901
|
+
* @readonly
|
|
1902
|
+
*/
|
|
1903
|
+
type?: Type$2;
|
|
1904
|
+
/** Automation Status */
|
|
1905
|
+
status?: Status$2;
|
|
1906
|
+
/** Rule that contains a trigger and some actions */
|
|
1907
|
+
rule?: Rule;
|
|
1908
|
+
/**
|
|
1909
|
+
* Source Application Automation
|
|
1910
|
+
* @readonly
|
|
1911
|
+
*/
|
|
1912
|
+
source?: Source;
|
|
1913
|
+
/**
|
|
1914
|
+
* Metadata
|
|
1915
|
+
* @readonly
|
|
1916
|
+
*/
|
|
1917
|
+
metadata?: AutomationMetadata;
|
|
1918
|
+
/**
|
|
1919
|
+
* Created date
|
|
1920
|
+
* @readonly
|
|
1921
|
+
*/
|
|
1922
|
+
_createdDate?: Date;
|
|
1923
|
+
/**
|
|
1924
|
+
* Updated date
|
|
1925
|
+
* @readonly
|
|
1926
|
+
*/
|
|
1927
|
+
_updatedDate?: Date;
|
|
1928
|
+
/**
|
|
1929
|
+
* ESB Configuration ID
|
|
1930
|
+
* @readonly
|
|
1931
|
+
*/
|
|
1932
|
+
esbConfigurationId?: string | null;
|
|
1933
|
+
/**
|
|
1934
|
+
* Was this automation migrated from v1
|
|
1935
|
+
* @readonly
|
|
1936
|
+
*/
|
|
1937
|
+
migratedFromV1?: boolean | null;
|
|
1938
|
+
/** @readonly */
|
|
1939
|
+
migratedToV3?: boolean | null;
|
|
1940
|
+
}
|
|
1876
1941
|
interface DeleteAutomationOptions {
|
|
1877
1942
|
/** The revision of the Automation */
|
|
1878
1943
|
revision?: string;
|
|
@@ -1997,10 +2062,17 @@ interface UpdateAutomationSignature$1 {
|
|
|
1997
2062
|
/**
|
|
1998
2063
|
* Update a Automation, supports partial update
|
|
1999
2064
|
* Pass the latest `revision` for a successful update
|
|
2065
|
+
* @param - Automation ID
|
|
2066
|
+
*/
|
|
2067
|
+
(_id: string | null, automation: UpdateAutomation$1): Promise<UpdateAutomationResponse$1 & UpdateAutomationResponseNonNullableFields$1>;
|
|
2068
|
+
}
|
|
2069
|
+
declare function migrationUpdateAutomation$1(httpClient: HttpClient): MigrationUpdateAutomationSignature;
|
|
2070
|
+
interface MigrationUpdateAutomationSignature {
|
|
2071
|
+
/**
|
|
2000
2072
|
* @param - Automation ID
|
|
2001
2073
|
* @returns The updated Automation
|
|
2002
2074
|
*/
|
|
2003
|
-
(_id: string | null, automation:
|
|
2075
|
+
(_id: string | null, automation: MigrationUpdateAutomation): Promise<Automation$2 & AutomationNonNullableFields$1>;
|
|
2004
2076
|
}
|
|
2005
2077
|
declare function deleteAutomation$3(httpClient: HttpClient): DeleteAutomationSignature$1;
|
|
2006
2078
|
interface DeleteAutomationSignature$1 {
|
|
@@ -2090,6 +2162,7 @@ declare function createEventModule$2<T extends EventDefinition$2<any, string>>(e
|
|
|
2090
2162
|
declare const createAutomation$2: MaybeContext<BuildRESTFunction<typeof createAutomation$3> & typeof createAutomation$3>;
|
|
2091
2163
|
declare const getAutomation$2: MaybeContext<BuildRESTFunction<typeof getAutomation$3> & typeof getAutomation$3>;
|
|
2092
2164
|
declare const updateAutomation$2: MaybeContext<BuildRESTFunction<typeof updateAutomation$3> & typeof updateAutomation$3>;
|
|
2165
|
+
declare const migrationUpdateAutomation: MaybeContext<BuildRESTFunction<typeof migrationUpdateAutomation$1> & typeof migrationUpdateAutomation$1>;
|
|
2093
2166
|
declare const deleteAutomation$2: MaybeContext<BuildRESTFunction<typeof deleteAutomation$3> & typeof deleteAutomation$3>;
|
|
2094
2167
|
declare const queryAutomations$2: MaybeContext<BuildRESTFunction<typeof queryAutomations$3> & typeof queryAutomations$3>;
|
|
2095
2168
|
declare const overrideApplicationAutomation: MaybeContext<BuildRESTFunction<typeof overrideApplicationAutomation$1> & typeof overrideApplicationAutomation$1>;
|
|
@@ -2143,6 +2216,10 @@ type index_d$2_GetAutomationActivationStatsOptions = GetAutomationActivationStat
|
|
|
2143
2216
|
type index_d$2_MigrationBulkCreateAutomations = MigrationBulkCreateAutomations;
|
|
2144
2217
|
type index_d$2_MigrationBulkCreateAutomationsRequest = MigrationBulkCreateAutomationsRequest;
|
|
2145
2218
|
type index_d$2_MigrationBulkCreateAutomationsResponse = MigrationBulkCreateAutomationsResponse;
|
|
2219
|
+
type index_d$2_MigrationUpdateAutomation = MigrationUpdateAutomation;
|
|
2220
|
+
type index_d$2_MigrationUpdateAutomationRequest = MigrationUpdateAutomationRequest;
|
|
2221
|
+
type index_d$2_MigrationUpdateAutomationResponse = MigrationUpdateAutomationResponse;
|
|
2222
|
+
type index_d$2_MigrationUpdateAutomationResponseNonNullableFields = MigrationUpdateAutomationResponseNonNullableFields;
|
|
2146
2223
|
type index_d$2_MigrationUpdateMigratedToV3AutomationRequest = MigrationUpdateMigratedToV3AutomationRequest;
|
|
2147
2224
|
type index_d$2_MigrationUpdateMigratedToV3AutomationResponse = MigrationUpdateMigratedToV3AutomationResponse;
|
|
2148
2225
|
type index_d$2_Offset = Offset;
|
|
@@ -2174,10 +2251,11 @@ type index_d$2_ValidateAutomationByIdResponse = ValidateAutomationByIdResponse;
|
|
|
2174
2251
|
type index_d$2_ValidateAutomationByIdResponseNonNullableFields = ValidateAutomationByIdResponseNonNullableFields;
|
|
2175
2252
|
declare const index_d$2_generateActionInputMappingFromTemplate: typeof generateActionInputMappingFromTemplate;
|
|
2176
2253
|
declare const index_d$2_getAutomationActivationStats: typeof getAutomationActivationStats;
|
|
2254
|
+
declare const index_d$2_migrationUpdateAutomation: typeof migrationUpdateAutomation;
|
|
2177
2255
|
declare const index_d$2_overrideApplicationAutomation: typeof overrideApplicationAutomation;
|
|
2178
2256
|
declare const index_d$2_validateAutomationById: typeof validateAutomationById;
|
|
2179
2257
|
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 };
|
|
2258
|
+
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
2259
|
}
|
|
2182
2260
|
|
|
2183
2261
|
interface Activation {
|
|
@@ -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 {
|