@wix/events 1.0.323 → 1.0.325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +18 -18
- package/type-bundles/context.bundle.d.ts +271 -265
- package/type-bundles/index.bundle.d.ts +271 -265
- package/type-bundles/meta.bundle.d.ts +130 -118
|
@@ -20,11 +20,11 @@ interface EventGuest$1 {
|
|
|
20
20
|
/** 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. */
|
|
21
21
|
secondaryLanguageCode?: string | null;
|
|
22
22
|
/** Date and time the guest was created in `yyyy-mm-ddThh:mm:sssZ` format. */
|
|
23
|
-
createdDate?: Date;
|
|
23
|
+
createdDate?: Date | null;
|
|
24
24
|
/** Date and time the guest was updated in `yyyy-mm-ddThh:mm:sssZ` format. */
|
|
25
|
-
updatedDate?: Date;
|
|
25
|
+
updatedDate?: Date | null;
|
|
26
26
|
/** Date and time of guest's latest attendance status update. */
|
|
27
|
-
attendanceStatusUpdatedDate?: Date;
|
|
27
|
+
attendanceStatusUpdatedDate?: Date | null;
|
|
28
28
|
/** Site member ID. */
|
|
29
29
|
memberId?: string | null;
|
|
30
30
|
/** 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. */
|
|
@@ -285,11 +285,11 @@ interface EventGuest {
|
|
|
285
285
|
/** 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. */
|
|
286
286
|
secondaryLanguageCode?: string | null;
|
|
287
287
|
/** Date and time the guest was created in `yyyy-mm-ddThh:mm:sssZ` format. */
|
|
288
|
-
_createdDate?: Date;
|
|
288
|
+
_createdDate?: Date | null;
|
|
289
289
|
/** Date and time the guest was updated in `yyyy-mm-ddThh:mm:sssZ` format. */
|
|
290
|
-
_updatedDate?: Date;
|
|
290
|
+
_updatedDate?: Date | null;
|
|
291
291
|
/** Date and time of guest's latest attendance status update. */
|
|
292
|
-
attendanceStatusUpdatedDate?: Date;
|
|
292
|
+
attendanceStatusUpdatedDate?: Date | null;
|
|
293
293
|
/** Site member ID. */
|
|
294
294
|
memberId?: string | null;
|
|
295
295
|
/** 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. */
|
|
@@ -533,12 +533,12 @@ interface NotificationConfig$1 {
|
|
|
533
533
|
* Represents the time this NotificationConfig was created.
|
|
534
534
|
* @readonly
|
|
535
535
|
*/
|
|
536
|
-
createdDate?: Date;
|
|
536
|
+
createdDate?: Date | null;
|
|
537
537
|
/**
|
|
538
538
|
* Represents the time this NotificationConfig was last updated.
|
|
539
539
|
* @readonly
|
|
540
540
|
*/
|
|
541
|
-
updatedDate?: Date;
|
|
541
|
+
updatedDate?: Date | null;
|
|
542
542
|
/** Rsvp confirmation. */
|
|
543
543
|
rsvpConfirmation?: EmailNotificationConfig$1;
|
|
544
544
|
/** New spots available. */
|
|
@@ -748,12 +748,12 @@ interface NotificationConfig {
|
|
|
748
748
|
* Represents the time this NotificationConfig was created.
|
|
749
749
|
* @readonly
|
|
750
750
|
*/
|
|
751
|
-
_createdDate?: Date;
|
|
751
|
+
_createdDate?: Date | null;
|
|
752
752
|
/**
|
|
753
753
|
* Represents the time this NotificationConfig was last updated.
|
|
754
754
|
* @readonly
|
|
755
755
|
*/
|
|
756
|
-
_updatedDate?: Date;
|
|
756
|
+
_updatedDate?: Date | null;
|
|
757
757
|
/** Rsvp confirmation. */
|
|
758
758
|
rsvpConfirmation?: EmailNotificationConfig;
|
|
759
759
|
/** New spots available. */
|
|
@@ -1009,12 +1009,12 @@ interface ScheduleItem$3 {
|
|
|
1009
1009
|
* Schedule item created timestamp.
|
|
1010
1010
|
* @readonly
|
|
1011
1011
|
*/
|
|
1012
|
-
createdDate?: Date;
|
|
1012
|
+
createdDate?: Date | null;
|
|
1013
1013
|
/**
|
|
1014
1014
|
* Schedule item modified timestamp.
|
|
1015
1015
|
* @readonly
|
|
1016
1016
|
*/
|
|
1017
|
-
updatedDate?: Date;
|
|
1017
|
+
updatedDate?: Date | null;
|
|
1018
1018
|
/**
|
|
1019
1019
|
* Event ID.
|
|
1020
1020
|
* @readonly
|
|
@@ -1029,9 +1029,9 @@ interface ScheduleItem$3 {
|
|
|
1029
1029
|
/** Time interval on the timeline between two points in time. */
|
|
1030
1030
|
interface TimeInterval$3 {
|
|
1031
1031
|
/** Start of the interval. Inclusive. */
|
|
1032
|
-
start?: Date;
|
|
1032
|
+
start?: Date | null;
|
|
1033
1033
|
/** End of the interval. Non-inclusive. */
|
|
1034
|
-
end?: Date;
|
|
1034
|
+
end?: Date | null;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* Time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`.
|
|
1037
1037
|
* Defaults to `Etc/UTC` when not set.
|
|
@@ -1112,12 +1112,12 @@ interface ScheduleItem$2 {
|
|
|
1112
1112
|
* Date and time when the schedule item was created.
|
|
1113
1113
|
* @readonly
|
|
1114
1114
|
*/
|
|
1115
|
-
_createdDate?: Date;
|
|
1115
|
+
_createdDate?: Date | null;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* Date and time when the schedule item was updated.
|
|
1118
1118
|
* @readonly
|
|
1119
1119
|
*/
|
|
1120
|
-
_updatedDate?: Date;
|
|
1120
|
+
_updatedDate?: Date | null;
|
|
1121
1121
|
/**
|
|
1122
1122
|
* Event ID to which the schedule belongs.
|
|
1123
1123
|
* @readonly
|
|
@@ -1132,9 +1132,9 @@ interface ScheduleItem$2 {
|
|
|
1132
1132
|
/** Time interval on the timeline between two points in time. */
|
|
1133
1133
|
interface TimeInterval$2 {
|
|
1134
1134
|
/** Start of the interval. Inclusive. */
|
|
1135
|
-
start?: Date;
|
|
1135
|
+
start?: Date | null;
|
|
1136
1136
|
/** End of the interval. Non-inclusive. */
|
|
1137
|
-
end?: Date;
|
|
1137
|
+
end?: Date | null;
|
|
1138
1138
|
/**
|
|
1139
1139
|
* Time zone ID in the [TZ database](https://www.iana.org/time-zones) format. For example, `EST`, `America/Los_Angeles`.
|
|
1140
1140
|
* Default: `Etc/UTC`.
|
|
@@ -1236,12 +1236,12 @@ interface ScheduleItem$1 {
|
|
|
1236
1236
|
* Schedule item created timestamp.
|
|
1237
1237
|
* @readonly
|
|
1238
1238
|
*/
|
|
1239
|
-
createdDate?: Date;
|
|
1239
|
+
createdDate?: Date | null;
|
|
1240
1240
|
/**
|
|
1241
1241
|
* Schedule item modified timestamp.
|
|
1242
1242
|
* @readonly
|
|
1243
1243
|
*/
|
|
1244
|
-
updatedDate?: Date;
|
|
1244
|
+
updatedDate?: Date | null;
|
|
1245
1245
|
/**
|
|
1246
1246
|
* Event ID.
|
|
1247
1247
|
* @readonly
|
|
@@ -1256,9 +1256,9 @@ interface ScheduleItem$1 {
|
|
|
1256
1256
|
/** Time interval on the timeline between two points in time. */
|
|
1257
1257
|
interface TimeInterval$1 {
|
|
1258
1258
|
/** Start of the interval. Inclusive. */
|
|
1259
|
-
start?: Date;
|
|
1259
|
+
start?: Date | null;
|
|
1260
1260
|
/** End of the interval. Non-inclusive. */
|
|
1261
|
-
end?: Date;
|
|
1261
|
+
end?: Date | null;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* Time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`.
|
|
1264
1264
|
* Defaults to `Etc/UTC` when not set.
|
|
@@ -1282,9 +1282,9 @@ interface ListScheduleItemsRequest$1 {
|
|
|
1282
1282
|
*/
|
|
1283
1283
|
state?: StateFilter$1[];
|
|
1284
1284
|
/** Filters schedule items starting on or after specified point in time. Inclusive. */
|
|
1285
|
-
startingFrom?: Date;
|
|
1285
|
+
startingFrom?: Date | null;
|
|
1286
1286
|
/** Filters schedule items starting before specified point in time. Non-inclusive. */
|
|
1287
|
-
startingBefore?: Date;
|
|
1287
|
+
startingBefore?: Date | null;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* Deprecated, use `paging`.
|
|
1290
1290
|
* Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination).
|
|
@@ -1569,12 +1569,12 @@ interface ScheduleItem {
|
|
|
1569
1569
|
* Date and time when the schedule item was created.
|
|
1570
1570
|
* @readonly
|
|
1571
1571
|
*/
|
|
1572
|
-
_createdDate?: Date;
|
|
1572
|
+
_createdDate?: Date | null;
|
|
1573
1573
|
/**
|
|
1574
1574
|
* Date and time when the schedule item was updated.
|
|
1575
1575
|
* @readonly
|
|
1576
1576
|
*/
|
|
1577
|
-
_updatedDate?: Date;
|
|
1577
|
+
_updatedDate?: Date | null;
|
|
1578
1578
|
/**
|
|
1579
1579
|
* Event ID to which the schedule belongs.
|
|
1580
1580
|
* @readonly
|
|
@@ -1589,9 +1589,9 @@ interface ScheduleItem {
|
|
|
1589
1589
|
/** Time interval on the timeline between two points in time. */
|
|
1590
1590
|
interface TimeInterval {
|
|
1591
1591
|
/** Start of the interval. Inclusive. */
|
|
1592
|
-
start?: Date;
|
|
1592
|
+
start?: Date | null;
|
|
1593
1593
|
/** End of the interval. Non-inclusive. */
|
|
1594
|
-
end?: Date;
|
|
1594
|
+
end?: Date | null;
|
|
1595
1595
|
/**
|
|
1596
1596
|
* Time zone ID in the [TZ database](https://www.iana.org/time-zones) format. For example, `EST`, `America/Los_Angeles`.
|
|
1597
1597
|
* Default: `Etc/UTC`.
|
|
@@ -1617,9 +1617,9 @@ interface ListScheduleItemsRequest {
|
|
|
1617
1617
|
*/
|
|
1618
1618
|
state?: StateFilter[];
|
|
1619
1619
|
/** Filters schedule items starting on or after specified point in time. Inclusive. */
|
|
1620
|
-
startingFrom?: Date;
|
|
1620
|
+
startingFrom?: Date | null;
|
|
1621
1621
|
/** Filters schedule items starting before specified point in time. Non-inclusive. */
|
|
1622
|
-
startingBefore?: Date;
|
|
1622
|
+
startingBefore?: Date | null;
|
|
1623
1623
|
/**
|
|
1624
1624
|
* Deprecated, use `paging`.
|
|
1625
1625
|
* Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination).
|
|
@@ -1940,12 +1940,12 @@ interface StaffMember$1 extends StaffMemberEventAccessOneOf$1 {
|
|
|
1940
1940
|
* Date and time the staff member was created.
|
|
1941
1941
|
* @readonly
|
|
1942
1942
|
*/
|
|
1943
|
-
createdDate?: Date;
|
|
1943
|
+
createdDate?: Date | null;
|
|
1944
1944
|
/**
|
|
1945
1945
|
* Date and time the staff member was last updated.
|
|
1946
1946
|
* @readonly
|
|
1947
1947
|
*/
|
|
1948
|
-
updatedDate?: Date;
|
|
1948
|
+
updatedDate?: Date | null;
|
|
1949
1949
|
/** Name. */
|
|
1950
1950
|
name?: string | null;
|
|
1951
1951
|
/**
|
|
@@ -2242,12 +2242,12 @@ interface StaffMember extends StaffMemberEventAccessOneOf {
|
|
|
2242
2242
|
* Date and time the staff member was created.
|
|
2243
2243
|
* @readonly
|
|
2244
2244
|
*/
|
|
2245
|
-
_createdDate?: Date;
|
|
2245
|
+
_createdDate?: Date | null;
|
|
2246
2246
|
/**
|
|
2247
2247
|
* Date and time the staff member was last updated.
|
|
2248
2248
|
* @readonly
|
|
2249
2249
|
*/
|
|
2250
|
-
_updatedDate?: Date;
|
|
2250
|
+
_updatedDate?: Date | null;
|
|
2251
2251
|
/** Name. */
|
|
2252
2252
|
name?: string | null;
|
|
2253
2253
|
/**
|
|
@@ -2573,7 +2573,7 @@ interface Category$1 {
|
|
|
2573
2573
|
* Date and time when category was created.
|
|
2574
2574
|
* @readonly
|
|
2575
2575
|
*/
|
|
2576
|
-
createdDate?: Date;
|
|
2576
|
+
createdDate?: Date | null;
|
|
2577
2577
|
/**
|
|
2578
2578
|
* The total number of draft and published events assigned to the category.
|
|
2579
2579
|
* @readonly
|
|
@@ -2891,7 +2891,7 @@ interface Category {
|
|
|
2891
2891
|
* Date and time when category was created.
|
|
2892
2892
|
* @readonly
|
|
2893
2893
|
*/
|
|
2894
|
-
_createdDate?: Date;
|
|
2894
|
+
_createdDate?: Date | null;
|
|
2895
2895
|
/**
|
|
2896
2896
|
* The total number of draft and published events assigned to the category.
|
|
2897
2897
|
* @readonly
|
|
@@ -4526,7 +4526,7 @@ interface Order$1 {
|
|
|
4526
4526
|
* RSVP created timestamp.
|
|
4527
4527
|
* @readonly
|
|
4528
4528
|
*/
|
|
4529
|
-
created?: Date;
|
|
4529
|
+
created?: Date | null;
|
|
4530
4530
|
/** Guest first name. */
|
|
4531
4531
|
firstName?: string;
|
|
4532
4532
|
/** Guest last name. */
|
|
@@ -4567,7 +4567,7 @@ interface Order$1 {
|
|
|
4567
4567
|
* Order updated timestamp.
|
|
4568
4568
|
* @readonly
|
|
4569
4569
|
*/
|
|
4570
|
-
updated?: Date;
|
|
4570
|
+
updated?: Date | null;
|
|
4571
4571
|
}
|
|
4572
4572
|
interface FormResponse$7 {
|
|
4573
4573
|
inputValues?: InputValue$7[];
|
|
@@ -4695,7 +4695,7 @@ interface TicketingTicket$3 {
|
|
|
4695
4695
|
}
|
|
4696
4696
|
interface CheckIn$5 {
|
|
4697
4697
|
/** Time of check-in */
|
|
4698
|
-
created?: Date;
|
|
4698
|
+
created?: Date | null;
|
|
4699
4699
|
}
|
|
4700
4700
|
interface GuestDetails$3 {
|
|
4701
4701
|
/** Whether ticket belongs to assigned guest. */
|
|
@@ -4710,6 +4710,8 @@ interface GuestDetails$3 {
|
|
|
4710
4710
|
form?: FormResponse$7;
|
|
4711
4711
|
/** Contact ID associated with this guest. */
|
|
4712
4712
|
contactId?: string | null;
|
|
4713
|
+
/** Guest phone number. */
|
|
4714
|
+
phone?: string | null;
|
|
4713
4715
|
}
|
|
4714
4716
|
declare enum ChannelType$3 {
|
|
4715
4717
|
/** Buyer created order via one of the online channels (website, mobile app, etc.) */
|
|
@@ -5264,9 +5266,9 @@ interface WixFeeConfig$3 {
|
|
|
5264
5266
|
}
|
|
5265
5267
|
interface TicketSalePeriod$3 {
|
|
5266
5268
|
/** Ticket sale start timestamp. */
|
|
5267
|
-
startDate?: Date;
|
|
5269
|
+
startDate?: Date | null;
|
|
5268
5270
|
/** Ticket sale end timestamp. */
|
|
5269
|
-
endDate?: Date;
|
|
5271
|
+
endDate?: Date | null;
|
|
5270
5272
|
/** Whether to hide this ticket if it's not on sale */
|
|
5271
5273
|
hideNotOnSale?: boolean;
|
|
5272
5274
|
}
|
|
@@ -5369,7 +5371,7 @@ interface CreateReservationResponse$1 {
|
|
|
5369
5371
|
/** Reservation ID. */
|
|
5370
5372
|
id?: string;
|
|
5371
5373
|
/** Reservation expiration timestamp. */
|
|
5372
|
-
expires?: Date;
|
|
5374
|
+
expires?: Date | null;
|
|
5373
5375
|
/** Ticket reservations. */
|
|
5374
5376
|
reservations?: TicketReservation$1[];
|
|
5375
5377
|
/** Reservation invoice. */
|
|
@@ -5416,7 +5418,7 @@ interface GetInvoiceResponse$1 {
|
|
|
5416
5418
|
/** Discount errors, if relevant. */
|
|
5417
5419
|
discountErrors?: DiscountErrors$1;
|
|
5418
5420
|
/** Time when the reservation expires. */
|
|
5419
|
-
expires?: Date;
|
|
5421
|
+
expires?: Date | null;
|
|
5420
5422
|
/** Reservation status. */
|
|
5421
5423
|
reservationStatus?: ReservationStatus$1;
|
|
5422
5424
|
/** Whether this reservation is already used in checkout. */
|
|
@@ -5475,7 +5477,7 @@ interface CheckoutResponse$1 {
|
|
|
5475
5477
|
/** Created order. */
|
|
5476
5478
|
order?: Order$1;
|
|
5477
5479
|
/** Time when the order expires, applies to orders with status = INITIATED. */
|
|
5478
|
-
expires?: Date;
|
|
5480
|
+
expires?: Date | null;
|
|
5479
5481
|
/** Ticket reservations. */
|
|
5480
5482
|
reservations?: TicketReservation$1[];
|
|
5481
5483
|
/** Order page url. */
|
|
@@ -5518,7 +5520,7 @@ interface PosCheckoutResponse$1 {
|
|
|
5518
5520
|
/** Created order. */
|
|
5519
5521
|
order?: Order$1;
|
|
5520
5522
|
/** Time when the order expires, applies to orders with status = INITIATED. */
|
|
5521
|
-
expires?: Date;
|
|
5523
|
+
expires?: Date | null;
|
|
5522
5524
|
/** Ticket reservations. */
|
|
5523
5525
|
reservations?: TicketReservation$1[];
|
|
5524
5526
|
}
|
|
@@ -5824,7 +5826,7 @@ interface Order {
|
|
|
5824
5826
|
* RSVP created timestamp.
|
|
5825
5827
|
* @readonly
|
|
5826
5828
|
*/
|
|
5827
|
-
created?: Date;
|
|
5829
|
+
created?: Date | null;
|
|
5828
5830
|
/** Guest first name. */
|
|
5829
5831
|
firstName?: string;
|
|
5830
5832
|
/** Guest last name. */
|
|
@@ -5874,7 +5876,7 @@ interface Order {
|
|
|
5874
5876
|
* Order updated timestamp.
|
|
5875
5877
|
* @readonly
|
|
5876
5878
|
*/
|
|
5877
|
-
updated?: Date;
|
|
5879
|
+
updated?: Date | null;
|
|
5878
5880
|
}
|
|
5879
5881
|
interface FormResponse$6 {
|
|
5880
5882
|
/** Input fields for a checkout form. */
|
|
@@ -5991,7 +5993,7 @@ interface TicketingTicket$2 {
|
|
|
5991
5993
|
}
|
|
5992
5994
|
interface CheckIn$4 {
|
|
5993
5995
|
/** Time of check-in */
|
|
5994
|
-
created?: Date;
|
|
5996
|
+
created?: Date | null;
|
|
5995
5997
|
}
|
|
5996
5998
|
interface GuestDetails$2 {
|
|
5997
5999
|
/** Whether ticket belongs to assigned guest. */
|
|
@@ -6006,6 +6008,8 @@ interface GuestDetails$2 {
|
|
|
6006
6008
|
form?: FormResponse$6;
|
|
6007
6009
|
/** Contact ID associated with this guest. */
|
|
6008
6010
|
contactId?: string | null;
|
|
6011
|
+
/** Guest phone number. */
|
|
6012
|
+
phone?: string | null;
|
|
6009
6013
|
}
|
|
6010
6014
|
declare enum ChannelType$2 {
|
|
6011
6015
|
/** Buyer created order via one of the online channels (website, mobile app, etc.) */
|
|
@@ -6582,9 +6586,9 @@ interface WixFeeConfig$2 {
|
|
|
6582
6586
|
}
|
|
6583
6587
|
interface TicketSalePeriod$2 {
|
|
6584
6588
|
/** Ticket sale start timestamp. */
|
|
6585
|
-
startDate?: Date;
|
|
6589
|
+
startDate?: Date | null;
|
|
6586
6590
|
/** Ticket sale end timestamp. */
|
|
6587
|
-
endDate?: Date;
|
|
6591
|
+
endDate?: Date | null;
|
|
6588
6592
|
/** Whether to hide this ticket if it's not on sale */
|
|
6589
6593
|
hideNotOnSale?: boolean;
|
|
6590
6594
|
}
|
|
@@ -6684,7 +6688,7 @@ interface CreateReservationResponse {
|
|
|
6684
6688
|
/** Reservation ID. */
|
|
6685
6689
|
_id?: string;
|
|
6686
6690
|
/** Reservation expiration timestamp. */
|
|
6687
|
-
expires?: Date;
|
|
6691
|
+
expires?: Date | null;
|
|
6688
6692
|
/** Ticket reservations. */
|
|
6689
6693
|
reservations?: TicketReservation[];
|
|
6690
6694
|
/** Reservation invoice. */
|
|
@@ -6732,7 +6736,7 @@ interface GetInvoiceResponse {
|
|
|
6732
6736
|
/** Discount errors, if relevant. */
|
|
6733
6737
|
discountErrors?: DiscountErrors;
|
|
6734
6738
|
/** Reservation expiration time. */
|
|
6735
|
-
expires?: Date;
|
|
6739
|
+
expires?: Date | null;
|
|
6736
6740
|
/**
|
|
6737
6741
|
* Reservation status. Possible values:
|
|
6738
6742
|
* - `RESERVATION_PENDING`: The reservation is pending confirmation. It will expire after a certain amount of time.
|
|
@@ -6802,7 +6806,7 @@ interface CheckoutResponse {
|
|
|
6802
6806
|
* Order expiration time.
|
|
6803
6807
|
* **Note:** Only applicable to orders with the `INITIATED` status.
|
|
6804
6808
|
*/
|
|
6805
|
-
expires?: Date;
|
|
6809
|
+
expires?: Date | null;
|
|
6806
6810
|
/** Ticket reservations. */
|
|
6807
6811
|
reservations?: TicketReservation[];
|
|
6808
6812
|
/** Order page URL. */
|
|
@@ -6845,7 +6849,7 @@ interface PosCheckoutResponse {
|
|
|
6845
6849
|
/** Created order. */
|
|
6846
6850
|
order?: Order;
|
|
6847
6851
|
/** Time when the order expires, applies to orders with status = INITIATED. */
|
|
6848
|
-
expires?: Date;
|
|
6852
|
+
expires?: Date | null;
|
|
6849
6853
|
/** Ticket reservations. */
|
|
6850
6854
|
reservations?: TicketReservation[];
|
|
6851
6855
|
}
|
|
@@ -7209,12 +7213,12 @@ interface RichContent$1 {
|
|
|
7209
7213
|
* Date and time the RichContent was created.
|
|
7210
7214
|
* @readonly
|
|
7211
7215
|
*/
|
|
7212
|
-
createdDate?: Date;
|
|
7216
|
+
createdDate?: Date | null;
|
|
7213
7217
|
/**
|
|
7214
7218
|
* Date and time the RichContent was last updated.
|
|
7215
7219
|
* @readonly
|
|
7216
7220
|
*/
|
|
7217
|
-
updatedDate?: Date;
|
|
7221
|
+
updatedDate?: Date | null;
|
|
7218
7222
|
/** Optional event identifier to which the rich content is associated to. */
|
|
7219
7223
|
eventId?: string | null;
|
|
7220
7224
|
/** Name of the field to which the rich content is associated to. */
|
|
@@ -8405,12 +8409,12 @@ interface Metadata$1 {
|
|
|
8405
8409
|
* @readonly
|
|
8406
8410
|
* @deprecated
|
|
8407
8411
|
*/
|
|
8408
|
-
createdTimestamp?: Date;
|
|
8412
|
+
createdTimestamp?: Date | null;
|
|
8409
8413
|
/**
|
|
8410
8414
|
* When the object was most recently updated.
|
|
8411
8415
|
* @deprecated
|
|
8412
8416
|
*/
|
|
8413
|
-
updatedTimestamp?: Date;
|
|
8417
|
+
updatedTimestamp?: Date | null;
|
|
8414
8418
|
/** Object ID. */
|
|
8415
8419
|
id?: string | null;
|
|
8416
8420
|
}
|
|
@@ -8842,12 +8846,12 @@ interface RichContent {
|
|
|
8842
8846
|
* Date and time the RichContent was created.
|
|
8843
8847
|
* @readonly
|
|
8844
8848
|
*/
|
|
8845
|
-
_createdDate?: Date;
|
|
8849
|
+
_createdDate?: Date | null;
|
|
8846
8850
|
/**
|
|
8847
8851
|
* Date and time the RichContent was last updated.
|
|
8848
8852
|
* @readonly
|
|
8849
8853
|
*/
|
|
8850
|
-
_updatedDate?: Date;
|
|
8854
|
+
_updatedDate?: Date | null;
|
|
8851
8855
|
/** Optional event identifier to which the rich content is associated to. */
|
|
8852
8856
|
eventId?: string | null;
|
|
8853
8857
|
/** Name of the field to which the rich content is associated to. */
|
|
@@ -10038,12 +10042,12 @@ interface Metadata {
|
|
|
10038
10042
|
* @readonly
|
|
10039
10043
|
* @deprecated
|
|
10040
10044
|
*/
|
|
10041
|
-
createdTimestamp?: Date;
|
|
10045
|
+
createdTimestamp?: Date | null;
|
|
10042
10046
|
/**
|
|
10043
10047
|
* When the object was most recently updated.
|
|
10044
10048
|
* @deprecated
|
|
10045
10049
|
*/
|
|
10046
|
-
updatedTimestamp?: Date;
|
|
10050
|
+
updatedTimestamp?: Date | null;
|
|
10047
10051
|
/** Object ID. */
|
|
10048
10052
|
_id?: string | null;
|
|
10049
10053
|
}
|
|
@@ -10506,9 +10510,9 @@ interface RsvpRsvp$1 {
|
|
|
10506
10510
|
/** Member ID associated with this RSVP. */
|
|
10507
10511
|
memberId?: string;
|
|
10508
10512
|
/** RSVP created timestamp. */
|
|
10509
|
-
created?: Date;
|
|
10513
|
+
created?: Date | null;
|
|
10510
10514
|
/** RSVP modified timestamp. */
|
|
10511
|
-
modified?: Date;
|
|
10515
|
+
modified?: Date | null;
|
|
10512
10516
|
/** First name. */
|
|
10513
10517
|
firstName?: string;
|
|
10514
10518
|
/** Last name. */
|
|
@@ -10566,7 +10570,7 @@ interface Guest$3 {
|
|
|
10566
10570
|
}
|
|
10567
10571
|
interface CheckIn$3 {
|
|
10568
10572
|
/** Time of check-in */
|
|
10569
|
-
created?: Date;
|
|
10573
|
+
created?: Date | null;
|
|
10570
10574
|
}
|
|
10571
10575
|
interface ListRsvpRequest$1 {
|
|
10572
10576
|
/** Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
|
|
@@ -10898,9 +10902,9 @@ interface RsvpRsvp {
|
|
|
10898
10902
|
/** Member ID associated with this RSVP. */
|
|
10899
10903
|
memberId?: string;
|
|
10900
10904
|
/** RSVP created timestamp. */
|
|
10901
|
-
created?: Date;
|
|
10905
|
+
created?: Date | null;
|
|
10902
10906
|
/** RSVP modified timestamp. */
|
|
10903
|
-
modified?: Date;
|
|
10907
|
+
modified?: Date | null;
|
|
10904
10908
|
/** First name. */
|
|
10905
10909
|
firstName?: string;
|
|
10906
10910
|
/** Last name. */
|
|
@@ -10947,7 +10951,7 @@ interface Guest$2 {
|
|
|
10947
10951
|
}
|
|
10948
10952
|
interface CheckIn$2 {
|
|
10949
10953
|
/** Time of check-in */
|
|
10950
|
-
created?: Date;
|
|
10954
|
+
created?: Date | null;
|
|
10951
10955
|
}
|
|
10952
10956
|
interface ListRsvpRequest {
|
|
10953
10957
|
/** Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
|
|
@@ -11409,7 +11413,7 @@ interface Money$5 {
|
|
|
11409
11413
|
}
|
|
11410
11414
|
interface CheckIn$1 {
|
|
11411
11415
|
/** Time of check-in */
|
|
11412
|
-
created?: Date;
|
|
11416
|
+
created?: Date | null;
|
|
11413
11417
|
}
|
|
11414
11418
|
declare enum OrderStatus$1 {
|
|
11415
11419
|
/** Order status not available for this request fieldset */
|
|
@@ -11431,7 +11435,9 @@ declare enum OrderStatus$1 {
|
|
|
11431
11435
|
/** Order payment was authorized */
|
|
11432
11436
|
AUTHORIZED = "AUTHORIZED",
|
|
11433
11437
|
/** Order payment was voided */
|
|
11434
|
-
VOIDED = "VOIDED"
|
|
11438
|
+
VOIDED = "VOIDED",
|
|
11439
|
+
/** Order was partially paid, less than total amount covered. */
|
|
11440
|
+
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
11435
11441
|
}
|
|
11436
11442
|
interface GuestDetails$1 {
|
|
11437
11443
|
/** Whether ticket belongs to assigned guest. */
|
|
@@ -11446,6 +11452,8 @@ interface GuestDetails$1 {
|
|
|
11446
11452
|
form?: FormResponse$3;
|
|
11447
11453
|
/** Contact ID associated with this guest. */
|
|
11448
11454
|
contactId?: string | null;
|
|
11455
|
+
/** Guest phone number. */
|
|
11456
|
+
phone?: string | null;
|
|
11449
11457
|
}
|
|
11450
11458
|
interface FormResponse$3 {
|
|
11451
11459
|
inputValues?: InputValue$3[];
|
|
@@ -11793,7 +11801,7 @@ interface Money$4 {
|
|
|
11793
11801
|
}
|
|
11794
11802
|
interface CheckIn {
|
|
11795
11803
|
/** Time of a ticket check-in. */
|
|
11796
|
-
created?: Date;
|
|
11804
|
+
created?: Date | null;
|
|
11797
11805
|
}
|
|
11798
11806
|
declare enum OrderStatus {
|
|
11799
11807
|
/** Order status not available for this request fieldset */
|
|
@@ -11815,7 +11823,9 @@ declare enum OrderStatus {
|
|
|
11815
11823
|
/** Order payment was authorized */
|
|
11816
11824
|
AUTHORIZED = "AUTHORIZED",
|
|
11817
11825
|
/** Order payment was voided */
|
|
11818
|
-
VOIDED = "VOIDED"
|
|
11826
|
+
VOIDED = "VOIDED",
|
|
11827
|
+
/** Order was partially paid, less than total amount covered. */
|
|
11828
|
+
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
11819
11829
|
}
|
|
11820
11830
|
interface GuestDetails {
|
|
11821
11831
|
/** Whether ticket belongs to assigned guest. */
|
|
@@ -11830,6 +11840,8 @@ interface GuestDetails {
|
|
|
11830
11840
|
form?: FormResponse$2;
|
|
11831
11841
|
/** Contact ID associated with this guest. */
|
|
11832
11842
|
contactId?: string | null;
|
|
11843
|
+
/** Guest phone number. */
|
|
11844
|
+
phone?: string | null;
|
|
11833
11845
|
}
|
|
11834
11846
|
interface FormResponse$2 {
|
|
11835
11847
|
/** Form field inputs. */
|
|
@@ -12204,9 +12216,9 @@ declare enum FeeType$1 {
|
|
|
12204
12216
|
}
|
|
12205
12217
|
interface TicketSalePeriod$1 {
|
|
12206
12218
|
/** Ticket sale start timestamp. */
|
|
12207
|
-
startDate?: Date;
|
|
12219
|
+
startDate?: Date | null;
|
|
12208
12220
|
/** Ticket sale end timestamp. */
|
|
12209
|
-
endDate?: Date;
|
|
12221
|
+
endDate?: Date | null;
|
|
12210
12222
|
/** Whether to hide this ticket if it's not on sale */
|
|
12211
12223
|
hideNotOnSale?: boolean;
|
|
12212
12224
|
}
|
|
@@ -12699,9 +12711,9 @@ declare enum FeeType {
|
|
|
12699
12711
|
}
|
|
12700
12712
|
interface TicketSalePeriod {
|
|
12701
12713
|
/** Ticket sale start timestamp. */
|
|
12702
|
-
startDate?: Date;
|
|
12714
|
+
startDate?: Date | null;
|
|
12703
12715
|
/** Ticket sale end timestamp. */
|
|
12704
|
-
endDate?: Date;
|
|
12716
|
+
endDate?: Date | null;
|
|
12705
12717
|
/** Whether to hide this ticket if it's not on sale */
|
|
12706
12718
|
hideNotOnSale?: boolean;
|
|
12707
12719
|
}
|
|
@@ -13158,12 +13170,12 @@ interface Policy$1 {
|
|
|
13158
13170
|
* Date and time when the policy was created in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
13159
13171
|
* @readonly
|
|
13160
13172
|
*/
|
|
13161
|
-
createdDate?: Date;
|
|
13173
|
+
createdDate?: Date | null;
|
|
13162
13174
|
/**
|
|
13163
13175
|
* Date and time of the policy's latest update in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
13164
13176
|
* @readonly
|
|
13165
13177
|
*/
|
|
13166
|
-
updatedDate?: Date;
|
|
13178
|
+
updatedDate?: Date | null;
|
|
13167
13179
|
name?: string;
|
|
13168
13180
|
body?: string;
|
|
13169
13181
|
/** ID of the event to which the policy belongs. */
|
|
@@ -13328,12 +13340,12 @@ interface Policy {
|
|
|
13328
13340
|
* Date and time when the policy was created.
|
|
13329
13341
|
* @readonly
|
|
13330
13342
|
*/
|
|
13331
|
-
_createdDate?: Date;
|
|
13343
|
+
_createdDate?: Date | null;
|
|
13332
13344
|
/**
|
|
13333
13345
|
* Date and time of the policy's latest update in.
|
|
13334
13346
|
* @readonly
|
|
13335
13347
|
*/
|
|
13336
|
-
_updatedDate?: Date;
|
|
13348
|
+
_updatedDate?: Date | null;
|
|
13337
13349
|
/**
|
|
13338
13350
|
* Policy name that is visible in the dashboard and checkout form.
|
|
13339
13351
|
*
|
|
@@ -13549,12 +13561,12 @@ interface Rsvp$1 {
|
|
|
13549
13561
|
* Date and time when the RSVP was created in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
13550
13562
|
* @readonly
|
|
13551
13563
|
*/
|
|
13552
|
-
createdDate?: Date;
|
|
13564
|
+
createdDate?: Date | null;
|
|
13553
13565
|
/**
|
|
13554
13566
|
* Date and time of the RSVP's latest update in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
13555
13567
|
* @readonly
|
|
13556
13568
|
*/
|
|
13557
|
-
updatedDate?: Date;
|
|
13569
|
+
updatedDate?: Date | null;
|
|
13558
13570
|
/** 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. */
|
|
13559
13571
|
memberId?: string | null;
|
|
13560
13572
|
/** 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. */
|
|
@@ -13658,7 +13670,7 @@ interface CheckInDetails$1 {
|
|
|
13658
13670
|
/** Whether the guest is checked in. */
|
|
13659
13671
|
checkedIn?: boolean | null;
|
|
13660
13672
|
/** Check-in date. */
|
|
13661
|
-
checkInDate?: Date;
|
|
13673
|
+
checkInDate?: Date | null;
|
|
13662
13674
|
}
|
|
13663
13675
|
interface AdditionalGuestDetails$1 {
|
|
13664
13676
|
/** Additional guest count. */
|
|
@@ -14525,12 +14537,12 @@ interface Rsvp {
|
|
|
14525
14537
|
* Date and time when the RSVP was created in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
14526
14538
|
* @readonly
|
|
14527
14539
|
*/
|
|
14528
|
-
_createdDate?: Date;
|
|
14540
|
+
_createdDate?: Date | null;
|
|
14529
14541
|
/**
|
|
14530
14542
|
* Date and time of the RSVP's latest update in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
14531
14543
|
* @readonly
|
|
14532
14544
|
*/
|
|
14533
|
-
_updatedDate?: Date;
|
|
14545
|
+
_updatedDate?: Date | null;
|
|
14534
14546
|
/** 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. */
|
|
14535
14547
|
memberId?: string | null;
|
|
14536
14548
|
/** 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. */
|
|
@@ -14619,7 +14631,7 @@ interface CheckInDetails {
|
|
|
14619
14631
|
/** Whether the guest is checked in. */
|
|
14620
14632
|
checkedIn?: boolean | null;
|
|
14621
14633
|
/** Check-in date. */
|
|
14622
|
-
checkInDate?: Date;
|
|
14634
|
+
checkInDate?: Date | null;
|
|
14623
14635
|
}
|
|
14624
14636
|
interface AdditionalGuestDetails {
|
|
14625
14637
|
/** Additional guest count. */
|
|
@@ -15546,12 +15558,12 @@ interface V3Event$1 {
|
|
|
15546
15558
|
* Date and time when the event was created.
|
|
15547
15559
|
* @readonly
|
|
15548
15560
|
*/
|
|
15549
|
-
createdDate?: Date;
|
|
15561
|
+
createdDate?: Date | null;
|
|
15550
15562
|
/**
|
|
15551
15563
|
* Date and time when the event was updated.
|
|
15552
15564
|
* @readonly
|
|
15553
15565
|
*/
|
|
15554
|
-
updatedDate?: Date;
|
|
15566
|
+
updatedDate?: Date | null;
|
|
15555
15567
|
/**
|
|
15556
15568
|
* Event status. Possible values:
|
|
15557
15569
|
* - `UPCOMING`: Event is published and scheduled to start.
|
|
@@ -15694,9 +15706,9 @@ interface DateAndTimeSettings$3 {
|
|
|
15694
15706
|
/** Message that is displayed when time and date is TBD. */
|
|
15695
15707
|
dateAndTimeTbdMessage?: string | null;
|
|
15696
15708
|
/** Event start date. */
|
|
15697
|
-
startDate?: Date;
|
|
15709
|
+
startDate?: Date | null;
|
|
15698
15710
|
/** Event end date. */
|
|
15699
|
-
endDate?: Date;
|
|
15711
|
+
endDate?: Date | null;
|
|
15700
15712
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
15701
15713
|
timeZoneId?: string | null;
|
|
15702
15714
|
/** Whether the end date is hidden in the formatted date and time. */
|
|
@@ -15743,9 +15755,9 @@ interface Recurrences$3 {
|
|
|
15743
15755
|
}
|
|
15744
15756
|
interface Occurrence$3 {
|
|
15745
15757
|
/** Event start date. */
|
|
15746
|
-
startDate?: Date;
|
|
15758
|
+
startDate?: Date | null;
|
|
15747
15759
|
/** Event end date. */
|
|
15748
|
-
endDate?: Date;
|
|
15760
|
+
endDate?: Date | null;
|
|
15749
15761
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
15750
15762
|
timeZoneId?: string | null;
|
|
15751
15763
|
/** Whether the time zone is displayed in a formatted schedule. */
|
|
@@ -15889,9 +15901,9 @@ interface RsvpRegistration$1 {
|
|
|
15889
15901
|
/** 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. */
|
|
15890
15902
|
waitlistEnabled?: boolean;
|
|
15891
15903
|
/** Registration start date. */
|
|
15892
|
-
startDate?: Date;
|
|
15904
|
+
startDate?: Date | null;
|
|
15893
15905
|
/** Registration end date. */
|
|
15894
|
-
endDate?: Date;
|
|
15906
|
+
endDate?: Date | null;
|
|
15895
15907
|
}
|
|
15896
15908
|
declare enum ResponseType$1 {
|
|
15897
15909
|
/** Default value. This value is unused. */
|
|
@@ -17084,12 +17096,12 @@ interface V3Event {
|
|
|
17084
17096
|
* Date and time when the event was created.
|
|
17085
17097
|
* @readonly
|
|
17086
17098
|
*/
|
|
17087
|
-
_createdDate?: Date;
|
|
17099
|
+
_createdDate?: Date | null;
|
|
17088
17100
|
/**
|
|
17089
17101
|
* Date and time when the event was updated.
|
|
17090
17102
|
* @readonly
|
|
17091
17103
|
*/
|
|
17092
|
-
_updatedDate?: Date;
|
|
17104
|
+
_updatedDate?: Date | null;
|
|
17093
17105
|
/**
|
|
17094
17106
|
* Event status:
|
|
17095
17107
|
*
|
|
@@ -17219,9 +17231,9 @@ interface DateAndTimeSettings$2 {
|
|
|
17219
17231
|
/** Message that is displayed when time and date is TBD. */
|
|
17220
17232
|
dateAndTimeTbdMessage?: string | null;
|
|
17221
17233
|
/** Event start date. */
|
|
17222
|
-
startDate?: Date;
|
|
17234
|
+
startDate?: Date | null;
|
|
17223
17235
|
/** Event end date. */
|
|
17224
|
-
endDate?: Date;
|
|
17236
|
+
endDate?: Date | null;
|
|
17225
17237
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
17226
17238
|
timeZoneId?: string | null;
|
|
17227
17239
|
/** Whether the end date is hidden in the formatted date and time. */
|
|
@@ -17269,9 +17281,9 @@ interface Recurrences$2 {
|
|
|
17269
17281
|
}
|
|
17270
17282
|
interface Occurrence$2 {
|
|
17271
17283
|
/** Event start date. */
|
|
17272
|
-
startDate?: Date;
|
|
17284
|
+
startDate?: Date | null;
|
|
17273
17285
|
/** Event end date. */
|
|
17274
|
-
endDate?: Date;
|
|
17286
|
+
endDate?: Date | null;
|
|
17275
17287
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
17276
17288
|
timeZoneId?: string | null;
|
|
17277
17289
|
/** Whether the time zone is displayed in a formatted schedule. */
|
|
@@ -17416,9 +17428,9 @@ interface RsvpRegistration {
|
|
|
17416
17428
|
/** 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. */
|
|
17417
17429
|
waitlistEnabled?: boolean;
|
|
17418
17430
|
/** Registration start date. */
|
|
17419
|
-
startDate?: Date;
|
|
17431
|
+
startDate?: Date | null;
|
|
17420
17432
|
/** Registration end date. */
|
|
17421
|
-
endDate?: Date;
|
|
17433
|
+
endDate?: Date | null;
|
|
17422
17434
|
}
|
|
17423
17435
|
declare enum ResponseType {
|
|
17424
17436
|
/** Default value. This value is unused. */
|
|
@@ -18617,12 +18629,12 @@ interface TicketDefinition$1 {
|
|
|
18617
18629
|
* Date and time when the ticket definition was created.
|
|
18618
18630
|
* @readonly
|
|
18619
18631
|
*/
|
|
18620
|
-
createdDate?: Date;
|
|
18632
|
+
createdDate?: Date | null;
|
|
18621
18633
|
/**
|
|
18622
18634
|
* Date and time when the ticket definition was updated.
|
|
18623
18635
|
* @readonly
|
|
18624
18636
|
*/
|
|
18625
|
-
updatedDate?: Date;
|
|
18637
|
+
updatedDate?: Date | null;
|
|
18626
18638
|
/** Ticket definition name. */
|
|
18627
18639
|
name?: string | null;
|
|
18628
18640
|
/** Ticket definition description. */
|
|
@@ -18682,9 +18694,9 @@ interface TicketDefinition$1 {
|
|
|
18682
18694
|
}
|
|
18683
18695
|
interface SalePeriod$1 {
|
|
18684
18696
|
/** Ticket sale start timestamp. */
|
|
18685
|
-
startDate?: Date;
|
|
18697
|
+
startDate?: Date | null;
|
|
18686
18698
|
/** Ticket sale end timestamp. */
|
|
18687
|
-
endDate?: Date;
|
|
18699
|
+
endDate?: Date | null;
|
|
18688
18700
|
/** Whether to display the ticket if it's not available to buy. */
|
|
18689
18701
|
displayNotOnSale?: boolean;
|
|
18690
18702
|
}
|
|
@@ -18898,9 +18910,9 @@ interface DateAndTimeSettings$1 {
|
|
|
18898
18910
|
/** Message that is displayed when time and date is TBD. */
|
|
18899
18911
|
dateAndTimeTbdMessage?: string | null;
|
|
18900
18912
|
/** Event start date. */
|
|
18901
|
-
startDate?: Date;
|
|
18913
|
+
startDate?: Date | null;
|
|
18902
18914
|
/** Event end date. */
|
|
18903
|
-
endDate?: Date;
|
|
18915
|
+
endDate?: Date | null;
|
|
18904
18916
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
18905
18917
|
timeZoneId?: string | null;
|
|
18906
18918
|
/** Whether the end date is hidden in the formatted date and time. */
|
|
@@ -18947,9 +18959,9 @@ interface Recurrences$1 {
|
|
|
18947
18959
|
}
|
|
18948
18960
|
interface Occurrence$1 {
|
|
18949
18961
|
/** Event start date. */
|
|
18950
|
-
startDate?: Date;
|
|
18962
|
+
startDate?: Date | null;
|
|
18951
18963
|
/** Event end date. */
|
|
18952
|
-
endDate?: Date;
|
|
18964
|
+
endDate?: Date | null;
|
|
18953
18965
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
18954
18966
|
timeZoneId?: string | null;
|
|
18955
18967
|
/** Whether the time zone is displayed in a formatted schedule. */
|
|
@@ -19310,12 +19322,12 @@ interface TicketDefinition {
|
|
|
19310
19322
|
* Date and time when the ticket definition was created.
|
|
19311
19323
|
* @readonly
|
|
19312
19324
|
*/
|
|
19313
|
-
_createdDate?: Date;
|
|
19325
|
+
_createdDate?: Date | null;
|
|
19314
19326
|
/**
|
|
19315
19327
|
* Date and time when the ticket definition was updated.
|
|
19316
19328
|
* @readonly
|
|
19317
19329
|
*/
|
|
19318
|
-
_updatedDate?: Date;
|
|
19330
|
+
_updatedDate?: Date | null;
|
|
19319
19331
|
/** Ticket definition name. */
|
|
19320
19332
|
name?: string | null;
|
|
19321
19333
|
/** Ticket definition description. */
|
|
@@ -19375,9 +19387,9 @@ interface TicketDefinition {
|
|
|
19375
19387
|
}
|
|
19376
19388
|
interface SalePeriod {
|
|
19377
19389
|
/** Ticket sale start timestamp. */
|
|
19378
|
-
startDate?: Date;
|
|
19390
|
+
startDate?: Date | null;
|
|
19379
19391
|
/** Ticket sale end timestamp. */
|
|
19380
|
-
endDate?: Date;
|
|
19392
|
+
endDate?: Date | null;
|
|
19381
19393
|
/** Whether to display the ticket if it's not available to buy. */
|
|
19382
19394
|
displayNotOnSale?: boolean;
|
|
19383
19395
|
}
|
|
@@ -19576,9 +19588,9 @@ interface DateAndTimeSettings {
|
|
|
19576
19588
|
/** Message that is displayed when time and date is TBD. */
|
|
19577
19589
|
dateAndTimeTbdMessage?: string | null;
|
|
19578
19590
|
/** Event start date. */
|
|
19579
|
-
startDate?: Date;
|
|
19591
|
+
startDate?: Date | null;
|
|
19580
19592
|
/** Event end date. */
|
|
19581
|
-
endDate?: Date;
|
|
19593
|
+
endDate?: Date | null;
|
|
19582
19594
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
19583
19595
|
timeZoneId?: string | null;
|
|
19584
19596
|
/** Whether the end date is hidden in the formatted date and time. */
|
|
@@ -19625,9 +19637,9 @@ interface Recurrences {
|
|
|
19625
19637
|
}
|
|
19626
19638
|
interface Occurrence {
|
|
19627
19639
|
/** Event start date. */
|
|
19628
|
-
startDate?: Date;
|
|
19640
|
+
startDate?: Date | null;
|
|
19629
19641
|
/** Event end date. */
|
|
19630
|
-
endDate?: Date;
|
|
19642
|
+
endDate?: Date | null;
|
|
19631
19643
|
/** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
|
|
19632
19644
|
timeZoneId?: string | null;
|
|
19633
19645
|
/** Whether the time zone is displayed in a formatted schedule. */
|