@wix/auto_sdk_events_guests 1.0.15 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/src/events-guests-v1-guest-guests.types.d.ts +62 -22
- package/build/cjs/src/events-guests-v1-guest-guests.types.js.map +1 -1
- package/build/cjs/src/events-guests-v1-guest-guests.universal.d.ts +63 -23
- package/build/cjs/src/events-guests-v1-guest-guests.universal.js.map +1 -1
- package/build/es/src/events-guests-v1-guest-guests.types.d.ts +62 -22
- package/build/es/src/events-guests-v1-guest-guests.types.js.map +1 -1
- package/build/es/src/events-guests-v1-guest-guests.universal.d.ts +63 -23
- package/build/es/src/events-guests-v1-guest-guests.universal.js.map +1 -1
- package/build/internal/cjs/src/events-guests-v1-guest-guests.types.d.ts +62 -22
- package/build/internal/cjs/src/events-guests-v1-guest-guests.types.js.map +1 -1
- package/build/internal/cjs/src/events-guests-v1-guest-guests.universal.d.ts +63 -23
- package/build/internal/cjs/src/events-guests-v1-guest-guests.universal.js.map +1 -1
- package/build/internal/es/src/events-guests-v1-guest-guests.types.d.ts +62 -22
- package/build/internal/es/src/events-guests-v1-guest-guests.types.js.map +1 -1
- package/build/internal/es/src/events-guests-v1-guest-guests.universal.d.ts +63 -23
- package/build/internal/es/src/events-guests-v1-guest-guests.universal.js.map +1 -1
- package/package.json +3 -3
|
@@ -37,7 +37,7 @@ export interface EventGuest {
|
|
|
37
37
|
/** Guest details. <br/> <br/> Returned only when the `guestDetails` fieldset is sent in the request. */
|
|
38
38
|
guestDetails?: GuestDetails;
|
|
39
39
|
/** Attendance status. The attendance status updates based on status values in an RSVP object (for RSVP events) or in an Order object (for ticketed events). For more information read [this article](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/guest-attendance-status-mapping). <br/> <br/> **Note:** For `guestType` `BUYER` or `TICKET_HOLDER` the `IN_WAITLIST` value is not applicable. */
|
|
40
|
-
attendanceStatus?:
|
|
40
|
+
attendanceStatus?: AttendanceStatusWithLiterals;
|
|
41
41
|
/**
|
|
42
42
|
* 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.
|
|
43
43
|
* @format LANGUAGE
|
|
@@ -55,7 +55,7 @@ export interface EventGuest {
|
|
|
55
55
|
*/
|
|
56
56
|
memberId?: string | null;
|
|
57
57
|
/** Guest type. */
|
|
58
|
-
guestType?:
|
|
58
|
+
guestType?: GuestTypeWithLiterals;
|
|
59
59
|
/**
|
|
60
60
|
* Locale in [IETF BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) format. Used when the event date and time on a ticket should be formatted into another locale.
|
|
61
61
|
* @format LANGUAGE_TAG
|
|
@@ -244,6 +244,8 @@ export declare enum SubdivisionType {
|
|
|
244
244
|
/** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
245
245
|
COUNTRY = "COUNTRY"
|
|
246
246
|
}
|
|
247
|
+
/** @enumType */
|
|
248
|
+
export type SubdivisionTypeWithLiterals = SubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
|
|
247
249
|
/** Subdivision Concordance values */
|
|
248
250
|
export interface StandardDetails {
|
|
249
251
|
/**
|
|
@@ -260,6 +262,8 @@ export declare enum AttendanceStatus {
|
|
|
260
262
|
/** In a waiting list. */
|
|
261
263
|
IN_WAITLIST = "IN_WAITLIST"
|
|
262
264
|
}
|
|
265
|
+
/** @enumType */
|
|
266
|
+
export type AttendanceStatusWithLiterals = AttendanceStatus | 'NOT_ATTENDING' | 'ATTENDING' | 'IN_WAITLIST';
|
|
263
267
|
export declare enum GuestType {
|
|
264
268
|
/** An invited guest, no ticket necessary. */
|
|
265
269
|
RSVP = "RSVP",
|
|
@@ -268,6 +272,8 @@ export declare enum GuestType {
|
|
|
268
272
|
/** The guest for whom the ticket was bought. */
|
|
269
273
|
TICKET_HOLDER = "TICKET_HOLDER"
|
|
270
274
|
}
|
|
275
|
+
/** @enumType */
|
|
276
|
+
export type GuestTypeWithLiterals = GuestType | 'RSVP' | 'BUYER' | 'TICKET_HOLDER';
|
|
271
277
|
export interface GuestCountUpdated {
|
|
272
278
|
/** Guest. */
|
|
273
279
|
guest?: EventGuest;
|
|
@@ -279,7 +285,7 @@ export interface GuestCountUpdated {
|
|
|
279
285
|
}
|
|
280
286
|
export interface GuestCountUpdate {
|
|
281
287
|
/** Attendance status. */
|
|
282
|
-
attendanceStatus?:
|
|
288
|
+
attendanceStatus?: AttendanceStatusWithLiterals;
|
|
283
289
|
/** Total guest count change. */
|
|
284
290
|
totalGuestsDelta?: number;
|
|
285
291
|
/** Guest count change. */
|
|
@@ -297,7 +303,7 @@ export interface MemberEventStatusUpdated {
|
|
|
297
303
|
*/
|
|
298
304
|
memberId?: string | null;
|
|
299
305
|
/** Member event status. */
|
|
300
|
-
status?:
|
|
306
|
+
status?: MemberEventStatusUpdatedEventTypeWithLiterals;
|
|
301
307
|
}
|
|
302
308
|
export declare enum MemberEventStatusUpdatedEventType {
|
|
303
309
|
/**
|
|
@@ -322,6 +328,8 @@ export declare enum MemberEventStatusUpdatedEventType {
|
|
|
322
328
|
*/
|
|
323
329
|
LAST_ATTENDING_MEMBER_LEFT = "LAST_ATTENDING_MEMBER_LEFT"
|
|
324
330
|
}
|
|
331
|
+
/** @enumType */
|
|
332
|
+
export type MemberEventStatusUpdatedEventTypeWithLiterals = MemberEventStatusUpdatedEventType | 'MEMBER_JOINED' | 'MEMBER_LEFT' | 'ATTENDING_MEMBER_JOINED' | 'LAST_ATTENDING_MEMBER_LEFT';
|
|
325
333
|
export interface ContactEventStatusUpdated {
|
|
326
334
|
/**
|
|
327
335
|
* Event id.
|
|
@@ -334,7 +342,7 @@ export interface ContactEventStatusUpdated {
|
|
|
334
342
|
*/
|
|
335
343
|
contactId?: string | null;
|
|
336
344
|
/** Contact event status. */
|
|
337
|
-
status?:
|
|
345
|
+
status?: EventTypeWithLiterals;
|
|
338
346
|
}
|
|
339
347
|
export declare enum EventType {
|
|
340
348
|
/**
|
|
@@ -354,6 +362,8 @@ export declare enum EventType {
|
|
|
354
362
|
*/
|
|
355
363
|
LAST_CONTACT_LEFT = "LAST_CONTACT_LEFT"
|
|
356
364
|
}
|
|
365
|
+
/** @enumType */
|
|
366
|
+
export type EventTypeWithLiterals = EventType | 'CONTACT_JOINED' | 'CONTACT_LEFT' | 'LAST_CONTACT_LEFT';
|
|
357
367
|
export interface GuestCheckedIn {
|
|
358
368
|
/** Event guest */
|
|
359
369
|
guest?: EventGuest;
|
|
@@ -393,7 +403,7 @@ export interface EventDetails {
|
|
|
393
403
|
* Event status.
|
|
394
404
|
* @readonly
|
|
395
405
|
*/
|
|
396
|
-
status?:
|
|
406
|
+
status?: StatusWithLiterals;
|
|
397
407
|
}
|
|
398
408
|
export interface Location {
|
|
399
409
|
/**
|
|
@@ -402,7 +412,7 @@ export interface Location {
|
|
|
402
412
|
*/
|
|
403
413
|
name?: string | null;
|
|
404
414
|
/** Location type. */
|
|
405
|
-
type?:
|
|
415
|
+
type?: LocationTypeWithLiterals;
|
|
406
416
|
/** Exact location address. */
|
|
407
417
|
address?: CommonAddress;
|
|
408
418
|
/** Whether the event location is TBD. */
|
|
@@ -416,6 +426,8 @@ export declare enum LocationType {
|
|
|
416
426
|
/** Event is online, such as a virtual video conference. */
|
|
417
427
|
ONLINE = "ONLINE"
|
|
418
428
|
}
|
|
429
|
+
/** @enumType */
|
|
430
|
+
export type LocationTypeWithLiterals = LocationType | 'UNKNOWN_LOCATION' | 'VENUE' | 'ONLINE';
|
|
419
431
|
/** Physical address */
|
|
420
432
|
export interface CommonAddress extends CommonAddressStreetOneOf {
|
|
421
433
|
/** Street address. */
|
|
@@ -514,6 +526,8 @@ export declare enum SubdivisionSubdivisionType {
|
|
|
514
526
|
/** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
515
527
|
COUNTRY = "COUNTRY"
|
|
516
528
|
}
|
|
529
|
+
/** @enumType */
|
|
530
|
+
export type SubdivisionSubdivisionTypeWithLiterals = SubdivisionSubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
|
|
517
531
|
export interface DateAndTimeSettings {
|
|
518
532
|
/** Whether the event date and time are TBD. */
|
|
519
533
|
dateAndTimeTbd?: boolean | null;
|
|
@@ -539,7 +553,7 @@ export interface DateAndTimeSettings {
|
|
|
539
553
|
* Repeating event status.
|
|
540
554
|
* @readonly
|
|
541
555
|
*/
|
|
542
|
-
recurrenceStatus?:
|
|
556
|
+
recurrenceStatus?: RecurrenceStatusStatusWithLiterals;
|
|
543
557
|
/** Event repetitions. */
|
|
544
558
|
recurringEvents?: Recurrences;
|
|
545
559
|
/** Formatted date and time settings. */
|
|
@@ -559,6 +573,8 @@ export declare enum RecurrenceStatusStatus {
|
|
|
559
573
|
/** Latest canceled event in a schedule of recurring events */
|
|
560
574
|
RECURRING_RECENTLY_CANCELED = "RECURRING_RECENTLY_CANCELED"
|
|
561
575
|
}
|
|
576
|
+
/** @enumType */
|
|
577
|
+
export type RecurrenceStatusStatusWithLiterals = RecurrenceStatusStatus | 'UNKNOWN_STATUS' | 'ONE_TIME' | 'RECURRING' | 'RECURRING_UPCOMING' | 'RECURRING_RECENTLY_ENDED' | 'RECURRING_RECENTLY_CANCELED';
|
|
562
578
|
export interface Recurrences {
|
|
563
579
|
/**
|
|
564
580
|
* Individual event dates.
|
|
@@ -645,6 +661,8 @@ export declare enum Status {
|
|
|
645
661
|
/** Event is not public. */
|
|
646
662
|
DRAFT = "DRAFT"
|
|
647
663
|
}
|
|
664
|
+
/** @enumType */
|
|
665
|
+
export type StatusWithLiterals = Status | 'UNKNOWN_EVENT_STATUS' | 'UPCOMING' | 'STARTED' | 'ENDED' | 'CANCELED' | 'DRAFT';
|
|
648
666
|
export interface NotifyGuestAction {
|
|
649
667
|
/** Event guest. */
|
|
650
668
|
guest?: EventGuest;
|
|
@@ -655,9 +673,9 @@ export interface TaskContext {
|
|
|
655
673
|
/** Task id. */
|
|
656
674
|
id?: string | null;
|
|
657
675
|
/** Notify action type. */
|
|
658
|
-
type?:
|
|
676
|
+
type?: NotifyActionTypeWithLiterals;
|
|
659
677
|
/** Timing. Used for EVENT_STARTS */
|
|
660
|
-
timing?:
|
|
678
|
+
timing?: TimingWithLiterals;
|
|
661
679
|
/** Event context. */
|
|
662
680
|
event?: EventDetails;
|
|
663
681
|
/** Order context. */
|
|
@@ -672,6 +690,8 @@ export declare enum NotifyActionType {
|
|
|
672
690
|
EVENT_STARTS = "EVENT_STARTS",
|
|
673
691
|
ORDER_CANCELED = "ORDER_CANCELED"
|
|
674
692
|
}
|
|
693
|
+
/** @enumType */
|
|
694
|
+
export type NotifyActionTypeWithLiterals = NotifyActionType | 'UNKNOWN' | 'EMAIL' | 'AUTOMATION_TRIGGER' | 'PUSH' | 'EVENT_CANCELED' | 'EVENT_STARTS' | 'ORDER_CANCELED';
|
|
675
695
|
export declare enum Timing {
|
|
676
696
|
/** Unknown event start time. */
|
|
677
697
|
UNKNOWN_TIMING = "UNKNOWN_TIMING",
|
|
@@ -690,9 +710,11 @@ export declare enum Timing {
|
|
|
690
710
|
/** 2 hours prior. */
|
|
691
711
|
STARTS_IN_2_HOURS = "STARTS_IN_2_HOURS"
|
|
692
712
|
}
|
|
713
|
+
/** @enumType */
|
|
714
|
+
export type TimingWithLiterals = Timing | 'UNKNOWN_TIMING' | 'NOW' | 'STARTS_IN_1_DAY' | 'STARTS_IN_3_DAYS' | 'STARTS_IN_1_WEEK' | 'STARTS_IN_1_HOUR' | 'STARTS_IN_30_MINUTES' | 'STARTS_IN_2_HOURS';
|
|
693
715
|
export interface OrderDetails {
|
|
694
716
|
/** Order status */
|
|
695
|
-
orderStatus?:
|
|
717
|
+
orderStatus?: OrderStatusWithLiterals;
|
|
696
718
|
/** Invoice */
|
|
697
719
|
invoice?: Invoice;
|
|
698
720
|
}
|
|
@@ -720,6 +742,8 @@ export declare enum OrderStatus {
|
|
|
720
742
|
/** Order is partially paid with less than the total amount. */
|
|
721
743
|
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
722
744
|
}
|
|
745
|
+
/** @enumType */
|
|
746
|
+
export type OrderStatusWithLiterals = OrderStatus | 'NA_ORDER_STATUS' | 'FREE' | 'PENDING' | 'PAID' | 'OFFLINE_PENDING' | 'INITIATED' | 'CANCELED' | 'DECLINED' | 'AUTHORIZED' | 'VOIDED' | 'PARTIALLY_PAID';
|
|
723
747
|
export interface Invoice {
|
|
724
748
|
items?: Item[];
|
|
725
749
|
/**
|
|
@@ -866,7 +890,7 @@ export interface PercentDiscount {
|
|
|
866
890
|
}
|
|
867
891
|
export interface Tax {
|
|
868
892
|
/** Tax type. */
|
|
869
|
-
type?:
|
|
893
|
+
type?: TaxTypeWithLiterals;
|
|
870
894
|
/**
|
|
871
895
|
* Tax name.
|
|
872
896
|
* @readonly
|
|
@@ -890,11 +914,13 @@ export declare enum TaxType {
|
|
|
890
914
|
/** Tax is added to the final total at the checkout. */
|
|
891
915
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
892
916
|
}
|
|
917
|
+
/** @enumType */
|
|
918
|
+
export type TaxTypeWithLiterals = TaxType | 'INCLUDED' | 'ADDED' | 'ADDED_AT_CHECKOUT';
|
|
893
919
|
export interface Fee {
|
|
894
920
|
/** Fee identifier. */
|
|
895
|
-
name?:
|
|
921
|
+
name?: FeeNameWithLiterals;
|
|
896
922
|
/** How fee is calculated. */
|
|
897
|
-
type?:
|
|
923
|
+
type?: FeeTypeWithLiterals;
|
|
898
924
|
/**
|
|
899
925
|
* Fee rate.
|
|
900
926
|
* @format DECIMAL_VALUE
|
|
@@ -908,6 +934,8 @@ export declare enum FeeName {
|
|
|
908
934
|
/** Wix ticket service fee charges applied to the line item. */
|
|
909
935
|
WIX_FEE = "WIX_FEE"
|
|
910
936
|
}
|
|
937
|
+
/** @enumType */
|
|
938
|
+
export type FeeNameWithLiterals = FeeName | 'WIX_FEE';
|
|
911
939
|
export declare enum FeeType {
|
|
912
940
|
/** Fee is added to the ticket price at checkout. */
|
|
913
941
|
FEE_ADDED = "FEE_ADDED",
|
|
@@ -916,6 +944,8 @@ export declare enum FeeType {
|
|
|
916
944
|
/** Fee is added to the ticket price at checkout. */
|
|
917
945
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
918
946
|
}
|
|
947
|
+
/** @enumType */
|
|
948
|
+
export type FeeTypeWithLiterals = FeeType | 'FEE_ADDED' | 'FEE_INCLUDED' | 'FEE_ADDED_AT_CHECKOUT';
|
|
919
949
|
export interface GuestEventCanceled {
|
|
920
950
|
/** Event guest. */
|
|
921
951
|
guest?: EventGuest;
|
|
@@ -928,7 +958,7 @@ export interface GuestEventStarts {
|
|
|
928
958
|
/** Event context. */
|
|
929
959
|
event?: EventDetails;
|
|
930
960
|
/** Timing */
|
|
931
|
-
timing?:
|
|
961
|
+
timing?: TimingWithLiterals;
|
|
932
962
|
}
|
|
933
963
|
export interface GuestOrderCanceled {
|
|
934
964
|
/** Event guest. */
|
|
@@ -1048,7 +1078,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
1048
1078
|
*/
|
|
1049
1079
|
appId?: string;
|
|
1050
1080
|
/** @readonly */
|
|
1051
|
-
identityType?:
|
|
1081
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1052
1082
|
}
|
|
1053
1083
|
/** @oneof */
|
|
1054
1084
|
export interface IdentificationDataIdOneOf {
|
|
@@ -1080,6 +1110,8 @@ export declare enum WebhookIdentityType {
|
|
|
1080
1110
|
WIX_USER = "WIX_USER",
|
|
1081
1111
|
APP = "APP"
|
|
1082
1112
|
}
|
|
1113
|
+
/** @enumType */
|
|
1114
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1083
1115
|
export interface QueryEventGuestsRequest {
|
|
1084
1116
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
1085
1117
|
query: QueryV2;
|
|
@@ -1087,7 +1119,7 @@ export interface QueryEventGuestsRequest {
|
|
|
1087
1119
|
* Predefined sets of fields to return.
|
|
1088
1120
|
* @maxSize 3
|
|
1089
1121
|
*/
|
|
1090
|
-
fields?:
|
|
1122
|
+
fields?: RequestedFieldsEnumRequestedFieldsWithLiterals[];
|
|
1091
1123
|
}
|
|
1092
1124
|
export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
1093
1125
|
/** Paging options to limit and skip the number of items. */
|
|
@@ -1120,12 +1152,14 @@ export interface Sorting {
|
|
|
1120
1152
|
*/
|
|
1121
1153
|
fieldName?: string;
|
|
1122
1154
|
/** Sort order. */
|
|
1123
|
-
order?:
|
|
1155
|
+
order?: SortOrderWithLiterals;
|
|
1124
1156
|
}
|
|
1125
1157
|
export declare enum SortOrder {
|
|
1126
1158
|
ASC = "ASC",
|
|
1127
1159
|
DESC = "DESC"
|
|
1128
1160
|
}
|
|
1161
|
+
/** @enumType */
|
|
1162
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
1129
1163
|
export interface Paging {
|
|
1130
1164
|
/**
|
|
1131
1165
|
* Number of items to load.
|
|
@@ -1158,6 +1192,8 @@ export declare enum RequestedFieldsEnumRequestedFields {
|
|
|
1158
1192
|
/** Returns `totalGuests`. */
|
|
1159
1193
|
GUEST_TOTAL = "GUEST_TOTAL"
|
|
1160
1194
|
}
|
|
1195
|
+
/** @enumType */
|
|
1196
|
+
export type RequestedFieldsEnumRequestedFieldsWithLiterals = RequestedFieldsEnumRequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'GUEST_DETAILS' | 'GUEST_TOTAL';
|
|
1161
1197
|
export interface QueryEventGuestsResponse {
|
|
1162
1198
|
/** List of guests. */
|
|
1163
1199
|
guests?: EventGuest[];
|
|
@@ -1267,7 +1303,7 @@ export interface OrderConfirmed {
|
|
|
1267
1303
|
/** Checkout form response. */
|
|
1268
1304
|
checkoutForm?: FormResponse;
|
|
1269
1305
|
/** Order status. */
|
|
1270
|
-
status?:
|
|
1306
|
+
status?: OrderStatusWithLiterals;
|
|
1271
1307
|
/** Payment method used for paid tickets purchase, i.e. "payPal", "creditCard", etc. */
|
|
1272
1308
|
method?: string | null;
|
|
1273
1309
|
/** Tickets (generated after payment). */
|
|
@@ -1377,7 +1413,7 @@ export interface OrderUpdated {
|
|
|
1377
1413
|
/** Whether order is confirmed - occurs once payment gateway processes the payment and funds reach merchant's account. */
|
|
1378
1414
|
confirmed?: boolean;
|
|
1379
1415
|
/** Order status. */
|
|
1380
|
-
status?:
|
|
1416
|
+
status?: OrderStatusWithLiterals;
|
|
1381
1417
|
/** Payment method used for paid tickets purchase, i.e. "payPal", "creditCard", etc. */
|
|
1382
1418
|
method?: string | null;
|
|
1383
1419
|
/** Tickets generated after payment. */
|
|
@@ -1417,7 +1453,7 @@ export interface OrderDeleted {
|
|
|
1417
1453
|
/** Whether order was anonymized by GDPR delete. */
|
|
1418
1454
|
anonymized?: boolean;
|
|
1419
1455
|
/** Order type. */
|
|
1420
|
-
orderType?:
|
|
1456
|
+
orderType?: OrderTypeWithLiterals;
|
|
1421
1457
|
/** Whether event was triggered by GDPR delete request. */
|
|
1422
1458
|
triggeredByAnonymizeRequest?: boolean;
|
|
1423
1459
|
/** Tickets generated after payment. */
|
|
@@ -1429,6 +1465,8 @@ export declare enum OrderType {
|
|
|
1429
1465
|
/** Each order ticket has its own form. */
|
|
1430
1466
|
ASSIGNED_TICKETS = "ASSIGNED_TICKETS"
|
|
1431
1467
|
}
|
|
1468
|
+
/** @enumType */
|
|
1469
|
+
export type OrderTypeWithLiterals = OrderType | 'UNASSIGNED_TICKETS' | 'ASSIGNED_TICKETS';
|
|
1432
1470
|
export interface EventDeleted {
|
|
1433
1471
|
/** Event deleted timestamp in ISO UTC format. */
|
|
1434
1472
|
timestamp?: Date | null;
|
|
@@ -1468,7 +1506,7 @@ export interface ListGuestListPreviewsRequest {
|
|
|
1468
1506
|
* Requested fields.
|
|
1469
1507
|
* @maxSize 5
|
|
1470
1508
|
*/
|
|
1471
|
-
fields?:
|
|
1509
|
+
fields?: RequestedFieldsWithLiterals[];
|
|
1472
1510
|
}
|
|
1473
1511
|
export declare enum RequestedFields {
|
|
1474
1512
|
/** Unknown requested field. */
|
|
@@ -1478,6 +1516,8 @@ export declare enum RequestedFields {
|
|
|
1478
1516
|
/** Waitlist count. */
|
|
1479
1517
|
WAITLIST_COUNT = "WAITLIST_COUNT"
|
|
1480
1518
|
}
|
|
1519
|
+
/** @enumType */
|
|
1520
|
+
export type RequestedFieldsWithLiterals = RequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'MEMBER_GUESTS' | 'WAITLIST_COUNT';
|
|
1481
1521
|
export interface ListGuestListPreviewsResponse {
|
|
1482
1522
|
/**
|
|
1483
1523
|
* List of guests.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest-guests.types.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest-guests.types.ts"],"names":[],"mappings":";;;AAoPA,IAAY,eAcX;AAdD,WAAY,eAAe;IACzB,wEAAqD,CAAA;IACrD,YAAY;IACZ,8EAA2D,CAAA;IAC3D,aAAa;IACb,8EAA2D,CAAA;IAC3D,gBAAgB;IAChB,8EAA2D,CAAA;IAC3D,2BAA2B;IAC3B,8EAA2D,CAAA;IAC3D,mBAAmB;IACnB,8EAA2D,CAAA;IAC3D,8IAA8I;IAC9I,sCAAmB,CAAA;AACrB,CAAC,EAdW,eAAe,+BAAf,eAAe,QAc1B;
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest-guests.types.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest-guests.types.ts"],"names":[],"mappings":"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"}
|