@wix/calendar 1.0.30 → 1.0.32

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.
@@ -226,71 +226,96 @@ declare enum Status$7 {
226
226
  /** A date time with a time zone, having the UTC offset and date determined by the server. */
227
227
  interface ZonedDate$3 {
228
228
  /**
229
- * Local date time, in ISO-8601 format.
230
- * E.g, "2024-01-30T13:30:00".
231
- *
232
- * Note: seconds are not supported and ignored.
229
+ * Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
230
+ * For example, `2024-01-30T13:30:00`.
231
+ * Wix Calendar APIs ignore seconds.
233
232
  */
234
233
  localDate?: string | null;
235
234
  /**
236
- * The event time zone.
235
+ * Time zone in
236
+ * [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
237
+ * For example, `America/New_York`.
237
238
  * @readonly
238
239
  */
239
240
  timeZone?: string | null;
240
241
  /**
241
- * The UTC date determined by the server.
242
- * Not returned for adjusted dates.
242
+ * UTC date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
243
+ * For example, `2024-01-30T13:30:00`.
244
+ * Not available for adjusted date fields.
243
245
  * @readonly
244
246
  */
245
247
  utcDate?: Date | null;
246
248
  }
247
249
  declare enum RecurrenceType$1 {
248
250
  UNKNOWN_RECURRENCE_TYPE = "UNKNOWN_RECURRENCE_TYPE",
249
- /** No recurrence, i.e the event is a single event instance. Default. */
251
+ /** The event occurs only once and doesn't repeat. */
250
252
  NONE = "NONE",
251
- /** The event is the recurrence master defining the recurrence rule, which is the repeat pattern for the events. */
253
+ /** Defines the recurrence pattern for a series of recurring events. */
252
254
  MASTER = "MASTER",
253
- /** The event is an instance of a recurring event. Read only. */
255
+ /** A specific occurrence of a recurring event. You can't create an event with `{"recurrenceType": "INSTANCE"}`, instead it's automatically generated based on the recurrence rule. If you update an `INSTANCE` event, `recurrenceType` automatically changes to `EXCEPTION`. */
254
256
  INSTANCE = "INSTANCE",
255
- /** The event is an exceptional instance of a recurring event. Read only. */
257
+ /** A modified instance of a recurring event that differs from the recurrence pattern. For example, an event with a different time or location. You can't create an `EXCEPTION` event directly, instead it's set automatically when you update an `INSTANCE` event. */
256
258
  EXCEPTION = "EXCEPTION"
257
259
  }
258
260
  interface RecurrenceRule$1 {
259
- /** The frequency with which the event should be repeated. */
261
+ /**
262
+ * Frequency how often the event repeats. Works together with `interval`.
263
+ *
264
+ * Supported values:
265
+ * + `WEEKLY`: The event's recurrence pattern is based on weeks.
266
+ */
260
267
  frequency?: Frequency$1;
261
268
  /**
262
- * Works together with `frequency` to specify how often the event should be repeated. Default is `1`.
263
- * For example, `WEEKLY` frequency and `interval` of `2` means once every two weeks.
269
+ * Interval how often the event repeats. Works together with `frequency`.
270
+ * For example, `frequency` set to `WEEKLY` and `interval` set to `2` means
271
+ * the event repeats every 2 weeks.
272
+ *
273
+ * Min: `1`
274
+ * Max: `4`
275
+ * Default: `1`
264
276
  */
265
277
  interval?: number | null;
266
278
  /**
267
- * The days of the week when the event should be repeated.
279
+ * Days of the week when the recurring event takes place.
268
280
  * Currently, only a single day is supported.
281
+ *
282
+ * Min: 1 day
283
+ * Max: 1 day
269
284
  */
270
285
  days?: Day$1[];
271
286
  /**
272
- * The date until which the event should be repeated.
273
- * When it is not specified, the event repeats forever.
287
+ * Date until when the event repeats.
288
+ * If not specified, the event repeats forever.
274
289
  */
275
290
  until?: ZonedDate$3;
276
291
  /**
277
- * Read-only until date adjusted to the Wix Business time zone, or `request.timeZone` if provided.
292
+ * Date until when the event repeats
293
+ * adjusted to the `timeZone` of the business
294
+ * [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object)
295
+ * or a different `timeZone` you provide in the call's request.
278
296
  * @readonly
279
297
  */
280
298
  adjustedUntil?: ZonedDate$3;
281
299
  }
282
300
  declare enum Frequency$1 {
283
301
  UNKNOWN_FREQUENCY = "UNKNOWN_FREQUENCY",
284
- /** The event repeats every few weeks. */
302
+ /** The event's recurrence pattern is based on weeks. */
285
303
  WEEKLY = "WEEKLY"
286
304
  }
287
305
  declare enum Day$1 {
306
+ /** The recurring event takes place on Mondays. */
288
307
  MONDAY = "MONDAY",
308
+ /** The recurring event takes place on Tuesdays. */
289
309
  TUESDAY = "TUESDAY",
310
+ /** The recurring event takes place on Wednesday. */
290
311
  WEDNESDAY = "WEDNESDAY",
312
+ /** The recurring event takes place on Thursdays. */
291
313
  THURSDAY = "THURSDAY",
314
+ /** The recurring event takes place on Fridays. */
292
315
  FRIDAY = "FRIDAY",
316
+ /** The recurring event takes place on Saturdays. */
293
317
  SATURDAY = "SATURDAY",
318
+ /** The recurring event takes place on Sundays. */
294
319
  SUNDAY = "SUNDAY"
295
320
  }
296
321
  declare enum Transparency$1 {
@@ -335,24 +360,33 @@ declare enum LocationType$3 {
335
360
  CUSTOM = "CUSTOM"
336
361
  }
337
362
  interface Resource$1 {
338
- /** The resource ID. */
363
+ /** Resource ID. */
339
364
  id?: string | null;
340
365
  /**
341
- * The resource name.
366
+ * Resource name.
342
367
  * @readonly
343
368
  */
344
369
  name?: string | null;
345
370
  /**
346
- * The resource type.
371
+ * Resource type.
347
372
  * @readonly
348
373
  */
349
374
  type?: string | null;
350
375
  /**
351
- * Specifies whether the event blocks the resource time.
352
- * Default is `OPAQUE`.
376
+ * Specifies whether the event blocks time in the resource's schedule.
377
+ *
378
+ * Supported values:
379
+ * + `OPAQUE`: The schedule is blocked during the event, preventing other events that involve the same resource from being scheduled at the same time.
380
+ * + `TRANSPARENT`: The schedule remains open during the event, allowing other events to be scheduled concurrently.
381
+ *
382
+ * Default: `OPAQUE`.
353
383
  */
354
384
  transparency?: Transparency$1;
355
- /** Optional permission role to grant the identities associated with the resource. */
385
+ /**
386
+ * Permission role associated with the resource. Refer to the
387
+ * [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#roles)
388
+ * for more information.
389
+ */
356
390
  permissionRole?: Role$3;
357
391
  }
358
392
  declare enum Role$3 {
@@ -363,36 +397,57 @@ declare enum Role$3 {
363
397
  COMMENTER = "COMMENTER"
364
398
  }
365
399
  interface Participants$1 {
366
- /** The total number of participants. */
400
+ /**
401
+ * Total number of participants.
402
+ *
403
+ * Min: `0`
404
+ */
367
405
  total?: number | null;
368
- /** A full or partial list of the participants. */
406
+ /**
407
+ * Full or partial list of the participants.
408
+ *
409
+ * Max: 50 participants
410
+ */
369
411
  list?: Participant$3[];
370
- /** Whether there are more participants for the event which were not listed. */
412
+ /**
413
+ * Whether there are more participants for the event than listed.
414
+ *
415
+ * + `false`: The list includes all participants.
416
+ * + `true`: The list doesn't include all participants.
417
+ */
371
418
  hasMore?: boolean | null;
372
419
  /**
373
- * The participants status.
420
+ * Participant's status.
374
421
  *
375
- * The possible values are:
376
- * - `"CONFIRMED"` All participants are confirmed.
377
- * - `"PENDING_CONFIRMATION"` Some participants are pending confirmation..
422
+ * Supported values:
423
+ * + `CONFIRMED`: All participants are confirmed.
424
+ * + `PENDING_CONFIRMATION`: At least one participant isn't confirmed yet.
378
425
  */
379
426
  status?: ParticipantsStatus$1;
380
427
  }
381
428
  interface Participant$3 {
382
- /** The participant name. */
429
+ /**
430
+ * Participant name.
431
+ *
432
+ * Min: 1 character
433
+ * Max: 200 characters
434
+ */
383
435
  name?: string | null;
384
- /** The participant phone. */
436
+ /** Participant's phone number. */
385
437
  phone?: string | null;
386
- /** The participant email address. */
438
+ /** Participant's email address. */
387
439
  email?: string | null;
388
- /** The ID of the Wix contact. */
440
+ /**
441
+ * [Contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/contacts/contact-v4/contact-object)
442
+ * ID of the parcipant.
443
+ */
389
444
  contactId?: string | null;
390
445
  }
391
446
  declare enum ParticipantsStatus$1 {
392
447
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
393
448
  /** All participants are confirmed. */
394
449
  CONFIRMED = "CONFIRMED",
395
- /** Some participants are pending confirmation. */
450
+ /** At least one participant isn't confirmed yet. */
396
451
  PENDING_CONFIRMATION = "PENDING_CONFIRMATION"
397
452
  }
398
453
  interface ConferencingDetails$3 {
@@ -1374,71 +1429,96 @@ declare enum Status$6 {
1374
1429
  /** A date time with a time zone, having the UTC offset and date determined by the server. */
1375
1430
  interface ZonedDate$2 {
1376
1431
  /**
1377
- * Local date time, in ISO-8601 format.
1378
- * E.g, "2024-01-30T13:30:00".
1379
- *
1380
- * Note: seconds are not supported and ignored.
1432
+ * Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
1433
+ * For example, `2024-01-30T13:30:00`.
1434
+ * Wix Calendar APIs ignore seconds.
1381
1435
  */
1382
1436
  localDate?: string | null;
1383
1437
  /**
1384
- * The event time zone.
1438
+ * Time zone in
1439
+ * [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
1440
+ * For example, `America/New_York`.
1385
1441
  * @readonly
1386
1442
  */
1387
1443
  timeZone?: string | null;
1388
1444
  /**
1389
- * The UTC date determined by the server.
1390
- * Not returned for adjusted dates.
1445
+ * UTC date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
1446
+ * For example, `2024-01-30T13:30:00`.
1447
+ * Not available for adjusted date fields.
1391
1448
  * @readonly
1392
1449
  */
1393
1450
  utcDate?: Date | null;
1394
1451
  }
1395
1452
  declare enum RecurrenceType {
1396
1453
  UNKNOWN_RECURRENCE_TYPE = "UNKNOWN_RECURRENCE_TYPE",
1397
- /** No recurrence, i.e the event is a single event instance. Default. */
1454
+ /** The event occurs only once and doesn't repeat. */
1398
1455
  NONE = "NONE",
1399
- /** The event is the recurrence master defining the recurrence rule, which is the repeat pattern for the events. */
1456
+ /** Defines the recurrence pattern for a series of recurring events. */
1400
1457
  MASTER = "MASTER",
1401
- /** The event is an instance of a recurring event. Read only. */
1458
+ /** A specific occurrence of a recurring event. You can't create an event with `{"recurrenceType": "INSTANCE"}`, instead it's automatically generated based on the recurrence rule. If you update an `INSTANCE` event, `recurrenceType` automatically changes to `EXCEPTION`. */
1402
1459
  INSTANCE = "INSTANCE",
1403
- /** The event is an exceptional instance of a recurring event. Read only. */
1460
+ /** A modified instance of a recurring event that differs from the recurrence pattern. For example, an event with a different time or location. You can't create an `EXCEPTION` event directly, instead it's set automatically when you update an `INSTANCE` event. */
1404
1461
  EXCEPTION = "EXCEPTION"
1405
1462
  }
1406
1463
  interface RecurrenceRule {
1407
- /** The frequency with which the event should be repeated. */
1464
+ /**
1465
+ * Frequency how often the event repeats. Works together with `interval`.
1466
+ *
1467
+ * Supported values:
1468
+ * + `WEEKLY`: The event's recurrence pattern is based on weeks.
1469
+ */
1408
1470
  frequency?: Frequency;
1409
1471
  /**
1410
- * Works together with `frequency` to specify how often the event should be repeated. Default is `1`.
1411
- * For example, `WEEKLY` frequency and `interval` of `2` means once every two weeks.
1472
+ * Interval how often the event repeats. Works together with `frequency`.
1473
+ * For example, `frequency` set to `WEEKLY` and `interval` set to `2` means
1474
+ * the event repeats every 2 weeks.
1475
+ *
1476
+ * Min: `1`
1477
+ * Max: `4`
1478
+ * Default: `1`
1412
1479
  */
1413
1480
  interval?: number | null;
1414
1481
  /**
1415
- * The days of the week when the event should be repeated.
1482
+ * Days of the week when the recurring event takes place.
1416
1483
  * Currently, only a single day is supported.
1484
+ *
1485
+ * Min: 1 day
1486
+ * Max: 1 day
1417
1487
  */
1418
1488
  days?: Day[];
1419
1489
  /**
1420
- * The date until which the event should be repeated.
1421
- * When it is not specified, the event repeats forever.
1490
+ * Date until when the event repeats.
1491
+ * If not specified, the event repeats forever.
1422
1492
  */
1423
1493
  until?: ZonedDate$2;
1424
1494
  /**
1425
- * Read-only until date adjusted to the Wix Business time zone, or `request.timeZone` if provided.
1495
+ * Date until when the event repeats
1496
+ * adjusted to the `timeZone` of the business
1497
+ * [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object)
1498
+ * or a different `timeZone` you provide in the call's request.
1426
1499
  * @readonly
1427
1500
  */
1428
1501
  adjustedUntil?: ZonedDate$2;
1429
1502
  }
1430
1503
  declare enum Frequency {
1431
1504
  UNKNOWN_FREQUENCY = "UNKNOWN_FREQUENCY",
1432
- /** The event repeats every few weeks. */
1505
+ /** The event's recurrence pattern is based on weeks. */
1433
1506
  WEEKLY = "WEEKLY"
1434
1507
  }
1435
1508
  declare enum Day {
1509
+ /** The recurring event takes place on Mondays. */
1436
1510
  MONDAY = "MONDAY",
1511
+ /** The recurring event takes place on Tuesdays. */
1437
1512
  TUESDAY = "TUESDAY",
1513
+ /** The recurring event takes place on Wednesday. */
1438
1514
  WEDNESDAY = "WEDNESDAY",
1515
+ /** The recurring event takes place on Thursdays. */
1439
1516
  THURSDAY = "THURSDAY",
1517
+ /** The recurring event takes place on Fridays. */
1440
1518
  FRIDAY = "FRIDAY",
1519
+ /** The recurring event takes place on Saturdays. */
1441
1520
  SATURDAY = "SATURDAY",
1521
+ /** The recurring event takes place on Sundays. */
1442
1522
  SUNDAY = "SUNDAY"
1443
1523
  }
1444
1524
  declare enum Transparency {
@@ -1483,24 +1563,33 @@ declare enum LocationType$2 {
1483
1563
  CUSTOM = "CUSTOM"
1484
1564
  }
1485
1565
  interface Resource {
1486
- /** The resource ID. */
1566
+ /** Resource ID. */
1487
1567
  _id?: string | null;
1488
1568
  /**
1489
- * The resource name.
1569
+ * Resource name.
1490
1570
  * @readonly
1491
1571
  */
1492
1572
  name?: string | null;
1493
1573
  /**
1494
- * The resource type.
1574
+ * Resource type.
1495
1575
  * @readonly
1496
1576
  */
1497
1577
  type?: string | null;
1498
1578
  /**
1499
- * Specifies whether the event blocks the resource time.
1500
- * Default is `OPAQUE`.
1579
+ * Specifies whether the event blocks time in the resource's schedule.
1580
+ *
1581
+ * Supported values:
1582
+ * + `OPAQUE`: The schedule is blocked during the event, preventing other events that involve the same resource from being scheduled at the same time.
1583
+ * + `TRANSPARENT`: The schedule remains open during the event, allowing other events to be scheduled concurrently.
1584
+ *
1585
+ * Default: `OPAQUE`.
1501
1586
  */
1502
1587
  transparency?: Transparency;
1503
- /** Optional permission role to grant the identities associated with the resource. */
1588
+ /**
1589
+ * Permission role associated with the resource. Refer to the
1590
+ * [permissions article](https://dev.wix.com/docs/rest/business-management/calendar/permissions#roles)
1591
+ * for more information.
1592
+ */
1504
1593
  permissionRole?: Role$2;
1505
1594
  }
1506
1595
  declare enum Role$2 {
@@ -1511,36 +1600,57 @@ declare enum Role$2 {
1511
1600
  COMMENTER = "COMMENTER"
1512
1601
  }
1513
1602
  interface Participants {
1514
- /** The total number of participants. */
1603
+ /**
1604
+ * Total number of participants.
1605
+ *
1606
+ * Min: `0`
1607
+ */
1515
1608
  total?: number | null;
1516
- /** A full or partial list of the participants. */
1609
+ /**
1610
+ * Full or partial list of the participants.
1611
+ *
1612
+ * Max: 50 participants
1613
+ */
1517
1614
  list?: Participant$2[];
1518
- /** Whether there are more participants for the event which were not listed. */
1615
+ /**
1616
+ * Whether there are more participants for the event than listed.
1617
+ *
1618
+ * + `false`: The list includes all participants.
1619
+ * + `true`: The list doesn't include all participants.
1620
+ */
1519
1621
  hasMore?: boolean | null;
1520
1622
  /**
1521
- * The participants status.
1623
+ * Participant's status.
1522
1624
  *
1523
- * The possible values are:
1524
- * - `"CONFIRMED"` All participants are confirmed.
1525
- * - `"PENDING_CONFIRMATION"` Some participants are pending confirmation..
1625
+ * Supported values:
1626
+ * + `CONFIRMED`: All participants are confirmed.
1627
+ * + `PENDING_CONFIRMATION`: At least one participant isn't confirmed yet.
1526
1628
  */
1527
1629
  status?: ParticipantsStatus;
1528
1630
  }
1529
1631
  interface Participant$2 {
1530
- /** The participant name. */
1632
+ /**
1633
+ * Participant name.
1634
+ *
1635
+ * Min: 1 character
1636
+ * Max: 200 characters
1637
+ */
1531
1638
  name?: string | null;
1532
- /** The participant phone. */
1639
+ /** Participant's phone number. */
1533
1640
  phone?: string | null;
1534
- /** The participant email address. */
1641
+ /** Participant's email address. */
1535
1642
  email?: string | null;
1536
- /** The ID of the Wix contact. */
1643
+ /**
1644
+ * [Contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/contacts/contact-v4/contact-object)
1645
+ * ID of the parcipant.
1646
+ */
1537
1647
  contactId?: string | null;
1538
1648
  }
1539
1649
  declare enum ParticipantsStatus {
1540
1650
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
1541
1651
  /** All participants are confirmed. */
1542
1652
  CONFIRMED = "CONFIRMED",
1543
- /** Some participants are pending confirmation. */
1653
+ /** At least one participant isn't confirmed yet. */
1544
1654
  PENDING_CONFIRMATION = "PENDING_CONFIRMATION"
1545
1655
  }
1546
1656
  interface ConferencingDetails$2 {
@@ -2349,7 +2459,12 @@ declare namespace meta$4 {
2349
2459
  export { type __PublicMethodMetaInfo$4 as __PublicMethodMetaInfo, meta$4_bulkCancelEvent as bulkCancelEvent, meta$4_bulkCreateEvent as bulkCreateEvent, meta$4_bulkUpdateEvent as bulkUpdateEvent, meta$4_cancelEvent as cancelEvent, meta$4_createEvent as createEvent, meta$4_getEvent as getEvent, meta$4_listEvents as listEvents, meta$4_listEventsByContactId as listEventsByContactId, meta$4_listEventsByMemberId as listEventsByMemberId, meta$4_queryEvents as queryEvents, meta$4_restoreEventDefaults as restoreEventDefaults, meta$4_splitRecurringEvent as splitRecurringEvent, meta$4_updateEvent as updateEvent };
2350
2460
  }
2351
2461
 
2352
- /** {{TBD}} */
2462
+ /**
2463
+ * The `eventsView` object gives you details about how far into the future you can
2464
+ * easily get a complete picture of a calendar. Subscribing to the event view
2465
+ * webhooks lets you keep track of a calendar's single-occurrence, `EXCEPTION`, and
2466
+ * `INSTANCE` events at least one year into the future.
2467
+ */
2353
2468
  interface EventsView$1 {
2354
2469
  /**
2355
2470
  * End date of the event view in `YYYY-MM-DDThh:mm:ss.sssZ` format.
@@ -2369,7 +2484,12 @@ interface GetEventsViewResponse$1 {
2369
2484
  eventsView?: EventsView$1;
2370
2485
  }
2371
2486
 
2372
- /** {{TBD}} */
2487
+ /**
2488
+ * The `eventsView` object gives you details about how far into the future you can
2489
+ * easily get a complete picture of a calendar. Subscribing to the event view
2490
+ * webhooks lets you keep track of a calendar's single-occurrence, `EXCEPTION`, and
2491
+ * `INSTANCE` events at least one year into the future.
2492
+ */
2373
2493
  interface EventsView {
2374
2494
  /**
2375
2495
  * End date of the event view in `YYYY-MM-DDThh:mm:ss.sssZ` format.
@@ -2411,7 +2531,7 @@ declare namespace meta$3 {
2411
2531
  * an [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
2412
2532
  * or [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object).
2413
2533
  * It includes details about the participant, whether the participation status is confirmed or
2414
- * pending, which app owns the relevant event or shcedule, and allows for custom data extensions.
2534
+ * pending, which app owns the relevant event or schedule, and allows for custom data extensions.
2415
2535
  */
2416
2536
  interface Participation$1 extends ParticipationParticipatedItemOneOf$1 {
2417
2537
  /**
@@ -2635,7 +2755,7 @@ interface UpdateParticipationResponseNonNullableFields$1 {
2635
2755
  * an [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)
2636
2756
  * or [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object).
2637
2757
  * It includes details about the participant, whether the participation status is confirmed or
2638
- * pending, which app owns the relevant event or shcedule, and allows for custom data extensions.
2758
+ * pending, which app owns the relevant event or schedule, and allows for custom data extensions.
2639
2759
  */
2640
2760
  interface Participation extends ParticipationParticipatedItemOneOf {
2641
2761
  /**
@@ -3839,20 +3959,22 @@ declare enum Status$1 {
3839
3959
  /** A date time with a time zone, having the UTC offset and date determined by the server. */
3840
3960
  interface ZonedDate$1 {
3841
3961
  /**
3842
- * Local date time, in ISO-8601 format.
3843
- * E.g, "2024-01-30T13:30:00".
3844
- *
3845
- * Note: seconds are not supported and ignored.
3962
+ * Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
3963
+ * For example, `2024-01-30T13:30:00`.
3964
+ * Wix Calendar APIs ignore seconds.
3846
3965
  */
3847
3966
  localDate?: string | null;
3848
3967
  /**
3849
- * The event time zone.
3968
+ * Time zone in
3969
+ * [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
3970
+ * For example, `America/New_York`.
3850
3971
  * @readonly
3851
3972
  */
3852
3973
  timeZone?: string | null;
3853
3974
  /**
3854
- * The UTC date determined by the server.
3855
- * Not returned for adjusted dates.
3975
+ * UTC date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
3976
+ * For example, `2024-01-30T13:30:00`.
3977
+ * Not available for adjusted date fields.
3856
3978
  * @readonly
3857
3979
  */
3858
3980
  utcDate?: Date | null;
@@ -3976,20 +4098,22 @@ declare enum Status {
3976
4098
  /** A date time with a time zone, having the UTC offset and date determined by the server. */
3977
4099
  interface ZonedDate {
3978
4100
  /**
3979
- * Local date time, in ISO-8601 format.
3980
- * E.g, "2024-01-30T13:30:00".
3981
- *
3982
- * Note: seconds are not supported and ignored.
4101
+ * Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
4102
+ * For example, `2024-01-30T13:30:00`.
4103
+ * Wix Calendar APIs ignore seconds.
3983
4104
  */
3984
4105
  localDate?: string | null;
3985
4106
  /**
3986
- * The event time zone.
4107
+ * Time zone in
4108
+ * [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
4109
+ * For example, `America/New_York`.
3987
4110
  * @readonly
3988
4111
  */
3989
4112
  timeZone?: string | null;
3990
4113
  /**
3991
- * The UTC date determined by the server.
3992
- * Not returned for adjusted dates.
4114
+ * UTC date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
4115
+ * For example, `2024-01-30T13:30:00`.
4116
+ * Not available for adjusted date fields.
3993
4117
  * @readonly
3994
4118
  */
3995
4119
  utcDate?: Date | null;