@wix/auto_sdk_export-async-job_export-async-job 1.0.7 → 1.0.9

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.
package/build/cjs/meta.js CHANGED
@@ -20,6 +20,18 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // meta.ts
21
21
  var meta_exports = {};
22
22
  __export(meta_exports, {
23
+ ArrayFieldDelimiterOriginal: () => ArrayFieldDelimiter,
24
+ DiscountTypeOriginal: () => DiscountType,
25
+ FileTypeOriginal: () => FileType,
26
+ InventoryStatusOriginal: () => InventoryStatus,
27
+ MeasurementUnitOriginal: () => MeasurementUnit,
28
+ MediaItemTypeOriginal: () => MediaItemType,
29
+ OptionTypeOriginal: () => OptionType,
30
+ ProductTypeOriginal: () => ProductType,
31
+ QueryFieldNumberOriginal: () => QueryFieldNumber,
32
+ RuleTypeOriginal: () => RuleType,
33
+ SortOrderOriginal: () => SortOrder,
34
+ StatusOriginal: () => Status,
23
35
  createExportAsyncJob: () => createExportAsyncJob2,
24
36
  getExportAsyncJob: () => getExportAsyncJob2
25
37
  });
@@ -127,6 +139,130 @@ function getExportAsyncJob(payload) {
127
139
  return __getExportAsyncJob;
128
140
  }
129
141
 
142
+ // src/fedinfra-exportservice-v1-export-async-job-export-async-job.types.ts
143
+ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
144
+ SortOrder2["ASC"] = "ASC";
145
+ SortOrder2["DESC"] = "DESC";
146
+ return SortOrder2;
147
+ })(SortOrder || {});
148
+ var ArrayFieldDelimiter = /* @__PURE__ */ ((ArrayFieldDelimiter2) => {
149
+ ArrayFieldDelimiter2["SEMICOLON"] = "SEMICOLON";
150
+ ArrayFieldDelimiter2["SEMICOLON_AND_SPACE"] = "SEMICOLON_AND_SPACE";
151
+ return ArrayFieldDelimiter2;
152
+ })(ArrayFieldDelimiter || {});
153
+ var QueryFieldNumber = /* @__PURE__ */ ((QueryFieldNumber2) => {
154
+ QueryFieldNumber2["DEFAULT"] = "DEFAULT";
155
+ QueryFieldNumber2["FIELD_2"] = "FIELD_2";
156
+ QueryFieldNumber2["FIELD_3"] = "FIELD_3";
157
+ QueryFieldNumber2["FIELD_4"] = "FIELD_4";
158
+ QueryFieldNumber2["FIELD_5"] = "FIELD_5";
159
+ QueryFieldNumber2["FIELD_6"] = "FIELD_6";
160
+ QueryFieldNumber2["FIELD_7"] = "FIELD_7";
161
+ QueryFieldNumber2["FIELD_8"] = "FIELD_8";
162
+ QueryFieldNumber2["FIELD_9"] = "FIELD_9";
163
+ return QueryFieldNumber2;
164
+ })(QueryFieldNumber || {});
165
+ var RuleType = /* @__PURE__ */ ((RuleType2) => {
166
+ RuleType2["VALIDATION"] = "VALIDATION";
167
+ RuleType2["OTHER"] = "OTHER";
168
+ RuleType2["MAX"] = "MAX";
169
+ RuleType2["MIN"] = "MIN";
170
+ RuleType2["MAX_LENGTH"] = "MAX_LENGTH";
171
+ RuleType2["MIN_LENGTH"] = "MIN_LENGTH";
172
+ RuleType2["MAX_SIZE"] = "MAX_SIZE";
173
+ RuleType2["MIN_SIZE"] = "MIN_SIZE";
174
+ RuleType2["FORMAT"] = "FORMAT";
175
+ RuleType2["DECIMAL_LTE"] = "DECIMAL_LTE";
176
+ RuleType2["DECIMAL_GTE"] = "DECIMAL_GTE";
177
+ RuleType2["DECIMAL_LT"] = "DECIMAL_LT";
178
+ RuleType2["DECIMAL_GT"] = "DECIMAL_GT";
179
+ RuleType2["DECIMAL_MAX_SCALE"] = "DECIMAL_MAX_SCALE";
180
+ RuleType2["INVALID_ENUM_VALUE"] = "INVALID_ENUM_VALUE";
181
+ RuleType2["REQUIRED_FIELD"] = "REQUIRED_FIELD";
182
+ RuleType2["FIELD_NOT_ALLOWED"] = "FIELD_NOT_ALLOWED";
183
+ RuleType2["ONE_OF_ALIGNMENT"] = "ONE_OF_ALIGNMENT";
184
+ RuleType2["EXACT_LENGTH"] = "EXACT_LENGTH";
185
+ RuleType2["EXACT_SIZE"] = "EXACT_SIZE";
186
+ RuleType2["REQUIRED_ONE_OF_FIELD"] = "REQUIRED_ONE_OF_FIELD";
187
+ return RuleType2;
188
+ })(RuleType || {});
189
+ var Status = /* @__PURE__ */ ((Status2) => {
190
+ Status2["UNKNOWN"] = "UNKNOWN";
191
+ Status2["INITIALIZED"] = "INITIALIZED";
192
+ Status2["PROCESSING"] = "PROCESSING";
193
+ Status2["FINISHED"] = "FINISHED";
194
+ Status2["FAILED"] = "FAILED";
195
+ return Status2;
196
+ })(Status || {});
197
+ var ProductType = /* @__PURE__ */ ((ProductType2) => {
198
+ ProductType2["unspecified_product_type"] = "unspecified_product_type";
199
+ ProductType2["physical"] = "physical";
200
+ ProductType2["digital"] = "digital";
201
+ return ProductType2;
202
+ })(ProductType || {});
203
+ var InventoryStatus = /* @__PURE__ */ ((InventoryStatus2) => {
204
+ InventoryStatus2["IN_STOCK"] = "IN_STOCK";
205
+ InventoryStatus2["OUT_OF_STOCK"] = "OUT_OF_STOCK";
206
+ InventoryStatus2["PARTIALLY_OUT_OF_STOCK"] = "PARTIALLY_OUT_OF_STOCK";
207
+ return InventoryStatus2;
208
+ })(InventoryStatus || {});
209
+ var MeasurementUnit = /* @__PURE__ */ ((MeasurementUnit2) => {
210
+ MeasurementUnit2["UNSPECIFIED"] = "UNSPECIFIED";
211
+ MeasurementUnit2["ML"] = "ML";
212
+ MeasurementUnit2["CL"] = "CL";
213
+ MeasurementUnit2["L"] = "L";
214
+ MeasurementUnit2["CBM"] = "CBM";
215
+ MeasurementUnit2["MG"] = "MG";
216
+ MeasurementUnit2["G"] = "G";
217
+ MeasurementUnit2["KG"] = "KG";
218
+ MeasurementUnit2["MM"] = "MM";
219
+ MeasurementUnit2["CM"] = "CM";
220
+ MeasurementUnit2["M"] = "M";
221
+ MeasurementUnit2["SQM"] = "SQM";
222
+ MeasurementUnit2["OZ"] = "OZ";
223
+ MeasurementUnit2["LB"] = "LB";
224
+ MeasurementUnit2["FLOZ"] = "FLOZ";
225
+ MeasurementUnit2["PT"] = "PT";
226
+ MeasurementUnit2["QT"] = "QT";
227
+ MeasurementUnit2["GAL"] = "GAL";
228
+ MeasurementUnit2["IN"] = "IN";
229
+ MeasurementUnit2["FT"] = "FT";
230
+ MeasurementUnit2["YD"] = "YD";
231
+ MeasurementUnit2["SQFT"] = "SQFT";
232
+ return MeasurementUnit2;
233
+ })(MeasurementUnit || {});
234
+ var MediaItemType = /* @__PURE__ */ ((MediaItemType2) => {
235
+ MediaItemType2["unspecified_media_item_type"] = "unspecified_media_item_type";
236
+ MediaItemType2["image"] = "image";
237
+ MediaItemType2["video"] = "video";
238
+ MediaItemType2["audio"] = "audio";
239
+ MediaItemType2["document"] = "document";
240
+ MediaItemType2["zip"] = "zip";
241
+ return MediaItemType2;
242
+ })(MediaItemType || {});
243
+ var OptionType = /* @__PURE__ */ ((OptionType2) => {
244
+ OptionType2["unspecified_option_type"] = "unspecified_option_type";
245
+ OptionType2["drop_down"] = "drop_down";
246
+ OptionType2["color"] = "color";
247
+ return OptionType2;
248
+ })(OptionType || {});
249
+ var DiscountType = /* @__PURE__ */ ((DiscountType2) => {
250
+ DiscountType2["UNDEFINED"] = "UNDEFINED";
251
+ DiscountType2["NONE"] = "NONE";
252
+ DiscountType2["AMOUNT"] = "AMOUNT";
253
+ DiscountType2["PERCENT"] = "PERCENT";
254
+ return DiscountType2;
255
+ })(DiscountType || {});
256
+ var FileType = /* @__PURE__ */ ((FileType2) => {
257
+ FileType2["UNSPECIFIED"] = "UNSPECIFIED";
258
+ FileType2["SECURE_PICTURE"] = "SECURE_PICTURE";
259
+ FileType2["SECURE_VIDEO"] = "SECURE_VIDEO";
260
+ FileType2["SECURE_DOCUMENT"] = "SECURE_DOCUMENT";
261
+ FileType2["SECURE_MUSIC"] = "SECURE_MUSIC";
262
+ FileType2["SECURE_ARCHIVE"] = "SECURE_ARCHIVE";
263
+ return FileType2;
264
+ })(FileType || {});
265
+
130
266
  // src/fedinfra-exportservice-v1-export-async-job-export-async-job.meta.ts
131
267
  function createExportAsyncJob2() {
132
268
  const payload = {};
@@ -170,6 +306,18 @@ function getExportAsyncJob2() {
170
306
  }
171
307
  // Annotate the CommonJS export names for ESM import in node:
172
308
  0 && (module.exports = {
309
+ ArrayFieldDelimiterOriginal,
310
+ DiscountTypeOriginal,
311
+ FileTypeOriginal,
312
+ InventoryStatusOriginal,
313
+ MeasurementUnitOriginal,
314
+ MediaItemTypeOriginal,
315
+ OptionTypeOriginal,
316
+ ProductTypeOriginal,
317
+ QueryFieldNumberOriginal,
318
+ RuleTypeOriginal,
319
+ SortOrderOriginal,
320
+ StatusOriginal,
173
321
  createExportAsyncJob,
174
322
  getExportAsyncJob
175
323
  });
@@ -1 +1 @@
1
- {"version":3,"sources":["../../meta.ts","../../src/fedinfra-exportservice-v1-export-async-job-export-async-job.http.ts","../../src/fedinfra-exportservice-v1-export-async-job-export-async-job.meta.ts"],"sourcesContent":["export * from './src/fedinfra-exportservice-v1-export-async-job-export-async-job.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixFedinfraExportserviceV1ExportServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'bo._base_domain_': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'wixbo.ai': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'wix-bo.com': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'dev._base_domain_': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'platform.rise.ai': [\n {\n srcPath: '/_api/export-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_export-async-job_export-async-job';\n\n/** Creates a new Export */\nexport function createExportAsyncJob(\n payload: object\n): RequestOptionsFactory<any> {\n function __createExportAsyncJob({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.fedinfra.exportservice.v1.export_async_job',\n method: 'POST' as any,\n methodFqn:\n 'wix.fedinfra.exportservice.v1.ExportService.CreateExportAsyncJob',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixFedinfraExportserviceV1ExportServiceUrl({\n protoPath: '/v1/export-async-job',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'job.createDate' }, { path: 'job.updateDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createExportAsyncJob;\n}\n\n/** Get a Export by id */\nexport function getExportAsyncJob(payload: object): RequestOptionsFactory<any> {\n function __getExportAsyncJob({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.fedinfra.exportservice.v1.export_async_job',\n method: 'GET' as any,\n methodFqn:\n 'wix.fedinfra.exportservice.v1.ExportService.GetExportAsyncJob',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixFedinfraExportserviceV1ExportServiceUrl({\n protoPath: '/v1/export-async-job/{jobId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'job.createDate' }, { path: 'job.updateDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getExportAsyncJob;\n}\n","import * as ambassadorWixFedinfraExportserviceV1ExportAsyncJob from './fedinfra-exportservice-v1-export-async-job-export-async-job.http.js';\nimport * as ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes from './fedinfra-exportservice-v1-export-async-job-export-async-job.types.js';\nimport * as ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes from './fedinfra-exportservice-v1-export-async-job-export-async-job.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function createExportAsyncJob(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.CreateExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.CreateExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.CreateExportAsyncJobResponse,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.CreateExportAsyncJobResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixFedinfraExportserviceV1ExportAsyncJob.createExportAsyncJob(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/export-async-job',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function getExportAsyncJob(): __PublicMethodMetaInfo<\n 'GET',\n { jobId: string },\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.GetExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.GetExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.GetExportAsyncJobResponse,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.GetExportAsyncJobResponse\n> {\n const payload = { jobId: ':jobId' } as any;\n\n const getRequestOptions =\n ambassadorWixFedinfraExportserviceV1ExportAsyncJob.getExportAsyncJob(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/export-async-job/{jobId}',\n pathParams: { jobId: 'jobId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n"],"mappings":"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","names":["createExportAsyncJob","getExportAsyncJob","import_rest_modules","payload","createExportAsyncJob","getExportAsyncJob"]}
1
+ {"version":3,"sources":["../../meta.ts","../../src/fedinfra-exportservice-v1-export-async-job-export-async-job.http.ts","../../src/fedinfra-exportservice-v1-export-async-job-export-async-job.types.ts","../../src/fedinfra-exportservice-v1-export-async-job-export-async-job.meta.ts"],"sourcesContent":["export * from './src/fedinfra-exportservice-v1-export-async-job-export-async-job.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixFedinfraExportserviceV1ExportServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'bo._base_domain_': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'wixbo.ai': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'wix-bo.com': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'dev._base_domain_': [\n {\n srcPath: '/export-service',\n destPath: '',\n },\n ],\n 'platform.rise.ai': [\n {\n srcPath: '/_api/export-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_export-async-job_export-async-job';\n\n/** Creates a new Export */\nexport function createExportAsyncJob(\n payload: object\n): RequestOptionsFactory<any> {\n function __createExportAsyncJob({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.fedinfra.exportservice.v1.export_async_job',\n method: 'POST' as any,\n methodFqn:\n 'wix.fedinfra.exportservice.v1.ExportService.CreateExportAsyncJob',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixFedinfraExportserviceV1ExportServiceUrl({\n protoPath: '/v1/export-async-job',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'job.createDate' }, { path: 'job.updateDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createExportAsyncJob;\n}\n\n/** Get a Export by id */\nexport function getExportAsyncJob(payload: object): RequestOptionsFactory<any> {\n function __getExportAsyncJob({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.fedinfra.exportservice.v1.export_async_job',\n method: 'GET' as any,\n methodFqn:\n 'wix.fedinfra.exportservice.v1.ExportService.GetExportAsyncJob',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixFedinfraExportserviceV1ExportServiceUrl({\n protoPath: '/v1/export-async-job/{jobId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'job.createDate' }, { path: 'job.updateDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getExportAsyncJob;\n}\n","export interface ExportAsyncJob {\n /**\n * @format GUID\n * @readonly\n */\n id?: string;\n data?: ExportAsyncJobData;\n status?: StatusWithLiterals;\n /** @readonly */\n createDate?: Date | null;\n /** @readonly */\n updateDate?: Date | null;\n}\n\nexport interface ExportAsyncJobData {\n /** original request data for the export */\n query?: ExportQueryV2;\n /** translated CSV headers */\n fields?: FieldDescriptor[];\n arrayFieldDelimiter?: ArrayFieldDelimiterWithLiterals;\n /** The target method to query data from */\n methodMetadata?: MethodMetadata;\n /** Custom spec for the target method's request/response */\n methodSpec?: MethodSpec;\n userId?: string;\n subDir?: string | null;\n format?: string;\n uploadId?: string;\n /** @maxLength 255 */\n saveAs?: string | null;\n /** the progress of fetching all data update during the process multiple times */\n pagingMetadata?: PagingMetadataV2;\n iterationsCount?: number;\n processedItemsCount?: number;\n completionStep?: string | null;\n /** how many times the export was reset */\n resetCount?: number;\n /** at final step update the signed_url to download the result from */\n signedUrl?: string;\n /** when failed during the process update the error details */\n error?: Details;\n testParams?: Record<string, any> | null;\n}\n\nexport interface ExportQueryV2 extends ExportQueryV2PagingMethodOneOf {\n /** Paging options to limit and skip the number of items. */\n paging?: Paging;\n /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */\n cursorPaging?: ExportCursorPaging;\n /**\n * Filter object in the following format:\n * `\"filter\" : {\n * \"fieldName1\": \"value1\",\n * \"fieldName2\":{\"$operator\":\"value2\"}\n * }`\n * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`\n */\n filter?: Record<string, any> | null;\n /**\n * Sort object in the following format:\n * `[{\"fieldName\":\"sortField1\",\"order\":\"ASC\"},{\"fieldName\":\"sortField2\",\"order\":\"DESC\"}]`\n */\n sort?: Sorting[];\n /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */\n fields?: string[];\n /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */\n fieldsets?: string[];\n}\n\n/** @oneof */\nexport interface ExportQueryV2PagingMethodOneOf {\n /** Paging options to limit and skip the number of items. */\n paging?: Paging;\n /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */\n cursorPaging?: ExportCursorPaging;\n}\n\nexport interface Sorting {\n /**\n * Name of the field to sort by.\n * @maxLength 512\n */\n fieldName?: string;\n /** Sort order. */\n order?: SortOrderWithLiterals;\n}\n\nexport enum SortOrder {\n ASC = 'ASC',\n DESC = 'DESC',\n}\n\n/** @enumType */\nexport type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';\n\nexport interface Paging {\n /** Number of items to load. */\n limit?: number | null;\n /** Number of items to skip in the current sort order. */\n offset?: number | null;\n}\n\nexport interface ExportCursorPaging {\n /** @max 10000 */\n limit?: number | null;\n cursor?: string | null;\n}\n\nexport interface FieldDescriptor {\n /** the path to the field out of the query response items */\n id?: string;\n /** how to present the filed in the CSV headers (translated) */\n header?: string;\n}\n\nexport enum ArrayFieldDelimiter {\n SEMICOLON = 'SEMICOLON',\n SEMICOLON_AND_SPACE = 'SEMICOLON_AND_SPACE',\n}\n\n/** @enumType */\nexport type ArrayFieldDelimiterWithLiterals =\n | ArrayFieldDelimiter\n | 'SEMICOLON'\n | 'SEMICOLON_AND_SPACE';\n\nexport interface MethodMetadata {\n artifact?: string;\n service?: string;\n method?: string;\n}\n\nexport interface MethodSpec {\n requestQueryFieldNumber?: QueryFieldNumberWithLiterals;\n responseRepeatedFieldName?: string | null;\n responsePagingMetadataFieldName?: string | null;\n}\n\nexport enum QueryFieldNumber {\n /** message QuerySomethingRequest { .wix.common.QueryV2 query = 1; } */\n DEFAULT = 'DEFAULT',\n FIELD_2 = 'FIELD_2',\n FIELD_3 = 'FIELD_3',\n FIELD_4 = 'FIELD_4',\n FIELD_5 = 'FIELD_5',\n FIELD_6 = 'FIELD_6',\n FIELD_7 = 'FIELD_7',\n /** message QuerySomethingRequest { .wix.common.QueryV2 query = 8; } */\n FIELD_8 = 'FIELD_8',\n FIELD_9 = 'FIELD_9',\n}\n\n/** @enumType */\nexport type QueryFieldNumberWithLiterals =\n | QueryFieldNumber\n | 'DEFAULT'\n | 'FIELD_2'\n | 'FIELD_3'\n | 'FIELD_4'\n | 'FIELD_5'\n | 'FIELD_6'\n | 'FIELD_7'\n | 'FIELD_8'\n | 'FIELD_9';\n\nexport interface PagingMetadataV2 {\n /** Number of items returned in the response. */\n count?: number | null;\n /** Offset that was requested. */\n offset?: number | null;\n /** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */\n total?: number | null;\n /** Flag that indicates the server failed to calculate the `total` field. */\n tooManyToCount?: boolean | null;\n /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */\n cursors?: Cursors;\n}\n\nexport interface Cursors {\n /**\n * Cursor string pointing to the next page in the list of results.\n * @maxLength 16000\n */\n next?: string | null;\n /**\n * Cursor pointing to the previous page in the list of results.\n * @maxLength 16000\n */\n prev?: string | null;\n}\n\nexport interface Details extends DetailsKindOneOf {\n applicationError?: ApplicationError;\n validationError?: ValidationError;\n systemError?: SystemError;\n /**\n * deprecated in API's - to enable migration from rendering arbitrary tracing to rest response\n * @deprecated\n */\n tracing?: Record<string, string>;\n}\n\n/** @oneof */\nexport interface DetailsKindOneOf {\n applicationError?: ApplicationError;\n validationError?: ValidationError;\n systemError?: SystemError;\n}\n\nexport interface ApplicationError {\n /** Error code. */\n code?: string;\n /** Description of the error. */\n description?: string;\n /** Data related to the error. */\n data?: Record<string, any> | null;\n}\n\n/**\n * example result:\n * {\n * \"fieldViolations\": [\n * {\n * \"field\": \"fieldA\",\n * \"description\": \"invalid music note. supported notes: [do,re,mi,fa,sol,la,ti]\",\n * \"violatedRule\": \"OTHER\",\n * \"ruleName\": \"INVALID_NOTE\",\n * \"data\": {\n * \"value\": \"FI\"\n * }\n * },\n * {\n * \"field\": \"fieldB\",\n * \"description\": \"field value out of range. supported range: [0-20]\",\n * \"violatedRule\": \"MAX\",\n * \"data\": {\n * \"threshold\": 20\n * }\n * },\n * {\n * \"field\": \"fieldC\",\n * \"description\": \"invalid phone number. provide a valid phone number of size: [7-12], supported characters: [0-9, +, -, (, )]\",\n * \"violatedRule\": \"FORMAT\",\n * \"data\": {\n * \"type\": \"PHONE\"\n * }\n * }\n * ]\n * }\n */\nexport interface ValidationError {\n fieldViolations?: FieldViolation[];\n}\n\nexport enum RuleType {\n VALIDATION = 'VALIDATION',\n OTHER = 'OTHER',\n MAX = 'MAX',\n MIN = 'MIN',\n MAX_LENGTH = 'MAX_LENGTH',\n MIN_LENGTH = 'MIN_LENGTH',\n MAX_SIZE = 'MAX_SIZE',\n MIN_SIZE = 'MIN_SIZE',\n FORMAT = 'FORMAT',\n DECIMAL_LTE = 'DECIMAL_LTE',\n DECIMAL_GTE = 'DECIMAL_GTE',\n DECIMAL_LT = 'DECIMAL_LT',\n DECIMAL_GT = 'DECIMAL_GT',\n DECIMAL_MAX_SCALE = 'DECIMAL_MAX_SCALE',\n INVALID_ENUM_VALUE = 'INVALID_ENUM_VALUE',\n REQUIRED_FIELD = 'REQUIRED_FIELD',\n FIELD_NOT_ALLOWED = 'FIELD_NOT_ALLOWED',\n ONE_OF_ALIGNMENT = 'ONE_OF_ALIGNMENT',\n EXACT_LENGTH = 'EXACT_LENGTH',\n EXACT_SIZE = 'EXACT_SIZE',\n REQUIRED_ONE_OF_FIELD = 'REQUIRED_ONE_OF_FIELD',\n}\n\n/** @enumType */\nexport type RuleTypeWithLiterals =\n | RuleType\n | 'VALIDATION'\n | 'OTHER'\n | 'MAX'\n | 'MIN'\n | 'MAX_LENGTH'\n | 'MIN_LENGTH'\n | 'MAX_SIZE'\n | 'MIN_SIZE'\n | 'FORMAT'\n | 'DECIMAL_LTE'\n | 'DECIMAL_GTE'\n | 'DECIMAL_LT'\n | 'DECIMAL_GT'\n | 'DECIMAL_MAX_SCALE'\n | 'INVALID_ENUM_VALUE'\n | 'REQUIRED_FIELD'\n | 'FIELD_NOT_ALLOWED'\n | 'ONE_OF_ALIGNMENT'\n | 'EXACT_LENGTH'\n | 'EXACT_SIZE'\n | 'REQUIRED_ONE_OF_FIELD';\n\nexport interface FieldViolation {\n field?: string;\n description?: string;\n violatedRule?: RuleTypeWithLiterals;\n /** applicable when violated_rule=OTHER */\n ruleName?: string | null;\n data?: Record<string, any> | null;\n}\n\nexport interface SystemError {\n /** Error code. */\n errorCode?: string | null;\n}\n\nexport enum Status {\n UNKNOWN = 'UNKNOWN',\n /** Job is created, but hasn't started yet. */\n INITIALIZED = 'INITIALIZED',\n /** Job has started and is in progress. */\n PROCESSING = 'PROCESSING',\n /** Job is finished. */\n FINISHED = 'FINISHED',\n /** Job has failed. */\n FAILED = 'FAILED',\n}\n\n/** @enumType */\nexport type StatusWithLiterals =\n | Status\n | 'UNKNOWN'\n | 'INITIALIZED'\n | 'PROCESSING'\n | 'FINISHED'\n | 'FAILED';\n\nexport interface CreateExportAsyncJobRequest {\n /** WQL expression */\n query: ExportQueryV2;\n /** translated CSV headers */\n fields: FieldDescriptor[];\n arrayFieldDelimiter?: ArrayFieldDelimiterWithLiterals;\n /** The target method to query data from */\n methodMetadata: MethodMetadata;\n /** The target method to query data from */\n methodSpec?: MethodSpec;\n /** @maxLength 255 */\n saveAs?: string | null;\n /** Test params */\n testParams?: Record<string, any> | null;\n}\n\nexport interface CreateExportAsyncJobResponse {\n /** The retrieved Exports */\n job?: ExportAsyncJob;\n}\n\nexport interface GetExportAsyncJobRequest {\n /**\n * Id of the Export to retrieve\n * @format GUID\n */\n jobId: string;\n}\n\nexport interface GetExportAsyncJobResponse {\n /** The retrieved ExportAsyncJob */\n job?: ExportAsyncJob;\n}\n\nexport interface CancelExportAsyncJobRequest {\n /**\n * Id of the Export to retrieve\n * @format GUID\n */\n jobId?: string;\n}\n\nexport interface CancelExportAsyncJobResponse {\n /** The retrieved ExportAsyncJob */\n job?: ExportAsyncJob;\n}\n\nexport interface GenerateExportAsyncJobDownloadUrlRequest {\n /**\n * Id of the Export to retrieve\n * @format GUID\n */\n jobId?: string;\n}\n\nexport interface GenerateExportAsyncJobDownloadUrlResponse {\n /** The retrieved ExportAsyncJob */\n job?: ExportAsyncJob;\n}\n\nexport interface QueryRequestLoose {\n /** WQL expression */\n query?: ExportQueryV2;\n}\n\nexport interface QueryVariantsExportSpiResponse {\n items?: ProductOrVariant[];\n pagingMetadata?: PagingMetadataV2;\n}\n\nexport interface ProductOrVariant {\n kind?: string;\n product?: Product;\n variant?: StoreVariant;\n}\n\nexport interface Product {\n /**\n * Product ID (generated automatically by the catalog).\n * @readonly\n */\n id?: string;\n /**\n * Product name.\n *\n * Min: 1 character\n * Max: 80 characters\n * @minLength 1\n * @maxLength 80\n */\n name?: string | null;\n /**\n * A friendly URL name (generated automatically by the catalog when a product is created), can be updated.\n * @maxLength 100\n */\n slug?: string;\n /** Whether the product is visible to site visitors. */\n visible?: boolean | null;\n /** Currently, only creating physical products ( `\"productType\": \"physical\"` ) is supported via the API. */\n productType?: ProductTypeWithLiterals;\n /**\n * Product description. Accepts [rich text](https://dev.wix.com/api/rest/wix-stores/rich-text).\n * @maxLength 8000\n */\n description?: string | null;\n /**\n * Stock keeping unit. If [variant management](https://support.wix.com/en/article/wix-stores-adding-and-customizing-product-options#setting-different-prices-for-variants) is enabled, SKUs will be set per variant, and this field will be empty.\n * @maxLength 40\n */\n sku?: string | null;\n /**\n * Product weight. If [variant management](https://support.wix.com/en/article/wix-stores-adding-and-customizing-product-options#setting-different-prices-for-variants) is enabled, weight will be set per variant, and this field will be empty.\n * @max 999999999.99\n */\n weight?: number | null;\n /**\n * Product weight range. The minimum and maximum weights of all the variants.\n * @readonly\n */\n weightRange?: NumericPropertyRange;\n /**\n * Product inventory status (in future this will be writable via Inventory API).\n * @readonly\n */\n stock?: Stock;\n /**\n * Deprecated (use `priceData` instead).\n * @readonly\n * @deprecated\n */\n price?: PriceData;\n /** Price data. */\n priceData?: PriceData;\n /**\n * Price data, converted to the currency specified in request header.\n * @readonly\n */\n convertedPriceData?: PriceData;\n /**\n * Product price range. The minimum and maximum prices of all the variants.\n * @readonly\n */\n priceRange?: NumericPropertyRange;\n /** Cost and profit data. */\n costAndProfitData?: CostAndProfitData;\n /**\n * Product cost range. The minimum and maximum costs of all the variants.\n * @readonly\n */\n costRange?: NumericPropertyRange;\n /** Price per unit data. */\n pricePerUnitData?: PricePerUnitData;\n /** Additional text that the store owner can assign to the product (e.g. shipping details, refund policy, etc.). */\n additionalInfoSections?: AdditionalInfoSection[];\n /**\n * Deprecated (use `ribbon` instead).\n * @readonly\n * @deprecated\n */\n ribbons?: Ribbon[];\n /**\n * Media items (images, videos etc) associated with this product (writable via [Add Product Media](https://dev.wix.com/api/rest/wix-stores/catalog/products/add-product-media) endpoint).\n * @readonly\n */\n media?: Media;\n /**\n * Text box for the customer to add a message to their order (e.g., customization request). Currently writable only from the UI.\n * @readonly\n */\n customTextFields?: CustomTextField[];\n /** Whether variants are being managed for this product - enables unique SKU, price and weight per variant. Also affects inventory data. */\n manageVariants?: boolean | null;\n /**\n * Options for this product.\n * @maxSize 6\n */\n productOptions?: ProductOption[];\n /**\n * Product page URL for this product (generated automatically by the server).\n * @readonly\n */\n productPageUrl?: PageUrl;\n /**\n * Product’s unique numeric ID (assigned in ascending order).\n * Primarily used for sorting and filtering when crawling all products.\n * @readonly\n */\n numericId?: string;\n /**\n * Inventory item ID - ID referencing the inventory system.\n * @readonly\n */\n inventoryItemId?: string;\n /** Discount deducted from the product's original price. */\n discount?: Discount;\n /**\n * A list of all collection IDs that this product is included in (writable via the Catalog > Collection APIs).\n * @readonly\n */\n collectionIds?: string[];\n /**\n * Product variants, will be provided if the request was sent with the `includeVariants: true`.\n *\n * Max: 1,000 variants\n * @readonly\n * @maxSize 1000\n */\n variants?: Variant[];\n /**\n * Date and time the product was last updated.\n * @readonly\n */\n lastUpdated?: Date | null;\n /**\n * Date and time the product was created.\n * @readonly\n */\n createdDate?: Date | null;\n /** Custom SEO data for the product. */\n seoData?: SeoSchema;\n /**\n * Product ribbon. Used to highlight relevant information about a product. For example, \"Sale\", \"New Arrival\", \"Sold Out\".\n * @maxLength 30\n */\n ribbon?: string | null;\n /**\n * Product brand. Including a brand name can help improve site and product [visibility on search engines](https://support.wix.com/en/article/adding-brand-names-to-boost-product-page-seo-in-wix-stores).\n * @minLength 1\n * @maxLength 50\n */\n brand?: string | null;\n}\n\nexport enum ProductType {\n unspecified_product_type = 'unspecified_product_type',\n physical = 'physical',\n digital = 'digital',\n}\n\n/** @enumType */\nexport type ProductTypeWithLiterals =\n | ProductType\n | 'unspecified_product_type'\n | 'physical'\n | 'digital';\n\nexport interface NumericPropertyRange {\n /** Minimum value. */\n minValue?: number;\n /** Maximum value. */\n maxValue?: number;\n}\n\nexport interface Stock {\n /** Whether inventory is being tracked */\n trackInventory?: boolean;\n /**\n * Quantity currently left in inventory\n * @max 99999\n */\n quantity?: number | null;\n /**\n * Whether the product is currently in stock (relevant only when tracking manually)\n * Deprecated (use `inventoryStatus` instead)\n * @deprecated\n */\n inStock?: boolean;\n /**\n * The current status of the inventory\n * + `IN_STOCK` - In stock\n * + `OUT_OF_STOCK` - Not in stock\n * + `PARTIALLY_OUT_OF_STOCK` - Some of the variants are not in stock\n */\n inventoryStatus?: InventoryStatusWithLiterals;\n}\n\nexport enum InventoryStatus {\n /** In stock */\n IN_STOCK = 'IN_STOCK',\n /** Not in stock */\n OUT_OF_STOCK = 'OUT_OF_STOCK',\n /** Some of the variants are not in stock */\n PARTIALLY_OUT_OF_STOCK = 'PARTIALLY_OUT_OF_STOCK',\n}\n\n/** @enumType */\nexport type InventoryStatusWithLiterals =\n | InventoryStatus\n | 'IN_STOCK'\n | 'OUT_OF_STOCK'\n | 'PARTIALLY_OUT_OF_STOCK';\n\nexport interface PriceData {\n /**\n * Product price currency\n * @readonly\n */\n currency?: string;\n /**\n * Product price\n * @max 999999999.99\n */\n price?: number | null;\n /**\n * Discounted product price (if no discounted price is set, the product price is returned)\n * @readonly\n */\n discountedPrice?: number;\n /**\n * The product price and discounted price, formatted with the currency\n * @readonly\n */\n formatted?: FormattedPrice;\n /**\n * Price per unit\n * @readonly\n */\n pricePerUnit?: number | null;\n}\n\nexport interface FormattedPrice {\n /** Product price formatted with the currency */\n price?: string;\n /** Discounted product price formatted with the currency (if no discounted price is set, the product formatted price is returned) */\n discountedPrice?: string;\n /**\n * Price per unit\n * @readonly\n */\n pricePerUnit?: string | null;\n}\n\nexport interface CostAndProfitData {\n /**\n * Item cost.\n * @max 999999999.99\n */\n itemCost?: number | null;\n /**\n * Item cost formatted with currency symbol.\n * @readonly\n */\n formattedItemCost?: string;\n /**\n * Profit. Calculated by reducing `cost` from `discounted_price`.\n * @readonly\n * @max 999999999.99\n */\n profit?: number;\n /**\n * Profit formatted with currency symbol.\n * @readonly\n */\n formattedProfit?: string;\n /**\n * Profit Margin. Calculated by dividing `profit` by `discounted_price`.\n * The result is rounded to 4 decimal places.\n * @readonly\n * @max 1\n */\n profitMargin?: number;\n}\n\nexport interface PricePerUnitData {\n /**\n * Total quantity\n * @min 0.01\n * @max 999999999.99\n */\n totalQuantity?: number;\n /** Total measurement unit */\n totalMeasurementUnit?: MeasurementUnitWithLiterals;\n /**\n * Base quantity\n * @min 0.01\n * @max 999999999.99\n */\n baseQuantity?: number;\n /** Base measurement unit */\n baseMeasurementUnit?: MeasurementUnitWithLiterals;\n}\n\nexport enum MeasurementUnit {\n UNSPECIFIED = 'UNSPECIFIED',\n ML = 'ML',\n CL = 'CL',\n L = 'L',\n CBM = 'CBM',\n MG = 'MG',\n G = 'G',\n KG = 'KG',\n MM = 'MM',\n CM = 'CM',\n M = 'M',\n SQM = 'SQM',\n OZ = 'OZ',\n LB = 'LB',\n FLOZ = 'FLOZ',\n PT = 'PT',\n QT = 'QT',\n GAL = 'GAL',\n IN = 'IN',\n FT = 'FT',\n YD = 'YD',\n SQFT = 'SQFT',\n}\n\n/** @enumType */\nexport type MeasurementUnitWithLiterals =\n | MeasurementUnit\n | 'UNSPECIFIED'\n | 'ML'\n | 'CL'\n | 'L'\n | 'CBM'\n | 'MG'\n | 'G'\n | 'KG'\n | 'MM'\n | 'CM'\n | 'M'\n | 'SQM'\n | 'OZ'\n | 'LB'\n | 'FLOZ'\n | 'PT'\n | 'QT'\n | 'GAL'\n | 'IN'\n | 'FT'\n | 'YD'\n | 'SQFT';\n\nexport interface AdditionalInfoSection {\n /**\n * Product info section title\n * @maxLength 50\n */\n title?: string;\n /**\n * Product info section description\n * @maxLength 16000\n */\n description?: string;\n}\n\nexport interface Ribbon {\n /**\n * Ribbon text\n * @maxLength 30\n */\n text?: string;\n}\n\nexport interface Media {\n /** Primary media (image, video etc) associated with this product. */\n mainMedia?: MediaItem;\n /** Media (images, videos etc) associated with this product. */\n items?: MediaItem[];\n}\n\nexport interface MediaItem extends MediaItemItemOneOf {\n /** Image data (URL, size). */\n image?: MediaItemUrlAndSize;\n /** Video data (URL, size). */\n video?: MediaItemVideo;\n /** Media item thumbnail details. */\n thumbnail?: MediaItemUrlAndSize;\n /** Media item type (image, video, etc.). */\n mediaType?: MediaItemTypeWithLiterals;\n /** Media item title. */\n title?: string;\n /** Media ID (for example, `\"nsplsh_306d666a123a4a74306459~mv2_d_4517_2992_s_4_2.jpg\"`). */\n id?: string;\n}\n\n/** @oneof */\nexport interface MediaItemItemOneOf {\n /** Image data (URL, size). */\n image?: MediaItemUrlAndSize;\n /** Video data (URL, size). */\n video?: MediaItemVideo;\n}\n\nexport interface MediaItemUrlAndSize {\n /**\n * Media item URL.\n * @format WEB_URL\n */\n url?: string;\n /** Media item width. */\n width?: number;\n /** Media item height. */\n height?: number;\n /** Media format (mp4, png, etc.). */\n format?: string | null;\n /** Alt text. This text will be shown in case the image is not available. */\n altText?: string | null;\n}\n\nexport enum MediaItemType {\n unspecified_media_item_type = 'unspecified_media_item_type',\n /** Image media type. */\n image = 'image',\n /** Video media type. */\n video = 'video',\n /** Audio media type. */\n audio = 'audio',\n /** Document media type. */\n document = 'document',\n /** Zip media type. */\n zip = 'zip',\n}\n\n/** @enumType */\nexport type MediaItemTypeWithLiterals =\n | MediaItemType\n | 'unspecified_media_item_type'\n | 'image'\n | 'video'\n | 'audio'\n | 'document'\n | 'zip';\n\nexport interface MediaItemVideo {\n /** Data (URL, size) about each resolution for which this video is available. */\n files?: MediaItemUrlAndSize[];\n /** ID of an image taken from the video. Used primarily for Wix Search indexing. For example, `\"nsplsh_306d666a123a4a74306459~mv2_d_4517_2992_s_4_2.jpg\"`. */\n stillFrameMediaId?: string;\n}\n\nexport interface CustomTextField {\n /**\n * Text box title\n * @maxLength 100\n */\n title?: string;\n /**\n * Text box input max length\n * @max 500\n */\n maxLength?: number;\n /** Whether this text box is mandatory */\n mandatory?: boolean;\n}\n\nexport interface ProductOption {\n /**\n * Option type.\n * @readonly\n */\n optionType?: OptionTypeWithLiterals;\n /**\n * Option name.\n * @minLength 1\n * @maxLength 50\n */\n name?: string;\n /**\n * Choices available for this option.\n * @minSize 1\n * @maxSize 100\n */\n choices?: Choice[];\n}\n\nexport enum OptionType {\n /** Unspecified option type. */\n unspecified_option_type = 'unspecified_option_type',\n /** Drop down. */\n drop_down = 'drop_down',\n /** Color. */\n color = 'color',\n}\n\n/** @enumType */\nexport type OptionTypeWithLiterals =\n | OptionType\n | 'unspecified_option_type'\n | 'drop_down'\n | 'color';\n\nexport interface Choice {\n /**\n * Choice value.\n * @minLength 1\n * @maxLength 50\n */\n value?: string;\n /**\n * Choice description.\n * @minLength 1\n * @maxLength 50\n */\n description?: string;\n /**\n * Media items (images, videos) associated with this choice\n * @readonly\n */\n media?: Media;\n /**\n * Based on the customer’s choices, which (if any) variants that include the selected choices are in stock\n * @readonly\n */\n inStock?: boolean;\n /**\n * Based on the customer’s choices, which (if any) variants that include the selected choices are visible\n * @readonly\n */\n visible?: boolean;\n}\n\nexport interface PageUrl {\n /** Base URL. For premium sites, this is the domain. For free sites, this is the site URL (e.g mysite.wixsite.com/mysite). */\n base?: string;\n /** Path to the product page - e.g /product-page/a-product. */\n path?: string;\n}\n\nexport interface Discount {\n /**\n * Discount type:\n * + `\"AMOUNT\"`\n * + `\"PERCENT\"`\n */\n type?: DiscountTypeWithLiterals;\n /** Discount value */\n value?: number;\n}\n\nexport enum DiscountType {\n UNDEFINED = 'UNDEFINED',\n /** No discount */\n NONE = 'NONE',\n /** Discount by a fixed amount */\n AMOUNT = 'AMOUNT',\n /** Discount by a percentage */\n PERCENT = 'PERCENT',\n}\n\n/** @enumType */\nexport type DiscountTypeWithLiterals =\n | DiscountType\n | 'UNDEFINED'\n | 'NONE'\n | 'AMOUNT'\n | 'PERCENT';\n\nexport interface Variant {\n /**\n * Requested Variant ID\n * @format GUID\n */\n id?: string;\n /** Specific choices within a selection, as option-choice key-value pairs */\n choices?: Record<string, string>;\n variant?: VariantDataWithNoStock;\n /**\n * Variant inventory status.\n * @readonly\n */\n stock?: VariantStock;\n}\n\nexport interface VariantDataWithNoStock {\n /** Variant price. */\n priceData?: PriceData;\n /**\n * Variant price data, converted to currency requested in header.\n * @readonly\n */\n convertedPriceData?: PriceData;\n /** Cost and profit data. */\n costAndProfitData?: CostAndProfitData;\n /** Variant weight. */\n weight?: number;\n /** Variant SKU (stock keeping unit). */\n sku?: string;\n /** Whether the variant is visible to customers. */\n visible?: boolean;\n}\n\nexport interface VariantStock {\n /** Whether inventory is being tracked. */\n trackQuantity?: boolean;\n /**\n * Quantity currently left in inventory.\n * @max 99999\n */\n quantity?: number | null;\n /** Whether the product is currently in stock (relevant only when tracking manually). */\n inStock?: boolean;\n}\n\n/**\n * The SEO schema object contains data about different types of meta tags. It makes sure that the information about your page is presented properly to search engines.\n * The search engines use this information for ranking purposes, or to display snippets in the search results.\n * This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.\n */\nexport interface SeoSchema {\n /** SEO tag information. */\n tags?: Tag[];\n /** SEO general settings. */\n settings?: Settings;\n}\n\nexport interface Keyword {\n /** Keyword value. */\n term?: string;\n /** Whether the keyword is the main focus keyword. */\n isMain?: boolean;\n /**\n * The source that added the keyword terms to the SEO settings.\n * @maxLength 1000\n */\n origin?: string | null;\n}\n\nexport interface Tag {\n /**\n * SEO tag type.\n *\n *\n * Supported values: `title`, `meta`, `script`, `link`.\n */\n type?: string;\n /**\n * A `{\"key\": \"value\"}` pair object where each SEO tag property (`\"name\"`, `\"content\"`, `\"rel\"`, `\"href\"`) contains a value.\n * For example: `{\"name\": \"description\", \"content\": \"the description itself\"}`.\n */\n props?: Record<string, any> | null;\n /** SEO tag metadata. For example, `{\"height\": 300, \"width\": 240}`. */\n meta?: Record<string, any> | null;\n /** SEO tag inner content. For example, `<title> inner content </title>`. */\n children?: string;\n /** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */\n custom?: boolean;\n /** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */\n disabled?: boolean;\n /** Whether the tag was generated by AI (e.g., structured data from AI service). Only present when explicitly set. */\n aiGenerated?: boolean | null;\n /** Timestamp when the AI-generated tag was created. Only relevant when `ai_generated` is `true`. */\n aiGeneratedAt?: Date | null;\n}\n\nexport interface Settings {\n /**\n * Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.\n *\n *\n * Default: `false` (automatical redirect is enabled).\n */\n preventAutoRedirect?: boolean;\n /**\n * User-selected keyword terms for a specific page.\n * @maxSize 5\n */\n keywords?: Keyword[];\n /**\n * When `true`, AI-generated structured data tags are disabled (not rendered) for this page.\n * The tags will have `disabled: true` set, so they won't appear in search results.\n * Only present when explicitly set.\n */\n disableAiGeneratedSd?: boolean | null;\n}\n\nexport interface SecuredMedia {\n /**\n * Media ID in Wix Media Manager.\n * @minLength 1\n * @maxLength 100\n */\n id?: string;\n /**\n * Original filename.\n * @minLength 1\n * @maxLength 1000\n */\n fileName?: string;\n /** File type. */\n fileType?: FileTypeWithLiterals;\n}\n\nexport enum FileType {\n UNSPECIFIED = 'UNSPECIFIED',\n SECURE_PICTURE = 'SECURE_PICTURE',\n SECURE_VIDEO = 'SECURE_VIDEO',\n SECURE_DOCUMENT = 'SECURE_DOCUMENT',\n SECURE_MUSIC = 'SECURE_MUSIC',\n SECURE_ARCHIVE = 'SECURE_ARCHIVE',\n}\n\n/** @enumType */\nexport type FileTypeWithLiterals =\n | FileType\n | 'UNSPECIFIED'\n | 'SECURE_PICTURE'\n | 'SECURE_VIDEO'\n | 'SECURE_DOCUMENT'\n | 'SECURE_MUSIC'\n | 'SECURE_ARCHIVE';\n\nexport interface StoreVariant {\n /** Store variant ID. Comprised of the `productId` and the `variantId`, separated by a hyphen: {productId}.{variantId}. */\n id?: string;\n /**\n * Variant ID.\n * @format GUID\n */\n variantId?: string;\n /** Product ID. */\n productId?: string;\n /**\n * Variant name.\n * @minLength 1\n * @maxLength 80\n */\n variantName?: string;\n /**\n * Product name.\n * @minLength 1\n * @maxLength 80\n */\n productName?: string;\n /** Whether the variant is managed or represents a product. */\n managedVariant?: boolean;\n /**\n * Variant SKU (stock keeping unit).\n * @maxLength 40\n */\n sku?: string;\n /** Variant inventory status. */\n stock?: VariantStock;\n /** The selected options of this variant. For example, `{\"Color\": \"Blue\", \"Size\": \"Large\"}`. */\n choices?: Record<string, string>;\n /**\n * Collections that include this variant.\n * @format GUID\n */\n collectionIds?: string[];\n /**\n * Media items (images, videos) associated with this variant.\n * @readonly\n */\n media?: PlatformMedia;\n /** Preorder information. */\n preorderInfo?: PreorderInfo;\n}\n\nexport interface PlatformMedia extends PlatformMediaMediaOneOf {\n image?: Image;\n video?: VideoV2;\n}\n\n/** @oneof */\nexport interface PlatformMediaMediaOneOf {\n image?: Image;\n video?: VideoV2;\n}\n\nexport interface Image {\n /** WixMedia image ID. */\n id?: string;\n /** Image URL. */\n url?: string;\n /**\n * Original image height.\n * @readonly\n */\n height?: number;\n /**\n * Original image width.\n * @readonly\n */\n width?: number;\n /** Image alt text. */\n altText?: string | null;\n /**\n * Image filename.\n * @readonly\n */\n filename?: string | null;\n}\n\nexport interface FocalPoint {\n /** X-coordinate of the focal point. */\n x?: number;\n /** Y-coordinate of the focal point. */\n y?: number;\n /** crop by height */\n height?: number | null;\n /** crop by width */\n width?: number | null;\n}\n\nexport interface VideoV2 {\n /** WixMedia ID. */\n id?: string;\n /**\n * Available resolutions for the video, starting with the optimal resolution.\n * @readonly\n * @maxSize 100\n */\n resolutions?: VideoResolution[];\n /**\n * Video filename.\n * @readonly\n */\n filename?: string | null;\n}\n\nexport interface VideoResolution {\n /** Video URL. */\n url?: string;\n /** Video height. */\n height?: number;\n /** Video width. */\n width?: number;\n /** Video format for example, mp4, hls. */\n format?: string;\n}\n\nexport interface PreorderInfo {\n /** Whether the item is available for preorder. */\n enabled?: boolean;\n /**\n * A message the buyer will see when the item is out of stock and preorder is enabled.\n * @minLength 1\n * @maxLength 250\n */\n message?: string | null;\n /**\n * Number of products that can be preordered after stock reaches zero.\n * @max 100000\n */\n limit?: number | null;\n}\n\nexport interface QueryProductsExportSpiResponse {\n items?: ProductOrVariantV2[];\n pagingMetadata?: PagingMetadataV2;\n}\n\nexport interface ProductOrVariantV2 {\n kind?: string;\n product?: Product;\n variant?: Variant;\n}\n\n/** @docsIgnore */\nexport type CreateExportAsyncJobApplicationErrors = {\n code?: 'method_endpoint_not_found';\n description?: string;\n data?: Record<string, any>;\n};\n/** @docsIgnore */\nexport type GetExportAsyncJobApplicationErrors =\n | {\n code?: 'job_not_found';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'get_async_job_internal';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'method_endpoint_permission_denied';\n description?: string;\n data?: Record<string, any>;\n };\n","import * as ambassadorWixFedinfraExportserviceV1ExportAsyncJob from './fedinfra-exportservice-v1-export-async-job-export-async-job.http.js';\nimport * as ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes from './fedinfra-exportservice-v1-export-async-job-export-async-job.types.js';\nimport * as ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes from './fedinfra-exportservice-v1-export-async-job-export-async-job.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function createExportAsyncJob(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.CreateExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.CreateExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.CreateExportAsyncJobResponse,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.CreateExportAsyncJobResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixFedinfraExportserviceV1ExportAsyncJob.createExportAsyncJob(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/export-async-job',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function getExportAsyncJob(): __PublicMethodMetaInfo<\n 'GET',\n { jobId: string },\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.GetExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.GetExportAsyncJobRequest,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobUniversalTypes.GetExportAsyncJobResponse,\n ambassadorWixFedinfraExportserviceV1ExportAsyncJobTypes.GetExportAsyncJobResponse\n> {\n const payload = { jobId: ':jobId' } as any;\n\n const getRequestOptions =\n ambassadorWixFedinfraExportserviceV1ExportAsyncJob.getExportAsyncJob(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/export-async-job/{jobId}',\n pathParams: { jobId: 'jobId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport {\n ExportAsyncJob as ExportAsyncJobOriginal,\n ExportAsyncJobData as ExportAsyncJobDataOriginal,\n ExportQueryV2 as ExportQueryV2Original,\n ExportQueryV2PagingMethodOneOf as ExportQueryV2PagingMethodOneOfOriginal,\n Sorting as SortingOriginal,\n SortOrder as SortOrderOriginal,\n SortOrderWithLiterals as SortOrderWithLiteralsOriginal,\n Paging as PagingOriginal,\n ExportCursorPaging as ExportCursorPagingOriginal,\n FieldDescriptor as FieldDescriptorOriginal,\n ArrayFieldDelimiter as ArrayFieldDelimiterOriginal,\n ArrayFieldDelimiterWithLiterals as ArrayFieldDelimiterWithLiteralsOriginal,\n MethodMetadata as MethodMetadataOriginal,\n MethodSpec as MethodSpecOriginal,\n QueryFieldNumber as QueryFieldNumberOriginal,\n QueryFieldNumberWithLiterals as QueryFieldNumberWithLiteralsOriginal,\n PagingMetadataV2 as PagingMetadataV2Original,\n Cursors as CursorsOriginal,\n Details as DetailsOriginal,\n DetailsKindOneOf as DetailsKindOneOfOriginal,\n ApplicationError as ApplicationErrorOriginal,\n ValidationError as ValidationErrorOriginal,\n RuleType as RuleTypeOriginal,\n RuleTypeWithLiterals as RuleTypeWithLiteralsOriginal,\n FieldViolation as FieldViolationOriginal,\n SystemError as SystemErrorOriginal,\n Status as StatusOriginal,\n StatusWithLiterals as StatusWithLiteralsOriginal,\n CreateExportAsyncJobRequest as CreateExportAsyncJobRequestOriginal,\n CreateExportAsyncJobResponse as CreateExportAsyncJobResponseOriginal,\n GetExportAsyncJobRequest as GetExportAsyncJobRequestOriginal,\n GetExportAsyncJobResponse as GetExportAsyncJobResponseOriginal,\n CancelExportAsyncJobRequest as CancelExportAsyncJobRequestOriginal,\n CancelExportAsyncJobResponse as CancelExportAsyncJobResponseOriginal,\n GenerateExportAsyncJobDownloadUrlRequest as GenerateExportAsyncJobDownloadUrlRequestOriginal,\n GenerateExportAsyncJobDownloadUrlResponse as GenerateExportAsyncJobDownloadUrlResponseOriginal,\n QueryRequestLoose as QueryRequestLooseOriginal,\n QueryVariantsExportSpiResponse as QueryVariantsExportSpiResponseOriginal,\n ProductOrVariant as ProductOrVariantOriginal,\n Product as ProductOriginal,\n ProductType as ProductTypeOriginal,\n ProductTypeWithLiterals as ProductTypeWithLiteralsOriginal,\n NumericPropertyRange as NumericPropertyRangeOriginal,\n Stock as StockOriginal,\n InventoryStatus as InventoryStatusOriginal,\n InventoryStatusWithLiterals as InventoryStatusWithLiteralsOriginal,\n PriceData as PriceDataOriginal,\n FormattedPrice as FormattedPriceOriginal,\n CostAndProfitData as CostAndProfitDataOriginal,\n PricePerUnitData as PricePerUnitDataOriginal,\n MeasurementUnit as MeasurementUnitOriginal,\n MeasurementUnitWithLiterals as MeasurementUnitWithLiteralsOriginal,\n AdditionalInfoSection as AdditionalInfoSectionOriginal,\n Ribbon as RibbonOriginal,\n Media as MediaOriginal,\n MediaItem as MediaItemOriginal,\n MediaItemItemOneOf as MediaItemItemOneOfOriginal,\n MediaItemUrlAndSize as MediaItemUrlAndSizeOriginal,\n MediaItemType as MediaItemTypeOriginal,\n MediaItemTypeWithLiterals as MediaItemTypeWithLiteralsOriginal,\n MediaItemVideo as MediaItemVideoOriginal,\n CustomTextField as CustomTextFieldOriginal,\n ProductOption as ProductOptionOriginal,\n OptionType as OptionTypeOriginal,\n OptionTypeWithLiterals as OptionTypeWithLiteralsOriginal,\n Choice as ChoiceOriginal,\n PageUrl as PageUrlOriginal,\n Discount as DiscountOriginal,\n DiscountType as DiscountTypeOriginal,\n DiscountTypeWithLiterals as DiscountTypeWithLiteralsOriginal,\n Variant as VariantOriginal,\n VariantDataWithNoStock as VariantDataWithNoStockOriginal,\n VariantStock as VariantStockOriginal,\n SeoSchema as SeoSchemaOriginal,\n Keyword as KeywordOriginal,\n Tag as TagOriginal,\n Settings as SettingsOriginal,\n SecuredMedia as SecuredMediaOriginal,\n FileType as FileTypeOriginal,\n FileTypeWithLiterals as FileTypeWithLiteralsOriginal,\n StoreVariant as StoreVariantOriginal,\n PlatformMedia as PlatformMediaOriginal,\n PlatformMediaMediaOneOf as PlatformMediaMediaOneOfOriginal,\n Image as ImageOriginal,\n FocalPoint as FocalPointOriginal,\n VideoV2 as VideoV2Original,\n VideoResolution as VideoResolutionOriginal,\n PreorderInfo as PreorderInfoOriginal,\n QueryProductsExportSpiResponse as QueryProductsExportSpiResponseOriginal,\n ProductOrVariantV2 as ProductOrVariantV2Original,\n CreateExportAsyncJobApplicationErrors as CreateExportAsyncJobApplicationErrorsOriginal,\n GetExportAsyncJobApplicationErrors as GetExportAsyncJobApplicationErrorsOriginal,\n} from './fedinfra-exportservice-v1-export-async-job-export-async-job.types.js';\n"],"mappings":"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","names":["createExportAsyncJob","getExportAsyncJob","import_rest_modules","payload","SortOrder","ArrayFieldDelimiter","QueryFieldNumber","RuleType","Status","ProductType","InventoryStatus","MeasurementUnit","MediaItemType","OptionType","DiscountType","FileType","createExportAsyncJob","getExportAsyncJob"]}