@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
package/build/es/index.mjs
CHANGED
|
@@ -53,6 +53,9 @@ function queryVariants(payload) {
|
|
|
53
53
|
method: "POST",
|
|
54
54
|
methodFqn: "com.wix.stores.catalog.product.variants.reader.api.v3.ProductVariantsReader.QueryVariants",
|
|
55
55
|
packageName: PACKAGE_NAME,
|
|
56
|
+
migrationOptions: {
|
|
57
|
+
optInTransformResponse: true
|
|
58
|
+
},
|
|
56
59
|
url: resolveComWixStoresCatalogProductVariantsReaderApiV3ProductVariantsReaderUrl(
|
|
57
60
|
{ protoPath: "/v3/products/query-variants", data: payload, host }
|
|
58
61
|
),
|
|
@@ -108,6 +111,9 @@ function searchVariants(payload) {
|
|
|
108
111
|
method: "POST",
|
|
109
112
|
methodFqn: "com.wix.stores.catalog.product.variants.reader.api.v3.ProductVariantsReader.SearchVariants",
|
|
110
113
|
packageName: PACKAGE_NAME,
|
|
114
|
+
migrationOptions: {
|
|
115
|
+
optInTransformResponse: true
|
|
116
|
+
},
|
|
111
117
|
url: resolveComWixStoresCatalogProductVariantsReaderApiV3ProductVariantsReaderUrl(
|
|
112
118
|
{
|
|
113
119
|
protoPath: "/v3/products/search-variants",
|