@wix/auto_sdk_stores_customizations-v-3 1.0.35 → 1.0.37

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.
@@ -93,6 +93,9 @@ function createCustomization(payload) {
93
93
  method: "POST",
94
94
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.CreateCustomization",
95
95
  packageName: PACKAGE_NAME,
96
+ migrationOptions: {
97
+ optInTransformResponse: true
98
+ },
96
99
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
97
100
  protoPath: "/v3/customizations",
98
101
  data: serializedData,
@@ -134,6 +137,9 @@ function getCustomization(payload) {
134
137
  method: "GET",
135
138
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.GetCustomization",
136
139
  packageName: PACKAGE_NAME,
140
+ migrationOptions: {
141
+ optInTransformResponse: true
142
+ },
137
143
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
138
144
  protoPath: "/v3/customizations/{customizationId}",
139
145
  data: payload,
@@ -198,6 +204,9 @@ function updateCustomization(payload) {
198
204
  method: "PATCH",
199
205
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.UpdateCustomization",
200
206
  packageName: PACKAGE_NAME,
207
+ migrationOptions: {
208
+ optInTransformResponse: true
209
+ },
201
210
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
202
211
  protoPath: "/v3/customizations/{customization.id}",
203
212
  data: serializedData,
@@ -239,6 +248,9 @@ function deleteCustomization(payload) {
239
248
  method: "DELETE",
240
249
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.DeleteCustomization",
241
250
  packageName: PACKAGE_NAME,
251
+ migrationOptions: {
252
+ optInTransformResponse: true
253
+ },
242
254
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
243
255
  protoPath: "/v3/customizations/{customizationId}",
244
256
  data: payload,
@@ -257,6 +269,9 @@ function queryCustomizations(payload) {
257
269
  method: "GET",
258
270
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.QueryCustomizations",
259
271
  packageName: PACKAGE_NAME,
272
+ migrationOptions: {
273
+ optInTransformResponse: true
274
+ },
260
275
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
261
276
  protoPath: "/v3/customizations/query",
262
277
  data: payload,
@@ -328,6 +343,9 @@ function bulkCreateCustomizations(payload) {
328
343
  method: "POST",
329
344
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkCreateCustomizations",
330
345
  packageName: PACKAGE_NAME,
346
+ migrationOptions: {
347
+ optInTransformResponse: true
348
+ },
331
349
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
332
350
  protoPath: "/v3/bulk/customizations/create",
333
351
  data: serializedData,
@@ -382,6 +400,9 @@ function addCustomizationChoices(payload) {
382
400
  method: "POST",
383
401
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.AddCustomizationChoices",
384
402
  packageName: PACKAGE_NAME,
403
+ migrationOptions: {
404
+ optInTransformResponse: true
405
+ },
385
406
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
386
407
  protoPath: "/v3/customizations/{customizationId}/add-choices",
387
408
  data: serializedData,
@@ -436,6 +457,9 @@ function setCustomizationChoices(payload) {
436
457
  method: "POST",
437
458
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.SetCustomizationChoices",
438
459
  packageName: PACKAGE_NAME,
460
+ migrationOptions: {
461
+ optInTransformResponse: true
462
+ },
439
463
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
440
464
  protoPath: "/v3/customizations/{customizationId}/set-choices",
441
465
  data: serializedData,
@@ -477,6 +501,9 @@ function removeCustomizationChoices(payload) {
477
501
  method: "POST",
478
502
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.RemoveCustomizationChoices",
479
503
  packageName: PACKAGE_NAME,
504
+ migrationOptions: {
505
+ optInTransformResponse: true
506
+ },
480
507
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
481
508
  protoPath: "/v3/customizations/{customizationId}/remove-choices",
482
509
  data: payload,
@@ -533,6 +560,9 @@ function bulkAddCustomizationChoices(payload) {
533
560
  method: "POST",
534
561
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkAddCustomizationChoices",
535
562
  packageName: PACKAGE_NAME,
563
+ migrationOptions: {
564
+ optInTransformResponse: true
565
+ },
536
566
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
537
567
  protoPath: "/v3/bulk/customizations/add-choices",
538
568
  data: serializedData,
@@ -601,6 +631,9 @@ function bulkUpdateCustomizations(payload) {
601
631
  method: "POST",
602
632
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkUpdateCustomizations",
603
633
  packageName: PACKAGE_NAME,
634
+ migrationOptions: {
635
+ optInTransformResponse: true
636
+ },
604
637
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
605
638
  protoPath: "/v3/bulk/customizations/update",
606
639
  data: serializedData,