@wix/auto_sdk_calendar_events 1.0.48 → 1.0.50

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.
@@ -47,8 +47,9 @@ interface Event {
47
47
  *
48
48
  * Supported values:
49
49
  * + `DEFAULT`: A standard event that's not further specified.
50
- * + `WORKING_HOURS`: The event adds working hours to a schedule. By default not returned in [Query Events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/query-events).
51
- *
50
+ * + `WORKING_HOURS`: The event adds working hours to a schedule.
51
+ * By default not returned in [Query Events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/query-events).
52
+ * To retrieve working hour events, specify `"type": "WORKING_HOURS"` in the query filter.
52
53
  * Additional supported values, if Wix Bookings is installed:
53
54
  * + `APPOINTMENT`: Bookings appointment event.
54
55
  * + `CLASS`: Bookings class event.
@@ -666,6 +667,15 @@ interface ParticipantNotification {
666
667
  * @maxLength 5000
667
668
  */
668
669
  message?: string | null;
670
+ /**
671
+ * Information about the delivery channels used to send the notification.
672
+ * For example, `{"channels": "SMS" }`, `{"channels": "EMAIL" }`, or `{"channels": "EMAIL, SMS" }`.
673
+ *
674
+ * Max: 10 keys
675
+ * Max key length: 64 characters
676
+ * Max value length: 1000 characters
677
+ */
678
+ metadata?: Record<string, string>;
669
679
  }
670
680
  /** Deprecated. Use EventUpdated instead, which includes the modified fields and additional metadata. */
671
681
  interface EventUpdatedWithMetadata {