@wix/auto_sdk_stores_catalog-imports-v-3 1.0.1 → 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.
@@ -37,6 +37,9 @@ function createCatalogImport(payload) {
37
37
  method: "POST",
38
38
  methodFqn: "wix.stores.catalog.catalog_import.v3.CatalogImports.CreateCatalogImport",
39
39
  packageName: PACKAGE_NAME,
40
+ migrationOptions: {
41
+ optInTransformResponse: true
42
+ },
40
43
  url: resolveWixStoresCatalogCatalogImportV3CatalogImportsUrl({
41
44
  protoPath: "/v3/catalog-imports",
42
45
  data: serializedData,
@@ -256,6 +259,9 @@ function addProductsToImport(payload) {
256
259
  method: "POST",
257
260
  methodFqn: "wix.stores.catalog.catalog_import.v3.CatalogImports.AddProductsToImport",
258
261
  packageName: PACKAGE_NAME,
262
+ migrationOptions: {
263
+ optInTransformResponse: true
264
+ },
259
265
  url: resolveWixStoresCatalogCatalogImportV3CatalogImportsUrl({
260
266
  protoPath: "/v3/catalog-imports/{catalogImportId}/add-products",
261
267
  data: serializedData,
@@ -274,6 +280,9 @@ function submitCatalogImport(payload) {
274
280
  method: "POST",
275
281
  methodFqn: "wix.stores.catalog.catalog_import.v3.CatalogImports.SubmitCatalogImport",
276
282
  packageName: PACKAGE_NAME,
283
+ migrationOptions: {
284
+ optInTransformResponse: true
285
+ },
277
286
  url: resolveWixStoresCatalogCatalogImportV3CatalogImportsUrl({
278
287
  protoPath: "/v3/catalog-imports/{catalogImportId}/submit",
279
288
  data: payload,