@wix/auto_sdk_automations_action-catalog 1.0.18 → 1.0.20

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +20 -5
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +149 -22
  5. package/build/cjs/index.typings.js +20 -5
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +148 -21
  8. package/build/cjs/meta.js +20 -5
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +18 -5
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +149 -22
  14. package/build/es/index.typings.mjs +18 -5
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +148 -21
  17. package/build/es/meta.mjs +18 -5
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +20 -5
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +149 -22
  23. package/build/internal/cjs/index.typings.js +20 -5
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +148 -21
  26. package/build/internal/cjs/meta.js +20 -5
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +18 -5
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +149 -22
  32. package/build/internal/es/index.typings.mjs +18 -5
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +148 -21
  35. package/build/internal/es/meta.mjs +18 -5
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -98,15 +98,24 @@ interface GenericOptions {
98
98
  /** UI schema. */
99
99
  uiSchema?: Record<string, any> | null;
100
100
  }
101
+ declare enum IntegrationType {
102
+ UNKNOWN_INTEGRATION_TYPE = "UNKNOWN_INTEGRATION_TYPE",
103
+ /** Integration with Wix API methods */
104
+ WIX_API = "WIX_API"
105
+ }
106
+ /** @enumType */
107
+ type IntegrationTypeWithLiterals = IntegrationType | 'UNKNOWN_INTEGRATION_TYPE' | 'WIX_API';
101
108
  declare enum SourceType {
102
109
  UNKNOWN_SOURCE_TYPE = "UNKNOWN_SOURCE_TYPE",
103
110
  /** The input/output schemas are constructed by developers in Dev Center using the self-service flow */
104
111
  DEV_CENTER = "DEV_CENTER",
105
112
  /** The input/output schemas are derived from an existing Wix API through the API-to-Action feature */
106
- WIX_API = "WIX_API"
113
+ WIX_API = "WIX_API",
114
+ /** The action invokes external API methods based on configuration */
115
+ INTEGRATION = "INTEGRATION"
107
116
  }
108
117
  /** @enumType */
109
- type SourceTypeWithLiterals = SourceType | 'UNKNOWN_SOURCE_TYPE' | 'DEV_CENTER' | 'WIX_API';
118
+ type SourceTypeWithLiterals = SourceType | 'UNKNOWN_SOURCE_TYPE' | 'DEV_CENTER' | 'WIX_API' | 'INTEGRATION';
110
119
  interface WixApiOptions {
111
120
  /**
112
121
  * Service entity fqdn
@@ -127,6 +136,10 @@ interface WixApiOptions {
127
136
  */
128
137
  methodName?: string;
129
138
  }
139
+ interface IntegrationOptions {
140
+ /** The integration type */
141
+ integrationType?: IntegrationTypeWithLiterals;
142
+ }
130
143
  interface Metadata {
131
144
  /** Whether the action is only shown to advanced mode users (Wix staff). */
132
145
  hidden?: boolean;
@@ -214,6 +227,8 @@ interface FocalPoint {
214
227
  interface Source extends SourceOptionsOneOf {
215
228
  /** Wix API options */
216
229
  wixApiOptions?: WixApiOptions;
230
+ /** Integration options */
231
+ integrationOptions?: IntegrationOptions;
217
232
  /** the source type */
218
233
  type?: SourceTypeWithLiterals;
219
234
  }
@@ -221,6 +236,8 @@ interface Source extends SourceOptionsOneOf {
221
236
  interface SourceOptionsOneOf {
222
237
  /** Wix API options */
223
238
  wixApiOptions?: WixApiOptions;
239
+ /** Integration options */
240
+ integrationOptions?: IntegrationOptions;
224
241
  }
225
242
  interface RetryExperimentCreation {
226
243
  /** action spec info */
@@ -356,13 +373,13 @@ interface GetActionDynamicInputSchemaResponse {
356
373
  }
357
374
  interface ResolveActionsRequest {
358
375
  /** Query options. */
359
- query?: QueryV2;
376
+ query?: CommonQueryV2;
360
377
  }
361
- interface QueryV2 extends QueryV2PagingMethodOneOf {
378
+ interface CommonQueryV2 extends CommonQueryV2PagingMethodOneOf {
362
379
  /** Paging options to limit and offset the number of items. */
363
- paging?: Paging;
380
+ paging?: CommonPaging;
364
381
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
365
- cursorPaging?: CursorPaging;
382
+ cursorPaging?: CommonCursorPaging;
366
383
  /**
367
384
  * Filter object.
368
385
  *
@@ -374,41 +391,41 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
374
391
  *
375
392
  * Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#sorting).
376
393
  */
377
- sort?: Sorting[];
394
+ sort?: CommonSorting[];
378
395
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
379
396
  fields?: string[];
380
397
  /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
381
398
  fieldsets?: string[];
382
399
  }
383
400
  /** @oneof */
384
- interface QueryV2PagingMethodOneOf {
401
+ interface CommonQueryV2PagingMethodOneOf {
385
402
  /** Paging options to limit and offset the number of items. */
386
- paging?: Paging;
403
+ paging?: CommonPaging;
387
404
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
388
- cursorPaging?: CursorPaging;
405
+ cursorPaging?: CommonCursorPaging;
389
406
  }
390
- interface Sorting {
407
+ interface CommonSorting {
391
408
  /**
392
409
  * Name of the field to sort by.
393
410
  * @maxLength 512
394
411
  */
395
412
  fieldName?: string;
396
413
  /** Sort order. */
397
- order?: SortOrderWithLiterals;
414
+ order?: CommonSortOrderWithLiterals;
398
415
  }
399
- declare enum SortOrder {
416
+ declare enum CommonSortOrder {
400
417
  ASC = "ASC",
401
418
  DESC = "DESC"
402
419
  }
403
420
  /** @enumType */
404
- type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
405
- interface Paging {
421
+ type CommonSortOrderWithLiterals = CommonSortOrder | 'ASC' | 'DESC';
422
+ interface CommonPaging {
406
423
  /** Number of items to load. */
407
424
  limit?: number | null;
408
425
  /** Number of items to skip in the current sort order. */
409
426
  offset?: number | null;
410
427
  }
411
- interface CursorPaging {
428
+ interface CommonCursorPaging {
412
429
  /**
413
430
  * Maximum number of items to return in the results.
414
431
  * @max 100
@@ -427,9 +444,9 @@ interface ResolveActionsResponse {
427
444
  /** Retrieved actions. */
428
445
  actions?: Action[];
429
446
  /** Paging metadata of the response. */
430
- paging?: PagingMetadataV2;
447
+ paging?: CommonPagingMetadataV2;
431
448
  }
432
- interface PagingMetadataV2 {
449
+ interface CommonPagingMetadataV2 {
433
450
  /** Number of items returned in the response. */
434
451
  count?: number | null;
435
452
  /** Offset that was requested. */
@@ -439,9 +456,9 @@ interface PagingMetadataV2 {
439
456
  /** Flag that indicates the server failed to calculate the `total` field. */
440
457
  tooManyToCount?: boolean | null;
441
458
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
442
- cursors?: Cursors;
459
+ cursors?: CommonCursors;
443
460
  }
444
- interface Cursors {
461
+ interface CommonCursors {
445
462
  /**
446
463
  * Cursor string pointing to the next page in the list of results.
447
464
  * @maxLength 16000
@@ -631,6 +648,116 @@ interface AdditionalInformationRequiredInfo {
631
648
  */
632
649
  feedback?: string;
633
650
  }
651
+ interface QueryActionsRequest {
652
+ /** Query options. */
653
+ query?: QueryV2;
654
+ }
655
+ interface QueryV2 extends QueryV2PagingMethodOneOf {
656
+ /** Paging options to limit and skip the number of items. */
657
+ paging?: Paging;
658
+ /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
659
+ cursorPaging?: CursorPaging;
660
+ /**
661
+ * Filter object in the following format:
662
+ * `"filter" : {
663
+ * "fieldName1": "value1",
664
+ * "fieldName2":{"$operator":"value2"}
665
+ * }`
666
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
667
+ */
668
+ filter?: Record<string, any> | null;
669
+ /**
670
+ * Sort object in the following format:
671
+ * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
672
+ * @maxSize 4
673
+ */
674
+ sort?: Sorting[];
675
+ /**
676
+ * Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned.
677
+ * @maxLength 200
678
+ * @maxSize 20
679
+ */
680
+ fields?: string[];
681
+ /**
682
+ * Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned.
683
+ * @maxLength 200
684
+ * @maxSize 20
685
+ */
686
+ fieldsets?: string[];
687
+ }
688
+ /** @oneof */
689
+ interface QueryV2PagingMethodOneOf {
690
+ /** Paging options to limit and skip the number of items. */
691
+ paging?: Paging;
692
+ /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
693
+ cursorPaging?: CursorPaging;
694
+ }
695
+ interface Sorting {
696
+ /**
697
+ * Name of the field to sort by.
698
+ * @maxLength 512
699
+ */
700
+ fieldName?: string;
701
+ /** Sort order. */
702
+ order?: SortOrderWithLiterals;
703
+ }
704
+ declare enum SortOrder {
705
+ ASC = "ASC",
706
+ DESC = "DESC"
707
+ }
708
+ /** @enumType */
709
+ type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
710
+ interface Paging {
711
+ /** Number of items to load. */
712
+ limit?: number | null;
713
+ /** Number of items to skip in the current sort order. */
714
+ offset?: number | null;
715
+ }
716
+ interface CursorPaging {
717
+ /**
718
+ * Maximum number of items to return in the results.
719
+ * @max 500
720
+ */
721
+ limit?: number | null;
722
+ /**
723
+ * Pointer to the next or previous page in the list of results.
724
+ *
725
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
726
+ * Not relevant for the first request.
727
+ * @maxLength 64000
728
+ */
729
+ cursor?: string | null;
730
+ }
731
+ interface QueryActionsResponse {
732
+ /** Retrieved actions. */
733
+ actions?: Action[];
734
+ /** Paging metadata of the response. */
735
+ pagingMetadata?: PagingMetadataV2;
736
+ }
737
+ interface PagingMetadataV2 {
738
+ /** Number of items returned in the response. */
739
+ count?: number | null;
740
+ /** Offset that was requested. */
741
+ offset?: number | null;
742
+ /** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
743
+ total?: number | null;
744
+ /** Flag that indicates the server failed to calculate the `total` field. */
745
+ tooManyToCount?: boolean | null;
746
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
747
+ cursors?: Cursors;
748
+ }
749
+ interface Cursors {
750
+ /**
751
+ * Cursor string pointing to the next page in the list of results.
752
+ * @maxLength 64000
753
+ */
754
+ next?: string | null;
755
+ /**
756
+ * Cursor pointing to the previous page in the list of results.
757
+ * @maxLength 64000
758
+ */
759
+ prev?: string | null;
760
+ }
634
761
  interface DomainEvent extends DomainEventBodyOneOf {
635
762
  createdEvent?: EntityCreatedEvent;
636
763
  updatedEvent?: EntityUpdatedEvent;
@@ -793,4 +920,4 @@ declare function copyInputMapping(): __PublicMethodMetaInfo<'POST', {}, CopyInpu
793
920
  declare function getActionDynamicOutputSchema(): __PublicMethodMetaInfo<'POST', {}, GetActionDynamicOutputSchemaRequest$1, GetActionDynamicOutputSchemaRequest, GetActionDynamicOutputSchemaResponse$1, GetActionDynamicOutputSchemaResponse>;
794
921
  declare function bulkGetActionDynamicOutputSchemas(): __PublicMethodMetaInfo<'POST', {}, BulkGetActionDynamicOutputSchemasRequest$1, BulkGetActionDynamicOutputSchemasRequest, BulkGetActionDynamicOutputSchemasResponse$1, BulkGetActionDynamicOutputSchemasResponse>;
795
922
 
796
- export { type ActionEvent as ActionEventOriginal, type ActionInputMappings as ActionInputMappingsOriginal, type Action as ActionOriginal, type ActionSpecInfo as ActionSpecInfoOriginal, type AdditionalInformationRequiredInfo as AdditionalInformationRequiredInfoOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkActionOutputSchemaResult as BulkActionOutputSchemaResultOriginal, type BulkGetActionDynamicOutputSchemasRequest as BulkGetActionDynamicOutputSchemasRequestOriginal, type BulkGetActionDynamicOutputSchemasResponse as BulkGetActionDynamicOutputSchemasResponseOriginal, type CopyInputMappingRequest as CopyInputMappingRequestOriginal, type CopyInputMappingResponse as CopyInputMappingResponseOriginal, type CreateActionRequest as CreateActionRequestOriginal, type CreateActionResponse as CreateActionResponseOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DeleteActionRequest as DeleteActionRequestOriginal, type DeleteActionResponse as DeleteActionResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, ExecutionType as ExecutionTypeOriginal, type ExecutionTypeWithLiterals as ExecutionTypeWithLiteralsOriginal, ExperimentActionType as ExperimentActionTypeOriginal, type ExperimentActionTypeWithLiterals as ExperimentActionTypeWithLiteralsOriginal, type FocalPoint as FocalPointOriginal, type GenerateInputMappingFromIntentRequest as GenerateInputMappingFromIntentRequestOriginal, type GenerateInputMappingFromIntentResponse as GenerateInputMappingFromIntentResponseOriginal, type GenerateInputMappingFromIntentResponseStatusInfoOneOf as GenerateInputMappingFromIntentResponseStatusInfoOneOfOriginal, type GenericOptions as GenericOptionsOriginal, type GetActionDynamicInputSchemaRequest as GetActionDynamicInputSchemaRequestOriginal, type GetActionDynamicInputSchemaResponse as GetActionDynamicInputSchemaResponseOriginal, type GetActionDynamicOutputSchemaRequest as GetActionDynamicOutputSchemaRequestOriginal, type GetActionDynamicOutputSchemaResponse as GetActionDynamicOutputSchemaResponseOriginal, type GetRuntimeActionRequest as GetRuntimeActionRequestOriginal, type GetRuntimeActionResponse as GetRuntimeActionResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type ImplementedMethods as ImplementedMethodsOriginal, type InputMappingGeneratedInfo as InputMappingGeneratedInfoOriginal, type InterfaceConfigurationOptionsOneOf as InterfaceConfigurationOptionsOneOfOriginal, type InterfaceConfiguration as InterfaceConfigurationOriginal, type ItemMetadata as ItemMetadataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type MigrateComponentToActionRequest as MigrateComponentToActionRequestOriginal, type MigrateComponentToActionResponse as MigrateComponentToActionResponseOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type QueryV2 as QueryV2Original, type QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOfOriginal, type ResolveActionsRequest as ResolveActionsRequestOriginal, type ResolveActionsResponse as ResolveActionsResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RetryExperimentCreation as RetryExperimentCreationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type SourceOptionsOneOf as SourceOptionsOneOfOriginal, type Source as SourceOriginal, SourceType as SourceTypeOriginal, type SourceTypeWithLiterals as SourceTypeWithLiteralsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateActionRequest as UpdateActionRequestOriginal, type UpdateActionResponse as UpdateActionResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WidgetComponentOptions as WidgetComponentOptionsOriginal, type WixApiOptions as WixApiOptionsOriginal, type __PublicMethodMetaInfo, bulkGetActionDynamicOutputSchemas, copyInputMapping, createAction, deleteAction, getActionDynamicInputSchema, getActionDynamicOutputSchema, getRuntimeAction, resolveActions, updateAction };
923
+ export { type ActionEvent as ActionEventOriginal, type ActionInputMappings as ActionInputMappingsOriginal, type Action as ActionOriginal, type ActionSpecInfo as ActionSpecInfoOriginal, type AdditionalInformationRequiredInfo as AdditionalInformationRequiredInfoOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkActionOutputSchemaResult as BulkActionOutputSchemaResultOriginal, type BulkGetActionDynamicOutputSchemasRequest as BulkGetActionDynamicOutputSchemasRequestOriginal, type BulkGetActionDynamicOutputSchemasResponse as BulkGetActionDynamicOutputSchemasResponseOriginal, type CommonCursorPaging as CommonCursorPagingOriginal, type CommonCursors as CommonCursorsOriginal, type CommonPagingMetadataV2 as CommonPagingMetadataV2Original, type CommonPaging as CommonPagingOriginal, type CommonQueryV2 as CommonQueryV2Original, type CommonQueryV2PagingMethodOneOf as CommonQueryV2PagingMethodOneOfOriginal, CommonSortOrder as CommonSortOrderOriginal, type CommonSortOrderWithLiterals as CommonSortOrderWithLiteralsOriginal, type CommonSorting as CommonSortingOriginal, type CopyInputMappingRequest as CopyInputMappingRequestOriginal, type CopyInputMappingResponse as CopyInputMappingResponseOriginal, type CreateActionRequest as CreateActionRequestOriginal, type CreateActionResponse as CreateActionResponseOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DeleteActionRequest as DeleteActionRequestOriginal, type DeleteActionResponse as DeleteActionResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, ExecutionType as ExecutionTypeOriginal, type ExecutionTypeWithLiterals as ExecutionTypeWithLiteralsOriginal, ExperimentActionType as ExperimentActionTypeOriginal, type ExperimentActionTypeWithLiterals as ExperimentActionTypeWithLiteralsOriginal, type FocalPoint as FocalPointOriginal, type GenerateInputMappingFromIntentRequest as GenerateInputMappingFromIntentRequestOriginal, type GenerateInputMappingFromIntentResponse as GenerateInputMappingFromIntentResponseOriginal, type GenerateInputMappingFromIntentResponseStatusInfoOneOf as GenerateInputMappingFromIntentResponseStatusInfoOneOfOriginal, type GenericOptions as GenericOptionsOriginal, type GetActionDynamicInputSchemaRequest as GetActionDynamicInputSchemaRequestOriginal, type GetActionDynamicInputSchemaResponse as GetActionDynamicInputSchemaResponseOriginal, type GetActionDynamicOutputSchemaRequest as GetActionDynamicOutputSchemaRequestOriginal, type GetActionDynamicOutputSchemaResponse as GetActionDynamicOutputSchemaResponseOriginal, type GetRuntimeActionRequest as GetRuntimeActionRequestOriginal, type GetRuntimeActionResponse as GetRuntimeActionResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type ImplementedMethods as ImplementedMethodsOriginal, type InputMappingGeneratedInfo as InputMappingGeneratedInfoOriginal, type IntegrationOptions as IntegrationOptionsOriginal, IntegrationType as IntegrationTypeOriginal, type IntegrationTypeWithLiterals as IntegrationTypeWithLiteralsOriginal, type InterfaceConfigurationOptionsOneOf as InterfaceConfigurationOptionsOneOfOriginal, type InterfaceConfiguration as InterfaceConfigurationOriginal, type ItemMetadata as ItemMetadataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type MigrateComponentToActionRequest as MigrateComponentToActionRequestOriginal, type MigrateComponentToActionResponse as MigrateComponentToActionResponseOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type QueryActionsRequest as QueryActionsRequestOriginal, type QueryActionsResponse as QueryActionsResponseOriginal, type QueryV2 as QueryV2Original, type QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOfOriginal, type ResolveActionsRequest as ResolveActionsRequestOriginal, type ResolveActionsResponse as ResolveActionsResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RetryExperimentCreation as RetryExperimentCreationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type SourceOptionsOneOf as SourceOptionsOneOfOriginal, type Source as SourceOriginal, SourceType as SourceTypeOriginal, type SourceTypeWithLiterals as SourceTypeWithLiteralsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateActionRequest as UpdateActionRequestOriginal, type UpdateActionResponse as UpdateActionResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WidgetComponentOptions as WidgetComponentOptionsOriginal, type WixApiOptions as WixApiOptionsOriginal, type __PublicMethodMetaInfo, bulkGetActionDynamicOutputSchemas, copyInputMapping, createAction, deleteAction, getActionDynamicInputSchema, getActionDynamicOutputSchema, getRuntimeAction, resolveActions, updateAction };
package/build/es/meta.mjs CHANGED
@@ -372,10 +372,16 @@ var Type = /* @__PURE__ */ ((Type2) => {
372
372
  Type2["GENERIC"] = "GENERIC";
373
373
  return Type2;
374
374
  })(Type || {});
375
+ var IntegrationType = /* @__PURE__ */ ((IntegrationType2) => {
376
+ IntegrationType2["UNKNOWN_INTEGRATION_TYPE"] = "UNKNOWN_INTEGRATION_TYPE";
377
+ IntegrationType2["WIX_API"] = "WIX_API";
378
+ return IntegrationType2;
379
+ })(IntegrationType || {});
375
380
  var SourceType = /* @__PURE__ */ ((SourceType2) => {
376
381
  SourceType2["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
377
382
  SourceType2["DEV_CENTER"] = "DEV_CENTER";
378
383
  SourceType2["WIX_API"] = "WIX_API";
384
+ SourceType2["INTEGRATION"] = "INTEGRATION";
379
385
  return SourceType2;
380
386
  })(SourceType || {});
381
387
  var ExecutionType = /* @__PURE__ */ ((ExecutionType2) => {
@@ -391,17 +397,22 @@ var ExperimentActionType = /* @__PURE__ */ ((ExperimentActionType2) => {
391
397
  ExperimentActionType2["DELETE_COMPONENT"] = "DELETE_COMPONENT";
392
398
  return ExperimentActionType2;
393
399
  })(ExperimentActionType || {});
394
- var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
395
- SortOrder2["ASC"] = "ASC";
396
- SortOrder2["DESC"] = "DESC";
397
- return SortOrder2;
398
- })(SortOrder || {});
400
+ var CommonSortOrder = /* @__PURE__ */ ((CommonSortOrder2) => {
401
+ CommonSortOrder2["ASC"] = "ASC";
402
+ CommonSortOrder2["DESC"] = "DESC";
403
+ return CommonSortOrder2;
404
+ })(CommonSortOrder || {});
399
405
  var Status = /* @__PURE__ */ ((Status2) => {
400
406
  Status2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
401
407
  Status2["INPUT_MAPPING_GENERATED"] = "INPUT_MAPPING_GENERATED";
402
408
  Status2["ADDITIONAL_INFORMATION_REQUIRED"] = "ADDITIONAL_INFORMATION_REQUIRED";
403
409
  return Status2;
404
410
  })(Status || {});
411
+ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
412
+ SortOrder2["ASC"] = "ASC";
413
+ SortOrder2["DESC"] = "DESC";
414
+ return SortOrder2;
415
+ })(SortOrder || {});
405
416
  var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
406
417
  WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
407
418
  WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
@@ -581,8 +592,10 @@ function bulkGetActionDynamicOutputSchemas2() {
581
592
  };
582
593
  }
583
594
  export {
595
+ CommonSortOrder as CommonSortOrderOriginal,
584
596
  ExecutionType as ExecutionTypeOriginal,
585
597
  ExperimentActionType as ExperimentActionTypeOriginal,
598
+ IntegrationType as IntegrationTypeOriginal,
586
599
  SortOrder as SortOrderOriginal,
587
600
  SourceType as SourceTypeOriginal,
588
601
  Status as StatusOriginal,