@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
|
@@ -130,6 +130,9 @@ function createInfoSection(payload) {
|
|
|
130
130
|
method: "POST",
|
|
131
131
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.CreateInfoSection",
|
|
132
132
|
packageName: PACKAGE_NAME,
|
|
133
|
+
migrationOptions: {
|
|
134
|
+
optInTransformResponse: true
|
|
135
|
+
},
|
|
133
136
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
134
137
|
protoPath: "/v3/info-sections",
|
|
135
138
|
data: serializedData,
|
|
@@ -205,6 +208,9 @@ function getInfoSection(payload) {
|
|
|
205
208
|
method: "GET",
|
|
206
209
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.GetInfoSection",
|
|
207
210
|
packageName: PACKAGE_NAME,
|
|
211
|
+
migrationOptions: {
|
|
212
|
+
optInTransformResponse: true
|
|
213
|
+
},
|
|
208
214
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
209
215
|
protoPath: "/v3/info-sections/{infoSectionId}",
|
|
210
216
|
data: payload,
|
|
@@ -327,6 +333,9 @@ function getOrCreateInfoSection(payload) {
|
|
|
327
333
|
method: "POST",
|
|
328
334
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.GetOrCreateInfoSection",
|
|
329
335
|
packageName: PACKAGE_NAME,
|
|
336
|
+
migrationOptions: {
|
|
337
|
+
optInTransformResponse: true
|
|
338
|
+
},
|
|
330
339
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
331
340
|
protoPath: "/v3/info-sections/get-or-create",
|
|
332
341
|
data: serializedData,
|
|
@@ -451,6 +460,9 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
451
460
|
method: "POST",
|
|
452
461
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkGetOrCreateInfoSections",
|
|
453
462
|
packageName: PACKAGE_NAME,
|
|
463
|
+
migrationOptions: {
|
|
464
|
+
optInTransformResponse: true
|
|
465
|
+
},
|
|
454
466
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
455
467
|
protoPath: "/v3/bulk/info-sections/get-or-create",
|
|
456
468
|
data: serializedData,
|
|
@@ -583,6 +595,9 @@ function updateInfoSection(payload) {
|
|
|
583
595
|
method: "PATCH",
|
|
584
596
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.UpdateInfoSection",
|
|
585
597
|
packageName: PACKAGE_NAME,
|
|
598
|
+
migrationOptions: {
|
|
599
|
+
optInTransformResponse: true
|
|
600
|
+
},
|
|
586
601
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
587
602
|
protoPath: "/v3/info-sections/{infoSection.id}",
|
|
588
603
|
data: serializedData,
|
|
@@ -658,6 +673,9 @@ function deleteInfoSection(payload) {
|
|
|
658
673
|
method: "DELETE",
|
|
659
674
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.DeleteInfoSection",
|
|
660
675
|
packageName: PACKAGE_NAME,
|
|
676
|
+
migrationOptions: {
|
|
677
|
+
optInTransformResponse: true
|
|
678
|
+
},
|
|
661
679
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
662
680
|
protoPath: "/v3/info-sections/{infoSectionId}",
|
|
663
681
|
data: payload,
|
|
@@ -676,6 +694,9 @@ function queryInfoSections(payload) {
|
|
|
676
694
|
method: "GET",
|
|
677
695
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.QueryInfoSections",
|
|
678
696
|
packageName: PACKAGE_NAME,
|
|
697
|
+
migrationOptions: {
|
|
698
|
+
optInTransformResponse: true
|
|
699
|
+
},
|
|
679
700
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
680
701
|
protoPath: "/v3/info-sections/query",
|
|
681
702
|
data: payload,
|
|
@@ -817,6 +838,9 @@ function bulkCreateInfoSections(payload) {
|
|
|
817
838
|
method: "POST",
|
|
818
839
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkCreateInfoSections",
|
|
819
840
|
packageName: PACKAGE_NAME,
|
|
841
|
+
migrationOptions: {
|
|
842
|
+
optInTransformResponse: true
|
|
843
|
+
},
|
|
820
844
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
821
845
|
protoPath: "/v3/bulk/info-sections/create",
|
|
822
846
|
data: serializedData,
|
|
@@ -965,6 +989,9 @@ function bulkUpdateInfoSections(payload) {
|
|
|
965
989
|
method: "POST",
|
|
966
990
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkUpdateInfoSections",
|
|
967
991
|
packageName: PACKAGE_NAME,
|
|
992
|
+
migrationOptions: {
|
|
993
|
+
optInTransformResponse: true
|
|
994
|
+
},
|
|
968
995
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
969
996
|
protoPath: "/v3/bulk/info-sections/update",
|
|
970
997
|
data: serializedData,
|
|
@@ -1044,6 +1071,9 @@ function bulkDeleteInfoSections(payload) {
|
|
|
1044
1071
|
method: "POST",
|
|
1045
1072
|
methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkDeleteInfoSections",
|
|
1046
1073
|
packageName: PACKAGE_NAME,
|
|
1074
|
+
migrationOptions: {
|
|
1075
|
+
optInTransformResponse: true
|
|
1076
|
+
},
|
|
1047
1077
|
url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
|
|
1048
1078
|
protoPath: "/v3/bulk/info-sections/delete",
|
|
1049
1079
|
data: payload,
|