@wix/events 1.0.341 → 1.0.342
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 +13 -13
- package/type-bundles/context.bundle.d.ts +266 -550
- package/type-bundles/index.bundle.d.ts +266 -550
- package/type-bundles/meta.bundle.d.ts +346 -597
|
@@ -493,7 +493,7 @@ interface EventGuest {
|
|
|
493
493
|
contactId?: string | null;
|
|
494
494
|
/** Guest details. <br/> <br/> Returned only when the `guestDetails` fieldset is sent in the request. */
|
|
495
495
|
guestDetails?: GuestDetails$2;
|
|
496
|
-
/** Attendance status. The
|
|
496
|
+
/** 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. */
|
|
497
497
|
attendanceStatus?: AttendanceStatus;
|
|
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;
|
|
@@ -505,7 +505,7 @@ interface EventGuest {
|
|
|
505
505
|
attendanceStatusUpdatedDate?: Date | null;
|
|
506
506
|
/** Site member ID. */
|
|
507
507
|
memberId?: string | null;
|
|
508
|
-
/** Guest type
|
|
508
|
+
/** Guest type. */
|
|
509
509
|
guestType?: GuestType;
|
|
510
510
|
/** 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. */
|
|
511
511
|
locale?: string | null;
|
|
@@ -651,11 +651,11 @@ declare enum AttendanceStatus {
|
|
|
651
651
|
IN_WAITLIST = "IN_WAITLIST"
|
|
652
652
|
}
|
|
653
653
|
declare enum GuestType {
|
|
654
|
-
/**
|
|
654
|
+
/** An invited guest, no ticket necessary. */
|
|
655
655
|
RSVP = "RSVP",
|
|
656
|
-
/**
|
|
656
|
+
/** The guest who bought the ticket. */
|
|
657
657
|
BUYER = "BUYER",
|
|
658
|
-
/**
|
|
658
|
+
/** The guest for whom the ticket was bought. */
|
|
659
659
|
TICKET_HOLDER = "TICKET_HOLDER"
|
|
660
660
|
}
|
|
661
661
|
interface GuestCountUpdated {
|
|
@@ -682,24 +682,24 @@ interface MemberEventStatusUpdated {
|
|
|
682
682
|
}
|
|
683
683
|
declare enum MemberEventStatusUpdatedEventType {
|
|
684
684
|
/**
|
|
685
|
-
*
|
|
686
|
-
* This event can also be
|
|
685
|
+
* Triggered every time a guest with a specified member ID is added to the event.
|
|
686
|
+
* This event can also be triggered if an existing guest changed their member ID.
|
|
687
687
|
*/
|
|
688
688
|
MEMBER_JOINED = "MEMBER_JOINED",
|
|
689
689
|
/**
|
|
690
|
-
*
|
|
691
|
-
* This event can also be
|
|
690
|
+
* Triggered every time a guest with a specified member ID is removed from the event.
|
|
691
|
+
* This event can also be triggered if an existing guest changed their member ID.
|
|
692
692
|
*/
|
|
693
693
|
MEMBER_LEFT = "MEMBER_LEFT",
|
|
694
694
|
/**
|
|
695
|
-
*
|
|
696
|
-
* This event can also be
|
|
695
|
+
* Triggered every time a guest with a specified member ID whose status is `ATTENDING` is added to the event.
|
|
696
|
+
* This event can also be triggered if an existing guest changed their member ID or changed their status to `ATTENDING`.
|
|
697
697
|
*/
|
|
698
698
|
ATTENDING_MEMBER_JOINED = "ATTENDING_MEMBER_JOINED",
|
|
699
699
|
/**
|
|
700
|
-
*
|
|
701
|
-
* Once
|
|
702
|
-
* This event can also be
|
|
700
|
+
* Triggered when the last guest with a specified member ID is removed from the event or their status changes to `ATTENDING`.
|
|
701
|
+
* Once triggered there are no more attending guests with a specified member ID in the event.
|
|
702
|
+
* This event can also be triggered if the last existing guest changed their member ID or their status to `NOT_ATTENDING`.
|
|
703
703
|
*/
|
|
704
704
|
LAST_ATTENDING_MEMBER_LEFT = "LAST_ATTENDING_MEMBER_LEFT"
|
|
705
705
|
}
|
|
@@ -713,19 +713,19 @@ interface ContactEventStatusUpdated {
|
|
|
713
713
|
}
|
|
714
714
|
declare enum EventType$5 {
|
|
715
715
|
/**
|
|
716
|
-
*
|
|
717
|
-
* This event can also be
|
|
716
|
+
* Triggered every time a guest with a specified contact ID is added to the event.
|
|
717
|
+
* This event can also be triggered if an existing guest changed their contact ID.
|
|
718
718
|
*/
|
|
719
719
|
CONTACT_JOINED = "CONTACT_JOINED",
|
|
720
720
|
/**
|
|
721
|
-
*
|
|
722
|
-
* This event can also be
|
|
721
|
+
* Triggered every time a guest with a specified contact ID is removed from the event.
|
|
722
|
+
* This event can also be triggered if an existing guest changed their contact ID.
|
|
723
723
|
*/
|
|
724
724
|
CONTACT_LEFT = "CONTACT_LEFT",
|
|
725
725
|
/**
|
|
726
|
-
*
|
|
727
|
-
* Once
|
|
728
|
-
* This event can also be
|
|
726
|
+
* Triggred when the last guest with a specified contact ID is removed from the event.
|
|
727
|
+
* Once triggered there are no more guests with a specified contact ID in the event.
|
|
728
|
+
* This event can also be triggered if the last existing guest changed their contact ID.
|
|
729
729
|
*/
|
|
730
730
|
LAST_CONTACT_LEFT = "LAST_CONTACT_LEFT"
|
|
731
731
|
}
|
|
@@ -770,11 +770,7 @@ interface EventDetails$1 {
|
|
|
770
770
|
interface Location$7 {
|
|
771
771
|
/** Location name. This value is displayed instead of the address when the location is defined as TBD by setting the `locationTbd` property to `true`. */
|
|
772
772
|
name?: string | null;
|
|
773
|
-
/**
|
|
774
|
-
* Location type. Possible values:
|
|
775
|
-
* - `VENUE`: Event is on-site at a specific physical location.
|
|
776
|
-
* - `ONLINE`: Event is online, such as a virtual video conference.
|
|
777
|
-
*/
|
|
773
|
+
/** Location type. */
|
|
778
774
|
type?: LocationType$7;
|
|
779
775
|
/** Exact location address. */
|
|
780
776
|
address?: CommonAddress$4;
|
|
@@ -782,9 +778,11 @@ interface Location$7 {
|
|
|
782
778
|
locationTbd?: boolean | null;
|
|
783
779
|
}
|
|
784
780
|
declare enum LocationType$7 {
|
|
785
|
-
/**
|
|
781
|
+
/** Unknown location type. */
|
|
786
782
|
UNKNOWN_LOCATION = "UNKNOWN_LOCATION",
|
|
783
|
+
/** Event is on-site at a specific physical location. */
|
|
787
784
|
VENUE = "VENUE",
|
|
785
|
+
/** Event is online, such as a virtual video conference. */
|
|
788
786
|
ONLINE = "ONLINE"
|
|
789
787
|
}
|
|
790
788
|
/** Physical address */
|
|
@@ -860,12 +858,7 @@ interface DateAndTimeSettings$2 {
|
|
|
860
858
|
/** Whether the time zone is displayed in the formatted schedule. */
|
|
861
859
|
showTimeZone?: boolean | null;
|
|
862
860
|
/**
|
|
863
|
-
* Repeating event status.
|
|
864
|
-
* - `ONE_TIME`: Event happens only once and can last multiple days.
|
|
865
|
-
* - `RECURRING`: A series of events that repeat.
|
|
866
|
-
* - `RECURRING_UPCOMING`: Next event in a schedule of recurring events.
|
|
867
|
-
* - `RECURRING_RECENTLY_ENDED`: Latest event that ended in a schedule of recurring events.
|
|
868
|
-
* - `RECURRING_RECENTLY_CANCELED`: Latest canceled event tin a schedule of recurring events..
|
|
861
|
+
* Repeating event status.
|
|
869
862
|
* @readonly
|
|
870
863
|
*/
|
|
871
864
|
recurrenceStatus?: RecurrenceStatusStatus$2;
|
|
@@ -875,17 +868,17 @@ interface DateAndTimeSettings$2 {
|
|
|
875
868
|
formatted?: Formatted$2;
|
|
876
869
|
}
|
|
877
870
|
declare enum RecurrenceStatusStatus$2 {
|
|
878
|
-
/**
|
|
871
|
+
/** Unknown recurrance status. */
|
|
879
872
|
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
880
|
-
/** Event happens only once. */
|
|
873
|
+
/** Event happens only once and can last multiple days. */
|
|
881
874
|
ONE_TIME = "ONE_TIME",
|
|
882
|
-
/**
|
|
875
|
+
/** A series of events that repeat. */
|
|
883
876
|
RECURRING = "RECURRING",
|
|
884
|
-
/**
|
|
877
|
+
/** Next event in a schedule of recurring events. */
|
|
885
878
|
RECURRING_UPCOMING = "RECURRING_UPCOMING",
|
|
886
|
-
/** Latest ended
|
|
879
|
+
/** Latest event that ended in a schedule of recurring events. */
|
|
887
880
|
RECURRING_RECENTLY_ENDED = "RECURRING_RECENTLY_ENDED",
|
|
888
|
-
/** Latest
|
|
881
|
+
/** Latest canceled event in a schedule of recurring events */
|
|
889
882
|
RECURRING_RECENTLY_CANCELED = "RECURRING_RECENTLY_CANCELED"
|
|
890
883
|
}
|
|
891
884
|
interface Recurrences$7 {
|
|
@@ -937,17 +930,17 @@ interface Formatted$2 {
|
|
|
937
930
|
endTime?: string | null;
|
|
938
931
|
}
|
|
939
932
|
declare enum Status$8 {
|
|
940
|
-
/**
|
|
933
|
+
/** Unknown event status. */
|
|
941
934
|
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
942
|
-
/** Event is
|
|
935
|
+
/** Event is published and scheduled to start. */
|
|
943
936
|
UPCOMING = "UPCOMING",
|
|
944
|
-
/** Event has started */
|
|
937
|
+
/** Event has started. */
|
|
945
938
|
STARTED = "STARTED",
|
|
946
|
-
/** Event has ended */
|
|
939
|
+
/** Event has ended. */
|
|
947
940
|
ENDED = "ENDED",
|
|
948
|
-
/** Event is canceled */
|
|
941
|
+
/** Event is canceled. */
|
|
949
942
|
CANCELED = "CANCELED",
|
|
950
|
-
/** Event is not public */
|
|
943
|
+
/** Event is not public. */
|
|
951
944
|
DRAFT = "DRAFT"
|
|
952
945
|
}
|
|
953
946
|
interface NotifyGuestAction {
|
|
@@ -978,21 +971,21 @@ declare enum NotifyActionType {
|
|
|
978
971
|
ORDER_CANCELED = "ORDER_CANCELED"
|
|
979
972
|
}
|
|
980
973
|
declare enum Timing {
|
|
981
|
-
/**
|
|
974
|
+
/** Unknown event start time. */
|
|
982
975
|
UNKNOWN_TIMING = "UNKNOWN_TIMING",
|
|
983
|
-
/** Instant */
|
|
976
|
+
/** Instant. */
|
|
984
977
|
NOW = "NOW",
|
|
985
|
-
/** 24 hours prior */
|
|
978
|
+
/** 24 hours prior. */
|
|
986
979
|
STARTS_IN_1_DAY = "STARTS_IN_1_DAY",
|
|
987
|
-
/** 3 days prior */
|
|
980
|
+
/** 3 days prior. */
|
|
988
981
|
STARTS_IN_3_DAYS = "STARTS_IN_3_DAYS",
|
|
989
|
-
/** 7 days prior */
|
|
982
|
+
/** 7 days prior. */
|
|
990
983
|
STARTS_IN_1_WEEK = "STARTS_IN_1_WEEK",
|
|
991
|
-
/** 1 hour prior */
|
|
984
|
+
/** 1 hour prior. */
|
|
992
985
|
STARTS_IN_1_HOUR = "STARTS_IN_1_HOUR",
|
|
993
|
-
/** 30 minutes prior */
|
|
986
|
+
/** 30 minutes prior. */
|
|
994
987
|
STARTS_IN_30_MINUTES = "STARTS_IN_30_MINUTES",
|
|
995
|
-
/** 2 hours prior */
|
|
988
|
+
/** 2 hours prior. */
|
|
996
989
|
STARTS_IN_2_HOURS = "STARTS_IN_2_HOURS"
|
|
997
990
|
}
|
|
998
991
|
interface OrderDetails {
|
|
@@ -1002,27 +995,27 @@ interface OrderDetails {
|
|
|
1002
995
|
invoice?: Invoice$2;
|
|
1003
996
|
}
|
|
1004
997
|
declare enum OrderStatus$3 {
|
|
1005
|
-
/** Order status not available for this request fieldset */
|
|
998
|
+
/** Order status not available for this request fieldset. */
|
|
1006
999
|
NA_ORDER_STATUS = "NA_ORDER_STATUS",
|
|
1007
|
-
/** Order is confirmed
|
|
1000
|
+
/** Order is confirmed and payment isn't required. */
|
|
1008
1001
|
FREE = "FREE",
|
|
1009
|
-
/** Order
|
|
1002
|
+
/** Order is paid for but the payment gateway has suspended the payment. */
|
|
1010
1003
|
PENDING = "PENDING",
|
|
1011
|
-
/** Order paid via payment gateway */
|
|
1004
|
+
/** Order is paid via a payment gateway. */
|
|
1012
1005
|
PAID = "PAID",
|
|
1013
|
-
/** Order confirmed but
|
|
1006
|
+
/** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `PAID`. */
|
|
1014
1007
|
OFFLINE_PENDING = "OFFLINE_PENDING",
|
|
1015
|
-
/** Order is awaiting
|
|
1008
|
+
/** Order is awaiting payment at the cashier. */
|
|
1016
1009
|
INITIATED = "INITIATED",
|
|
1017
|
-
/** Order
|
|
1010
|
+
/** Order is canceled. */
|
|
1018
1011
|
CANCELED = "CANCELED",
|
|
1019
|
-
/** Order payment
|
|
1012
|
+
/** Order payment is declined. */
|
|
1020
1013
|
DECLINED = "DECLINED",
|
|
1021
|
-
/** Order payment
|
|
1014
|
+
/** Order payment is authorized. */
|
|
1022
1015
|
AUTHORIZED = "AUTHORIZED",
|
|
1023
|
-
/** Order payment
|
|
1016
|
+
/** Order payment is voided. */
|
|
1024
1017
|
VOIDED = "VOIDED",
|
|
1025
|
-
/** Order
|
|
1018
|
+
/** Order is partially paid with less than the total amount. */
|
|
1026
1019
|
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
1027
1020
|
}
|
|
1028
1021
|
interface Invoice$2 {
|
|
@@ -1062,7 +1055,7 @@ interface Item$3 {
|
|
|
1062
1055
|
_id?: string;
|
|
1063
1056
|
/** Line item quantity. */
|
|
1064
1057
|
quantity?: number;
|
|
1065
|
-
/** Line item
|
|
1058
|
+
/** Line item name. */
|
|
1066
1059
|
name?: string;
|
|
1067
1060
|
/** Line item price. */
|
|
1068
1061
|
price?: Money$8;
|
|
@@ -1335,11 +1328,7 @@ declare enum WebhookIdentityType$d {
|
|
|
1335
1328
|
interface QueryEventGuestsRequest {
|
|
1336
1329
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
1337
1330
|
query: QueryV2$8;
|
|
1338
|
-
/**
|
|
1339
|
-
* Predefined sets of fields to return.
|
|
1340
|
-
* - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
|
|
1341
|
-
* - `GUEST_TOTAL`: Returns `totalGuests`.
|
|
1342
|
-
*/
|
|
1331
|
+
/** Predefined sets of fields to return. */
|
|
1343
1332
|
fields?: RequestedFieldsEnumRequestedFields[];
|
|
1344
1333
|
}
|
|
1345
1334
|
interface QueryV2$8 extends QueryV2PagingMethodOneOf$8 {
|
|
@@ -1394,10 +1383,11 @@ interface CursorPaging$7 {
|
|
|
1394
1383
|
cursor?: string | null;
|
|
1395
1384
|
}
|
|
1396
1385
|
declare enum RequestedFieldsEnumRequestedFields {
|
|
1386
|
+
/** Unknown requested field. */
|
|
1397
1387
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1398
|
-
/**
|
|
1388
|
+
/** Returns `guestDetails` and `tickets`. */
|
|
1399
1389
|
GUEST_DETAILS = "GUEST_DETAILS",
|
|
1400
|
-
/** Returns
|
|
1390
|
+
/** Returns `totalGuests`. */
|
|
1401
1391
|
GUEST_TOTAL = "GUEST_TOTAL"
|
|
1402
1392
|
}
|
|
1403
1393
|
interface QueryEventGuestsResponse {
|
|
@@ -1695,9 +1685,9 @@ interface OrderDeleted$1 {
|
|
|
1695
1685
|
tickets?: Ticket$3[];
|
|
1696
1686
|
}
|
|
1697
1687
|
declare enum OrderType$1 {
|
|
1698
|
-
/** Buyer form is used for all tickets */
|
|
1688
|
+
/** Buyer form is used for all tickets. */
|
|
1699
1689
|
UNASSIGNED_TICKETS = "UNASSIGNED_TICKETS",
|
|
1700
|
-
/** Each order ticket has its own form */
|
|
1690
|
+
/** Each order ticket has its own form. */
|
|
1701
1691
|
ASSIGNED_TICKETS = "ASSIGNED_TICKETS"
|
|
1702
1692
|
}
|
|
1703
1693
|
interface EventDeleted$5 {
|
|
@@ -1893,11 +1883,7 @@ interface GuestOrderCanceledEnvelope {
|
|
|
1893
1883
|
metadata: EventMetadata$6;
|
|
1894
1884
|
}
|
|
1895
1885
|
interface QueryEventGuestsOptions {
|
|
1896
|
-
/**
|
|
1897
|
-
* Predefined sets of fields to return.
|
|
1898
|
-
* - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
|
|
1899
|
-
* - `GUEST_TOTAL`: Returns `totalGuests`.
|
|
1900
|
-
*/
|
|
1886
|
+
/** Predefined sets of fields to return. */
|
|
1901
1887
|
fields?: RequestedFieldsEnumRequestedFields[] | undefined;
|
|
1902
1888
|
}
|
|
1903
1889
|
interface QueryCursorResult$7 {
|
|
@@ -3435,27 +3421,27 @@ interface OrderConfirmed$1 {
|
|
|
3435
3421
|
reservationId?: string;
|
|
3436
3422
|
}
|
|
3437
3423
|
declare enum OrderStatus$2 {
|
|
3438
|
-
/** Order status not available for this request fieldset */
|
|
3424
|
+
/** Order status not available for this request fieldset. */
|
|
3439
3425
|
NA_ORDER_STATUS = "NA_ORDER_STATUS",
|
|
3440
|
-
/** Order is confirmed
|
|
3426
|
+
/** Order is confirmed and payment isn't required. */
|
|
3441
3427
|
FREE = "FREE",
|
|
3442
|
-
/** Order
|
|
3428
|
+
/** Order is paid for but the payment gateway has suspended the payment. */
|
|
3443
3429
|
PENDING = "PENDING",
|
|
3444
|
-
/** Order paid via payment gateway */
|
|
3430
|
+
/** Order is paid via a payment gateway. */
|
|
3445
3431
|
PAID = "PAID",
|
|
3446
|
-
/** Order confirmed but
|
|
3432
|
+
/** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `PAID`. */
|
|
3447
3433
|
OFFLINE_PENDING = "OFFLINE_PENDING",
|
|
3448
|
-
/** Order is awaiting
|
|
3434
|
+
/** Order is awaiting payment at the cashier. */
|
|
3449
3435
|
INITIATED = "INITIATED",
|
|
3450
|
-
/** Order
|
|
3436
|
+
/** Order is canceled. */
|
|
3451
3437
|
CANCELED = "CANCELED",
|
|
3452
|
-
/** Order payment
|
|
3438
|
+
/** Order payment is declined. */
|
|
3453
3439
|
DECLINED = "DECLINED",
|
|
3454
|
-
/** Order payment
|
|
3440
|
+
/** Order payment is authorized. */
|
|
3455
3441
|
AUTHORIZED = "AUTHORIZED",
|
|
3456
|
-
/** Order payment
|
|
3442
|
+
/** Order payment is voided. */
|
|
3457
3443
|
VOIDED = "VOIDED",
|
|
3458
|
-
/** Order
|
|
3444
|
+
/** Order is partially paid with less than the total amount. */
|
|
3459
3445
|
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
3460
3446
|
}
|
|
3461
3447
|
interface Ticket$2 {
|
|
@@ -3527,7 +3513,7 @@ interface Item$2 {
|
|
|
3527
3513
|
_id?: string;
|
|
3528
3514
|
/** Line item quantity. */
|
|
3529
3515
|
quantity?: number;
|
|
3530
|
-
/** Line item
|
|
3516
|
+
/** Line item name. */
|
|
3531
3517
|
name?: string;
|
|
3532
3518
|
/** Line item price. */
|
|
3533
3519
|
price?: Money$7;
|
|
@@ -4192,9 +4178,9 @@ interface TimeInterval$1 {
|
|
|
4192
4178
|
timeZoneId?: string | null;
|
|
4193
4179
|
}
|
|
4194
4180
|
declare enum ScheduleStatus$1 {
|
|
4195
|
-
/** Item is scheduled for a future date */
|
|
4181
|
+
/** Item is scheduled for a future date. */
|
|
4196
4182
|
SCHEDULED = "SCHEDULED",
|
|
4197
|
-
/** Item
|
|
4183
|
+
/** Item is canceled. */
|
|
4198
4184
|
CANCELED = "CANCELED"
|
|
4199
4185
|
}
|
|
4200
4186
|
interface ListScheduleItemsRequest$1 {
|
|
@@ -4602,9 +4588,9 @@ interface TimeInterval {
|
|
|
4602
4588
|
timeZoneId?: string | null;
|
|
4603
4589
|
}
|
|
4604
4590
|
declare enum ScheduleStatus {
|
|
4605
|
-
/** Item is scheduled for a future date */
|
|
4591
|
+
/** Item is scheduled for a future date. */
|
|
4606
4592
|
SCHEDULED = "SCHEDULED",
|
|
4607
|
-
/** Item
|
|
4593
|
+
/** Item is canceled. */
|
|
4608
4594
|
CANCELED = "CANCELED"
|
|
4609
4595
|
}
|
|
4610
4596
|
interface ListScheduleItemsRequest {
|
|
@@ -8439,27 +8425,27 @@ interface StandardDetails$3 {
|
|
|
8439
8425
|
iso31662?: string | null;
|
|
8440
8426
|
}
|
|
8441
8427
|
declare enum OrderStatus$1 {
|
|
8442
|
-
/** Order status not available for this request fieldset */
|
|
8428
|
+
/** Order status not available for this request fieldset. */
|
|
8443
8429
|
NA_ORDER_STATUS = "NA_ORDER_STATUS",
|
|
8444
|
-
/** Order is confirmed
|
|
8430
|
+
/** Order is confirmed and payment isn't required. */
|
|
8445
8431
|
FREE = "FREE",
|
|
8446
|
-
/** Order
|
|
8432
|
+
/** Order is paid for but the payment gateway has suspended the payment. */
|
|
8447
8433
|
PENDING = "PENDING",
|
|
8448
|
-
/** Order paid via payment gateway */
|
|
8434
|
+
/** Order is paid via a payment gateway. */
|
|
8449
8435
|
PAID = "PAID",
|
|
8450
|
-
/** Order confirmed but
|
|
8436
|
+
/** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `PAID`. */
|
|
8451
8437
|
OFFLINE_PENDING = "OFFLINE_PENDING",
|
|
8452
|
-
/** Order is awaiting
|
|
8438
|
+
/** Order is awaiting payment at the cashier. */
|
|
8453
8439
|
INITIATED = "INITIATED",
|
|
8454
|
-
/** Order
|
|
8440
|
+
/** Order is canceled. */
|
|
8455
8441
|
CANCELED = "CANCELED",
|
|
8456
|
-
/** Order payment
|
|
8442
|
+
/** Order payment is declined. */
|
|
8457
8443
|
DECLINED = "DECLINED",
|
|
8458
|
-
/** Order payment
|
|
8444
|
+
/** Order payment is authorized. */
|
|
8459
8445
|
AUTHORIZED = "AUTHORIZED",
|
|
8460
|
-
/** Order payment
|
|
8446
|
+
/** Order payment is voided. */
|
|
8461
8447
|
VOIDED = "VOIDED",
|
|
8462
|
-
/** Order
|
|
8448
|
+
/** Order is partially paid with less than the total amount. */
|
|
8463
8449
|
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
8464
8450
|
}
|
|
8465
8451
|
interface Money$5 {
|
|
@@ -8560,9 +8546,9 @@ interface GuestDetails$1 {
|
|
|
8560
8546
|
phone?: string | null;
|
|
8561
8547
|
}
|
|
8562
8548
|
declare enum ChannelType$1 {
|
|
8563
|
-
/** Buyer created order via
|
|
8549
|
+
/** Buyer created the order via an online channel such as a website or mobile app. */
|
|
8564
8550
|
ONLINE = "ONLINE",
|
|
8565
|
-
/**
|
|
8551
|
+
/** Sales person created the order and collected the money. */
|
|
8566
8552
|
OFFLINE_POS = "OFFLINE_POS"
|
|
8567
8553
|
}
|
|
8568
8554
|
interface TicketDetails$1 {
|
|
@@ -8643,7 +8629,7 @@ interface Item$1 {
|
|
|
8643
8629
|
_id?: string;
|
|
8644
8630
|
/** Line item quantity. */
|
|
8645
8631
|
quantity?: number;
|
|
8646
|
-
/** Line item
|
|
8632
|
+
/** Line item name. */
|
|
8647
8633
|
name?: string;
|
|
8648
8634
|
/** Line item price. */
|
|
8649
8635
|
price?: Money$5;
|
|
@@ -8787,11 +8773,11 @@ interface PaymentTransaction {
|
|
|
8787
8773
|
method?: string;
|
|
8788
8774
|
}
|
|
8789
8775
|
declare enum ScheduledActionEnumAction {
|
|
8790
|
-
/** Action not scheduled */
|
|
8776
|
+
/** Action not scheduled. */
|
|
8791
8777
|
UNKNOWN_ACTION = "UNKNOWN_ACTION",
|
|
8792
|
-
/**
|
|
8778
|
+
/** Captured after the delay. */
|
|
8793
8779
|
CAPTURE = "CAPTURE",
|
|
8794
|
-
/** Void after the delay */
|
|
8780
|
+
/** Void after the delay. */
|
|
8795
8781
|
VOID = "VOID"
|
|
8796
8782
|
}
|
|
8797
8783
|
declare enum Action {
|
|
@@ -8853,9 +8839,9 @@ interface OrderDeleted {
|
|
|
8853
8839
|
tickets?: Ticket$1[];
|
|
8854
8840
|
}
|
|
8855
8841
|
declare enum OrderType {
|
|
8856
|
-
/** Buyer form is used for all tickets */
|
|
8842
|
+
/** Buyer form is used for all tickets. */
|
|
8857
8843
|
UNASSIGNED_TICKETS = "UNASSIGNED_TICKETS",
|
|
8858
|
-
/** Each order ticket has its own form */
|
|
8844
|
+
/** Each order ticket has its own form. */
|
|
8859
8845
|
ASSIGNED_TICKETS = "ASSIGNED_TICKETS"
|
|
8860
8846
|
}
|
|
8861
8847
|
interface Ticket$1 {
|
|
@@ -8952,29 +8938,29 @@ interface ListOrdersRequest {
|
|
|
8952
8938
|
contactId?: string[];
|
|
8953
8939
|
}
|
|
8954
8940
|
declare enum OrderFieldset {
|
|
8955
|
-
/** Include tickets in response */
|
|
8941
|
+
/** Include tickets in response. */
|
|
8956
8942
|
TICKETS = "TICKETS",
|
|
8957
|
-
/** Include order details: status
|
|
8943
|
+
/** Include order details in the response: `status`, `firstName`, `lastName`, `email`, `created`, etc. */
|
|
8958
8944
|
DETAILS = "DETAILS",
|
|
8959
|
-
/** Include
|
|
8945
|
+
/** Include `checkoutForm` in the response. */
|
|
8960
8946
|
FORM = "FORM",
|
|
8961
|
-
/** Include invoice */
|
|
8947
|
+
/** Include `invoice` in the response. */
|
|
8962
8948
|
INVOICE = "INVOICE"
|
|
8963
8949
|
}
|
|
8964
8950
|
declare enum OrderTag {
|
|
8965
|
-
/** Return only confirmed orders */
|
|
8951
|
+
/** Return only confirmed orders. */
|
|
8966
8952
|
CONFIRMED = "CONFIRMED",
|
|
8967
|
-
/** Return only unconfirmed orders */
|
|
8953
|
+
/** Return only unconfirmed orders. */
|
|
8968
8954
|
UNCONFIRMED = "UNCONFIRMED",
|
|
8969
|
-
/** Return only member orders */
|
|
8955
|
+
/** Return only member orders. */
|
|
8970
8956
|
MEMBER = "MEMBER",
|
|
8971
|
-
/** Return only archived orders */
|
|
8957
|
+
/** Return only archived orders. */
|
|
8972
8958
|
ARCHIVED = "ARCHIVED",
|
|
8973
|
-
/** Return only non archived orders */
|
|
8959
|
+
/** Return only non archived orders. */
|
|
8974
8960
|
NON_ARCHIVED = "NON_ARCHIVED",
|
|
8975
|
-
/** Return only orders with all guests checked-in */
|
|
8961
|
+
/** Return only orders with all guests checked-in. */
|
|
8976
8962
|
FULLY_CHECKED_IN = "FULLY_CHECKED_IN",
|
|
8977
|
-
/** Return only orders with no guests checked-in */
|
|
8963
|
+
/** Return only orders with no guests checked-in. */
|
|
8978
8964
|
NOT_FULLY_CHECKED_IN = "NOT_FULLY_CHECKED_IN"
|
|
8979
8965
|
}
|
|
8980
8966
|
interface ListOrdersResponse {
|
|
@@ -9395,18 +9381,15 @@ interface ReservationCreated$1 {
|
|
|
9395
9381
|
counts?: ReservationCount$1[];
|
|
9396
9382
|
}
|
|
9397
9383
|
declare enum ReservationStatus$1 {
|
|
9398
|
-
/**
|
|
9399
|
-
* Reservation is pending confirmation.
|
|
9400
|
-
* The reservation will expire after the expiration due time.
|
|
9401
|
-
*/
|
|
9384
|
+
/** The Reservation is pending confirmation and will expire after the expiration due time. */
|
|
9402
9385
|
RESERVATION_PENDING = "RESERVATION_PENDING",
|
|
9403
|
-
/** The reservation
|
|
9386
|
+
/** The reservation is confirmed and will not expire. */
|
|
9404
9387
|
RESERVATION_CONFIRMED = "RESERVATION_CONFIRMED",
|
|
9405
|
-
/** The reservation
|
|
9388
|
+
/** The reservation is canceled because of non payment. */
|
|
9406
9389
|
RESERVATION_CANCELED = "RESERVATION_CANCELED",
|
|
9407
|
-
/** The reservation
|
|
9390
|
+
/** The reservation is canceled manually by the buyer. */
|
|
9408
9391
|
RESERVATION_CANCELED_MANUALLY = "RESERVATION_CANCELED_MANUALLY",
|
|
9409
|
-
/** The reservation
|
|
9392
|
+
/** The reservation is expired. */
|
|
9410
9393
|
RESERVATION_EXPIRED = "RESERVATION_EXPIRED"
|
|
9411
9394
|
}
|
|
9412
9395
|
interface TicketQuantity$1 {
|
|
@@ -9563,11 +9546,11 @@ interface TicketSalePeriod$1 {
|
|
|
9563
9546
|
hideNotOnSale?: boolean;
|
|
9564
9547
|
}
|
|
9565
9548
|
declare enum TicketSaleStatus$1 {
|
|
9566
|
-
/** Ticket sale is scheduled to start */
|
|
9549
|
+
/** Ticket sale is scheduled to start. */
|
|
9567
9550
|
SALE_SCHEDULED = "SALE_SCHEDULED",
|
|
9568
|
-
/** Ticket sale has started */
|
|
9551
|
+
/** Ticket sale has started. */
|
|
9569
9552
|
SALE_STARTED = "SALE_STARTED",
|
|
9570
|
-
/** Ticket sale has ended */
|
|
9553
|
+
/** Ticket sale has ended. */
|
|
9571
9554
|
SALE_ENDED = "SALE_ENDED"
|
|
9572
9555
|
}
|
|
9573
9556
|
interface TicketPricing$1 extends TicketPricingPriceOneOf$1 {
|
|
@@ -9623,9 +9606,9 @@ interface QueryAvailableTicketsRequest {
|
|
|
9623
9606
|
sort?: string;
|
|
9624
9607
|
}
|
|
9625
9608
|
declare enum TicketDefinitionFieldset$1 {
|
|
9626
|
-
/** Include policy in the response. */
|
|
9609
|
+
/** Include `policy` in the response. */
|
|
9627
9610
|
POLICY = "POLICY",
|
|
9628
|
-
/** Include dashboard in the response. */
|
|
9611
|
+
/** Include `dashboard` in the response. */
|
|
9629
9612
|
DASHBOARD = "DASHBOARD"
|
|
9630
9613
|
}
|
|
9631
9614
|
interface QueryAvailableTicketsResponse {
|
|
@@ -13428,19 +13411,19 @@ interface ListRsvpRequest {
|
|
|
13428
13411
|
tag?: RsvpTag[];
|
|
13429
13412
|
}
|
|
13430
13413
|
declare enum RsvpFieldset {
|
|
13431
|
-
/** Include RSVP details: created
|
|
13414
|
+
/** Include RSVP details including: `created`, `modified`, `firstName`, `lastName`, `status`, `totalGuests`, `guests`, and `annonymized`. */
|
|
13432
13415
|
DETAILS = "DETAILS",
|
|
13433
|
-
/** Include
|
|
13416
|
+
/** Include RSVP form. */
|
|
13434
13417
|
FORM = "FORM",
|
|
13435
13418
|
/** Include RSVP email. */
|
|
13436
13419
|
CONTACT_DETAILS = "CONTACT_DETAILS"
|
|
13437
13420
|
}
|
|
13438
13421
|
declare enum RsvpTag {
|
|
13439
|
-
/** Return only
|
|
13422
|
+
/** Return only RSVPs of all guests that are fully checked-in. */
|
|
13440
13423
|
FULLY_CHECKED_IN = "FULLY_CHECKED_IN",
|
|
13441
|
-
/** Return only
|
|
13424
|
+
/** Return only RSVPs of all guests that aren't fully checked-in. */
|
|
13442
13425
|
NOT_FULLY_CHECKED_IN = "NOT_FULLY_CHECKED_IN",
|
|
13443
|
-
/** Return only
|
|
13426
|
+
/** Return only RSVPs of guests that are members. */
|
|
13444
13427
|
MEMBER = "MEMBER"
|
|
13445
13428
|
}
|
|
13446
13429
|
interface ListRsvpResponse {
|
|
@@ -14341,27 +14324,27 @@ interface CheckIn {
|
|
|
14341
14324
|
created?: Date | null;
|
|
14342
14325
|
}
|
|
14343
14326
|
declare enum OrderStatus {
|
|
14344
|
-
/** Order status not available for this request fieldset */
|
|
14327
|
+
/** Order status not available for this request fieldset. */
|
|
14345
14328
|
NA_ORDER_STATUS = "NA_ORDER_STATUS",
|
|
14346
|
-
/** Order is confirmed
|
|
14329
|
+
/** Order is confirmed and payment isn't required. */
|
|
14347
14330
|
FREE = "FREE",
|
|
14348
|
-
/** Order
|
|
14331
|
+
/** Order is paid for but the payment gateway has suspended the payment. */
|
|
14349
14332
|
PENDING = "PENDING",
|
|
14350
|
-
/** Order paid via payment gateway */
|
|
14333
|
+
/** Order is paid via a payment gateway. */
|
|
14351
14334
|
PAID = "PAID",
|
|
14352
|
-
/** Order confirmed but
|
|
14335
|
+
/** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `PAID`. */
|
|
14353
14336
|
OFFLINE_PENDING = "OFFLINE_PENDING",
|
|
14354
|
-
/** Order is awaiting
|
|
14337
|
+
/** Order is awaiting payment at the cashier. */
|
|
14355
14338
|
INITIATED = "INITIATED",
|
|
14356
|
-
/** Order
|
|
14339
|
+
/** Order is canceled. */
|
|
14357
14340
|
CANCELED = "CANCELED",
|
|
14358
|
-
/** Order payment
|
|
14341
|
+
/** Order payment is declined. */
|
|
14359
14342
|
DECLINED = "DECLINED",
|
|
14360
|
-
/** Order payment
|
|
14343
|
+
/** Order payment is authorized. */
|
|
14361
14344
|
AUTHORIZED = "AUTHORIZED",
|
|
14362
|
-
/** Order payment
|
|
14345
|
+
/** Order payment is voided. */
|
|
14363
14346
|
VOIDED = "VOIDED",
|
|
14364
|
-
/** Order
|
|
14347
|
+
/** Order is partially paid with less than the total amount. */
|
|
14365
14348
|
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
14366
14349
|
}
|
|
14367
14350
|
interface GuestDetails {
|
|
@@ -14461,9 +14444,9 @@ interface StandardDetails$1 {
|
|
|
14461
14444
|
iso31662?: string | null;
|
|
14462
14445
|
}
|
|
14463
14446
|
declare enum ChannelType {
|
|
14464
|
-
/** Buyer created order via
|
|
14447
|
+
/** Buyer created the order via an online channel such as a website or mobile app. */
|
|
14465
14448
|
ONLINE = "ONLINE",
|
|
14466
|
-
/**
|
|
14449
|
+
/** Sales person created the order and collected the money. */
|
|
14467
14450
|
OFFLINE_POS = "OFFLINE_POS"
|
|
14468
14451
|
}
|
|
14469
14452
|
interface TicketDetails {
|
|
@@ -14555,31 +14538,31 @@ interface ListTicketsRequest {
|
|
|
14555
14538
|
ticketDefinitionId?: string[];
|
|
14556
14539
|
}
|
|
14557
14540
|
declare enum TicketFieldset {
|
|
14558
|
-
/** Include guest details in ticket response */
|
|
14541
|
+
/** Include guest details in the ticket response. */
|
|
14559
14542
|
GUEST_DETAILS = "GUEST_DETAILS",
|
|
14560
|
-
/** Include ticket details in ticket response */
|
|
14543
|
+
/** Include ticket details in the ticket response. */
|
|
14561
14544
|
TICKET_DETAILS = "TICKET_DETAILS",
|
|
14562
|
-
/** Include individual guest form in ticket response */
|
|
14545
|
+
/** Include individual guest form in the ticket response. */
|
|
14563
14546
|
GUEST_FORM = "GUEST_FORM"
|
|
14564
14547
|
}
|
|
14565
14548
|
declare enum State$4 {
|
|
14566
|
-
/** Returns only archived orders' tickets */
|
|
14549
|
+
/** Returns only archived orders' tickets. */
|
|
14567
14550
|
ORDER_ARCHIVED = "ORDER_ARCHIVED",
|
|
14568
|
-
/** Returns only non-archived orders' tickets */
|
|
14551
|
+
/** Returns only non-archived orders' tickets. */
|
|
14569
14552
|
ORDER_ACTIVE = "ORDER_ACTIVE",
|
|
14570
|
-
/** Returns only archived tickets */
|
|
14553
|
+
/** Returns only archived tickets. */
|
|
14571
14554
|
TICKET_ARCHIVED = "TICKET_ARCHIVED",
|
|
14572
|
-
/** Returns only non-archived tickets */
|
|
14555
|
+
/** Returns only non-archived tickets. */
|
|
14573
14556
|
TICKET_ACTIVE = "TICKET_ACTIVE",
|
|
14574
|
-
/** Returns only checked-in tickets */
|
|
14557
|
+
/** Returns only checked-in tickets. */
|
|
14575
14558
|
CHECKED_IN = "CHECKED_IN",
|
|
14576
|
-
/** Returns only non-checked-in tickets */
|
|
14559
|
+
/** Returns only non-checked-in tickets. */
|
|
14577
14560
|
NON_CHECKED_IN = "NON_CHECKED_IN",
|
|
14578
|
-
/** Returns only free tickets */
|
|
14561
|
+
/** Returns only free tickets. */
|
|
14579
14562
|
FREE = "FREE",
|
|
14580
|
-
/** Returns only paid tickets */
|
|
14563
|
+
/** Returns only paid tickets. */
|
|
14581
14564
|
PAID = "PAID",
|
|
14582
|
-
/** Returns only member tickets */
|
|
14565
|
+
/** Returns only member tickets. */
|
|
14583
14566
|
MEMBER = "MEMBER"
|
|
14584
14567
|
}
|
|
14585
14568
|
interface ListTicketsResponse {
|
|
@@ -15233,11 +15216,11 @@ interface TicketSalePeriod {
|
|
|
15233
15216
|
hideNotOnSale?: boolean;
|
|
15234
15217
|
}
|
|
15235
15218
|
declare enum TicketSaleStatus {
|
|
15236
|
-
/** Ticket sale is scheduled to start */
|
|
15219
|
+
/** Ticket sale is scheduled to start. */
|
|
15237
15220
|
SALE_SCHEDULED = "SALE_SCHEDULED",
|
|
15238
|
-
/** Ticket sale has started */
|
|
15221
|
+
/** Ticket sale has started. */
|
|
15239
15222
|
SALE_STARTED = "SALE_STARTED",
|
|
15240
|
-
/** Ticket sale has ended */
|
|
15223
|
+
/** Ticket sale has ended. */
|
|
15241
15224
|
SALE_ENDED = "SALE_ENDED"
|
|
15242
15225
|
}
|
|
15243
15226
|
declare enum TicketDefinitionStateEnumState {
|
|
@@ -15302,9 +15285,9 @@ interface QueryTicketDefinitionsRequest$1 {
|
|
|
15302
15285
|
facet?: string[];
|
|
15303
15286
|
}
|
|
15304
15287
|
declare enum TicketDefinitionFieldset {
|
|
15305
|
-
/** Include policy in the response. */
|
|
15288
|
+
/** Include `policy` in the response. */
|
|
15306
15289
|
POLICY = "POLICY",
|
|
15307
|
-
/** Include dashboard in the response. */
|
|
15290
|
+
/** Include `dashboard` in the response. */
|
|
15308
15291
|
DASHBOARD = "DASHBOARD"
|
|
15309
15292
|
}
|
|
15310
15293
|
interface QueryTicketDefinitionsResponse$1 {
|
|
@@ -15447,13 +15430,13 @@ interface ListTicketDefinitionsRequest {
|
|
|
15447
15430
|
facet?: string[];
|
|
15448
15431
|
}
|
|
15449
15432
|
declare enum State$3 {
|
|
15450
|
-
/**
|
|
15433
|
+
/** The ticket is available for purchase. */
|
|
15451
15434
|
VISIBLE = "VISIBLE",
|
|
15452
|
-
/**
|
|
15435
|
+
/** The ticket is unavailable for purchase. */
|
|
15453
15436
|
HIDDEN = "HIDDEN",
|
|
15454
|
-
/**
|
|
15437
|
+
/** The ticket price is 0. */
|
|
15455
15438
|
FREE = "FREE",
|
|
15456
|
-
/**
|
|
15439
|
+
/** The ticket price is greater than 0. */
|
|
15457
15440
|
PAID = "PAID"
|
|
15458
15441
|
}
|
|
15459
15442
|
declare enum GroupBy {
|
|
@@ -16993,6 +16976,7 @@ interface Rsvp {
|
|
|
16993
16976
|
email?: string | null;
|
|
16994
16977
|
/** Event registration form. */
|
|
16995
16978
|
form?: FormResponse;
|
|
16979
|
+
/** RSVP response status. */
|
|
16996
16980
|
status?: RsvpStatus;
|
|
16997
16981
|
/**
|
|
16998
16982
|
* Total number of guests per 1 RSVP.
|
|
@@ -17119,8 +17103,11 @@ interface StandardDetails {
|
|
|
17119
17103
|
}
|
|
17120
17104
|
declare enum RsvpStatus {
|
|
17121
17105
|
UNKNOWN_RSVP_STATUS = "UNKNOWN_RSVP_STATUS",
|
|
17106
|
+
/** Guest is attending the event. */
|
|
17122
17107
|
YES = "YES",
|
|
17108
|
+
/** Guest is not attending the event. */
|
|
17123
17109
|
NO = "NO",
|
|
17110
|
+
/** Guest is in a waitlist. */
|
|
17124
17111
|
WAITLIST = "WAITLIST"
|
|
17125
17112
|
}
|
|
17126
17113
|
interface GuestList {
|
|
@@ -19270,6 +19257,7 @@ interface UpdateRsvp {
|
|
|
19270
19257
|
email?: string | null;
|
|
19271
19258
|
/** Event registration form. */
|
|
19272
19259
|
form?: FormResponse;
|
|
19260
|
+
/** RSVP response status. */
|
|
19273
19261
|
status?: RsvpStatus;
|
|
19274
19262
|
/**
|
|
19275
19263
|
* Total number of guests per 1 RSVP.
|
|
@@ -19749,9 +19737,11 @@ interface Location$1 {
|
|
|
19749
19737
|
locationTbd?: boolean | null;
|
|
19750
19738
|
}
|
|
19751
19739
|
declare enum LocationType$1 {
|
|
19752
|
-
/**
|
|
19740
|
+
/** Unknown location type. */
|
|
19753
19741
|
UNKNOWN_LOCATION = "UNKNOWN_LOCATION",
|
|
19742
|
+
/** Event is on-site at a specific physical location. */
|
|
19754
19743
|
VENUE = "VENUE",
|
|
19744
|
+
/** Event is online, such as a virtual video conference. */
|
|
19755
19745
|
ONLINE = "ONLINE"
|
|
19756
19746
|
}
|
|
19757
19747
|
/** Physical address */
|
|
@@ -19843,17 +19833,17 @@ interface DateAndTimeSettings$1 {
|
|
|
19843
19833
|
formatted?: Formatted$1;
|
|
19844
19834
|
}
|
|
19845
19835
|
declare enum RecurrenceStatusStatus$1 {
|
|
19846
|
-
/**
|
|
19836
|
+
/** Unknown recurrance status. */
|
|
19847
19837
|
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
19848
|
-
/** Event happens only once. */
|
|
19838
|
+
/** Event happens only once and can last multiple days. */
|
|
19849
19839
|
ONE_TIME = "ONE_TIME",
|
|
19850
|
-
/**
|
|
19840
|
+
/** A series of events that repeat. */
|
|
19851
19841
|
RECURRING = "RECURRING",
|
|
19852
|
-
/**
|
|
19842
|
+
/** Next event in a schedule of recurring events. */
|
|
19853
19843
|
RECURRING_UPCOMING = "RECURRING_UPCOMING",
|
|
19854
|
-
/** Latest ended
|
|
19844
|
+
/** Latest event that ended in a schedule of recurring events. */
|
|
19855
19845
|
RECURRING_RECENTLY_ENDED = "RECURRING_RECENTLY_ENDED",
|
|
19856
|
-
/** Latest
|
|
19846
|
+
/** Latest canceled event in a schedule of recurring events */
|
|
19857
19847
|
RECURRING_RECENTLY_CANCELED = "RECURRING_RECENTLY_CANCELED"
|
|
19858
19848
|
}
|
|
19859
19849
|
interface Recurrences$1 {
|
|
@@ -19918,7 +19908,7 @@ interface TimeDuration {
|
|
|
19918
19908
|
minutes?: number;
|
|
19919
19909
|
}
|
|
19920
19910
|
declare enum Status$1 {
|
|
19921
|
-
/**
|
|
19911
|
+
/** Unknown event status. */
|
|
19922
19912
|
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
19923
19913
|
/** Event is published and scheduled to start. */
|
|
19924
19914
|
UPCOMING = "UPCOMING",
|
|
@@ -19985,7 +19975,7 @@ interface Registration$1 {
|
|
|
19985
19975
|
registrationDisabled?: boolean;
|
|
19986
19976
|
}
|
|
19987
19977
|
declare enum RegistrationTypeType {
|
|
19988
|
-
/**
|
|
19978
|
+
/** Unknown registration type. */
|
|
19989
19979
|
UNKNOWN_REGISTRATION_TYPE = "UNKNOWN_REGISTRATION_TYPE",
|
|
19990
19980
|
/** Guests register by RSVPing to the event. */
|
|
19991
19981
|
RSVP = "RSVP",
|
|
@@ -20001,7 +19991,7 @@ declare enum RegistrationStatusStatus {
|
|
|
20001
19991
|
UNKNOWN_REGISTRATION_STATUS = "UNKNOWN_REGISTRATION_STATUS",
|
|
20002
19992
|
/** Registration is closed after tickets are sold out. */
|
|
20003
19993
|
CLOSED_AUTOMATICALLY = "CLOSED_AUTOMATICALLY",
|
|
20004
|
-
/** Registration is closed when the `registration.registrationDisabled` property is set to `true
|
|
19994
|
+
/** Registration is closed when the `registration.registrationDisabled` property is set to `true`. */
|
|
20005
19995
|
CLOSED_MANUALLY = "CLOSED_MANUALLY",
|
|
20006
19996
|
/** Guests can start RSVPing to the event. */
|
|
20007
19997
|
OPEN_RSVP = "OPEN_RSVP",
|
|
@@ -20027,11 +20017,11 @@ interface RsvpRegistration {
|
|
|
20027
20017
|
endDate?: Date | null;
|
|
20028
20018
|
}
|
|
20029
20019
|
declare enum ResponseType {
|
|
20030
|
-
/**
|
|
20020
|
+
/** Unknown response type. */
|
|
20031
20021
|
UNKNOWN_RESPONSE_TYPE = "UNKNOWN_RESPONSE_TYPE",
|
|
20032
|
-
/** Only a **Yes** answer is available
|
|
20022
|
+
/** Only a **Yes** answer is available to select when RSVP'ing to an event. */
|
|
20033
20023
|
YES_ONLY = "YES_ONLY",
|
|
20034
|
-
/** *Yes** and **No** answers are available
|
|
20024
|
+
/** *Yes** and **No** answers are available to select when RSVP'ing to an event. */
|
|
20035
20025
|
YES_AND_NO = "YES_AND_NO"
|
|
20036
20026
|
}
|
|
20037
20027
|
interface TicketsRegistration {
|
|
@@ -20092,12 +20082,13 @@ interface TaxSettings {
|
|
|
20092
20082
|
/** Apply tax to donations. */
|
|
20093
20083
|
appliedToDonations?: boolean | null;
|
|
20094
20084
|
}
|
|
20085
|
+
/** Tax application settings. */
|
|
20095
20086
|
declare enum TaxType$1 {
|
|
20096
|
-
/**
|
|
20087
|
+
/** Unknown tax type. */
|
|
20097
20088
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
20098
20089
|
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20099
20090
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
20100
|
-
/** Show the fee
|
|
20091
|
+
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
20101
20092
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
20102
20093
|
}
|
|
20103
20094
|
interface ExternalRegistration {
|
|
@@ -20105,7 +20096,7 @@ interface ExternalRegistration {
|
|
|
20105
20096
|
url?: string | null;
|
|
20106
20097
|
}
|
|
20107
20098
|
declare enum GuestTypeType {
|
|
20108
|
-
/**
|
|
20099
|
+
/** Unknown guest type. */
|
|
20109
20100
|
UNKNOWN_GUEST_TYPE = "UNKNOWN_GUEST_TYPE",
|
|
20110
20101
|
/** All site visitors can RSVP to the event. */
|
|
20111
20102
|
VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER",
|
|
@@ -20113,7 +20104,7 @@ declare enum GuestTypeType {
|
|
|
20113
20104
|
MEMBER = "MEMBER"
|
|
20114
20105
|
}
|
|
20115
20106
|
declare enum InitialRegistrationTypeType {
|
|
20116
|
-
/**
|
|
20107
|
+
/** Unknown initial registration type. */
|
|
20117
20108
|
UNKNOWN_INITIAL_REGISTRATION_TYPE = "UNKNOWN_INITIAL_REGISTRATION_TYPE",
|
|
20118
20109
|
/** Guests register by RSVPing to the event. */
|
|
20119
20110
|
RSVP = "RSVP",
|
|
@@ -20465,7 +20456,7 @@ interface OnlineConferencing$1 {
|
|
|
20465
20456
|
declare enum ConferenceTypeType {
|
|
20466
20457
|
/** Default value. This value is unused */
|
|
20467
20458
|
UNKNOWN_CONFERENCE_TYPE = "UNKNOWN_CONFERENCE_TYPE",
|
|
20468
|
-
/** Guests can do some actions during the conference, for example talk, turn on camera and show their screen. */
|
|
20459
|
+
/** Guests can do some actions during the conference, for example talk, turn on their camera and show their screen. */
|
|
20469
20460
|
MEETING = "MEETING",
|
|
20470
20461
|
/** Guests can only watch the conference. */
|
|
20471
20462
|
WEBINAR = "WEBINAR"
|
|
@@ -20705,44 +20696,33 @@ interface CreateEventRequest {
|
|
|
20705
20696
|
event: V3Event;
|
|
20706
20697
|
/** Whether to create the event as a draft. */
|
|
20707
20698
|
draft?: boolean;
|
|
20708
|
-
/**
|
|
20709
|
-
* Predefined sets of fields to return.
|
|
20710
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
20711
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
20712
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
20713
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
20714
|
-
* - `FORM`: Returns `form`.
|
|
20715
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
20716
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
20717
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
20718
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
20719
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
20720
|
-
*/
|
|
20699
|
+
/** Predefined sets of fields to return. */
|
|
20721
20700
|
fields?: RequestedFields[];
|
|
20722
20701
|
}
|
|
20723
20702
|
declare enum RequestedFields {
|
|
20703
|
+
/** Unknown requested field. */
|
|
20724
20704
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
20725
|
-
/**
|
|
20705
|
+
/** Returns `shortDescription`, `mainImage` and `calendarUrls`. */
|
|
20726
20706
|
DETAILS = "DETAILS",
|
|
20727
|
-
/**
|
|
20707
|
+
/** Returns `detailedDescription`. */
|
|
20728
20708
|
TEXTS = "TEXTS",
|
|
20729
|
-
/**
|
|
20709
|
+
/** Returns `registration`. */
|
|
20730
20710
|
REGISTRATION = "REGISTRATION",
|
|
20731
|
-
/**
|
|
20711
|
+
/** Returns `eventPageUrl`. */
|
|
20732
20712
|
URLS = "URLS",
|
|
20733
|
-
/**
|
|
20713
|
+
/** Returns `form`. */
|
|
20734
20714
|
FORM = "FORM",
|
|
20735
|
-
/**
|
|
20715
|
+
/** Returns `summaries`. */
|
|
20736
20716
|
DASHBOARD = "DASHBOARD",
|
|
20737
|
-
/**
|
|
20717
|
+
/** Returns `feed`. */
|
|
20738
20718
|
FEED = "FEED",
|
|
20739
|
-
/**
|
|
20719
|
+
/** Returns `onlineConferencing.session`. */
|
|
20740
20720
|
ONLINE_CONFERENCING_SESSION = "ONLINE_CONFERENCING_SESSION",
|
|
20741
|
-
/**
|
|
20721
|
+
/** Returns `seoSettings`. */
|
|
20742
20722
|
SEO_SETTINGS = "SEO_SETTINGS",
|
|
20743
|
-
/**
|
|
20723
|
+
/** Returns `agendaSettings`. */
|
|
20744
20724
|
AGENDA = "AGENDA",
|
|
20745
|
-
/**
|
|
20725
|
+
/** Returns `categories`. */
|
|
20746
20726
|
CATEGORIES = "CATEGORIES",
|
|
20747
20727
|
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
20748
20728
|
}
|
|
@@ -20757,19 +20737,7 @@ interface CloneEventRequest {
|
|
|
20757
20737
|
event?: V3Event;
|
|
20758
20738
|
/** Whether to clone the event as a draft. */
|
|
20759
20739
|
draft?: boolean;
|
|
20760
|
-
/**
|
|
20761
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
20762
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
20763
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
20764
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
20765
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
20766
|
-
* - `FORM`: Returns `form`.
|
|
20767
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
20768
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
20769
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
20770
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
20771
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
20772
|
-
*/
|
|
20740
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
20773
20741
|
fields?: RequestedFields[];
|
|
20774
20742
|
}
|
|
20775
20743
|
interface CloneEventResponse {
|
|
@@ -20779,19 +20747,7 @@ interface CloneEventResponse {
|
|
|
20779
20747
|
interface UpdateEventRequest {
|
|
20780
20748
|
/** Field values to be changed. */
|
|
20781
20749
|
event?: V3Event;
|
|
20782
|
-
/**
|
|
20783
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
20784
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
20785
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
20786
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
20787
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
20788
|
-
* - `FORM`: Returns `form`.
|
|
20789
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
20790
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
20791
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
20792
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
20793
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
20794
|
-
*/
|
|
20750
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
20795
20751
|
fields?: RequestedFields[];
|
|
20796
20752
|
}
|
|
20797
20753
|
interface UpdateEventResponse {
|
|
@@ -20801,19 +20757,7 @@ interface UpdateEventResponse {
|
|
|
20801
20757
|
interface PublishDraftEventRequest {
|
|
20802
20758
|
/** Event ID. */
|
|
20803
20759
|
eventId: string;
|
|
20804
|
-
/**
|
|
20805
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
20806
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
20807
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
20808
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
20809
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
20810
|
-
* - `FORM`: Returns `form`.
|
|
20811
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
20812
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
20813
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
20814
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
20815
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
20816
|
-
*/
|
|
20760
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
20817
20761
|
fields?: RequestedFields[];
|
|
20818
20762
|
}
|
|
20819
20763
|
interface PublishDraftEventResponse {
|
|
@@ -20823,19 +20767,7 @@ interface PublishDraftEventResponse {
|
|
|
20823
20767
|
interface CancelEventRequest {
|
|
20824
20768
|
/** Event ID. */
|
|
20825
20769
|
eventId: string;
|
|
20826
|
-
/**
|
|
20827
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
20828
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
20829
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
20830
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
20831
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
20832
|
-
* - `FORM`: Returns `form`.
|
|
20833
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
20834
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
20835
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
20836
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
20837
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
20838
|
-
*/
|
|
20770
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
20839
20771
|
fields?: RequestedFields[];
|
|
20840
20772
|
}
|
|
20841
20773
|
interface CancelEventResponse {
|
|
@@ -20908,19 +20840,7 @@ interface BulkDeleteEventsByFilterResponse {
|
|
|
20908
20840
|
interface QueryEventsRequest {
|
|
20909
20841
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
20910
20842
|
query?: CommonQueryV2;
|
|
20911
|
-
/**
|
|
20912
|
-
* Predefined sets of fields to return.
|
|
20913
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
20914
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
20915
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
20916
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
20917
|
-
* - `FORM`: Returns `form`.
|
|
20918
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
20919
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
20920
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
20921
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
20922
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
20923
|
-
*/
|
|
20843
|
+
/** Predefined sets of fields to return. */
|
|
20924
20844
|
fields?: RequestedFields[];
|
|
20925
20845
|
/**
|
|
20926
20846
|
* Whether draft events should be returned in the response. <br>
|
|
@@ -21067,10 +20987,7 @@ interface ListUserEventsRequest {
|
|
|
21067
20987
|
sort?: CommonSorting[];
|
|
21068
20988
|
/** Event status. */
|
|
21069
20989
|
status?: Status$1[];
|
|
21070
|
-
/**
|
|
21071
|
-
* Wix user filter, by default any.
|
|
21072
|
-
* Allows to filter events by user relation to the event among all wix sites.
|
|
21073
|
-
*/
|
|
20990
|
+
/** Allows to filter events by user relation to the event among all wix sites. */
|
|
21074
20991
|
userFilter?: UserFilter;
|
|
21075
20992
|
/**
|
|
21076
20993
|
* Filter facets to include in the response.
|
|
@@ -21081,14 +20998,11 @@ interface ListUserEventsRequest {
|
|
|
21081
20998
|
interface UserFilter {
|
|
21082
20999
|
/** User who is related to event */
|
|
21083
21000
|
userId?: string;
|
|
21084
|
-
/** Relation of user to event */
|
|
21001
|
+
/** Relation of user to event. */
|
|
21085
21002
|
relation?: Relation[];
|
|
21086
21003
|
}
|
|
21087
21004
|
declare enum Relation {
|
|
21088
|
-
/**
|
|
21089
|
-
* User is attending the event.
|
|
21090
|
-
* User has RSVP with status YES or has ordered tickets.
|
|
21091
|
-
*/
|
|
21005
|
+
/** User is attending the event. The user RSVP'd with status of `YES` or has ordered tickets. */
|
|
21092
21006
|
ATTENDING = "ATTENDING"
|
|
21093
21007
|
}
|
|
21094
21008
|
interface ListUserEventsResponse {
|
|
@@ -21104,19 +21018,7 @@ interface ListEventsByCategoryRequest {
|
|
|
21104
21018
|
categoryId?: string;
|
|
21105
21019
|
/** Paging options to limit and skip the number of items. */
|
|
21106
21020
|
paging?: CommonPaging;
|
|
21107
|
-
/**
|
|
21108
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
21109
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage`, and `calendarUrls`.
|
|
21110
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
21111
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
21112
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
21113
|
-
* - `FORM`: Returns `form`.
|
|
21114
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
21115
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
21116
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
21117
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
21118
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
21119
|
-
*/
|
|
21021
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
21120
21022
|
fields?: RequestedFields[];
|
|
21121
21023
|
}
|
|
21122
21024
|
interface ListEventsByCategoryResponse {
|
|
@@ -21128,19 +21030,6 @@ interface ListEventsByCategoryResponse {
|
|
|
21128
21030
|
interface GetEventRequest {
|
|
21129
21031
|
/** Event ID. */
|
|
21130
21032
|
eventId: string | null;
|
|
21131
|
-
/**
|
|
21132
|
-
* Predefined sets of fields to return.
|
|
21133
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
21134
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
21135
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
21136
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
21137
|
-
* - `FORM`: Returns `form`.
|
|
21138
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
21139
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
21140
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
21141
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
21142
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
21143
|
-
*/
|
|
21144
21033
|
fields?: RequestedFields[];
|
|
21145
21034
|
}
|
|
21146
21035
|
interface GetEventResponse {
|
|
@@ -21150,19 +21039,6 @@ interface GetEventResponse {
|
|
|
21150
21039
|
interface GetEventBySlugRequest {
|
|
21151
21040
|
/** URL slug. */
|
|
21152
21041
|
slug: string | null;
|
|
21153
|
-
/**
|
|
21154
|
-
* Predefined sets of fields to return.
|
|
21155
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
21156
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
21157
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
21158
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
21159
|
-
* - `FORM`: Returns `form`.
|
|
21160
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
21161
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
21162
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
21163
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
21164
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
21165
|
-
*/
|
|
21166
21042
|
fields?: RequestedFields[];
|
|
21167
21043
|
}
|
|
21168
21044
|
interface GetEventBySlugResponse {
|
|
@@ -21174,19 +21050,7 @@ interface FindEventRequest extends FindEventRequestFindByOneOf {
|
|
|
21174
21050
|
eventId?: string | null;
|
|
21175
21051
|
/** URL slug. */
|
|
21176
21052
|
slug?: string | null;
|
|
21177
|
-
/**
|
|
21178
|
-
* Predefined sets of fields to return.
|
|
21179
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
21180
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
21181
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
21182
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
21183
|
-
* - `FORM`: Returns `form`.
|
|
21184
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
21185
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
21186
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
21187
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
21188
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
21189
|
-
*/
|
|
21053
|
+
/** Predefined sets of fields to return. */
|
|
21190
21054
|
fields?: RequestedFields[];
|
|
21191
21055
|
}
|
|
21192
21056
|
/** @oneof */
|
|
@@ -22366,19 +22230,7 @@ interface EventCanceledEnvelope {
|
|
|
22366
22230
|
interface CreateEventOptions {
|
|
22367
22231
|
/** Whether to create the event as a draft. */
|
|
22368
22232
|
draft?: boolean;
|
|
22369
|
-
/**
|
|
22370
|
-
* Predefined sets of fields to return.
|
|
22371
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22372
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22373
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22374
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22375
|
-
* - `FORM`: Returns `form`.
|
|
22376
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22377
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22378
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22379
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22380
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22381
|
-
*/
|
|
22233
|
+
/** Predefined sets of fields to return. */
|
|
22382
22234
|
fields?: RequestedFields[];
|
|
22383
22235
|
}
|
|
22384
22236
|
interface CloneEventOptions {
|
|
@@ -22386,19 +22238,7 @@ interface CloneEventOptions {
|
|
|
22386
22238
|
event?: V3Event;
|
|
22387
22239
|
/** Whether to clone the event as a draft. */
|
|
22388
22240
|
draft?: boolean;
|
|
22389
|
-
/**
|
|
22390
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
22391
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22392
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22393
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22394
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22395
|
-
* - `FORM`: Returns `form`.
|
|
22396
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22397
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22398
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22399
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22400
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22401
|
-
*/
|
|
22241
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
22402
22242
|
fields?: RequestedFields[];
|
|
22403
22243
|
}
|
|
22404
22244
|
interface UpdateEventOptions {
|
|
@@ -22511,51 +22351,15 @@ interface UpdateEventOptions {
|
|
|
22511
22351
|
/** Visual settings for event. */
|
|
22512
22352
|
eventDisplaySettings?: V3EventDisplaySettings;
|
|
22513
22353
|
};
|
|
22514
|
-
/**
|
|
22515
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
22516
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22517
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22518
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22519
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22520
|
-
* - `FORM`: Returns `form`.
|
|
22521
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22522
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22523
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22524
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22525
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22526
|
-
*/
|
|
22354
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
22527
22355
|
fields?: RequestedFields[];
|
|
22528
22356
|
}
|
|
22529
22357
|
interface PublishDraftEventOptions {
|
|
22530
|
-
/**
|
|
22531
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
22532
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22533
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22534
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22535
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22536
|
-
* - `FORM`: Returns `form`.
|
|
22537
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22538
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22539
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22540
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22541
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22542
|
-
*/
|
|
22358
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
22543
22359
|
fields?: RequestedFields[];
|
|
22544
22360
|
}
|
|
22545
22361
|
interface CancelEventOptions {
|
|
22546
|
-
/**
|
|
22547
|
-
* Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned.
|
|
22548
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22549
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22550
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22551
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22552
|
-
* - `FORM`: Returns `form`.
|
|
22553
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22554
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22555
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22556
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22557
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22558
|
-
*/
|
|
22362
|
+
/** Predefined sets of fields to return. If both `fields` and `fieldsets` are sent in the request, the union of both lists is returned. */
|
|
22559
22363
|
fields?: RequestedFields[];
|
|
22560
22364
|
}
|
|
22561
22365
|
interface BulkCancelEventsByFilterOptions {
|
|
@@ -22567,19 +22371,7 @@ interface BulkDeleteEventsByFilterOptions {
|
|
|
22567
22371
|
filter?: CommonQueryV2;
|
|
22568
22372
|
}
|
|
22569
22373
|
interface QueryEventsOptions {
|
|
22570
|
-
/**
|
|
22571
|
-
* Predefined sets of fields to return.
|
|
22572
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22573
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22574
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22575
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22576
|
-
* - `FORM`: Returns `form`.
|
|
22577
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22578
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22579
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22580
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22581
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22582
|
-
*/
|
|
22374
|
+
/** Predefined sets of fields to return. */
|
|
22583
22375
|
fields?: RequestedFields[] | undefined;
|
|
22584
22376
|
/**
|
|
22585
22377
|
* Whether draft events should be returned in the response. <br>
|
|
@@ -22650,35 +22442,9 @@ interface CountEventsByStatusOptions {
|
|
|
22650
22442
|
includeDrafts?: boolean;
|
|
22651
22443
|
}
|
|
22652
22444
|
interface GetEventOptions {
|
|
22653
|
-
/**
|
|
22654
|
-
* Predefined sets of fields to return.
|
|
22655
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22656
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22657
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22658
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22659
|
-
* - `FORM`: Returns `form`.
|
|
22660
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22661
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22662
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22663
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22664
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22665
|
-
*/
|
|
22666
22445
|
fields?: RequestedFields[];
|
|
22667
22446
|
}
|
|
22668
22447
|
interface GetEventBySlugOptions {
|
|
22669
|
-
/**
|
|
22670
|
-
* Predefined sets of fields to return.
|
|
22671
|
-
* - `DETAILS`: Returns `shortDescription`, `mainImage` and `calendarUrls`.
|
|
22672
|
-
* - `TEXTS`: Returns `detailedDescription`.
|
|
22673
|
-
* - `REGISTRATION`: Returns `registration`.
|
|
22674
|
-
* - `URLS`: Returns `eventPageUrl`.
|
|
22675
|
-
* - `FORM`: Returns `form`.
|
|
22676
|
-
* - `DASHBOARD`: Returns `summaries`.
|
|
22677
|
-
* - `ONLINE_CONFERENCING_SESSION`: Returns `onlineConferencing.session`.
|
|
22678
|
-
* - `SEO_SETTINGS`: Returns `seoSettings`.
|
|
22679
|
-
* - `AGENDA`: Returns `agendaSettings`.
|
|
22680
|
-
* - `CATEGORIES`: Returns `categories`.
|
|
22681
|
-
*/
|
|
22682
22448
|
fields?: RequestedFields[];
|
|
22683
22449
|
}
|
|
22684
22450
|
|
|
@@ -23114,19 +22880,12 @@ interface TicketDefinition {
|
|
|
23114
22880
|
actualLimit?: number | null;
|
|
23115
22881
|
/** Ticket pricing method. */
|
|
23116
22882
|
pricingMethod?: PricingMethod;
|
|
23117
|
-
/**
|
|
23118
|
-
* Whether fee is included in the ticket price or customer pays it additionally at checkout. Possible values:
|
|
23119
|
-
* - `FEE_INCLUDED`: The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a service fee of $0.25 will be deducted from the price and you'll get $9.75.
|
|
23120
|
-
* - `FEE_ADDED_AT_CHECKOUT`: The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a service fee of $0.25 and will pay $10.25 in total.
|
|
23121
|
-
*/
|
|
22883
|
+
/** Whether fee is included in the ticket price or customer pays it additionally at checkout. */
|
|
23122
22884
|
feeType?: Type;
|
|
23123
22885
|
/** Ticket sale period. */
|
|
23124
22886
|
salePeriod?: SalePeriod;
|
|
23125
22887
|
/**
|
|
23126
|
-
* Ticket sale status.
|
|
23127
|
-
* - `SALE_SCHEDULED`: Tickets are not on sale yet.
|
|
23128
|
-
* - `SALE_STARTED`: Tickets are on sale.
|
|
23129
|
-
* - `SALE_ENDED`: Tickets are not on sale.
|
|
22888
|
+
* Ticket sale status.
|
|
23130
22889
|
* @readonly
|
|
23131
22890
|
*/
|
|
23132
22891
|
saleStatus?: SaleStatusEnumStatus;
|
|
@@ -23165,9 +22924,7 @@ interface PricingMethod extends PricingMethodPriceOneOf {
|
|
|
23165
22924
|
/** Sets of various ticket prices. For example, you can charge different prices for children and adults. */
|
|
23166
22925
|
pricingOptions?: PricingOptions;
|
|
23167
22926
|
/**
|
|
23168
|
-
* Ticket price type.
|
|
23169
|
-
* - `STANDARD`: All money goes to a seller. Applies to all ticket pricing methods except for `guestPrice`.
|
|
23170
|
-
* - `DONATION`: All collected money is a donation. This pricing type is automatically assigned when you select the `guestPrice` pricing method.
|
|
22927
|
+
* Ticket price type.
|
|
23171
22928
|
* @readonly
|
|
23172
22929
|
*/
|
|
23173
22930
|
pricingType?: PricingTypeEnumType;
|
|
@@ -23209,26 +22966,31 @@ interface OptionDetails {
|
|
|
23209
22966
|
price?: CommonMoney;
|
|
23210
22967
|
}
|
|
23211
22968
|
declare enum PricingTypeEnumType {
|
|
22969
|
+
/** Undefined pricing type. */
|
|
23212
22970
|
UNKNOWN_PRICING_TYPE = "UNKNOWN_PRICING_TYPE",
|
|
22971
|
+
/** All money goes to a seller. Applies to all ticket pricing methods except for `guestPrice`. */
|
|
23213
22972
|
STANDARD = "STANDARD",
|
|
22973
|
+
/** All collected money is a donation. This pricing type is automatically assigned when you select the `guestPrice` pricing method. */
|
|
23214
22974
|
DONATION = "DONATION"
|
|
23215
22975
|
}
|
|
23216
22976
|
declare enum Type {
|
|
22977
|
+
/** Unknown fee type. */
|
|
23217
22978
|
UNKNOWN_FEE_TYPE = "UNKNOWN_FEE_TYPE",
|
|
23218
|
-
/**
|
|
22979
|
+
/** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a service fee of $0.25 will be deducted from the price and you'll get $9.75. */
|
|
23219
22980
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
23220
|
-
/**
|
|
22981
|
+
/** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a service fee of $0.25 and will pay $10.25 in total. */
|
|
23221
22982
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT",
|
|
23222
|
-
/** Service fee is not collected
|
|
22983
|
+
/** Service fee is not collected. Available only for free tickets and legacy users. */
|
|
23223
22984
|
NO_FEE = "NO_FEE"
|
|
23224
22985
|
}
|
|
23225
22986
|
declare enum SaleStatusEnumStatus {
|
|
22987
|
+
/** Undefined sale status. */
|
|
23226
22988
|
UNKNOWN_SALE_STATUS = "UNKNOWN_SALE_STATUS",
|
|
23227
|
-
/**
|
|
22989
|
+
/** Tickets are not on sale yet. */
|
|
23228
22990
|
SALE_SCHEDULED = "SALE_SCHEDULED",
|
|
23229
|
-
/**
|
|
22991
|
+
/** Tickets are on sale. */
|
|
23230
22992
|
SALE_STARTED = "SALE_STARTED",
|
|
23231
|
-
/**
|
|
22993
|
+
/** Tickets are not on sale. */
|
|
23232
22994
|
SALE_ENDED = "SALE_ENDED"
|
|
23233
22995
|
}
|
|
23234
22996
|
interface SalesDetails {
|
|
@@ -23299,11 +23061,7 @@ interface EventDetails {
|
|
|
23299
23061
|
interface Location {
|
|
23300
23062
|
/** Location name. This value is displayed instead of the address when the location is defined as TBD by setting the `locationTbd` property to `true`. */
|
|
23301
23063
|
name?: string | null;
|
|
23302
|
-
/**
|
|
23303
|
-
* Location type. Possible values:
|
|
23304
|
-
* - `VENUE`: Event is on-site at a specific physical location.
|
|
23305
|
-
* - `ONLINE`: Event is online, such as a virtual video conference.
|
|
23306
|
-
*/
|
|
23064
|
+
/** Location type. */
|
|
23307
23065
|
type?: LocationType;
|
|
23308
23066
|
/** Exact location address. */
|
|
23309
23067
|
address?: CommonAddress;
|
|
@@ -23311,9 +23069,11 @@ interface Location {
|
|
|
23311
23069
|
locationTbd?: boolean | null;
|
|
23312
23070
|
}
|
|
23313
23071
|
declare enum LocationType {
|
|
23314
|
-
/**
|
|
23072
|
+
/** Unknown location type. */
|
|
23315
23073
|
UNKNOWN_LOCATION = "UNKNOWN_LOCATION",
|
|
23074
|
+
/** Event is on-site at a specific physical location. */
|
|
23316
23075
|
VENUE = "VENUE",
|
|
23076
|
+
/** Event is online, such as a virtual video conference. */
|
|
23317
23077
|
ONLINE = "ONLINE"
|
|
23318
23078
|
}
|
|
23319
23079
|
/** Physical address */
|
|
@@ -23389,12 +23149,7 @@ interface DateAndTimeSettings {
|
|
|
23389
23149
|
/** Whether the time zone is displayed in the formatted schedule. */
|
|
23390
23150
|
showTimeZone?: boolean | null;
|
|
23391
23151
|
/**
|
|
23392
|
-
* Repeating event status.
|
|
23393
|
-
* - `ONE_TIME`: Event happens only once and can last multiple days.
|
|
23394
|
-
* - `RECURRING`: A series of events that repeat.
|
|
23395
|
-
* - `RECURRING_UPCOMING`: Next event in a schedule of recurring events.
|
|
23396
|
-
* - `RECURRING_RECENTLY_ENDED`: Latest event that ended in a schedule of recurring events.
|
|
23397
|
-
* - `RECURRING_RECENTLY_CANCELED`: Latest canceled event tin a schedule of recurring events..
|
|
23152
|
+
* Repeating event status.
|
|
23398
23153
|
* @readonly
|
|
23399
23154
|
*/
|
|
23400
23155
|
recurrenceStatus?: RecurrenceStatusStatus;
|
|
@@ -23404,17 +23159,17 @@ interface DateAndTimeSettings {
|
|
|
23404
23159
|
formatted?: Formatted;
|
|
23405
23160
|
}
|
|
23406
23161
|
declare enum RecurrenceStatusStatus {
|
|
23407
|
-
/**
|
|
23162
|
+
/** Unknown recurrance status. */
|
|
23408
23163
|
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
23409
|
-
/** Event happens only once. */
|
|
23164
|
+
/** Event happens only once and can last multiple days. */
|
|
23410
23165
|
ONE_TIME = "ONE_TIME",
|
|
23411
|
-
/**
|
|
23166
|
+
/** A series of events that repeat. */
|
|
23412
23167
|
RECURRING = "RECURRING",
|
|
23413
|
-
/**
|
|
23168
|
+
/** Next event in a schedule of recurring events. */
|
|
23414
23169
|
RECURRING_UPCOMING = "RECURRING_UPCOMING",
|
|
23415
|
-
/** Latest ended
|
|
23170
|
+
/** Latest event that ended in a schedule of recurring events. */
|
|
23416
23171
|
RECURRING_RECENTLY_ENDED = "RECURRING_RECENTLY_ENDED",
|
|
23417
|
-
/** Latest
|
|
23172
|
+
/** Latest canceled event in a schedule of recurring events */
|
|
23418
23173
|
RECURRING_RECENTLY_CANCELED = "RECURRING_RECENTLY_CANCELED"
|
|
23419
23174
|
}
|
|
23420
23175
|
interface Recurrences {
|
|
@@ -23466,17 +23221,17 @@ interface Formatted {
|
|
|
23466
23221
|
endTime?: string | null;
|
|
23467
23222
|
}
|
|
23468
23223
|
declare enum Status {
|
|
23469
|
-
/**
|
|
23224
|
+
/** Unknown event status. */
|
|
23470
23225
|
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
23471
|
-
/** Event is
|
|
23226
|
+
/** Event is published and scheduled to start. */
|
|
23472
23227
|
UPCOMING = "UPCOMING",
|
|
23473
|
-
/** Event has started */
|
|
23228
|
+
/** Event has started. */
|
|
23474
23229
|
STARTED = "STARTED",
|
|
23475
|
-
/** Event has ended */
|
|
23230
|
+
/** Event has ended. */
|
|
23476
23231
|
ENDED = "ENDED",
|
|
23477
|
-
/** Event is canceled */
|
|
23232
|
+
/** Event is canceled. */
|
|
23478
23233
|
CANCELED = "CANCELED",
|
|
23479
|
-
/** Event is not public */
|
|
23234
|
+
/** Event is not public. */
|
|
23480
23235
|
DRAFT = "DRAFT"
|
|
23481
23236
|
}
|
|
23482
23237
|
interface SalePeriodUpdated {
|
|
@@ -23773,18 +23528,15 @@ interface ReservationCreated {
|
|
|
23773
23528
|
counts?: ReservationCount[];
|
|
23774
23529
|
}
|
|
23775
23530
|
declare enum ReservationStatus {
|
|
23776
|
-
/**
|
|
23777
|
-
* Reservation is pending confirmation.
|
|
23778
|
-
* The reservation will expire after the expiration due time.
|
|
23779
|
-
*/
|
|
23531
|
+
/** The Reservation is pending confirmation and will expire after the expiration due time. */
|
|
23780
23532
|
RESERVATION_PENDING = "RESERVATION_PENDING",
|
|
23781
|
-
/** The reservation
|
|
23533
|
+
/** The reservation is confirmed and will not expire. */
|
|
23782
23534
|
RESERVATION_CONFIRMED = "RESERVATION_CONFIRMED",
|
|
23783
|
-
/** The reservation
|
|
23535
|
+
/** The reservation is canceled because of non payment. */
|
|
23784
23536
|
RESERVATION_CANCELED = "RESERVATION_CANCELED",
|
|
23785
|
-
/** The reservation
|
|
23537
|
+
/** The reservation is canceled manually by the buyer. */
|
|
23786
23538
|
RESERVATION_CANCELED_MANUALLY = "RESERVATION_CANCELED_MANUALLY",
|
|
23787
|
-
/** The reservation
|
|
23539
|
+
/** The reservation is expired. */
|
|
23788
23540
|
RESERVATION_EXPIRED = "RESERVATION_EXPIRED"
|
|
23789
23541
|
}
|
|
23790
23542
|
interface TicketQuantity {
|
|
@@ -23841,17 +23593,15 @@ interface EventDeleted {
|
|
|
23841
23593
|
interface CreateTicketDefinitionRequest {
|
|
23842
23594
|
/** Ticket definition info. */
|
|
23843
23595
|
ticketDefinition: TicketDefinition;
|
|
23844
|
-
/**
|
|
23845
|
-
* Predefined sets of fields to return.
|
|
23846
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
23847
|
-
*/
|
|
23596
|
+
/** Predefined sets of fields to return. */
|
|
23848
23597
|
fields?: Field[];
|
|
23849
23598
|
}
|
|
23850
23599
|
declare enum Field {
|
|
23600
|
+
/** Unknown requested field. */
|
|
23851
23601
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
23852
|
-
/**
|
|
23602
|
+
/** Returns `salesDetails` in the response. */
|
|
23853
23603
|
SALES_DETAILS = "SALES_DETAILS",
|
|
23854
|
-
/**
|
|
23604
|
+
/** Returns `eventDetails` in the response. */
|
|
23855
23605
|
EVENT_DETAILS = "EVENT_DETAILS"
|
|
23856
23606
|
}
|
|
23857
23607
|
interface CreateTicketDefinitionResponse {
|
|
@@ -23861,10 +23611,7 @@ interface CreateTicketDefinitionResponse {
|
|
|
23861
23611
|
interface UpdateTicketDefinitionRequest {
|
|
23862
23612
|
/** Ticket definition to update. */
|
|
23863
23613
|
ticketDefinition: TicketDefinition;
|
|
23864
|
-
/**
|
|
23865
|
-
* Predefined sets of fields to return.
|
|
23866
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
23867
|
-
*/
|
|
23614
|
+
/** Predefined sets of fields to return. */
|
|
23868
23615
|
fields?: Field[];
|
|
23869
23616
|
}
|
|
23870
23617
|
interface UpdateTicketDefinitionResponse {
|
|
@@ -23874,10 +23621,7 @@ interface UpdateTicketDefinitionResponse {
|
|
|
23874
23621
|
interface GetTicketDefinitionRequest {
|
|
23875
23622
|
/** Ticket definition ID. */
|
|
23876
23623
|
ticketDefinitionId: string;
|
|
23877
|
-
/**
|
|
23878
|
-
* Predefined sets of fields to return.
|
|
23879
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
23880
|
-
*/
|
|
23624
|
+
/** Predefined sets of fields to return. */
|
|
23881
23625
|
fields?: Field[];
|
|
23882
23626
|
}
|
|
23883
23627
|
interface GetTicketDefinitionResponse {
|
|
@@ -23926,10 +23670,7 @@ interface UpdateTicketDefinitionSortIndexResponse {
|
|
|
23926
23670
|
interface QueryTicketDefinitionsRequest {
|
|
23927
23671
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
23928
23672
|
query: QueryV2;
|
|
23929
|
-
/**
|
|
23930
|
-
* Predefined sets of fields to return.
|
|
23931
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
23932
|
-
*/
|
|
23673
|
+
/** Predefined sets of fields to return. */
|
|
23933
23674
|
fields?: Field[];
|
|
23934
23675
|
}
|
|
23935
23676
|
interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
@@ -24003,10 +23744,7 @@ interface Cursors {
|
|
|
24003
23744
|
interface QueryAvailableTicketDefinitionsRequest {
|
|
24004
23745
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
24005
23746
|
query: QueryV2;
|
|
24006
|
-
/**
|
|
24007
|
-
* Predefined sets of fields to return.
|
|
24008
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
24009
|
-
*/
|
|
23747
|
+
/** Predefined sets of fields to return. */
|
|
24010
23748
|
fields?: Field[];
|
|
24011
23749
|
}
|
|
24012
23750
|
interface QueryAvailableTicketDefinitionsResponse {
|
|
@@ -25488,10 +25226,7 @@ interface TicketDefinitionSaleEndedEnvelope {
|
|
|
25488
25226
|
metadata: EventMetadata;
|
|
25489
25227
|
}
|
|
25490
25228
|
interface CreateTicketDefinitionOptions {
|
|
25491
|
-
/**
|
|
25492
|
-
* Predefined sets of fields to return.
|
|
25493
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
25494
|
-
*/
|
|
25229
|
+
/** Predefined sets of fields to return. */
|
|
25495
25230
|
fields?: Field[];
|
|
25496
25231
|
}
|
|
25497
25232
|
interface UpdateTicketDefinition {
|
|
@@ -25539,19 +25274,12 @@ interface UpdateTicketDefinition {
|
|
|
25539
25274
|
actualLimit?: number | null;
|
|
25540
25275
|
/** Ticket pricing method. */
|
|
25541
25276
|
pricingMethod?: PricingMethod;
|
|
25542
|
-
/**
|
|
25543
|
-
* Whether fee is included in the ticket price or customer pays it additionally at checkout. Possible values:
|
|
25544
|
-
* - `FEE_INCLUDED`: The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a service fee of $0.25 will be deducted from the price and you'll get $9.75.
|
|
25545
|
-
* - `FEE_ADDED_AT_CHECKOUT`: The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a service fee of $0.25 and will pay $10.25 in total.
|
|
25546
|
-
*/
|
|
25277
|
+
/** Whether fee is included in the ticket price or customer pays it additionally at checkout. */
|
|
25547
25278
|
feeType?: Type;
|
|
25548
25279
|
/** Ticket sale period. */
|
|
25549
25280
|
salePeriod?: SalePeriod;
|
|
25550
25281
|
/**
|
|
25551
|
-
* Ticket sale status.
|
|
25552
|
-
* - `SALE_SCHEDULED`: Tickets are not on sale yet.
|
|
25553
|
-
* - `SALE_STARTED`: Tickets are on sale.
|
|
25554
|
-
* - `SALE_ENDED`: Tickets are not on sale.
|
|
25282
|
+
* Ticket sale status.
|
|
25555
25283
|
* @readonly
|
|
25556
25284
|
*/
|
|
25557
25285
|
saleStatus?: SaleStatusEnumStatus;
|
|
@@ -25575,17 +25303,11 @@ interface UpdateTicketDefinition {
|
|
|
25575
25303
|
eventDetails?: EventDetails;
|
|
25576
25304
|
}
|
|
25577
25305
|
interface UpdateTicketDefinitionOptions {
|
|
25578
|
-
/**
|
|
25579
|
-
* Predefined sets of fields to return.
|
|
25580
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
25581
|
-
*/
|
|
25306
|
+
/** Predefined sets of fields to return. */
|
|
25582
25307
|
fields?: Field[];
|
|
25583
25308
|
}
|
|
25584
25309
|
interface GetTicketDefinitionOptions {
|
|
25585
|
-
/**
|
|
25586
|
-
* Predefined sets of fields to return.
|
|
25587
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
25588
|
-
*/
|
|
25310
|
+
/** Predefined sets of fields to return. */
|
|
25589
25311
|
fields?: Field[];
|
|
25590
25312
|
}
|
|
25591
25313
|
interface ReorderTicketDefinitionsOptions extends ReorderTicketDefinitionsRequestReferenceDefinitionOneOf {
|
|
@@ -25597,10 +25319,7 @@ interface ReorderTicketDefinitionsOptions extends ReorderTicketDefinitionsReques
|
|
|
25597
25319
|
afterDefinitionId?: string;
|
|
25598
25320
|
}
|
|
25599
25321
|
interface QueryTicketDefinitionsOptions {
|
|
25600
|
-
/**
|
|
25601
|
-
* Predefined sets of fields to return.
|
|
25602
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
25603
|
-
*/
|
|
25322
|
+
/** Predefined sets of fields to return. */
|
|
25604
25323
|
fields?: Field[] | undefined;
|
|
25605
25324
|
}
|
|
25606
25325
|
interface QueryCursorResult {
|
|
@@ -25654,10 +25373,7 @@ interface TicketDefinitionsQueryBuilder {
|
|
|
25654
25373
|
find: () => Promise<TicketDefinitionsQueryResult>;
|
|
25655
25374
|
}
|
|
25656
25375
|
interface QueryAvailableTicketDefinitionsOptions {
|
|
25657
|
-
/**
|
|
25658
|
-
* Predefined sets of fields to return.
|
|
25659
|
-
* - `SALES_DETAILS`: Returns `salesDetails`.
|
|
25660
|
-
*/
|
|
25376
|
+
/** Predefined sets of fields to return. */
|
|
25661
25377
|
fields?: Field[];
|
|
25662
25378
|
}
|
|
25663
25379
|
interface CountTicketDefinitionsOptions {
|