@wix/auto_sdk_data_scheduled-workflows 1.0.2 → 1.0.4

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 (49) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +114 -114
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +85 -84
  5. package/build/cjs/index.typings.js +84 -84
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +85 -74
  8. package/build/cjs/meta.js +84 -84
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +1136 -1034
  11. package/build/cjs/schemas.js +2831 -2574
  12. package/build/cjs/schemas.js.map +1 -1
  13. package/build/es/index.d.mts +1 -1
  14. package/build/es/index.mjs +114 -114
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +85 -84
  17. package/build/es/index.typings.mjs +84 -84
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +85 -74
  20. package/build/es/meta.mjs +84 -84
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +1136 -1034
  23. package/build/es/schemas.mjs +2831 -2574
  24. package/build/es/schemas.mjs.map +1 -1
  25. package/build/internal/cjs/index.d.ts +1 -1
  26. package/build/internal/cjs/index.js +114 -114
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +85 -84
  29. package/build/internal/cjs/index.typings.js +84 -84
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +85 -74
  32. package/build/internal/cjs/meta.js +84 -84
  33. package/build/internal/cjs/meta.js.map +1 -1
  34. package/build/internal/cjs/schemas.d.ts +1136 -1034
  35. package/build/internal/cjs/schemas.js +2831 -2574
  36. package/build/internal/cjs/schemas.js.map +1 -1
  37. package/build/internal/es/index.d.mts +1 -1
  38. package/build/internal/es/index.mjs +114 -114
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +85 -84
  41. package/build/internal/es/index.typings.mjs +84 -84
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +85 -74
  44. package/build/internal/es/meta.mjs +84 -84
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +1136 -1034
  47. package/build/internal/es/schemas.mjs +2831 -2574
  48. package/build/internal/es/schemas.mjs.map +1 -1
  49. package/package.json +2 -2
@@ -163,25 +163,6 @@ interface SourceSourceOneOf {
163
163
  */
164
164
  file?: FileSource;
165
165
  }
166
- declare enum WixDataEnvironment {
167
- /** Collection's [live environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#sandbox-collections). */
168
- LIVE = "LIVE",
169
- /** Collection's [sandbox environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#live-collections). */
170
- SANDBOX = "SANDBOX"
171
- }
172
- /** @enumType */
173
- type WixDataEnvironmentWithLiterals = WixDataEnvironment | 'LIVE' | 'SANDBOX';
174
- /** Filter and field selection query. */
175
- interface FilterQuery {
176
- /**
177
- * Filter to apply to the items. Only items that pass the filter are moved.
178
- *
179
- * Learn more about building a query filter using [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
180
- */
181
- filter?: Record<string, any> | null;
182
- /** Item fields to move. If not set, the method moves the full items. */
183
- fields?: string[];
184
- }
185
166
  interface AggregationPipeline extends AggregationPipelinePagingMethodOneOf {
186
167
  /**
187
168
  * Paging options to limit and skip the number of results.
@@ -840,6 +821,88 @@ interface CursorPaging {
840
821
  */
841
822
  cursor?: string | null;
842
823
  }
824
+ interface V1Field {
825
+ /**
826
+ * Field ID.
827
+ *
828
+ * If the field type is `Array`, specify the item index. If the field type is `Object`, specify the field path. Use dot notation to specify nested fields, for example: `data.address.city`.
829
+ * @maxLength 1024
830
+ */
831
+ key?: string;
832
+ /**
833
+ * Field display name.
834
+ *
835
+ * When moving items to CSV files, use this to set the header of the target column.
836
+ * @maxLength 1024
837
+ */
838
+ displayName?: string;
839
+ /**
840
+ * Field data type. Default: `ANY`.
841
+ *
842
+ * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).
843
+ */
844
+ fieldType?: FieldTypeWithLiterals;
845
+ }
846
+ declare enum FieldType {
847
+ /** Any data type. */
848
+ ANY = "ANY",
849
+ /** String. */
850
+ STRING = "STRING",
851
+ /** Number. */
852
+ NUMBER = "NUMBER",
853
+ /** Boolean. */
854
+ BOOLEAN = "BOOLEAN",
855
+ /** Date string in ISO 8601 date format: `YYYY-MM-DD`. */
856
+ DATE = "DATE",
857
+ /** [Date object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) (SDK) or an object in the following format: `"someFieldKey": { "$date": "YYYY-MM-DDTHH:mm:ss.sssZ"}`. */
858
+ DATETIME = "DATETIME",
859
+ /** Binary file. */
860
+ BINARY = "BINARY",
861
+ /** object. */
862
+ OBJECT = "OBJECT",
863
+ /** Array. */
864
+ ARRAY = "ARRAY",
865
+ /** Web URL. */
866
+ URL = "URL",
867
+ WIX_MEDIA_URL = "WIX_MEDIA_URL",
868
+ WIX_MEDIA_IMAGE_URL = "WIX_MEDIA_IMAGE_URL",
869
+ WIX_MEDIA_VIDEO_URL = "WIX_MEDIA_VIDEO_URL",
870
+ WIX_MEDIA_DOCUMENT_URL = "WIX_MEDIA_DOCUMENT_URL",
871
+ IMAGE_URL = "IMAGE_URL",
872
+ VIDEO_URL = "VIDEO_URL"
873
+ }
874
+ /** @enumType */
875
+ type FieldTypeWithLiterals = FieldType | 'ANY' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'DATE' | 'DATETIME' | 'BINARY' | 'OBJECT' | 'ARRAY' | 'URL' | 'WIX_MEDIA_URL' | 'WIX_MEDIA_IMAGE_URL' | 'WIX_MEDIA_VIDEO_URL' | 'WIX_MEDIA_DOCUMENT_URL' | 'IMAGE_URL' | 'VIDEO_URL';
876
+ declare enum WixDataEnvironment {
877
+ /** Collection's [live environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#sandbox-collections). */
878
+ LIVE = "LIVE",
879
+ /** Collection's [sandbox environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#live-collections). */
880
+ SANDBOX = "SANDBOX"
881
+ }
882
+ /** @enumType */
883
+ type WixDataEnvironmentWithLiterals = WixDataEnvironment | 'LIVE' | 'SANDBOX';
884
+ /** Filter and field selection query. */
885
+ interface FilterQuery {
886
+ /**
887
+ * Filter to apply to the items. Only items that pass the filter are moved.
888
+ *
889
+ * Learn more about building a query filter using [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
890
+ */
891
+ filter?: Record<string, any> | null;
892
+ /** Item fields to move. If not set, the method moves the full items. */
893
+ fields?: string[];
894
+ }
895
+ interface AggregationQuery {
896
+ /** Aggregation pipeline to run on the collection. */
897
+ aggregationPipeline?: AggregationPipeline;
898
+ /**
899
+ * Fields, will be used to map aggregation pipeline result to export result.
900
+ * Fields in the aggregation pipeline results that are not in the provided list will be ignored.
901
+ * If no fields provided, data will be exported as is, without transformation or field name mapping.
902
+ * @maxSize 1000
903
+ */
904
+ fields?: V1Field[];
905
+ }
843
906
  declare enum FileFormat {
844
907
  /** Unknown format. */
845
908
  UNKNOWN = "UNKNOWN",
@@ -869,7 +932,7 @@ interface WixDataSource extends WixDataSourceQueryOneOf {
869
932
  /** Filter and field selection to apply to the collection items. */
870
933
  filterQuery?: FilterQuery;
871
934
  /** Aggregation pipeline to run on the collection. */
872
- aggregationPipeline?: AggregationPipeline;
935
+ aggregationQuery?: AggregationQuery;
873
936
  /**
874
937
  * ID of the data collection.
875
938
  * @minLength 1
@@ -899,7 +962,7 @@ interface WixDataSourceQueryOneOf {
899
962
  /** Filter and field selection to apply to the collection items. */
900
963
  filterQuery?: FilterQuery;
901
964
  /** Aggregation pipeline to run on the collection. */
902
- aggregationPipeline?: AggregationPipeline;
965
+ aggregationQuery?: AggregationQuery;
903
966
  }
904
967
  interface LocalizationSource {
905
968
  /**
@@ -1098,58 +1161,6 @@ interface Schema {
1098
1161
  */
1099
1162
  fields?: V1Field[];
1100
1163
  }
1101
- interface V1Field {
1102
- /**
1103
- * Field ID.
1104
- *
1105
- * If the field type is `Array`, specify the item index. If the field type is `Object`, specify the field path. Use dot notation to specify nested fields, for example: `data.address.city`.
1106
- * @maxLength 1024
1107
- */
1108
- key?: string;
1109
- /**
1110
- * Field display name.
1111
- *
1112
- * When moving items to CSV files, use this to set the header of the target column.
1113
- * @maxLength 1024
1114
- */
1115
- displayName?: string;
1116
- /**
1117
- * Field data type. Default: `ANY`.
1118
- *
1119
- * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).
1120
- */
1121
- fieldType?: FieldTypeWithLiterals;
1122
- }
1123
- declare enum FieldType {
1124
- /** Any data type. */
1125
- ANY = "ANY",
1126
- /** String. */
1127
- STRING = "STRING",
1128
- /** Number. */
1129
- NUMBER = "NUMBER",
1130
- /** Boolean. */
1131
- BOOLEAN = "BOOLEAN",
1132
- /** Date string in ISO 8601 date format: `YYYY-MM-DD`. */
1133
- DATE = "DATE",
1134
- /** [Date object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) (SDK) or an object in the following format: `"someFieldKey": { "$date": "YYYY-MM-DDTHH:mm:ss.sssZ"}`. */
1135
- DATETIME = "DATETIME",
1136
- /** Binary file. */
1137
- BINARY = "BINARY",
1138
- /** object. */
1139
- OBJECT = "OBJECT",
1140
- /** Array. */
1141
- ARRAY = "ARRAY",
1142
- /** Web URL. */
1143
- URL = "URL",
1144
- WIX_MEDIA_URL = "WIX_MEDIA_URL",
1145
- WIX_MEDIA_IMAGE_URL = "WIX_MEDIA_IMAGE_URL",
1146
- WIX_MEDIA_VIDEO_URL = "WIX_MEDIA_VIDEO_URL",
1147
- WIX_MEDIA_DOCUMENT_URL = "WIX_MEDIA_DOCUMENT_URL",
1148
- IMAGE_URL = "IMAGE_URL",
1149
- VIDEO_URL = "VIDEO_URL"
1150
- }
1151
- /** @enumType */
1152
- type FieldTypeWithLiterals = FieldType | 'ANY' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'DATE' | 'DATETIME' | 'BINARY' | 'OBJECT' | 'ARRAY' | 'URL' | 'WIX_MEDIA_URL' | 'WIX_MEDIA_IMAGE_URL' | 'WIX_MEDIA_VIDEO_URL' | 'WIX_MEDIA_DOCUMENT_URL' | 'IMAGE_URL' | 'VIDEO_URL';
1153
1164
  interface StoresCatalogProductsDestination {
1154
1165
  }
1155
1166
  /** Wix Media Manager destination. */
@@ -1560,7 +1571,6 @@ interface JobsCreatedEnvelope {
1560
1571
  * @webhook
1561
1572
  * @eventType wix.data.sync.v1.jobs_created
1562
1573
  * @slug created
1563
- * @documentationMaturity preview
1564
1574
  */
1565
1575
  declare function onJobsCreated(handler: (event: JobsCreatedEnvelope) => void | Promise<void>): void;
1566
1576
  interface JobsDeletedEnvelope {
@@ -1572,7 +1582,6 @@ interface JobsDeletedEnvelope {
1572
1582
  * @webhook
1573
1583
  * @eventType wix.data.sync.v1.jobs_deleted
1574
1584
  * @slug deleted
1575
- * @documentationMaturity preview
1576
1585
  */
1577
1586
  declare function onJobsDeleted(handler: (event: JobsDeletedEnvelope) => void | Promise<void>): void;
1578
1587
  interface JobsUpdatedEnvelope {
@@ -1585,7 +1594,6 @@ interface JobsUpdatedEnvelope {
1585
1594
  * @webhook
1586
1595
  * @eventType wix.data.sync.v1.jobs_updated
1587
1596
  * @slug updated
1588
- * @documentationMaturity preview
1589
1597
  */
1590
1598
  declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | Promise<void>): void;
1591
1599
  /**
@@ -1595,7 +1603,6 @@ declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | P
1595
1603
  * Each execution creates a new [data workflow](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/introduction) with its `scheduleId` set to this scheduled data workflow's ID.
1596
1604
  * @param scheduledDataWorkflow - Scheduled data movement workflow to create.
1597
1605
  * @public
1598
- * @documentationMaturity preview
1599
1606
  * @requiredField scheduledDataWorkflow
1600
1607
  * @requiredField scheduledDataWorkflow._id
1601
1608
  * @requiredField scheduledDataWorkflow.workflow
@@ -1622,7 +1629,6 @@ interface CreateScheduledDataWorkflowOptions {
1622
1629
  * Only applies to `enabled` scheduled data workflows.
1623
1630
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to reschedule.
1624
1631
  * @public
1625
- * @documentationMaturity preview
1626
1632
  * @requiredField scheduledDataWorkflowId
1627
1633
  * @permissionId data:sync:v1:jobs:reschedule_scheduled_data_workflow
1628
1634
  * @fqn wix.hub.v1.DataMovementSchedulerService.RescheduleScheduledDataWorkflow
@@ -1643,7 +1649,6 @@ interface RescheduleScheduledDataWorkflowOptions {
1643
1649
  * TimeCapsule runs.
1644
1650
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to run immediately.
1645
1651
  * @public
1646
- * @documentationMaturity preview
1647
1652
  * @requiredField scheduledDataWorkflowId
1648
1653
  * @permissionId data:sync:v1:jobs:trigger_scheduled_data_workflow_now
1649
1654
  * @fqn wix.hub.v1.DataMovementSchedulerService.TriggerScheduledDataWorkflowNow
@@ -1653,7 +1658,6 @@ declare function triggerScheduledDataWorkflowNow(scheduledDataWorkflowId: string
1653
1658
  * Updates an existing scheduled data workflow.
1654
1659
  * @param scheduledDataWorkflow - Scheduled data movement workflow information to update.
1655
1660
  * @public
1656
- * @documentationMaturity preview
1657
1661
  * @requiredField scheduledDataWorkflow
1658
1662
  * @requiredField scheduledDataWorkflow.workflow
1659
1663
  * @requiredField scheduledDataWorkflow.workflow.steps
@@ -1675,7 +1679,6 @@ interface UpdateScheduledDataWorkflowOptions {
1675
1679
  * This permanently removes the schedule and prevents future executions. Any currently running data workflows triggered by the schedule continue to completion.
1676
1680
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to delete.
1677
1681
  * @public
1678
- * @documentationMaturity preview
1679
1682
  * @requiredField scheduledDataWorkflowId
1680
1683
  * @permissionId data:sync:v1:jobs:delete_scheduled_data_workflow
1681
1684
  * @fqn wix.hub.v1.DataMovementSchedulerService.DeleteScheduledDataWorkflow
@@ -1685,7 +1688,6 @@ declare function deleteScheduledDataWorkflow(scheduledDataWorkflowId: string): P
1685
1688
  * Retrieves a scheduled data workflow by ID.
1686
1689
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to retrieve.
1687
1690
  * @public
1688
- * @documentationMaturity preview
1689
1691
  * @requiredField scheduledDataWorkflowId
1690
1692
  * @permissionId data:sync:v1:jobs:get_scheduled_data_workflow
1691
1693
  * @returns Retrieved scheduled data movement workflow.
@@ -1704,7 +1706,6 @@ interface GetScheduledDataWorkflowOptions {
1704
1706
  *
1705
1707
  * The current implementation returns both enabled and disabled schedules. Request `paging` and `filter` fields are accepted for forward compatibility but are not applied by the service.
1706
1708
  * @public
1707
- * @documentationMaturity preview
1708
1709
  * @permissionId data:sync:v1:jobs:list_scheduled_data_workflows
1709
1710
  * @fqn wix.hub.v1.DataMovementSchedulerService.ListScheduledDataWorkflows
1710
1711
  */
@@ -1721,4 +1722,4 @@ interface ListScheduledDataWorkflowsOptions {
1721
1722
  filter?: Record<string, any> | null;
1722
1723
  }
1723
1724
 
1724
- export { type AbsOperation, type AccountInfo, type AccountInfoMetadata, type Accumulator, type AccumulatorExpressionOneOf, type ActionEvent, type AddField, type AddFields, type AddOperation, type AggregationPipeline, type AggregationPipelinePagingMethodOneOf, type Avg, type BaseEventMetadata, type CeilOperation, type CommonCursorPaging, type CommonSorting, type ConcatOperation, type ConditionOperation, type CreateScheduledDataWorkflowOptions, type CreateScheduledDataWorkflowRequest, type CreateScheduledDataWorkflowResponse, type CursorPaging, type CursorPagingMetadata, type Cursors, type DataMovementJobLogs, type DeleteScheduledDataWorkflowRequest, type DeleteScheduledDataWorkflowResponse, type Destination, type DestinationDestinationOneOf, type DivideOperation, type DomainEvent, type DomainEventBodyOneOf, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type Exclude, type Expression, type ExpressionValueOneOf, type ExternalFileSource, type Field, type FieldProjectionOneOf, FieldType, type FieldTypeWithLiterals, Fields, type FieldsWithLiterals, type FileDestination, FileFormat, type FileFormatWithLiterals, type FileSource, type FilterQuery, type First, type FloorOperation, type GetScheduledDataWorkflowOptions, type GetScheduledDataWorkflowRequest, type GetScheduledDataWorkflowResponse, type GoogleSheetsSource, type GreaterThanOperation, type Group, type GroupId, type IdentificationData, type IdentificationDataIdOneOf, type Include, type JobSpec, type JobSpecSiteOverrideOneOf, type JobsCreatedEnvelope, type JobsDeletedEnvelope, type JobsUpdatedEnvelope, type Last, type LengthOperation, type ListScheduledDataWorkflowsOptions, type ListScheduledDataWorkflowsRequest, type ListScheduledDataWorkflowsResponse, type LocalizationDestination, type LocalizationSource, type Lookup, type Max, MediaType, type MediaTypeWithLiterals, type MessageEnvelope, type Min, type ModOperation, type MultiplyOperation, type ObjectToArray, type Paging, type ProjectNested, type Projection, type Push, type RescheduleScheduledDataWorkflowOptions, type RescheduleScheduledDataWorkflowRequest, type RescheduleScheduledDataWorkflowResponse, type Reshape, type RestoreInfo, type ScheduledDataWorkflow, type ScheduledDataWorkflowSpec, type Schema, type SizeOperation, SortOrder, type SortOrderWithLiterals, type Sorting, type Source, type SourceSourceOneOf, type Stage, type StageStageOneOf, type StoresCatalogInventoryDestination, type StoresCatalogProductsDestination, type StringifyOperation, type SubstringOperation, type SubtractOperation, type Sum, type SumOperation, type TestDestination, type TestSource, type TestTransformation, type ToLowerOperation, type ToUpperOperation, type Transformation, type TransformationTransformationOneOf, type TriggerScheduledDataWorkflowNowRequest, type TriggerScheduledDataWorkflowNowResponse, type UnionWith, type UnwindArray, type UpdateScheduledDataWorkflowOptions, type UpdateScheduledDataWorkflowRequest, type UpdateScheduledDataWorkflowResponse, type V1Field, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixDataCollectionDefinitionDestination, type WixDataCollectionDefinitionSource, type WixDataDestination, WixDataDestinationWritePolicy, type WixDataDestinationWritePolicyWithLiterals, WixDataEnvironment, type WixDataEnvironmentWithLiterals, type WixDataSource, type WixDataSourceQueryOneOf, type WixMediaDestination, WixMediaDestinationWritePolicy, type WixMediaDestinationWritePolicyWithLiterals, type WixMediaSource, WritePolicy, type WritePolicyWithLiterals, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, onJobsCreated, onJobsDeleted, onJobsUpdated, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
1725
+ export { type AbsOperation, type AccountInfo, type AccountInfoMetadata, type Accumulator, type AccumulatorExpressionOneOf, type ActionEvent, type AddField, type AddFields, type AddOperation, type AggregationPipeline, type AggregationPipelinePagingMethodOneOf, type AggregationQuery, type Avg, type BaseEventMetadata, type CeilOperation, type CommonCursorPaging, type CommonSorting, type ConcatOperation, type ConditionOperation, type CreateScheduledDataWorkflowOptions, type CreateScheduledDataWorkflowRequest, type CreateScheduledDataWorkflowResponse, type CursorPaging, type CursorPagingMetadata, type Cursors, type DataMovementJobLogs, type DeleteScheduledDataWorkflowRequest, type DeleteScheduledDataWorkflowResponse, type Destination, type DestinationDestinationOneOf, type DivideOperation, type DomainEvent, type DomainEventBodyOneOf, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type Exclude, type Expression, type ExpressionValueOneOf, type ExternalFileSource, type Field, type FieldProjectionOneOf, FieldType, type FieldTypeWithLiterals, Fields, type FieldsWithLiterals, type FileDestination, FileFormat, type FileFormatWithLiterals, type FileSource, type FilterQuery, type First, type FloorOperation, type GetScheduledDataWorkflowOptions, type GetScheduledDataWorkflowRequest, type GetScheduledDataWorkflowResponse, type GoogleSheetsSource, type GreaterThanOperation, type Group, type GroupId, type IdentificationData, type IdentificationDataIdOneOf, type Include, type JobSpec, type JobSpecSiteOverrideOneOf, type JobsCreatedEnvelope, type JobsDeletedEnvelope, type JobsUpdatedEnvelope, type Last, type LengthOperation, type ListScheduledDataWorkflowsOptions, type ListScheduledDataWorkflowsRequest, type ListScheduledDataWorkflowsResponse, type LocalizationDestination, type LocalizationSource, type Lookup, type Max, MediaType, type MediaTypeWithLiterals, type MessageEnvelope, type Min, type ModOperation, type MultiplyOperation, type ObjectToArray, type Paging, type ProjectNested, type Projection, type Push, type RescheduleScheduledDataWorkflowOptions, type RescheduleScheduledDataWorkflowRequest, type RescheduleScheduledDataWorkflowResponse, type Reshape, type RestoreInfo, type ScheduledDataWorkflow, type ScheduledDataWorkflowSpec, type Schema, type SizeOperation, SortOrder, type SortOrderWithLiterals, type Sorting, type Source, type SourceSourceOneOf, type Stage, type StageStageOneOf, type StoresCatalogInventoryDestination, type StoresCatalogProductsDestination, type StringifyOperation, type SubstringOperation, type SubtractOperation, type Sum, type SumOperation, type TestDestination, type TestSource, type TestTransformation, type ToLowerOperation, type ToUpperOperation, type Transformation, type TransformationTransformationOneOf, type TriggerScheduledDataWorkflowNowRequest, type TriggerScheduledDataWorkflowNowResponse, type UnionWith, type UnwindArray, type UpdateScheduledDataWorkflowOptions, type UpdateScheduledDataWorkflowRequest, type UpdateScheduledDataWorkflowResponse, type V1Field, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixDataCollectionDefinitionDestination, type WixDataCollectionDefinitionSource, type WixDataDestination, WixDataDestinationWritePolicy, type WixDataDestinationWritePolicyWithLiterals, WixDataEnvironment, type WixDataEnvironmentWithLiterals, type WixDataSource, type WixDataSourceQueryOneOf, type WixMediaDestination, WixMediaDestinationWritePolicy, type WixMediaDestinationWritePolicyWithLiterals, type WixMediaSource, WritePolicy, type WritePolicyWithLiterals, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, onJobsCreated, onJobsDeleted, onJobsUpdated, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
@@ -115,34 +115,34 @@ function createScheduledDataWorkflow(payload) {
115
115
  transformFn: import_float.transformSDKFloatToRESTFloat,
116
116
  paths: [
117
117
  {
118
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
118
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
119
119
  },
120
120
  {
121
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
121
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
122
122
  },
123
123
  {
124
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
124
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
125
125
  },
126
126
  {
127
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
127
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
128
128
  },
129
129
  {
130
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
130
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
131
131
  },
132
132
  {
133
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
133
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
134
134
  },
135
135
  {
136
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
136
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
137
137
  },
138
138
  {
139
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
139
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
140
140
  },
141
141
  {
142
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
142
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
143
143
  },
144
144
  {
145
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
145
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
146
146
  }
147
147
  ]
148
148
  }
@@ -173,34 +173,34 @@ function createScheduledDataWorkflow(payload) {
173
173
  transformFn: import_float2.transformRESTFloatToSDKFloat,
174
174
  paths: [
175
175
  {
176
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
176
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
177
177
  },
178
178
  {
179
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
179
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
180
180
  },
181
181
  {
182
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
182
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
183
183
  },
184
184
  {
185
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
185
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
186
186
  },
187
187
  {
188
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
188
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
189
189
  },
190
190
  {
191
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
191
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
192
192
  },
193
193
  {
194
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
194
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
195
195
  },
196
196
  {
197
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
197
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
198
198
  },
199
199
  {
200
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
200
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
201
201
  },
202
202
  {
203
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
203
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
204
204
  }
205
205
  ]
206
206
  }
@@ -276,34 +276,34 @@ function updateScheduledDataWorkflow(payload) {
276
276
  transformFn: import_float.transformSDKFloatToRESTFloat,
277
277
  paths: [
278
278
  {
279
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
279
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
280
280
  },
281
281
  {
282
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
282
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
283
283
  },
284
284
  {
285
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
285
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
286
286
  },
287
287
  {
288
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
288
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
289
289
  },
290
290
  {
291
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
291
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
292
292
  },
293
293
  {
294
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
294
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
295
295
  },
296
296
  {
297
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
297
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
298
298
  },
299
299
  {
300
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
300
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
301
301
  },
302
302
  {
303
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
303
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
304
304
  },
305
305
  {
306
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
306
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
307
307
  }
308
308
  ]
309
309
  }
@@ -334,34 +334,34 @@ function updateScheduledDataWorkflow(payload) {
334
334
  transformFn: import_float2.transformRESTFloatToSDKFloat,
335
335
  paths: [
336
336
  {
337
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
337
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
338
338
  },
339
339
  {
340
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
340
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
341
341
  },
342
342
  {
343
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
343
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
344
344
  },
345
345
  {
346
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
346
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
347
347
  },
348
348
  {
349
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
349
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
350
350
  },
351
351
  {
352
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
352
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
353
353
  },
354
354
  {
355
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
355
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
356
356
  },
357
357
  {
358
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
358
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
359
359
  },
360
360
  {
361
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
361
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
362
362
  },
363
363
  {
364
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
364
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
365
365
  }
366
366
  ]
367
367
  }
@@ -420,34 +420,34 @@ function getScheduledDataWorkflow(payload) {
420
420
  transformFn: import_float2.transformRESTFloatToSDKFloat,
421
421
  paths: [
422
422
  {
423
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
423
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
424
424
  },
425
425
  {
426
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
426
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
427
427
  },
428
428
  {
429
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
429
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
430
430
  },
431
431
  {
432
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
432
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
433
433
  },
434
434
  {
435
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
435
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
436
436
  },
437
437
  {
438
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
438
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
439
439
  },
440
440
  {
441
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
441
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
442
442
  },
443
443
  {
444
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
444
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
445
445
  },
446
446
  {
447
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
447
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
448
448
  },
449
449
  {
450
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
450
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
451
451
  }
452
452
  ]
453
453
  }
@@ -485,34 +485,34 @@ function listScheduledDataWorkflows(payload) {
485
485
  transformFn: import_float2.transformRESTFloatToSDKFloat,
486
486
  paths: [
487
487
  {
488
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
488
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
489
489
  },
490
490
  {
491
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
491
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
492
492
  },
493
493
  {
494
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
494
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
495
495
  },
496
496
  {
497
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
497
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
498
498
  },
499
499
  {
500
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
500
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
501
501
  },
502
502
  {
503
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
503
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
504
504
  },
505
505
  {
506
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
506
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
507
507
  },
508
508
  {
509
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
509
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
510
510
  },
511
511
  {
512
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
512
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
513
513
  },
514
514
  {
515
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
515
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
516
516
  }
517
517
  ]
518
518
  }
@@ -524,16 +524,35 @@ function listScheduledDataWorkflows(payload) {
524
524
  }
525
525
 
526
526
  // src/data-sync-v1-jobs-scheduled-workflows.universal.ts
527
- var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
528
- WixDataEnvironment2["LIVE"] = "LIVE";
529
- WixDataEnvironment2["SANDBOX"] = "SANDBOX";
530
- return WixDataEnvironment2;
531
- })(WixDataEnvironment || {});
532
527
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
533
528
  SortOrder2["ASC"] = "ASC";
534
529
  SortOrder2["DESC"] = "DESC";
535
530
  return SortOrder2;
536
531
  })(SortOrder || {});
532
+ var FieldType = /* @__PURE__ */ ((FieldType2) => {
533
+ FieldType2["ANY"] = "ANY";
534
+ FieldType2["STRING"] = "STRING";
535
+ FieldType2["NUMBER"] = "NUMBER";
536
+ FieldType2["BOOLEAN"] = "BOOLEAN";
537
+ FieldType2["DATE"] = "DATE";
538
+ FieldType2["DATETIME"] = "DATETIME";
539
+ FieldType2["BINARY"] = "BINARY";
540
+ FieldType2["OBJECT"] = "OBJECT";
541
+ FieldType2["ARRAY"] = "ARRAY";
542
+ FieldType2["URL"] = "URL";
543
+ FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
544
+ FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
545
+ FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
546
+ FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
547
+ FieldType2["IMAGE_URL"] = "IMAGE_URL";
548
+ FieldType2["VIDEO_URL"] = "VIDEO_URL";
549
+ return FieldType2;
550
+ })(FieldType || {});
551
+ var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
552
+ WixDataEnvironment2["LIVE"] = "LIVE";
553
+ WixDataEnvironment2["SANDBOX"] = "SANDBOX";
554
+ return WixDataEnvironment2;
555
+ })(WixDataEnvironment || {});
537
556
  var FileFormat = /* @__PURE__ */ ((FileFormat2) => {
538
557
  FileFormat2["UNKNOWN"] = "UNKNOWN";
539
558
  FileFormat2["CSV"] = "CSV";
@@ -554,25 +573,6 @@ var WixDataDestinationWritePolicy = /* @__PURE__ */ ((WixDataDestinationWritePol
554
573
  WixDataDestinationWritePolicy2["TRUNCATE_BEFORE"] = "TRUNCATE_BEFORE";
555
574
  return WixDataDestinationWritePolicy2;
556
575
  })(WixDataDestinationWritePolicy || {});
557
- var FieldType = /* @__PURE__ */ ((FieldType2) => {
558
- FieldType2["ANY"] = "ANY";
559
- FieldType2["STRING"] = "STRING";
560
- FieldType2["NUMBER"] = "NUMBER";
561
- FieldType2["BOOLEAN"] = "BOOLEAN";
562
- FieldType2["DATE"] = "DATE";
563
- FieldType2["DATETIME"] = "DATETIME";
564
- FieldType2["BINARY"] = "BINARY";
565
- FieldType2["OBJECT"] = "OBJECT";
566
- FieldType2["ARRAY"] = "ARRAY";
567
- FieldType2["URL"] = "URL";
568
- FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
569
- FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
570
- FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
571
- FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
572
- FieldType2["IMAGE_URL"] = "IMAGE_URL";
573
- FieldType2["VIDEO_URL"] = "VIDEO_URL";
574
- return FieldType2;
575
- })(FieldType || {});
576
576
  var WixMediaDestinationWritePolicy = /* @__PURE__ */ ((WixMediaDestinationWritePolicy2) => {
577
577
  WixMediaDestinationWritePolicy2["OVERWRITE"] = "OVERWRITE";
578
578
  WixMediaDestinationWritePolicy2["SKIP_EXISTING"] = "SKIP_EXISTING";