@wix/events 1.0.323 → 1.0.324

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.
@@ -498,11 +498,11 @@ interface EventGuest {
498
498
  /** Secondary language code in [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Used when the event ticket should be translated into another language. */
499
499
  secondaryLanguageCode?: string | null;
500
500
  /** Date and time the guest was created in `yyyy-mm-ddThh:mm:sssZ` format. */
501
- _createdDate?: Date;
501
+ _createdDate?: Date | null;
502
502
  /** Date and time the guest was updated in `yyyy-mm-ddThh:mm:sssZ` format. */
503
- _updatedDate?: Date;
503
+ _updatedDate?: Date | null;
504
504
  /** Date and time of guest's latest attendance status update. */
505
- attendanceStatusUpdatedDate?: Date;
505
+ attendanceStatusUpdatedDate?: Date | null;
506
506
  /** Site member ID. */
507
507
  memberId?: string | null;
508
508
  /** Guest type: <br/> <br/> `RSVP`: An invited guest, no ticket necessary. <br/> <br/> `BUYER`: The guest who bought the tickets. <br/> <br/> `TICKET_HOLDER`: The guest for whom the ticket was bought. */
@@ -850,9 +850,9 @@ interface DateAndTimeSettings$2 {
850
850
  /** Message that is displayed when time and date is TBD. */
851
851
  dateAndTimeTbdMessage?: string | null;
852
852
  /** Event start date. */
853
- startDate?: Date;
853
+ startDate?: Date | null;
854
854
  /** Event end date. */
855
- endDate?: Date;
855
+ endDate?: Date | null;
856
856
  /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
857
857
  timeZoneId?: string | null;
858
858
  /** Whether the end date is hidden in the formatted date and time. */
@@ -899,9 +899,9 @@ interface Recurrences$7 {
899
899
  }
900
900
  interface Occurrence$7 {
901
901
  /** Event start date. */
902
- startDate?: Date;
902
+ startDate?: Date | null;
903
903
  /** Event end date. */
904
- endDate?: Date;
904
+ endDate?: Date | null;
905
905
  /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
906
906
  timeZoneId?: string | null;
907
907
  /** Whether the time zone is displayed in a formatted schedule. */
@@ -1246,7 +1246,7 @@ interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
1246
1246
  /** ID of the entity associated with the event. */
1247
1247
  entityId?: string;
1248
1248
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1249
- eventTime?: Date;
1249
+ eventTime?: Date | null;
1250
1250
  /**
1251
1251
  * Whether the event was triggered as a result of a privacy regulation application
1252
1252
  * (for example, GDPR).
@@ -1275,7 +1275,7 @@ interface EntityCreatedEvent$9 {
1275
1275
  entity?: string;
1276
1276
  }
1277
1277
  interface RestoreInfo$9 {
1278
- deletedDate?: Date;
1278
+ deletedDate?: Date | null;
1279
1279
  }
1280
1280
  interface EntityUpdatedEvent$9 {
1281
1281
  /**
@@ -1450,7 +1450,7 @@ interface Language {
1450
1450
  }
1451
1451
  interface RsvpCreated$2 {
1452
1452
  /** RSVP created timestamp in ISO UTC format. */
1453
- timestamp?: Date;
1453
+ timestamp?: Date | null;
1454
1454
  /** Site language when RSVP created */
1455
1455
  language?: string | null;
1456
1456
  /** Notifications silenced for this domain event. */
@@ -1495,11 +1495,11 @@ interface Guest$4 {
1495
1495
  }
1496
1496
  interface CheckIn$4 {
1497
1497
  /** Time of check-in */
1498
- created?: Date;
1498
+ created?: Date | null;
1499
1499
  }
1500
1500
  interface RsvpUpdated$2 {
1501
1501
  /** RSVP updated timestamp in ISO UTC format. */
1502
- timestamp?: Date;
1502
+ timestamp?: Date | null;
1503
1503
  /** Site language when RSVP created */
1504
1504
  language?: string | null;
1505
1505
  /** Locale in which Rsvp was created. */
@@ -1513,7 +1513,7 @@ interface RsvpUpdated$2 {
1513
1513
  /** Member ID associated with this RSVP. */
1514
1514
  memberId?: string | null;
1515
1515
  /** RSVP created timestamp. */
1516
- created?: Date;
1516
+ created?: Date | null;
1517
1517
  /** Guest first name. */
1518
1518
  firstName?: string;
1519
1519
  /** Guest last name. */
@@ -1533,7 +1533,7 @@ interface RsvpUpdated$2 {
1533
1533
  }
1534
1534
  interface RsvpDeleted$1 {
1535
1535
  /** RSVP deleted timestamp in ISO UTC format. */
1536
- timestamp?: Date;
1536
+ timestamp?: Date | null;
1537
1537
  /** Event ID. */
1538
1538
  eventId?: string;
1539
1539
  /** RSVP ID. */
@@ -1547,7 +1547,7 @@ interface RsvpDeleted$1 {
1547
1547
  }
1548
1548
  interface OrderConfirmed$2 {
1549
1549
  /** Order confirmation timestamp in ISO UTC. */
1550
- timestamp?: Date;
1550
+ timestamp?: Date | null;
1551
1551
  /** Site language when Order initiated */
1552
1552
  language?: string | null;
1553
1553
  /** Notifications silenced for this domain event. */
@@ -1566,7 +1566,7 @@ interface OrderConfirmed$2 {
1566
1566
  * Order created timestamp
1567
1567
  * @readonly
1568
1568
  */
1569
- created?: Date;
1569
+ created?: Date | null;
1570
1570
  /** Buyer first name. */
1571
1571
  firstName?: string;
1572
1572
  /** Buyer last name. */
@@ -1620,7 +1620,7 @@ interface Ticket$3 {
1620
1620
  }
1621
1621
  interface OrderUpdated$2 {
1622
1622
  /** Order updated timestamp in ISO UTC format. */
1623
- timestamp?: Date;
1623
+ timestamp?: Date | null;
1624
1624
  /** Site language when Order initiated */
1625
1625
  language?: string | null;
1626
1626
  /** Locale in which Order was created. */
@@ -1637,12 +1637,12 @@ interface OrderUpdated$2 {
1637
1637
  * Order created timestamp.
1638
1638
  * @readonly
1639
1639
  */
1640
- created?: Date;
1640
+ created?: Date | null;
1641
1641
  /**
1642
1642
  * Order updated timestamp.
1643
1643
  * @readonly
1644
1644
  */
1645
- updated?: Date;
1645
+ updated?: Date | null;
1646
1646
  /** Buyer first name. */
1647
1647
  firstName?: string;
1648
1648
  /** Buyer last name. */
@@ -1666,7 +1666,7 @@ interface OrderUpdated$2 {
1666
1666
  }
1667
1667
  interface OrderDeleted$1 {
1668
1668
  /** Order deleted timestamp in ISO UTC format. */
1669
- timestamp?: Date;
1669
+ timestamp?: Date | null;
1670
1670
  /** Event ID. */
1671
1671
  eventId?: string;
1672
1672
  /** Unique order number. */
@@ -1679,12 +1679,12 @@ interface OrderDeleted$1 {
1679
1679
  * Order created timestamp.
1680
1680
  * @readonly
1681
1681
  */
1682
- created?: Date;
1682
+ created?: Date | null;
1683
1683
  /**
1684
1684
  * Order updated timestamp.
1685
1685
  * @readonly
1686
1686
  */
1687
- updated?: Date;
1687
+ updated?: Date | null;
1688
1688
  /** Whether order was anonymized by GDPR delete. */
1689
1689
  anonymized?: boolean;
1690
1690
  /** Order type. */
@@ -1702,7 +1702,7 @@ declare enum OrderType$1 {
1702
1702
  }
1703
1703
  interface EventDeleted$5 {
1704
1704
  /** Event deleted timestamp in ISO UTC format. */
1705
- timestamp?: Date;
1705
+ timestamp?: Date | null;
1706
1706
  /** Event ID. */
1707
1707
  eventId?: string;
1708
1708
  /** Event title. */
@@ -1712,7 +1712,7 @@ interface EventDeleted$5 {
1712
1712
  }
1713
1713
  interface Task {
1714
1714
  key?: TaskKey;
1715
- executeAt?: Date;
1715
+ executeAt?: Date | null;
1716
1716
  payload?: string | null;
1717
1717
  }
1718
1718
  interface TaskKey {
@@ -1846,7 +1846,7 @@ interface EventMetadata$6 extends BaseEventMetadata$b {
1846
1846
  /** ID of the entity associated with the event. */
1847
1847
  entityId?: string;
1848
1848
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1849
- eventTime?: Date;
1849
+ eventTime?: Date | null;
1850
1850
  /**
1851
1851
  * Whether the event was triggered as a result of a privacy regulation application
1852
1852
  * (for example, GDPR).
@@ -2101,12 +2101,12 @@ interface NotificationConfig {
2101
2101
  * Represents the time this NotificationConfig was created.
2102
2102
  * @readonly
2103
2103
  */
2104
- _createdDate?: Date;
2104
+ _createdDate?: Date | null;
2105
2105
  /**
2106
2106
  * Represents the time this NotificationConfig was last updated.
2107
2107
  * @readonly
2108
2108
  */
2109
- _updatedDate?: Date;
2109
+ _updatedDate?: Date | null;
2110
2110
  /** Rsvp confirmation. */
2111
2111
  rsvpConfirmation?: EmailNotificationConfig;
2112
2112
  /** New spots available. */
@@ -2272,7 +2272,7 @@ interface TriggerNotificationResponse {
2272
2272
  }
2273
2273
  interface RsvpCreated$1 {
2274
2274
  /** RSVP created timestamp in ISO UTC format. */
2275
- timestamp?: Date;
2275
+ timestamp?: Date | null;
2276
2276
  /** Site language when RSVP created */
2277
2277
  language?: string | null;
2278
2278
  /** Notifications silenced for this domain event. */
@@ -2393,7 +2393,7 @@ interface Guest$3 {
2393
2393
  }
2394
2394
  interface CheckIn$3 {
2395
2395
  /** Time of check-in */
2396
- created?: Date;
2396
+ created?: Date | null;
2397
2397
  }
2398
2398
  interface OnlineConferencingLogin$4 {
2399
2399
  /**
@@ -2411,7 +2411,7 @@ interface Empty$5 {
2411
2411
  }
2412
2412
  interface RsvpUpdated$1 {
2413
2413
  /** RSVP updated timestamp in ISO UTC format. */
2414
- timestamp?: Date;
2414
+ timestamp?: Date | null;
2415
2415
  /** Site language when RSVP created */
2416
2416
  language?: string | null;
2417
2417
  /** Locale in which Rsvp was created. */
@@ -2425,7 +2425,7 @@ interface RsvpUpdated$1 {
2425
2425
  /** Member ID associated with this RSVP. */
2426
2426
  memberId?: string | null;
2427
2427
  /** RSVP created timestamp. */
2428
- created?: Date;
2428
+ created?: Date | null;
2429
2429
  /** Guest first name. */
2430
2430
  firstName?: string;
2431
2431
  /** Guest last name. */
@@ -2445,7 +2445,7 @@ interface RsvpUpdated$1 {
2445
2445
  }
2446
2446
  interface EventUpdated$3 {
2447
2447
  /** Event update timestamp in ISO UTC format. */
2448
- timestamp?: Date;
2448
+ timestamp?: Date | null;
2449
2449
  /** Event ID. */
2450
2450
  eventId?: string;
2451
2451
  /** Event location. */
@@ -2554,9 +2554,9 @@ interface ScheduleConfig$6 {
2554
2554
  /** TBD message. */
2555
2555
  scheduleTbdMessage?: string | null;
2556
2556
  /** Event start timestamp. */
2557
- startDate?: Date;
2557
+ startDate?: Date | null;
2558
2558
  /** Event end timestamp. */
2559
- endDate?: Date;
2559
+ endDate?: Date | null;
2560
2560
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
2561
2561
  timeZoneId?: string | null;
2562
2562
  /** Whether end date is hidden in the formatted schedule. */
@@ -2582,9 +2582,9 @@ interface Recurrences$6 {
2582
2582
  }
2583
2583
  interface Occurrence$6 {
2584
2584
  /** Event start timestamp. */
2585
- startDate?: Date;
2585
+ startDate?: Date | null;
2586
2586
  /** Event end timestamp. */
2587
- endDate?: Date;
2587
+ endDate?: Date | null;
2588
2588
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
2589
2589
  timeZoneId?: string | null;
2590
2590
  /** Whether time zone is displayed in formatted schedule. */
@@ -2625,9 +2625,9 @@ interface Event$4 {
2625
2625
  /** ISO 639-1 language code of the event (used in content translations). */
2626
2626
  language?: string;
2627
2627
  /** Event creation timestamp. */
2628
- created?: Date;
2628
+ created?: Date | null;
2629
2629
  /** Event modified timestamp. */
2630
- modified?: Date;
2630
+ modified?: Date | null;
2631
2631
  /** Event status. */
2632
2632
  status?: EventStatus$6;
2633
2633
  /** RSVP or ticketing registration details. */
@@ -2746,9 +2746,9 @@ interface RsvpCollectionConfig$4 {
2746
2746
  /** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
2747
2747
  waitlist?: boolean;
2748
2748
  /** Registration start timestamp. */
2749
- startDate?: Date;
2749
+ startDate?: Date | null;
2750
2750
  /** Registration end timestamp. */
2751
- endDate?: Date;
2751
+ endDate?: Date | null;
2752
2752
  }
2753
2753
  declare enum RsvpStatusOptions$4 {
2754
2754
  /** Only YES RSVP status is available for RSVP registration */
@@ -3279,7 +3279,7 @@ interface Category$5 {
3279
3279
  * Date and time when category was created.
3280
3280
  * @readonly
3281
3281
  */
3282
- _createdDate?: Date;
3282
+ _createdDate?: Date | null;
3283
3283
  /**
3284
3284
  * The total number of draft and published events assigned to the category.
3285
3285
  * @readonly
@@ -3325,7 +3325,7 @@ interface LabellingSettings$4 {
3325
3325
  }
3326
3326
  interface OrderConfirmed$1 {
3327
3327
  /** Order confirmation timestamp in ISO UTC. */
3328
- timestamp?: Date;
3328
+ timestamp?: Date | null;
3329
3329
  /** Site language when Order initiated */
3330
3330
  language?: string | null;
3331
3331
  /** Notifications silenced for this domain event. */
@@ -3344,7 +3344,7 @@ interface OrderConfirmed$1 {
3344
3344
  * Order created timestamp
3345
3345
  * @readonly
3346
3346
  */
3347
- created?: Date;
3347
+ created?: Date | null;
3348
3348
  /** Buyer first name. */
3349
3349
  firstName?: string;
3350
3350
  /** Buyer last name. */
@@ -3579,7 +3579,7 @@ declare enum FeeType$2 {
3579
3579
  /** Produced if a buyer email was added to the existing order */
3580
3580
  interface OrderEmailAdded {
3581
3581
  /** Order updated timestamp in ISO UTC format. */
3582
- timestamp?: Date;
3582
+ timestamp?: Date | null;
3583
3583
  /** Site language when Order initiated */
3584
3584
  language?: string | null;
3585
3585
  /** Locale in which Order was created. */
@@ -3598,12 +3598,12 @@ interface OrderEmailAdded {
3598
3598
  * Order created timestamp.
3599
3599
  * @readonly
3600
3600
  */
3601
- created?: Date;
3601
+ created?: Date | null;
3602
3602
  /**
3603
3603
  * Order updated timestamp.
3604
3604
  * @readonly
3605
3605
  */
3606
- updated?: Date;
3606
+ updated?: Date | null;
3607
3607
  /** Buyer first name. */
3608
3608
  firstName?: string | null;
3609
3609
  /** Buyer last name. */
@@ -3627,7 +3627,7 @@ interface OrderEmailAdded {
3627
3627
  }
3628
3628
  interface EventCanceled$2 {
3629
3629
  /** Event canceled timestamp in ISO UTC format. */
3630
- timestamp?: Date;
3630
+ timestamp?: Date | null;
3631
3631
  /** Event ID. */
3632
3632
  eventId?: string;
3633
3633
  /** Event title */
@@ -3637,7 +3637,7 @@ interface EventCanceled$2 {
3637
3637
  }
3638
3638
  interface EventReminder$1 {
3639
3639
  /** Reminder timestamp in ISO UTC format. */
3640
- timestamp?: Date;
3640
+ timestamp?: Date | null;
3641
3641
  /** Event ID. */
3642
3642
  eventId?: string;
3643
3643
  /** Event location. */
@@ -3665,7 +3665,7 @@ interface TimeDuration$1 {
3665
3665
  }
3666
3666
  interface OrderPaid$1 {
3667
3667
  /** Order paid timestamp in ISO UTC. */
3668
- timestamp?: Date;
3668
+ timestamp?: Date | null;
3669
3669
  /** Site language when Order initiated */
3670
3670
  language?: string | null;
3671
3671
  /** Notifications silenced for this domain event. */
@@ -3686,7 +3686,7 @@ interface OrderPaid$1 {
3686
3686
  * Order created timestamp
3687
3687
  * @readonly
3688
3688
  */
3689
- created?: Date;
3689
+ created?: Date | null;
3690
3690
  /** Buyer first name. */
3691
3691
  firstName?: string;
3692
3692
  /** Buyer last name. */
@@ -3728,7 +3728,7 @@ interface DomainEvent$8 extends DomainEventBodyOneOf$8 {
3728
3728
  /** ID of the entity associated with the event. */
3729
3729
  entityId?: string;
3730
3730
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
3731
- eventTime?: Date;
3731
+ eventTime?: Date | null;
3732
3732
  /**
3733
3733
  * Whether the event was triggered as a result of a privacy regulation application
3734
3734
  * (for example, GDPR).
@@ -3757,7 +3757,7 @@ interface EntityCreatedEvent$8 {
3757
3757
  entity?: string;
3758
3758
  }
3759
3759
  interface RestoreInfo$8 {
3760
- deletedDate?: Date;
3760
+ deletedDate?: Date | null;
3761
3761
  }
3762
3762
  interface EntityUpdatedEvent$8 {
3763
3763
  /**
@@ -3816,13 +3816,13 @@ interface OrderCanceled {
3816
3816
  }
3817
3817
  interface EventEnded$2 {
3818
3818
  /** Event end timestamp in ISO UTC format. */
3819
- timestamp?: Date;
3819
+ timestamp?: Date | null;
3820
3820
  /** Event ID. */
3821
3821
  eventId?: string;
3822
3822
  }
3823
3823
  interface EventStarted$1 {
3824
3824
  /** Event start timestamp in ISO UTC format. */
3825
- timestamp?: Date;
3825
+ timestamp?: Date | null;
3826
3826
  /** Event ID. */
3827
3827
  eventId?: string;
3828
3828
  }
@@ -3854,7 +3854,7 @@ interface ResolveEmailNotificationConfigResponse {
3854
3854
  }
3855
3855
  interface EventDeleted$4 {
3856
3856
  /** Event deleted timestamp in ISO UTC format. */
3857
- timestamp?: Date;
3857
+ timestamp?: Date | null;
3858
3858
  /** Event ID. */
3859
3859
  eventId?: string;
3860
3860
  /** Event title. */
@@ -3864,7 +3864,7 @@ interface EventDeleted$4 {
3864
3864
  }
3865
3865
  interface EventCopied$3 {
3866
3866
  /** Event created timestamp in ISO UTC format. */
3867
- timestamp?: Date;
3867
+ timestamp?: Date | null;
3868
3868
  /** Event ID. */
3869
3869
  eventId?: string;
3870
3870
  /** Event location. */
@@ -3976,7 +3976,7 @@ interface EventMetadata$5 extends BaseEventMetadata$a {
3976
3976
  /** ID of the entity associated with the event. */
3977
3977
  entityId?: string;
3978
3978
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
3979
- eventTime?: Date;
3979
+ eventTime?: Date | null;
3980
3980
  /**
3981
3981
  * Whether the event was triggered as a result of a privacy regulation application
3982
3982
  * (for example, GDPR).
@@ -4025,12 +4025,12 @@ interface UpsertNotificationConfig {
4025
4025
  * Represents the time this NotificationConfig was created.
4026
4026
  * @readonly
4027
4027
  */
4028
- _createdDate?: Date;
4028
+ _createdDate?: Date | null;
4029
4029
  /**
4030
4030
  * Represents the time this NotificationConfig was last updated.
4031
4031
  * @readonly
4032
4032
  */
4033
- _updatedDate?: Date;
4033
+ _updatedDate?: Date | null;
4034
4034
  /** Rsvp confirmation. */
4035
4035
  rsvpConfirmation?: EmailNotificationConfig;
4036
4036
  /** New spots available. */
@@ -4162,12 +4162,12 @@ interface ScheduleItem$1 {
4162
4162
  * Date and time when the schedule item was created.
4163
4163
  * @readonly
4164
4164
  */
4165
- _createdDate?: Date;
4165
+ _createdDate?: Date | null;
4166
4166
  /**
4167
4167
  * Date and time when the schedule item was updated.
4168
4168
  * @readonly
4169
4169
  */
4170
- _updatedDate?: Date;
4170
+ _updatedDate?: Date | null;
4171
4171
  /**
4172
4172
  * Event ID to which the schedule belongs.
4173
4173
  * @readonly
@@ -4182,9 +4182,9 @@ interface ScheduleItem$1 {
4182
4182
  /** Time interval on the timeline between two points in time. */
4183
4183
  interface TimeInterval$1 {
4184
4184
  /** Start of the interval. Inclusive. */
4185
- start?: Date;
4185
+ start?: Date | null;
4186
4186
  /** End of the interval. Non-inclusive. */
4187
- end?: Date;
4187
+ end?: Date | null;
4188
4188
  /**
4189
4189
  * Time zone ID in the [TZ database](https://www.iana.org/time-zones) format. For example, `EST`, `America/Los_Angeles`.
4190
4190
  * Default: `Etc/UTC`.
@@ -4210,9 +4210,9 @@ interface ListScheduleItemsRequest$1 {
4210
4210
  */
4211
4211
  state?: StateFilter$1[];
4212
4212
  /** Filters schedule items starting on or after specified point in time. Inclusive. */
4213
- startingFrom?: Date;
4213
+ startingFrom?: Date | null;
4214
4214
  /** Filters schedule items starting before specified point in time. Non-inclusive. */
4215
- startingBefore?: Date;
4215
+ startingBefore?: Date | null;
4216
4216
  /**
4217
4217
  * Deprecated, use `paging`.
4218
4218
  * Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination).
@@ -4572,12 +4572,12 @@ interface ScheduleItem {
4572
4572
  * Date and time when the schedule item was created.
4573
4573
  * @readonly
4574
4574
  */
4575
- _createdDate?: Date;
4575
+ _createdDate?: Date | null;
4576
4576
  /**
4577
4577
  * Date and time when the schedule item was updated.
4578
4578
  * @readonly
4579
4579
  */
4580
- _updatedDate?: Date;
4580
+ _updatedDate?: Date | null;
4581
4581
  /**
4582
4582
  * Event ID to which the schedule belongs.
4583
4583
  * @readonly
@@ -4592,9 +4592,9 @@ interface ScheduleItem {
4592
4592
  /** Time interval on the timeline between two points in time. */
4593
4593
  interface TimeInterval {
4594
4594
  /** Start of the interval. Inclusive. */
4595
- start?: Date;
4595
+ start?: Date | null;
4596
4596
  /** End of the interval. Non-inclusive. */
4597
- end?: Date;
4597
+ end?: Date | null;
4598
4598
  /**
4599
4599
  * Time zone ID in the [TZ database](https://www.iana.org/time-zones) format. For example, `EST`, `America/Los_Angeles`.
4600
4600
  * Default: `Etc/UTC`.
@@ -4620,9 +4620,9 @@ interface ListScheduleItemsRequest {
4620
4620
  */
4621
4621
  state?: StateFilter[];
4622
4622
  /** Filters schedule items starting on or after specified point in time. Inclusive. */
4623
- startingFrom?: Date;
4623
+ startingFrom?: Date | null;
4624
4624
  /** Filters schedule items starting before specified point in time. Non-inclusive. */
4625
- startingBefore?: Date;
4625
+ startingBefore?: Date | null;
4626
4626
  /**
4627
4627
  * Deprecated, use `paging`.
4628
4628
  * Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination).
@@ -4927,9 +4927,9 @@ interface ListScheduleItemsOptions {
4927
4927
  */
4928
4928
  state?: StateFilter[];
4929
4929
  /** Filters schedule items starting on or after specified point in time. Inclusive. */
4930
- startingFrom?: Date;
4930
+ startingFrom?: Date | null;
4931
4931
  /** Filters schedule items starting before specified point in time. Non-inclusive. */
4932
- startingBefore?: Date;
4932
+ startingBefore?: Date | null;
4933
4933
  /**
4934
4934
  * Deprecated, use `paging`.
4935
4935
  * Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination).
@@ -5210,12 +5210,12 @@ interface StaffMember extends StaffMemberEventAccessOneOf {
5210
5210
  * Date and time the staff member was created.
5211
5211
  * @readonly
5212
5212
  */
5213
- _createdDate?: Date;
5213
+ _createdDate?: Date | null;
5214
5214
  /**
5215
5215
  * Date and time the staff member was last updated.
5216
5216
  * @readonly
5217
5217
  */
5218
- _updatedDate?: Date;
5218
+ _updatedDate?: Date | null;
5219
5219
  /** Name. */
5220
5220
  name?: string | null;
5221
5221
  /**
@@ -5481,7 +5481,7 @@ interface DomainEvent$7 extends DomainEventBodyOneOf$7 {
5481
5481
  /** ID of the entity associated with the event. */
5482
5482
  entityId?: string;
5483
5483
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
5484
- eventTime?: Date;
5484
+ eventTime?: Date | null;
5485
5485
  /**
5486
5486
  * Whether the event was triggered as a result of a privacy regulation application
5487
5487
  * (for example, GDPR).
@@ -5510,7 +5510,7 @@ interface EntityCreatedEvent$7 {
5510
5510
  entity?: string;
5511
5511
  }
5512
5512
  interface RestoreInfo$7 {
5513
- deletedDate?: Date;
5513
+ deletedDate?: Date | null;
5514
5514
  }
5515
5515
  interface EntityUpdatedEvent$7 {
5516
5516
  /**
@@ -5629,7 +5629,7 @@ interface EventMetadata$4 extends BaseEventMetadata$9 {
5629
5629
  /** ID of the entity associated with the event. */
5630
5630
  entityId?: string;
5631
5631
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
5632
- eventTime?: Date;
5632
+ eventTime?: Date | null;
5633
5633
  /**
5634
5634
  * Whether the event was triggered as a result of a privacy regulation application
5635
5635
  * (for example, GDPR).
@@ -5685,12 +5685,12 @@ interface UpdateStaffMember {
5685
5685
  * Date and time the staff member was created.
5686
5686
  * @readonly
5687
5687
  */
5688
- _createdDate?: Date;
5688
+ _createdDate?: Date | null;
5689
5689
  /**
5690
5690
  * Date and time the staff member was last updated.
5691
5691
  * @readonly
5692
5692
  */
5693
- _updatedDate?: Date;
5693
+ _updatedDate?: Date | null;
5694
5694
  /** Name. */
5695
5695
  name?: string | null;
5696
5696
  /**
@@ -5947,7 +5947,7 @@ interface Category$4 {
5947
5947
  * Date and time when category was created.
5948
5948
  * @readonly
5949
5949
  */
5950
- _createdDate?: Date;
5950
+ _createdDate?: Date | null;
5951
5951
  /**
5952
5952
  * The total number of draft and published events assigned to the category.
5953
5953
  * @readonly
@@ -6236,7 +6236,7 @@ interface DomainEvent$6 extends DomainEventBodyOneOf$6 {
6236
6236
  /** ID of the entity associated with the event. */
6237
6237
  entityId?: string;
6238
6238
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
6239
- eventTime?: Date;
6239
+ eventTime?: Date | null;
6240
6240
  /**
6241
6241
  * Whether the event was triggered as a result of a privacy regulation application
6242
6242
  * (for example, GDPR).
@@ -6265,7 +6265,7 @@ interface EntityCreatedEvent$6 {
6265
6265
  entity?: string;
6266
6266
  }
6267
6267
  interface RestoreInfo$6 {
6268
- deletedDate?: Date;
6268
+ deletedDate?: Date | null;
6269
6269
  }
6270
6270
  interface EntityUpdatedEvent$6 {
6271
6271
  /**
@@ -6381,7 +6381,7 @@ interface UpdateCategory {
6381
6381
  * Date and time when category was created.
6382
6382
  * @readonly
6383
6383
  */
6384
- _createdDate?: Date;
6384
+ _createdDate?: Date | null;
6385
6385
  /**
6386
6386
  * The total number of draft and published events assigned to the category.
6387
6387
  * @readonly
@@ -7207,7 +7207,7 @@ interface PublishDraftResponse {
7207
7207
  }
7208
7208
  interface EventUpdated$2 {
7209
7209
  /** Event update timestamp in ISO UTC format. */
7210
- timestamp?: Date;
7210
+ timestamp?: Date | null;
7211
7211
  /** Event ID. */
7212
7212
  eventId?: string;
7213
7213
  /** Event location. */
@@ -7331,9 +7331,9 @@ interface ScheduleConfig$5 {
7331
7331
  /** TBD message. */
7332
7332
  scheduleTbdMessage?: string | null;
7333
7333
  /** Event start timestamp. */
7334
- startDate?: Date;
7334
+ startDate?: Date | null;
7335
7335
  /** Event end timestamp. */
7336
- endDate?: Date;
7336
+ endDate?: Date | null;
7337
7337
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
7338
7338
  timeZoneId?: string | null;
7339
7339
  /** Whether end date is hidden in the formatted schedule. */
@@ -7359,9 +7359,9 @@ interface Recurrences$5 {
7359
7359
  }
7360
7360
  interface Occurrence$5 {
7361
7361
  /** Event start timestamp. */
7362
- startDate?: Date;
7362
+ startDate?: Date | null;
7363
7363
  /** Event end timestamp. */
7364
- endDate?: Date;
7364
+ endDate?: Date | null;
7365
7365
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
7366
7366
  timeZoneId?: string | null;
7367
7367
  /** Whether time zone is displayed in formatted schedule. */
@@ -7402,9 +7402,9 @@ interface Event$3 {
7402
7402
  /** ISO 639-1 language code of the event (used in content translations). */
7403
7403
  language?: string;
7404
7404
  /** Event creation timestamp. */
7405
- created?: Date;
7405
+ created?: Date | null;
7406
7406
  /** Event modified timestamp. */
7407
- modified?: Date;
7407
+ modified?: Date | null;
7408
7408
  /** Event status. */
7409
7409
  status?: EventStatus$5;
7410
7410
  /** RSVP or ticketing registration details. */
@@ -7523,9 +7523,9 @@ interface RsvpCollectionConfig$3 {
7523
7523
  /** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
7524
7524
  waitlist?: boolean;
7525
7525
  /** Registration start timestamp. */
7526
- startDate?: Date;
7526
+ startDate?: Date | null;
7527
7527
  /** Registration end timestamp. */
7528
- endDate?: Date;
7528
+ endDate?: Date | null;
7529
7529
  }
7530
7530
  declare enum RsvpStatusOptions$3 {
7531
7531
  /** Only YES RSVP status is available for RSVP registration */
@@ -7815,7 +7815,7 @@ interface Category$3 {
7815
7815
  * Date and time when category was created.
7816
7816
  * @readonly
7817
7817
  */
7818
- _createdDate?: Date;
7818
+ _createdDate?: Date | null;
7819
7819
  /**
7820
7820
  * The total number of draft and published events assigned to the category.
7821
7821
  * @readonly
@@ -7889,7 +7889,7 @@ interface DomainEvent$5 extends DomainEventBodyOneOf$5 {
7889
7889
  /** ID of the entity associated with the event. */
7890
7890
  entityId?: string;
7891
7891
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
7892
- eventTime?: Date;
7892
+ eventTime?: Date | null;
7893
7893
  /**
7894
7894
  * Whether the event was triggered as a result of a privacy regulation application
7895
7895
  * (for example, GDPR).
@@ -7918,7 +7918,7 @@ interface EntityCreatedEvent$5 {
7918
7918
  entity?: string;
7919
7919
  }
7920
7920
  interface RestoreInfo$5 {
7921
- deletedDate?: Date;
7921
+ deletedDate?: Date | null;
7922
7922
  }
7923
7923
  interface EntityUpdatedEvent$5 {
7924
7924
  /**
@@ -8306,7 +8306,7 @@ interface Order {
8306
8306
  * RSVP created timestamp.
8307
8307
  * @readonly
8308
8308
  */
8309
- created?: Date;
8309
+ created?: Date | null;
8310
8310
  /** Guest first name. */
8311
8311
  firstName?: string;
8312
8312
  /** Guest last name. */
@@ -8356,7 +8356,7 @@ interface Order {
8356
8356
  * Order updated timestamp.
8357
8357
  * @readonly
8358
8358
  */
8359
- updated?: Date;
8359
+ updated?: Date | null;
8360
8360
  }
8361
8361
  interface FormResponse$3 {
8362
8362
  /** Input fields for a checkout form. */
@@ -8541,7 +8541,7 @@ interface TicketingTicket$1 {
8541
8541
  }
8542
8542
  interface CheckIn$2 {
8543
8543
  /** Time of check-in */
8544
- created?: Date;
8544
+ created?: Date | null;
8545
8545
  }
8546
8546
  interface GuestDetails$1 {
8547
8547
  /** Whether ticket belongs to assigned guest. */
@@ -8556,6 +8556,8 @@ interface GuestDetails$1 {
8556
8556
  form?: FormResponse$3;
8557
8557
  /** Contact ID associated with this guest. */
8558
8558
  contactId?: string | null;
8559
+ /** Guest phone number. */
8560
+ phone?: string | null;
8559
8561
  }
8560
8562
  declare enum ChannelType$1 {
8561
8563
  /** Buyer created order via one of the online channels (website, mobile app, etc.) */
@@ -8816,7 +8818,7 @@ interface GiftCardPaymentDetails {
8816
8818
  }
8817
8819
  interface OrderDeleted {
8818
8820
  /** Order deleted timestamp in ISO UTC format. */
8819
- timestamp?: Date;
8821
+ timestamp?: Date | null;
8820
8822
  /** Event ID to which the order belongs. */
8821
8823
  eventId?: string;
8822
8824
  /** Unique order number. */
@@ -8829,12 +8831,12 @@ interface OrderDeleted {
8829
8831
  * Order created timestamp.
8830
8832
  * @readonly
8831
8833
  */
8832
- created?: Date;
8834
+ created?: Date | null;
8833
8835
  /**
8834
8836
  * Order updated timestamp.
8835
8837
  * @readonly
8836
8838
  */
8837
- updated?: Date;
8839
+ updated?: Date | null;
8838
8840
  /** Whether order was anonymized by GDPR delete. */
8839
8841
  anonymized?: boolean;
8840
8842
  /** Order type. */
@@ -9048,7 +9050,7 @@ interface UpdateOrderResponse {
9048
9050
  }
9049
9051
  interface OrderUpdated$1 {
9050
9052
  /** Order updated timestamp in ISO UTC format. */
9051
- timestamp?: Date;
9053
+ timestamp?: Date | null;
9052
9054
  /** Site language when Order initiated */
9053
9055
  language?: string | null;
9054
9056
  /** Locale in which Order was created. */
@@ -9065,12 +9067,12 @@ interface OrderUpdated$1 {
9065
9067
  * Order created timestamp.
9066
9068
  * @readonly
9067
9069
  */
9068
- created?: Date;
9070
+ created?: Date | null;
9069
9071
  /**
9070
9072
  * Order updated timestamp.
9071
9073
  * @readonly
9072
9074
  */
9073
- updated?: Date;
9075
+ updated?: Date | null;
9074
9076
  /** Buyer first name. */
9075
9077
  firstName?: string;
9076
9078
  /** Buyer last name. */
@@ -9206,7 +9208,7 @@ interface PaymentTransactionEvent {
9206
9208
  * Crated date
9207
9209
  * @readonly
9208
9210
  */
9209
- _createdDate?: Date;
9211
+ _createdDate?: Date | null;
9210
9212
  /**
9211
9213
  * Reason code
9212
9214
  * @readonly
@@ -9276,7 +9278,7 @@ declare enum WebhookIdentityType$8 {
9276
9278
  }
9277
9279
  interface OrderConfirmed {
9278
9280
  /** Order confirmation timestamp in ISO UTC. */
9279
- timestamp?: Date;
9281
+ timestamp?: Date | null;
9280
9282
  /** Site language when Order initiated */
9281
9283
  language?: string | null;
9282
9284
  /** Notifications silenced for this domain event. */
@@ -9295,7 +9297,7 @@ interface OrderConfirmed {
9295
9297
  * Order created timestamp
9296
9298
  * @readonly
9297
9299
  */
9298
- created?: Date;
9300
+ created?: Date | null;
9299
9301
  /** Buyer first name. */
9300
9302
  firstName?: string;
9301
9303
  /** Buyer last name. */
@@ -9326,7 +9328,7 @@ interface OrderConfirmed {
9326
9328
  }
9327
9329
  interface OrderPaid {
9328
9330
  /** Order paid timestamp in ISO UTC. */
9329
- timestamp?: Date;
9331
+ timestamp?: Date | null;
9330
9332
  /** Site language when Order initiated */
9331
9333
  language?: string | null;
9332
9334
  /** Notifications silenced for this domain event. */
@@ -9347,7 +9349,7 @@ interface OrderPaid {
9347
9349
  * Order created timestamp
9348
9350
  * @readonly
9349
9351
  */
9350
- created?: Date;
9352
+ created?: Date | null;
9351
9353
  /** Buyer first name. */
9352
9354
  firstName?: string;
9353
9355
  /** Buyer last name. */
@@ -9367,7 +9369,7 @@ interface OrderPaid {
9367
9369
  }
9368
9370
  interface ReservationCreated$1 {
9369
9371
  /** Reservation created timestamp in ISO UTC format. */
9370
- timestamp?: Date;
9372
+ timestamp?: Date | null;
9371
9373
  /** Event ID to which the reservation belongs. */
9372
9374
  eventId?: string;
9373
9375
  /**
@@ -9376,13 +9378,13 @@ interface ReservationCreated$1 {
9376
9378
  */
9377
9379
  reservationId?: string;
9378
9380
  /** Reservation expiration timestamp. */
9379
- expires?: Date;
9381
+ expires?: Date | null;
9380
9382
  /** Reservation status. */
9381
9383
  status?: ReservationStatus$1;
9382
9384
  /** Reservation ticket quantities. */
9383
9385
  quantities?: TicketQuantity$1[];
9384
9386
  /** Reservation update timestamp. */
9385
- _updatedDate?: Date;
9387
+ _updatedDate?: Date | null;
9386
9388
  /** Reservation counts. */
9387
9389
  counts?: ReservationCount$1[];
9388
9390
  }
@@ -9407,11 +9409,11 @@ interface TicketQuantity$1 {
9407
9409
  /** Quantity. */
9408
9410
  quantity?: number | null;
9409
9411
  /** Quantity update timestamp. */
9410
- _updatedDate?: Date;
9412
+ _updatedDate?: Date | null;
9411
9413
  }
9412
9414
  interface ReservationCount$1 {
9413
9415
  /** Reservation Count snapshot timestamp. */
9414
- timestamp?: Date;
9416
+ timestamp?: Date | null;
9415
9417
  /** Ticket Definition ID. */
9416
9418
  ticketDefinitionId?: string;
9417
9419
  /** Confirmed reservation count. */
@@ -9423,7 +9425,7 @@ interface ReservationCount$1 {
9423
9425
  }
9424
9426
  interface ReservationUpdated$1 {
9425
9427
  /** Reservation updated timestamp. */
9426
- timestamp?: Date;
9428
+ timestamp?: Date | null;
9427
9429
  /** Event ID to which the reservation belongs. */
9428
9430
  eventId?: string;
9429
9431
  /**
@@ -9434,11 +9436,11 @@ interface ReservationUpdated$1 {
9434
9436
  /** Reservation status. */
9435
9437
  status?: ReservationStatus$1;
9436
9438
  /** Reservation expiration timestamp. */
9437
- expires?: Date;
9439
+ expires?: Date | null;
9438
9440
  /** Reservation ticket quantities. */
9439
9441
  quantities?: TicketQuantity$1[];
9440
9442
  /** Reservation update timestamp. */
9441
- _updatedDate?: Date;
9443
+ _updatedDate?: Date | null;
9442
9444
  /** Reservation counts. */
9443
9445
  counts?: ReservationCount$1[];
9444
9446
  }
@@ -9548,9 +9550,9 @@ interface WixFeeConfig$1 {
9548
9550
  }
9549
9551
  interface TicketSalePeriod$1 {
9550
9552
  /** Ticket sale start timestamp. */
9551
- startDate?: Date;
9553
+ startDate?: Date | null;
9552
9554
  /** Ticket sale end timestamp. */
9553
- endDate?: Date;
9555
+ endDate?: Date | null;
9554
9556
  /** Whether to hide this ticket if it's not on sale */
9555
9557
  hideNotOnSale?: boolean;
9556
9558
  }
@@ -9650,7 +9652,7 @@ interface CreateReservationResponse {
9650
9652
  /** Reservation ID. */
9651
9653
  _id?: string;
9652
9654
  /** Reservation expiration timestamp. */
9653
- expires?: Date;
9655
+ expires?: Date | null;
9654
9656
  /** Ticket reservations. */
9655
9657
  reservations?: TicketReservation[];
9656
9658
  /** Reservation invoice. */
@@ -9698,7 +9700,7 @@ interface GetInvoiceResponse {
9698
9700
  /** Discount errors, if relevant. */
9699
9701
  discountErrors?: DiscountErrors;
9700
9702
  /** Reservation expiration time. */
9701
- expires?: Date;
9703
+ expires?: Date | null;
9702
9704
  /**
9703
9705
  * Reservation status. Possible values:
9704
9706
  * - `RESERVATION_PENDING`: The reservation is pending confirmation. It will expire after a certain amount of time.
@@ -9768,7 +9770,7 @@ interface CheckoutResponse {
9768
9770
  * Order expiration time.
9769
9771
  * **Note:** Only applicable to orders with the `INITIATED` status.
9770
9772
  */
9771
- expires?: Date;
9773
+ expires?: Date | null;
9772
9774
  /** Ticket reservations. */
9773
9775
  reservations?: TicketReservation[];
9774
9776
  /** Order page URL. */
@@ -9776,7 +9778,7 @@ interface CheckoutResponse {
9776
9778
  }
9777
9779
  interface OrderInitiated {
9778
9780
  /** Order initiated timestamp in ISO UTC format. */
9779
- timestamp?: Date;
9781
+ timestamp?: Date | null;
9780
9782
  /** Site language when Order initiated */
9781
9783
  language?: string | null;
9782
9784
  /** Locale in which Order was created. */
@@ -9793,12 +9795,12 @@ interface OrderInitiated {
9793
9795
  * Order created timestamp.
9794
9796
  * @readonly
9795
9797
  */
9796
- created?: Date;
9798
+ created?: Date | null;
9797
9799
  /**
9798
9800
  * Order updated timestamp.
9799
9801
  * @readonly
9800
9802
  */
9801
- updated?: Date;
9803
+ updated?: Date | null;
9802
9804
  /** Guest first name. */
9803
9805
  firstName?: string;
9804
9806
  /** Guest last name. */
@@ -9872,7 +9874,7 @@ interface PosCheckoutResponse {
9872
9874
  /** Created order. */
9873
9875
  order?: Order;
9874
9876
  /** Time when the order expires, applies to orders with status = INITIATED. */
9875
- expires?: Date;
9877
+ expires?: Date | null;
9876
9878
  /** Ticket reservations. */
9877
9879
  reservations?: TicketReservation[];
9878
9880
  }
@@ -10775,12 +10777,12 @@ interface RichContent {
10775
10777
  * Date and time the RichContent was created.
10776
10778
  * @readonly
10777
10779
  */
10778
- _createdDate?: Date;
10780
+ _createdDate?: Date | null;
10779
10781
  /**
10780
10782
  * Date and time the RichContent was last updated.
10781
10783
  * @readonly
10782
10784
  */
10783
- _updatedDate?: Date;
10785
+ _updatedDate?: Date | null;
10784
10786
  /** Optional event identifier to which the rich content is associated to. */
10785
10787
  eventId?: string | null;
10786
10788
  /** Name of the field to which the rich content is associated to. */
@@ -11990,12 +11992,12 @@ interface Metadata {
11990
11992
  * @readonly
11991
11993
  * @deprecated
11992
11994
  */
11993
- createdTimestamp?: Date;
11995
+ createdTimestamp?: Date | null;
11994
11996
  /**
11995
11997
  * When the object was most recently updated.
11996
11998
  * @deprecated
11997
11999
  */
11998
- updatedTimestamp?: Date;
12000
+ updatedTimestamp?: Date | null;
11999
12001
  /** Object ID. */
12000
12002
  _id?: string | null;
12001
12003
  }
@@ -12152,7 +12154,7 @@ interface Cursors$5 {
12152
12154
  }
12153
12155
  interface EventCopied$2 {
12154
12156
  /** Event created timestamp in ISO UTC format. */
12155
- timestamp?: Date;
12157
+ timestamp?: Date | null;
12156
12158
  /** Event ID. */
12157
12159
  eventId?: string;
12158
12160
  /** Event location. */
@@ -12283,9 +12285,9 @@ interface ScheduleConfig$4 {
12283
12285
  /** TBD message. */
12284
12286
  scheduleTbdMessage?: string | null;
12285
12287
  /** Event start timestamp. */
12286
- startDate?: Date;
12288
+ startDate?: Date | null;
12287
12289
  /** Event end timestamp. */
12288
- endDate?: Date;
12290
+ endDate?: Date | null;
12289
12291
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
12290
12292
  timeZoneId?: string | null;
12291
12293
  /** Whether end date is hidden in the formatted schedule. */
@@ -12311,9 +12313,9 @@ interface Recurrences$4 {
12311
12313
  }
12312
12314
  interface Occurrence$4 {
12313
12315
  /** Event start timestamp. */
12314
- startDate?: Date;
12316
+ startDate?: Date | null;
12315
12317
  /** Event end timestamp. */
12316
- endDate?: Date;
12318
+ endDate?: Date | null;
12317
12319
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
12318
12320
  timeZoneId?: string | null;
12319
12321
  /** Whether time zone is displayed in formatted schedule. */
@@ -12345,7 +12347,7 @@ interface Empty$4 {
12345
12347
  }
12346
12348
  interface EventDeleted$3 {
12347
12349
  /** Event deleted timestamp in ISO UTC format. */
12348
- timestamp?: Date;
12350
+ timestamp?: Date | null;
12349
12351
  /** Event ID. */
12350
12352
  eventId?: string;
12351
12353
  /** Event title. */
@@ -12389,7 +12391,7 @@ interface DomainEvent$4 extends DomainEventBodyOneOf$4 {
12389
12391
  /** ID of the entity associated with the event. */
12390
12392
  entityId?: string;
12391
12393
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
12392
- eventTime?: Date;
12394
+ eventTime?: Date | null;
12393
12395
  /**
12394
12396
  * Whether the event was triggered as a result of a privacy regulation application
12395
12397
  * (for example, GDPR).
@@ -12418,7 +12420,7 @@ interface EntityCreatedEvent$4 {
12418
12420
  entity?: string;
12419
12421
  }
12420
12422
  interface RestoreInfo$4 {
12421
- deletedDate?: Date;
12423
+ deletedDate?: Date | null;
12422
12424
  }
12423
12425
  interface EntityUpdatedEvent$4 {
12424
12426
  /**
@@ -12764,7 +12766,7 @@ interface EventMetadata$3 extends BaseEventMetadata$6 {
12764
12766
  /** ID of the entity associated with the event. */
12765
12767
  entityId?: string;
12766
12768
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
12767
- eventTime?: Date;
12769
+ eventTime?: Date | null;
12768
12770
  /**
12769
12771
  * Whether the event was triggered as a result of a privacy regulation application
12770
12772
  * (for example, GDPR).
@@ -12815,12 +12817,12 @@ interface UpdateRichContent {
12815
12817
  * Date and time the RichContent was created.
12816
12818
  * @readonly
12817
12819
  */
12818
- _createdDate?: Date;
12820
+ _createdDate?: Date | null;
12819
12821
  /**
12820
12822
  * Date and time the RichContent was last updated.
12821
12823
  * @readonly
12822
12824
  */
12823
- _updatedDate?: Date;
12825
+ _updatedDate?: Date | null;
12824
12826
  /** Optional event identifier to which the rich content is associated to. */
12825
12827
  eventId?: string | null;
12826
12828
  /** Name of the field to which the rich content is associated to. */
@@ -13173,9 +13175,9 @@ interface RsvpRsvp {
13173
13175
  /** Member ID associated with this RSVP. */
13174
13176
  memberId?: string;
13175
13177
  /** RSVP created timestamp. */
13176
- created?: Date;
13178
+ created?: Date | null;
13177
13179
  /** RSVP modified timestamp. */
13178
- modified?: Date;
13180
+ modified?: Date | null;
13179
13181
  /** First name. */
13180
13182
  firstName?: string;
13181
13183
  /** Last name. */
@@ -13290,7 +13292,7 @@ interface Guest$1 {
13290
13292
  }
13291
13293
  interface CheckIn$1 {
13292
13294
  /** Time of check-in */
13293
- created?: Date;
13295
+ created?: Date | null;
13294
13296
  }
13295
13297
  interface ListRsvpRequest {
13296
13298
  /** Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
@@ -13494,7 +13496,7 @@ interface CalendarLinks$3 {
13494
13496
  }
13495
13497
  interface RsvpCreated {
13496
13498
  /** RSVP created timestamp in ISO UTC format. */
13497
- timestamp?: Date;
13499
+ timestamp?: Date | null;
13498
13500
  /** Site language when RSVP created */
13499
13501
  language?: string | null;
13500
13502
  /** Notifications silenced for this domain event. */
@@ -13565,7 +13567,7 @@ interface UpdateRsvpResponse$1 {
13565
13567
  }
13566
13568
  interface RsvpUpdated {
13567
13569
  /** RSVP updated timestamp in ISO UTC format. */
13568
- timestamp?: Date;
13570
+ timestamp?: Date | null;
13569
13571
  /** Site language when RSVP created */
13570
13572
  language?: string | null;
13571
13573
  /** Locale in which Rsvp was created. */
@@ -13579,7 +13581,7 @@ interface RsvpUpdated {
13579
13581
  /** Member ID associated with this RSVP. */
13580
13582
  memberId?: string | null;
13581
13583
  /** RSVP created timestamp. */
13582
- created?: Date;
13584
+ created?: Date | null;
13583
13585
  /** Guest first name. */
13584
13586
  firstName?: string;
13585
13587
  /** Guest last name. */
@@ -13643,7 +13645,7 @@ interface DeleteRsvpResponse$1 {
13643
13645
  }
13644
13646
  interface RsvpDeleted {
13645
13647
  /** RSVP deleted timestamp in ISO UTC format. */
13646
- timestamp?: Date;
13648
+ timestamp?: Date | null;
13647
13649
  /** Event ID to which RSVP belongs. */
13648
13650
  eventId?: string;
13649
13651
  /** RSVP ID. */
@@ -14247,7 +14249,7 @@ interface Money$4 {
14247
14249
  }
14248
14250
  interface CheckIn {
14249
14251
  /** Time of a ticket check-in. */
14250
- created?: Date;
14252
+ created?: Date | null;
14251
14253
  }
14252
14254
  declare enum OrderStatus {
14253
14255
  /** Order status not available for this request fieldset */
@@ -14269,7 +14271,9 @@ declare enum OrderStatus {
14269
14271
  /** Order payment was authorized */
14270
14272
  AUTHORIZED = "AUTHORIZED",
14271
14273
  /** Order payment was voided */
14272
- VOIDED = "VOIDED"
14274
+ VOIDED = "VOIDED",
14275
+ /** Order was partially paid, less than total amount covered. */
14276
+ PARTIALLY_PAID = "PARTIALLY_PAID"
14273
14277
  }
14274
14278
  interface GuestDetails {
14275
14279
  /** Whether ticket belongs to assigned guest. */
@@ -14284,6 +14288,8 @@ interface GuestDetails {
14284
14288
  form?: FormResponse$1;
14285
14289
  /** Contact ID associated with this guest. */
14286
14290
  contactId?: string | null;
14291
+ /** Guest phone number. */
14292
+ phone?: string | null;
14287
14293
  }
14288
14294
  interface FormResponse$1 {
14289
14295
  /** Form field inputs. */
@@ -14548,7 +14554,7 @@ interface CheckInTicketResponse {
14548
14554
  }
14549
14555
  interface OrderUpdated {
14550
14556
  /** Order updated timestamp in ISO UTC format. */
14551
- timestamp?: Date;
14557
+ timestamp?: Date | null;
14552
14558
  /** Site language when Order initiated */
14553
14559
  language?: string | null;
14554
14560
  /** Locale in which Order was created. */
@@ -14565,12 +14571,12 @@ interface OrderUpdated {
14565
14571
  * Order created timestamp.
14566
14572
  * @readonly
14567
14573
  */
14568
- created?: Date;
14574
+ created?: Date | null;
14569
14575
  /**
14570
14576
  * Order updated timestamp.
14571
14577
  * @readonly
14572
14578
  */
14573
- updated?: Date;
14579
+ updated?: Date | null;
14574
14580
  /** Buyer first name. */
14575
14581
  firstName?: string;
14576
14582
  /** Buyer last name. */
@@ -15131,9 +15137,9 @@ declare enum FeeType {
15131
15137
  }
15132
15138
  interface TicketSalePeriod {
15133
15139
  /** Ticket sale start timestamp. */
15134
- startDate?: Date;
15140
+ startDate?: Date | null;
15135
15141
  /** Ticket sale end timestamp. */
15136
- endDate?: Date;
15142
+ endDate?: Date | null;
15137
15143
  /** Whether to hide this ticket if it's not on sale */
15138
15144
  hideNotOnSale?: boolean;
15139
15145
  }
@@ -15441,7 +15447,7 @@ interface CreateTicketDefinitionResponse$1 {
15441
15447
  }
15442
15448
  interface TicketDefinitionCreated {
15443
15449
  /** Ticket Definition created timestamp in ISO UTC format. */
15444
- timestamp?: Date;
15450
+ timestamp?: Date | null;
15445
15451
  /** Ticket Definition ID. */
15446
15452
  ticketDefinitionId?: string;
15447
15453
  /** Event ID. */
@@ -15471,7 +15477,7 @@ interface UpdateTicketDefinitionResponse$1 {
15471
15477
  }
15472
15478
  interface TicketDefinitionUpdated {
15473
15479
  /** Ticket definition updated timestamp in ISO UTC format. */
15474
- timestamp?: Date;
15480
+ timestamp?: Date | null;
15475
15481
  /** Ticket definition ID. */
15476
15482
  ticketDefinitionId?: string;
15477
15483
  /** Event ID. */
@@ -15500,7 +15506,7 @@ interface DeleteTicketDefinitionResponse$1 {
15500
15506
  }
15501
15507
  interface TicketDefinitionDeleted {
15502
15508
  /** Ticket definition deleted timestamp in ISO UTC format. */
15503
- timestamp?: Date;
15509
+ timestamp?: Date | null;
15504
15510
  /** Ticket definition ID. */
15505
15511
  ticketDefinitionId?: string;
15506
15512
  /** Event ID. */
@@ -16031,12 +16037,12 @@ interface Policy {
16031
16037
  * Date and time when the policy was created.
16032
16038
  * @readonly
16033
16039
  */
16034
- _createdDate?: Date;
16040
+ _createdDate?: Date | null;
16035
16041
  /**
16036
16042
  * Date and time of the policy's latest update in.
16037
16043
  * @readonly
16038
16044
  */
16039
- _updatedDate?: Date;
16045
+ _updatedDate?: Date | null;
16040
16046
  /**
16041
16047
  * Policy name that is visible in the dashboard and checkout form.
16042
16048
  *
@@ -16195,7 +16201,7 @@ interface GetPolicyResponse {
16195
16201
  }
16196
16202
  interface EventCopied$1 {
16197
16203
  /** Event created timestamp in ISO UTC format. */
16198
- timestamp?: Date;
16204
+ timestamp?: Date | null;
16199
16205
  /** Event ID. */
16200
16206
  eventId?: string;
16201
16207
  /** Event location. */
@@ -16326,9 +16332,9 @@ interface ScheduleConfig$3 {
16326
16332
  /** TBD message. */
16327
16333
  scheduleTbdMessage?: string | null;
16328
16334
  /** Event start timestamp. */
16329
- startDate?: Date;
16335
+ startDate?: Date | null;
16330
16336
  /** Event end timestamp. */
16331
- endDate?: Date;
16337
+ endDate?: Date | null;
16332
16338
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
16333
16339
  timeZoneId?: string | null;
16334
16340
  /** Whether end date is hidden in the formatted schedule. */
@@ -16354,9 +16360,9 @@ interface Recurrences$3 {
16354
16360
  }
16355
16361
  interface Occurrence$3 {
16356
16362
  /** Event start timestamp. */
16357
- startDate?: Date;
16363
+ startDate?: Date | null;
16358
16364
  /** Event end timestamp. */
16359
- endDate?: Date;
16365
+ endDate?: Date | null;
16360
16366
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
16361
16367
  timeZoneId?: string | null;
16362
16368
  /** Whether time zone is displayed in formatted schedule. */
@@ -16418,7 +16424,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
16418
16424
  /** ID of the entity associated with the event. */
16419
16425
  entityId?: string;
16420
16426
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
16421
- eventTime?: Date;
16427
+ eventTime?: Date | null;
16422
16428
  /**
16423
16429
  * Whether the event was triggered as a result of a privacy regulation application
16424
16430
  * (for example, GDPR).
@@ -16447,7 +16453,7 @@ interface EntityCreatedEvent$3 {
16447
16453
  entity?: string;
16448
16454
  }
16449
16455
  interface RestoreInfo$3 {
16450
- deletedDate?: Date;
16456
+ deletedDate?: Date | null;
16451
16457
  }
16452
16458
  interface EntityUpdatedEvent$3 {
16453
16459
  /**
@@ -16552,7 +16558,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
16552
16558
  /** ID of the entity associated with the event. */
16553
16559
  entityId?: string;
16554
16560
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
16555
- eventTime?: Date;
16561
+ eventTime?: Date | null;
16556
16562
  /**
16557
16563
  * Whether the event was triggered as a result of a privacy regulation application
16558
16564
  * (for example, GDPR).
@@ -16596,12 +16602,12 @@ interface UpdatePolicy {
16596
16602
  * Date policy was created.
16597
16603
  * @readonly
16598
16604
  */
16599
- _createdDate?: Date;
16605
+ _createdDate?: Date | null;
16600
16606
  /**
16601
16607
  * Date and time of the policy's latest update in `yyyy-mm-ddThh:mm:sssZ` format.
16602
16608
  * @readonly
16603
16609
  */
16604
- _updatedDate?: Date;
16610
+ _updatedDate?: Date | null;
16605
16611
  /**
16606
16612
  * Policy name that is visible in the dashboard and checkout form.
16607
16613
  *
@@ -16883,12 +16889,12 @@ interface Rsvp {
16883
16889
  * Date and time when the RSVP was created in `yyyy-mm-ddThh:mm:sssZ` format.
16884
16890
  * @readonly
16885
16891
  */
16886
- _createdDate?: Date;
16892
+ _createdDate?: Date | null;
16887
16893
  /**
16888
16894
  * Date and time of the RSVP's latest update in `yyyy-mm-ddThh:mm:sssZ` format.
16889
16895
  * @readonly
16890
16896
  */
16891
- _updatedDate?: Date;
16897
+ _updatedDate?: Date | null;
16892
16898
  /** Site member ID. This field can only be overridden when a user creates RSVP manually, otherwise it's resolved from identity. Overriding member id requires **WIX_EVENTS.MANAGE_RSVP** permission. */
16893
16899
  memberId?: string | null;
16894
16900
  /** Contact ID of a guest who filled in the RSVP form. See [Contacts API](https://dev.wix.com/api/rest/contacts/contacts/contacts-v4) for more details. */
@@ -17045,7 +17051,7 @@ interface CheckInDetails {
17045
17051
  /** Whether the guest is checked in. */
17046
17052
  checkedIn?: boolean | null;
17047
17053
  /** Check-in date. */
17048
- checkInDate?: Date;
17054
+ checkInDate?: Date | null;
17049
17055
  }
17050
17056
  interface AdditionalGuestDetails {
17051
17057
  /** Additional guest count. */
@@ -17879,7 +17885,7 @@ interface CompareRsvpSummaryResponse {
17879
17885
  }
17880
17886
  interface EventCreated$2 {
17881
17887
  /** Event created timestamp in ISO UTC format. */
17882
- timestamp?: Date;
17888
+ timestamp?: Date | null;
17883
17889
  /** Event ID. */
17884
17890
  eventId?: string;
17885
17891
  /** Event location. */
@@ -17991,9 +17997,9 @@ interface ScheduleConfig$2 {
17991
17997
  /** TBD message. */
17992
17998
  scheduleTbdMessage?: string | null;
17993
17999
  /** Event start timestamp. */
17994
- startDate?: Date;
18000
+ startDate?: Date | null;
17995
18001
  /** Event end timestamp. */
17996
- endDate?: Date;
18002
+ endDate?: Date | null;
17997
18003
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
17998
18004
  timeZoneId?: string | null;
17999
18005
  /** Whether end date is hidden in the formatted schedule. */
@@ -18019,9 +18025,9 @@ interface Recurrences$2 {
18019
18025
  }
18020
18026
  interface Occurrence$2 {
18021
18027
  /** Event start timestamp. */
18022
- startDate?: Date;
18028
+ startDate?: Date | null;
18023
18029
  /** Event end timestamp. */
18024
- endDate?: Date;
18030
+ endDate?: Date | null;
18025
18031
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
18026
18032
  timeZoneId?: string | null;
18027
18033
  /** Whether time zone is displayed in formatted schedule. */
@@ -18072,9 +18078,9 @@ interface Event$2 {
18072
18078
  /** ISO 639-1 language code of the event (used in content translations). */
18073
18079
  language?: string;
18074
18080
  /** Event creation timestamp. */
18075
- created?: Date;
18081
+ created?: Date | null;
18076
18082
  /** Event modified timestamp. */
18077
- modified?: Date;
18083
+ modified?: Date | null;
18078
18084
  /** Event status. */
18079
18085
  status?: EventStatus$2;
18080
18086
  /** RSVP or ticketing registration details. */
@@ -18183,9 +18189,9 @@ interface RsvpCollectionConfig$2 {
18183
18189
  /** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
18184
18190
  waitlist?: boolean;
18185
18191
  /** Registration start timestamp. */
18186
- startDate?: Date;
18192
+ startDate?: Date | null;
18187
18193
  /** Registration end timestamp. */
18188
- endDate?: Date;
18194
+ endDate?: Date | null;
18189
18195
  }
18190
18196
  declare enum RsvpStatusOptions$2 {
18191
18197
  /** Only YES RSVP status is available for RSVP registration */
@@ -18710,7 +18716,7 @@ interface Category$2 {
18710
18716
  * Date and time when category was created.
18711
18717
  * @readonly
18712
18718
  */
18713
- _createdDate?: Date;
18719
+ _createdDate?: Date | null;
18714
18720
  /**
18715
18721
  * The total number of draft and published events assigned to the category.
18716
18722
  * @readonly
@@ -18758,7 +18764,7 @@ interface Empty$2 {
18758
18764
  }
18759
18765
  interface EventDeleted$2 {
18760
18766
  /** Event deleted timestamp in ISO UTC format. */
18761
- timestamp?: Date;
18767
+ timestamp?: Date | null;
18762
18768
  /** Event ID. */
18763
18769
  eventId?: string;
18764
18770
  /** Event title. */
@@ -18790,7 +18796,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
18790
18796
  /** ID of the entity associated with the event. */
18791
18797
  entityId?: string;
18792
18798
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
18793
- eventTime?: Date;
18799
+ eventTime?: Date | null;
18794
18800
  /**
18795
18801
  * Whether the event was triggered as a result of a privacy regulation application
18796
18802
  * (for example, GDPR).
@@ -18819,7 +18825,7 @@ interface EntityCreatedEvent$2 {
18819
18825
  entity?: string;
18820
18826
  }
18821
18827
  interface RestoreInfo$2 {
18822
- deletedDate?: Date;
18828
+ deletedDate?: Date | null;
18823
18829
  }
18824
18830
  interface EntityUpdatedEvent$2 {
18825
18831
  /**
@@ -19160,12 +19166,12 @@ interface UpdateRsvp {
19160
19166
  * Date and time when the RSVP was created in `yyyy-mm-ddThh:mm:sssZ` format.
19161
19167
  * @readonly
19162
19168
  */
19163
- _createdDate?: Date;
19169
+ _createdDate?: Date | null;
19164
19170
  /**
19165
19171
  * Date and time of the RSVP's latest update in `yyyy-mm-ddThh:mm:sssZ` format.
19166
19172
  * @readonly
19167
19173
  */
19168
- _updatedDate?: Date;
19174
+ _updatedDate?: Date | null;
19169
19175
  /** Site member ID. This field can only be overridden when a user creates RSVP manually, otherwise it's resolved from identity. Overriding member id requires **WIX_EVENTS.MANAGE_RSVP** permission. */
19170
19176
  memberId?: string | null;
19171
19177
  /** Contact ID of a guest who filled in the RSVP form. See [Contacts API](https://dev.wix.com/api/rest/contacts/contacts/contacts-v4) for more details. */
@@ -19552,12 +19558,12 @@ interface V3Event {
19552
19558
  * Date and time when the event was created.
19553
19559
  * @readonly
19554
19560
  */
19555
- _createdDate?: Date;
19561
+ _createdDate?: Date | null;
19556
19562
  /**
19557
19563
  * Date and time when the event was updated.
19558
19564
  * @readonly
19559
19565
  */
19560
- _updatedDate?: Date;
19566
+ _updatedDate?: Date | null;
19561
19567
  /**
19562
19568
  * Event status:
19563
19569
  *
@@ -19714,9 +19720,9 @@ interface DateAndTimeSettings$1 {
19714
19720
  /** Message that is displayed when time and date is TBD. */
19715
19721
  dateAndTimeTbdMessage?: string | null;
19716
19722
  /** Event start date. */
19717
- startDate?: Date;
19723
+ startDate?: Date | null;
19718
19724
  /** Event end date. */
19719
- endDate?: Date;
19725
+ endDate?: Date | null;
19720
19726
  /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
19721
19727
  timeZoneId?: string | null;
19722
19728
  /** Whether the end date is hidden in the formatted date and time. */
@@ -19764,9 +19770,9 @@ interface Recurrences$1 {
19764
19770
  }
19765
19771
  interface Occurrence$1 {
19766
19772
  /** Event start date. */
19767
- startDate?: Date;
19773
+ startDate?: Date | null;
19768
19774
  /** Event end date. */
19769
- endDate?: Date;
19775
+ endDate?: Date | null;
19770
19776
  /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
19771
19777
  timeZoneId?: string | null;
19772
19778
  /** Whether the time zone is displayed in a formatted schedule. */
@@ -19923,9 +19929,9 @@ interface RsvpRegistration {
19923
19929
  /** Whether a waitlist is opened when the total guest limit is reached. If `true`, guests can RSVP to an event and are automatically put in the waitlist with the `IN_WAITLIST` status. */
19924
19930
  waitlistEnabled?: boolean;
19925
19931
  /** Registration start date. */
19926
- startDate?: Date;
19932
+ startDate?: Date | null;
19927
19933
  /** Registration end date. */
19928
- endDate?: Date;
19934
+ endDate?: Date | null;
19929
19935
  }
19930
19936
  declare enum ResponseType {
19931
19937
  /** Default value. This value is unused. */
@@ -20486,7 +20492,7 @@ interface EventCategory {
20486
20492
  * Category creation timestamp.
20487
20493
  * @readonly
20488
20494
  */
20489
- _createdDate?: Date;
20495
+ _createdDate?: Date | null;
20490
20496
  /**
20491
20497
  * Category is hidden.
20492
20498
  * @readonly
@@ -20514,19 +20520,19 @@ interface LabellingSettings$1 {
20514
20520
  }
20515
20521
  interface EventEventStarted {
20516
20522
  /** Event schedule configuration. */
20517
- timestamp?: Date;
20523
+ timestamp?: Date | null;
20518
20524
  /** Event ID. */
20519
20525
  eventId?: string;
20520
20526
  }
20521
20527
  interface EventEventEnded {
20522
20528
  /** Event end timestamp in ISO UTC format. */
20523
- timestamp?: Date;
20529
+ timestamp?: Date | null;
20524
20530
  /** Event ID. */
20525
20531
  eventId?: string;
20526
20532
  }
20527
20533
  interface EventEventReminder {
20528
20534
  /** Reminder timestamp in ISO UTC format. */
20529
- timestamp?: Date;
20535
+ timestamp?: Date | null;
20530
20536
  /** Event ID. */
20531
20537
  eventId?: string;
20532
20538
  /** Event location. */
@@ -20542,7 +20548,7 @@ interface EventEventReminder {
20542
20548
  }
20543
20549
  interface EventEventPublished {
20544
20550
  /** Event publishing timestamp in ISO UTC format. */
20545
- timestamp?: Date;
20551
+ timestamp?: Date | null;
20546
20552
  /** Event ID. */
20547
20553
  eventId?: string;
20548
20554
  /** Event status. */
@@ -20567,7 +20573,7 @@ interface EventEventPublished {
20567
20573
  }
20568
20574
  interface EventCloned {
20569
20575
  /** Event creation timestamp in ISO UTC format. */
20570
- timestamp?: Date;
20576
+ timestamp?: Date | null;
20571
20577
  /** Event ID. */
20572
20578
  eventId?: string;
20573
20579
  /** Event location. */
@@ -20593,7 +20599,7 @@ interface EventCloned {
20593
20599
  }
20594
20600
  interface EventEventCanceled {
20595
20601
  /** Event cancelation timestamp in ISO UTC format. */
20596
- timestamp?: Date;
20602
+ timestamp?: Date | null;
20597
20603
  /** Event ID. */
20598
20604
  eventId?: string;
20599
20605
  /** Event title. */
@@ -21103,7 +21109,7 @@ interface FindEventResponse {
21103
21109
  }
21104
21110
  interface EventCreated$1 {
21105
21111
  /** Event created timestamp in ISO UTC format. */
21106
- timestamp?: Date;
21112
+ timestamp?: Date | null;
21107
21113
  /** Event ID. */
21108
21114
  eventId?: string;
21109
21115
  /** Event location. */
@@ -21230,9 +21236,9 @@ interface ScheduleConfig$1 {
21230
21236
  /** TBD message. */
21231
21237
  scheduleTbdMessage?: string | null;
21232
21238
  /** Event start timestamp. */
21233
- startDate?: Date;
21239
+ startDate?: Date | null;
21234
21240
  /** Event end timestamp. */
21235
- endDate?: Date;
21241
+ endDate?: Date | null;
21236
21242
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
21237
21243
  timeZoneId?: string | null;
21238
21244
  /** Whether end date is hidden in the formatted schedule. */
@@ -21258,9 +21264,9 @@ interface EventsRecurrences$1 {
21258
21264
  }
21259
21265
  interface EventsOccurrence$1 {
21260
21266
  /** Event start timestamp. */
21261
- startDate?: Date;
21267
+ startDate?: Date | null;
21262
21268
  /** Event end timestamp. */
21263
- endDate?: Date;
21269
+ endDate?: Date | null;
21264
21270
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
21265
21271
  timeZoneId?: string | null;
21266
21272
  /** Whether time zone is displayed in formatted schedule. */
@@ -21311,9 +21317,9 @@ interface Event$1 {
21311
21317
  /** ISO 639-1 language code of the event (used in content translations). */
21312
21318
  language?: string;
21313
21319
  /** Event creation timestamp. */
21314
- created?: Date;
21320
+ created?: Date | null;
21315
21321
  /** Event modified timestamp. */
21316
- modified?: Date;
21322
+ modified?: Date | null;
21317
21323
  /** Event status. */
21318
21324
  status?: EventStatus$1;
21319
21325
  /** RSVP or ticketing registration details. */
@@ -21422,9 +21428,9 @@ interface RsvpCollectionConfig$1 {
21422
21428
  /** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
21423
21429
  waitlist?: boolean;
21424
21430
  /** Registration start timestamp. */
21425
- startDate?: Date;
21431
+ startDate?: Date | null;
21426
21432
  /** Registration end timestamp. */
21427
- endDate?: Date;
21433
+ endDate?: Date | null;
21428
21434
  }
21429
21435
  declare enum RsvpStatusOptions$1 {
21430
21436
  /** Only YES RSVP status is available for RSVP registration */
@@ -21651,7 +21657,7 @@ interface Category$1 {
21651
21657
  * Date and time when category was created.
21652
21658
  * @readonly
21653
21659
  */
21654
- _createdDate?: Date;
21660
+ _createdDate?: Date | null;
21655
21661
  /**
21656
21662
  * The total number of draft and published events assigned to the category.
21657
21663
  * @readonly
@@ -21699,7 +21705,7 @@ interface Empty$1 {
21699
21705
  }
21700
21706
  interface EventUpdated$1 {
21701
21707
  /** Event update timestamp in ISO UTC format. */
21702
- timestamp?: Date;
21708
+ timestamp?: Date | null;
21703
21709
  /** Event ID. */
21704
21710
  eventId?: string;
21705
21711
  /** Event location. */
@@ -21718,7 +21724,7 @@ interface EventUpdated$1 {
21718
21724
  }
21719
21725
  interface EventDeleted$1 {
21720
21726
  /** Event deleted timestamp in ISO UTC format. */
21721
- timestamp?: Date;
21727
+ timestamp?: Date | null;
21722
21728
  /** Event ID. */
21723
21729
  eventId?: string;
21724
21730
  /** Event title. */
@@ -21728,7 +21734,7 @@ interface EventDeleted$1 {
21728
21734
  }
21729
21735
  interface EventCopied {
21730
21736
  /** Event created timestamp in ISO UTC format. */
21731
- timestamp?: Date;
21737
+ timestamp?: Date | null;
21732
21738
  /** Event ID. */
21733
21739
  eventId?: string;
21734
21740
  /** Event location. */
@@ -21754,7 +21760,7 @@ interface EventCopied {
21754
21760
  }
21755
21761
  interface EventPublished {
21756
21762
  /** Event publish timestamp in ISO UTC format. */
21757
- timestamp?: Date;
21763
+ timestamp?: Date | null;
21758
21764
  /** Event ID. */
21759
21765
  eventId?: string;
21760
21766
  /** Event status. */
@@ -21779,7 +21785,7 @@ interface EventPublished {
21779
21785
  }
21780
21786
  interface EventCanceled$1 {
21781
21787
  /** Event canceled timestamp in ISO UTC format. */
21782
- timestamp?: Date;
21788
+ timestamp?: Date | null;
21783
21789
  /** Event ID. */
21784
21790
  eventId?: string;
21785
21791
  /** Event title */
@@ -21789,19 +21795,19 @@ interface EventCanceled$1 {
21789
21795
  }
21790
21796
  interface EventStarted {
21791
21797
  /** Event start timestamp in ISO UTC format. */
21792
- timestamp?: Date;
21798
+ timestamp?: Date | null;
21793
21799
  /** Event ID. */
21794
21800
  eventId?: string;
21795
21801
  }
21796
21802
  interface EventEnded$1 {
21797
21803
  /** Event end timestamp in ISO UTC format. */
21798
- timestamp?: Date;
21804
+ timestamp?: Date | null;
21799
21805
  /** Event ID. */
21800
21806
  eventId?: string;
21801
21807
  }
21802
21808
  interface EventReminder {
21803
21809
  /** Reminder timestamp in ISO UTC format. */
21804
- timestamp?: Date;
21810
+ timestamp?: Date | null;
21805
21811
  /** Event ID. */
21806
21812
  eventId?: string;
21807
21813
  /** Event location. */
@@ -21839,7 +21845,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
21839
21845
  /** ID of the entity associated with the event. */
21840
21846
  entityId?: string;
21841
21847
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
21842
- eventTime?: Date;
21848
+ eventTime?: Date | null;
21843
21849
  /**
21844
21850
  * Whether the event was triggered as a result of a privacy regulation application
21845
21851
  * (for example, GDPR).
@@ -21868,7 +21874,7 @@ interface EntityCreatedEvent$1 {
21868
21874
  entity?: string;
21869
21875
  }
21870
21876
  interface RestoreInfo$1 {
21871
- deletedDate?: Date;
21877
+ deletedDate?: Date | null;
21872
21878
  }
21873
21879
  interface EntityUpdatedEvent$1 {
21874
21880
  /**
@@ -22211,7 +22217,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
22211
22217
  /** ID of the entity associated with the event. */
22212
22218
  entityId?: string;
22213
22219
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
22214
- eventTime?: Date;
22220
+ eventTime?: Date | null;
22215
22221
  /**
22216
22222
  * Whether the event was triggered as a result of a privacy regulation application
22217
22223
  * (for example, GDPR).
@@ -22334,12 +22340,12 @@ interface UpdateEventOptions {
22334
22340
  * Date and time when the event was created.
22335
22341
  * @readonly
22336
22342
  */
22337
- _createdDate?: Date;
22343
+ _createdDate?: Date | null;
22338
22344
  /**
22339
22345
  * Date and time when the event was updated.
22340
22346
  * @readonly
22341
22347
  */
22342
- _updatedDate?: Date;
22348
+ _updatedDate?: Date | null;
22343
22349
  /**
22344
22350
  * Event status. Possible values:
22345
22351
  *
@@ -22987,12 +22993,12 @@ interface TicketDefinition {
22987
22993
  * Date and time when the ticket definition was created.
22988
22994
  * @readonly
22989
22995
  */
22990
- _createdDate?: Date;
22996
+ _createdDate?: Date | null;
22991
22997
  /**
22992
22998
  * Date and time when the ticket definition was updated.
22993
22999
  * @readonly
22994
23000
  */
22995
- _updatedDate?: Date;
23001
+ _updatedDate?: Date | null;
22996
23002
  /** Ticket definition name. */
22997
23003
  name?: string | null;
22998
23004
  /** Ticket definition description. */
@@ -23052,9 +23058,9 @@ interface TicketDefinition {
23052
23058
  }
23053
23059
  interface SalePeriod {
23054
23060
  /** Ticket sale start timestamp. */
23055
- startDate?: Date;
23061
+ startDate?: Date | null;
23056
23062
  /** Ticket sale end timestamp. */
23057
- endDate?: Date;
23063
+ endDate?: Date | null;
23058
23064
  /** Whether to display the ticket if it's not available to buy. */
23059
23065
  displayNotOnSale?: boolean;
23060
23066
  }
@@ -23280,9 +23286,9 @@ interface DateAndTimeSettings {
23280
23286
  /** Message that is displayed when time and date is TBD. */
23281
23287
  dateAndTimeTbdMessage?: string | null;
23282
23288
  /** Event start date. */
23283
- startDate?: Date;
23289
+ startDate?: Date | null;
23284
23290
  /** Event end date. */
23285
- endDate?: Date;
23291
+ endDate?: Date | null;
23286
23292
  /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
23287
23293
  timeZoneId?: string | null;
23288
23294
  /** Whether the end date is hidden in the formatted date and time. */
@@ -23329,9 +23335,9 @@ interface Recurrences {
23329
23335
  }
23330
23336
  interface Occurrence {
23331
23337
  /** Event start date. */
23332
- startDate?: Date;
23338
+ startDate?: Date | null;
23333
23339
  /** Event end date. */
23334
- endDate?: Date;
23340
+ endDate?: Date | null;
23335
23341
  /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
23336
23342
  timeZoneId?: string | null;
23337
23343
  /** Whether the time zone is displayed in a formatted schedule. */
@@ -23416,7 +23422,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
23416
23422
  /** ID of the entity associated with the event. */
23417
23423
  entityId?: string;
23418
23424
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
23419
- eventTime?: Date;
23425
+ eventTime?: Date | null;
23420
23426
  /**
23421
23427
  * Whether the event was triggered as a result of a privacy regulation application
23422
23428
  * (for example, GDPR).
@@ -23445,7 +23451,7 @@ interface EntityCreatedEvent {
23445
23451
  entity?: string;
23446
23452
  }
23447
23453
  interface RestoreInfo {
23448
- deletedDate?: Date;
23454
+ deletedDate?: Date | null;
23449
23455
  }
23450
23456
  interface EntityUpdatedEvent {
23451
23457
  /**
@@ -23583,7 +23589,7 @@ interface TicketDefinitionSummary {
23583
23589
  * Date and time of the ticket definition summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
23584
23590
  * @readonly
23585
23591
  */
23586
- _updatedDate?: Date;
23592
+ _updatedDate?: Date | null;
23587
23593
  /**
23588
23594
  * Reserved count.
23589
23595
  * @readonly
@@ -23618,7 +23624,7 @@ interface EventTicketingSummary {
23618
23624
  * Date and time of the ticketing summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
23619
23625
  * @readonly
23620
23626
  */
23621
- _updatedDate?: Date;
23627
+ _updatedDate?: Date | null;
23622
23628
  /**
23623
23629
  * Whether all tickets are sold for this event.
23624
23630
  * @readonly
@@ -23654,7 +23660,7 @@ interface Empty {
23654
23660
  }
23655
23661
  interface ReservationCreated {
23656
23662
  /** Reservation created timestamp in ISO UTC format. */
23657
- timestamp?: Date;
23663
+ timestamp?: Date | null;
23658
23664
  /** Event ID. */
23659
23665
  eventId?: string;
23660
23666
  /**
@@ -23663,13 +23669,13 @@ interface ReservationCreated {
23663
23669
  */
23664
23670
  reservationId?: string;
23665
23671
  /** Reservation expiration timestamp. */
23666
- expires?: Date;
23672
+ expires?: Date | null;
23667
23673
  /** Reservation status. */
23668
23674
  status?: ReservationStatus;
23669
23675
  /** Reservation ticket quantities. */
23670
23676
  quantities?: TicketQuantity[];
23671
23677
  /** Reservation update timestamp. */
23672
- _updatedDate?: Date;
23678
+ _updatedDate?: Date | null;
23673
23679
  /** Reservation counts. */
23674
23680
  counts?: ReservationCount[];
23675
23681
  }
@@ -23694,11 +23700,11 @@ interface TicketQuantity {
23694
23700
  /** Quantity. */
23695
23701
  quantity?: number | null;
23696
23702
  /** Quantity update timestamp. */
23697
- _updatedDate?: Date;
23703
+ _updatedDate?: Date | null;
23698
23704
  }
23699
23705
  interface ReservationCount {
23700
23706
  /** Reservation Count snapshot timestamp. */
23701
- timestamp?: Date;
23707
+ timestamp?: Date | null;
23702
23708
  /** Ticket Definition ID. */
23703
23709
  ticketDefinitionId?: string;
23704
23710
  /** Confirmed reservation count. */
@@ -23710,7 +23716,7 @@ interface ReservationCount {
23710
23716
  }
23711
23717
  interface ReservationUpdated {
23712
23718
  /** Reservation updated timestamp. */
23713
- timestamp?: Date;
23719
+ timestamp?: Date | null;
23714
23720
  /** Event ID. */
23715
23721
  eventId?: string;
23716
23722
  /**
@@ -23721,17 +23727,17 @@ interface ReservationUpdated {
23721
23727
  /** Reservation status. */
23722
23728
  status?: ReservationStatus;
23723
23729
  /** Reservation expiration timestamp. */
23724
- expires?: Date;
23730
+ expires?: Date | null;
23725
23731
  /** Reservation ticket quantities. */
23726
23732
  quantities?: TicketQuantity[];
23727
23733
  /** Reservation update timestamp. */
23728
- _updatedDate?: Date;
23734
+ _updatedDate?: Date | null;
23729
23735
  /** Reservation counts. */
23730
23736
  counts?: ReservationCount[];
23731
23737
  }
23732
23738
  interface EventDeleted {
23733
23739
  /** Event deleted timestamp in ISO UTC format. */
23734
- timestamp?: Date;
23740
+ timestamp?: Date | null;
23735
23741
  /** Event ID. */
23736
23742
  eventId?: string;
23737
23743
  /** Event title. */
@@ -23978,7 +23984,7 @@ interface CopiedTicketDefinition {
23978
23984
  }
23979
23985
  interface EventCanceled {
23980
23986
  /** Event canceled timestamp in ISO UTC format. */
23981
- timestamp?: Date;
23987
+ timestamp?: Date | null;
23982
23988
  /** Event ID. */
23983
23989
  eventId?: string;
23984
23990
  /** Event title */
@@ -23988,13 +23994,13 @@ interface EventCanceled {
23988
23994
  }
23989
23995
  interface EventEnded {
23990
23996
  /** Event end timestamp in ISO UTC format. */
23991
- timestamp?: Date;
23997
+ timestamp?: Date | null;
23992
23998
  /** Event ID. */
23993
23999
  eventId?: string;
23994
24000
  }
23995
24001
  interface EventCreated {
23996
24002
  /** Event created timestamp in ISO UTC format. */
23997
- timestamp?: Date;
24003
+ timestamp?: Date | null;
23998
24004
  /** Event ID. */
23999
24005
  eventId?: string;
24000
24006
  /** Event location. */
@@ -24121,9 +24127,9 @@ interface ScheduleConfig {
24121
24127
  /** TBD message. */
24122
24128
  scheduleTbdMessage?: string | null;
24123
24129
  /** Event start timestamp. */
24124
- startDate?: Date;
24130
+ startDate?: Date | null;
24125
24131
  /** Event end timestamp. */
24126
- endDate?: Date;
24132
+ endDate?: Date | null;
24127
24133
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
24128
24134
  timeZoneId?: string | null;
24129
24135
  /** Whether end date is hidden in the formatted schedule. */
@@ -24149,9 +24155,9 @@ interface EventsRecurrences {
24149
24155
  }
24150
24156
  interface EventsOccurrence {
24151
24157
  /** Event start timestamp. */
24152
- startDate?: Date;
24158
+ startDate?: Date | null;
24153
24159
  /** Event end timestamp. */
24154
- endDate?: Date;
24160
+ endDate?: Date | null;
24155
24161
  /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
24156
24162
  timeZoneId?: string | null;
24157
24163
  /** Whether time zone is displayed in formatted schedule. */
@@ -24202,9 +24208,9 @@ interface Event {
24202
24208
  /** ISO 639-1 language code of the event (used in content translations). */
24203
24209
  language?: string;
24204
24210
  /** Event creation timestamp. */
24205
- created?: Date;
24211
+ created?: Date | null;
24206
24212
  /** Event modified timestamp. */
24207
- modified?: Date;
24213
+ modified?: Date | null;
24208
24214
  /** Event status. */
24209
24215
  status?: EventStatus;
24210
24216
  /** RSVP or ticketing registration details. */
@@ -24313,9 +24319,9 @@ interface RsvpCollectionConfig {
24313
24319
  /** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
24314
24320
  waitlist?: boolean;
24315
24321
  /** Registration start timestamp. */
24316
- startDate?: Date;
24322
+ startDate?: Date | null;
24317
24323
  /** Registration end timestamp. */
24318
- endDate?: Date;
24324
+ endDate?: Date | null;
24319
24325
  }
24320
24326
  declare enum RsvpStatusOptions {
24321
24327
  /** Only YES RSVP status is available for RSVP registration */
@@ -24846,7 +24852,7 @@ interface Category {
24846
24852
  * Date and time when category was created.
24847
24853
  * @readonly
24848
24854
  */
24849
- _createdDate?: Date;
24855
+ _createdDate?: Date | null;
24850
24856
  /**
24851
24857
  * The total number of draft and published events assigned to the category.
24852
24858
  * @readonly
@@ -24892,7 +24898,7 @@ interface LabellingSettings {
24892
24898
  }
24893
24899
  interface EventUpdated {
24894
24900
  /** Event update timestamp in ISO UTC format. */
24895
- timestamp?: Date;
24901
+ timestamp?: Date | null;
24896
24902
  /** Event ID. */
24897
24903
  eventId?: string;
24898
24904
  /** Event location. */
@@ -25156,7 +25162,7 @@ interface SiteDeleted {
25156
25162
  }
25157
25163
  interface DeleteContext {
25158
25164
  /** When the meta site was deleted. */
25159
- dateDeleted?: Date;
25165
+ dateDeleted?: Date | null;
25160
25166
  /** A status. */
25161
25167
  deleteStatus?: DeleteStatus;
25162
25168
  /** A reason (flow). */
@@ -25347,7 +25353,7 @@ interface EventMetadata extends BaseEventMetadata {
25347
25353
  /** ID of the entity associated with the event. */
25348
25354
  entityId?: string;
25349
25355
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
25350
- eventTime?: Date;
25356
+ eventTime?: Date | null;
25351
25357
  /**
25352
25358
  * Whether the event was triggered as a result of a privacy regulation application
25353
25359
  * (for example, GDPR).
@@ -25412,12 +25418,12 @@ interface UpdateTicketDefinition {
25412
25418
  * Date and time when the ticket definition was created.
25413
25419
  * @readonly
25414
25420
  */
25415
- _createdDate?: Date;
25421
+ _createdDate?: Date | null;
25416
25422
  /**
25417
25423
  * Date and time when the ticket definition was updated.
25418
25424
  * @readonly
25419
25425
  */
25420
- _updatedDate?: Date;
25426
+ _updatedDate?: Date | null;
25421
25427
  /** Ticket definition name. */
25422
25428
  name?: string | null;
25423
25429
  /** Ticket definition description. */