@wix/auto_sdk_automations_automations-v-2 1.0.28 → 1.0.30

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.
@@ -245,6 +245,23 @@ declare enum Operator {
245
245
  }
246
246
  /** @enumType */
247
247
  type OperatorWithLiterals = Operator | 'UNKNOWN_OPERATOR' | 'OR' | 'AND';
248
+ interface CodeSnippet {
249
+ /** Logical operator used to evaluate the condition expressions. */
250
+ language?: LanguageWithLiterals;
251
+ /**
252
+ * Expressions evaluated using the selected operator. this code should comply the language syntax. and format
253
+ * @maxLength 1000
254
+ */
255
+ code?: string;
256
+ }
257
+ declare enum Language {
258
+ /** Unknown. */
259
+ UNKNOWN_LANGUAGE = "UNKNOWN_LANGUAGE",
260
+ /** `JAVASCRIPT` language. */
261
+ JAVASCRIPT = "JAVASCRIPT"
262
+ }
263
+ /** @enumType */
264
+ type LanguageWithLiterals = Language | 'UNKNOWN_LANGUAGE' | 'JAVASCRIPT';
248
265
  declare enum Type {
249
266
  /** Based on the trigger. */
250
267
  UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
@@ -287,7 +304,7 @@ interface AppDefinedAction {
287
304
  skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
288
305
  /**
289
306
  * IDs of actions that run in parallel after the action completes.
290
- * @maxSize 20
307
+ * @maxSize 1
291
308
  * @format GUID
292
309
  */
293
310
  postActionIds?: string[];
@@ -303,13 +320,29 @@ interface ConditionAction {
303
320
  orExpressionGroups?: ConditionExpressionGroup[];
304
321
  /**
305
322
  * IDs of actions to run when the condition evaluates to `true`.
306
- * @maxSize 20
323
+ * @maxSize 1
307
324
  * @format GUID
308
325
  */
309
326
  truePostActionIds?: string[];
310
327
  /**
311
328
  * IDs of actions to run when the condition evaluates to `false`.
312
- * @maxSize 20
329
+ * @maxSize 1
330
+ * @format GUID
331
+ */
332
+ falsePostActionIds?: string[];
333
+ }
334
+ interface CodeConditionAction {
335
+ /** condition code. This is a code that can be used to identify the condition in the automation. code should return a boolean value. otherwise the value will be tried to be casted to boolean. */
336
+ snippet?: CodeSnippet;
337
+ /**
338
+ * IDs of actions to run when the condition evaluates to `true`.
339
+ * @maxSize 1
340
+ * @format GUID
341
+ */
342
+ truePostActionIds?: string[];
343
+ /**
344
+ * IDs of actions to run when the condition evaluates to `false`.
345
+ * @maxSize 1
313
346
  * @format GUID
314
347
  */
315
348
  falsePostActionIds?: string[];
@@ -346,7 +379,7 @@ interface DelayAction {
346
379
  dueDateExpression?: string | null;
347
380
  /**
348
381
  * IDs of actions to run in parallel after the time delay.
349
- * @maxSize 20
382
+ * @maxSize 1
350
383
  * @format GUID
351
384
  */
352
385
  postActionIds?: string[];
@@ -374,7 +407,7 @@ interface RateLimitAction {
374
407
  uniqueIdentifierExpression?: string | null;
375
408
  /**
376
409
  * IDs of actions to run in parallel after the action completes.
377
- * @maxSize 20
410
+ * @maxSize 1
378
411
  * @format GUID
379
412
  */
380
413
  postActionIds?: string[];
@@ -548,39 +581,6 @@ interface DraftInfo {
548
581
  */
549
582
  originalAutomationId?: string | null;
550
583
  }
551
- interface CodeSnippet {
552
- /** Logical operator used to evaluate the condition expressions. */
553
- language?: LanguageWithLiterals;
554
- /**
555
- * Expressions evaluated using the selected operator. this code should comply the language syntax. and format
556
- * @maxLength 1000
557
- */
558
- code?: string;
559
- }
560
- declare enum Language {
561
- /** Unknown. */
562
- UNKNOWN_LANGUAGE = "UNKNOWN_LANGUAGE",
563
- /** `JAVASCRIPT` language. */
564
- JAVASCRIPT = "JAVASCRIPT"
565
- }
566
- /** @enumType */
567
- type LanguageWithLiterals = Language | 'UNKNOWN_LANGUAGE' | 'JAVASCRIPT';
568
- interface CodeConditionAction {
569
- /** condition code. This is a code that can be used to identify the condition in the automation. code should return a boolean value. otherwise the value will be tried to be casted to boolean. */
570
- snippet?: CodeSnippet;
571
- /**
572
- * IDs of actions to run when the condition evaluates to `true`.
573
- * @maxSize 20
574
- * @format GUID
575
- */
576
- truePostActionIds?: string[];
577
- /**
578
- * IDs of actions to run when the condition evaluates to `false`.
579
- * @maxSize 20
580
- * @format GUID
581
- */
582
- falsePostActionIds?: string[];
583
- }
584
584
  interface AutoArchivePolicy {
585
585
  /**
586
586
  * Date when to archive the automation
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
2
  import { Automation, UpdateAutomation, BulkDeleteAutomationsResponse, GeneratePreinstalledAutomationOptions, GeneratePreinstalledAutomationResponse, AutomationsQueryBuilder, GetAggregatedUsageInfoOptions, GetAggregatedUsageInfoResponse, CopyAutomationOptions, CopyAutomationResponse, CreateDraftAutomationOptions, CreateDraftAutomationResponse, GetOrCreateDraftAutomationResponse, UpdateDraftAutomation, UpdateDraftAutomationResponse, QueryAutomationsWithDraftsOptions, QueryAutomationsWithDraftsResponse, BulkCountAutomationsWithDraftsOptions, BulkCountAutomationsWithDraftsResponse, PublishDraftAutomationResponse, ValidateAutomationOptions, ValidateAutomationResponse, ValidateAutomationByIdOptions, ValidateAutomationByIdResponse, GetAutomationRevisionOptions, GetAutomationRevisionResponse, AutomationCreatedEnvelope, AutomationDeletedEnvelope, AutomationUpdatedEnvelope } from './index.typings.js';
3
- export { Action, ActionConfigurationError, ActionErrorType, ActionErrorTypeWithLiterals, ActionEvent, ActionInfoOneOf, ActionProviderQuotaInfo, ActionQuotaInfo, ActionSettings, ActionUsageSummary, ActionValidationError, ActionValidationErrorErrorOneOf, ActionValidationInfo, AdditionalInfo, AppDefinedAction, ApplicationError, ApplicationOrigin, Asset, AuditInfo, AuditInfoIdOneOf, AutoArchivePolicy, AutomationConfiguration, AutomationConfigurationError, AutomationErrorType, AutomationErrorTypeWithLiterals, AutomationMigrationRequest, AutomationOriginInfoOneOf, AutomationSettings, AutomationValidationError, AutomationValidationErrorErrorOneOf, AutomationValidationErrorValidationErrorType, AutomationValidationErrorValidationErrorTypeWithLiterals, AutomationsQueryResult, BaseEventMetadata, BulkActionMetadata, BulkCountAutomationsWithDraftsRequest, BulkDeleteAutomationsRequest, BulkDeleteResult, CTA, CodeConditionAction, CodeSnippet, ConditionAction, ConditionExpressionGroup, CopyAutomationRequest, CreateAutomationRequest, CreateAutomationResponse, CreateDraftAutomationRequest, CreatePreinstalledAutomationRequest, CreatePreinstalledAutomationResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DelayAction, DeleteAutomationRequest, DeleteAutomationResponse, DeleteContext, DeleteDraftAutomationRequest, DeleteDraftAutomationResponse, DeletePreinstalledAutomationRequest, DeletePreinstalledAutomationResponse, DeleteStatus, DeleteStatusWithLiterals, DeletedWithEntity, Domain, DomainEvent, DomainEventBodyOneOf, DomainWithLiterals, DraftInfo, DraftPublished, DraftsInfo, Empty, Enrichment, Enrichments, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExtendedFields, Filter, FilterValueSelection, FilterableAppDefinedActions, FutureDateActivationOffset, GeneratePreinstalledAutomationRequest, GetActionsQuotaInfoRequest, GetActionsQuotaInfoResponse, GetAggregatedUsageInfoRequest, GetAutomationActionSchemaRequest, GetAutomationActionSchemaResponse, GetAutomationRequest, GetAutomationResponse, GetAutomationRevisionRequest, GetOrCreateDraftAutomationRequest, IdentificationData, IdentificationDataIdOneOf, ItemMetadata, Language, LanguageWithLiterals, MergeOverridePreinstalledWithRuntimeVersionRequest, MergeOverridePreinstalledWithRuntimeVersionResponse, MessageEnvelope, MetaSiteSpecialEvent, MetaSiteSpecialEventPayloadOneOf, MigrateVeloActionAutomationsRequest, MigrateVeloActionAutomationsResponse, Namespace, NamespaceChanged, NamespaceWithLiterals, OdeditorAssigned, OdeditorUnassigned, Operator, OperatorWithLiterals, Origin, OriginAutomationInfo, OriginWithLiterals, OutputAction, Path, PicassoAssigned, PicassoUnassigned, Plan, PreinstalledAutomationSpecInfo, PreinstalledOrigin, ProviderConfigurationError, PublishDraftAutomationRequest, QueryAutomationsRequest, QueryAutomationsResponse, QueryAutomationsWithDraftsRequest, QueryPreinstalledAutomationsForAppRequest, QueryPreinstalledAutomationsForAppResponse, QueryPreinstalledAutomationsRequest, QueryPreinstalledAutomationsResponse, Quota, QuotaInfo, RateLimit, RateLimitAction, RequestedFields, RequestedFieldsWithLiterals, RestoreInfo, ServiceProvisioned, ServiceRemoved, SetVariablesAction, SiteCreated, SiteCreatedContext, SiteCreatedContextWithLiterals, SiteDeleted, SiteHardDeleted, SiteMarkedAsTemplate, SiteMarkedAsWixSite, SitePublished, SitePurgedExternally, SiteRenamed, SiteTransferred, SiteUndeleted, SiteUnpublished, SiteUrlChanged, SortOrder, SortOrderWithLiterals, Sorting, SplitAction, State, StateWithLiterals, Status, StatusWithLiterals, StudioAssigned, StudioUnassigned, TestUpdateApplicationAutomationRequest, TestUpdateApplicationAutomationResponse, TimeUnit, TimeUnitWithLiterals, Trigger, TriggerConfigurationError, TriggerErrorType, TriggerErrorTypeWithLiterals, TriggerUsageSummary, TriggerValidationError, TriggerValidationErrorErrorOneOf, TriggerValidationErrorValidationErrorType, TriggerValidationErrorValidationErrorTypeWithLiterals, Type, TypeWithLiterals, UpdateApplicationAutomationsRequest, UpdateApplicationAutomationsResponse, UpdateAutomationRequest, UpdateAutomationResponse, UpdateDraftAutomationRequest, UpdatePreinstalledAutomationRequest, UpdatePreinstalledAutomationResponse, UpdatedWithPreviousEntity, UpgradeCTA, ValidateAutomationByIdRequest, ValidateAutomationRequest, ValidationErrorSeverity, ValidationErrorSeverityWithLiterals, ValidationErrorType, ValidationErrorTypeWithLiterals, ValidationSettings, WebhookIdentityType, WebhookIdentityTypeWithLiterals } from './index.typings.js';
3
+ export { Action, ActionConfigurationError, ActionErrorType, ActionErrorTypeWithLiterals, ActionEvent, ActionInfoOneOf, ActionProviderQuotaInfo, ActionQuotaInfo, ActionSettings, ActionUsageSummary, ActionValidationError, ActionValidationErrorErrorOneOf, ActionValidationInfo, AdditionalInfo, AppDefinedAction, ApplicationError, ApplicationOrigin, Asset, AuditInfo, AuditInfoIdOneOf, AutoArchivePolicy, AutomationConfiguration, AutomationConfigurationError, AutomationErrorType, AutomationErrorTypeWithLiterals, AutomationOriginInfoOneOf, AutomationSettings, AutomationValidationError, AutomationValidationErrorErrorOneOf, AutomationValidationErrorValidationErrorType, AutomationValidationErrorValidationErrorTypeWithLiterals, AutomationsQueryResult, BaseEventMetadata, BulkActionMetadata, BulkCountAutomationsWithDraftsRequest, BulkDeleteAutomationsRequest, BulkDeleteResult, CTA, CodeConditionAction, CodeSnippet, ConditionAction, ConditionExpressionGroup, CopyAutomationRequest, CreateAutomationRequest, CreateAutomationResponse, CreateDraftAutomationRequest, CreatePreinstalledAutomationRequest, CreatePreinstalledAutomationResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DelayAction, DeleteAutomationRequest, DeleteAutomationResponse, DeleteContext, DeleteDraftAutomationRequest, DeleteDraftAutomationResponse, DeletePreinstalledAutomationRequest, DeletePreinstalledAutomationResponse, DeleteStatus, DeleteStatusWithLiterals, DeletedWithEntity, Domain, DomainEvent, DomainEventBodyOneOf, DomainWithLiterals, DraftInfo, DraftPublished, DraftsInfo, Empty, Enrichment, Enrichments, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExtendedFields, Filter, FilterValueSelection, FilterableAppDefinedActions, FutureDateActivationOffset, GeneratePreinstalledAutomationRequest, GetActionsQuotaInfoRequest, GetActionsQuotaInfoResponse, GetAggregatedUsageInfoRequest, GetAutomationActionSchemaRequest, GetAutomationActionSchemaResponse, GetAutomationRequest, GetAutomationResponse, GetAutomationRevisionRequest, GetOrCreateDraftAutomationRequest, IdentificationData, IdentificationDataIdOneOf, ItemMetadata, Language, LanguageWithLiterals, MergeOverridePreinstalledWithRuntimeVersionRequest, MergeOverridePreinstalledWithRuntimeVersionResponse, MessageEnvelope, MetaSiteSpecialEvent, MetaSiteSpecialEventPayloadOneOf, MigrateVeloActionAutomationsRequest, MigrateVeloActionAutomationsResponse, Namespace, NamespaceChanged, NamespaceWithLiterals, OdeditorAssigned, OdeditorUnassigned, Operator, OperatorWithLiterals, Origin, OriginAutomationInfo, OriginWithLiterals, OutputAction, Path, PicassoAssigned, PicassoUnassigned, Plan, PreinstalledAutomationSpecInfo, PreinstalledOrigin, ProviderConfigurationError, PublishDraftAutomationRequest, QueryAutomationsRequest, QueryAutomationsResponse, QueryAutomationsWithDraftsRequest, QueryPreinstalledAutomationsForAppRequest, QueryPreinstalledAutomationsForAppResponse, QueryPreinstalledAutomationsRequest, QueryPreinstalledAutomationsResponse, Quota, QuotaInfo, RateLimit, RateLimitAction, RequestedFields, RequestedFieldsWithLiterals, RestoreInfo, ServiceProvisioned, ServiceRemoved, SetVariablesAction, SiteCreated, SiteCreatedContext, SiteCreatedContextWithLiterals, SiteDeleted, SiteHardDeleted, SiteMarkedAsTemplate, SiteMarkedAsWixSite, SitePublished, SitePurgedExternally, SiteRenamed, SiteTransferred, SiteUndeleted, SiteUnpublished, SiteUrlChanged, SortOrder, SortOrderWithLiterals, Sorting, SplitAction, State, StateWithLiterals, Status, StatusWithLiterals, StudioAssigned, StudioUnassigned, TimeUnit, TimeUnitWithLiterals, Trigger, TriggerConfigurationError, TriggerErrorType, TriggerErrorTypeWithLiterals, TriggerUsageSummary, TriggerValidationError, TriggerValidationErrorErrorOneOf, TriggerValidationErrorValidationErrorType, TriggerValidationErrorValidationErrorTypeWithLiterals, Type, TypeWithLiterals, UpdateAutomationRequest, UpdateAutomationResponse, UpdateDraftAutomationRequest, UpdatePreinstalledAutomationRequest, UpdatePreinstalledAutomationResponse, UpdatedWithPreviousEntity, UpgradeCTA, ValidateAutomationByIdRequest, ValidateAutomationRequest, ValidationErrorSeverity, ValidationErrorSeverityWithLiterals, ValidationErrorType, ValidationErrorTypeWithLiterals, ValidationSettings, WebhookIdentityType, WebhookIdentityTypeWithLiterals } from './index.typings.js';
4
4
 
5
5
  declare function createAutomation$1(httpClient: HttpClient): CreateAutomationSignature;
6
6
  interface CreateAutomationSignature {
@@ -746,6 +746,11 @@ var Operator = /* @__PURE__ */ ((Operator2) => {
746
746
  Operator2["AND"] = "AND";
747
747
  return Operator2;
748
748
  })(Operator || {});
749
+ var Language = /* @__PURE__ */ ((Language2) => {
750
+ Language2["UNKNOWN_LANGUAGE"] = "UNKNOWN_LANGUAGE";
751
+ Language2["JAVASCRIPT"] = "JAVASCRIPT";
752
+ return Language2;
753
+ })(Language || {});
749
754
  var Type = /* @__PURE__ */ ((Type2) => {
750
755
  Type2["UNKNOWN_ACTION_TYPE"] = "UNKNOWN_ACTION_TYPE";
751
756
  Type2["APP_DEFINED"] = "APP_DEFINED";
@@ -767,19 +772,6 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
767
772
  Origin2["PREINSTALLED"] = "PREINSTALLED";
768
773
  return Origin2;
769
774
  })(Origin || {});
770
- var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
771
- WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
772
- WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
773
- WebhookIdentityType2["MEMBER"] = "MEMBER";
774
- WebhookIdentityType2["WIX_USER"] = "WIX_USER";
775
- WebhookIdentityType2["APP"] = "APP";
776
- return WebhookIdentityType2;
777
- })(WebhookIdentityType || {});
778
- var Language = /* @__PURE__ */ ((Language2) => {
779
- Language2["UNKNOWN_LANGUAGE"] = "UNKNOWN_LANGUAGE";
780
- Language2["JAVASCRIPT"] = "JAVASCRIPT";
781
- return Language2;
782
- })(Language || {});
783
775
  var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
784
776
  RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
785
777
  RequestedFields2["OVERRIDE_SCHEMA"] = "OVERRIDE_SCHEMA";
@@ -904,6 +896,14 @@ var AutomationErrorType = /* @__PURE__ */ ((AutomationErrorType2) => {
904
896
  AutomationErrorType2["UNKNOWN_AUTOMATION_ERROR_TYPE"] = "UNKNOWN_AUTOMATION_ERROR_TYPE";
905
897
  return AutomationErrorType2;
906
898
  })(AutomationErrorType || {});
899
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
900
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
901
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
902
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
903
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
904
+ WebhookIdentityType2["APP"] = "APP";
905
+ return WebhookIdentityType2;
906
+ })(WebhookIdentityType || {});
907
907
  async function createAutomation2(automation) {
908
908
  const { httpClient, sideEffects } = arguments[1];
909
909
  const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({