@wix/events 1.0.346 → 1.0.347

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/events",
3
- "version": "1.0.346",
3
+ "version": "1.0.347",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -27,7 +27,7 @@
27
27
  "@wix/events_notifications": "1.0.43",
28
28
  "@wix/events_orders": "1.0.62",
29
29
  "@wix/events_policies": "1.0.49",
30
- "@wix/events_ricos": "1.0.21",
30
+ "@wix/events_ricos": "1.0.22",
31
31
  "@wix/events_rsvp": "1.0.53",
32
32
  "@wix/events_rsvp-v-2": "1.0.24",
33
33
  "@wix/events_schedule": "1.0.47",
@@ -61,5 +61,5 @@
61
61
  "fqdn": ""
62
62
  }
63
63
  },
64
- "falconPackageHash": "3eb0047d59a8a11ddd8a8d5636a1b3a581efc8bc1ba5b308d150dba1"
64
+ "falconPackageHash": "6f0695d23d7f9d22e40fb43233b452fe339e71c648437cd04a0041d9"
65
65
  }
@@ -13008,15 +13008,20 @@ interface QueryRichContentsSignature {
13008
13008
  declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
13009
13009
  interface QueryRichContentSignature {
13010
13010
  /**
13011
- * Retrieves a list of rich content entities, given the provided paging, filtering, and sorting.
13011
+ * Creates a query to retrieve a list of rich content entities.
13012
13012
  *
13013
- * Query Rich Content runs with these defaults, which you can override:
13014
- * - `createdDate` is sorted in `ASC` order
13015
- * - `paging.limit` is `100`
13016
- * - `paging.offset` is `0`
13013
+ * The `queryRichContent()` function builds a query to retrieve a list of events and returns a `RichContentQueryBuilder` object.
13014
+ *
13015
+ * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
13016
+ *
13017
+ * You can refine the query by chaining `RichContentQueryBuilder` functions onto the query. `RichContentQueryBuilder` functions enable you to sort, filter, and control the results `queryRichContent()` returns.
13018
+ *
13019
+ * `queryRichContent()` runs with these `RichContentQueryBuilder` defaults, which you can override:
13017
13020
  *
13018
- * For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/rich-content/filter-and-sort).
13019
- * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
13021
+ * - `skip(0)`
13022
+ * - `limit(50)`
13023
+ * - `descending("_createdDate")`
13024
+ * The functions that are chained to `queryRichContent()` are applied in the order they're called. For example, if you apply ascending('eventId') and then descending('id'), the results are sorted first by the event ID, and then, if there are multiple results with the same event ID, the items are sorted by ID.
13020
13025
  */
13021
13026
  (): RichContentQueryBuilder;
13022
13027
  }
@@ -13008,15 +13008,20 @@ interface QueryRichContentsSignature {
13008
13008
  declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
13009
13009
  interface QueryRichContentSignature {
13010
13010
  /**
13011
- * Retrieves a list of rich content entities, given the provided paging, filtering, and sorting.
13011
+ * Creates a query to retrieve a list of rich content entities.
13012
13012
  *
13013
- * Query Rich Content runs with these defaults, which you can override:
13014
- * - `createdDate` is sorted in `ASC` order
13015
- * - `paging.limit` is `100`
13016
- * - `paging.offset` is `0`
13013
+ * The `queryRichContent()` function builds a query to retrieve a list of events and returns a `RichContentQueryBuilder` object.
13014
+ *
13015
+ * The returned object contains the query definition, which is typically used to run the query using the `find()` function.
13016
+ *
13017
+ * You can refine the query by chaining `RichContentQueryBuilder` functions onto the query. `RichContentQueryBuilder` functions enable you to sort, filter, and control the results `queryRichContent()` returns.
13018
+ *
13019
+ * `queryRichContent()` runs with these `RichContentQueryBuilder` defaults, which you can override:
13017
13020
  *
13018
- * For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/rich-content/filter-and-sort).
13019
- * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
13021
+ * - `skip(0)`
13022
+ * - `limit(50)`
13023
+ * - `descending("_createdDate")`
13024
+ * The functions that are chained to `queryRichContent()` are applied in the order they're called. For example, if you apply ascending('eventId') and then descending('id'), the results are sorted first by the event ID, and then, if there are multiple results with the same event ID, the items are sorted by ID.
13020
13025
  */
13021
13026
  (): RichContentQueryBuilder;
13022
13027
  }