@wix/calendar 1.0.41 → 1.0.43
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.43",
|
|
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.
|
|
24
|
+
"@wix/calendar_event-views": "1.0.13",
|
|
25
|
+
"@wix/calendar_events": "1.0.26",
|
|
26
26
|
"@wix/calendar_participations": "1.0.12",
|
|
27
27
|
"@wix/calendar_schedule-time-frames": "1.0.19",
|
|
28
|
-
"@wix/calendar_schedules": "1.0.
|
|
28
|
+
"@wix/calendar_schedules": "1.0.23"
|
|
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": "baa5bf843a61808e83fd4b53644aaad3d69364a84784413ad91a0e58"
|
|
54
54
|
}
|
|
@@ -540,7 +540,11 @@ interface Event$1 {
|
|
|
540
540
|
title?: string | null;
|
|
541
541
|
/** Information about when the event starts. */
|
|
542
542
|
start?: ZonedDate$2;
|
|
543
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* Information about when the event ends.
|
|
545
|
+
*
|
|
546
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
547
|
+
*/
|
|
544
548
|
end?: ZonedDate$2;
|
|
545
549
|
/**
|
|
546
550
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -635,17 +639,20 @@ interface Event$1 {
|
|
|
635
639
|
remainingCapacity?: number | null;
|
|
636
640
|
/**
|
|
637
641
|
* Information about the event's participants.
|
|
642
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
638
643
|
* @readonly
|
|
639
644
|
*/
|
|
640
645
|
participants?: Participants$1;
|
|
641
646
|
/**
|
|
642
|
-
* Information about the event's online conferencing
|
|
647
|
+
* Information about the event's online conferencing.
|
|
648
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
643
649
|
*
|
|
644
650
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
645
651
|
*/
|
|
646
652
|
conferencingDetails?: ConferencingDetails$2;
|
|
647
653
|
/**
|
|
648
654
|
* Additional notes about the event.
|
|
655
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
649
656
|
*
|
|
650
657
|
* Min: 1 character
|
|
651
658
|
* Max: 5000 characters
|
|
@@ -1965,7 +1972,7 @@ interface ListEventsByContactIdRequest {
|
|
|
1965
1972
|
/**
|
|
1966
1973
|
* Local start date and time from which events are returned in
|
|
1967
1974
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1968
|
-
* `2024-01-30T13:30:00`.
|
|
1975
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
1969
1976
|
*
|
|
1970
1977
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
1971
1978
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -1975,7 +1982,7 @@ interface ListEventsByContactIdRequest {
|
|
|
1975
1982
|
* Local end date and time up to which events are returned in
|
|
1976
1983
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1977
1984
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
1978
|
-
* `
|
|
1985
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
1979
1986
|
*
|
|
1980
1987
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
1981
1988
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -2049,7 +2056,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
2049
2056
|
/**
|
|
2050
2057
|
* Local start date and time from which events are returned in
|
|
2051
2058
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2052
|
-
* `2024-01-30T13:30:00`.
|
|
2059
|
+
* `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2053
2060
|
*
|
|
2054
2061
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2055
2062
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2059,7 +2066,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
2059
2066
|
* Local end date and time up to which events are returned in
|
|
2060
2067
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2061
2068
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2062
|
-
* `fromLocalDate`.
|
|
2069
|
+
* `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2063
2070
|
*
|
|
2064
2071
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2065
2072
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -2494,7 +2501,11 @@ interface UpdateEvent {
|
|
|
2494
2501
|
title?: string | null;
|
|
2495
2502
|
/** Information about when the event starts. */
|
|
2496
2503
|
start?: ZonedDate$2;
|
|
2497
|
-
/**
|
|
2504
|
+
/**
|
|
2505
|
+
* Information about when the event ends.
|
|
2506
|
+
*
|
|
2507
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
2508
|
+
*/
|
|
2498
2509
|
end?: ZonedDate$2;
|
|
2499
2510
|
/**
|
|
2500
2511
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -2589,17 +2600,20 @@ interface UpdateEvent {
|
|
|
2589
2600
|
remainingCapacity?: number | null;
|
|
2590
2601
|
/**
|
|
2591
2602
|
* Information about the event's participants.
|
|
2603
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
2592
2604
|
* @readonly
|
|
2593
2605
|
*/
|
|
2594
2606
|
participants?: Participants$1;
|
|
2595
2607
|
/**
|
|
2596
|
-
* Information about the event's online conferencing
|
|
2608
|
+
* Information about the event's online conferencing.
|
|
2609
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
2597
2610
|
*
|
|
2598
2611
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
2599
2612
|
*/
|
|
2600
2613
|
conferencingDetails?: ConferencingDetails$2;
|
|
2601
2614
|
/**
|
|
2602
2615
|
* Additional notes about the event.
|
|
2616
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
2603
2617
|
*
|
|
2604
2618
|
* Min: 1 character
|
|
2605
2619
|
* Max: 5000 characters
|
|
@@ -2747,7 +2761,7 @@ interface ListEventsByContactIdOptions {
|
|
|
2747
2761
|
/**
|
|
2748
2762
|
* Local start date and time from which events are returned in
|
|
2749
2763
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2750
|
-
* `2024-01-30T13:30:00`.
|
|
2764
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
2751
2765
|
*
|
|
2752
2766
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2753
2767
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2757,7 +2771,7 @@ interface ListEventsByContactIdOptions {
|
|
|
2757
2771
|
* Local end date and time up to which events are returned in
|
|
2758
2772
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2759
2773
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2760
|
-
* `
|
|
2774
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
2761
2775
|
*
|
|
2762
2776
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2763
2777
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -2783,7 +2797,7 @@ interface ListEventsByMemberIdOptions {
|
|
|
2783
2797
|
/**
|
|
2784
2798
|
* Local start date and time from which events are returned in
|
|
2785
2799
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2786
|
-
* `2024-01-30T13:30:00`.
|
|
2800
|
+
* `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2787
2801
|
*
|
|
2788
2802
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2789
2803
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2793,7 +2807,7 @@ interface ListEventsByMemberIdOptions {
|
|
|
2793
2807
|
* Local end date and time up to which events are returned in
|
|
2794
2808
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2795
2809
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2796
|
-
* `fromLocalDate`.
|
|
2810
|
+
* `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2797
2811
|
*
|
|
2798
2812
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2799
2813
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -3352,7 +3366,11 @@ interface Event {
|
|
|
3352
3366
|
title?: string | null;
|
|
3353
3367
|
/** Information about when the event starts. */
|
|
3354
3368
|
start?: ZonedDate$1;
|
|
3355
|
-
/**
|
|
3369
|
+
/**
|
|
3370
|
+
* Information about when the event ends.
|
|
3371
|
+
*
|
|
3372
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
3373
|
+
*/
|
|
3356
3374
|
end?: ZonedDate$1;
|
|
3357
3375
|
/**
|
|
3358
3376
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -3447,17 +3465,20 @@ interface Event {
|
|
|
3447
3465
|
remainingCapacity?: number | null;
|
|
3448
3466
|
/**
|
|
3449
3467
|
* Information about the event's participants.
|
|
3468
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3450
3469
|
* @readonly
|
|
3451
3470
|
*/
|
|
3452
3471
|
participants?: Participants;
|
|
3453
3472
|
/**
|
|
3454
|
-
* Information about the event's online conferencing
|
|
3473
|
+
* Information about the event's online conferencing.
|
|
3474
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3455
3475
|
*
|
|
3456
3476
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
3457
3477
|
*/
|
|
3458
3478
|
conferencingDetails?: ConferencingDetails$1;
|
|
3459
3479
|
/**
|
|
3460
3480
|
* Additional notes about the event.
|
|
3481
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3461
3482
|
*
|
|
3462
3483
|
* Min: 1 character
|
|
3463
3484
|
* Max: 5000 characters
|
|
@@ -4861,6 +4882,7 @@ interface Schedule {
|
|
|
4861
4882
|
/**
|
|
4862
4883
|
* Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
|
|
4863
4884
|
* that are added to the schedule.
|
|
4885
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
4864
4886
|
*/
|
|
4865
4887
|
defaultConferencingDetails?: ConferencingDetails;
|
|
4866
4888
|
/**
|
|
@@ -6143,6 +6165,7 @@ interface UpdateSchedule {
|
|
|
6143
6165
|
/**
|
|
6144
6166
|
* Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
|
|
6145
6167
|
* that are added to the schedule.
|
|
6168
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
6146
6169
|
*/
|
|
6147
6170
|
defaultConferencingDetails?: ConferencingDetails;
|
|
6148
6171
|
/**
|
|
@@ -540,7 +540,11 @@ interface Event$1 {
|
|
|
540
540
|
title?: string | null;
|
|
541
541
|
/** Information about when the event starts. */
|
|
542
542
|
start?: ZonedDate$2;
|
|
543
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* Information about when the event ends.
|
|
545
|
+
*
|
|
546
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
547
|
+
*/
|
|
544
548
|
end?: ZonedDate$2;
|
|
545
549
|
/**
|
|
546
550
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -635,17 +639,20 @@ interface Event$1 {
|
|
|
635
639
|
remainingCapacity?: number | null;
|
|
636
640
|
/**
|
|
637
641
|
* Information about the event's participants.
|
|
642
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
638
643
|
* @readonly
|
|
639
644
|
*/
|
|
640
645
|
participants?: Participants$1;
|
|
641
646
|
/**
|
|
642
|
-
* Information about the event's online conferencing
|
|
647
|
+
* Information about the event's online conferencing.
|
|
648
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
643
649
|
*
|
|
644
650
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
645
651
|
*/
|
|
646
652
|
conferencingDetails?: ConferencingDetails$2;
|
|
647
653
|
/**
|
|
648
654
|
* Additional notes about the event.
|
|
655
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
649
656
|
*
|
|
650
657
|
* Min: 1 character
|
|
651
658
|
* Max: 5000 characters
|
|
@@ -1965,7 +1972,7 @@ interface ListEventsByContactIdRequest {
|
|
|
1965
1972
|
/**
|
|
1966
1973
|
* Local start date and time from which events are returned in
|
|
1967
1974
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1968
|
-
* `2024-01-30T13:30:00`.
|
|
1975
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
1969
1976
|
*
|
|
1970
1977
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
1971
1978
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -1975,7 +1982,7 @@ interface ListEventsByContactIdRequest {
|
|
|
1975
1982
|
* Local end date and time up to which events are returned in
|
|
1976
1983
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1977
1984
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
1978
|
-
* `
|
|
1985
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
1979
1986
|
*
|
|
1980
1987
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
1981
1988
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -2049,7 +2056,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
2049
2056
|
/**
|
|
2050
2057
|
* Local start date and time from which events are returned in
|
|
2051
2058
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2052
|
-
* `2024-01-30T13:30:00`.
|
|
2059
|
+
* `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2053
2060
|
*
|
|
2054
2061
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2055
2062
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2059,7 +2066,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
2059
2066
|
* Local end date and time up to which events are returned in
|
|
2060
2067
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2061
2068
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2062
|
-
* `fromLocalDate`.
|
|
2069
|
+
* `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2063
2070
|
*
|
|
2064
2071
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2065
2072
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -2494,7 +2501,11 @@ interface UpdateEvent {
|
|
|
2494
2501
|
title?: string | null;
|
|
2495
2502
|
/** Information about when the event starts. */
|
|
2496
2503
|
start?: ZonedDate$2;
|
|
2497
|
-
/**
|
|
2504
|
+
/**
|
|
2505
|
+
* Information about when the event ends.
|
|
2506
|
+
*
|
|
2507
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
2508
|
+
*/
|
|
2498
2509
|
end?: ZonedDate$2;
|
|
2499
2510
|
/**
|
|
2500
2511
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -2589,17 +2600,20 @@ interface UpdateEvent {
|
|
|
2589
2600
|
remainingCapacity?: number | null;
|
|
2590
2601
|
/**
|
|
2591
2602
|
* Information about the event's participants.
|
|
2603
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
2592
2604
|
* @readonly
|
|
2593
2605
|
*/
|
|
2594
2606
|
participants?: Participants$1;
|
|
2595
2607
|
/**
|
|
2596
|
-
* Information about the event's online conferencing
|
|
2608
|
+
* Information about the event's online conferencing.
|
|
2609
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
2597
2610
|
*
|
|
2598
2611
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
2599
2612
|
*/
|
|
2600
2613
|
conferencingDetails?: ConferencingDetails$2;
|
|
2601
2614
|
/**
|
|
2602
2615
|
* Additional notes about the event.
|
|
2616
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
2603
2617
|
*
|
|
2604
2618
|
* Min: 1 character
|
|
2605
2619
|
* Max: 5000 characters
|
|
@@ -2747,7 +2761,7 @@ interface ListEventsByContactIdOptions {
|
|
|
2747
2761
|
/**
|
|
2748
2762
|
* Local start date and time from which events are returned in
|
|
2749
2763
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2750
|
-
* `2024-01-30T13:30:00`.
|
|
2764
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
2751
2765
|
*
|
|
2752
2766
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2753
2767
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2757,7 +2771,7 @@ interface ListEventsByContactIdOptions {
|
|
|
2757
2771
|
* Local end date and time up to which events are returned in
|
|
2758
2772
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2759
2773
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2760
|
-
* `
|
|
2774
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
2761
2775
|
*
|
|
2762
2776
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2763
2777
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -2783,7 +2797,7 @@ interface ListEventsByMemberIdOptions {
|
|
|
2783
2797
|
/**
|
|
2784
2798
|
* Local start date and time from which events are returned in
|
|
2785
2799
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2786
|
-
* `2024-01-30T13:30:00`.
|
|
2800
|
+
* `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2787
2801
|
*
|
|
2788
2802
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2789
2803
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2793,7 +2807,7 @@ interface ListEventsByMemberIdOptions {
|
|
|
2793
2807
|
* Local end date and time up to which events are returned in
|
|
2794
2808
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2795
2809
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2796
|
-
* `fromLocalDate`.
|
|
2810
|
+
* `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2797
2811
|
*
|
|
2798
2812
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2799
2813
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -3352,7 +3366,11 @@ interface Event {
|
|
|
3352
3366
|
title?: string | null;
|
|
3353
3367
|
/** Information about when the event starts. */
|
|
3354
3368
|
start?: ZonedDate$1;
|
|
3355
|
-
/**
|
|
3369
|
+
/**
|
|
3370
|
+
* Information about when the event ends.
|
|
3371
|
+
*
|
|
3372
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
3373
|
+
*/
|
|
3356
3374
|
end?: ZonedDate$1;
|
|
3357
3375
|
/**
|
|
3358
3376
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -3447,17 +3465,20 @@ interface Event {
|
|
|
3447
3465
|
remainingCapacity?: number | null;
|
|
3448
3466
|
/**
|
|
3449
3467
|
* Information about the event's participants.
|
|
3468
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3450
3469
|
* @readonly
|
|
3451
3470
|
*/
|
|
3452
3471
|
participants?: Participants;
|
|
3453
3472
|
/**
|
|
3454
|
-
* Information about the event's online conferencing
|
|
3473
|
+
* Information about the event's online conferencing.
|
|
3474
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3455
3475
|
*
|
|
3456
3476
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
3457
3477
|
*/
|
|
3458
3478
|
conferencingDetails?: ConferencingDetails$1;
|
|
3459
3479
|
/**
|
|
3460
3480
|
* Additional notes about the event.
|
|
3481
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3461
3482
|
*
|
|
3462
3483
|
* Min: 1 character
|
|
3463
3484
|
* Max: 5000 characters
|
|
@@ -4861,6 +4882,7 @@ interface Schedule {
|
|
|
4861
4882
|
/**
|
|
4862
4883
|
* Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
|
|
4863
4884
|
* that are added to the schedule.
|
|
4885
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
4864
4886
|
*/
|
|
4865
4887
|
defaultConferencingDetails?: ConferencingDetails;
|
|
4866
4888
|
/**
|
|
@@ -6143,6 +6165,7 @@ interface UpdateSchedule {
|
|
|
6143
6165
|
/**
|
|
6144
6166
|
* Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
|
|
6145
6167
|
* that are added to the schedule.
|
|
6168
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
6146
6169
|
*/
|
|
6147
6170
|
defaultConferencingDetails?: ConferencingDetails;
|
|
6148
6171
|
/**
|
|
@@ -62,7 +62,11 @@ interface Event$1 {
|
|
|
62
62
|
title?: string | null;
|
|
63
63
|
/** Information about when the event starts. */
|
|
64
64
|
start?: ZonedDate$3;
|
|
65
|
-
/**
|
|
65
|
+
/**
|
|
66
|
+
* Information about when the event ends.
|
|
67
|
+
*
|
|
68
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
69
|
+
*/
|
|
66
70
|
end?: ZonedDate$3;
|
|
67
71
|
/**
|
|
68
72
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -157,17 +161,20 @@ interface Event$1 {
|
|
|
157
161
|
remainingCapacity?: number | null;
|
|
158
162
|
/**
|
|
159
163
|
* Information about the event's participants.
|
|
164
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
160
165
|
* @readonly
|
|
161
166
|
*/
|
|
162
167
|
participants?: Participants$1;
|
|
163
168
|
/**
|
|
164
|
-
* Information about the event's online conferencing
|
|
169
|
+
* Information about the event's online conferencing.
|
|
170
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
165
171
|
*
|
|
166
172
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
167
173
|
*/
|
|
168
174
|
conferencingDetails?: ConferencingDetails$3;
|
|
169
175
|
/**
|
|
170
176
|
* Additional notes about the event.
|
|
177
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
171
178
|
*
|
|
172
179
|
* Min: 1 character
|
|
173
180
|
* Max: 5000 characters
|
|
@@ -1038,7 +1045,7 @@ interface ListEventsByContactIdRequest$1 {
|
|
|
1038
1045
|
/**
|
|
1039
1046
|
* Local start date and time from which events are returned in
|
|
1040
1047
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1041
|
-
* `2024-01-30T13:30:00`.
|
|
1048
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
1042
1049
|
*
|
|
1043
1050
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
1044
1051
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -1048,7 +1055,7 @@ interface ListEventsByContactIdRequest$1 {
|
|
|
1048
1055
|
* Local end date and time up to which events are returned in
|
|
1049
1056
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1050
1057
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
1051
|
-
* `
|
|
1058
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
1052
1059
|
*
|
|
1053
1060
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
1054
1061
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -1122,7 +1129,7 @@ interface ListEventsByMemberIdRequest$1 {
|
|
|
1122
1129
|
/**
|
|
1123
1130
|
* Local start date and time from which events are returned in
|
|
1124
1131
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1125
|
-
* `2024-01-30T13:30:00`.
|
|
1132
|
+
* `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
1126
1133
|
*
|
|
1127
1134
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
1128
1135
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -1132,7 +1139,7 @@ interface ListEventsByMemberIdRequest$1 {
|
|
|
1132
1139
|
* Local end date and time up to which events are returned in
|
|
1133
1140
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
1134
1141
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
1135
|
-
* `fromLocalDate`.
|
|
1142
|
+
* `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
1136
1143
|
*
|
|
1137
1144
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
1138
1145
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -1329,7 +1336,11 @@ interface Event {
|
|
|
1329
1336
|
title?: string | null;
|
|
1330
1337
|
/** Information about when the event starts. */
|
|
1331
1338
|
start?: ZonedDate$2;
|
|
1332
|
-
/**
|
|
1339
|
+
/**
|
|
1340
|
+
* Information about when the event ends.
|
|
1341
|
+
*
|
|
1342
|
+
* Maximum allowed date: Year 2100, or up to 100 years from the event's start date (whichever comes first).
|
|
1343
|
+
*/
|
|
1333
1344
|
end?: ZonedDate$2;
|
|
1334
1345
|
/**
|
|
1335
1346
|
* Information about when the event starts adjusted to the `timeZone` of the
|
|
@@ -1424,17 +1435,20 @@ interface Event {
|
|
|
1424
1435
|
remainingCapacity?: number | null;
|
|
1425
1436
|
/**
|
|
1426
1437
|
* Information about the event's participants.
|
|
1438
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
1427
1439
|
* @readonly
|
|
1428
1440
|
*/
|
|
1429
1441
|
participants?: Participants;
|
|
1430
1442
|
/**
|
|
1431
|
-
* Information about the event's online conferencing
|
|
1443
|
+
* Information about the event's online conferencing.
|
|
1444
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
1432
1445
|
*
|
|
1433
1446
|
* Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
|
|
1434
1447
|
*/
|
|
1435
1448
|
conferencingDetails?: ConferencingDetails$2;
|
|
1436
1449
|
/**
|
|
1437
1450
|
* Additional notes about the event.
|
|
1451
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
1438
1452
|
*
|
|
1439
1453
|
* Min: 1 character
|
|
1440
1454
|
* Max: 5000 characters
|
|
@@ -2305,7 +2319,7 @@ interface ListEventsByContactIdRequest {
|
|
|
2305
2319
|
/**
|
|
2306
2320
|
* Local start date and time from which events are returned in
|
|
2307
2321
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2308
|
-
* `2024-01-30T13:30:00`.
|
|
2322
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
2309
2323
|
*
|
|
2310
2324
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2311
2325
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2315,7 +2329,7 @@ interface ListEventsByContactIdRequest {
|
|
|
2315
2329
|
* Local end date and time up to which events are returned in
|
|
2316
2330
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2317
2331
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2318
|
-
* `
|
|
2332
|
+
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
2319
2333
|
*
|
|
2320
2334
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2321
2335
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -2389,7 +2403,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
2389
2403
|
/**
|
|
2390
2404
|
* Local start date and time from which events are returned in
|
|
2391
2405
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2392
|
-
* `2024-01-30T13:30:00`.
|
|
2406
|
+
* `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2393
2407
|
*
|
|
2394
2408
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
2395
2409
|
* the results. Must be earlier than `toLocalDate`.
|
|
@@ -2399,7 +2413,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
2399
2413
|
* Local end date and time up to which events are returned in
|
|
2400
2414
|
* [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
|
|
2401
2415
|
* `2024-01-30T13:30:00`. Can't be more than a full year after
|
|
2402
|
-
* `fromLocalDate`.
|
|
2416
|
+
* `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
2403
2417
|
*
|
|
2404
2418
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
2405
2419
|
* results. Must be later than `fromLocalDate`.
|
|
@@ -3231,6 +3245,7 @@ interface Schedule$1 {
|
|
|
3231
3245
|
/**
|
|
3232
3246
|
* Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
|
|
3233
3247
|
* that are added to the schedule.
|
|
3248
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3234
3249
|
*/
|
|
3235
3250
|
defaultConferencingDetails?: ConferencingDetails$1;
|
|
3236
3251
|
/**
|
|
@@ -3691,6 +3706,7 @@ interface Schedule {
|
|
|
3691
3706
|
/**
|
|
3692
3707
|
* Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
|
|
3693
3708
|
* that are added to the schedule.
|
|
3709
|
+
* Returned only if explicitly requested. For more details, see the [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#retrieve-personal-information).
|
|
3694
3710
|
*/
|
|
3695
3711
|
defaultConferencingDetails?: ConferencingDetails;
|
|
3696
3712
|
/**
|