@wix/automations 1.0.10 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/type-bundles/context.bundle.d.ts +88 -14
- package/type-bundles/index.bundle.d.ts +88 -14
- package/type-bundles/meta.bundle.d.ts +430 -34
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/automations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
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.9",
|
|
22
|
+
"@wix/automations_automations-service": "1.0.4",
|
|
23
|
+
"@wix/automations_automations-service-v-2": "1.0.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"glob": "^10.4.1",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"fqdn": ""
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
|
-
"falconPackageHash": "
|
|
47
|
+
"falconPackageHash": "449e13f164ec605161432a6de142e82544f4b2d6fa9f71a9752c4484"
|
|
48
48
|
}
|
|
@@ -1190,11 +1190,11 @@ interface BulkDeleteAutomationsResponse$1 {
|
|
|
1190
1190
|
}
|
|
1191
1191
|
interface GenerateActionInputMappingFromTemplateRequest {
|
|
1192
1192
|
/** action app id */
|
|
1193
|
-
appId
|
|
1193
|
+
appId: string;
|
|
1194
1194
|
/** the action key */
|
|
1195
|
-
actionKey
|
|
1195
|
+
actionKey: string;
|
|
1196
1196
|
/** action input mapping template the action spi provider will generate input mapping from */
|
|
1197
|
-
actionInputMappingTemplate
|
|
1197
|
+
actionInputMappingTemplate: Record<string, any> | null;
|
|
1198
1198
|
}
|
|
1199
1199
|
interface GenerateActionInputMappingFromTemplateResponse {
|
|
1200
1200
|
/** generated action input mapping */
|
|
@@ -1331,6 +1331,44 @@ interface ActivationReportNonNullableFields {
|
|
|
1331
1331
|
interface GetAutomationActivationReportsResponseNonNullableFields {
|
|
1332
1332
|
activationReports: ActivationReportNonNullableFields[];
|
|
1333
1333
|
}
|
|
1334
|
+
interface PlanNonNullableFields {
|
|
1335
|
+
_id: string;
|
|
1336
|
+
name: string;
|
|
1337
|
+
}
|
|
1338
|
+
interface CTANonNullableFields {
|
|
1339
|
+
url: string;
|
|
1340
|
+
label: string;
|
|
1341
|
+
}
|
|
1342
|
+
interface AdditionalInfoNonNullableFields {
|
|
1343
|
+
description: string;
|
|
1344
|
+
cta?: CTANonNullableFields;
|
|
1345
|
+
}
|
|
1346
|
+
interface QuotaNonNullableFields {
|
|
1347
|
+
featureName: string;
|
|
1348
|
+
currentUsage: string;
|
|
1349
|
+
additionalInfo?: AdditionalInfoNonNullableFields;
|
|
1350
|
+
}
|
|
1351
|
+
interface UpgradeCTANonNullableFields {
|
|
1352
|
+
url: string;
|
|
1353
|
+
label: string;
|
|
1354
|
+
}
|
|
1355
|
+
interface QuotaInfoNonNullableFields {
|
|
1356
|
+
plans: PlanNonNullableFields[];
|
|
1357
|
+
quotas: QuotaNonNullableFields[];
|
|
1358
|
+
upgradeCta?: UpgradeCTANonNullableFields;
|
|
1359
|
+
}
|
|
1360
|
+
interface ActionQuotaInfoNonNullableFields {
|
|
1361
|
+
enforced: boolean;
|
|
1362
|
+
quotaInfo: QuotaInfoNonNullableFields[];
|
|
1363
|
+
}
|
|
1364
|
+
interface ActionProviderQuotaInfoNonNullableFields {
|
|
1365
|
+
appId: string;
|
|
1366
|
+
actionKey: string;
|
|
1367
|
+
actionQuotaInfo?: ActionQuotaInfoNonNullableFields;
|
|
1368
|
+
}
|
|
1369
|
+
interface GetActionsQuotaInfoResponseNonNullableFields {
|
|
1370
|
+
actionProviderQuotaInfo: ActionProviderQuotaInfoNonNullableFields[];
|
|
1371
|
+
}
|
|
1334
1372
|
interface BaseEventMetadata$2 {
|
|
1335
1373
|
/** App instance ID. */
|
|
1336
1374
|
instanceId?: string | null;
|
|
@@ -1548,6 +1586,12 @@ interface GetAutomationActivationStatsOptions {
|
|
|
1548
1586
|
/** Fields projection - pass in the field key you want to get back */
|
|
1549
1587
|
fields?: string[];
|
|
1550
1588
|
}
|
|
1589
|
+
interface GenerateActionInputMappingFromTemplateOptions {
|
|
1590
|
+
/** the action key */
|
|
1591
|
+
actionKey: string;
|
|
1592
|
+
/** action input mapping template the action spi provider will generate input mapping from */
|
|
1593
|
+
actionInputMappingTemplate: Record<string, any> | null;
|
|
1594
|
+
}
|
|
1551
1595
|
|
|
1552
1596
|
type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
|
|
1553
1597
|
interface HttpClient {
|
|
@@ -1606,6 +1650,8 @@ declare const overrideApplicationAutomation: ReturnType<typeof createRESTModule$
|
|
|
1606
1650
|
declare const validateAutomationById: ReturnType<typeof createRESTModule$2<typeof publicValidateAutomationById>>;
|
|
1607
1651
|
declare const validateAutomation$1: ReturnType<typeof createRESTModule$2<typeof publicValidateAutomation>>;
|
|
1608
1652
|
declare const getAutomationActivationStats: ReturnType<typeof createRESTModule$2<typeof publicGetAutomationActivationStats>>;
|
|
1653
|
+
declare const getActionsQuotaInfo: ReturnType<typeof createRESTModule$2<typeof publicGetActionsQuotaInfo>>;
|
|
1654
|
+
declare const generateActionInputMappingFromTemplate: ReturnType<typeof createRESTModule$2<typeof publicGenerateActionInputMappingFromTemplate>>;
|
|
1609
1655
|
declare const onAutomationCreated$1: ReturnType<typeof createEventModule$2<typeof publicOnAutomationCreated>>;
|
|
1610
1656
|
declare const onAutomationUpdated$1: ReturnType<typeof createEventModule$2<typeof publicOnAutomationUpdated>>;
|
|
1611
1657
|
declare const onAutomationDeleted$1: ReturnType<typeof createEventModule$2<typeof publicOnAutomationDeleted>>;
|
|
@@ -1622,10 +1668,12 @@ type context$2_Debounce = Debounce;
|
|
|
1622
1668
|
type context$2_DelayTypeOneOf = DelayTypeOneOf;
|
|
1623
1669
|
type context$2_DeleteAutomationOptions = DeleteAutomationOptions;
|
|
1624
1670
|
type context$2_ExtendedFields = ExtendedFields;
|
|
1671
|
+
type context$2_GenerateActionInputMappingFromTemplateOptions = GenerateActionInputMappingFromTemplateOptions;
|
|
1625
1672
|
type context$2_GenerateActionInputMappingFromTemplateRequest = GenerateActionInputMappingFromTemplateRequest;
|
|
1626
1673
|
type context$2_GenerateActionInputMappingFromTemplateResponse = GenerateActionInputMappingFromTemplateResponse;
|
|
1627
1674
|
type context$2_GenerateApplicationAutomationFromCustomRequest = GenerateApplicationAutomationFromCustomRequest;
|
|
1628
1675
|
type context$2_GenerateApplicationAutomationFromCustomResponse = GenerateApplicationAutomationFromCustomResponse;
|
|
1676
|
+
type context$2_GetActionsQuotaInfoResponseNonNullableFields = GetActionsQuotaInfoResponseNonNullableFields;
|
|
1629
1677
|
type context$2_GetApplicationAutomationRequest = GetApplicationAutomationRequest;
|
|
1630
1678
|
type context$2_GetApplicationAutomationResponse = GetApplicationAutomationResponse;
|
|
1631
1679
|
type context$2_GetAutomationActivationReportsRequest = GetAutomationActivationReportsRequest;
|
|
@@ -1664,11 +1712,13 @@ type context$2_ValidateAutomationByIdOptions = ValidateAutomationByIdOptions;
|
|
|
1664
1712
|
type context$2_ValidateAutomationByIdRequest = ValidateAutomationByIdRequest;
|
|
1665
1713
|
type context$2_ValidateAutomationByIdResponse = ValidateAutomationByIdResponse;
|
|
1666
1714
|
type context$2_ValidateAutomationByIdResponseNonNullableFields = ValidateAutomationByIdResponseNonNullableFields;
|
|
1715
|
+
declare const context$2_generateActionInputMappingFromTemplate: typeof generateActionInputMappingFromTemplate;
|
|
1716
|
+
declare const context$2_getActionsQuotaInfo: typeof getActionsQuotaInfo;
|
|
1667
1717
|
declare const context$2_getAutomationActivationStats: typeof getAutomationActivationStats;
|
|
1668
1718
|
declare const context$2_overrideApplicationAutomation: typeof overrideApplicationAutomation;
|
|
1669
1719
|
declare const context$2_validateAutomationById: typeof validateAutomationById;
|
|
1670
1720
|
declare namespace context$2 {
|
|
1671
|
-
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 File$1 as File, type Filter$2 as Filter, 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 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 Target$1 as Target, TargetType$1 as TargetType, 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 UnprocessedTargetEvent$1 as UnprocessedTargetEvent, 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, createAutomation$1 as createAutomation, deleteAutomation$1 as deleteAutomation, getAutomation$1 as getAutomation, context$2_getAutomationActivationStats as getAutomationActivationStats, onAutomationCreated$1 as onAutomationCreated, onAutomationDeleted$1 as onAutomationDeleted, onAutomationDeletedWithEntity$1 as onAutomationDeletedWithEntity, onAutomationUpdated$1 as onAutomationUpdated, onAutomationUpdatedWithPreviousEntity$1 as onAutomationUpdatedWithPreviousEntity, context$2_overrideApplicationAutomation as overrideApplicationAutomation, queryAutomations$1 as queryAutomations, updateAutomation$1 as updateAutomation, validateAutomation$1 as validateAutomation, context$2_validateAutomationById as validateAutomationById };
|
|
1721
|
+
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 File$1 as File, 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 context$2_GetActionsQuotaInfoResponseNonNullableFields 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 Target$1 as Target, TargetType$1 as TargetType, 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 UnprocessedTargetEvent$1 as UnprocessedTargetEvent, 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, createAutomation$1 as createAutomation, deleteAutomation$1 as deleteAutomation, context$2_generateActionInputMappingFromTemplate as generateActionInputMappingFromTemplate, context$2_getActionsQuotaInfo as getActionsQuotaInfo, getAutomation$1 as getAutomation, context$2_getAutomationActivationStats as getAutomationActivationStats, onAutomationCreated$1 as onAutomationCreated, onAutomationDeleted$1 as onAutomationDeleted, onAutomationDeletedWithEntity$1 as onAutomationDeletedWithEntity, onAutomationUpdated$1 as onAutomationUpdated, onAutomationUpdatedWithPreviousEntity$1 as onAutomationUpdatedWithPreviousEntity, context$2_overrideApplicationAutomation as overrideApplicationAutomation, queryAutomations$1 as queryAutomations, updateAutomation$1 as updateAutomation, validateAutomation$1 as validateAutomation, context$2_validateAutomationById as validateAutomationById };
|
|
1672
1722
|
}
|
|
1673
1723
|
|
|
1674
1724
|
interface Activation {
|
|
@@ -3125,14 +3175,14 @@ interface ActivationScheduleCompleted {
|
|
|
3125
3175
|
interface ReportEventResponseNonNullableFields {
|
|
3126
3176
|
activationIds: string[];
|
|
3127
3177
|
}
|
|
3128
|
-
interface ApplicationErrorNonNullableFields {
|
|
3178
|
+
interface ApplicationErrorNonNullableFields$1 {
|
|
3129
3179
|
code: string;
|
|
3130
3180
|
description: string;
|
|
3131
3181
|
}
|
|
3132
|
-
interface ItemMetadataNonNullableFields {
|
|
3182
|
+
interface ItemMetadataNonNullableFields$1 {
|
|
3133
3183
|
originalIndex: number;
|
|
3134
3184
|
success: boolean;
|
|
3135
|
-
error?: ApplicationErrorNonNullableFields;
|
|
3185
|
+
error?: ApplicationErrorNonNullableFields$1;
|
|
3136
3186
|
}
|
|
3137
3187
|
interface IdempotencyNonNullableFields {
|
|
3138
3188
|
key: string;
|
|
@@ -3141,11 +3191,11 @@ interface EventInfoNonNullableFields {
|
|
|
3141
3191
|
idempotency?: IdempotencyNonNullableFields;
|
|
3142
3192
|
}
|
|
3143
3193
|
interface BulkReportEventResultNonNullableFields {
|
|
3144
|
-
itemMetadata?: ItemMetadataNonNullableFields;
|
|
3194
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
3145
3195
|
eventInfo?: EventInfoNonNullableFields;
|
|
3146
3196
|
activationIds: string[];
|
|
3147
3197
|
}
|
|
3148
|
-
interface BulkActionMetadataNonNullableFields {
|
|
3198
|
+
interface BulkActionMetadataNonNullableFields$1 {
|
|
3149
3199
|
totalSuccesses: number;
|
|
3150
3200
|
totalFailures: number;
|
|
3151
3201
|
undetailedFailures: number;
|
|
@@ -3153,16 +3203,16 @@ interface BulkActionMetadataNonNullableFields {
|
|
|
3153
3203
|
interface BulkReportEventResponseNonNullableFields {
|
|
3154
3204
|
triggerKey: string;
|
|
3155
3205
|
results: BulkReportEventResultNonNullableFields[];
|
|
3156
|
-
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
3206
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
3157
3207
|
}
|
|
3158
3208
|
interface BulkCancelEventResultNonNullableFields {
|
|
3159
|
-
itemMetadata?: ItemMetadataNonNullableFields;
|
|
3209
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
3160
3210
|
externalEntityId: string;
|
|
3161
3211
|
}
|
|
3162
3212
|
interface BulkCancelEventResponseNonNullableFields {
|
|
3163
3213
|
triggerKey: string;
|
|
3164
3214
|
results: BulkCancelEventResultNonNullableFields[];
|
|
3165
|
-
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
3215
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
3166
3216
|
}
|
|
3167
3217
|
interface BaseEventMetadata$1 {
|
|
3168
3218
|
/** App instance ID. */
|
|
@@ -3828,7 +3878,7 @@ interface DeletedWithEntity {
|
|
|
3828
3878
|
}
|
|
3829
3879
|
interface BulkDeleteAutomationsRequest {
|
|
3830
3880
|
/** Automation IDs to delete */
|
|
3831
|
-
automationIds
|
|
3881
|
+
automationIds: string[];
|
|
3832
3882
|
}
|
|
3833
3883
|
interface BulkDeleteAutomationsResponse {
|
|
3834
3884
|
/** bulk delete results */
|
|
@@ -4630,6 +4680,27 @@ interface GetAutomationResponseNonNullableFields {
|
|
|
4630
4680
|
interface UpdateAutomationResponseNonNullableFields {
|
|
4631
4681
|
automation?: AutomationNonNullableFields;
|
|
4632
4682
|
}
|
|
4683
|
+
interface ApplicationErrorNonNullableFields {
|
|
4684
|
+
code: string;
|
|
4685
|
+
description: string;
|
|
4686
|
+
}
|
|
4687
|
+
interface ItemMetadataNonNullableFields {
|
|
4688
|
+
originalIndex: number;
|
|
4689
|
+
success: boolean;
|
|
4690
|
+
error?: ApplicationErrorNonNullableFields;
|
|
4691
|
+
}
|
|
4692
|
+
interface BulkDeleteResultNonNullableFields {
|
|
4693
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
4694
|
+
}
|
|
4695
|
+
interface BulkActionMetadataNonNullableFields {
|
|
4696
|
+
totalSuccesses: number;
|
|
4697
|
+
totalFailures: number;
|
|
4698
|
+
undetailedFailures: number;
|
|
4699
|
+
}
|
|
4700
|
+
interface BulkDeleteAutomationsResponseNonNullableFields {
|
|
4701
|
+
results: BulkDeleteResultNonNullableFields[];
|
|
4702
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4703
|
+
}
|
|
4633
4704
|
interface QueryAutomationsResponseNonNullableFields {
|
|
4634
4705
|
automations: AutomationNonNullableFields[];
|
|
4635
4706
|
}
|
|
@@ -4857,6 +4928,7 @@ declare const createAutomation: ReturnType<typeof createRESTModule<typeof public
|
|
|
4857
4928
|
declare const getAutomation: ReturnType<typeof createRESTModule<typeof publicGetAutomation>>;
|
|
4858
4929
|
declare const updateAutomation: ReturnType<typeof createRESTModule<typeof publicUpdateAutomation>>;
|
|
4859
4930
|
declare const deleteAutomation: ReturnType<typeof createRESTModule<typeof publicDeleteAutomation>>;
|
|
4931
|
+
declare const bulkDeleteAutomations: ReturnType<typeof createRESTModule<typeof publicBulkDeleteAutomations>>;
|
|
4860
4932
|
declare const queryAutomations: ReturnType<typeof createRESTModule<typeof publicQueryAutomations>>;
|
|
4861
4933
|
declare const validateAutomation: ReturnType<typeof createRESTModule<typeof publicValidateAutomation>>;
|
|
4862
4934
|
declare const onAutomationCreated: ReturnType<typeof createEventModule<typeof publicOnAutomationCreated>>;
|
|
@@ -4900,6 +4972,7 @@ type context_BaseEventMetadata = BaseEventMetadata;
|
|
|
4900
4972
|
type context_BulkActionMetadata = BulkActionMetadata;
|
|
4901
4973
|
type context_BulkDeleteAutomationsRequest = BulkDeleteAutomationsRequest;
|
|
4902
4974
|
type context_BulkDeleteAutomationsResponse = BulkDeleteAutomationsResponse;
|
|
4975
|
+
type context_BulkDeleteAutomationsResponseNonNullableFields = BulkDeleteAutomationsResponseNonNullableFields;
|
|
4903
4976
|
type context_BulkDeleteResult = BulkDeleteResult;
|
|
4904
4977
|
type context_CTA = CTA;
|
|
4905
4978
|
type context_ConditionAction = ConditionAction;
|
|
@@ -5019,6 +5092,7 @@ declare const context_ValidationErrorType: typeof ValidationErrorType;
|
|
|
5019
5092
|
type context_ValidationSettings = ValidationSettings;
|
|
5020
5093
|
type context_WebhookIdentityType = WebhookIdentityType;
|
|
5021
5094
|
declare const context_WebhookIdentityType: typeof WebhookIdentityType;
|
|
5095
|
+
declare const context_bulkDeleteAutomations: typeof bulkDeleteAutomations;
|
|
5022
5096
|
declare const context_createAutomation: typeof createAutomation;
|
|
5023
5097
|
declare const context_deleteAutomation: typeof deleteAutomation;
|
|
5024
5098
|
declare const context_getAutomation: typeof getAutomation;
|
|
@@ -5031,7 +5105,7 @@ declare const context_queryAutomations: typeof queryAutomations;
|
|
|
5031
5105
|
declare const context_updateAutomation: typeof updateAutomation;
|
|
5032
5106
|
declare const context_validateAutomation: typeof validateAutomation;
|
|
5033
5107
|
declare namespace context {
|
|
5034
|
-
export { type context_Action as Action, type context_ActionConfigurationError as ActionConfigurationError, context_ActionErrorType as ActionErrorType, type context_ActionEvent as ActionEvent, type context_ActionInfoOneOf as ActionInfoOneOf, type context_ActionProviderQuotaInfo as ActionProviderQuotaInfo, type context_ActionQuotaInfo as ActionQuotaInfo, type context_ActionSettings as ActionSettings, type context_ActionValidationError as ActionValidationError, type context_ActionValidationErrorErrorOneOf as ActionValidationErrorErrorOneOf, type context_ActionValidationInfo as ActionValidationInfo, type context_AdditionalInfo as AdditionalInfo, type context_AppDefinedAction as AppDefinedAction, type context_ApplicationError as ApplicationError, type context_ApplicationOrigin as ApplicationOrigin, type context_Asset as Asset, type context_AuditInfo as AuditInfo, type context_AuditInfoIdOneOf as AuditInfoIdOneOf, type context_Automation as Automation, type context_AutomationConfiguration as AutomationConfiguration, type context_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type context_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type context_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, type context_AutomationNonNullableFields as AutomationNonNullableFields, type context_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type context_AutomationSettings as AutomationSettings, type context_AutomationUpdatedEnvelope as AutomationUpdatedEnvelope, type context_AutomationUpdatedWithPreviousEntityEnvelope as AutomationUpdatedWithPreviousEntityEnvelope, type context_AutomationsQueryBuilder as AutomationsQueryBuilder, type context_AutomationsQueryResult as AutomationsQueryResult, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkDeleteAutomationsRequest as BulkDeleteAutomationsRequest, type context_BulkDeleteAutomationsResponse as BulkDeleteAutomationsResponse, type context_BulkDeleteResult as BulkDeleteResult, type context_CTA as CTA, type context_ConditionAction as ConditionAction, type context_ConditionExpressionGroup as ConditionExpressionGroup, type context_CopyAutomationRequest as CopyAutomationRequest, type context_CopyAutomationResponse as CopyAutomationResponse, type context_CreateAutomationRequest as CreateAutomationRequest, type context_CreateAutomationResponse as CreateAutomationResponse, type context_CreateAutomationResponseNonNullableFields as CreateAutomationResponseNonNullableFields, type context_CreatePreinstalledAutomationRequest as CreatePreinstalledAutomationRequest, type context_CreatePreinstalledAutomationResponse as CreatePreinstalledAutomationResponse, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_DelayAction as DelayAction, type context_DeleteAutomationRequest as DeleteAutomationRequest, type context_DeleteAutomationResponse as DeleteAutomationResponse, type context_DeleteContext as DeleteContext, type context_DeletePreinstalledAutomationRequest as DeletePreinstalledAutomationRequest, type context_DeletePreinstalledAutomationResponse as DeletePreinstalledAutomationResponse, context_DeleteStatus as DeleteStatus, type context_DeletedWithEntity as DeletedWithEntity, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_Filter as Filter, type context_FutureDateActivationOffset as FutureDateActivationOffset, type context_GetActionsQuotaInfoRequest as GetActionsQuotaInfoRequest, type context_GetActionsQuotaInfoResponse as GetActionsQuotaInfoResponse, type context_GetAutomationActionSchemaRequest as GetAutomationActionSchemaRequest, type context_GetAutomationActionSchemaResponse as GetAutomationActionSchemaResponse, type context_GetAutomationOptions as GetAutomationOptions, type context_GetAutomationRequest as GetAutomationRequest, type context_GetAutomationResponse as GetAutomationResponse, type context_GetAutomationResponseNonNullableFields as GetAutomationResponseNonNullableFields, type context_GetAutomationRevisionRequest as GetAutomationRevisionRequest, type context_GetAutomationRevisionResponse as GetAutomationRevisionResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_ItemMetadata as ItemMetadata, type context_MessageEnvelope as MessageEnvelope, type context_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, context_Namespace as Namespace, type context_NamespaceChanged as NamespaceChanged, context_Operator as Operator, context_Origin as Origin, type context_OutputAction as OutputAction, type context_Plan as Plan, type context_PreinstalledOrigin as PreinstalledOrigin, type context_ProviderConfigurationError as ProviderConfigurationError, type context_QueryAutomationsRequest as QueryAutomationsRequest, type context_QueryAutomationsResponse as QueryAutomationsResponse, type context_QueryAutomationsResponseNonNullableFields as QueryAutomationsResponseNonNullableFields, type context_Quota as Quota, type context_QuotaInfo as QuotaInfo, type context_RateLimit as RateLimit, type context_RateLimitAction as RateLimitAction, type context_RestoreInfo as RestoreInfo, type context_ServiceProvisioned as ServiceProvisioned, type context_ServiceRemoved as ServiceRemoved, type context_SiteCreated as SiteCreated, context_SiteCreatedContext as SiteCreatedContext, type context_SiteDeleted as SiteDeleted, type context_SiteHardDeleted as SiteHardDeleted, type context_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context_SitePublished as SitePublished, type context_SiteRenamed as SiteRenamed, type context_SiteTransferred as SiteTransferred, type context_SiteUndeleted as SiteUndeleted, type context_SiteUnpublished as SiteUnpublished, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_State as State, context_Status as Status, type context_StudioAssigned as StudioAssigned, type context_StudioUnassigned as StudioUnassigned, context_TimeUnit as TimeUnit, type context_Trigger as Trigger, type context_TriggerConfigurationError as TriggerConfigurationError, context_TriggerErrorType as TriggerErrorType, type context_TriggerValidationError as TriggerValidationError, type context_TriggerValidationErrorErrorOneOf as TriggerValidationErrorErrorOneOf, context_TriggerValidationErrorValidationErrorType as TriggerValidationErrorValidationErrorType, context_Type as Type, type context_UpdateAutomation as UpdateAutomation, type context_UpdateAutomationRequest as UpdateAutomationRequest, type context_UpdateAutomationResponse as UpdateAutomationResponse, type context_UpdateAutomationResponseNonNullableFields as UpdateAutomationResponseNonNullableFields, type context_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type context_UpgradeCTA as UpgradeCTA, type context_ValidateAutomationOptions as ValidateAutomationOptions, type context_ValidateAutomationRequest as ValidateAutomationRequest, type context_ValidateAutomationResponse as ValidateAutomationResponse, type context_ValidateAutomationResponseNonNullableFields as ValidateAutomationResponseNonNullableFields, context_ValidationErrorType as ValidationErrorType, type context_ValidationSettings as ValidationSettings, context_WebhookIdentityType as WebhookIdentityType, context_createAutomation as createAutomation, context_deleteAutomation as deleteAutomation, context_getAutomation as getAutomation, context_onAutomationCreated as onAutomationCreated, context_onAutomationDeleted as onAutomationDeleted, context_onAutomationDeletedWithEntity as onAutomationDeletedWithEntity, context_onAutomationUpdated as onAutomationUpdated, context_onAutomationUpdatedWithPreviousEntity as onAutomationUpdatedWithPreviousEntity, context_queryAutomations as queryAutomations, context_updateAutomation as updateAutomation, context_validateAutomation as validateAutomation };
|
|
5108
|
+
export { type context_Action as Action, type context_ActionConfigurationError as ActionConfigurationError, context_ActionErrorType as ActionErrorType, type context_ActionEvent as ActionEvent, type context_ActionInfoOneOf as ActionInfoOneOf, type context_ActionProviderQuotaInfo as ActionProviderQuotaInfo, type context_ActionQuotaInfo as ActionQuotaInfo, type context_ActionSettings as ActionSettings, type context_ActionValidationError as ActionValidationError, type context_ActionValidationErrorErrorOneOf as ActionValidationErrorErrorOneOf, type context_ActionValidationInfo as ActionValidationInfo, type context_AdditionalInfo as AdditionalInfo, type context_AppDefinedAction as AppDefinedAction, type context_ApplicationError as ApplicationError, type context_ApplicationOrigin as ApplicationOrigin, type context_Asset as Asset, type context_AuditInfo as AuditInfo, type context_AuditInfoIdOneOf as AuditInfoIdOneOf, type context_Automation as Automation, type context_AutomationConfiguration as AutomationConfiguration, type context_AutomationCreatedEnvelope as AutomationCreatedEnvelope, type context_AutomationDeletedEnvelope as AutomationDeletedEnvelope, type context_AutomationDeletedWithEntityEnvelope as AutomationDeletedWithEntityEnvelope, type context_AutomationNonNullableFields as AutomationNonNullableFields, type context_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type context_AutomationSettings as AutomationSettings, type context_AutomationUpdatedEnvelope as AutomationUpdatedEnvelope, type context_AutomationUpdatedWithPreviousEntityEnvelope as AutomationUpdatedWithPreviousEntityEnvelope, type context_AutomationsQueryBuilder as AutomationsQueryBuilder, type context_AutomationsQueryResult as AutomationsQueryResult, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkDeleteAutomationsRequest as BulkDeleteAutomationsRequest, type context_BulkDeleteAutomationsResponse as BulkDeleteAutomationsResponse, type context_BulkDeleteAutomationsResponseNonNullableFields as BulkDeleteAutomationsResponseNonNullableFields, type context_BulkDeleteResult as BulkDeleteResult, type context_CTA as CTA, type context_ConditionAction as ConditionAction, type context_ConditionExpressionGroup as ConditionExpressionGroup, type context_CopyAutomationRequest as CopyAutomationRequest, type context_CopyAutomationResponse as CopyAutomationResponse, type context_CreateAutomationRequest as CreateAutomationRequest, type context_CreateAutomationResponse as CreateAutomationResponse, type context_CreateAutomationResponseNonNullableFields as CreateAutomationResponseNonNullableFields, type context_CreatePreinstalledAutomationRequest as CreatePreinstalledAutomationRequest, type context_CreatePreinstalledAutomationResponse as CreatePreinstalledAutomationResponse, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_DelayAction as DelayAction, type context_DeleteAutomationRequest as DeleteAutomationRequest, type context_DeleteAutomationResponse as DeleteAutomationResponse, type context_DeleteContext as DeleteContext, type context_DeletePreinstalledAutomationRequest as DeletePreinstalledAutomationRequest, type context_DeletePreinstalledAutomationResponse as DeletePreinstalledAutomationResponse, context_DeleteStatus as DeleteStatus, type context_DeletedWithEntity as DeletedWithEntity, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_Filter as Filter, type context_FutureDateActivationOffset as FutureDateActivationOffset, type context_GetActionsQuotaInfoRequest as GetActionsQuotaInfoRequest, type context_GetActionsQuotaInfoResponse as GetActionsQuotaInfoResponse, type context_GetAutomationActionSchemaRequest as GetAutomationActionSchemaRequest, type context_GetAutomationActionSchemaResponse as GetAutomationActionSchemaResponse, type context_GetAutomationOptions as GetAutomationOptions, type context_GetAutomationRequest as GetAutomationRequest, type context_GetAutomationResponse as GetAutomationResponse, type context_GetAutomationResponseNonNullableFields as GetAutomationResponseNonNullableFields, type context_GetAutomationRevisionRequest as GetAutomationRevisionRequest, type context_GetAutomationRevisionResponse as GetAutomationRevisionResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_ItemMetadata as ItemMetadata, type context_MessageEnvelope as MessageEnvelope, type context_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, context_Namespace as Namespace, type context_NamespaceChanged as NamespaceChanged, context_Operator as Operator, context_Origin as Origin, type context_OutputAction as OutputAction, type context_Plan as Plan, type context_PreinstalledOrigin as PreinstalledOrigin, type context_ProviderConfigurationError as ProviderConfigurationError, type context_QueryAutomationsRequest as QueryAutomationsRequest, type context_QueryAutomationsResponse as QueryAutomationsResponse, type context_QueryAutomationsResponseNonNullableFields as QueryAutomationsResponseNonNullableFields, type context_Quota as Quota, type context_QuotaInfo as QuotaInfo, type context_RateLimit as RateLimit, type context_RateLimitAction as RateLimitAction, type context_RestoreInfo as RestoreInfo, type context_ServiceProvisioned as ServiceProvisioned, type context_ServiceRemoved as ServiceRemoved, type context_SiteCreated as SiteCreated, context_SiteCreatedContext as SiteCreatedContext, type context_SiteDeleted as SiteDeleted, type context_SiteHardDeleted as SiteHardDeleted, type context_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context_SitePublished as SitePublished, type context_SiteRenamed as SiteRenamed, type context_SiteTransferred as SiteTransferred, type context_SiteUndeleted as SiteUndeleted, type context_SiteUnpublished as SiteUnpublished, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_State as State, context_Status as Status, type context_StudioAssigned as StudioAssigned, type context_StudioUnassigned as StudioUnassigned, context_TimeUnit as TimeUnit, type context_Trigger as Trigger, type context_TriggerConfigurationError as TriggerConfigurationError, context_TriggerErrorType as TriggerErrorType, type context_TriggerValidationError as TriggerValidationError, type context_TriggerValidationErrorErrorOneOf as TriggerValidationErrorErrorOneOf, context_TriggerValidationErrorValidationErrorType as TriggerValidationErrorValidationErrorType, context_Type as Type, type context_UpdateAutomation as UpdateAutomation, type context_UpdateAutomationRequest as UpdateAutomationRequest, type context_UpdateAutomationResponse as UpdateAutomationResponse, type context_UpdateAutomationResponseNonNullableFields as UpdateAutomationResponseNonNullableFields, type context_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type context_UpgradeCTA as UpgradeCTA, type context_ValidateAutomationOptions as ValidateAutomationOptions, type context_ValidateAutomationRequest as ValidateAutomationRequest, type context_ValidateAutomationResponse as ValidateAutomationResponse, type context_ValidateAutomationResponseNonNullableFields as ValidateAutomationResponseNonNullableFields, context_ValidationErrorType as ValidationErrorType, type context_ValidationSettings as ValidationSettings, context_WebhookIdentityType as WebhookIdentityType, context_bulkDeleteAutomations as bulkDeleteAutomations, context_createAutomation as createAutomation, context_deleteAutomation as deleteAutomation, context_getAutomation as getAutomation, context_onAutomationCreated as onAutomationCreated, context_onAutomationDeleted as onAutomationDeleted, context_onAutomationDeletedWithEntity as onAutomationDeletedWithEntity, context_onAutomationUpdated as onAutomationUpdated, context_onAutomationUpdatedWithPreviousEntity as onAutomationUpdatedWithPreviousEntity, context_queryAutomations as queryAutomations, context_updateAutomation as updateAutomation, context_validateAutomation as validateAutomation };
|
|
5035
5109
|
}
|
|
5036
5110
|
|
|
5037
5111
|
export { context$1 as activations, context$2 as automationsService, context as automationsServiceV2 };
|