@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/es/meta.mjs CHANGED
@@ -69,34 +69,34 @@ function createScheduledDataWorkflow(payload) {
69
69
  transformFn: transformSDKFloatToRESTFloat,
70
70
  paths: [
71
71
  {
72
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
72
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
73
73
  },
74
74
  {
75
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
75
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
76
76
  },
77
77
  {
78
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
78
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
79
79
  },
80
80
  {
81
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
81
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
82
82
  },
83
83
  {
84
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
84
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
85
85
  },
86
86
  {
87
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
87
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
88
88
  },
89
89
  {
90
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
90
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
91
91
  },
92
92
  {
93
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
93
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
94
94
  },
95
95
  {
96
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
96
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
97
97
  },
98
98
  {
99
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
99
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
100
100
  }
101
101
  ]
102
102
  }
@@ -127,34 +127,34 @@ function createScheduledDataWorkflow(payload) {
127
127
  transformFn: transformRESTFloatToSDKFloat,
128
128
  paths: [
129
129
  {
130
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
130
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
131
131
  },
132
132
  {
133
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
133
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
134
134
  },
135
135
  {
136
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
136
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
137
137
  },
138
138
  {
139
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
139
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
140
140
  },
141
141
  {
142
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
142
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
143
143
  },
144
144
  {
145
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
145
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
146
146
  },
147
147
  {
148
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
148
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
149
149
  },
150
150
  {
151
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
151
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
152
152
  },
153
153
  {
154
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
154
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
155
155
  },
156
156
  {
157
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
157
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
158
158
  }
159
159
  ]
160
160
  }
@@ -230,34 +230,34 @@ function updateScheduledDataWorkflow(payload) {
230
230
  transformFn: transformSDKFloatToRESTFloat,
231
231
  paths: [
232
232
  {
233
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
233
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
234
234
  },
235
235
  {
236
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
236
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
237
237
  },
238
238
  {
239
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
239
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
240
240
  },
241
241
  {
242
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
242
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
243
243
  },
244
244
  {
245
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
245
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
246
246
  },
247
247
  {
248
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
248
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
249
249
  },
250
250
  {
251
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
251
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
252
252
  },
253
253
  {
254
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
254
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
255
255
  },
256
256
  {
257
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
257
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
258
258
  },
259
259
  {
260
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
260
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
261
261
  }
262
262
  ]
263
263
  }
@@ -288,34 +288,34 @@ function updateScheduledDataWorkflow(payload) {
288
288
  transformFn: transformRESTFloatToSDKFloat,
289
289
  paths: [
290
290
  {
291
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
291
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
292
292
  },
293
293
  {
294
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
294
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
295
295
  },
296
296
  {
297
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
297
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
298
298
  },
299
299
  {
300
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
300
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
301
301
  },
302
302
  {
303
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
303
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
304
304
  },
305
305
  {
306
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
306
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
307
307
  },
308
308
  {
309
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
309
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
310
310
  },
311
311
  {
312
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
312
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
313
313
  },
314
314
  {
315
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
315
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
316
316
  },
317
317
  {
318
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
318
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
319
319
  }
320
320
  ]
321
321
  }
@@ -374,34 +374,34 @@ function getScheduledDataWorkflow(payload) {
374
374
  transformFn: transformRESTFloatToSDKFloat,
375
375
  paths: [
376
376
  {
377
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
377
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
378
378
  },
379
379
  {
380
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
380
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
381
381
  },
382
382
  {
383
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
383
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
384
384
  },
385
385
  {
386
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
386
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
387
387
  },
388
388
  {
389
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
389
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
390
390
  },
391
391
  {
392
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
392
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
393
393
  },
394
394
  {
395
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
395
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
396
396
  },
397
397
  {
398
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
398
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
399
399
  },
400
400
  {
401
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
401
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
402
402
  },
403
403
  {
404
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
404
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
405
405
  }
406
406
  ]
407
407
  }
@@ -439,34 +439,34 @@ function listScheduledDataWorkflows(payload) {
439
439
  transformFn: transformRESTFloatToSDKFloat,
440
440
  paths: [
441
441
  {
442
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
442
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
443
443
  },
444
444
  {
445
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
445
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
446
446
  },
447
447
  {
448
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
448
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
449
449
  },
450
450
  {
451
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
451
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
452
452
  },
453
453
  {
454
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
454
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
455
455
  },
456
456
  {
457
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
457
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
458
458
  },
459
459
  {
460
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
460
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
461
461
  },
462
462
  {
463
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
463
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
464
464
  },
465
465
  {
466
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
466
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
467
467
  },
468
468
  {
469
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
469
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
470
470
  }
471
471
  ]
472
472
  }
@@ -478,16 +478,35 @@ function listScheduledDataWorkflows(payload) {
478
478
  }
479
479
 
480
480
  // src/data-sync-v1-jobs-scheduled-workflows.types.ts
481
- var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
482
- WixDataEnvironment2["LIVE"] = "LIVE";
483
- WixDataEnvironment2["SANDBOX"] = "SANDBOX";
484
- return WixDataEnvironment2;
485
- })(WixDataEnvironment || {});
486
481
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
487
482
  SortOrder2["ASC"] = "ASC";
488
483
  SortOrder2["DESC"] = "DESC";
489
484
  return SortOrder2;
490
485
  })(SortOrder || {});
486
+ var FieldType = /* @__PURE__ */ ((FieldType2) => {
487
+ FieldType2["ANY"] = "ANY";
488
+ FieldType2["STRING"] = "STRING";
489
+ FieldType2["NUMBER"] = "NUMBER";
490
+ FieldType2["BOOLEAN"] = "BOOLEAN";
491
+ FieldType2["DATE"] = "DATE";
492
+ FieldType2["DATETIME"] = "DATETIME";
493
+ FieldType2["BINARY"] = "BINARY";
494
+ FieldType2["OBJECT"] = "OBJECT";
495
+ FieldType2["ARRAY"] = "ARRAY";
496
+ FieldType2["URL"] = "URL";
497
+ FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
498
+ FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
499
+ FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
500
+ FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
501
+ FieldType2["IMAGE_URL"] = "IMAGE_URL";
502
+ FieldType2["VIDEO_URL"] = "VIDEO_URL";
503
+ return FieldType2;
504
+ })(FieldType || {});
505
+ var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
506
+ WixDataEnvironment2["LIVE"] = "LIVE";
507
+ WixDataEnvironment2["SANDBOX"] = "SANDBOX";
508
+ return WixDataEnvironment2;
509
+ })(WixDataEnvironment || {});
491
510
  var FileFormat = /* @__PURE__ */ ((FileFormat2) => {
492
511
  FileFormat2["UNKNOWN"] = "UNKNOWN";
493
512
  FileFormat2["CSV"] = "CSV";
@@ -508,25 +527,6 @@ var WixDataDestinationWritePolicy = /* @__PURE__ */ ((WixDataDestinationWritePol
508
527
  WixDataDestinationWritePolicy2["TRUNCATE_BEFORE"] = "TRUNCATE_BEFORE";
509
528
  return WixDataDestinationWritePolicy2;
510
529
  })(WixDataDestinationWritePolicy || {});
511
- var FieldType = /* @__PURE__ */ ((FieldType2) => {
512
- FieldType2["ANY"] = "ANY";
513
- FieldType2["STRING"] = "STRING";
514
- FieldType2["NUMBER"] = "NUMBER";
515
- FieldType2["BOOLEAN"] = "BOOLEAN";
516
- FieldType2["DATE"] = "DATE";
517
- FieldType2["DATETIME"] = "DATETIME";
518
- FieldType2["BINARY"] = "BINARY";
519
- FieldType2["OBJECT"] = "OBJECT";
520
- FieldType2["ARRAY"] = "ARRAY";
521
- FieldType2["URL"] = "URL";
522
- FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
523
- FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
524
- FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
525
- FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
526
- FieldType2["IMAGE_URL"] = "IMAGE_URL";
527
- FieldType2["VIDEO_URL"] = "VIDEO_URL";
528
- return FieldType2;
529
- })(FieldType || {});
530
530
  var WixMediaDestinationWritePolicy = /* @__PURE__ */ ((WixMediaDestinationWritePolicy2) => {
531
531
  WixMediaDestinationWritePolicy2["OVERWRITE"] = "OVERWRITE";
532
532
  WixMediaDestinationWritePolicy2["SKIP_EXISTING"] = "SKIP_EXISTING";