@wix/stores 1.0.317 → 1.0.319

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/stores",
3
- "version": "1.0.317",
3
+ "version": "1.0.319",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -29,7 +29,7 @@
29
29
  "@wix/stores_inventory": "1.0.68",
30
30
  "@wix/stores_inventory-items-v-3": "1.0.37",
31
31
  "@wix/stores_products": "1.0.93",
32
- "@wix/stores_products-v-3": "1.0.82",
32
+ "@wix/stores_products-v-3": "1.0.84",
33
33
  "@wix/stores_ribbons-v-3": "1.0.26",
34
34
  "@wix/stores_stores-locations-v-3": "1.0.32",
35
35
  "@wix/stores_subscription-options": "1.0.50",
@@ -58,5 +58,5 @@
58
58
  "fqdn": ""
59
59
  }
60
60
  },
61
- "falconPackageHash": "7ea49d204527ef31e94edf61abfb92eb6912ce3f88ea6e9c24d3db9e"
61
+ "falconPackageHash": "74870092bf54dbc4e9c8f72ff7bb8c47b7b23c0d0c7fd42bb6cf5024"
62
62
  }
@@ -14535,6 +14535,8 @@ interface SearchProductsRequest {
14535
14535
  * For example, if you have 2 variants: one visible with price 10 and another one not visible with price 20, when inside $matchItems you specify `visible:true` and `price > 15` nothing will be returned because there are no variants which satisfy both conditions.
14536
14536
  * You still can use `$isEmpty` and `$exists` operators for fields listed above.
14537
14537
  * See examples to understand supported capabilities.
14538
+ * This endpoint does not return variants-info, even though it is part of the entity, as including it would result in overly large response objects.
14539
+ * If you need variants-info, you can retrieve it for a specific product using the getProduct endpoint.
14538
14540
  */
14539
14541
  search?: CursorSearch;
14540
14542
  /** A list of requested fields to be included in the response. */
@@ -17312,12 +17314,13 @@ interface SearchProductsSignature {
17312
17314
  * Retrieves a list of up to 100 products, given the provided filtering, search expression, sorting, and cursor paging.
17313
17315
  * Pass supported values to the `fields` array in the request to include those fields in the response.
17314
17316
  *
17315
- *
17316
17317
  * To learn about working with _Search_ endpoints, see
17317
17318
  * [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
17318
17319
  * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
17319
17320
  *
17320
- * > **Note:** To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17321
+ * > **Notes:**
17322
+ * + This method does not return `variantsInfo`. To retrieve product variants, use the Get Product method.
17323
+ * + To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17321
17324
  */
17322
17325
  (options?: SearchProductsOptions | undefined): Promise<V3SearchProductsResponse & V3SearchProductsResponseNonNullableFields>;
17323
17326
  }
@@ -17327,12 +17330,13 @@ interface QueryProductsSignature {
17327
17330
  * Retrieves a list of up to 100 products, given the provided filtering, sorting, and cursor paging.
17328
17331
  * Pass supported values to the `fields` array in the request to include those fields in the response.
17329
17332
  *
17330
- *
17331
17333
  * To learn about working with _Query_ endpoints, see
17332
17334
  * [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
17333
17335
  * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
17334
17336
  *
17335
- * > **Note:** To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17337
+ * > **Notes:**
17338
+ * + This method does not return `variantsInfo`. To retrieve product variants, use the Get Product method.
17339
+ * + To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17336
17340
  */
17337
17341
  (options?: QueryProductsOptions | undefined): ProductsQueryBuilder;
17338
17342
  }
@@ -14535,6 +14535,8 @@ interface SearchProductsRequest {
14535
14535
  * For example, if you have 2 variants: one visible with price 10 and another one not visible with price 20, when inside $matchItems you specify `visible:true` and `price > 15` nothing will be returned because there are no variants which satisfy both conditions.
14536
14536
  * You still can use `$isEmpty` and `$exists` operators for fields listed above.
14537
14537
  * See examples to understand supported capabilities.
14538
+ * This endpoint does not return variants-info, even though it is part of the entity, as including it would result in overly large response objects.
14539
+ * If you need variants-info, you can retrieve it for a specific product using the getProduct endpoint.
14538
14540
  */
14539
14541
  search?: CursorSearch;
14540
14542
  /** A list of requested fields to be included in the response. */
@@ -17312,12 +17314,13 @@ interface SearchProductsSignature {
17312
17314
  * Retrieves a list of up to 100 products, given the provided filtering, search expression, sorting, and cursor paging.
17313
17315
  * Pass supported values to the `fields` array in the request to include those fields in the response.
17314
17316
  *
17315
- *
17316
17317
  * To learn about working with _Search_ endpoints, see
17317
17318
  * [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
17318
17319
  * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
17319
17320
  *
17320
- * > **Note:** To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17321
+ * > **Notes:**
17322
+ * + This method does not return `variantsInfo`. To retrieve product variants, use the Get Product method.
17323
+ * + To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17321
17324
  */
17322
17325
  (options?: SearchProductsOptions | undefined): Promise<V3SearchProductsResponse & V3SearchProductsResponseNonNullableFields>;
17323
17326
  }
@@ -17327,12 +17330,13 @@ interface QueryProductsSignature {
17327
17330
  * Retrieves a list of up to 100 products, given the provided filtering, sorting, and cursor paging.
17328
17331
  * Pass supported values to the `fields` array in the request to include those fields in the response.
17329
17332
  *
17330
- *
17331
17333
  * To learn about working with _Query_ endpoints, see
17332
17334
  * [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
17333
17335
  * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
17334
17336
  *
17335
- * > **Note:** To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17337
+ * > **Notes:**
17338
+ * + This method does not return `variantsInfo`. To retrieve product variants, use the Get Product method.
17339
+ * + To retrieve a non-visible product (`visible: false`), your app must have the required `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope.
17336
17340
  */
17337
17341
  (options?: QueryProductsOptions | undefined): ProductsQueryBuilder;
17338
17342
  }