@wix/auto_sdk_events_guests 1.0.21 → 1.0.23

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.
@@ -155,24 +155,24 @@ interface GuestDetails {
155
155
  }
156
156
  interface FormResponse {
157
157
  /**
158
- * Input values entered when filling the form.
158
+ * Form field inputs.
159
159
  * @maxSize 200
160
160
  */
161
161
  inputValues?: InputValue[];
162
162
  }
163
163
  interface InputValue {
164
164
  /**
165
- * Input field name.
165
+ * Form field input name.
166
166
  * @maxLength 100
167
167
  */
168
168
  inputName?: string;
169
169
  /**
170
- * Text entered into the input field.
170
+ * Form field value.
171
171
  * @maxLength 5000
172
172
  */
173
173
  value?: string;
174
174
  /**
175
- * Multiple input values. For example, the array is filled if several checkboxes are ticked.
175
+ * Form field values.
176
176
  * @maxSize 100
177
177
  * @maxLength 5000
178
178
  */
@@ -180,11 +180,11 @@ interface InputValue {
180
180
  }
181
181
  interface FormattedAddress {
182
182
  /**
183
- * One line address representation.
183
+ * 1-line address representation.
184
184
  * @maxLength 200
185
185
  */
186
186
  formatted?: string;
187
- /** Address components (optional). */
187
+ /** Address components. */
188
188
  address?: Address;
189
189
  }
190
190
  /** Physical address */
@@ -247,6 +247,8 @@ declare enum SubdivisionType {
247
247
  /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
248
248
  COUNTRY = "COUNTRY"
249
249
  }
250
+ /** @enumType */
251
+ 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';
250
252
  /** Subdivision Concordance values */
251
253
  interface StandardDetails {
252
254
  /**
@@ -527,6 +529,8 @@ declare enum SubdivisionSubdivisionType {
527
529
  /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
528
530
  COUNTRY = "COUNTRY"
529
531
  }
532
+ /** @enumType */
533
+ 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';
530
534
  interface DateAndTimeSettings {
531
535
  /** Whether the event date and time are TBD. */
532
536
  dateAndTimeTbd?: boolean | null;
@@ -718,7 +722,7 @@ interface OrderDetails {
718
722
  invoice?: Invoice;
719
723
  }
720
724
  declare enum OrderStatus {
721
- /** Order status is not available for this request fieldset. */
725
+ /** Order status isn't available for this request fieldset. */
722
726
  NA_ORDER_STATUS = "NA_ORDER_STATUS",
723
727
  /** Order is confirmed, no payment is required. */
724
728
  FREE = "FREE",
@@ -726,9 +730,9 @@ declare enum OrderStatus {
726
730
  PENDING = "PENDING",
727
731
  /** Order is paid. */
728
732
  PAID = "PAID",
729
- /** Order is confirmed but has be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
733
+ /** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
730
734
  OFFLINE_PENDING = "OFFLINE_PENDING",
731
- /** Order is awaiting for payment at the cashier. */
735
+ /** Order is waiting for payment at the cashier. */
732
736
  INITIATED = "INITIATED",
733
737
  /** Order is canceled. */
734
738
  CANCELED = "CANCELED",
@@ -760,8 +764,8 @@ interface Invoice {
760
764
  * Total amount of a cart after discount, tax, and fees.
761
765
  * Grand total is calculated in the following order:
762
766
  * 1. Total prices of all items in the cart are calculated.
763
- * 2. Discount is subtracted from the cart (if applicable).
764
- * 3. Tax is added (if applicable).
767
+ * 2. Discount is subtracted from the cart, if applicable.
768
+ * 3. Tax is added, if applicable.
765
769
  * 4. Wix ticket service fee is added.
766
770
  */
767
771
  grandTotal?: Money;
@@ -770,7 +774,7 @@ interface Invoice {
770
774
  * @readonly
771
775
  */
772
776
  fees?: Fee[];
773
- /** Total revenue, excluding fees. (Taxes and payment provider fees are not deducted). */
777
+ /** Total revenue, excluding fees. Taxes and payment provider fees aren't deducted. */
774
778
  revenue?: Money;
775
779
  /** Invoice preview URL. Only returned if the order is paid. */
776
780
  previewUrl?: string | null;
@@ -811,7 +815,7 @@ interface Money {
811
815
  */
812
816
  amount?: string;
813
817
  /**
814
- * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
818
+ * 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
815
819
  * @format CURRENCY
816
820
  */
817
821
  currency?: string;
@@ -1352,7 +1356,7 @@ interface Ticket {
1352
1356
  canceled?: boolean | null;
1353
1357
  }
1354
1358
  interface CheckIn {
1355
- /** Time of check-in. */
1359
+ /** Time of a ticket's check-in. */
1356
1360
  created?: Date | null;
1357
1361
  }
1358
1362
  /** Triggered when an order is updated. */
@@ -1614,30 +1618,184 @@ interface GuestCreatedEnvelope {
1614
1618
  entity: EventGuest;
1615
1619
  metadata: EventMetadata;
1616
1620
  }
1621
+ /**
1622
+ * Triggered when a guest is created.
1623
+ * @permissionScope Read Events - all read permissions
1624
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
1625
+ * @permissionScope Manage Events - all permissions
1626
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
1627
+ * @permissionScope Manage Events
1628
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
1629
+ * @permissionScope Manage Guest List
1630
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
1631
+ * @permissionScope Read Event Tickets and Guest List
1632
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-GUEST-LIST
1633
+ * @permissionId WIX_EVENTS.READ_GUESTS_DETAILS
1634
+ * @webhook
1635
+ * @eventType wix.events.guests.v1.guest_created
1636
+ * @slug created
1637
+ */
1638
+ declare function onGuestCreated(handler: (event: GuestCreatedEnvelope) => void | Promise<void>): void;
1617
1639
  interface GuestDeletedEnvelope {
1618
1640
  entity: EventGuest;
1619
1641
  metadata: EventMetadata;
1620
1642
  }
1643
+ /**
1644
+ * Triggered when a guest is deleted.
1645
+ * @permissionScope Read Events - all read permissions
1646
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
1647
+ * @permissionScope Manage Events - all permissions
1648
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
1649
+ * @permissionScope Manage Events
1650
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
1651
+ * @permissionScope Manage Guest List
1652
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
1653
+ * @permissionScope Read Event Tickets and Guest List
1654
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-GUEST-LIST
1655
+ * @permissionId WIX_EVENTS.READ_GUESTS_DETAILS
1656
+ * @webhook
1657
+ * @eventType wix.events.guests.v1.guest_deleted
1658
+ * @slug deleted
1659
+ */
1660
+ declare function onGuestDeleted(handler: (event: GuestDeletedEnvelope) => void | Promise<void>): void;
1621
1661
  interface GuestCheckedInEnvelope {
1622
1662
  data: GuestCheckedIn;
1623
1663
  metadata: EventMetadata;
1624
1664
  }
1665
+ /**
1666
+ * Triggered when a guest has checked in.
1667
+ * @permissionScope Read Events - all read permissions
1668
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
1669
+ * @permissionScope Manage Events - all permissions
1670
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
1671
+ * @permissionScope Manage Events
1672
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
1673
+ * @permissionScope Manage Guest List
1674
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
1675
+ * @permissionScope Read Event Tickets and Guest List
1676
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-GUEST-LIST
1677
+ * @permissionId WIX_EVENTS.READ_GUESTS_DETAILS
1678
+ * @webhook
1679
+ * @eventType wix.events.guests.v1.guest_guest_checked_in
1680
+ * @slug guest_checked_in
1681
+ */
1682
+ declare function onGuestCheckedIn(handler: (event: GuestCheckedInEnvelope) => void | Promise<void>): void;
1625
1683
  interface GuestEventCanceledEnvelope {
1626
1684
  data: GuestEventCanceled;
1627
1685
  metadata: EventMetadata;
1628
1686
  }
1687
+ /**
1688
+ * Triggered when an event is canceled.
1689
+ * @permissionScope Read Events - all read permissions
1690
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
1691
+ * @permissionScope Manage Events - all permissions
1692
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
1693
+ * @permissionScope Manage Events
1694
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
1695
+ * @permissionScope Manage Guest List
1696
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
1697
+ * @permissionScope Read Event Tickets and Guest List
1698
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-GUEST-LIST
1699
+ * @permissionId WIX_EVENTS.READ_GUESTS_DETAILS
1700
+ * @webhook
1701
+ * @eventType wix.events.guests.v1.guest_guest_event_canceled
1702
+ * @slug guest_event_canceled
1703
+ */
1704
+ declare function onGuestEventCanceled(handler: (event: GuestEventCanceledEnvelope) => void | Promise<void>): void;
1629
1705
  interface GuestEventStartsEnvelope {
1630
1706
  data: GuestEventStarts;
1631
1707
  metadata: EventMetadata;
1632
1708
  }
1709
+ /**
1710
+ * Triggered when an event has started.
1711
+ * @permissionScope Read Events - all read permissions
1712
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
1713
+ * @permissionScope Manage Events - all permissions
1714
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
1715
+ * @permissionScope Manage Events
1716
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
1717
+ * @permissionScope Manage Guest List
1718
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
1719
+ * @permissionScope Read Event Tickets and Guest List
1720
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-GUEST-LIST
1721
+ * @permissionId WIX_EVENTS.READ_GUESTS_DETAILS
1722
+ * @webhook
1723
+ * @eventType wix.events.guests.v1.guest_guest_event_starts
1724
+ * @slug guest_event_starts
1725
+ */
1726
+ declare function onGuestEventStarts(handler: (event: GuestEventStartsEnvelope) => void | Promise<void>): void;
1633
1727
  interface GuestOrderCanceledEnvelope {
1634
1728
  data: GuestOrderCanceled;
1635
1729
  metadata: EventMetadata;
1636
1730
  }
1731
+ /**
1732
+ * Triggered when a ticket order is canceled.
1733
+ * @permissionScope Read Events - all read permissions
1734
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
1735
+ * @permissionScope Manage Events - all permissions
1736
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
1737
+ * @permissionScope Manage Events
1738
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
1739
+ * @permissionScope Manage Guest List
1740
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
1741
+ * @permissionScope Read Event Tickets and Guest List
1742
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-GUEST-LIST
1743
+ * @permissionId WIX_EVENTS.READ_GUESTS_DETAILS
1744
+ * @webhook
1745
+ * @eventType wix.events.guests.v1.guest_guest_order_canceled
1746
+ * @slug guest_order_canceled
1747
+ */
1748
+ declare function onGuestOrderCanceled(handler: (event: GuestOrderCanceledEnvelope) => void | Promise<void>): void;
1637
1749
  interface GuestUpdatedEnvelope {
1638
1750
  entity: EventGuest;
1639
1751
  metadata: EventMetadata;
1640
1752
  }
1753
+ /**
1754
+ * Triggered when a guest is updated.
1755
+ *
1756
+ * This event always triggers together with the Guest Created and the Guest Deleted events.
1757
+ * > **Note:** Since this event may trigger twice, you should explicitly add code to ensure that the parts of your code that depend on this event run only once.
1758
+ * @permissionScope Read Events - all read permissions
1759
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
1760
+ * @permissionScope Manage Events - all permissions
1761
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
1762
+ * @permissionScope Manage Events
1763
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
1764
+ * @permissionScope Manage Guest List
1765
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
1766
+ * @permissionScope Read Event Tickets and Guest List
1767
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-GUEST-LIST
1768
+ * @permissionId WIX_EVENTS.READ_GUESTS_DETAILS
1769
+ * @webhook
1770
+ * @eventType wix.events.guests.v1.guest_updated
1771
+ * @slug updated
1772
+ */
1773
+ declare function onGuestUpdated(handler: (event: GuestUpdatedEnvelope) => void | Promise<void>): void;
1774
+ /**
1775
+ * Creates a query to retrieve a list of guests.
1776
+ *
1777
+ *
1778
+ * The `queryGuests()` method builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://dev.wix.com/docs/sdk/backend-modules/events/guests/guests-query-builder/ascending) object.
1779
+ *
1780
+ * The returned object contains the query definition which is typically used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/events/guests/guests-query-builder/find) method.
1781
+ *
1782
+ * You can refine the query by chaining `GuestsQueryBuilder` methods onto the query. `GuestsQueryBuilder` methods enable you to sort, filter, and control the results that `queryGuests.find()` returns.
1783
+ *
1784
+ * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
1785
+ *
1786
+ * - [`skipTo(0)`](https://dev.wix.com/docs/sdk/backend-modules/events/guests/guests-query-builder/skip-to)
1787
+ * - [`limit(50)`](https://dev.wix.com/docs/sdk/backend-modules/events/guests/guests-query-builder/limit)
1788
+ * - [`descending("_createdDate")`](https://dev.wix.com/docs/sdk/backend-modules/events/guests/guests-query-builder/descending)
1789
+ *
1790
+ * The methods that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
1791
+ *
1792
+ * The table below shows which `GuestsQueryBuilder` methods are supported for `queryGuests()`. You can only use one filter method for each property. Only the first filter will work if a property is used in more than one filter.
1793
+ * @public
1794
+ * @permissionId WIX_EVENTS.READ_GUESTS
1795
+ * @applicableIdentity APP
1796
+ * @fqn wix.events.guests.v1.EventGuestsService.QueryEventGuests
1797
+ */
1798
+ declare function queryGuests(options?: QueryEventGuestsOptions): GuestsQueryBuilder;
1641
1799
  interface QueryEventGuestsOptions {
1642
1800
  /**
1643
1801
  * Predefined sets of fields to return.
@@ -1696,4 +1854,4 @@ interface GuestsQueryBuilder {
1696
1854
  find: () => Promise<GuestsQueryResult>;
1697
1855
  }
1698
1856
 
1699
- export { type CommonAddressLocation as $, AttendanceStatus as A, type AddressLocation as B, type Subdivision as C, type StandardDetails as D, EventType as E, FeeName as F, type GuestsQueryBuilder as G, type GuestCountUpdated as H, type InputValue as I, type GuestCountUpdate as J, type MemberEventStatusUpdated as K, LocationType as L, MemberEventStatusUpdatedEventType as M, NotifyActionType as N, OrderStatus as O, type ContactEventStatusUpdated as P, type QueryEventGuestsOptions as Q, RecurrenceStatusStatus as R, SubdivisionType as S, Timing as T, type GuestCheckedIn as U, type EventDetails as V, WebhookIdentityType as W, type Location as X, type CommonAddress as Y, type CommonAddressStreetOneOf as Z, type CommonStreetAddress as _, type GuestCreatedEnvelope as a, type BaseEventMetadata as a$, type CommonSubdivision as a0, type DateAndTimeSettings as a1, type Recurrences as a2, type Occurrence as a3, type Formatted as a4, type NotifyGuestAction as a5, type TaskContext as a6, type OrderDetails as a7, type Invoice as a8, type Item as a9, type Sorting as aA, type Paging as aB, type CursorPaging as aC, type QueryEventGuestsResponse as aD, type PagingMetadataV2 as aE, type Cursors as aF, type StreamEventGuestsRequest as aG, type Empty as aH, type SecondaryLanguagesRequest as aI, type SecondaryLanguagesResponse as aJ, type Language as aK, type OrderConfirmed as aL, type Ticket as aM, type CheckIn as aN, type OrderUpdated as aO, type OrderDeleted as aP, type EventDeleted as aQ, type Task as aR, type TaskKey as aS, type ListGuestListPreviewsRequest as aT, type ListGuestListPreviewsResponse as aU, type GuestListPreview as aV, type GuestCount as aW, type MemberGuests as aX, type MemberGuest as aY, type UpdateGuestRequest as aZ, type UpdateGuestResponse as a_, type Money as aa, type Discount as ab, type DiscountItem as ac, type DiscountItemDiscountOneOf as ad, type CouponDiscount as ae, type PaidPlanDiscount as af, type PaidPlanDiscountDiscountOneOf as ag, type PercentDiscount as ah, type Tax as ai, type Fee as aj, type GuestEventCanceled as ak, type GuestEventStarts as al, type GuestOrderCanceled as am, type DomainEvent as an, type DomainEventBodyOneOf as ao, type EntityCreatedEvent as ap, type RestoreInfo as aq, type EntityUpdatedEvent as ar, type EntityDeletedEvent as as, type ActionEvent as at, type MessageEnvelope as au, type IdentificationData as av, type IdentificationDataIdOneOf as aw, type QueryEventGuestsRequest as ax, type QueryV2 as ay, type QueryV2PagingMethodOneOf as az, type GuestDeletedEnvelope as b, type EventMetadata as b0, type GuestsQueryResult as b1, type GuestCheckedInEnvelope as c, type GuestEventCanceledEnvelope as d, type GuestEventStartsEnvelope as e, type GuestOrderCanceledEnvelope as f, type GuestUpdatedEnvelope as g, GuestType as h, SubdivisionSubdivisionType as i, Status as j, TaxType as k, FeeType as l, SortOrder as m, RequestedFieldsEnumRequestedFields as n, OrderType as o, RequestedFields as p, type EventGuest as q, type TicketDetails as r, type TicketGuestDetails as s, type OnlineConferencingLogin as t, type GuestDetails as u, type FormResponse as v, type FormattedAddress as w, type Address as x, type AddressStreetOneOf as y, type StreetAddress as z };
1857
+ export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, AttendanceStatus, type AttendanceStatusWithLiterals, type BaseEventMetadata, type CheckIn, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonStreetAddress, type CommonSubdivision, type ContactEventStatusUpdated, type CouponDiscount, type CursorPaging, type Cursors, type DateAndTimeSettings, type Discount, type DiscountItem, type DiscountItemDiscountOneOf, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventDeleted, type EventDetails, type EventGuest, type EventMetadata, EventType, type EventTypeWithLiterals, type Fee, FeeName, type FeeNameWithLiterals, FeeType, type FeeTypeWithLiterals, type FormResponse, type Formatted, type FormattedAddress, type GuestCheckedIn, type GuestCheckedInEnvelope, type GuestCount, type GuestCountUpdate, type GuestCountUpdated, type GuestCreatedEnvelope, type GuestDeletedEnvelope, type GuestDetails, type GuestEventCanceled, type GuestEventCanceledEnvelope, type GuestEventStarts, type GuestEventStartsEnvelope, type GuestListPreview, type GuestOrderCanceled, type GuestOrderCanceledEnvelope, GuestType, type GuestTypeWithLiterals, type GuestUpdatedEnvelope, type GuestsQueryBuilder, type GuestsQueryResult, type IdentificationData, type IdentificationDataIdOneOf, type InputValue, type Invoice, type Item, type Language, type ListGuestListPreviewsRequest, type ListGuestListPreviewsResponse, type Location, LocationType, type LocationTypeWithLiterals, type MemberEventStatusUpdated, MemberEventStatusUpdatedEventType, type MemberEventStatusUpdatedEventTypeWithLiterals, type MemberGuest, type MemberGuests, type MessageEnvelope, type Money, NotifyActionType, type NotifyActionTypeWithLiterals, type NotifyGuestAction, type Occurrence, type OnlineConferencingLogin, type OrderConfirmed, type OrderDeleted, type OrderDetails, OrderStatus, type OrderStatusWithLiterals, OrderType, type OrderTypeWithLiterals, type OrderUpdated, type Paging, type PagingMetadataV2, type PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf, type PercentDiscount, type QueryEventGuestsOptions, type QueryEventGuestsRequest, type QueryEventGuestsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, RequestedFields, RequestedFieldsEnumRequestedFields, type RequestedFieldsEnumRequestedFieldsWithLiterals, type RequestedFieldsWithLiterals, type RestoreInfo, type SecondaryLanguagesRequest, type SecondaryLanguagesResponse, SortOrder, type SortOrderWithLiterals, type Sorting, type StandardDetails, Status, type StatusWithLiterals, type StreamEventGuestsRequest, type StreetAddress, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type Task, type TaskContext, type TaskKey, type Tax, TaxType, type TaxTypeWithLiterals, type Ticket, type TicketDetails, type TicketGuestDetails, Timing, type TimingWithLiterals, type UpdateGuestRequest, type UpdateGuestResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, onGuestCheckedIn, onGuestCreated, onGuestDeleted, onGuestEventCanceled, onGuestEventStarts, onGuestOrderCanceled, onGuestUpdated, queryGuests };