@wix/auto_sdk_stores_read-only-variants-v-3 1.0.28 → 1.0.30
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 +6 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +6 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3689 -1
- package/build/cjs/meta.js +690 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3689 -1
- package/build/es/meta.mjs +616 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +6 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +6 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3689 -1
- package/build/internal/cjs/meta.js +690 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3689 -1
- package/build/internal/es/meta.mjs +616 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -151,6 +151,9 @@ function queryVariants(payload) {
|
|
|
151
151
|
method: "POST",
|
|
152
152
|
methodFqn: "com.wix.stores.catalog.product.variants.reader.api.v3.ProductVariantsReader.QueryVariants",
|
|
153
153
|
packageName: PACKAGE_NAME,
|
|
154
|
+
migrationOptions: {
|
|
155
|
+
optInTransformResponse: true
|
|
156
|
+
},
|
|
154
157
|
url: resolveComWixStoresCatalogProductVariantsReaderApiV3ProductVariantsReaderUrl(
|
|
155
158
|
{ protoPath: "/v3/products/query-variants", data: payload, host }
|
|
156
159
|
),
|
|
@@ -206,6 +209,9 @@ function searchVariants(payload) {
|
|
|
206
209
|
method: "POST",
|
|
207
210
|
methodFqn: "com.wix.stores.catalog.product.variants.reader.api.v3.ProductVariantsReader.SearchVariants",
|
|
208
211
|
packageName: PACKAGE_NAME,
|
|
212
|
+
migrationOptions: {
|
|
213
|
+
optInTransformResponse: true
|
|
214
|
+
},
|
|
209
215
|
url: resolveComWixStoresCatalogProductVariantsReaderApiV3ProductVariantsReaderUrl(
|
|
210
216
|
{
|
|
211
217
|
protoPath: "/v3/products/search-variants",
|