@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.
- package/build/cjs/index.d.ts +4 -4
- package/build/cjs/index.js +9 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +109 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +4 -4
- package/build/es/index.mjs +9 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +109 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js +9 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +109 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs +9 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +109 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -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.
|
|
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 {
|