@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
  /**
@@ -1109,58 +1172,6 @@ interface Schema {
1109
1172
  */
1110
1173
  fields?: V1Field[];
1111
1174
  }
1112
- interface V1Field {
1113
- /**
1114
- * Field ID.
1115
- *
1116
- * 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`.
1117
- * @maxLength 1024
1118
- */
1119
- key?: string;
1120
- /**
1121
- * Field display name.
1122
- *
1123
- * When moving items to CSV files, use this to set the header of the target column.
1124
- * @maxLength 1024
1125
- */
1126
- displayName?: string;
1127
- /**
1128
- * Field data type. Default: `ANY`.
1129
- *
1130
- * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).
1131
- */
1132
- fieldType?: FieldTypeWithLiterals;
1133
- }
1134
- declare enum FieldType {
1135
- /** Any data type. */
1136
- ANY = "ANY",
1137
- /** String. */
1138
- STRING = "STRING",
1139
- /** Number. */
1140
- NUMBER = "NUMBER",
1141
- /** Boolean. */
1142
- BOOLEAN = "BOOLEAN",
1143
- /** Date string in ISO 8601 date format: `YYYY-MM-DD`. */
1144
- DATE = "DATE",
1145
- /** [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"}`. */
1146
- DATETIME = "DATETIME",
1147
- /** Binary file. */
1148
- BINARY = "BINARY",
1149
- /** object. */
1150
- OBJECT = "OBJECT",
1151
- /** Array. */
1152
- ARRAY = "ARRAY",
1153
- /** Web URL. */
1154
- URL = "URL",
1155
- WIX_MEDIA_URL = "WIX_MEDIA_URL",
1156
- WIX_MEDIA_IMAGE_URL = "WIX_MEDIA_IMAGE_URL",
1157
- WIX_MEDIA_VIDEO_URL = "WIX_MEDIA_VIDEO_URL",
1158
- WIX_MEDIA_DOCUMENT_URL = "WIX_MEDIA_DOCUMENT_URL",
1159
- IMAGE_URL = "IMAGE_URL",
1160
- VIDEO_URL = "VIDEO_URL"
1161
- }
1162
- /** @enumType */
1163
- 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';
1164
1175
  interface StoresCatalogProductsDestination {
1165
1176
  }
1166
1177
  /** Wix Media Manager destination. */
@@ -1571,7 +1582,6 @@ interface JobsCreatedEnvelope {
1571
1582
  * @webhook
1572
1583
  * @eventType wix.data.sync.v1.jobs_created
1573
1584
  * @slug created
1574
- * @documentationMaturity preview
1575
1585
  */
1576
1586
  declare function onJobsCreated(handler: (event: JobsCreatedEnvelope) => void | Promise<void>): void;
1577
1587
  interface JobsDeletedEnvelope {
@@ -1583,7 +1593,6 @@ interface JobsDeletedEnvelope {
1583
1593
  * @webhook
1584
1594
  * @eventType wix.data.sync.v1.jobs_deleted
1585
1595
  * @slug deleted
1586
- * @documentationMaturity preview
1587
1596
  */
1588
1597
  declare function onJobsDeleted(handler: (event: JobsDeletedEnvelope) => void | Promise<void>): void;
1589
1598
  interface JobsUpdatedEnvelope {
@@ -1596,7 +1605,6 @@ interface JobsUpdatedEnvelope {
1596
1605
  * @webhook
1597
1606
  * @eventType wix.data.sync.v1.jobs_updated
1598
1607
  * @slug updated
1599
- * @documentationMaturity preview
1600
1608
  */
1601
1609
  declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | Promise<void>): void;
1602
1610
  /**
@@ -1606,7 +1614,6 @@ declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | P
1606
1614
  * 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.
1607
1615
  * @param scheduledDataWorkflow - Scheduled data movement workflow to create.
1608
1616
  * @public
1609
- * @documentationMaturity preview
1610
1617
  * @requiredField scheduledDataWorkflow
1611
1618
  * @requiredField scheduledDataWorkflow._id
1612
1619
  * @requiredField scheduledDataWorkflow.workflow
@@ -1633,7 +1640,6 @@ interface CreateScheduledDataWorkflowOptions {
1633
1640
  * Only applies to `enabled` scheduled data workflows.
1634
1641
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to reschedule.
1635
1642
  * @public
1636
- * @documentationMaturity preview
1637
1643
  * @requiredField scheduledDataWorkflowId
1638
1644
  * @permissionId data:sync:v1:jobs:reschedule_scheduled_data_workflow
1639
1645
  * @fqn wix.hub.v1.DataMovementSchedulerService.RescheduleScheduledDataWorkflow
@@ -1654,7 +1660,6 @@ interface RescheduleScheduledDataWorkflowOptions {
1654
1660
  * TimeCapsule runs.
1655
1661
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to run immediately.
1656
1662
  * @public
1657
- * @documentationMaturity preview
1658
1663
  * @requiredField scheduledDataWorkflowId
1659
1664
  * @permissionId data:sync:v1:jobs:trigger_scheduled_data_workflow_now
1660
1665
  * @fqn wix.hub.v1.DataMovementSchedulerService.TriggerScheduledDataWorkflowNow
@@ -1664,7 +1669,6 @@ declare function triggerScheduledDataWorkflowNow(scheduledDataWorkflowId: string
1664
1669
  * Updates an existing scheduled data workflow.
1665
1670
  * @param scheduledDataWorkflow - Scheduled data movement workflow information to update.
1666
1671
  * @public
1667
- * @documentationMaturity preview
1668
1672
  * @requiredField scheduledDataWorkflow
1669
1673
  * @requiredField scheduledDataWorkflow.workflow
1670
1674
  * @requiredField scheduledDataWorkflow.workflow.steps
@@ -1686,7 +1690,6 @@ interface UpdateScheduledDataWorkflowOptions {
1686
1690
  * This permanently removes the schedule and prevents future executions. Any currently running data workflows triggered by the schedule continue to completion.
1687
1691
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to delete.
1688
1692
  * @public
1689
- * @documentationMaturity preview
1690
1693
  * @requiredField scheduledDataWorkflowId
1691
1694
  * @permissionId data:sync:v1:jobs:delete_scheduled_data_workflow
1692
1695
  * @fqn wix.hub.v1.DataMovementSchedulerService.DeleteScheduledDataWorkflow
@@ -1696,7 +1699,6 @@ declare function deleteScheduledDataWorkflow(scheduledDataWorkflowId: string): P
1696
1699
  * Retrieves a scheduled data workflow by ID.
1697
1700
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to retrieve.
1698
1701
  * @public
1699
- * @documentationMaturity preview
1700
1702
  * @requiredField scheduledDataWorkflowId
1701
1703
  * @permissionId data:sync:v1:jobs:get_scheduled_data_workflow
1702
1704
  * @returns Retrieved scheduled data movement workflow.
@@ -1715,7 +1717,6 @@ interface GetScheduledDataWorkflowOptions {
1715
1717
  *
1716
1718
  * 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.
1717
1719
  * @public
1718
- * @documentationMaturity preview
1719
1720
  * @permissionId data:sync:v1:jobs:list_scheduled_data_workflows
1720
1721
  * @fqn wix.hub.v1.DataMovementSchedulerService.ListScheduledDataWorkflows
1721
1722
  */
@@ -1732,4 +1733,4 @@ interface ListScheduledDataWorkflowsOptions {
1732
1733
  filter?: Record<string, any> | null;
1733
1734
  }
1734
1735
 
1735
- 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 };
1736
+ 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 };
@@ -76,34 +76,34 @@ function createScheduledDataWorkflow(payload) {
76
76
  transformFn: transformSDKFloatToRESTFloat,
77
77
  paths: [
78
78
  {
79
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
79
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
80
80
  },
81
81
  {
82
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
82
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
83
83
  },
84
84
  {
85
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
85
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
86
86
  },
87
87
  {
88
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
88
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
89
89
  },
90
90
  {
91
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
91
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
92
92
  },
93
93
  {
94
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
94
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
95
95
  },
96
96
  {
97
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
97
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
98
98
  },
99
99
  {
100
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
100
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
101
101
  },
102
102
  {
103
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
103
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
104
104
  },
105
105
  {
106
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
106
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
107
107
  }
108
108
  ]
109
109
  }
@@ -134,34 +134,34 @@ function createScheduledDataWorkflow(payload) {
134
134
  transformFn: transformRESTFloatToSDKFloat,
135
135
  paths: [
136
136
  {
137
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
137
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
138
138
  },
139
139
  {
140
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
140
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
141
141
  },
142
142
  {
143
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
143
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
144
144
  },
145
145
  {
146
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
146
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
147
147
  },
148
148
  {
149
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
149
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
150
150
  },
151
151
  {
152
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
152
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
153
153
  },
154
154
  {
155
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
155
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
156
156
  },
157
157
  {
158
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
158
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
159
159
  },
160
160
  {
161
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
161
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
162
162
  },
163
163
  {
164
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
164
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
165
165
  }
166
166
  ]
167
167
  }
@@ -237,34 +237,34 @@ function updateScheduledDataWorkflow(payload) {
237
237
  transformFn: transformSDKFloatToRESTFloat,
238
238
  paths: [
239
239
  {
240
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
240
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
241
241
  },
242
242
  {
243
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
243
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
244
244
  },
245
245
  {
246
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
246
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
247
247
  },
248
248
  {
249
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
249
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
250
250
  },
251
251
  {
252
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
252
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
253
253
  },
254
254
  {
255
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
255
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
256
256
  },
257
257
  {
258
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
258
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
259
259
  },
260
260
  {
261
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
261
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
262
262
  },
263
263
  {
264
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
264
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
265
265
  },
266
266
  {
267
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
267
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
268
268
  }
269
269
  ]
270
270
  }
@@ -295,34 +295,34 @@ function updateScheduledDataWorkflow(payload) {
295
295
  transformFn: transformRESTFloatToSDKFloat,
296
296
  paths: [
297
297
  {
298
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
298
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
299
299
  },
300
300
  {
301
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
301
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
302
302
  },
303
303
  {
304
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
304
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
305
305
  },
306
306
  {
307
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
307
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
308
308
  },
309
309
  {
310
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
310
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
311
311
  },
312
312
  {
313
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
313
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
314
314
  },
315
315
  {
316
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
316
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
317
317
  },
318
318
  {
319
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
319
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
320
320
  },
321
321
  {
322
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
322
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
323
323
  },
324
324
  {
325
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
325
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
326
326
  }
327
327
  ]
328
328
  }
@@ -381,34 +381,34 @@ function getScheduledDataWorkflow(payload) {
381
381
  transformFn: transformRESTFloatToSDKFloat,
382
382
  paths: [
383
383
  {
384
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
384
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
385
385
  },
386
386
  {
387
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
387
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
388
388
  },
389
389
  {
390
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
390
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
391
391
  },
392
392
  {
393
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
393
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
394
394
  },
395
395
  {
396
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
396
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
397
397
  },
398
398
  {
399
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
399
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
400
400
  },
401
401
  {
402
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
402
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
403
403
  },
404
404
  {
405
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
405
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
406
406
  },
407
407
  {
408
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
408
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
409
409
  },
410
410
  {
411
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
411
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
412
412
  }
413
413
  ]
414
414
  }
@@ -446,34 +446,34 @@ function listScheduledDataWorkflows(payload) {
446
446
  transformFn: transformRESTFloatToSDKFloat,
447
447
  paths: [
448
448
  {
449
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
449
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
450
450
  },
451
451
  {
452
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
452
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
453
453
  },
454
454
  {
455
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
455
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
456
456
  },
457
457
  {
458
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
458
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
459
459
  },
460
460
  {
461
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
461
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
462
462
  },
463
463
  {
464
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
464
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
465
465
  },
466
466
  {
467
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
467
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
468
468
  },
469
469
  {
470
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
470
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
471
471
  },
472
472
  {
473
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
473
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
474
474
  },
475
475
  {
476
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
476
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
477
477
  }
478
478
  ]
479
479
  }
@@ -485,16 +485,35 @@ function listScheduledDataWorkflows(payload) {
485
485
  }
486
486
 
487
487
  // src/data-sync-v1-jobs-scheduled-workflows.universal.ts
488
- var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
489
- WixDataEnvironment2["LIVE"] = "LIVE";
490
- WixDataEnvironment2["SANDBOX"] = "SANDBOX";
491
- return WixDataEnvironment2;
492
- })(WixDataEnvironment || {});
493
488
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
494
489
  SortOrder2["ASC"] = "ASC";
495
490
  SortOrder2["DESC"] = "DESC";
496
491
  return SortOrder2;
497
492
  })(SortOrder || {});
493
+ var FieldType = /* @__PURE__ */ ((FieldType2) => {
494
+ FieldType2["ANY"] = "ANY";
495
+ FieldType2["STRING"] = "STRING";
496
+ FieldType2["NUMBER"] = "NUMBER";
497
+ FieldType2["BOOLEAN"] = "BOOLEAN";
498
+ FieldType2["DATE"] = "DATE";
499
+ FieldType2["DATETIME"] = "DATETIME";
500
+ FieldType2["BINARY"] = "BINARY";
501
+ FieldType2["OBJECT"] = "OBJECT";
502
+ FieldType2["ARRAY"] = "ARRAY";
503
+ FieldType2["URL"] = "URL";
504
+ FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
505
+ FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
506
+ FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
507
+ FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
508
+ FieldType2["IMAGE_URL"] = "IMAGE_URL";
509
+ FieldType2["VIDEO_URL"] = "VIDEO_URL";
510
+ return FieldType2;
511
+ })(FieldType || {});
512
+ var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
513
+ WixDataEnvironment2["LIVE"] = "LIVE";
514
+ WixDataEnvironment2["SANDBOX"] = "SANDBOX";
515
+ return WixDataEnvironment2;
516
+ })(WixDataEnvironment || {});
498
517
  var FileFormat = /* @__PURE__ */ ((FileFormat2) => {
499
518
  FileFormat2["UNKNOWN"] = "UNKNOWN";
500
519
  FileFormat2["CSV"] = "CSV";
@@ -515,25 +534,6 @@ var WixDataDestinationWritePolicy = /* @__PURE__ */ ((WixDataDestinationWritePol
515
534
  WixDataDestinationWritePolicy2["TRUNCATE_BEFORE"] = "TRUNCATE_BEFORE";
516
535
  return WixDataDestinationWritePolicy2;
517
536
  })(WixDataDestinationWritePolicy || {});
518
- var FieldType = /* @__PURE__ */ ((FieldType2) => {
519
- FieldType2["ANY"] = "ANY";
520
- FieldType2["STRING"] = "STRING";
521
- FieldType2["NUMBER"] = "NUMBER";
522
- FieldType2["BOOLEAN"] = "BOOLEAN";
523
- FieldType2["DATE"] = "DATE";
524
- FieldType2["DATETIME"] = "DATETIME";
525
- FieldType2["BINARY"] = "BINARY";
526
- FieldType2["OBJECT"] = "OBJECT";
527
- FieldType2["ARRAY"] = "ARRAY";
528
- FieldType2["URL"] = "URL";
529
- FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
530
- FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
531
- FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
532
- FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
533
- FieldType2["IMAGE_URL"] = "IMAGE_URL";
534
- FieldType2["VIDEO_URL"] = "VIDEO_URL";
535
- return FieldType2;
536
- })(FieldType || {});
537
537
  var WixMediaDestinationWritePolicy = /* @__PURE__ */ ((WixMediaDestinationWritePolicy2) => {
538
538
  WixMediaDestinationWritePolicy2["OVERWRITE"] = "OVERWRITE";
539
539
  WixMediaDestinationWritePolicy2["SKIP_EXISTING"] = "SKIP_EXISTING";