@wix/auto_sdk_stores_info-sections-v-3 1.0.36 → 1.0.38

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.
@@ -140,14 +140,14 @@ declare const bulkDeleteInfoSections: MaybeContext<BuildRESTFunction<typeof bulk
140
140
  /**
141
141
  * Triggered when an info section is created.
142
142
  */
143
- declare const onInfoSectionCreated: BuildEventDefinition<typeof onInfoSectionCreated$1>;
143
+ declare const onInfoSectionCreated: BuildEventDefinition<typeof onInfoSectionCreated$1> & typeof onInfoSectionCreated$1;
144
144
  /**
145
145
  * Triggered when an info section is deleted.
146
146
  */
147
- declare const onInfoSectionDeleted: BuildEventDefinition<typeof onInfoSectionDeleted$1>;
147
+ declare const onInfoSectionDeleted: BuildEventDefinition<typeof onInfoSectionDeleted$1> & typeof onInfoSectionDeleted$1;
148
148
  /**
149
149
  * Triggered when an info section is updated.
150
150
  */
151
- declare const onInfoSectionUpdated: BuildEventDefinition<typeof onInfoSectionUpdated$1>;
151
+ declare const onInfoSectionUpdated: BuildEventDefinition<typeof onInfoSectionUpdated$1> & typeof onInfoSectionUpdated$1;
152
152
 
153
153
  export { BulkCreateInfoSectionsOptions, BulkCreateInfoSectionsResponse, BulkCreateInfoSectionsValidationErrors, BulkDeleteInfoSectionsResponse, BulkGetOrCreateInfoSectionsOptions, BulkGetOrCreateInfoSectionsResponse, BulkGetOrCreateInfoSectionsValidationErrors, BulkUpdateInfoSectionsOptions, BulkUpdateInfoSectionsResponse, CreateInfoSectionValidationErrors, GetInfoSectionOptions, GetOrCreateInfoSectionOptions, GetOrCreateInfoSectionResponse, GetOrCreateInfoSectionValidationErrors, InfoSection, InfoSectionCreatedEnvelope, InfoSectionDeletedEnvelope, InfoSectionUpdatedEnvelope, InfoSectionsQueryBuilder, MaskedInfoSection, QueryInfoSectionsOptions, UpdateInfoSection, UpdateInfoSectionOptions, bulkCreateInfoSections, bulkDeleteInfoSections, bulkGetOrCreateInfoSections, bulkUpdateInfoSections, createInfoSection, deleteInfoSection, getInfoSection, getOrCreateInfoSection, onInfoSectionCreated, onInfoSectionDeleted, onInfoSectionUpdated, queryInfoSections, updateInfoSection };
@@ -205,6 +205,9 @@ function createInfoSection(payload) {
205
205
  method: "POST",
206
206
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.CreateInfoSection",
207
207
  packageName: PACKAGE_NAME,
208
+ migrationOptions: {
209
+ optInTransformResponse: true
210
+ },
208
211
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
209
212
  protoPath: "/v3/info-sections",
210
213
  data: serializedData,
@@ -280,6 +283,9 @@ function getInfoSection(payload) {
280
283
  method: "GET",
281
284
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.GetInfoSection",
282
285
  packageName: PACKAGE_NAME,
286
+ migrationOptions: {
287
+ optInTransformResponse: true
288
+ },
283
289
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
284
290
  protoPath: "/v3/info-sections/{infoSectionId}",
285
291
  data: payload,
@@ -402,6 +408,9 @@ function getOrCreateInfoSection(payload) {
402
408
  method: "POST",
403
409
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.GetOrCreateInfoSection",
404
410
  packageName: PACKAGE_NAME,
411
+ migrationOptions: {
412
+ optInTransformResponse: true
413
+ },
405
414
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
406
415
  protoPath: "/v3/info-sections/get-or-create",
407
416
  data: serializedData,
@@ -526,6 +535,9 @@ function bulkGetOrCreateInfoSections(payload) {
526
535
  method: "POST",
527
536
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkGetOrCreateInfoSections",
528
537
  packageName: PACKAGE_NAME,
538
+ migrationOptions: {
539
+ optInTransformResponse: true
540
+ },
529
541
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
530
542
  protoPath: "/v3/bulk/info-sections/get-or-create",
531
543
  data: serializedData,
@@ -658,6 +670,9 @@ function updateInfoSection(payload) {
658
670
  method: "PATCH",
659
671
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.UpdateInfoSection",
660
672
  packageName: PACKAGE_NAME,
673
+ migrationOptions: {
674
+ optInTransformResponse: true
675
+ },
661
676
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
662
677
  protoPath: "/v3/info-sections/{infoSection.id}",
663
678
  data: serializedData,
@@ -733,6 +748,9 @@ function deleteInfoSection(payload) {
733
748
  method: "DELETE",
734
749
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.DeleteInfoSection",
735
750
  packageName: PACKAGE_NAME,
751
+ migrationOptions: {
752
+ optInTransformResponse: true
753
+ },
736
754
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
737
755
  protoPath: "/v3/info-sections/{infoSectionId}",
738
756
  data: payload,
@@ -751,6 +769,9 @@ function queryInfoSections(payload) {
751
769
  method: "GET",
752
770
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.QueryInfoSections",
753
771
  packageName: PACKAGE_NAME,
772
+ migrationOptions: {
773
+ optInTransformResponse: true
774
+ },
754
775
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
755
776
  protoPath: "/v3/info-sections/query",
756
777
  data: payload,
@@ -892,6 +913,9 @@ function bulkCreateInfoSections(payload) {
892
913
  method: "POST",
893
914
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkCreateInfoSections",
894
915
  packageName: PACKAGE_NAME,
916
+ migrationOptions: {
917
+ optInTransformResponse: true
918
+ },
895
919
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
896
920
  protoPath: "/v3/bulk/info-sections/create",
897
921
  data: serializedData,
@@ -1040,6 +1064,9 @@ function bulkUpdateInfoSections(payload) {
1040
1064
  method: "POST",
1041
1065
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkUpdateInfoSections",
1042
1066
  packageName: PACKAGE_NAME,
1067
+ migrationOptions: {
1068
+ optInTransformResponse: true
1069
+ },
1043
1070
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
1044
1071
  protoPath: "/v3/bulk/info-sections/update",
1045
1072
  data: serializedData,
@@ -1119,6 +1146,9 @@ function bulkDeleteInfoSections(payload) {
1119
1146
  method: "POST",
1120
1147
  methodFqn: "com.wix.stores.catalog.info.section.v3.InfoSectionsService.BulkDeleteInfoSections",
1121
1148
  packageName: PACKAGE_NAME,
1149
+ migrationOptions: {
1150
+ optInTransformResponse: true
1151
+ },
1122
1152
  url: resolveComWixStoresCatalogInfoSectionV3InfoSectionsServiceUrl({
1123
1153
  protoPath: "/v3/bulk/info-sections/delete",
1124
1154
  data: payload,
@@ -1975,9 +2005,15 @@ var queryInfoSections4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModu
1975
2005
  var bulkCreateInfoSections4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkCreateInfoSections3);
1976
2006
  var bulkUpdateInfoSections4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateInfoSections3);
1977
2007
  var bulkDeleteInfoSections4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkDeleteInfoSections3);
1978
- var onInfoSectionCreated2 = (0, import_event_definition_modules.createEventModule)(onInfoSectionCreated);
1979
- var onInfoSectionDeleted2 = (0, import_event_definition_modules.createEventModule)(onInfoSectionDeleted);
1980
- var onInfoSectionUpdated2 = (0, import_event_definition_modules.createEventModule)(onInfoSectionUpdated);
2008
+ var onInfoSectionCreated2 = (0, import_event_definition_modules.createEventModule)(
2009
+ onInfoSectionCreated
2010
+ );
2011
+ var onInfoSectionDeleted2 = (0, import_event_definition_modules.createEventModule)(
2012
+ onInfoSectionDeleted
2013
+ );
2014
+ var onInfoSectionUpdated2 = (0, import_event_definition_modules.createEventModule)(
2015
+ onInfoSectionUpdated
2016
+ );
1981
2017
  // Annotate the CommonJS export names for ESM import in node:
1982
2018
  0 && (module.exports = {
1983
2019
  Alignment,