@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
@@ -164,25 +164,6 @@ interface SourceSourceOneOf {
164
164
  */
165
165
  file?: FileSource;
166
166
  }
167
- declare enum WixDataEnvironment {
168
- /** Collection's [live environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#sandbox-collections). */
169
- LIVE = "LIVE",
170
- /** Collection's [sandbox environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#live-collections). */
171
- SANDBOX = "SANDBOX"
172
- }
173
- /** @enumType */
174
- type WixDataEnvironmentWithLiterals = WixDataEnvironment | 'LIVE' | 'SANDBOX';
175
- /** Filter and field selection query. */
176
- interface FilterQuery {
177
- /**
178
- * Filter to apply to the items. Only items that pass the filter are moved.
179
- *
180
- * Learn more about building a query filter using [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
181
- */
182
- filter?: Record<string, any> | null;
183
- /** Item fields to move. If not set, the method moves the full items. */
184
- fields?: string[];
185
- }
186
167
  interface AggregationPipeline extends AggregationPipelinePagingMethodOneOf {
187
168
  /**
188
169
  * Paging options to limit and skip the number of results.
@@ -841,6 +822,88 @@ interface CursorPaging {
841
822
  */
842
823
  cursor?: string | null;
843
824
  }
825
+ interface V1Field {
826
+ /**
827
+ * Field ID.
828
+ *
829
+ * 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`.
830
+ * @maxLength 1024
831
+ */
832
+ key?: string;
833
+ /**
834
+ * Field display name.
835
+ *
836
+ * When moving items to CSV files, use this to set the header of the target column.
837
+ * @maxLength 1024
838
+ */
839
+ displayName?: string;
840
+ /**
841
+ * Field data type. Default: `ANY`.
842
+ *
843
+ * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).
844
+ */
845
+ fieldType?: FieldTypeWithLiterals;
846
+ }
847
+ declare enum FieldType {
848
+ /** Any data type. */
849
+ ANY = "ANY",
850
+ /** String. */
851
+ STRING = "STRING",
852
+ /** Number. */
853
+ NUMBER = "NUMBER",
854
+ /** Boolean. */
855
+ BOOLEAN = "BOOLEAN",
856
+ /** Date string in ISO 8601 date format: `YYYY-MM-DD`. */
857
+ DATE = "DATE",
858
+ /** [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"}`. */
859
+ DATETIME = "DATETIME",
860
+ /** Binary file. */
861
+ BINARY = "BINARY",
862
+ /** object. */
863
+ OBJECT = "OBJECT",
864
+ /** Array. */
865
+ ARRAY = "ARRAY",
866
+ /** Web URL. */
867
+ URL = "URL",
868
+ WIX_MEDIA_URL = "WIX_MEDIA_URL",
869
+ WIX_MEDIA_IMAGE_URL = "WIX_MEDIA_IMAGE_URL",
870
+ WIX_MEDIA_VIDEO_URL = "WIX_MEDIA_VIDEO_URL",
871
+ WIX_MEDIA_DOCUMENT_URL = "WIX_MEDIA_DOCUMENT_URL",
872
+ IMAGE_URL = "IMAGE_URL",
873
+ VIDEO_URL = "VIDEO_URL"
874
+ }
875
+ /** @enumType */
876
+ 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';
877
+ declare enum WixDataEnvironment {
878
+ /** Collection's [live environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#sandbox-collections). */
879
+ LIVE = "LIVE",
880
+ /** Collection's [sandbox environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#live-collections). */
881
+ SANDBOX = "SANDBOX"
882
+ }
883
+ /** @enumType */
884
+ type WixDataEnvironmentWithLiterals = WixDataEnvironment | 'LIVE' | 'SANDBOX';
885
+ /** Filter and field selection query. */
886
+ interface FilterQuery {
887
+ /**
888
+ * Filter to apply to the items. Only items that pass the filter are moved.
889
+ *
890
+ * Learn more about building a query filter using [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
891
+ */
892
+ filter?: Record<string, any> | null;
893
+ /** Item fields to move. If not set, the method moves the full items. */
894
+ fields?: string[];
895
+ }
896
+ interface AggregationQuery {
897
+ /** Aggregation pipeline to run on the collection. */
898
+ aggregationPipeline?: AggregationPipeline;
899
+ /**
900
+ * Fields, will be used to map aggregation pipeline result to export result.
901
+ * Fields in the aggregation pipeline results that are not in the provided list will be ignored.
902
+ * If no fields provided, data will be exported as is, without transformation or field name mapping.
903
+ * @maxSize 1000
904
+ */
905
+ fields?: V1Field[];
906
+ }
844
907
  declare enum FileFormat {
845
908
  /** Unknown format. */
846
909
  UNKNOWN = "UNKNOWN",
@@ -870,7 +933,7 @@ interface WixDataSource extends WixDataSourceQueryOneOf {
870
933
  /** Filter and field selection to apply to the collection items. */
871
934
  filterQuery?: FilterQuery;
872
935
  /** Aggregation pipeline to run on the collection. */
873
- aggregationPipeline?: AggregationPipeline;
936
+ aggregationQuery?: AggregationQuery;
874
937
  /**
875
938
  * ID of the data collection.
876
939
  * @minLength 1
@@ -900,7 +963,7 @@ interface WixDataSourceQueryOneOf {
900
963
  /** Filter and field selection to apply to the collection items. */
901
964
  filterQuery?: FilterQuery;
902
965
  /** Aggregation pipeline to run on the collection. */
903
- aggregationPipeline?: AggregationPipeline;
966
+ aggregationQuery?: AggregationQuery;
904
967
  }
905
968
  interface LocalizationSource {
906
969
  /**
@@ -1099,58 +1162,6 @@ interface Schema {
1099
1162
  */
1100
1163
  fields?: V1Field[];
1101
1164
  }
1102
- interface V1Field {
1103
- /**
1104
- * Field ID.
1105
- *
1106
- * 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`.
1107
- * @maxLength 1024
1108
- */
1109
- key?: string;
1110
- /**
1111
- * Field display name.
1112
- *
1113
- * When moving items to CSV files, use this to set the header of the target column.
1114
- * @maxLength 1024
1115
- */
1116
- displayName?: string;
1117
- /**
1118
- * Field data type. Default: `ANY`.
1119
- *
1120
- * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).
1121
- */
1122
- fieldType?: FieldTypeWithLiterals;
1123
- }
1124
- declare enum FieldType {
1125
- /** Any data type. */
1126
- ANY = "ANY",
1127
- /** String. */
1128
- STRING = "STRING",
1129
- /** Number. */
1130
- NUMBER = "NUMBER",
1131
- /** Boolean. */
1132
- BOOLEAN = "BOOLEAN",
1133
- /** Date string in ISO 8601 date format: `YYYY-MM-DD`. */
1134
- DATE = "DATE",
1135
- /** [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"}`. */
1136
- DATETIME = "DATETIME",
1137
- /** Binary file. */
1138
- BINARY = "BINARY",
1139
- /** object. */
1140
- OBJECT = "OBJECT",
1141
- /** Array. */
1142
- ARRAY = "ARRAY",
1143
- /** Web URL. */
1144
- URL = "URL",
1145
- WIX_MEDIA_URL = "WIX_MEDIA_URL",
1146
- WIX_MEDIA_IMAGE_URL = "WIX_MEDIA_IMAGE_URL",
1147
- WIX_MEDIA_VIDEO_URL = "WIX_MEDIA_VIDEO_URL",
1148
- WIX_MEDIA_DOCUMENT_URL = "WIX_MEDIA_DOCUMENT_URL",
1149
- IMAGE_URL = "IMAGE_URL",
1150
- VIDEO_URL = "VIDEO_URL"
1151
- }
1152
- /** @enumType */
1153
- 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';
1154
1165
  interface StoresCatalogProductsDestination {
1155
1166
  }
1156
1167
  /** Wix Media Manager destination. */
@@ -1525,4 +1536,4 @@ declare function getScheduledDataWorkflow(): __PublicMethodMetaInfo<'GET', {
1525
1536
  }, GetScheduledDataWorkflowRequest$1, GetScheduledDataWorkflowRequest, GetScheduledDataWorkflowResponse$1, GetScheduledDataWorkflowResponse>;
1526
1537
  declare function listScheduledDataWorkflows(): __PublicMethodMetaInfo<'GET', {}, ListScheduledDataWorkflowsRequest$1, ListScheduledDataWorkflowsRequest, ListScheduledDataWorkflowsResponse$1, ListScheduledDataWorkflowsResponse>;
1527
1538
 
1528
- export { type AbsOperation as AbsOperationOriginal, type AccountInfo as AccountInfoOriginal, type AccumulatorExpressionOneOf as AccumulatorExpressionOneOfOriginal, type Accumulator as AccumulatorOriginal, type ActionEvent as ActionEventOriginal, type AddField as AddFieldOriginal, type AddFields as AddFieldsOriginal, type AddOperation as AddOperationOriginal, type AggregationPipeline as AggregationPipelineOriginal, type AggregationPipelinePagingMethodOneOf as AggregationPipelinePagingMethodOneOfOriginal, type Avg as AvgOriginal, type CeilOperation as CeilOperationOriginal, type CommonCursorPaging as CommonCursorPagingOriginal, type CommonSorting as CommonSortingOriginal, type ConcatOperation as ConcatOperationOriginal, type ConditionOperation as ConditionOperationOriginal, type CreateScheduledDataWorkflowRequest as CreateScheduledDataWorkflowRequestOriginal, type CreateScheduledDataWorkflowResponse as CreateScheduledDataWorkflowResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DataMovementJobLogs as DataMovementJobLogsOriginal, type DeleteScheduledDataWorkflowRequest as DeleteScheduledDataWorkflowRequestOriginal, type DeleteScheduledDataWorkflowResponse as DeleteScheduledDataWorkflowResponseOriginal, type DestinationDestinationOneOf as DestinationDestinationOneOfOriginal, type Destination as DestinationOriginal, type DivideOperation as DivideOperationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type Exclude as ExcludeOriginal, type Expression as ExpressionOriginal, type ExpressionValueOneOf as ExpressionValueOneOfOriginal, type ExternalFileSource as ExternalFileSourceOriginal, type Field as FieldOriginal, type FieldProjectionOneOf as FieldProjectionOneOfOriginal, FieldType as FieldTypeOriginal, type FieldTypeWithLiterals as FieldTypeWithLiteralsOriginal, Fields as FieldsOriginal, type FieldsWithLiterals as FieldsWithLiteralsOriginal, type FileDestination as FileDestinationOriginal, FileFormat as FileFormatOriginal, type FileFormatWithLiterals as FileFormatWithLiteralsOriginal, type FileSource as FileSourceOriginal, type FilterQuery as FilterQueryOriginal, type First as FirstOriginal, type FloorOperation as FloorOperationOriginal, type GetScheduledDataWorkflowRequest as GetScheduledDataWorkflowRequestOriginal, type GetScheduledDataWorkflowResponse as GetScheduledDataWorkflowResponseOriginal, type GoogleSheetsSource as GoogleSheetsSourceOriginal, type GreaterThanOperation as GreaterThanOperationOriginal, type GroupId as GroupIdOriginal, type Group as GroupOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Include as IncludeOriginal, type JobSpec as JobSpecOriginal, type JobSpecSiteOverrideOneOf as JobSpecSiteOverrideOneOfOriginal, type Last as LastOriginal, type LengthOperation as LengthOperationOriginal, type ListScheduledDataWorkflowsRequest as ListScheduledDataWorkflowsRequestOriginal, type ListScheduledDataWorkflowsResponse as ListScheduledDataWorkflowsResponseOriginal, type LocalizationDestination as LocalizationDestinationOriginal, type LocalizationSource as LocalizationSourceOriginal, type Lookup as LookupOriginal, type Max as MaxOriginal, MediaType as MediaTypeOriginal, type MediaTypeWithLiterals as MediaTypeWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Min as MinOriginal, type ModOperation as ModOperationOriginal, type MultiplyOperation as MultiplyOperationOriginal, type ObjectToArray as ObjectToArrayOriginal, type Paging as PagingOriginal, type ProjectNested as ProjectNestedOriginal, type Projection as ProjectionOriginal, type Push as PushOriginal, type RescheduleScheduledDataWorkflowRequest as RescheduleScheduledDataWorkflowRequestOriginal, type RescheduleScheduledDataWorkflowResponse as RescheduleScheduledDataWorkflowResponseOriginal, type Reshape as ReshapeOriginal, type RestoreInfo as RestoreInfoOriginal, type ScheduledDataWorkflow as ScheduledDataWorkflowOriginal, type ScheduledDataWorkflowSpec as ScheduledDataWorkflowSpecOriginal, type Schema as SchemaOriginal, type SizeOperation as SizeOperationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type Source as SourceOriginal, type SourceSourceOneOf as SourceSourceOneOfOriginal, type Stage as StageOriginal, type StageStageOneOf as StageStageOneOfOriginal, type StoresCatalogInventoryDestination as StoresCatalogInventoryDestinationOriginal, type StoresCatalogProductsDestination as StoresCatalogProductsDestinationOriginal, type StringifyOperation as StringifyOperationOriginal, type SubstringOperation as SubstringOperationOriginal, type SubtractOperation as SubtractOperationOriginal, type SumOperation as SumOperationOriginal, type Sum as SumOriginal, type TestDestination as TestDestinationOriginal, type TestSource as TestSourceOriginal, type TestTransformation as TestTransformationOriginal, type ToLowerOperation as ToLowerOperationOriginal, type ToUpperOperation as ToUpperOperationOriginal, type Transformation as TransformationOriginal, type TransformationTransformationOneOf as TransformationTransformationOneOfOriginal, type TriggerScheduledDataWorkflowNowRequest as TriggerScheduledDataWorkflowNowRequestOriginal, type TriggerScheduledDataWorkflowNowResponse as TriggerScheduledDataWorkflowNowResponseOriginal, type UnionWith as UnionWithOriginal, type UnwindArray as UnwindArrayOriginal, type UpdateScheduledDataWorkflowRequest as UpdateScheduledDataWorkflowRequestOriginal, type UpdateScheduledDataWorkflowResponse as UpdateScheduledDataWorkflowResponseOriginal, type V1Field as V1FieldOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixDataCollectionDefinitionDestination as WixDataCollectionDefinitionDestinationOriginal, type WixDataCollectionDefinitionSource as WixDataCollectionDefinitionSourceOriginal, type WixDataDestination as WixDataDestinationOriginal, WixDataDestinationWritePolicy as WixDataDestinationWritePolicyOriginal, type WixDataDestinationWritePolicyWithLiterals as WixDataDestinationWritePolicyWithLiteralsOriginal, WixDataEnvironment as WixDataEnvironmentOriginal, type WixDataEnvironmentWithLiterals as WixDataEnvironmentWithLiteralsOriginal, type WixDataSource as WixDataSourceOriginal, type WixDataSourceQueryOneOf as WixDataSourceQueryOneOfOriginal, type WixMediaDestination as WixMediaDestinationOriginal, WixMediaDestinationWritePolicy as WixMediaDestinationWritePolicyOriginal, type WixMediaDestinationWritePolicyWithLiterals as WixMediaDestinationWritePolicyWithLiteralsOriginal, type WixMediaSource as WixMediaSourceOriginal, WritePolicy as WritePolicyOriginal, type WritePolicyWithLiterals as WritePolicyWithLiteralsOriginal, type __PublicMethodMetaInfo, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
1539
+ export { type AbsOperation as AbsOperationOriginal, type AccountInfo as AccountInfoOriginal, type AccumulatorExpressionOneOf as AccumulatorExpressionOneOfOriginal, type Accumulator as AccumulatorOriginal, type ActionEvent as ActionEventOriginal, type AddField as AddFieldOriginal, type AddFields as AddFieldsOriginal, type AddOperation as AddOperationOriginal, type AggregationPipeline as AggregationPipelineOriginal, type AggregationPipelinePagingMethodOneOf as AggregationPipelinePagingMethodOneOfOriginal, type AggregationQuery as AggregationQueryOriginal, type Avg as AvgOriginal, type CeilOperation as CeilOperationOriginal, type CommonCursorPaging as CommonCursorPagingOriginal, type CommonSorting as CommonSortingOriginal, type ConcatOperation as ConcatOperationOriginal, type ConditionOperation as ConditionOperationOriginal, type CreateScheduledDataWorkflowRequest as CreateScheduledDataWorkflowRequestOriginal, type CreateScheduledDataWorkflowResponse as CreateScheduledDataWorkflowResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DataMovementJobLogs as DataMovementJobLogsOriginal, type DeleteScheduledDataWorkflowRequest as DeleteScheduledDataWorkflowRequestOriginal, type DeleteScheduledDataWorkflowResponse as DeleteScheduledDataWorkflowResponseOriginal, type DestinationDestinationOneOf as DestinationDestinationOneOfOriginal, type Destination as DestinationOriginal, type DivideOperation as DivideOperationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type Exclude as ExcludeOriginal, type Expression as ExpressionOriginal, type ExpressionValueOneOf as ExpressionValueOneOfOriginal, type ExternalFileSource as ExternalFileSourceOriginal, type Field as FieldOriginal, type FieldProjectionOneOf as FieldProjectionOneOfOriginal, FieldType as FieldTypeOriginal, type FieldTypeWithLiterals as FieldTypeWithLiteralsOriginal, Fields as FieldsOriginal, type FieldsWithLiterals as FieldsWithLiteralsOriginal, type FileDestination as FileDestinationOriginal, FileFormat as FileFormatOriginal, type FileFormatWithLiterals as FileFormatWithLiteralsOriginal, type FileSource as FileSourceOriginal, type FilterQuery as FilterQueryOriginal, type First as FirstOriginal, type FloorOperation as FloorOperationOriginal, type GetScheduledDataWorkflowRequest as GetScheduledDataWorkflowRequestOriginal, type GetScheduledDataWorkflowResponse as GetScheduledDataWorkflowResponseOriginal, type GoogleSheetsSource as GoogleSheetsSourceOriginal, type GreaterThanOperation as GreaterThanOperationOriginal, type GroupId as GroupIdOriginal, type Group as GroupOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Include as IncludeOriginal, type JobSpec as JobSpecOriginal, type JobSpecSiteOverrideOneOf as JobSpecSiteOverrideOneOfOriginal, type Last as LastOriginal, type LengthOperation as LengthOperationOriginal, type ListScheduledDataWorkflowsRequest as ListScheduledDataWorkflowsRequestOriginal, type ListScheduledDataWorkflowsResponse as ListScheduledDataWorkflowsResponseOriginal, type LocalizationDestination as LocalizationDestinationOriginal, type LocalizationSource as LocalizationSourceOriginal, type Lookup as LookupOriginal, type Max as MaxOriginal, MediaType as MediaTypeOriginal, type MediaTypeWithLiterals as MediaTypeWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Min as MinOriginal, type ModOperation as ModOperationOriginal, type MultiplyOperation as MultiplyOperationOriginal, type ObjectToArray as ObjectToArrayOriginal, type Paging as PagingOriginal, type ProjectNested as ProjectNestedOriginal, type Projection as ProjectionOriginal, type Push as PushOriginal, type RescheduleScheduledDataWorkflowRequest as RescheduleScheduledDataWorkflowRequestOriginal, type RescheduleScheduledDataWorkflowResponse as RescheduleScheduledDataWorkflowResponseOriginal, type Reshape as ReshapeOriginal, type RestoreInfo as RestoreInfoOriginal, type ScheduledDataWorkflow as ScheduledDataWorkflowOriginal, type ScheduledDataWorkflowSpec as ScheduledDataWorkflowSpecOriginal, type Schema as SchemaOriginal, type SizeOperation as SizeOperationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type Source as SourceOriginal, type SourceSourceOneOf as SourceSourceOneOfOriginal, type Stage as StageOriginal, type StageStageOneOf as StageStageOneOfOriginal, type StoresCatalogInventoryDestination as StoresCatalogInventoryDestinationOriginal, type StoresCatalogProductsDestination as StoresCatalogProductsDestinationOriginal, type StringifyOperation as StringifyOperationOriginal, type SubstringOperation as SubstringOperationOriginal, type SubtractOperation as SubtractOperationOriginal, type SumOperation as SumOperationOriginal, type Sum as SumOriginal, type TestDestination as TestDestinationOriginal, type TestSource as TestSourceOriginal, type TestTransformation as TestTransformationOriginal, type ToLowerOperation as ToLowerOperationOriginal, type ToUpperOperation as ToUpperOperationOriginal, type Transformation as TransformationOriginal, type TransformationTransformationOneOf as TransformationTransformationOneOfOriginal, type TriggerScheduledDataWorkflowNowRequest as TriggerScheduledDataWorkflowNowRequestOriginal, type TriggerScheduledDataWorkflowNowResponse as TriggerScheduledDataWorkflowNowResponseOriginal, type UnionWith as UnionWithOriginal, type UnwindArray as UnwindArrayOriginal, type UpdateScheduledDataWorkflowRequest as UpdateScheduledDataWorkflowRequestOriginal, type UpdateScheduledDataWorkflowResponse as UpdateScheduledDataWorkflowResponseOriginal, type V1Field as V1FieldOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixDataCollectionDefinitionDestination as WixDataCollectionDefinitionDestinationOriginal, type WixDataCollectionDefinitionSource as WixDataCollectionDefinitionSourceOriginal, type WixDataDestination as WixDataDestinationOriginal, WixDataDestinationWritePolicy as WixDataDestinationWritePolicyOriginal, type WixDataDestinationWritePolicyWithLiterals as WixDataDestinationWritePolicyWithLiteralsOriginal, WixDataEnvironment as WixDataEnvironmentOriginal, type WixDataEnvironmentWithLiterals as WixDataEnvironmentWithLiteralsOriginal, type WixDataSource as WixDataSourceOriginal, type WixDataSourceQueryOneOf as WixDataSourceQueryOneOfOriginal, type WixMediaDestination as WixMediaDestinationOriginal, WixMediaDestinationWritePolicy as WixMediaDestinationWritePolicyOriginal, type WixMediaDestinationWritePolicyWithLiterals as WixMediaDestinationWritePolicyWithLiteralsOriginal, type WixMediaSource as WixMediaSourceOriginal, WritePolicy as WritePolicyOriginal, type WritePolicyWithLiterals as WritePolicyWithLiteralsOriginal, type __PublicMethodMetaInfo, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
package/build/cjs/meta.js CHANGED
@@ -111,34 +111,34 @@ function createScheduledDataWorkflow(payload) {
111
111
  transformFn: import_float.transformSDKFloatToRESTFloat,
112
112
  paths: [
113
113
  {
114
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
114
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
115
115
  },
116
116
  {
117
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
117
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
118
118
  },
119
119
  {
120
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
120
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
121
121
  },
122
122
  {
123
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
123
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
124
124
  },
125
125
  {
126
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
126
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
127
127
  },
128
128
  {
129
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
129
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
130
130
  },
131
131
  {
132
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
132
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
133
133
  },
134
134
  {
135
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
135
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
136
136
  },
137
137
  {
138
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
138
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
139
139
  },
140
140
  {
141
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
141
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
142
142
  }
143
143
  ]
144
144
  }
@@ -169,34 +169,34 @@ function createScheduledDataWorkflow(payload) {
169
169
  transformFn: import_float2.transformRESTFloatToSDKFloat,
170
170
  paths: [
171
171
  {
172
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
172
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
173
173
  },
174
174
  {
175
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
175
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
176
176
  },
177
177
  {
178
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
178
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
179
179
  },
180
180
  {
181
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
181
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
182
182
  },
183
183
  {
184
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
184
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
185
185
  },
186
186
  {
187
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
187
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
188
188
  },
189
189
  {
190
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
190
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
191
191
  },
192
192
  {
193
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
193
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
194
194
  },
195
195
  {
196
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
196
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
197
197
  },
198
198
  {
199
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
199
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
200
200
  }
201
201
  ]
202
202
  }
@@ -272,34 +272,34 @@ function updateScheduledDataWorkflow(payload) {
272
272
  transformFn: import_float.transformSDKFloatToRESTFloat,
273
273
  paths: [
274
274
  {
275
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
275
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
276
276
  },
277
277
  {
278
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
278
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
279
279
  },
280
280
  {
281
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
281
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
282
282
  },
283
283
  {
284
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
284
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
285
285
  },
286
286
  {
287
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
287
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
288
288
  },
289
289
  {
290
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
290
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
291
291
  },
292
292
  {
293
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
293
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
294
294
  },
295
295
  {
296
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
296
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
297
297
  },
298
298
  {
299
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
299
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
300
300
  },
301
301
  {
302
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
302
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
303
303
  }
304
304
  ]
305
305
  }
@@ -330,34 +330,34 @@ function updateScheduledDataWorkflow(payload) {
330
330
  transformFn: import_float2.transformRESTFloatToSDKFloat,
331
331
  paths: [
332
332
  {
333
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
333
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
334
334
  },
335
335
  {
336
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
336
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
337
337
  },
338
338
  {
339
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
339
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
340
340
  },
341
341
  {
342
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
342
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
343
343
  },
344
344
  {
345
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
345
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
346
346
  },
347
347
  {
348
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
348
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
349
349
  },
350
350
  {
351
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
351
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
352
352
  },
353
353
  {
354
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
354
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
355
355
  },
356
356
  {
357
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
357
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
358
358
  },
359
359
  {
360
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
360
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
361
361
  }
362
362
  ]
363
363
  }
@@ -416,34 +416,34 @@ function getScheduledDataWorkflow(payload) {
416
416
  transformFn: import_float2.transformRESTFloatToSDKFloat,
417
417
  paths: [
418
418
  {
419
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
419
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
420
420
  },
421
421
  {
422
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
422
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
423
423
  },
424
424
  {
425
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
425
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
426
426
  },
427
427
  {
428
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
428
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
429
429
  },
430
430
  {
431
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
431
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
432
432
  },
433
433
  {
434
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
434
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
435
435
  },
436
436
  {
437
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
437
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
438
438
  },
439
439
  {
440
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
440
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
441
441
  },
442
442
  {
443
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
443
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
444
444
  },
445
445
  {
446
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
446
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
447
447
  }
448
448
  ]
449
449
  }
@@ -481,34 +481,34 @@ function listScheduledDataWorkflows(payload) {
481
481
  transformFn: import_float2.transformRESTFloatToSDKFloat,
482
482
  paths: [
483
483
  {
484
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
484
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
485
485
  },
486
486
  {
487
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
487
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
488
488
  },
489
489
  {
490
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
490
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
491
491
  },
492
492
  {
493
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
493
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
494
494
  },
495
495
  {
496
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
496
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
497
497
  },
498
498
  {
499
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
499
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
500
500
  },
501
501
  {
502
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
502
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
503
503
  },
504
504
  {
505
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
505
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
506
506
  },
507
507
  {
508
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
508
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
509
509
  },
510
510
  {
511
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
511
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
512
512
  }
513
513
  ]
514
514
  }
@@ -520,16 +520,35 @@ function listScheduledDataWorkflows(payload) {
520
520
  }
521
521
 
522
522
  // src/data-sync-v1-jobs-scheduled-workflows.types.ts
523
- var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
524
- WixDataEnvironment2["LIVE"] = "LIVE";
525
- WixDataEnvironment2["SANDBOX"] = "SANDBOX";
526
- return WixDataEnvironment2;
527
- })(WixDataEnvironment || {});
528
523
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
529
524
  SortOrder2["ASC"] = "ASC";
530
525
  SortOrder2["DESC"] = "DESC";
531
526
  return SortOrder2;
532
527
  })(SortOrder || {});
528
+ var FieldType = /* @__PURE__ */ ((FieldType2) => {
529
+ FieldType2["ANY"] = "ANY";
530
+ FieldType2["STRING"] = "STRING";
531
+ FieldType2["NUMBER"] = "NUMBER";
532
+ FieldType2["BOOLEAN"] = "BOOLEAN";
533
+ FieldType2["DATE"] = "DATE";
534
+ FieldType2["DATETIME"] = "DATETIME";
535
+ FieldType2["BINARY"] = "BINARY";
536
+ FieldType2["OBJECT"] = "OBJECT";
537
+ FieldType2["ARRAY"] = "ARRAY";
538
+ FieldType2["URL"] = "URL";
539
+ FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
540
+ FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
541
+ FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
542
+ FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
543
+ FieldType2["IMAGE_URL"] = "IMAGE_URL";
544
+ FieldType2["VIDEO_URL"] = "VIDEO_URL";
545
+ return FieldType2;
546
+ })(FieldType || {});
547
+ var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
548
+ WixDataEnvironment2["LIVE"] = "LIVE";
549
+ WixDataEnvironment2["SANDBOX"] = "SANDBOX";
550
+ return WixDataEnvironment2;
551
+ })(WixDataEnvironment || {});
533
552
  var FileFormat = /* @__PURE__ */ ((FileFormat2) => {
534
553
  FileFormat2["UNKNOWN"] = "UNKNOWN";
535
554
  FileFormat2["CSV"] = "CSV";
@@ -550,25 +569,6 @@ var WixDataDestinationWritePolicy = /* @__PURE__ */ ((WixDataDestinationWritePol
550
569
  WixDataDestinationWritePolicy2["TRUNCATE_BEFORE"] = "TRUNCATE_BEFORE";
551
570
  return WixDataDestinationWritePolicy2;
552
571
  })(WixDataDestinationWritePolicy || {});
553
- var FieldType = /* @__PURE__ */ ((FieldType2) => {
554
- FieldType2["ANY"] = "ANY";
555
- FieldType2["STRING"] = "STRING";
556
- FieldType2["NUMBER"] = "NUMBER";
557
- FieldType2["BOOLEAN"] = "BOOLEAN";
558
- FieldType2["DATE"] = "DATE";
559
- FieldType2["DATETIME"] = "DATETIME";
560
- FieldType2["BINARY"] = "BINARY";
561
- FieldType2["OBJECT"] = "OBJECT";
562
- FieldType2["ARRAY"] = "ARRAY";
563
- FieldType2["URL"] = "URL";
564
- FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
565
- FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
566
- FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
567
- FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
568
- FieldType2["IMAGE_URL"] = "IMAGE_URL";
569
- FieldType2["VIDEO_URL"] = "VIDEO_URL";
570
- return FieldType2;
571
- })(FieldType || {});
572
572
  var WixMediaDestinationWritePolicy = /* @__PURE__ */ ((WixMediaDestinationWritePolicy2) => {
573
573
  WixMediaDestinationWritePolicy2["OVERWRITE"] = "OVERWRITE";
574
574
  WixMediaDestinationWritePolicy2["SKIP_EXISTING"] = "SKIP_EXISTING";