@wix/auto_sdk_calendar_events 1.0.35 → 1.0.36

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.
@@ -838,7 +838,7 @@ interface ListEventsByContactIdRequest {
838
838
  * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
839
839
  *
840
840
  * Events that start before the `fromLocalDate` but end after it are included in
841
- * the results. Must be earlier than `toLocalDate`.
841
+ * the results. Must be earlier than `toLocalDate` unless the sort order is descending.
842
842
  * @format LOCAL_DATE_TIME
843
843
  */
844
844
  fromLocalDate?: string | null;
@@ -849,7 +849,7 @@ interface ListEventsByContactIdRequest {
849
849
  * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
850
850
  *
851
851
  * Events that start before `toLocalDate` but end after it are included in the
852
- * results. Must be later than `fromLocalDate`.
852
+ * results. Must be later than `fromLocalDate` unless the sort order is descending.
853
853
  * @format LOCAL_DATE_TIME
854
854
  */
855
855
  toLocalDate?: string | null;
@@ -952,7 +952,7 @@ interface ListEventsByMemberIdRequest {
952
952
  * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
953
953
  *
954
954
  * Events that start before the `fromLocalDate` but end after it are included in
955
- * the results. Must be earlier than `toLocalDate`.
955
+ * the results. Must be earlier than `toLocalDate` unless the sort order is descending.
956
956
  * @format LOCAL_DATE_TIME
957
957
  */
958
958
  fromLocalDate?: string | null;
@@ -963,7 +963,7 @@ interface ListEventsByMemberIdRequest {
963
963
  * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
964
964
  *
965
965
  * Events that start before `toLocalDate` but end after it are included in the
966
- * results. Must be later than `fromLocalDate`.
966
+ * results. Must be later than `fromLocalDate` unless the sort order is descending.
967
967
  * @format LOCAL_DATE_TIME
968
968
  */
969
969
  toLocalDate?: string | null;
@@ -2035,7 +2035,7 @@ interface ListEventsByContactIdOptions {
2035
2035
  * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2036
2036
  *
2037
2037
  * Events that start before the `fromLocalDate` but end after it are included in
2038
- * the results. Must be earlier than `toLocalDate`.
2038
+ * the results. Must be earlier than `toLocalDate` unless the sort order is descending.
2039
2039
  * @format LOCAL_DATE_TIME
2040
2040
  */
2041
2041
  fromLocalDate?: string | null;
@@ -2046,7 +2046,7 @@ interface ListEventsByContactIdOptions {
2046
2046
  * `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
2047
2047
  *
2048
2048
  * Events that start before `toLocalDate` but end after it are included in the
2049
- * results. Must be later than `fromLocalDate`.
2049
+ * results. Must be later than `fromLocalDate` unless the sort order is descending.
2050
2050
  * @format LOCAL_DATE_TIME
2051
2051
  */
2052
2052
  toLocalDate?: string | null;
@@ -2105,7 +2105,7 @@ interface ListEventsByMemberIdOptions {
2105
2105
  * `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2106
2106
  *
2107
2107
  * Events that start before the `fromLocalDate` but end after it are included in
2108
- * the results. Must be earlier than `toLocalDate`.
2108
+ * the results. Must be earlier than `toLocalDate` unless the sort order is descending.
2109
2109
  * @format LOCAL_DATE_TIME
2110
2110
  */
2111
2111
  fromLocalDate?: string | null;
@@ -2116,7 +2116,7 @@ interface ListEventsByMemberIdOptions {
2116
2116
  * `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
2117
2117
  *
2118
2118
  * Events that start before `toLocalDate` but end after it are included in the
2119
- * results. Must be later than `fromLocalDate`.
2119
+ * results. Must be later than `fromLocalDate` unless the sort order is descending.
2120
2120
  * @format LOCAL_DATE_TIME
2121
2121
  */
2122
2122
  toLocalDate?: string | null;