@wix/auto_sdk_stores_customizations-v-3 1.0.35 → 1.0.36

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.
@@ -132,6 +132,9 @@ function createCustomization(payload) {
132
132
  method: "POST",
133
133
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.CreateCustomization",
134
134
  packageName: PACKAGE_NAME,
135
+ migrationOptions: {
136
+ optInTransformResponse: true
137
+ },
135
138
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
136
139
  protoPath: "/v3/customizations",
137
140
  data: serializedData,
@@ -173,6 +176,9 @@ function getCustomization(payload) {
173
176
  method: "GET",
174
177
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.GetCustomization",
175
178
  packageName: PACKAGE_NAME,
179
+ migrationOptions: {
180
+ optInTransformResponse: true
181
+ },
176
182
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
177
183
  protoPath: "/v3/customizations/{customizationId}",
178
184
  data: payload,
@@ -237,6 +243,9 @@ function updateCustomization(payload) {
237
243
  method: "PATCH",
238
244
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.UpdateCustomization",
239
245
  packageName: PACKAGE_NAME,
246
+ migrationOptions: {
247
+ optInTransformResponse: true
248
+ },
240
249
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
241
250
  protoPath: "/v3/customizations/{customization.id}",
242
251
  data: serializedData,
@@ -278,6 +287,9 @@ function deleteCustomization(payload) {
278
287
  method: "DELETE",
279
288
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.DeleteCustomization",
280
289
  packageName: PACKAGE_NAME,
290
+ migrationOptions: {
291
+ optInTransformResponse: true
292
+ },
281
293
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
282
294
  protoPath: "/v3/customizations/{customizationId}",
283
295
  data: payload,
@@ -296,6 +308,9 @@ function queryCustomizations(payload) {
296
308
  method: "GET",
297
309
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.QueryCustomizations",
298
310
  packageName: PACKAGE_NAME,
311
+ migrationOptions: {
312
+ optInTransformResponse: true
313
+ },
299
314
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
300
315
  protoPath: "/v3/customizations/query",
301
316
  data: payload,
@@ -367,6 +382,9 @@ function bulkCreateCustomizations(payload) {
367
382
  method: "POST",
368
383
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkCreateCustomizations",
369
384
  packageName: PACKAGE_NAME,
385
+ migrationOptions: {
386
+ optInTransformResponse: true
387
+ },
370
388
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
371
389
  protoPath: "/v3/bulk/customizations/create",
372
390
  data: serializedData,
@@ -421,6 +439,9 @@ function addCustomizationChoices(payload) {
421
439
  method: "POST",
422
440
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.AddCustomizationChoices",
423
441
  packageName: PACKAGE_NAME,
442
+ migrationOptions: {
443
+ optInTransformResponse: true
444
+ },
424
445
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
425
446
  protoPath: "/v3/customizations/{customizationId}/add-choices",
426
447
  data: serializedData,
@@ -475,6 +496,9 @@ function setCustomizationChoices(payload) {
475
496
  method: "POST",
476
497
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.SetCustomizationChoices",
477
498
  packageName: PACKAGE_NAME,
499
+ migrationOptions: {
500
+ optInTransformResponse: true
501
+ },
478
502
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
479
503
  protoPath: "/v3/customizations/{customizationId}/set-choices",
480
504
  data: serializedData,
@@ -516,6 +540,9 @@ function removeCustomizationChoices(payload) {
516
540
  method: "POST",
517
541
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.RemoveCustomizationChoices",
518
542
  packageName: PACKAGE_NAME,
543
+ migrationOptions: {
544
+ optInTransformResponse: true
545
+ },
519
546
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
520
547
  protoPath: "/v3/customizations/{customizationId}/remove-choices",
521
548
  data: payload,
@@ -572,6 +599,9 @@ function bulkAddCustomizationChoices(payload) {
572
599
  method: "POST",
573
600
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkAddCustomizationChoices",
574
601
  packageName: PACKAGE_NAME,
602
+ migrationOptions: {
603
+ optInTransformResponse: true
604
+ },
575
605
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
576
606
  protoPath: "/v3/bulk/customizations/add-choices",
577
607
  data: serializedData,
@@ -640,6 +670,9 @@ function bulkUpdateCustomizations(payload) {
640
670
  method: "POST",
641
671
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkUpdateCustomizations",
642
672
  packageName: PACKAGE_NAME,
673
+ migrationOptions: {
674
+ optInTransformResponse: true
675
+ },
643
676
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
644
677
  protoPath: "/v3/bulk/customizations/update",
645
678
  data: serializedData,