@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.
|
|
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.
|
|
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": "
|
|
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
|
-
*
|
|
13011
|
+
* Creates a query to retrieve a list of rich content entities.
|
|
13012
13012
|
*
|
|
13013
|
-
*
|
|
13014
|
-
*
|
|
13015
|
-
*
|
|
13016
|
-
*
|
|
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
|
-
*
|
|
13019
|
-
*
|
|
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
|
-
*
|
|
13011
|
+
* Creates a query to retrieve a list of rich content entities.
|
|
13012
13012
|
*
|
|
13013
|
-
*
|
|
13014
|
-
*
|
|
13015
|
-
*
|
|
13016
|
-
*
|
|
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
|
-
*
|
|
13019
|
-
*
|
|
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
|
}
|