@wix/calendar 1.0.41 → 1.0.42

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.41",
3
+ "version": "1.0.42",
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.11",
25
- "@wix/calendar_events": "1.0.24",
24
+ "@wix/calendar_event-views": "1.0.12",
25
+ "@wix/calendar_events": "1.0.25",
26
26
  "@wix/calendar_participations": "1.0.12",
27
27
  "@wix/calendar_schedule-time-frames": "1.0.19",
28
- "@wix/calendar_schedules": "1.0.22"
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": "7b8d82239ccd040c7a332189d7ea149a40002cb169e6251ea1eca719"
53
+ "falconPackageHash": "820340638c135c9a955719c1c894c83bf35d6950716490f69acd0a11"
54
54
  }
@@ -635,17 +635,20 @@ interface Event$1 {
635
635
  remainingCapacity?: number | null;
636
636
  /**
637
637
  * Information about the event's participants.
638
+ * 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
639
  * @readonly
639
640
  */
640
641
  participants?: Participants$1;
641
642
  /**
642
- * Information about the event's online conferencing
643
+ * Information about the event's online conferencing.
644
+ * 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
645
  *
644
646
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
645
647
  */
646
648
  conferencingDetails?: ConferencingDetails$2;
647
649
  /**
648
650
  * Additional notes about the event.
651
+ * 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
652
  *
650
653
  * Min: 1 character
651
654
  * Max: 5000 characters
@@ -1965,7 +1968,7 @@ interface ListEventsByContactIdRequest {
1965
1968
  /**
1966
1969
  * Local start date and time from which events are returned in
1967
1970
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1968
- * `2024-01-30T13:30:00`.
1971
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
1969
1972
  *
1970
1973
  * Events that start before the `fromLocalDate` but end after it are included in
1971
1974
  * the results. Must be earlier than `toLocalDate`.
@@ -1975,7 +1978,7 @@ interface ListEventsByContactIdRequest {
1975
1978
  * Local end date and time up to which events are returned in
1976
1979
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1977
1980
  * `2024-01-30T13:30:00`. Can't be more than a full year after
1978
- * `fromLocalDate`.
1981
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
1979
1982
  *
1980
1983
  * Events that start before `toLocalDate` but end after it are included in the
1981
1984
  * results. Must be later than `fromLocalDate`.
@@ -2049,7 +2052,7 @@ interface ListEventsByMemberIdRequest {
2049
2052
  /**
2050
2053
  * Local start date and time from which events are returned in
2051
2054
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2052
- * `2024-01-30T13:30:00`.
2055
+ * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2053
2056
  *
2054
2057
  * Events that start before the `fromLocalDate` but end after it are included in
2055
2058
  * the results. Must be earlier than `toLocalDate`.
@@ -2059,7 +2062,7 @@ interface ListEventsByMemberIdRequest {
2059
2062
  * Local end date and time up to which events are returned in
2060
2063
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2061
2064
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2062
- * `fromLocalDate`.
2065
+ * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2063
2066
  *
2064
2067
  * Events that start before `toLocalDate` but end after it are included in the
2065
2068
  * results. Must be later than `fromLocalDate`.
@@ -2589,17 +2592,20 @@ interface UpdateEvent {
2589
2592
  remainingCapacity?: number | null;
2590
2593
  /**
2591
2594
  * Information about the event's participants.
2595
+ * 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
2596
  * @readonly
2593
2597
  */
2594
2598
  participants?: Participants$1;
2595
2599
  /**
2596
- * Information about the event's online conferencing
2600
+ * Information about the event's online conferencing.
2601
+ * 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
2602
  *
2598
2603
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
2599
2604
  */
2600
2605
  conferencingDetails?: ConferencingDetails$2;
2601
2606
  /**
2602
2607
  * Additional notes about the event.
2608
+ * 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
2609
  *
2604
2610
  * Min: 1 character
2605
2611
  * Max: 5000 characters
@@ -2747,7 +2753,7 @@ interface ListEventsByContactIdOptions {
2747
2753
  /**
2748
2754
  * Local start date and time from which events are returned in
2749
2755
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2750
- * `2024-01-30T13:30:00`.
2756
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2751
2757
  *
2752
2758
  * Events that start before the `fromLocalDate` but end after it are included in
2753
2759
  * the results. Must be earlier than `toLocalDate`.
@@ -2757,7 +2763,7 @@ interface ListEventsByContactIdOptions {
2757
2763
  * Local end date and time up to which events are returned in
2758
2764
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2759
2765
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2760
- * `fromLocalDate`.
2766
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2761
2767
  *
2762
2768
  * Events that start before `toLocalDate` but end after it are included in the
2763
2769
  * results. Must be later than `fromLocalDate`.
@@ -2783,7 +2789,7 @@ interface ListEventsByMemberIdOptions {
2783
2789
  /**
2784
2790
  * Local start date and time from which events are returned in
2785
2791
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2786
- * `2024-01-30T13:30:00`.
2792
+ * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2787
2793
  *
2788
2794
  * Events that start before the `fromLocalDate` but end after it are included in
2789
2795
  * the results. Must be earlier than `toLocalDate`.
@@ -2793,7 +2799,7 @@ interface ListEventsByMemberIdOptions {
2793
2799
  * Local end date and time up to which events are returned in
2794
2800
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2795
2801
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2796
- * `fromLocalDate`.
2802
+ * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2797
2803
  *
2798
2804
  * Events that start before `toLocalDate` but end after it are included in the
2799
2805
  * results. Must be later than `fromLocalDate`.
@@ -3447,17 +3453,20 @@ interface Event {
3447
3453
  remainingCapacity?: number | null;
3448
3454
  /**
3449
3455
  * Information about the event's participants.
3456
+ * 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
3457
  * @readonly
3451
3458
  */
3452
3459
  participants?: Participants;
3453
3460
  /**
3454
- * Information about the event's online conferencing
3461
+ * Information about the event's online conferencing.
3462
+ * 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
3463
  *
3456
3464
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
3457
3465
  */
3458
3466
  conferencingDetails?: ConferencingDetails$1;
3459
3467
  /**
3460
3468
  * Additional notes about the event.
3469
+ * 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
3470
  *
3462
3471
  * Min: 1 character
3463
3472
  * Max: 5000 characters
@@ -4861,6 +4870,7 @@ interface Schedule {
4861
4870
  /**
4862
4871
  * Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
4863
4872
  * that are added to the schedule.
4873
+ * 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
4874
  */
4865
4875
  defaultConferencingDetails?: ConferencingDetails;
4866
4876
  /**
@@ -6143,6 +6153,7 @@ interface UpdateSchedule {
6143
6153
  /**
6144
6154
  * Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
6145
6155
  * that are added to the schedule.
6156
+ * 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
6157
  */
6147
6158
  defaultConferencingDetails?: ConferencingDetails;
6148
6159
  /**
@@ -635,17 +635,20 @@ interface Event$1 {
635
635
  remainingCapacity?: number | null;
636
636
  /**
637
637
  * Information about the event's participants.
638
+ * 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
639
  * @readonly
639
640
  */
640
641
  participants?: Participants$1;
641
642
  /**
642
- * Information about the event's online conferencing
643
+ * Information about the event's online conferencing.
644
+ * 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
645
  *
644
646
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
645
647
  */
646
648
  conferencingDetails?: ConferencingDetails$2;
647
649
  /**
648
650
  * Additional notes about the event.
651
+ * 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
652
  *
650
653
  * Min: 1 character
651
654
  * Max: 5000 characters
@@ -1965,7 +1968,7 @@ interface ListEventsByContactIdRequest {
1965
1968
  /**
1966
1969
  * Local start date and time from which events are returned in
1967
1970
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1968
- * `2024-01-30T13:30:00`.
1971
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
1969
1972
  *
1970
1973
  * Events that start before the `fromLocalDate` but end after it are included in
1971
1974
  * the results. Must be earlier than `toLocalDate`.
@@ -1975,7 +1978,7 @@ interface ListEventsByContactIdRequest {
1975
1978
  * Local end date and time up to which events are returned in
1976
1979
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1977
1980
  * `2024-01-30T13:30:00`. Can't be more than a full year after
1978
- * `fromLocalDate`.
1981
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
1979
1982
  *
1980
1983
  * Events that start before `toLocalDate` but end after it are included in the
1981
1984
  * results. Must be later than `fromLocalDate`.
@@ -2049,7 +2052,7 @@ interface ListEventsByMemberIdRequest {
2049
2052
  /**
2050
2053
  * Local start date and time from which events are returned in
2051
2054
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2052
- * `2024-01-30T13:30:00`.
2055
+ * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2053
2056
  *
2054
2057
  * Events that start before the `fromLocalDate` but end after it are included in
2055
2058
  * the results. Must be earlier than `toLocalDate`.
@@ -2059,7 +2062,7 @@ interface ListEventsByMemberIdRequest {
2059
2062
  * Local end date and time up to which events are returned in
2060
2063
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2061
2064
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2062
- * `fromLocalDate`.
2065
+ * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2063
2066
  *
2064
2067
  * Events that start before `toLocalDate` but end after it are included in the
2065
2068
  * results. Must be later than `fromLocalDate`.
@@ -2589,17 +2592,20 @@ interface UpdateEvent {
2589
2592
  remainingCapacity?: number | null;
2590
2593
  /**
2591
2594
  * Information about the event's participants.
2595
+ * 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
2596
  * @readonly
2593
2597
  */
2594
2598
  participants?: Participants$1;
2595
2599
  /**
2596
- * Information about the event's online conferencing
2600
+ * Information about the event's online conferencing.
2601
+ * 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
2602
  *
2598
2603
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
2599
2604
  */
2600
2605
  conferencingDetails?: ConferencingDetails$2;
2601
2606
  /**
2602
2607
  * Additional notes about the event.
2608
+ * 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
2609
  *
2604
2610
  * Min: 1 character
2605
2611
  * Max: 5000 characters
@@ -2747,7 +2753,7 @@ interface ListEventsByContactIdOptions {
2747
2753
  /**
2748
2754
  * Local start date and time from which events are returned in
2749
2755
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2750
- * `2024-01-30T13:30:00`.
2756
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2751
2757
  *
2752
2758
  * Events that start before the `fromLocalDate` but end after it are included in
2753
2759
  * the results. Must be earlier than `toLocalDate`.
@@ -2757,7 +2763,7 @@ interface ListEventsByContactIdOptions {
2757
2763
  * Local end date and time up to which events are returned in
2758
2764
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2759
2765
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2760
- * `fromLocalDate`.
2766
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2761
2767
  *
2762
2768
  * Events that start before `toLocalDate` but end after it are included in the
2763
2769
  * results. Must be later than `fromLocalDate`.
@@ -2783,7 +2789,7 @@ interface ListEventsByMemberIdOptions {
2783
2789
  /**
2784
2790
  * Local start date and time from which events are returned in
2785
2791
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2786
- * `2024-01-30T13:30:00`.
2792
+ * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2787
2793
  *
2788
2794
  * Events that start before the `fromLocalDate` but end after it are included in
2789
2795
  * the results. Must be earlier than `toLocalDate`.
@@ -2793,7 +2799,7 @@ interface ListEventsByMemberIdOptions {
2793
2799
  * Local end date and time up to which events are returned in
2794
2800
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2795
2801
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2796
- * `fromLocalDate`.
2802
+ * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2797
2803
  *
2798
2804
  * Events that start before `toLocalDate` but end after it are included in the
2799
2805
  * results. Must be later than `fromLocalDate`.
@@ -3447,17 +3453,20 @@ interface Event {
3447
3453
  remainingCapacity?: number | null;
3448
3454
  /**
3449
3455
  * Information about the event's participants.
3456
+ * 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
3457
  * @readonly
3451
3458
  */
3452
3459
  participants?: Participants;
3453
3460
  /**
3454
- * Information about the event's online conferencing
3461
+ * Information about the event's online conferencing.
3462
+ * 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
3463
  *
3456
3464
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
3457
3465
  */
3458
3466
  conferencingDetails?: ConferencingDetails$1;
3459
3467
  /**
3460
3468
  * Additional notes about the event.
3469
+ * 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
3470
  *
3462
3471
  * Min: 1 character
3463
3472
  * Max: 5000 characters
@@ -4861,6 +4870,7 @@ interface Schedule {
4861
4870
  /**
4862
4871
  * Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
4863
4872
  * that are added to the schedule.
4873
+ * 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
4874
  */
4865
4875
  defaultConferencingDetails?: ConferencingDetails;
4866
4876
  /**
@@ -6143,6 +6153,7 @@ interface UpdateSchedule {
6143
6153
  /**
6144
6154
  * Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
6145
6155
  * that are added to the schedule.
6156
+ * 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
6157
  */
6147
6158
  defaultConferencingDetails?: ConferencingDetails;
6148
6159
  /**
@@ -157,17 +157,20 @@ interface Event$1 {
157
157
  remainingCapacity?: number | null;
158
158
  /**
159
159
  * Information about the event's participants.
160
+ * 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
161
  * @readonly
161
162
  */
162
163
  participants?: Participants$1;
163
164
  /**
164
- * Information about the event's online conferencing
165
+ * Information about the event's online conferencing.
166
+ * 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
167
  *
166
168
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
167
169
  */
168
170
  conferencingDetails?: ConferencingDetails$3;
169
171
  /**
170
172
  * Additional notes about the event.
173
+ * 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
174
  *
172
175
  * Min: 1 character
173
176
  * Max: 5000 characters
@@ -1038,7 +1041,7 @@ interface ListEventsByContactIdRequest$1 {
1038
1041
  /**
1039
1042
  * Local start date and time from which events are returned in
1040
1043
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1041
- * `2024-01-30T13:30:00`.
1044
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
1042
1045
  *
1043
1046
  * Events that start before the `fromLocalDate` but end after it are included in
1044
1047
  * the results. Must be earlier than `toLocalDate`.
@@ -1048,7 +1051,7 @@ interface ListEventsByContactIdRequest$1 {
1048
1051
  * Local end date and time up to which events are returned in
1049
1052
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1050
1053
  * `2024-01-30T13:30:00`. Can't be more than a full year after
1051
- * `fromLocalDate`.
1054
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
1052
1055
  *
1053
1056
  * Events that start before `toLocalDate` but end after it are included in the
1054
1057
  * results. Must be later than `fromLocalDate`.
@@ -1122,7 +1125,7 @@ interface ListEventsByMemberIdRequest$1 {
1122
1125
  /**
1123
1126
  * Local start date and time from which events are returned in
1124
1127
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1125
- * `2024-01-30T13:30:00`.
1128
+ * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
1126
1129
  *
1127
1130
  * Events that start before the `fromLocalDate` but end after it are included in
1128
1131
  * the results. Must be earlier than `toLocalDate`.
@@ -1132,7 +1135,7 @@ interface ListEventsByMemberIdRequest$1 {
1132
1135
  * Local end date and time up to which events are returned in
1133
1136
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
1134
1137
  * `2024-01-30T13:30:00`. Can't be more than a full year after
1135
- * `fromLocalDate`.
1138
+ * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
1136
1139
  *
1137
1140
  * Events that start before `toLocalDate` but end after it are included in the
1138
1141
  * results. Must be later than `fromLocalDate`.
@@ -1424,17 +1427,20 @@ interface Event {
1424
1427
  remainingCapacity?: number | null;
1425
1428
  /**
1426
1429
  * Information about the event's participants.
1430
+ * 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
1431
  * @readonly
1428
1432
  */
1429
1433
  participants?: Participants;
1430
1434
  /**
1431
- * Information about the event's online conferencing
1435
+ * Information about the event's online conferencing.
1436
+ * 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
1437
  *
1433
1438
  * Default: `defaultConferencingDetails` of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object) the event belongs to
1434
1439
  */
1435
1440
  conferencingDetails?: ConferencingDetails$2;
1436
1441
  /**
1437
1442
  * Additional notes about the event.
1443
+ * 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
1444
  *
1439
1445
  * Min: 1 character
1440
1446
  * Max: 5000 characters
@@ -2305,7 +2311,7 @@ interface ListEventsByContactIdRequest {
2305
2311
  /**
2306
2312
  * Local start date and time from which events are returned in
2307
2313
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2308
- * `2024-01-30T13:30:00`.
2314
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2309
2315
  *
2310
2316
  * Events that start before the `fromLocalDate` but end after it are included in
2311
2317
  * the results. Must be earlier than `toLocalDate`.
@@ -2315,7 +2321,7 @@ interface ListEventsByContactIdRequest {
2315
2321
  * Local end date and time up to which events are returned in
2316
2322
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2317
2323
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2318
- * `fromLocalDate`.
2324
+ * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2319
2325
  *
2320
2326
  * Events that start before `toLocalDate` but end after it are included in the
2321
2327
  * results. Must be later than `fromLocalDate`.
@@ -2389,7 +2395,7 @@ interface ListEventsByMemberIdRequest {
2389
2395
  /**
2390
2396
  * Local start date and time from which events are returned in
2391
2397
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2392
- * `2024-01-30T13:30:00`.
2398
+ * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2393
2399
  *
2394
2400
  * Events that start before the `fromLocalDate` but end after it are included in
2395
2401
  * the results. Must be earlier than `toLocalDate`.
@@ -2399,7 +2405,7 @@ interface ListEventsByMemberIdRequest {
2399
2405
  * Local end date and time up to which events are returned in
2400
2406
  * [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. For example,
2401
2407
  * `2024-01-30T13:30:00`. Can't be more than a full year after
2402
- * `fromLocalDate`.
2408
+ * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2403
2409
  *
2404
2410
  * Events that start before `toLocalDate` but end after it are included in the
2405
2411
  * results. Must be later than `fromLocalDate`.
@@ -3231,6 +3237,7 @@ interface Schedule$1 {
3231
3237
  /**
3232
3238
  * Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
3233
3239
  * that are added to the schedule.
3240
+ * 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
3241
  */
3235
3242
  defaultConferencingDetails?: ConferencingDetails$1;
3236
3243
  /**
@@ -3691,6 +3698,7 @@ interface Schedule {
3691
3698
  /**
3692
3699
  * Default `conferencingDetails` for [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
3693
3700
  * that are added to the schedule.
3701
+ * 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
3702
  */
3695
3703
  defaultConferencingDetails?: ConferencingDetails;
3696
3704
  /**