@seatlayer/js 0.52.0 → 0.53.0

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/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { PickerSeat, RendererViewMode, SeatHoverDetails, PickerTransport, PickerMapTheme } from '@seatlayer/core';
2
2
  export { ExpandedSeat, PickerMapTheme, RendererViewMode, SeatHoverDetails } from '@seatlayer/core';
3
- export { AccessIntentForbidsDetails, AccessLinkRecord, AccessLinkReveal, AccessLinkState, AccessLinkStatus, AccessLinkStatusRecord, ArchiveBlockedDetails, AssignmentBuckets, AssignmentDropDetails, AssignmentResult, BucketRow, ChannelAccessIntent, ChannelAccessSummary, ChannelAllocationPage, ChannelAttribution, ChannelAuditEntry, ChannelAuditPage, ChannelCounts, ChannelListResult, ChannelPreviewProjection, ChannelRecord, ChannelReport, ChannelReportLinkRecord, ChannelReportLinkReveal, ChannelReportResult, ChannelReportRow, ChannelSeatStatus, ChannelState, ChannelsCapabilities, ChannelsClient, ChannelsMode, ChannelsModeHost, ChannelsRowView, ChannelsSeatView, ControlRoomActivityEntry, ControlRoomSectionMetric, ControlRoomSnapshot, EventScopedManageToken, IntentSwitchBlockedDetails, InventoryBooking, InventoryBookingActivity, InventoryBookingDetail, InventoryBookingObject, InventoryBookingState, InventoryBookingsPage, InventoryBookingsQuery, LogEntry, LogPage, ManageApi, ManageApiError, ReportByStatus, ReportCategoryMeta, ReportCategoryRow, ReportResult, SeatManager, SeatManagerActionResult, SeatManagerActivity, SeatManagerCapability, SeatManagerConnection, SeatManagerMode, SeatManagerOptions, SeatManagerTallies, SelectionSourceRow } from './manager.js';
3
+ export { A as AccessIntentForbidsDetails, a as AccessLinkRecord, b as AccessLinkReveal, c as AccessLinkState, d as AccessLinkStatus, e as AccessLinkStatusRecord, f as ArchiveBlockedDetails, g as AssignmentBuckets, h as AssignmentDropDetails, i as AssignmentResult, B as BucketRow, C as ChannelAccessIntent, j as ChannelAccessSummary, k as ChannelAllocationPage, l as ChannelAttribution, m as ChannelAuditEntry, n as ChannelAuditPage, o as ChannelCounts, p as ChannelListResult, q as ChannelPreviewProjection, r as ChannelRecord, s as ChannelReport, t as ChannelReportLinkRecord, u as ChannelReportLinkReveal, v as ChannelReportResult, w as ChannelReportRow, x as ChannelSeatStatus, y as ChannelState, z as ChannelsCapabilities, D as ChannelsClient, E as ChannelsMode, F as ChannelsModeHost, G as ChannelsRowView, H as ChannelsSeatView, I as ControlRoomActivityEntry, J as ControlRoomSectionMetric, K as ControlRoomSnapshot, L as EventScopedManageToken, M as IntentSwitchBlockedDetails, N as InventoryBooking, O as InventoryBookingActivity, P as InventoryBookingDetail, Q as InventoryBookingObject, R as InventoryBookingState, S as InventoryBookingsPage, T as InventoryBookingsQuery, U as LogEntry, V as LogPage, W as ManageApi, X as ManageApiError, Y as ReportByStatus, Z as ReportCategoryMeta, _ as ReportCategoryRow, $ as ReportResult, a0 as SeatManager, a1 as SeatManagerActionResult, a2 as SeatManagerActivity, a3 as SeatManagerCapability, a4 as SeatManagerConnection, a5 as SeatManagerMode, a6 as SeatManagerOptions, a7 as SeatManagerTallies, a8 as SelectionSourceRow } from './channelsMode-BX7s9bUl.js';
4
4
 
5
5
  /**
6
6
  * Buyer access context — the browser half of the Sales Channels contract
@@ -820,6 +820,132 @@ declare class SeatingChart {
820
820
  destroy(): void;
821
821
  }
822
822
 
823
+ /**
824
+ * seatingChartBinding — the single source of truth the framework wrappers bind
825
+ * against.
826
+ *
827
+ * `@seatlayer/react`, `@seatlayer/vue` and `@seatlayer/angular` are supposed to
828
+ * be thin: mount a `SeatingChart`, forward the props, forward the callbacks,
829
+ * expose the imperative handle. In practice each of them hand-wrote all three
830
+ * lists, and they drifted — React grew `initialView` and `errorDisplay` props
831
+ * that Vue and Angular never got, and nothing in any build caught it, because a
832
+ * missing prop in a hand-written list is not a type error anywhere.
833
+ *
834
+ * So the lists live here, next to the class they describe, and the wrappers
835
+ * iterate them. Adding a method to `SeatingChart` that buyers should be able to
836
+ * call now means adding one entry to {@link SEATING_CHART_HANDLE_METHODS}; every
837
+ * wrapper picks it up, and the wrapper tests fail until each one exposes it.
838
+ *
839
+ * Types only against `SeatingChart` — this module imports no runtime value from
840
+ * it, so it costs a host nothing but the two arrays and the binder below.
841
+ */
842
+
843
+ /**
844
+ * Imperative handle exposed by every wrapper — call these to drive the picker
845
+ * from your app.
846
+ *
847
+ * Angular is the one exception to the naming: its component surfaces `hold` as
848
+ * `holdSelection`, because `hold` is already taken by its `@Output()` event.
849
+ */
850
+ interface SeatingChartHandle {
851
+ /** Hold the current selection. Resolves the hold, or `null` on a 409 conflict. */
852
+ hold(options?: {
853
+ ttlMs?: number;
854
+ }): Promise<HoldResult | null>;
855
+ /** Restore an active hold by its opaque id. */
856
+ resumeHold(holdId: string): Promise<HoldResult | null>;
857
+ /** Current active hold known to the chart. */
858
+ getCurrentHold(): HoldResult | null;
859
+ /** GA areas with live remaining capacity. */
860
+ getGAAreas(): GAAreaAvailability[];
861
+ /** Atomically hold a quantity from one GA area. */
862
+ holdGA(areaId: string, qty: number, options?: {
863
+ tierId?: string | null;
864
+ ttlMs?: number;
865
+ }): Promise<HoldResult | null>;
866
+ /** Ask the server for the `qty` best free seats and hold them atomically. */
867
+ bestAvailable(qty: number, categoryKey?: string): Promise<BestAvailableResult | null>;
868
+ /** Release the current hold (if any). */
869
+ release(): Promise<void>;
870
+ /** Release some held labels while keeping the remainder active. */
871
+ releaseLabels(labels: string[]): Promise<boolean>;
872
+ /** The current selection, with prices resolved from the chart categories. */
873
+ getSelection(): SelectedSeat[];
874
+ /**
875
+ * Choose a ticket tier for a selected seat (e.g. Adult → Child). Available
876
+ * `tiers` are on each `SelectedSeat`; `tierId=null` reverts to the default.
877
+ */
878
+ setSeatTier(seatId: string, tierId: string | null): void;
879
+ /**
880
+ * Floors of a multi-floor chart — `[{ id, name }]` (single-floor charts
881
+ * return one entry; empty before render()). Pair with setFloor().
882
+ */
883
+ getFloors(): {
884
+ id: string;
885
+ name: string;
886
+ }[];
887
+ /** Switch the shown floor (2D). Warns + no-ops on single-floor charts. */
888
+ setFloor(floorId: string): void;
889
+ /** Toggle colorblind-safe rendering at runtime (see the `colorblindSafe` prop). */
890
+ setColorblindSafe(on: boolean): void;
891
+ /** Zoom in one step (same increment as the wheel/pinch gesture). */
892
+ zoomIn(): void;
893
+ /** Zoom out one step. */
894
+ zoomOut(): void;
895
+ /** Reset the camera so the whole chart fits the container. */
896
+ zoomToFit(): void;
897
+ /**
898
+ * Re-acquire the buyer access session after your app re-authorizes the buyer
899
+ * (Sales Channels). Resolves false when the chart is not access-scoped.
900
+ */
901
+ refreshAccess(): Promise<boolean>;
902
+ }
903
+ /**
904
+ * Every method a wrapper must forward. The wrappers build their handle by
905
+ * iterating this, so the list IS the contract rather than a description of it.
906
+ */
907
+ declare const SEATING_CHART_HANDLE_METHODS: readonly ["hold", "resumeHold", "getCurrentHold", "getGAAreas", "holdGA", "bestAvailable", "release", "releaseLabels", "getSelection", "setSeatTier", "getFloors", "setFloor", "setColorblindSafe", "zoomIn", "zoomOut", "zoomToFit", "refreshAccess"];
908
+ type SeatingChartHandleMethod = (typeof SEATING_CHART_HANDLE_METHODS)[number];
909
+ /**
910
+ * Build the forwarding object every wrapper exposes.
911
+ *
912
+ * `getInstance` is a function rather than the instance itself: a wrapper's
913
+ * handle is created ONCE and must keep working across rebuilds, so it has to
914
+ * read the current chart on each call instead of capturing one.
915
+ */
916
+ declare function bindSeatingChartHandle(getInstance: () => SeatingChart | null): SeatingChartHandle;
917
+ /**
918
+ * Props whose change means a DIFFERENT chart, so the wrapper tears the canvas
919
+ * down and builds a new one. Everything else is read live: a parent re-render
920
+ * must never destroy a canvas mid-selection.
921
+ *
922
+ * `initialView` and `errorDisplay` are here because they are read once at
923
+ * construction and never re-applied — leaving them out does not make them
924
+ * "live", it makes them silently ignored after mount, which is the worse of the
925
+ * two behaviours. React already treated them this way; Vue and Angular did not
926
+ * expose them at all.
927
+ */
928
+ declare const SEATING_CHART_IDENTITY_PROPS: readonly ["event", "apiBase", "maxSelection", "publicKey", "locale", "currency", "colorblindSafe", "initialView", "errorDisplay"];
929
+ type SeatingChartIdentityProp = (typeof SEATING_CHART_IDENTITY_PROPS)[number];
930
+ /** Non-callback options a wrapper accepts as props/inputs and passes straight through. */
931
+ declare const SEATING_CHART_VALUE_PROPS: readonly ["event", "apiBase", "maxSelection", "publicKey", "locale", "currency", "colorblindSafe", "initialView", "errorDisplay", "messages", "seatTooltip", "buyerAccessTokenProvider", "buyerAccessToken"];
932
+ type SeatingChartValueProp = (typeof SEATING_CHART_VALUE_PROPS)[number];
933
+ /** Every callback option a wrapper wires to its own event mechanism. */
934
+ declare const SEATING_CHART_CALLBACK_PROPS: readonly ["onSelectionChange", "onHold", "onHoldRestored", "onHoldExpired", "onGAClick", "onError", "onDeckTap", "onHint", "onSeatHover", "onAccessExpired", "onAccessUnavailable", "onSelectedObjectUnavailable"];
935
+ type SeatingChartCallbackProp = (typeof SEATING_CHART_CALLBACK_PROPS)[number];
936
+ /** The value half of the options, as a wrapper holds it. */
937
+ type SeatingChartValues = Pick<SeatingChartOptions, SeatingChartValueProp>;
938
+ /** The callback half, already bound to the wrapper's event mechanism. */
939
+ type SeatingChartCallbacks = Pick<SeatingChartOptions, SeatingChartCallbackProp>;
940
+ /**
941
+ * Assemble the options literal for `new SeatingChart(...)`.
942
+ *
943
+ * Picks by the lists above rather than spreading, so a wrapper cannot pass a
944
+ * stray prop of its own (React's `className`/`style`, Vue's attrs) into the
945
+ * SDK, and cannot forget one either.
946
+ */
947
+ declare function buildSeatingChartOptions(container: HTMLElement, values: Partial<SeatingChartValues>, callbacks: SeatingChartCallbacks): SeatingChartOptions;
948
+
823
949
  /**
824
950
  * A secure, framework-neutral host for the SeatLayer chart Designer.
825
951
  *
@@ -1144,24 +1270,14 @@ declare function parseTicketOfferAvailability(body: unknown): TicketOfferAvailab
1144
1270
  declare function ticketOfferPrices(availability: TicketOfferAvailability | null): Record<string, number>;
1145
1271
 
1146
1272
  /**
1147
- * SeatPicker — the full buyer experience as a widget.
1148
- *
1149
- * Where `SeatingChart` is canvas-only, SeatPicker owns the complete chrome
1150
- * from the canonical UX contract: branded header,
1151
- * live price panel, selection tray with GA steppers, hold countdown, snipe
1152
- * toasts and expiry recovery — all on top of the shared PickerController, so
1153
- * every host gets the whole experience with one mount.
1154
- *
1155
- * Render contexts (owner requirement): the SAME widget adapts to a full-screen
1156
- * takeover, an inline <div> in a content page, or a popup — breakpoints key
1157
- * off the CONTAINER via ResizeObserver, never the viewport. `SeatPicker.open()`
1158
- * mounts a document-level modal (scrim, ESC, focus restore) in one call.
1273
+ * pickerTypes — the SeatPicker public option/theme/pricing contract, plus the
1274
+ * two internal shapes (`SectionLike`, `PriceBand`) the picker reads off a
1275
+ * ChartDoc.
1159
1276
  *
1160
- * Theming (owner requirement): org account customization flows automatically
1161
- * the chart payload's ChartTheme (accent, accentInk, logoUrl, brand name,
1162
- * fontFamily, …) seeds the look; the host `theme` option overrides any subset;
1163
- * and every value lands as a `--sl-*` CSS custom property on the widget root
1164
- * so plain host CSS can restyle too.
1277
+ * Split out of SeatPicker.ts verbatim; these declarations are the widget's
1278
+ * published API surface, so SeatPicker.ts re-exports every public name from
1279
+ * here and `@seatlayer/js`'s entry (src/index.ts) is untouched. Types only
1280
+ * nothing in this file emits a byte of runtime JavaScript.
1165
1281
  */
1166
1282
 
1167
1283
  /**
@@ -1583,6 +1699,28 @@ interface SeatPickerOptions {
1583
1699
  onSelectedObjectUnavailable?: (event: SelectedObjectUnavailableEvent) => void;
1584
1700
  onError?: (err: unknown) => void;
1585
1701
  }
1702
+
1703
+ /**
1704
+ * SeatPicker — the full buyer experience as a widget.
1705
+ *
1706
+ * Where `SeatingChart` is canvas-only, SeatPicker owns the complete chrome
1707
+ * from the canonical UX contract: branded header,
1708
+ * live price panel, selection tray with GA steppers, hold countdown, snipe
1709
+ * toasts and expiry recovery — all on top of the shared PickerController, so
1710
+ * every host gets the whole experience with one mount.
1711
+ *
1712
+ * Render contexts (owner requirement): the SAME widget adapts to a full-screen
1713
+ * takeover, an inline <div> in a content page, or a popup — breakpoints key
1714
+ * off the CONTAINER via ResizeObserver, never the viewport. `SeatPicker.open()`
1715
+ * mounts a document-level modal (scrim, ESC, focus restore) in one call.
1716
+ *
1717
+ * Theming (owner requirement): org account customization flows automatically —
1718
+ * the chart payload's ChartTheme (accent, accentInk, logoUrl, brand name,
1719
+ * fontFamily, …) seeds the look; the host `theme` option overrides any subset;
1720
+ * and every value lands as a `--sl-*` CSS custom property on the widget root
1721
+ * so plain host CSS can restyle too.
1722
+ */
1723
+
1586
1724
  declare class SeatPicker {
1587
1725
  private readonly opts;
1588
1726
  private readonly api;
@@ -1693,7 +1831,8 @@ declare class SeatPicker {
1693
1831
  private view3dTargetSeatId;
1694
1832
  /** Inspection-only comparison. These ids never represent cart selection. */
1695
1833
  private view3dCompareSeatIds;
1696
- private view3dCompareChip;
1834
+ /** The saved-seat comparison chip — owned by pickerView3dNav.ts. */
1835
+ private readonly view3dCompareChip;
1697
1836
  private view3dCompareEl;
1698
1837
  private view3dCompareCleanup;
1699
1838
  private view3dPassportEl;
@@ -1705,14 +1844,7 @@ declare class SeatPicker {
1705
1844
  /** Supersedes an older authored-view byte request when another seat is opened. */
1706
1845
  private seatViewGen;
1707
1846
  private allSeatsCache;
1708
- private miniCanvas;
1709
- private miniBase;
1710
- private miniWrap;
1711
- private miniToggle;
1712
- private miniLabel;
1713
- private miniTf;
1714
- private miniDrag;
1715
- private miniSuppressClick;
1847
+ private minimap;
1716
1848
  private pickerLayoutSize;
1717
1849
  private priceBandKeys;
1718
1850
  private focusedCatKey;
@@ -1765,27 +1897,6 @@ declare class SeatPicker {
1765
1897
  * (OV-52)
1766
1898
  */
1767
1899
  private confirmThumbHtml;
1768
- /** "See it in 3D" (2D) / "View from this seat" (already in 3D) action for the
1769
- * confirm card. Only when 3D is available — the purchase-moment bridge into
1770
- * the cinematic that reaches buyers who never press the Map | 3D toggle. */
1771
- private see3dConfirmHtml;
1772
- /** Minimal HTML/attribute escaper for buyer-authored commercial text (notes). */
1773
- private escCx;
1774
- /** Localized "Restricted view" / "Obstructed view" label for a seat's flags,
1775
- * or '' when neither is set. Restricted takes precedence when both are on. */
1776
- private limitedViewLabel;
1777
- /**
1778
- * Commercial flags block for the confirm/detail surface: a subtle ★ Premium
1779
- * tag plus an amber ◐ limited-view caution (with the organizer's note when
1780
- * present). '' when the seat carries no surfaced commercial flag.
1781
- */
1782
- private commercialConfirmHtml;
1783
- /** Small ◐ limited-view marker for a cart chip; title/aria uses the seat's
1784
- * note when present, else the generic view label. '' for a clear-view seat. */
1785
- private commercialChipMarker;
1786
- private wheelchairProvisionLabel;
1787
- private wheelchairConfirmHtml;
1788
- private wheelchairChipMarker;
1789
1900
  /** True when the picker is rendered inside an iframe (snippet embed at /e/:key). */
1790
1901
  private isFramed;
1791
1902
  /**
@@ -1960,30 +2071,8 @@ declare class SeatPicker {
1960
2071
  private restoreRememberedHold;
1961
2072
  /** Section-bearing objects on the active floor (single-floor → doc.objects). */
1962
2073
  private activeFloorObjects;
1963
- /**
1964
- * Build the overview minimap: a static venue thumbnail (section outlines, or
1965
- * seat dots when the chart has no sections) with the live viewport rectangle
1966
- * drawn on top. The rect tracks pan/zoom via the constructor's onViewChange.
1967
- */
2074
+ /** Attach the F3 overview minimap into the bottom-left chrome region. */
1968
2075
  private buildMinimap;
1969
- private setMinimapOpen;
1970
- /** Re-fit the thumbnail whenever the active floor or complete overview
1971
- * changes bounds. This is presentation-only; the source chart is untouched. */
1972
- private layoutMinimap;
1973
- private syncMinimapLabel;
1974
- /** Repaint the static overview + rect (floor switch, live open/close). */
1975
- private refreshMinimap;
1976
- /** Paint the venue overview into the offscreen base canvas. */
1977
- private drawMinimapStatic;
1978
- /** Blit the base overview, then stroke the current viewport rectangle on top. */
1979
- private drawMinimapRect;
1980
- private minimapWorldPoint;
1981
- private minimapPointerDown;
1982
- private minimapPointerMove;
1983
- private minimapPointerUp;
1984
- private minimapKeydown;
1985
- /** Minimap click → focus an available section, otherwise pan there. */
1986
- private minimapJump;
1987
2076
  /** Effective display price of a category: host pricing override → first tier → base. */
1988
2077
  private catPrice;
1989
2078
  /** Complete buyer-visible price range, including every ticket tier and
@@ -2021,8 +2110,6 @@ declare class SeatPicker {
2021
2110
  * are skipped because focusing one cannot produce a useful buyer card.
2022
2111
  */
2023
2112
  private sectionNeighbours;
2024
- /** Previous/next controls shared by expanded, mini, and phone section cards. */
2025
- private sectionNavigationHtml;
2026
2113
  private wireSectionNavigation;
2027
2114
  /**
2028
2115
  * Render the section card in the form the layout + state want: expanded card
@@ -2117,20 +2204,11 @@ declare class SeatPicker {
2117
2204
  /** A live delta took one of OUR selected (not yet held) seats — evict + tell the buyer. */
2118
2205
  private evictTakenSelections;
2119
2206
  private syncTray;
2120
- /**
2121
- * The bottom-sheet's collapsed one-liner. Called from syncTray on every
2122
- * repaint AND from setCtaPhase: while the widget is securing seats or
2123
- * opening checkout, the peek is the phone buyer's ONLY line of sight, and a
2124
- * pill still reading "Continue" at the moment money is about to move is the
2125
- * emotional trapdoor the audit flagged. The phase lines restate what is
2126
- * secured and promise no charge yet.
2127
- */
2207
+ /** Paint the bottom-sheet's collapsed one-liner (pickerTray.ts builds it). */
2128
2208
  private renderPeek;
2129
2209
  private removeHeldLabel;
2130
2210
  private handleChangeSeats;
2131
2211
  private handleCta;
2132
- /** "Yours for m:ss — you won't be charged yet." — the hold note's promise. */
2133
- private holdReassuranceText;
2134
2212
  private startHoldTimer;
2135
2213
  private stopHoldTimer;
2136
2214
  /** Show/refresh (or hide) the "Need more time?" prompt with the live seconds left. */
@@ -2194,7 +2272,6 @@ declare class SeatPicker {
2194
2272
  /** Buyer-facing type word for the row/table key label — the designer's
2195
2273
  * per-object "Displayed type" override, or the default "Row". */
2196
2274
  private rowTypeWord;
2197
- private rowShort;
2198
2275
  private updateTooltip;
2199
2276
  getSelection(): PickerSeat[];
2200
2277
  /**
@@ -2305,35 +2382,14 @@ declare class SeatPicker {
2305
2382
  * explicitly so yellow never has to carry both meanings. */
2306
2383
  private showUnavailable3dSeat;
2307
2384
  private dismissUnavailable3dSeat;
2308
- /** Comparison belongs to inspection, never selection. The confirm candidate
2309
- * remains excluded from checkout until Select; saving it releases that
2310
- * candidate before any comparison state is created. */
2311
- private view3dCompareConfirmHtml;
2312
- private seatConfidenceConfirmHtml;
2313
2385
  private saveView3dComparisonSeat;
2314
2386
  private clearView3dComparison;
2315
- private syncView3dCompareChip;
2316
2387
  private view3dComparisonSnapshot;
2317
2388
  private openSeatConfidencePassport;
2318
2389
  private closeSeatConfidencePassport;
2319
2390
  private openView3dComparison;
2320
2391
  private closeView3dComparison;
2321
2392
  private selectComparedSeat;
2322
- /**
2323
- * The venue-navigation rail inside 3D: levels and areas.
2324
- *
2325
- * In 2D a buyer moves through the venue by floor switcher and by the LOD
2326
- * rungs. Both are hidden while immersed, and the 3D module's own chips only
2327
- * cover "go home" and "see the 360" — so on a multi-floor or multi-zone chart
2328
- * the buyer entered 3D and LOST the ability to reach the level or area they
2329
- * were booking. The camera moves for both already exist on the handle
2330
- * (`focusFloor` / `focusZone`); this is the surface that offers them.
2331
- *
2332
- * Levels are a TOGGLE (a floor stays isolated until you pick another), areas
2333
- * are an ACTION (the camera flies there and you are then free to orbit), which
2334
- * is why only the level pills carry a pressed state.
2335
- */
2336
- private buildView3dNav;
2337
2393
  private enter3d;
2338
2394
  private exit3d;
2339
2395
  /** Current active/restored hold reflected in the tray. */
@@ -2412,4 +2468,4 @@ interface AttachPickerFrameOptions {
2412
2468
  */
2413
2469
  declare function attachPickerFrame(iframe: HTMLIFrameElement, opts?: AttachPickerFrameOptions): () => void;
2414
2470
 
2415
- export { ApiError, type AttachPickerFrameOptions, type BestAvailableResult, BuyerAccessContext, type BuyerAccessExpiredEvent, type BuyerAccessRefreshReason, type BuyerAccessToken, type BuyerAccessTokenProvider, BuyerAccessUnavailableError, type BuyerAccessUnavailableEvent, type BuyerAccessUnavailableReason, BuyerRealtimeClient, type BuyerRealtimeOptions, type CheckoutHandoff, type CheckoutLineItem, type CheckoutSessionResult, EmbeddedDesigner, type EmbeddedDesignerEventType, type EmbeddedDesignerMessage, type EmbeddedDesignerOptions, type GAAreaAvailability, type HoldConflict, type HoldLineItem, type HoldResult, type OrderStatusResult, type PaymentOptionsReason, type PaymentOptionsResult, type PaymentProviderName, type Projection, type PubApiOptions, type RealtimeSink, type ResumedHoldResult, type SaleState, SeatPicker, type SeatPickerBestAvailableOptions, type SeatPickerBuyerView, type SeatPickerBuyerViewOptions, type SeatPickerOptions, type SeatPickerPricing, type SeatPickerTheme, SeatingChart, type SeatingChartOptions, type SelectedObjectUnavailableEvent, type SelectedSeat, type StatusChange, type SubscribeTicket, type TicketOfferAvailability, type TicketOfferPrice, type TicketOfferSummary, attachPickerFrame, createBuyerAccessContext, createControllerSink, parseTicketOfferAvailability, ticketOfferPrices };
2471
+ export { ApiError, type AttachPickerFrameOptions, type BestAvailableResult, BuyerAccessContext, type BuyerAccessExpiredEvent, type BuyerAccessRefreshReason, type BuyerAccessToken, type BuyerAccessTokenProvider, BuyerAccessUnavailableError, type BuyerAccessUnavailableEvent, type BuyerAccessUnavailableReason, BuyerRealtimeClient, type BuyerRealtimeOptions, type CheckoutHandoff, type CheckoutLineItem, type CheckoutSessionResult, EmbeddedDesigner, type EmbeddedDesignerEventType, type EmbeddedDesignerMessage, type EmbeddedDesignerOptions, type GAAreaAvailability, type HoldConflict, type HoldLineItem, type HoldResult, type OrderStatusResult, type PaymentOptionsReason, type PaymentOptionsResult, type PaymentProviderName, type Projection, type PubApiOptions, type RealtimeSink, type ResumedHoldResult, SEATING_CHART_CALLBACK_PROPS, SEATING_CHART_HANDLE_METHODS, SEATING_CHART_IDENTITY_PROPS, SEATING_CHART_VALUE_PROPS, type SaleState, SeatPicker, type SeatPickerBestAvailableOptions, type SeatPickerBuyerView, type SeatPickerBuyerViewOptions, type SeatPickerOptions, type SeatPickerPricing, type SeatPickerTheme, SeatingChart, type SeatingChartCallbackProp, type SeatingChartCallbacks, type SeatingChartHandle, type SeatingChartHandleMethod, type SeatingChartIdentityProp, type SeatingChartOptions, type SeatingChartValueProp, type SeatingChartValues, type SelectedObjectUnavailableEvent, type SelectedSeat, type StatusChange, type SubscribeTicket, type TicketOfferAvailability, type TicketOfferPrice, type TicketOfferSummary, attachPickerFrame, bindSeatingChartHandle, buildSeatingChartOptions, createBuyerAccessContext, createControllerSink, parseTicketOfferAvailability, ticketOfferPrices };