@wix/auto_sdk_calendar_schedule-time-frames 1.0.0 → 1.0.2

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.
Files changed (33) hide show
  1. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.context.d.ts +1 -1
  2. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.d.ts +1 -1
  3. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.js.map +1 -1
  4. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.d.ts +70 -21
  5. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.js.map +1 -1
  6. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.d.ts +97 -23
  7. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js +12 -0
  8. package/build/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js.map +1 -1
  9. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.context.d.ts +1 -1
  10. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.d.ts +1 -1
  11. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.js.map +1 -1
  12. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.d.ts +70 -21
  13. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.js.map +1 -1
  14. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.d.ts +97 -23
  15. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js +12 -0
  16. package/build/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js.map +1 -1
  17. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.context.d.ts +1 -1
  18. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.d.ts +1 -1
  19. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.js.map +1 -1
  20. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.d.ts +70 -21
  21. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.js.map +1 -1
  22. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.d.ts +97 -23
  23. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js +12 -0
  24. package/build/internal/cjs/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js.map +1 -1
  25. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.context.d.ts +1 -1
  26. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.d.ts +1 -1
  27. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.public.js.map +1 -1
  28. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.d.ts +70 -21
  29. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.types.js.map +1 -1
  30. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.d.ts +97 -23
  31. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js +12 -0
  32. package/build/internal/es/src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.js.map +1 -1
  33. package/package.json +2 -2
@@ -8,6 +8,7 @@ export interface ScheduleTimeFrame {
8
8
  /**
9
9
  * ID of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object)
10
10
  * to which the time frame belongs.
11
+ * @format GUID
11
12
  * @readonly
12
13
  */
13
14
  id?: string | null;
@@ -74,6 +75,7 @@ export interface ZonedDate {
74
75
  * Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
75
76
  * For example, `2024-01-30T13:30:00`.
76
77
  * Wix Calendar APIs ignore seconds.
78
+ * @format LOCAL_DATE_TIME
77
79
  */
78
80
  localDate?: string | null;
79
81
  /**
@@ -91,15 +93,11 @@ export interface ZonedDate {
91
93
  */
92
94
  utcDate?: Date | null;
93
95
  }
94
- /** Deprecated. Use the standard ScheduleTimeFrameUpdated event instead, which also includes the modified fields. */
95
- export interface ScheduleTimeFrameUpdatedWithMetadata {
96
- /** Updated schedule time frame. */
97
- scheduleTimeFrame?: ScheduleTimeFrame;
98
- }
99
96
  export interface GetScheduleTimeFrameRequest {
100
97
  /**
101
98
  * [Schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object)
102
99
  * ID for which to retrieve the schedule time frame.
100
+ * @format GUID
103
101
  */
104
102
  id: string | null;
105
103
  /**
@@ -119,6 +117,9 @@ export interface ListScheduleTimeFramesRequest {
119
117
  *
120
118
  * Min: 1 schedule ID
121
119
  * Max: 100 schedule IDs
120
+ * @minSize 1
121
+ * @maxSize 100
122
+ * @format GUID
122
123
  */
123
124
  ids: string[];
124
125
  /**
@@ -138,7 +139,10 @@ export interface SitePropertiesNotification {
138
139
  metasiteId?: string;
139
140
  /** The actual update event. */
140
141
  event?: SitePropertiesEvent;
141
- /** A convenience set of mappings from the MetaSite ID to its constituent services. */
142
+ /**
143
+ * A convenience set of mappings from the MetaSite ID to its constituent services.
144
+ * @maxSize 500
145
+ */
142
146
  translations?: Translation[];
143
147
  /** Context of the notification */
144
148
  changeContext?: ChangeContext;
@@ -211,7 +215,10 @@ export interface Properties {
211
215
  export interface Categories {
212
216
  /** Primary site category. */
213
217
  primary?: string;
214
- /** Secondary site category. */
218
+ /**
219
+ * Secondary site category.
220
+ * @maxSize 50
221
+ */
215
222
  secondary?: string[];
216
223
  /** Business Term Id */
217
224
  businessTermId?: string | null;
@@ -231,7 +238,10 @@ export interface Address {
231
238
  country?: string;
232
239
  /** State. */
233
240
  state?: string;
234
- /** Zip or postal code. */
241
+ /**
242
+ * Zip or postal code.
243
+ * @maxLength 20
244
+ */
235
245
  zip?: string;
236
246
  /** Extra information to be displayed in the address. */
237
247
  hint?: AddressHint;
@@ -272,9 +282,15 @@ export interface GeoCoordinates {
272
282
  }
273
283
  /** Business schedule. Regular and exceptional time periods when the business is open or the service is available. */
274
284
  export interface BusinessSchedule {
275
- /** Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods. */
285
+ /**
286
+ * Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods.
287
+ * @maxSize 100
288
+ */
276
289
  periods?: TimePeriod[];
277
- /** Exceptions to the business's regular hours. The business can be open or closed during the exception. */
290
+ /**
291
+ * Exceptions to the business's regular hours. The business can be open or closed during the exception.
292
+ * @maxSize 100
293
+ */
278
294
  specialHourPeriod?: SpecialHourPeriod[];
279
295
  }
280
296
  /** Weekly recurring time periods when the business is regularly open or the service is available. */
@@ -322,7 +338,10 @@ export interface SpecialHourPeriod {
322
338
  comment?: string;
323
339
  }
324
340
  export interface Multilingual {
325
- /** Supported languages list. */
341
+ /**
342
+ * Supported languages list.
343
+ * @maxSize 200
344
+ */
326
345
  supportedLanguages?: SupportedLanguage[];
327
346
  /** Whether to redirect to user language. */
328
347
  autoRedirect?: boolean;
@@ -467,9 +486,15 @@ export interface ActionEvent {
467
486
  bodyAsJson?: string;
468
487
  }
469
488
  export interface MessageEnvelope {
470
- /** App instance ID. */
489
+ /**
490
+ * App instance ID.
491
+ * @format GUID
492
+ */
471
493
  instanceId?: string | null;
472
- /** Event type. */
494
+ /**
495
+ * Event type.
496
+ * @maxLength 150
497
+ */
473
498
  eventType?: string;
474
499
  /** The identification type and identity data. */
475
500
  identity?: IdentificationData;
@@ -477,26 +502,50 @@ export interface MessageEnvelope {
477
502
  data?: string;
478
503
  }
479
504
  export interface IdentificationData extends IdentificationDataIdOneOf {
480
- /** ID of a site visitor that has not logged in to the site. */
505
+ /**
506
+ * ID of a site visitor that has not logged in to the site.
507
+ * @format GUID
508
+ */
481
509
  anonymousVisitorId?: string;
482
- /** ID of a site visitor that has logged in to the site. */
510
+ /**
511
+ * ID of a site visitor that has logged in to the site.
512
+ * @format GUID
513
+ */
483
514
  memberId?: string;
484
- /** ID of a Wix user (site owner, contributor, etc.). */
515
+ /**
516
+ * ID of a Wix user (site owner, contributor, etc.).
517
+ * @format GUID
518
+ */
485
519
  wixUserId?: string;
486
- /** ID of an app. */
520
+ /**
521
+ * ID of an app.
522
+ * @format GUID
523
+ */
487
524
  appId?: string;
488
525
  /** @readonly */
489
526
  identityType?: WebhookIdentityType;
490
527
  }
491
528
  /** @oneof */
492
529
  export interface IdentificationDataIdOneOf {
493
- /** ID of a site visitor that has not logged in to the site. */
530
+ /**
531
+ * ID of a site visitor that has not logged in to the site.
532
+ * @format GUID
533
+ */
494
534
  anonymousVisitorId?: string;
495
- /** ID of a site visitor that has logged in to the site. */
535
+ /**
536
+ * ID of a site visitor that has logged in to the site.
537
+ * @format GUID
538
+ */
496
539
  memberId?: string;
497
- /** ID of a Wix user (site owner, contributor, etc.). */
540
+ /**
541
+ * ID of a Wix user (site owner, contributor, etc.).
542
+ * @format GUID
543
+ */
498
544
  wixUserId?: string;
499
- /** ID of an app. */
545
+ /**
546
+ * ID of an app.
547
+ * @format GUID
548
+ */
500
549
  appId?: string;
501
550
  }
502
551
  export declare enum WebhookIdentityType {
@@ -1 +1 @@
1
- {"version":3,"file":"calendar-v3-schedule-time-frame-schedule-time-frames.types.js","sourceRoot":"","sources":["../../../src/calendar-v3-schedule-time-frame-schedule-time-frames.types.ts"],"names":[],"mappings":"AA8DA,MAAM,CAAN,IAAY,MAQX;AARD,WAAY,MAAM;IAChB,2CAAiC,CAAA;IACjC,kIAAkI;IAClI,uBAAa,CAAA;IACb,+GAA+G;IAC/G,2BAAiB,CAAA;IACjB,gHAAgH;IAChH,+BAAqB,CAAA;AACvB,CAAC,EARW,MAAM,KAAN,MAAM,QAQjB;AA4MD,gGAAgG;AAChG,MAAM,CAAN,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,kCAAiB,CAAA;IACjB,gCAAe,CAAA;IACf,oCAAmB,CAAA;AACrB,CAAC,EAJW,aAAa,KAAb,aAAa,QAIxB;AAsCD,uCAAuC;AACvC,MAAM,CAAN,IAAY,SAQX;AARD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;AACnB,CAAC,EARW,SAAS,KAAT,SAAS,QAQpB;AAsCD,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,+CAA2B,CAAA;IAC3B,2CAAuB,CAAA;IACvB,iDAA6B,CAAA;AAC/B,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B;AA6KD,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B"}
1
+ {"version":3,"file":"calendar-v3-schedule-time-frame-schedule-time-frames.types.js","sourceRoot":"","sources":["../../../src/calendar-v3-schedule-time-frame-schedule-time-frames.types.ts"],"names":[],"mappings":"AA+DA,MAAM,CAAN,IAAY,MAQX;AARD,WAAY,MAAM;IAChB,2CAAiC,CAAA;IACjC,kIAAkI;IAClI,uBAAa,CAAA;IACb,+GAA+G;IAC/G,2BAAiB,CAAA;IACjB,gHAAgH;IAChH,+BAAqB,CAAA;AACvB,CAAC,EARW,MAAM,KAAN,MAAM,QAQjB;AAoND,gGAAgG;AAChG,MAAM,CAAN,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,kCAAiB,CAAA;IACjB,gCAAe,CAAA;IACf,oCAAmB,CAAA;AACrB,CAAC,EAJW,aAAa,KAAb,aAAa,QAIxB;AA4CD,uCAAuC;AACvC,MAAM,CAAN,IAAY,SAQX;AARD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;AACnB,CAAC,EARW,SAAS,KAAT,SAAS,QAQpB;AAyCD,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,+CAA2B,CAAA;IAC3B,2CAAuB,CAAA;IACvB,iDAA6B,CAAA;AAC/B,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B;AA2MD,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B"}
@@ -8,6 +8,7 @@ export interface ScheduleTimeFrame {
8
8
  /**
9
9
  * ID of the [schedule](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction)
10
10
  * to which the time frame belongs.
11
+ * @format GUID
11
12
  * @readonly
12
13
  */
13
14
  _id?: string | null;
@@ -74,6 +75,7 @@ export interface ZonedDate {
74
75
  * Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
75
76
  * For example, `2024-01-30T13:30:00`.
76
77
  * Wix Calendar APIs ignore seconds.
78
+ * @format LOCAL_DATE_TIME
77
79
  */
78
80
  localDate?: string | null;
79
81
  /**
@@ -91,15 +93,11 @@ export interface ZonedDate {
91
93
  */
92
94
  utcDate?: Date | null;
93
95
  }
94
- /** Deprecated. Use the standard ScheduleTimeFrameUpdated event instead, which also includes the modified fields. */
95
- export interface ScheduleTimeFrameUpdatedWithMetadata {
96
- /** Updated schedule time frame. */
97
- scheduleTimeFrame?: ScheduleTimeFrame;
98
- }
99
96
  export interface GetScheduleTimeFrameRequest {
100
97
  /**
101
98
  * [Schedule](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction)
102
99
  * ID for which to retrieve the schedule time frame.
100
+ * @format GUID
103
101
  */
104
102
  _id: string | null;
105
103
  /**
@@ -119,6 +117,9 @@ export interface ListScheduleTimeFramesRequest {
119
117
  *
120
118
  * Min: 1 schedule ID
121
119
  * Max: 100 schedule IDs
120
+ * @minSize 1
121
+ * @maxSize 100
122
+ * @format GUID
122
123
  */
123
124
  ids: string[];
124
125
  /**
@@ -138,7 +139,10 @@ export interface SitePropertiesNotification {
138
139
  metasiteId?: string;
139
140
  /** The actual update event. */
140
141
  event?: SitePropertiesEvent;
141
- /** A convenience set of mappings from the MetaSite ID to its constituent services. */
142
+ /**
143
+ * A convenience set of mappings from the MetaSite ID to its constituent services.
144
+ * @maxSize 500
145
+ */
142
146
  translations?: Translation[];
143
147
  /** Context of the notification */
144
148
  changeContext?: ChangeContext;
@@ -211,7 +215,10 @@ export interface Properties {
211
215
  export interface Categories {
212
216
  /** Primary site category. */
213
217
  primary?: string;
214
- /** Secondary site category. */
218
+ /**
219
+ * Secondary site category.
220
+ * @maxSize 50
221
+ */
215
222
  secondary?: string[];
216
223
  /** Business Term Id */
217
224
  businessTermId?: string | null;
@@ -231,7 +238,10 @@ export interface Address {
231
238
  country?: string;
232
239
  /** State. */
233
240
  state?: string;
234
- /** Zip or postal code. */
241
+ /**
242
+ * Zip or postal code.
243
+ * @maxLength 20
244
+ */
235
245
  zip?: string;
236
246
  /** Extra information to be displayed in the address. */
237
247
  hint?: AddressHint;
@@ -272,9 +282,15 @@ export interface GeoCoordinates {
272
282
  }
273
283
  /** Business schedule. Regular and exceptional time periods when the business is open or the service is available. */
274
284
  export interface BusinessSchedule {
275
- /** Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods. */
285
+ /**
286
+ * Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods.
287
+ * @maxSize 100
288
+ */
276
289
  periods?: TimePeriod[];
277
- /** Exceptions to the business's regular hours. The business can be open or closed during the exception. */
290
+ /**
291
+ * Exceptions to the business's regular hours. The business can be open or closed during the exception.
292
+ * @maxSize 100
293
+ */
278
294
  specialHourPeriod?: SpecialHourPeriod[];
279
295
  }
280
296
  /** Weekly recurring time periods when the business is regularly open or the service is available. */
@@ -322,7 +338,10 @@ export interface SpecialHourPeriod {
322
338
  comment?: string;
323
339
  }
324
340
  export interface Multilingual {
325
- /** Supported languages list. */
341
+ /**
342
+ * Supported languages list.
343
+ * @maxSize 200
344
+ */
326
345
  supportedLanguages?: SupportedLanguage[];
327
346
  /** Whether to redirect to user language. */
328
347
  autoRedirect?: boolean;
@@ -465,9 +484,15 @@ export interface ActionEvent {
465
484
  body?: string;
466
485
  }
467
486
  export interface MessageEnvelope {
468
- /** App instance ID. */
487
+ /**
488
+ * App instance ID.
489
+ * @format GUID
490
+ */
469
491
  instanceId?: string | null;
470
- /** Event type. */
492
+ /**
493
+ * Event type.
494
+ * @maxLength 150
495
+ */
471
496
  eventType?: string;
472
497
  /** The identification type and identity data. */
473
498
  identity?: IdentificationData;
@@ -475,26 +500,50 @@ export interface MessageEnvelope {
475
500
  data?: string;
476
501
  }
477
502
  export interface IdentificationData extends IdentificationDataIdOneOf {
478
- /** ID of a site visitor that has not logged in to the site. */
503
+ /**
504
+ * ID of a site visitor that has not logged in to the site.
505
+ * @format GUID
506
+ */
479
507
  anonymousVisitorId?: string;
480
- /** ID of a site visitor that has logged in to the site. */
508
+ /**
509
+ * ID of a site visitor that has logged in to the site.
510
+ * @format GUID
511
+ */
481
512
  memberId?: string;
482
- /** ID of a Wix user (site owner, contributor, etc.). */
513
+ /**
514
+ * ID of a Wix user (site owner, contributor, etc.).
515
+ * @format GUID
516
+ */
483
517
  wixUserId?: string;
484
- /** ID of an app. */
518
+ /**
519
+ * ID of an app.
520
+ * @format GUID
521
+ */
485
522
  appId?: string;
486
523
  /** @readonly */
487
524
  identityType?: WebhookIdentityType;
488
525
  }
489
526
  /** @oneof */
490
527
  export interface IdentificationDataIdOneOf {
491
- /** ID of a site visitor that has not logged in to the site. */
528
+ /**
529
+ * ID of a site visitor that has not logged in to the site.
530
+ * @format GUID
531
+ */
492
532
  anonymousVisitorId?: string;
493
- /** ID of a site visitor that has logged in to the site. */
533
+ /**
534
+ * ID of a site visitor that has logged in to the site.
535
+ * @format GUID
536
+ */
494
537
  memberId?: string;
495
- /** ID of a Wix user (site owner, contributor, etc.). */
538
+ /**
539
+ * ID of a Wix user (site owner, contributor, etc.).
540
+ * @format GUID
541
+ */
496
542
  wixUserId?: string;
497
- /** ID of an app. */
543
+ /**
544
+ * ID of an app.
545
+ * @format GUID
546
+ */
498
547
  appId?: string;
499
548
  }
500
549
  export declare enum WebhookIdentityType {
@@ -514,9 +563,15 @@ export interface ListScheduleTimeFramesResponseNonNullableFields {
514
563
  scheduleTimeFrames: ScheduleTimeFrameNonNullableFields[];
515
564
  }
516
565
  export interface BaseEventMetadata {
517
- /** App instance ID. */
566
+ /**
567
+ * App instance ID.
568
+ * @format GUID
569
+ */
518
570
  instanceId?: string | null;
519
- /** Event type. */
571
+ /**
572
+ * Event type.
573
+ * @maxLength 150
574
+ */
520
575
  eventType?: string;
521
576
  /** The identification type and identity data. */
522
577
  identity?: IdentificationData;
@@ -571,6 +626,12 @@ export interface ScheduleTimeFrameUpdatedEnvelope {
571
626
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
572
627
  * @permissionScope Read Calendar - Including PI
573
628
  * @permissionScopeId SCOPE.DC-CALENDAR.READ-PI
629
+ * @permissionScope Manage Calendars
630
+ * @permissionScopeId SCOPE.DC-CALENDAR.MANAGE
631
+ * @permissionScope Manage Bookings
632
+ * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
633
+ * @permissionScope Read Bookings - Including Participants
634
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
574
635
  * @permissionScope Read Bookings - all read permissions
575
636
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
576
637
  * @permissionScope Read Bookings Calendar Availability
@@ -586,6 +647,7 @@ export interface ScheduleTimeFrameUpdatedEnvelope {
586
647
  * @permissionId CALENDAR.SCHEDULE_READ
587
648
  * @webhook
588
649
  * @eventType wix.calendar.v3.schedule_time_frame_updated
650
+ * @slug updated
589
651
  * @documentationMaturity preview
590
652
  */
591
653
  export declare function onScheduleTimeFrameUpdated(handler: (event: ScheduleTimeFrameUpdatedEnvelope) => void | Promise<void>): void;
@@ -601,6 +663,12 @@ export declare function onScheduleTimeFrameUpdated(handler: (event: ScheduleTime
601
663
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
602
664
  * @permissionScope Read Calendar - Including PI
603
665
  * @permissionScopeId SCOPE.DC-CALENDAR.READ-PI
666
+ * @permissionScope Manage Calendars
667
+ * @permissionScopeId SCOPE.DC-CALENDAR.MANAGE
668
+ * @permissionScope Manage Bookings
669
+ * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
670
+ * @permissionScope Read Bookings - Including Participants
671
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
604
672
  * @permissionScope Read Bookings - all read permissions
605
673
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
606
674
  * @permissionScope Read Bookings Calendar Availability
@@ -644,6 +712,12 @@ export interface GetScheduleTimeFrameOptions {
644
712
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
645
713
  * @permissionScope Read Calendar - Including PI
646
714
  * @permissionScopeId SCOPE.DC-CALENDAR.READ-PI
715
+ * @permissionScope Manage Calendars
716
+ * @permissionScopeId SCOPE.DC-CALENDAR.MANAGE
717
+ * @permissionScope Manage Bookings
718
+ * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
719
+ * @permissionScope Read Bookings - Including Participants
720
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
647
721
  * @permissionScope Read Bookings - all read permissions
648
722
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
649
723
  * @permissionScope Read Bookings Calendar Availability
@@ -55,6 +55,12 @@ export var WebhookIdentityType;
55
55
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
56
56
  * @permissionScope Read Calendar - Including PI
57
57
  * @permissionScopeId SCOPE.DC-CALENDAR.READ-PI
58
+ * @permissionScope Manage Calendars
59
+ * @permissionScopeId SCOPE.DC-CALENDAR.MANAGE
60
+ * @permissionScope Manage Bookings
61
+ * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
62
+ * @permissionScope Read Bookings - Including Participants
63
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
58
64
  * @permissionScope Read Bookings - all read permissions
59
65
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
60
66
  * @permissionScope Read Bookings Calendar Availability
@@ -114,6 +120,12 @@ export async function getScheduleTimeFrame(_id, options) {
114
120
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
115
121
  * @permissionScope Read Calendar - Including PI
116
122
  * @permissionScopeId SCOPE.DC-CALENDAR.READ-PI
123
+ * @permissionScope Manage Calendars
124
+ * @permissionScopeId SCOPE.DC-CALENDAR.MANAGE
125
+ * @permissionScope Manage Bookings
126
+ * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
127
+ * @permissionScope Read Bookings - Including Participants
128
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
117
129
  * @permissionScope Read Bookings - all read permissions
118
130
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
119
131
  * @permissionScope Read Bookings Calendar Availability
@@ -1 +1 @@
1
- {"version":3,"file":"calendar-v3-schedule-time-frame-schedule-time-frames.universal.js","sourceRoot":"","sources":["../../../src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"calendar-v3-schedule-time-frame-schedule-time-frames.universal.js","sourceRoot":"","sources":["../../../src/calendar-v3-schedule-time-frame-schedule-time-frames.universal.ts"],"names":[],"mappings":"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"}
@@ -11,4 +11,4 @@ export declare const listScheduleTimeFrames: MaybeContext<BuildRESTFunction<type
11
11
  */
12
12
  export declare const onScheduleTimeFrameUpdated: ReturnType<typeof createEventModule<typeof publicOnScheduleTimeFrameUpdated>>;
13
13
  export { Status, PlacementType, DayOfWeek, ResolutionMethod, WebhookIdentityType, } from './calendar-v3-schedule-time-frame-schedule-time-frames.universal.js';
14
- export { ScheduleTimeFrame, ZonedDate, ScheduleTimeFrameUpdatedWithMetadata, GetScheduleTimeFrameRequest, GetScheduleTimeFrameResponse, ListScheduleTimeFramesRequest, ListScheduleTimeFramesResponse, SitePropertiesNotification, SitePropertiesEvent, Properties, Categories, Locale, Address, AddressHint, GeoCoordinates, BusinessSchedule, TimePeriod, SpecialHourPeriod, Multilingual, SupportedLanguage, ConsentPolicy, Translation, ChangeContext, ChangeContextPayloadOneOf, PropertiesChange, SiteCreated, SiteCloned, Empty, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, RestoreInfo, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, MessageEnvelope, IdentificationData, IdentificationDataIdOneOf, ScheduleTimeFrameNonNullableFields, GetScheduleTimeFrameResponseNonNullableFields, ListScheduleTimeFramesResponseNonNullableFields, BaseEventMetadata, EventMetadata, ScheduleTimeFrameUpdatedEnvelope, GetScheduleTimeFrameOptions, ListScheduleTimeFramesOptions, } from './calendar-v3-schedule-time-frame-schedule-time-frames.universal.js';
14
+ export { ScheduleTimeFrame, ZonedDate, GetScheduleTimeFrameRequest, GetScheduleTimeFrameResponse, ListScheduleTimeFramesRequest, ListScheduleTimeFramesResponse, SitePropertiesNotification, SitePropertiesEvent, Properties, Categories, Locale, Address, AddressHint, GeoCoordinates, BusinessSchedule, TimePeriod, SpecialHourPeriod, Multilingual, SupportedLanguage, ConsentPolicy, Translation, ChangeContext, ChangeContextPayloadOneOf, PropertiesChange, SiteCreated, SiteCloned, Empty, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, RestoreInfo, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, MessageEnvelope, IdentificationData, IdentificationDataIdOneOf, ScheduleTimeFrameNonNullableFields, GetScheduleTimeFrameResponseNonNullableFields, ListScheduleTimeFramesResponseNonNullableFields, BaseEventMetadata, EventMetadata, ScheduleTimeFrameUpdatedEnvelope, GetScheduleTimeFrameOptions, ListScheduleTimeFramesOptions, } from './calendar-v3-schedule-time-frame-schedule-time-frames.universal.js';
@@ -28,4 +28,4 @@ interface ListScheduleTimeFramesSignature {
28
28
  (ids: string[], options?: ListScheduleTimeFramesOptions | undefined): Promise<ListScheduleTimeFramesResponse & ListScheduleTimeFramesResponseNonNullableFields>;
29
29
  }
30
30
  export declare const onScheduleTimeFrameUpdated: EventDefinition<ScheduleTimeFrameUpdatedEnvelope, "wix.calendar.v3.schedule_time_frame_updated">;
31
- export { ActionEvent, Address, AddressHint, BaseEventMetadata, BusinessSchedule, Categories, ChangeContext, ChangeContextPayloadOneOf, ConsentPolicy, DayOfWeek, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, GeoCoordinates, GetScheduleTimeFrameOptions, GetScheduleTimeFrameRequest, GetScheduleTimeFrameResponse, GetScheduleTimeFrameResponseNonNullableFields, IdentificationData, IdentificationDataIdOneOf, ListScheduleTimeFramesOptions, ListScheduleTimeFramesRequest, ListScheduleTimeFramesResponse, ListScheduleTimeFramesResponseNonNullableFields, Locale, MessageEnvelope, Multilingual, PlacementType, Properties, PropertiesChange, ResolutionMethod, RestoreInfo, ScheduleTimeFrame, ScheduleTimeFrameNonNullableFields, ScheduleTimeFrameUpdatedEnvelope, ScheduleTimeFrameUpdatedWithMetadata, SiteCloned, SiteCreated, SitePropertiesEvent, SitePropertiesNotification, SpecialHourPeriod, Status, SupportedLanguage, TimePeriod, Translation, WebhookIdentityType, ZonedDate, } from './calendar-v3-schedule-time-frame-schedule-time-frames.universal.js';
31
+ export { ActionEvent, Address, AddressHint, BaseEventMetadata, BusinessSchedule, Categories, ChangeContext, ChangeContextPayloadOneOf, ConsentPolicy, DayOfWeek, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, GeoCoordinates, GetScheduleTimeFrameOptions, GetScheduleTimeFrameRequest, GetScheduleTimeFrameResponse, GetScheduleTimeFrameResponseNonNullableFields, IdentificationData, IdentificationDataIdOneOf, ListScheduleTimeFramesOptions, ListScheduleTimeFramesRequest, ListScheduleTimeFramesResponse, ListScheduleTimeFramesResponseNonNullableFields, Locale, MessageEnvelope, Multilingual, PlacementType, Properties, PropertiesChange, ResolutionMethod, RestoreInfo, ScheduleTimeFrame, ScheduleTimeFrameNonNullableFields, ScheduleTimeFrameUpdatedEnvelope, SiteCloned, SiteCreated, SitePropertiesEvent, SitePropertiesNotification, SpecialHourPeriod, Status, SupportedLanguage, TimePeriod, Translation, WebhookIdentityType, ZonedDate, } from './calendar-v3-schedule-time-frame-schedule-time-frames.universal.js';
@@ -1 +1 @@
1
- {"version":3,"file":"calendar-v3-schedule-time-frame-schedule-time-frames.public.js","sourceRoot":"","sources":["../../../../src/calendar-v3-schedule-time-frame-schedule-time-frames.public.ts"],"names":[],"mappings":";;;AAAA,oFAAkG;AAClG,0EAAkG;AAClG,sFAAkF;AAClF,8CAA6D;AAC7D,2JAU6E;AAEhE,QAAA,UAAU,GAAG,EAAE,YAAY,EAAE,eAAe,EAAE,CAAC;AAE5D,SAAgB,oBAAoB,CAClC,UAAsB;IAEtB,OAAO,CAAC,GAAkB,EAAE,OAAqC,EAAE,EAAE,CACnE,IAAA,wFAA6B,EAC3B,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAVD,oDAUC;AAeD,SAAgB,sBAAsB,CACpC,UAAsB;IAEtB,OAAO,CAAC,GAAa,EAAE,OAAuC,EAAE,EAAE,CAChE,IAAA,0FAA+B,EAC7B,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAVD,wDAUC;AAmBY,QAAA,0BAA0B,GAAG,IAAA,2BAAe,EACvD,6CAA6C,EAC7C,IAAI,EACJ,CAAC,KAAuC,EAAE,EAAE,CAC1C,IAAA,gEAAuC,EACrC,IAAA,gCAAc,EAAC,KAAK,EAAE;IACpB;QACE,WAAW,EAAE,gDAAoC;QACjD,KAAK,EAAE;YACL,EAAE,IAAI,EAAE,oCAAoC,EAAE;YAC9C,EAAE,IAAI,EAAE,iCAAiC,EAAE;YAC3C,EAAE,IAAI,EAAE,4CAA4C,EAAE;YACtD,EAAE,IAAI,EAAE,yCAAyC,EAAE;YACnD,EAAE,IAAI,EAAE,oBAAoB,EAAE;SAC/B;KACF;CACF,CAAC,CACH,CACJ,EAAoC,CAAC;AAEtC,yJAoD6E;AA1C3E,8JAAA,SAAS,OAAA;AAsBT,kKAAA,aAAa,OAAA;AAGb,qKAAA,gBAAgB,OAAA;AAWhB,2JAAA,MAAM,OAAA;AAIN,wKAAA,mBAAmB,OAAA"}
1
+ {"version":3,"file":"calendar-v3-schedule-time-frame-schedule-time-frames.public.js","sourceRoot":"","sources":["../../../../src/calendar-v3-schedule-time-frame-schedule-time-frames.public.ts"],"names":[],"mappings":";;;AAAA,oFAAkG;AAClG,0EAAkG;AAClG,sFAAkF;AAClF,8CAA6D;AAC7D,2JAU6E;AAEhE,QAAA,UAAU,GAAG,EAAE,YAAY,EAAE,eAAe,EAAE,CAAC;AAE5D,SAAgB,oBAAoB,CAClC,UAAsB;IAEtB,OAAO,CAAC,GAAkB,EAAE,OAAqC,EAAE,EAAE,CACnE,IAAA,wFAA6B,EAC3B,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAVD,oDAUC;AAeD,SAAgB,sBAAsB,CACpC,UAAsB;IAEtB,OAAO,CAAC,GAAa,EAAE,OAAuC,EAAE,EAAE,CAChE,IAAA,0FAA+B,EAC7B,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAVD,wDAUC;AAmBY,QAAA,0BAA0B,GAAG,IAAA,2BAAe,EACvD,6CAA6C,EAC7C,IAAI,EACJ,CAAC,KAAuC,EAAE,EAAE,CAC1C,IAAA,gEAAuC,EACrC,IAAA,gCAAc,EAAC,KAAK,EAAE;IACpB;QACE,WAAW,EAAE,gDAAoC;QACjD,KAAK,EAAE;YACL,EAAE,IAAI,EAAE,oCAAoC,EAAE;YAC9C,EAAE,IAAI,EAAE,iCAAiC,EAAE;YAC3C,EAAE,IAAI,EAAE,4CAA4C,EAAE;YACtD,EAAE,IAAI,EAAE,yCAAyC,EAAE;YACnD,EAAE,IAAI,EAAE,oBAAoB,EAAE;SAC/B;KACF;CACF,CAAC,CACH,CACJ,EAAoC,CAAC;AAEtC,yJAmD6E;AAzC3E,8JAAA,SAAS,OAAA;AAsBT,kKAAA,aAAa,OAAA;AAGb,qKAAA,gBAAgB,OAAA;AAUhB,2JAAA,MAAM,OAAA;AAIN,wKAAA,mBAAmB,OAAA"}