@wix/auto_sdk_stores_info-sections-v-3 1.0.37 → 1.0.39
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 +30 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +30 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +299 -1
- package/build/cjs/meta.js +391 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +30 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +30 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +299 -1
- package/build/es/meta.mjs +351 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +30 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +30 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +299 -1
- package/build/internal/cjs/meta.js +391 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +30 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +30 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +299 -1
- package/build/internal/es/meta.mjs +351 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -195,6 +195,9 @@ function createInfoSection(payload) {
|
|
|
195
195
|
method: "POST",
|
|
196
196
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.CreateInfoSection",
|
|
197
197
|
packageName: PACKAGE_NAME,
|
|
198
|
+
migrationOptions: {
|
|
199
|
+
optInTransformResponse: true
|
|
200
|
+
},
|
|
198
201
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
199
202
|
protoPath: "/v3/info-sections",
|
|
200
203
|
data: serializedData,
|
|
@@ -270,6 +273,9 @@ function getInfoSection(payload) {
|
|
|
270
273
|
method: "GET",
|
|
271
274
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.GetInfoSection",
|
|
272
275
|
packageName: PACKAGE_NAME,
|
|
276
|
+
migrationOptions: {
|
|
277
|
+
optInTransformResponse: true
|
|
278
|
+
},
|
|
273
279
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
274
280
|
protoPath: "/v3/info-sections/{infoSectionId}",
|
|
275
281
|
data: payload,
|
|
@@ -392,6 +398,9 @@ function getOrCreateInfoSection(payload) {
|
|
|
392
398
|
method: "POST",
|
|
393
399
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.GetOrCreateInfoSection",
|
|
394
400
|
packageName: PACKAGE_NAME,
|
|
401
|
+
migrationOptions: {
|
|
402
|
+
optInTransformResponse: true
|
|
403
|
+
},
|
|
395
404
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
396
405
|
protoPath: "/v3/info-sections/get-or-create",
|
|
397
406
|
data: serializedData,
|
|
@@ -516,6 +525,9 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
516
525
|
method: "POST",
|
|
517
526
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkGetOrCreateInfoSections",
|
|
518
527
|
packageName: PACKAGE_NAME,
|
|
528
|
+
migrationOptions: {
|
|
529
|
+
optInTransformResponse: true
|
|
530
|
+
},
|
|
519
531
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
520
532
|
protoPath: "/v3/bulk/info-sections/get-or-create",
|
|
521
533
|
data: serializedData,
|
|
@@ -648,6 +660,9 @@ function updateInfoSection(payload) {
|
|
|
648
660
|
method: "PATCH",
|
|
649
661
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.UpdateInfoSection",
|
|
650
662
|
packageName: PACKAGE_NAME,
|
|
663
|
+
migrationOptions: {
|
|
664
|
+
optInTransformResponse: true
|
|
665
|
+
},
|
|
651
666
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
652
667
|
protoPath: "/v3/info-sections/{infoSection.id}",
|
|
653
668
|
data: serializedData,
|
|
@@ -723,6 +738,9 @@ function deleteInfoSection(payload) {
|
|
|
723
738
|
method: "DELETE",
|
|
724
739
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.DeleteInfoSection",
|
|
725
740
|
packageName: PACKAGE_NAME,
|
|
741
|
+
migrationOptions: {
|
|
742
|
+
optInTransformResponse: true
|
|
743
|
+
},
|
|
726
744
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
727
745
|
protoPath: "/v3/info-sections/{infoSectionId}",
|
|
728
746
|
data: payload,
|
|
@@ -741,6 +759,9 @@ function queryInfoSections(payload) {
|
|
|
741
759
|
method: "GET",
|
|
742
760
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.QueryInfoSections",
|
|
743
761
|
packageName: PACKAGE_NAME,
|
|
762
|
+
migrationOptions: {
|
|
763
|
+
optInTransformResponse: true
|
|
764
|
+
},
|
|
744
765
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
745
766
|
protoPath: "/v3/info-sections/query",
|
|
746
767
|
data: payload,
|
|
@@ -882,6 +903,9 @@ function bulkCreateInfoSections(payload) {
|
|
|
882
903
|
method: "POST",
|
|
883
904
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkCreateInfoSections",
|
|
884
905
|
packageName: PACKAGE_NAME,
|
|
906
|
+
migrationOptions: {
|
|
907
|
+
optInTransformResponse: true
|
|
908
|
+
},
|
|
885
909
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
886
910
|
protoPath: "/v3/bulk/info-sections/create",
|
|
887
911
|
data: serializedData,
|
|
@@ -1030,6 +1054,9 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1030
1054
|
method: "POST",
|
|
1031
1055
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkUpdateInfoSections",
|
|
1032
1056
|
packageName: PACKAGE_NAME,
|
|
1057
|
+
migrationOptions: {
|
|
1058
|
+
optInTransformResponse: true
|
|
1059
|
+
},
|
|
1033
1060
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
1034
1061
|
protoPath: "/v3/bulk/info-sections/update",
|
|
1035
1062
|
data: serializedData,
|
|
@@ -1109,6 +1136,9 @@ function bulkDeleteInfoSections(payload) {
|
|
|
1109
1136
|
method: "POST",
|
|
1110
1137
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkDeleteInfoSections",
|
|
1111
1138
|
packageName: PACKAGE_NAME,
|
|
1139
|
+
migrationOptions: {
|
|
1140
|
+
optInTransformResponse: true
|
|
1141
|
+
},
|
|
1112
1142
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
1113
1143
|
protoPath: "/v3/bulk/info-sections/delete",
|
|
1114
1144
|
data: payload,
|