@wix/auto_sdk_stores_catalog-imports-v-3 1.0.1 → 1.0.2
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/index.js +9 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +9 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +9 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +9 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +9 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +9 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +9 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +9 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +9 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +9 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +9 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +9 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -110,6 +110,9 @@ function createCatalogImport(payload) {
|
|
|
110
110
|
method: "POST",
|
|
111
111
|
methodFqn: "wix.stores.catalog.catalog_import.v3.CatalogImports.CreateCatalogImport",
|
|
112
112
|
packageName: PACKAGE_NAME,
|
|
113
|
+
migrationOptions: {
|
|
114
|
+
optInTransformResponse: true
|
|
115
|
+
},
|
|
113
116
|
url: resolveWixStoresCatalogCatalogImportV3CatalogImportsUrl({
|
|
114
117
|
protoPath: "/v3/catalog-imports",
|
|
115
118
|
data: serializedData,
|
|
@@ -329,6 +332,9 @@ function addProductsToImport(payload) {
|
|
|
329
332
|
method: "POST",
|
|
330
333
|
methodFqn: "wix.stores.catalog.catalog_import.v3.CatalogImports.AddProductsToImport",
|
|
331
334
|
packageName: PACKAGE_NAME,
|
|
335
|
+
migrationOptions: {
|
|
336
|
+
optInTransformResponse: true
|
|
337
|
+
},
|
|
332
338
|
url: resolveWixStoresCatalogCatalogImportV3CatalogImportsUrl({
|
|
333
339
|
protoPath: "/v3/catalog-imports/{catalogImportId}/add-products",
|
|
334
340
|
data: serializedData,
|
|
@@ -347,6 +353,9 @@ function submitCatalogImport(payload) {
|
|
|
347
353
|
method: "POST",
|
|
348
354
|
methodFqn: "wix.stores.catalog.catalog_import.v3.CatalogImports.SubmitCatalogImport",
|
|
349
355
|
packageName: PACKAGE_NAME,
|
|
356
|
+
migrationOptions: {
|
|
357
|
+
optInTransformResponse: true
|
|
358
|
+
},
|
|
350
359
|
url: resolveWixStoresCatalogCatalogImportV3CatalogImportsUrl({
|
|
351
360
|
protoPath: "/v3/catalog-imports/{catalogImportId}/submit",
|
|
352
361
|
data: payload,
|