@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.
@@ -142,6 +142,9 @@ function createCustomization(payload) {
142
142
  method: "POST",
143
143
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.CreateCustomization",
144
144
  packageName: PACKAGE_NAME,
145
+ migrationOptions: {
146
+ optInTransformResponse: true
147
+ },
145
148
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
146
149
  protoPath: "/v3/customizations",
147
150
  data: serializedData,
@@ -183,6 +186,9 @@ function getCustomization(payload) {
183
186
  method: "GET",
184
187
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.GetCustomization",
185
188
  packageName: PACKAGE_NAME,
189
+ migrationOptions: {
190
+ optInTransformResponse: true
191
+ },
186
192
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
187
193
  protoPath: "/v3/customizations/{customizationId}",
188
194
  data: payload,
@@ -247,6 +253,9 @@ function updateCustomization(payload) {
247
253
  method: "PATCH",
248
254
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.UpdateCustomization",
249
255
  packageName: PACKAGE_NAME,
256
+ migrationOptions: {
257
+ optInTransformResponse: true
258
+ },
250
259
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
251
260
  protoPath: "/v3/customizations/{customization.id}",
252
261
  data: serializedData,
@@ -288,6 +297,9 @@ function deleteCustomization(payload) {
288
297
  method: "DELETE",
289
298
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.DeleteCustomization",
290
299
  packageName: PACKAGE_NAME,
300
+ migrationOptions: {
301
+ optInTransformResponse: true
302
+ },
291
303
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
292
304
  protoPath: "/v3/customizations/{customizationId}",
293
305
  data: payload,
@@ -306,6 +318,9 @@ function queryCustomizations(payload) {
306
318
  method: "GET",
307
319
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.QueryCustomizations",
308
320
  packageName: PACKAGE_NAME,
321
+ migrationOptions: {
322
+ optInTransformResponse: true
323
+ },
309
324
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
310
325
  protoPath: "/v3/customizations/query",
311
326
  data: payload,
@@ -377,6 +392,9 @@ function bulkCreateCustomizations(payload) {
377
392
  method: "POST",
378
393
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkCreateCustomizations",
379
394
  packageName: PACKAGE_NAME,
395
+ migrationOptions: {
396
+ optInTransformResponse: true
397
+ },
380
398
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
381
399
  protoPath: "/v3/bulk/customizations/create",
382
400
  data: serializedData,
@@ -431,6 +449,9 @@ function addCustomizationChoices(payload) {
431
449
  method: "POST",
432
450
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.AddCustomizationChoices",
433
451
  packageName: PACKAGE_NAME,
452
+ migrationOptions: {
453
+ optInTransformResponse: true
454
+ },
434
455
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
435
456
  protoPath: "/v3/customizations/{customizationId}/add-choices",
436
457
  data: serializedData,
@@ -485,6 +506,9 @@ function setCustomizationChoices(payload) {
485
506
  method: "POST",
486
507
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.SetCustomizationChoices",
487
508
  packageName: PACKAGE_NAME,
509
+ migrationOptions: {
510
+ optInTransformResponse: true
511
+ },
488
512
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
489
513
  protoPath: "/v3/customizations/{customizationId}/set-choices",
490
514
  data: serializedData,
@@ -526,6 +550,9 @@ function removeCustomizationChoices(payload) {
526
550
  method: "POST",
527
551
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.RemoveCustomizationChoices",
528
552
  packageName: PACKAGE_NAME,
553
+ migrationOptions: {
554
+ optInTransformResponse: true
555
+ },
529
556
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
530
557
  protoPath: "/v3/customizations/{customizationId}/remove-choices",
531
558
  data: payload,
@@ -582,6 +609,9 @@ function bulkAddCustomizationChoices(payload) {
582
609
  method: "POST",
583
610
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkAddCustomizationChoices",
584
611
  packageName: PACKAGE_NAME,
612
+ migrationOptions: {
613
+ optInTransformResponse: true
614
+ },
585
615
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
586
616
  protoPath: "/v3/bulk/customizations/add-choices",
587
617
  data: serializedData,
@@ -650,6 +680,9 @@ function bulkUpdateCustomizations(payload) {
650
680
  method: "POST",
651
681
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.BulkUpdateCustomizations",
652
682
  packageName: PACKAGE_NAME,
683
+ migrationOptions: {
684
+ optInTransformResponse: true
685
+ },
653
686
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
654
687
  protoPath: "/v3/bulk/customizations/update",
655
688
  data: serializedData,