@wix/auto_sdk_calendar_events 1.0.49 → 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.
@@ -662,6 +662,15 @@ interface ParticipantNotification {
662
662
  * @maxLength 5000
663
663
  */
664
664
  message?: string | null;
665
+ /**
666
+ * Information about the delivery channels used to send the notification.
667
+ * For example, `{"channels": "SMS" }`, `{"channels": "EMAIL" }`, or `{"channels": "EMAIL, SMS" }`.
668
+ *
669
+ * Max: 10 keys
670
+ * Max key length: 64 characters
671
+ * Max value length: 1000 characters
672
+ */
673
+ metadata?: Record<string, string>;
665
674
  }
666
675
  /** Deprecated. Use EventUpdated instead, which includes the modified fields and additional metadata. */
667
676
  interface EventUpdatedWithMetadata {