@wix/auto_sdk_data_scheduled-workflows 1.0.2 → 1.0.3

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 -74
  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 -74
  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 -74
  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 -74
  41. package/build/internal/es/index.typings.mjs +84 -84
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +85 -74
  44. package/build/internal/es/meta.mjs +84 -84
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +1136 -1034
  47. package/build/internal/es/schemas.mjs +2831 -2574
  48. package/build/internal/es/schemas.mjs.map +1 -1
  49. package/package.json +2 -2
@@ -163,25 +163,6 @@ interface SourceSourceOneOf {
163
163
  */
164
164
  file?: FileSource;
165
165
  }
166
- declare enum WixDataEnvironment {
167
- /** Collection's [live environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#sandbox-collections). */
168
- LIVE = "LIVE",
169
- /** Collection's [sandbox environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#live-collections). */
170
- SANDBOX = "SANDBOX"
171
- }
172
- /** @enumType */
173
- type WixDataEnvironmentWithLiterals = WixDataEnvironment | 'LIVE' | 'SANDBOX';
174
- /** Filter and field selection query. */
175
- interface FilterQuery {
176
- /**
177
- * Filter to apply to the items. Only items that pass the filter are moved.
178
- *
179
- * Learn more about building a query filter using [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
180
- */
181
- filter?: Record<string, any> | null;
182
- /** Item fields to move. If not set, the method moves the full items. */
183
- fields?: string[];
184
- }
185
166
  interface AggregationPipeline extends AggregationPipelinePagingMethodOneOf {
186
167
  /**
187
168
  * Paging options to limit and skip the number of results.
@@ -840,6 +821,88 @@ interface CursorPaging {
840
821
  */
841
822
  cursor?: string | null;
842
823
  }
824
+ interface V1Field {
825
+ /**
826
+ * Field ID.
827
+ *
828
+ * If the field type is `Array`, specify the item index. If the field type is `Object`, specify the field path. Use dot notation to specify nested fields, for example: `data.address.city`.
829
+ * @maxLength 1024
830
+ */
831
+ key?: string;
832
+ /**
833
+ * Field display name.
834
+ *
835
+ * When moving items to CSV files, use this to set the header of the target column.
836
+ * @maxLength 1024
837
+ */
838
+ displayName?: string;
839
+ /**
840
+ * Field data type. Default: `ANY`.
841
+ *
842
+ * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).
843
+ */
844
+ fieldType?: FieldTypeWithLiterals;
845
+ }
846
+ declare enum FieldType {
847
+ /** Any data type. */
848
+ ANY = "ANY",
849
+ /** String. */
850
+ STRING = "STRING",
851
+ /** Number. */
852
+ NUMBER = "NUMBER",
853
+ /** Boolean. */
854
+ BOOLEAN = "BOOLEAN",
855
+ /** Date string in ISO 8601 date format: `YYYY-MM-DD`. */
856
+ DATE = "DATE",
857
+ /** [Date object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) (SDK) or an object in the following format: `"someFieldKey": { "$date": "YYYY-MM-DDTHH:mm:ss.sssZ"}`. */
858
+ DATETIME = "DATETIME",
859
+ /** Binary file. */
860
+ BINARY = "BINARY",
861
+ /** object. */
862
+ OBJECT = "OBJECT",
863
+ /** Array. */
864
+ ARRAY = "ARRAY",
865
+ /** Web URL. */
866
+ URL = "URL",
867
+ WIX_MEDIA_URL = "WIX_MEDIA_URL",
868
+ WIX_MEDIA_IMAGE_URL = "WIX_MEDIA_IMAGE_URL",
869
+ WIX_MEDIA_VIDEO_URL = "WIX_MEDIA_VIDEO_URL",
870
+ WIX_MEDIA_DOCUMENT_URL = "WIX_MEDIA_DOCUMENT_URL",
871
+ IMAGE_URL = "IMAGE_URL",
872
+ VIDEO_URL = "VIDEO_URL"
873
+ }
874
+ /** @enumType */
875
+ type FieldTypeWithLiterals = FieldType | 'ANY' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'DATE' | 'DATETIME' | 'BINARY' | 'OBJECT' | 'ARRAY' | 'URL' | 'WIX_MEDIA_URL' | 'WIX_MEDIA_IMAGE_URL' | 'WIX_MEDIA_VIDEO_URL' | 'WIX_MEDIA_DOCUMENT_URL' | 'IMAGE_URL' | 'VIDEO_URL';
876
+ declare enum WixDataEnvironment {
877
+ /** Collection's [live environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#sandbox-collections). */
878
+ LIVE = "LIVE",
879
+ /** Collection's [sandbox environment](https://support.wix.com/en/article/cms-about-sandbox-and-live-collections-and-syncing#live-collections). */
880
+ SANDBOX = "SANDBOX"
881
+ }
882
+ /** @enumType */
883
+ type WixDataEnvironmentWithLiterals = WixDataEnvironment | 'LIVE' | 'SANDBOX';
884
+ /** Filter and field selection query. */
885
+ interface FilterQuery {
886
+ /**
887
+ * Filter to apply to the items. Only items that pass the filter are moved.
888
+ *
889
+ * Learn more about building a query filter using [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
890
+ */
891
+ filter?: Record<string, any> | null;
892
+ /** Item fields to move. If not set, the method moves the full items. */
893
+ fields?: string[];
894
+ }
895
+ interface AggregationQuery {
896
+ /** Aggregation pipeline to run on the collection. */
897
+ aggregationPipeline?: AggregationPipeline;
898
+ /**
899
+ * Fields, will be used to map aggregation pipeline result to export result.
900
+ * Fields in the aggregation pipeline results that are not in the provided list will be ignored.
901
+ * If no fields provided, data will be exported as is, without transformation or field name mapping.
902
+ * @maxSize 1000
903
+ */
904
+ fields?: V1Field[];
905
+ }
843
906
  declare enum FileFormat {
844
907
  /** Unknown format. */
845
908
  UNKNOWN = "UNKNOWN",
@@ -869,7 +932,7 @@ interface WixDataSource extends WixDataSourceQueryOneOf {
869
932
  /** Filter and field selection to apply to the collection items. */
870
933
  filterQuery?: FilterQuery;
871
934
  /** Aggregation pipeline to run on the collection. */
872
- aggregationPipeline?: AggregationPipeline;
935
+ aggregationQuery?: AggregationQuery;
873
936
  /**
874
937
  * ID of the data collection.
875
938
  * @minLength 1
@@ -899,7 +962,7 @@ interface WixDataSourceQueryOneOf {
899
962
  /** Filter and field selection to apply to the collection items. */
900
963
  filterQuery?: FilterQuery;
901
964
  /** Aggregation pipeline to run on the collection. */
902
- aggregationPipeline?: AggregationPipeline;
965
+ aggregationQuery?: AggregationQuery;
903
966
  }
904
967
  interface LocalizationSource {
905
968
  /**
@@ -1098,58 +1161,6 @@ interface Schema {
1098
1161
  */
1099
1162
  fields?: V1Field[];
1100
1163
  }
1101
- interface V1Field {
1102
- /**
1103
- * Field ID.
1104
- *
1105
- * If the field type is `Array`, specify the item index. If the field type is `Object`, specify the field path. Use dot notation to specify nested fields, for example: `data.address.city`.
1106
- * @maxLength 1024
1107
- */
1108
- key?: string;
1109
- /**
1110
- * Field display name.
1111
- *
1112
- * When moving items to CSV files, use this to set the header of the target column.
1113
- * @maxLength 1024
1114
- */
1115
- displayName?: string;
1116
- /**
1117
- * Field data type. Default: `ANY`.
1118
- *
1119
- * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).
1120
- */
1121
- fieldType?: FieldTypeWithLiterals;
1122
- }
1123
- declare enum FieldType {
1124
- /** Any data type. */
1125
- ANY = "ANY",
1126
- /** String. */
1127
- STRING = "STRING",
1128
- /** Number. */
1129
- NUMBER = "NUMBER",
1130
- /** Boolean. */
1131
- BOOLEAN = "BOOLEAN",
1132
- /** Date string in ISO 8601 date format: `YYYY-MM-DD`. */
1133
- DATE = "DATE",
1134
- /** [Date object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) (SDK) or an object in the following format: `"someFieldKey": { "$date": "YYYY-MM-DDTHH:mm:ss.sssZ"}`. */
1135
- DATETIME = "DATETIME",
1136
- /** Binary file. */
1137
- BINARY = "BINARY",
1138
- /** object. */
1139
- OBJECT = "OBJECT",
1140
- /** Array. */
1141
- ARRAY = "ARRAY",
1142
- /** Web URL. */
1143
- URL = "URL",
1144
- WIX_MEDIA_URL = "WIX_MEDIA_URL",
1145
- WIX_MEDIA_IMAGE_URL = "WIX_MEDIA_IMAGE_URL",
1146
- WIX_MEDIA_VIDEO_URL = "WIX_MEDIA_VIDEO_URL",
1147
- WIX_MEDIA_DOCUMENT_URL = "WIX_MEDIA_DOCUMENT_URL",
1148
- IMAGE_URL = "IMAGE_URL",
1149
- VIDEO_URL = "VIDEO_URL"
1150
- }
1151
- /** @enumType */
1152
- type FieldTypeWithLiterals = FieldType | 'ANY' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'DATE' | 'DATETIME' | 'BINARY' | 'OBJECT' | 'ARRAY' | 'URL' | 'WIX_MEDIA_URL' | 'WIX_MEDIA_IMAGE_URL' | 'WIX_MEDIA_VIDEO_URL' | 'WIX_MEDIA_DOCUMENT_URL' | 'IMAGE_URL' | 'VIDEO_URL';
1153
1164
  interface StoresCatalogProductsDestination {
1154
1165
  }
1155
1166
  /** Wix Media Manager destination. */
@@ -1721,4 +1732,4 @@ interface ListScheduledDataWorkflowsOptions {
1721
1732
  filter?: Record<string, any> | null;
1722
1733
  }
1723
1734
 
1724
- export { type AbsOperation, type AccountInfo, type AccountInfoMetadata, type Accumulator, type AccumulatorExpressionOneOf, type ActionEvent, type AddField, type AddFields, type AddOperation, type AggregationPipeline, type AggregationPipelinePagingMethodOneOf, type Avg, type BaseEventMetadata, type CeilOperation, type CommonCursorPaging, type CommonSorting, type ConcatOperation, type ConditionOperation, type CreateScheduledDataWorkflowOptions, type CreateScheduledDataWorkflowRequest, type CreateScheduledDataWorkflowResponse, type CursorPaging, type CursorPagingMetadata, type Cursors, type DataMovementJobLogs, type DeleteScheduledDataWorkflowRequest, type DeleteScheduledDataWorkflowResponse, type Destination, type DestinationDestinationOneOf, type DivideOperation, type DomainEvent, type DomainEventBodyOneOf, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type Exclude, type Expression, type ExpressionValueOneOf, type ExternalFileSource, type Field, type FieldProjectionOneOf, FieldType, type FieldTypeWithLiterals, Fields, type FieldsWithLiterals, type FileDestination, FileFormat, type FileFormatWithLiterals, type FileSource, type FilterQuery, type First, type FloorOperation, type GetScheduledDataWorkflowOptions, type GetScheduledDataWorkflowRequest, type GetScheduledDataWorkflowResponse, type GoogleSheetsSource, type GreaterThanOperation, type Group, type GroupId, type IdentificationData, type IdentificationDataIdOneOf, type Include, type JobSpec, type JobSpecSiteOverrideOneOf, type JobsCreatedEnvelope, type JobsDeletedEnvelope, type JobsUpdatedEnvelope, type Last, type LengthOperation, type ListScheduledDataWorkflowsOptions, type ListScheduledDataWorkflowsRequest, type ListScheduledDataWorkflowsResponse, type LocalizationDestination, type LocalizationSource, type Lookup, type Max, MediaType, type MediaTypeWithLiterals, type MessageEnvelope, type Min, type ModOperation, type MultiplyOperation, type ObjectToArray, type Paging, type ProjectNested, type Projection, type Push, type RescheduleScheduledDataWorkflowOptions, type RescheduleScheduledDataWorkflowRequest, type RescheduleScheduledDataWorkflowResponse, type Reshape, type RestoreInfo, type ScheduledDataWorkflow, type ScheduledDataWorkflowSpec, type Schema, type SizeOperation, SortOrder, type SortOrderWithLiterals, type Sorting, type Source, type SourceSourceOneOf, type Stage, type StageStageOneOf, type StoresCatalogInventoryDestination, type StoresCatalogProductsDestination, type StringifyOperation, type SubstringOperation, type SubtractOperation, type Sum, type SumOperation, type TestDestination, type TestSource, type TestTransformation, type ToLowerOperation, type ToUpperOperation, type Transformation, type TransformationTransformationOneOf, type TriggerScheduledDataWorkflowNowRequest, type TriggerScheduledDataWorkflowNowResponse, type UnionWith, type UnwindArray, type UpdateScheduledDataWorkflowOptions, type UpdateScheduledDataWorkflowRequest, type UpdateScheduledDataWorkflowResponse, type V1Field, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixDataCollectionDefinitionDestination, type WixDataCollectionDefinitionSource, type WixDataDestination, WixDataDestinationWritePolicy, type WixDataDestinationWritePolicyWithLiterals, WixDataEnvironment, type WixDataEnvironmentWithLiterals, type WixDataSource, type WixDataSourceQueryOneOf, type WixMediaDestination, WixMediaDestinationWritePolicy, type WixMediaDestinationWritePolicyWithLiterals, type WixMediaSource, WritePolicy, type WritePolicyWithLiterals, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, onJobsCreated, onJobsDeleted, onJobsUpdated, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
1735
+ export { type AbsOperation, type AccountInfo, type AccountInfoMetadata, type Accumulator, type AccumulatorExpressionOneOf, type ActionEvent, type AddField, type AddFields, type AddOperation, type AggregationPipeline, type AggregationPipelinePagingMethodOneOf, type AggregationQuery, type Avg, type BaseEventMetadata, type CeilOperation, type CommonCursorPaging, type CommonSorting, type ConcatOperation, type ConditionOperation, type CreateScheduledDataWorkflowOptions, type CreateScheduledDataWorkflowRequest, type CreateScheduledDataWorkflowResponse, type CursorPaging, type CursorPagingMetadata, type Cursors, type DataMovementJobLogs, type DeleteScheduledDataWorkflowRequest, type DeleteScheduledDataWorkflowResponse, type Destination, type DestinationDestinationOneOf, type DivideOperation, type DomainEvent, type DomainEventBodyOneOf, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type Exclude, type Expression, type ExpressionValueOneOf, type ExternalFileSource, type Field, type FieldProjectionOneOf, FieldType, type FieldTypeWithLiterals, Fields, type FieldsWithLiterals, type FileDestination, FileFormat, type FileFormatWithLiterals, type FileSource, type FilterQuery, type First, type FloorOperation, type GetScheduledDataWorkflowOptions, type GetScheduledDataWorkflowRequest, type GetScheduledDataWorkflowResponse, type GoogleSheetsSource, type GreaterThanOperation, type Group, type GroupId, type IdentificationData, type IdentificationDataIdOneOf, type Include, type JobSpec, type JobSpecSiteOverrideOneOf, type JobsCreatedEnvelope, type JobsDeletedEnvelope, type JobsUpdatedEnvelope, type Last, type LengthOperation, type ListScheduledDataWorkflowsOptions, type ListScheduledDataWorkflowsRequest, type ListScheduledDataWorkflowsResponse, type LocalizationDestination, type LocalizationSource, type Lookup, type Max, MediaType, type MediaTypeWithLiterals, type MessageEnvelope, type Min, type ModOperation, type MultiplyOperation, type ObjectToArray, type Paging, type ProjectNested, type Projection, type Push, type RescheduleScheduledDataWorkflowOptions, type RescheduleScheduledDataWorkflowRequest, type RescheduleScheduledDataWorkflowResponse, type Reshape, type RestoreInfo, type ScheduledDataWorkflow, type ScheduledDataWorkflowSpec, type Schema, type SizeOperation, SortOrder, type SortOrderWithLiterals, type Sorting, type Source, type SourceSourceOneOf, type Stage, type StageStageOneOf, type StoresCatalogInventoryDestination, type StoresCatalogProductsDestination, type StringifyOperation, type SubstringOperation, type SubtractOperation, type Sum, type SumOperation, type TestDestination, type TestSource, type TestTransformation, type ToLowerOperation, type ToUpperOperation, type Transformation, type TransformationTransformationOneOf, type TriggerScheduledDataWorkflowNowRequest, type TriggerScheduledDataWorkflowNowResponse, type UnionWith, type UnwindArray, type UpdateScheduledDataWorkflowOptions, type UpdateScheduledDataWorkflowRequest, type UpdateScheduledDataWorkflowResponse, type V1Field, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixDataCollectionDefinitionDestination, type WixDataCollectionDefinitionSource, type WixDataDestination, WixDataDestinationWritePolicy, type WixDataDestinationWritePolicyWithLiterals, WixDataEnvironment, type WixDataEnvironmentWithLiterals, type WixDataSource, type WixDataSourceQueryOneOf, type WixMediaDestination, WixMediaDestinationWritePolicy, type WixMediaDestinationWritePolicyWithLiterals, type WixMediaSource, WritePolicy, type WritePolicyWithLiterals, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, onJobsCreated, onJobsDeleted, onJobsUpdated, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
@@ -76,34 +76,34 @@ function createScheduledDataWorkflow(payload) {
76
76
  transformFn: transformSDKFloatToRESTFloat,
77
77
  paths: [
78
78
  {
79
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
79
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
80
80
  },
81
81
  {
82
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
82
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
83
83
  },
84
84
  {
85
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
85
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
86
86
  },
87
87
  {
88
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
88
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
89
89
  },
90
90
  {
91
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
91
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
92
92
  },
93
93
  {
94
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
94
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
95
95
  },
96
96
  {
97
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
97
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
98
98
  },
99
99
  {
100
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
100
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
101
101
  },
102
102
  {
103
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
103
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
104
104
  },
105
105
  {
106
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
106
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
107
107
  }
108
108
  ]
109
109
  }
@@ -134,34 +134,34 @@ function createScheduledDataWorkflow(payload) {
134
134
  transformFn: transformRESTFloatToSDKFloat,
135
135
  paths: [
136
136
  {
137
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
137
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
138
138
  },
139
139
  {
140
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
140
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
141
141
  },
142
142
  {
143
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
143
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
144
144
  },
145
145
  {
146
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
146
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
147
147
  },
148
148
  {
149
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
149
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
150
150
  },
151
151
  {
152
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
152
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
153
153
  },
154
154
  {
155
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
155
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
156
156
  },
157
157
  {
158
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
158
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
159
159
  },
160
160
  {
161
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
161
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
162
162
  },
163
163
  {
164
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
164
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
165
165
  }
166
166
  ]
167
167
  }
@@ -237,34 +237,34 @@ function updateScheduledDataWorkflow(payload) {
237
237
  transformFn: transformSDKFloatToRESTFloat,
238
238
  paths: [
239
239
  {
240
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
240
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
241
241
  },
242
242
  {
243
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
243
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
244
244
  },
245
245
  {
246
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
246
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
247
247
  },
248
248
  {
249
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
249
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
250
250
  },
251
251
  {
252
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
252
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
253
253
  },
254
254
  {
255
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
255
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
256
256
  },
257
257
  {
258
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
258
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
259
259
  },
260
260
  {
261
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
261
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
262
262
  },
263
263
  {
264
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
264
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
265
265
  },
266
266
  {
267
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
267
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
268
268
  }
269
269
  ]
270
270
  }
@@ -295,34 +295,34 @@ function updateScheduledDataWorkflow(payload) {
295
295
  transformFn: transformRESTFloatToSDKFloat,
296
296
  paths: [
297
297
  {
298
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
298
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
299
299
  },
300
300
  {
301
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
301
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
302
302
  },
303
303
  {
304
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
304
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
305
305
  },
306
306
  {
307
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
307
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
308
308
  },
309
309
  {
310
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
310
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
311
311
  },
312
312
  {
313
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
313
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
314
314
  },
315
315
  {
316
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
316
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
317
317
  },
318
318
  {
319
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
319
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
320
320
  },
321
321
  {
322
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
322
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
323
323
  },
324
324
  {
325
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
325
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
326
326
  }
327
327
  ]
328
328
  }
@@ -381,34 +381,34 @@ function getScheduledDataWorkflow(payload) {
381
381
  transformFn: transformRESTFloatToSDKFloat,
382
382
  paths: [
383
383
  {
384
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
384
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
385
385
  },
386
386
  {
387
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
387
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
388
388
  },
389
389
  {
390
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
390
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
391
391
  },
392
392
  {
393
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
393
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
394
394
  },
395
395
  {
396
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
396
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
397
397
  },
398
398
  {
399
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
399
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
400
400
  },
401
401
  {
402
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
402
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
403
403
  },
404
404
  {
405
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
405
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
406
406
  },
407
407
  {
408
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
408
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
409
409
  },
410
410
  {
411
- path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
411
+ path: "scheduledDataWorkflow.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
412
412
  }
413
413
  ]
414
414
  }
@@ -446,34 +446,34 @@ function listScheduledDataWorkflows(payload) {
446
446
  transformFn: transformRESTFloatToSDKFloat,
447
447
  paths: [
448
448
  {
449
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.groupIds.expression.numeric"
449
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.groupIds.expression.numeric"
450
450
  },
451
451
  {
452
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
452
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.avg.expression.numeric"
453
453
  },
454
454
  {
455
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
455
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.min.expression.numeric"
456
456
  },
457
457
  {
458
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
458
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.max.expression.numeric"
459
459
  },
460
460
  {
461
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
461
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.sum.expression.numeric"
462
462
  },
463
463
  {
464
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
464
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.first.expression.numeric"
465
465
  },
466
466
  {
467
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
467
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.last.expression.numeric"
468
468
  },
469
469
  {
470
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
470
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.group.accumulators.push.expression.numeric"
471
471
  },
472
472
  {
473
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
473
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.projection.fields.reshape.expression.numeric"
474
474
  },
475
475
  {
476
- path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationPipeline.stages.addFields.fields.expression.numeric"
476
+ path: "scheduledDataWorkflows.workflow.steps.source.wixDataCollection.aggregationQuery.aggregationPipeline.stages.addFields.fields.expression.numeric"
477
477
  }
478
478
  ]
479
479
  }
@@ -485,16 +485,35 @@ function listScheduledDataWorkflows(payload) {
485
485
  }
486
486
 
487
487
  // src/data-sync-v1-jobs-scheduled-workflows.universal.ts
488
- var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
489
- WixDataEnvironment2["LIVE"] = "LIVE";
490
- WixDataEnvironment2["SANDBOX"] = "SANDBOX";
491
- return WixDataEnvironment2;
492
- })(WixDataEnvironment || {});
493
488
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
494
489
  SortOrder2["ASC"] = "ASC";
495
490
  SortOrder2["DESC"] = "DESC";
496
491
  return SortOrder2;
497
492
  })(SortOrder || {});
493
+ var FieldType = /* @__PURE__ */ ((FieldType2) => {
494
+ FieldType2["ANY"] = "ANY";
495
+ FieldType2["STRING"] = "STRING";
496
+ FieldType2["NUMBER"] = "NUMBER";
497
+ FieldType2["BOOLEAN"] = "BOOLEAN";
498
+ FieldType2["DATE"] = "DATE";
499
+ FieldType2["DATETIME"] = "DATETIME";
500
+ FieldType2["BINARY"] = "BINARY";
501
+ FieldType2["OBJECT"] = "OBJECT";
502
+ FieldType2["ARRAY"] = "ARRAY";
503
+ FieldType2["URL"] = "URL";
504
+ FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
505
+ FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
506
+ FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
507
+ FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
508
+ FieldType2["IMAGE_URL"] = "IMAGE_URL";
509
+ FieldType2["VIDEO_URL"] = "VIDEO_URL";
510
+ return FieldType2;
511
+ })(FieldType || {});
512
+ var WixDataEnvironment = /* @__PURE__ */ ((WixDataEnvironment2) => {
513
+ WixDataEnvironment2["LIVE"] = "LIVE";
514
+ WixDataEnvironment2["SANDBOX"] = "SANDBOX";
515
+ return WixDataEnvironment2;
516
+ })(WixDataEnvironment || {});
498
517
  var FileFormat = /* @__PURE__ */ ((FileFormat2) => {
499
518
  FileFormat2["UNKNOWN"] = "UNKNOWN";
500
519
  FileFormat2["CSV"] = "CSV";
@@ -515,25 +534,6 @@ var WixDataDestinationWritePolicy = /* @__PURE__ */ ((WixDataDestinationWritePol
515
534
  WixDataDestinationWritePolicy2["TRUNCATE_BEFORE"] = "TRUNCATE_BEFORE";
516
535
  return WixDataDestinationWritePolicy2;
517
536
  })(WixDataDestinationWritePolicy || {});
518
- var FieldType = /* @__PURE__ */ ((FieldType2) => {
519
- FieldType2["ANY"] = "ANY";
520
- FieldType2["STRING"] = "STRING";
521
- FieldType2["NUMBER"] = "NUMBER";
522
- FieldType2["BOOLEAN"] = "BOOLEAN";
523
- FieldType2["DATE"] = "DATE";
524
- FieldType2["DATETIME"] = "DATETIME";
525
- FieldType2["BINARY"] = "BINARY";
526
- FieldType2["OBJECT"] = "OBJECT";
527
- FieldType2["ARRAY"] = "ARRAY";
528
- FieldType2["URL"] = "URL";
529
- FieldType2["WIX_MEDIA_URL"] = "WIX_MEDIA_URL";
530
- FieldType2["WIX_MEDIA_IMAGE_URL"] = "WIX_MEDIA_IMAGE_URL";
531
- FieldType2["WIX_MEDIA_VIDEO_URL"] = "WIX_MEDIA_VIDEO_URL";
532
- FieldType2["WIX_MEDIA_DOCUMENT_URL"] = "WIX_MEDIA_DOCUMENT_URL";
533
- FieldType2["IMAGE_URL"] = "IMAGE_URL";
534
- FieldType2["VIDEO_URL"] = "VIDEO_URL";
535
- return FieldType2;
536
- })(FieldType || {});
537
537
  var WixMediaDestinationWritePolicy = /* @__PURE__ */ ((WixMediaDestinationWritePolicy2) => {
538
538
  WixMediaDestinationWritePolicy2["OVERWRITE"] = "OVERWRITE";
539
539
  WixMediaDestinationWritePolicy2["SKIP_EXISTING"] = "SKIP_EXISTING";