@wix/auto_sdk_calendar_events 1.0.51 → 1.0.52

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.
@@ -667,6 +667,15 @@ interface ParticipantNotification {
667
667
  * @maxLength 5000
668
668
  */
669
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>;
670
679
  }
671
680
  /** Deprecated. Use EventUpdated instead, which includes the modified fields and additional metadata. */
672
681
  interface EventUpdatedWithMetadata {