@wix/auto_sdk_restaurants_sections 1.0.39 → 1.0.41

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.
@@ -257,6 +257,9 @@ function duplicateSection(payload) {
257
257
  method: "POST",
258
258
  methodFqn: "com.wixpress.restaurants.menus_section.v1.restaurants_duplicate_section.RestaurantsDuplicateSection.DuplicateSection",
259
259
  packageName: PACKAGE_NAME,
260
+ migrationOptions: {
261
+ optInTransformResponse: true
262
+ },
260
263
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsDuplicateSectionRestaurantsDuplicateSectionUrl(
261
264
  { protoPath: "/v1/sections/{id}/duplicate", data: payload, host }
262
265
  ),
@@ -291,6 +294,9 @@ function createSection(payload) {
291
294
  method: "POST",
292
295
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.CreateSection",
293
296
  packageName: PACKAGE_NAME,
297
+ migrationOptions: {
298
+ optInTransformResponse: true
299
+ },
294
300
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
295
301
  { protoPath: "/v1/sections", data: serializedData, host }
296
302
  ),
@@ -343,6 +349,9 @@ function bulkCreateSections(payload) {
343
349
  method: "POST",
344
350
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.BulkCreateSections",
345
351
  packageName: PACKAGE_NAME,
352
+ migrationOptions: {
353
+ optInTransformResponse: true
354
+ },
346
355
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
347
356
  { protoPath: "/v1/bulk/sections/create", data: serializedData, host }
348
357
  ),
@@ -377,6 +386,9 @@ function getSection(payload) {
377
386
  method: "GET",
378
387
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.GetSection",
379
388
  packageName: PACKAGE_NAME,
389
+ migrationOptions: {
390
+ optInTransformResponse: true
391
+ },
380
392
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
381
393
  { protoPath: "/v1/sections/{sectionId}", data: payload, host }
382
394
  ),
@@ -411,6 +423,9 @@ function listSections(payload) {
411
423
  method: "GET",
412
424
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.ListSections",
413
425
  packageName: PACKAGE_NAME,
426
+ migrationOptions: {
427
+ optInTransformResponse: true
428
+ },
414
429
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
415
430
  { protoPath: "/v1/sections", data: payload, host }
416
431
  ),
@@ -445,6 +460,9 @@ function querySections(payload) {
445
460
  method: "POST",
446
461
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.QuerySections",
447
462
  packageName: PACKAGE_NAME,
463
+ migrationOptions: {
464
+ optInTransformResponse: true
465
+ },
448
466
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
449
467
  { protoPath: "/v1/sections/query", data: payload, host }
450
468
  ),
@@ -501,6 +519,9 @@ function updateSection(payload) {
501
519
  method: "PATCH",
502
520
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.UpdateSection",
503
521
  packageName: PACKAGE_NAME,
522
+ migrationOptions: {
523
+ optInTransformResponse: true
524
+ },
504
525
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
505
526
  { protoPath: "/v1/sections/{section.id}", data: serializedData, host }
506
527
  ),
@@ -557,6 +578,9 @@ function bulkUpdateSection(payload) {
557
578
  method: "POST",
558
579
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.BulkUpdateSection",
559
580
  packageName: PACKAGE_NAME,
581
+ migrationOptions: {
582
+ optInTransformResponse: true
583
+ },
560
584
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
561
585
  { protoPath: "/v1/bulk/sections/update", data: serializedData, host }
562
586
  ),
@@ -591,6 +615,9 @@ function deleteSection(payload) {
591
615
  method: "DELETE",
592
616
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.DeleteSection",
593
617
  packageName: PACKAGE_NAME,
618
+ migrationOptions: {
619
+ optInTransformResponse: true
620
+ },
594
621
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
595
622
  { protoPath: "/v1/sections/{sectionId}", data: payload, host }
596
623
  ),
@@ -607,6 +634,9 @@ function bulkDeleteSections(payload) {
607
634
  method: "DELETE",
608
635
  methodFqn: "com.wixpress.restaurants.menus_section.v1.RestaurantsMenusSection.BulkDeleteSections",
609
636
  packageName: PACKAGE_NAME,
637
+ migrationOptions: {
638
+ optInTransformResponse: true
639
+ },
610
640
  url: resolveComWixpressRestaurantsMenusSectionV1RestaurantsMenusSectionUrl(
611
641
  { protoPath: "/v1/bulk/sections/delete", data: payload, host }
612
642
  ),