@wix/auto_sdk_online-programs_sections 1.0.0 → 1.0.2
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.d.ts +372 -1
- package/build/cjs/meta.js +102 -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.d.mts +372 -1
- package/build/es/meta.mjs +94 -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.d.ts +372 -1
- package/build/internal/cjs/meta.js +102 -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.d.mts +372 -1
- package/build/internal/es/meta.mjs +94 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -183,6 +183,9 @@ function createSection(payload) {
|
|
|
183
183
|
method: "POST",
|
|
184
184
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.CreateSection",
|
|
185
185
|
packageName: PACKAGE_NAME,
|
|
186
|
+
migrationOptions: {
|
|
187
|
+
optInTransformResponse: true
|
|
188
|
+
},
|
|
186
189
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
187
190
|
protoPath: "/v3/sections",
|
|
188
191
|
data: serializedData,
|
|
@@ -267,6 +270,9 @@ function bulkCreateSection(payload) {
|
|
|
267
270
|
method: "POST",
|
|
268
271
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.BulkCreateSection",
|
|
269
272
|
packageName: PACKAGE_NAME,
|
|
273
|
+
migrationOptions: {
|
|
274
|
+
optInTransformResponse: true
|
|
275
|
+
},
|
|
270
276
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
271
277
|
protoPath: "/v3/bulk/sections/create",
|
|
272
278
|
data: serializedData,
|
|
@@ -353,6 +359,9 @@ function bulkCreateSectionMigration(payload) {
|
|
|
353
359
|
method: "POST",
|
|
354
360
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.BulkCreateSectionMigration",
|
|
355
361
|
packageName: PACKAGE_NAME,
|
|
362
|
+
migrationOptions: {
|
|
363
|
+
optInTransformResponse: true
|
|
364
|
+
},
|
|
356
365
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
357
366
|
protoPath: "/v3/bulk/sections/create/migration",
|
|
358
367
|
data: serializedData,
|
|
@@ -407,6 +416,9 @@ function getSection(payload) {
|
|
|
407
416
|
method: "GET",
|
|
408
417
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.GetSection",
|
|
409
418
|
packageName: PACKAGE_NAME,
|
|
419
|
+
migrationOptions: {
|
|
420
|
+
optInTransformResponse: true
|
|
421
|
+
},
|
|
410
422
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
411
423
|
protoPath: "/v3/sections/{sectionId}",
|
|
412
424
|
data: payload,
|
|
@@ -491,6 +503,9 @@ function updateSection(payload) {
|
|
|
491
503
|
method: "PATCH",
|
|
492
504
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.UpdateSection",
|
|
493
505
|
packageName: PACKAGE_NAME,
|
|
506
|
+
migrationOptions: {
|
|
507
|
+
optInTransformResponse: true
|
|
508
|
+
},
|
|
494
509
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
495
510
|
protoPath: "/v3/sections/{section.id}",
|
|
496
511
|
data: serializedData,
|
|
@@ -543,6 +558,9 @@ function deleteSection(payload) {
|
|
|
543
558
|
method: "DELETE",
|
|
544
559
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.DeleteSection",
|
|
545
560
|
packageName: PACKAGE_NAME,
|
|
561
|
+
migrationOptions: {
|
|
562
|
+
optInTransformResponse: true
|
|
563
|
+
},
|
|
546
564
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
547
565
|
protoPath: "/v3/sections/{sectionId}",
|
|
548
566
|
data: payload,
|
|
@@ -561,6 +579,9 @@ function querySections(payload) {
|
|
|
561
579
|
method: "POST",
|
|
562
580
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.QuerySections",
|
|
563
581
|
packageName: PACKAGE_NAME,
|
|
582
|
+
migrationOptions: {
|
|
583
|
+
optInTransformResponse: true
|
|
584
|
+
},
|
|
564
585
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
565
586
|
protoPath: "/v3/sections/query",
|
|
566
587
|
data: payload,
|
|
@@ -613,6 +634,9 @@ function listSections(payload) {
|
|
|
613
634
|
method: "GET",
|
|
614
635
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.ListSections",
|
|
615
636
|
packageName: PACKAGE_NAME,
|
|
637
|
+
migrationOptions: {
|
|
638
|
+
optInTransformResponse: true
|
|
639
|
+
},
|
|
616
640
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
617
641
|
protoPath: "/v3/sections",
|
|
618
642
|
data: payload,
|
|
@@ -665,6 +689,9 @@ function cloneSection(payload) {
|
|
|
665
689
|
method: "POST",
|
|
666
690
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.CloneSection",
|
|
667
691
|
packageName: PACKAGE_NAME,
|
|
692
|
+
migrationOptions: {
|
|
693
|
+
optInTransformResponse: true
|
|
694
|
+
},
|
|
668
695
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
669
696
|
protoPath: "/v3/sections/{sectionId}/clone",
|
|
670
697
|
data: payload,
|
|
@@ -717,6 +744,9 @@ function moveSection(payload) {
|
|
|
717
744
|
method: "PATCH",
|
|
718
745
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.MoveSection",
|
|
719
746
|
packageName: PACKAGE_NAME,
|
|
747
|
+
migrationOptions: {
|
|
748
|
+
optInTransformResponse: true
|
|
749
|
+
},
|
|
720
750
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
721
751
|
protoPath: "/v3/sections/move",
|
|
722
752
|
data: payload,
|
|
@@ -769,6 +799,9 @@ function publishSection(payload) {
|
|
|
769
799
|
method: "PATCH",
|
|
770
800
|
methodFqn: "wix.onlineprograms.sections.v3.SectionsService.PublishSection",
|
|
771
801
|
packageName: PACKAGE_NAME,
|
|
802
|
+
migrationOptions: {
|
|
803
|
+
optInTransformResponse: true
|
|
804
|
+
},
|
|
772
805
|
url: resolveWixOnlineprogramsSectionsV3SectionsServiceUrl({
|
|
773
806
|
protoPath: "/v3/sections/publish",
|
|
774
807
|
data: payload,
|