@wix/auto_sdk_online-programs_sections 1.0.0 → 1.0.1
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.
- package/build/cjs/index.js +33 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +33 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +33 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +33 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +33 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +33 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +33 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +33 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +33 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +33 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +33 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +33 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -142,6 +142,9 @@ function createSection(payload) {
|
|
|
142
142
|
method: "POST",
|
|
143
143
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.CreateSection",
|
|
144
144
|
packageName: PACKAGE_NAME,
|
|
145
|
+
migrationOptions: {
|
|
146
|
+
optInTransformResponse: true
|
|
147
|
+
},
|
|
145
148
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
146
149
|
protoPath: "/v3/sections",
|
|
147
150
|
data: serializedData,
|
|
@@ -226,6 +229,9 @@ function bulkCreateSection(payload) {
|
|
|
226
229
|
method: "POST",
|
|
227
230
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.BulkCreateSection",
|
|
228
231
|
packageName: PACKAGE_NAME,
|
|
232
|
+
migrationOptions: {
|
|
233
|
+
optInTransformResponse: true
|
|
234
|
+
},
|
|
229
235
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
230
236
|
protoPath: "/v3/bulk/sections/create",
|
|
231
237
|
data: serializedData,
|
|
@@ -312,6 +318,9 @@ function bulkCreateSectionMigration(payload) {
|
|
|
312
318
|
method: "POST",
|
|
313
319
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.BulkCreateSectionMigration",
|
|
314
320
|
packageName: PACKAGE_NAME,
|
|
321
|
+
migrationOptions: {
|
|
322
|
+
optInTransformResponse: true
|
|
323
|
+
},
|
|
315
324
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
316
325
|
protoPath: "/v3/bulk/sections/create/migration",
|
|
317
326
|
data: serializedData,
|
|
@@ -366,6 +375,9 @@ function getSection(payload) {
|
|
|
366
375
|
method: "GET",
|
|
367
376
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.GetSection",
|
|
368
377
|
packageName: PACKAGE_NAME,
|
|
378
|
+
migrationOptions: {
|
|
379
|
+
optInTransformResponse: true
|
|
380
|
+
},
|
|
369
381
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
370
382
|
protoPath: "/v3/sections/{sectionId}",
|
|
371
383
|
data: payload,
|
|
@@ -450,6 +462,9 @@ function updateSection(payload) {
|
|
|
450
462
|
method: "PATCH",
|
|
451
463
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.UpdateSection",
|
|
452
464
|
packageName: PACKAGE_NAME,
|
|
465
|
+
migrationOptions: {
|
|
466
|
+
optInTransformResponse: true
|
|
467
|
+
},
|
|
453
468
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
454
469
|
protoPath: "/v3/sections/{section.id}",
|
|
455
470
|
data: serializedData,
|
|
@@ -502,6 +517,9 @@ function deleteSection(payload) {
|
|
|
502
517
|
method: "DELETE",
|
|
503
518
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.DeleteSection",
|
|
504
519
|
packageName: PACKAGE_NAME,
|
|
520
|
+
migrationOptions: {
|
|
521
|
+
optInTransformResponse: true
|
|
522
|
+
},
|
|
505
523
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
506
524
|
protoPath: "/v3/sections/{sectionId}",
|
|
507
525
|
data: payload,
|
|
@@ -520,6 +538,9 @@ function querySections(payload) {
|
|
|
520
538
|
method: "POST",
|
|
521
539
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.QuerySections",
|
|
522
540
|
packageName: PACKAGE_NAME,
|
|
541
|
+
migrationOptions: {
|
|
542
|
+
optInTransformResponse: true
|
|
543
|
+
},
|
|
523
544
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
524
545
|
protoPath: "/v3/sections/query",
|
|
525
546
|
data: payload,
|
|
@@ -572,6 +593,9 @@ function listSections(payload) {
|
|
|
572
593
|
method: "GET",
|
|
573
594
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.ListSections",
|
|
574
595
|
packageName: PACKAGE_NAME,
|
|
596
|
+
migrationOptions: {
|
|
597
|
+
optInTransformResponse: true
|
|
598
|
+
},
|
|
575
599
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
576
600
|
protoPath: "/v3/sections",
|
|
577
601
|
data: payload,
|
|
@@ -624,6 +648,9 @@ function cloneSection(payload) {
|
|
|
624
648
|
method: "POST",
|
|
625
649
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.CloneSection",
|
|
626
650
|
packageName: PACKAGE_NAME,
|
|
651
|
+
migrationOptions: {
|
|
652
|
+
optInTransformResponse: true
|
|
653
|
+
},
|
|
627
654
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
628
655
|
protoPath: "/v3/sections/{sectionId}/clone",
|
|
629
656
|
data: payload,
|
|
@@ -676,6 +703,9 @@ function moveSection(payload) {
|
|
|
676
703
|
method: "PATCH",
|
|
677
704
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.MoveSection",
|
|
678
705
|
packageName: PACKAGE_NAME,
|
|
706
|
+
migrationOptions: {
|
|
707
|
+
optInTransformResponse: true
|
|
708
|
+
},
|
|
679
709
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
680
710
|
protoPath: "/v3/sections/move",
|
|
681
711
|
data: payload,
|
|
@@ -728,6 +758,9 @@ function publishSection(payload) {
|
|
|
728
758
|
method: "PATCH",
|
|
729
759
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.PublishSection",
|
|
730
760
|
packageName: PACKAGE_NAME,
|
|
761
|
+
migrationOptions: {
|
|
762
|
+
optInTransformResponse: true
|
|
763
|
+
},
|
|
731
764
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
732
765
|
protoPath: "/v3/sections/publish",
|
|
733
766
|
data: payload,
|