@wix/calendar 1.0.54 → 1.0.56
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/calendar",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/calendar_event-views": "1.0.
|
|
25
|
-
"@wix/calendar_events": "1.0.
|
|
26
|
-
"@wix/calendar_participations": "1.0.
|
|
27
|
-
"@wix/calendar_schedule-time-frames": "1.0.
|
|
28
|
-
"@wix/calendar_schedules": "1.0.
|
|
24
|
+
"@wix/calendar_event-views": "1.0.20",
|
|
25
|
+
"@wix/calendar_events": "1.0.34",
|
|
26
|
+
"@wix/calendar_participations": "1.0.15",
|
|
27
|
+
"@wix/calendar_schedule-time-frames": "1.0.23",
|
|
28
|
+
"@wix/calendar_schedules": "1.0.30"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"glob": "^10.4.1",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "fc08d9aabf7721dec39cfbbceb73c0cdba30261dcb94b82fb6bec7b0"
|
|
54
54
|
}
|
|
@@ -4255,8 +4255,8 @@ interface Participant {
|
|
|
4255
4255
|
/** Participant's email address. */
|
|
4256
4256
|
email?: string | null;
|
|
4257
4257
|
/**
|
|
4258
|
-
* [Contact](https://dev.wix.com/docs/
|
|
4259
|
-
* ID of the
|
|
4258
|
+
* [Contact](https://dev.wix.com/docs/sdk/backend-modules/crm/contacts/introduction)
|
|
4259
|
+
* ID of the participant.
|
|
4260
4260
|
*/
|
|
4261
4261
|
contactId?: string | null;
|
|
4262
4262
|
}
|
|
@@ -4692,20 +4692,23 @@ interface GetParticipationSignature {
|
|
|
4692
4692
|
declare function queryParticipations$1(httpClient: HttpClient): QueryParticipationsSignature;
|
|
4693
4693
|
interface QueryParticipationsSignature {
|
|
4694
4694
|
/**
|
|
4695
|
-
*
|
|
4695
|
+
* Creates a query to retrieve a list of participations.
|
|
4696
|
+
*
|
|
4697
|
+
* The `queryParticipations()` function builds a query to retrieve a list of participations and returns a `ParticipationsQueryBuilder` object.
|
|
4696
4698
|
*
|
|
4699
|
+
* The returned object contains the query definition, which is typically used to run the query using the [find()](https://dev.wix.com/docs/sdk/backend-modules/calendar/participations/participations-query-builder/find) function.
|
|
4700
|
+
*
|
|
4701
|
+
* You can refine the query by chaining `ParticipationsQueryBuilder` functions onto the query. `ParticipationsQueryBuilder` functions enable you to sort, filter, and control the results that `queryParticipations()` returns.
|
|
4702
|
+
*
|
|
4703
|
+
* `queryParticipations()` runs with the following `ParticipationsQueryBuilder` default that you can override:
|
|
4704
|
+
*
|
|
4705
|
+
* + `limit` is `50`.
|
|
4706
|
+
* + Sorted by `createdDate` in ascending order.
|
|
4697
4707
|
*
|
|
4698
|
-
*
|
|
4699
|
-
* - `createdDate` is sorted in `DESC` order
|
|
4700
|
-
* - `cursorPaging.limit` is `50`
|
|
4708
|
+
* The functions that are chained to `queryParticipations()` are applied in the order they are called.
|
|
4701
4709
|
*
|
|
4702
|
-
* For
|
|
4703
|
-
* see [Calendar Participations V3: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/calendar/participations-v3/supported-filters-and-sorting).
|
|
4710
|
+
* The following `ParticipationsQueryBuilder` functions are supported for the `queryParticipations()` function. For a full description of the participations object, see the object returned for the [items](https://dev.wix.com/docs/sdk/backend-modules/calendar/participations/participations-query-result/items) property in `ParticipationsQueryResult`.
|
|
4704
4711
|
*
|
|
4705
|
-
* To learn about working with _Query_ endpoints, see
|
|
4706
|
-
* [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
|
|
4707
|
-
* [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging),
|
|
4708
|
-
* and [Field Projection](https://dev.wix.com/docs/rest/articles/getting-started/field-projection).
|
|
4709
4712
|
*/
|
|
4710
4713
|
(): ParticipationsQueryBuilder;
|
|
4711
4714
|
}
|
|
@@ -4255,8 +4255,8 @@ interface Participant {
|
|
|
4255
4255
|
/** Participant's email address. */
|
|
4256
4256
|
email?: string | null;
|
|
4257
4257
|
/**
|
|
4258
|
-
* [Contact](https://dev.wix.com/docs/
|
|
4259
|
-
* ID of the
|
|
4258
|
+
* [Contact](https://dev.wix.com/docs/sdk/backend-modules/crm/contacts/introduction)
|
|
4259
|
+
* ID of the participant.
|
|
4260
4260
|
*/
|
|
4261
4261
|
contactId?: string | null;
|
|
4262
4262
|
}
|
|
@@ -4692,20 +4692,23 @@ interface GetParticipationSignature {
|
|
|
4692
4692
|
declare function queryParticipations$1(httpClient: HttpClient): QueryParticipationsSignature;
|
|
4693
4693
|
interface QueryParticipationsSignature {
|
|
4694
4694
|
/**
|
|
4695
|
-
*
|
|
4695
|
+
* Creates a query to retrieve a list of participations.
|
|
4696
|
+
*
|
|
4697
|
+
* The `queryParticipations()` function builds a query to retrieve a list of participations and returns a `ParticipationsQueryBuilder` object.
|
|
4696
4698
|
*
|
|
4699
|
+
* The returned object contains the query definition, which is typically used to run the query using the [find()](https://dev.wix.com/docs/sdk/backend-modules/calendar/participations/participations-query-builder/find) function.
|
|
4700
|
+
*
|
|
4701
|
+
* You can refine the query by chaining `ParticipationsQueryBuilder` functions onto the query. `ParticipationsQueryBuilder` functions enable you to sort, filter, and control the results that `queryParticipations()` returns.
|
|
4702
|
+
*
|
|
4703
|
+
* `queryParticipations()` runs with the following `ParticipationsQueryBuilder` default that you can override:
|
|
4704
|
+
*
|
|
4705
|
+
* + `limit` is `50`.
|
|
4706
|
+
* + Sorted by `createdDate` in ascending order.
|
|
4697
4707
|
*
|
|
4698
|
-
*
|
|
4699
|
-
* - `createdDate` is sorted in `DESC` order
|
|
4700
|
-
* - `cursorPaging.limit` is `50`
|
|
4708
|
+
* The functions that are chained to `queryParticipations()` are applied in the order they are called.
|
|
4701
4709
|
*
|
|
4702
|
-
* For
|
|
4703
|
-
* see [Calendar Participations V3: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/calendar/participations-v3/supported-filters-and-sorting).
|
|
4710
|
+
* The following `ParticipationsQueryBuilder` functions are supported for the `queryParticipations()` function. For a full description of the participations object, see the object returned for the [items](https://dev.wix.com/docs/sdk/backend-modules/calendar/participations/participations-query-result/items) property in `ParticipationsQueryResult`.
|
|
4704
4711
|
*
|
|
4705
|
-
* To learn about working with _Query_ endpoints, see
|
|
4706
|
-
* [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
|
|
4707
|
-
* [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging),
|
|
4708
|
-
* and [Field Projection](https://dev.wix.com/docs/rest/articles/getting-started/field-projection).
|
|
4709
4712
|
*/
|
|
4710
4713
|
(): ParticipationsQueryBuilder;
|
|
4711
4714
|
}
|
|
@@ -3009,8 +3009,8 @@ interface Participant {
|
|
|
3009
3009
|
/** Participant's email address. */
|
|
3010
3010
|
email?: string | null;
|
|
3011
3011
|
/**
|
|
3012
|
-
* [Contact](https://dev.wix.com/docs/
|
|
3013
|
-
* ID of the
|
|
3012
|
+
* [Contact](https://dev.wix.com/docs/sdk/backend-modules/crm/contacts/introduction)
|
|
3013
|
+
* ID of the participant.
|
|
3014
3014
|
*/
|
|
3015
3015
|
contactId?: string | null;
|
|
3016
3016
|
}
|