@seatlayer/js 0.72.1 → 0.74.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.cts CHANGED
@@ -249,7 +249,8 @@ declare function createBuyerAccessContext(options: {
249
249
  * - compact `{default, exceptions}` snapshot reconstruction;
250
250
  * - `sv.<n>` resume, handling BOTH outcomes (a `resumed` delta or a full
251
251
  * snapshot) on every reconnect;
252
- * - close code 4401 as a typed access-revoked state, never a reconnect loop;
252
+ * - close code 4401 distinguishes an expired session (refresh/reconnect) from
253
+ * a genuinely revoked one (typed terminal state, never a reconnect loop);
253
254
  * - liveness by ping/pong only. Silence is normal and carries no information
254
255
  * (protocol doc §5) — a quiet socket is never treated as a dead one.
255
256
  */
@@ -306,7 +307,7 @@ interface BuyerRealtimeOptions {
306
307
  /** Mint a one-use ticket for THIS connection attempt. Returns null for the
307
308
  * anonymous public case (no ticket needed). Throwing stops the client. */
308
309
  mintTicket?: () => Promise<SubscribeTicket | null>;
309
- /** Typed access states. 4401 arrives here as `revoked`. */
310
+ /** Typed terminal access states. A 4401 `access_expired` close reconnects. */
310
311
  onAccessUnavailable?: (event: BuyerAccessUnavailableEvent) => void;
311
312
  /** Test seam. Defaults to the global WebSocket. */
312
313
  socketFactory?: (url: string, protocols: string[]) => WebSocket;
@@ -1375,11 +1376,20 @@ interface SeatingChartPickerState {
1375
1376
  /** How the stacked view marks each level. */
1376
1377
  floorLabelStyle: FloorLabelStyle;
1377
1378
  rung: LodRung;
1379
+ /** True only when one semantic zoom-out step can reveal more of the venue. */
1380
+ canZoomOut: boolean;
1378
1381
  focusedSectionId: string | null;
1379
1382
  focusedSection: SectionSummary | null;
1380
1383
  viewMode: RendererViewMode;
1381
1384
  buyerView: SeatingChartBuyerView;
1382
1385
  view3dTargetSeatId: string | null;
1386
+ /** Buyer-display identity for the current 3D camera target, selected or not. */
1387
+ view3dTargetSeat: SelectedSeat | null;
1388
+ /** Same-row neighbours in authored seat order, matching the web 3D stepper. */
1389
+ view3dPreviousSeatId: string | null;
1390
+ view3dNextSeatId: string | null;
1391
+ /** Section framed by the 3D scene; separate from the 2D map focus. */
1392
+ view3dFocusedSectionId: string | null;
1383
1393
  view3dNavigationMode: SeatingChartNavigationMode;
1384
1394
  colorblindSafe: boolean;
1385
1395
  /** Chrome the HOST draws over the map, in CSS px, echoed back so a native
@@ -1688,6 +1698,8 @@ declare class SeatingChart {
1688
1698
  private focusedSection_;
1689
1699
  /** Last rung already exposed to native chrome; raw camera frames stay in-canvas. */
1690
1700
  private lastReportedViewRung_;
1701
+ /** Last semantic step-out state exposed to native chrome. */
1702
+ private lastReportedCanZoomOut_;
1691
1703
  private accessState_;
1692
1704
  private tipEl;
1693
1705
  private tipPos;
@@ -1703,7 +1715,7 @@ declare class SeatingChart {
1703
1715
  /**
1704
1716
  * Camera x/y/scale is renderer-local and deliberately absent from the native
1705
1717
  * picker snapshot. Keep pan and pinch frames on the canvas; only a semantic
1706
- * rung transition needs to wake native chrome.
1718
+ * rung or step-out transition needs to wake native chrome.
1707
1719
  */
1708
1720
  private handleViewChange;
1709
1721
  /** Record the current rung before publishing an explicit state mutation. */
@@ -3478,6 +3490,8 @@ declare class SeatPicker implements GaPromptPicker {
3478
3490
  /** Remove one server-held ticket while keeping the rest of the hold active. */
3479
3491
  removeHeldTicket(label: string): Promise<boolean>;
3480
3492
  bestAvailable(qty: number, categoryKey?: string, opts?: SeatPickerBestAvailableOptions): Promise<HoldResult | null>;
3493
+ /** @internal Exact, throwing variant for composed SDK surfaces. */
3494
+ bestAvailableOrThrow(qty: number, categoryKey?: string, opts?: SeatPickerBestAvailableOptions): Promise<HoldResult | null>;
3481
3495
  release(): Promise<void>;
3482
3496
  /**
3483
3497
  * Realtime for an access-scoped picker.
@@ -3915,7 +3929,7 @@ declare class PerformanceGroupPicker {
3915
3929
  private checkout;
3916
3930
  }
3917
3931
 
3918
- type SeasonOperationState = 'preparing' | 'commit_pending' | 'committed' | 'abort_pending' | 'aborted' | 'partial_terminal' | 'expired' | 'booked';
3932
+ type SeasonOperationState = 'preparing' | 'commit_pending' | 'committed' | 'expire_pending' | 'booking_pending' | 'abort_pending' | 'aborted' | 'partial_terminal' | 'expired' | 'booked';
3919
3933
  interface SeasonDescriptor {
3920
3934
  key: string;
3921
3935
  name: string;
@@ -3992,7 +4006,7 @@ declare class SeasonRecoveryTimeoutError extends Error {
3992
4006
  }
3993
4007
 
3994
4008
  interface SeasonStatusEvent {
3995
- kind: 'loading' | 'ready' | 'pending' | 'held' | 'released' | 'renewal_intent' | 'partial_terminal' | 'failed';
4009
+ kind: 'loading' | 'ready' | 'pending' | 'held' | 'booked' | 'released' | 'renewal_intent' | 'partial_terminal' | 'failed';
3996
4010
  message: string;
3997
4011
  operationId?: string;
3998
4012
  }
@@ -4006,6 +4020,14 @@ interface SeasonOfferPresentation {
4006
4020
  benefits?: readonly string[];
4007
4021
  renewalLabel?: string;
4008
4022
  }
4023
+ interface SeasonBestAvailableOptions {
4024
+ categoryKey?: string;
4025
+ zoneId?: string;
4026
+ /** Any-of accommodation filter, evaluated across every Event in the Plan. */
4027
+ accessibility?: readonly AccessibilityType[];
4028
+ /** Refuse scattered fallback when no contiguous block of `qty` exists. */
4029
+ requireContiguous?: boolean;
4030
+ }
4009
4031
  interface SeasonPickerOptions {
4010
4032
  container: string | HTMLElement;
4011
4033
  season: string;
@@ -4055,6 +4077,7 @@ declare class SeasonPicker {
4055
4077
  constructor(options: SeasonPickerOptions);
4056
4078
  render(): Promise<this>;
4057
4079
  holdSameSeat(labels: readonly string[], operationId: string): Promise<SeasonCheckoutHandoff>;
4080
+ holdBestAvailable(qty: number, operationId: string, options?: SeasonBestAvailableOptions): Promise<SeasonCheckoutHandoff>;
4058
4081
  restoreOperation(operationId: string): Promise<SeasonCheckoutHandoff | null>;
4059
4082
  release(releaseActionId: string): Promise<void>;
4060
4083
  createRenewalIntent(offerId: string): Promise<SeasonRenewalIntent>;
@@ -4103,4 +4126,4 @@ interface AttachPickerFrameOptions {
4103
4126
  */
4104
4127
  declare function attachPickerFrame(iframe: HTMLIFrameElement, opts?: AttachPickerFrameOptions): () => void;
4105
4128
 
4106
- 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 GAPromptRequest, type GaPromptTier, type HoldConflict, type HoldLineItem, type HoldResult, type OrderStatusResult, type PaymentOptionsReason, type PaymentOptionsResult, type PaymentProviderName, type PerformanceGroupAvailability, type PerformanceGroupCheckoutHandoff, type PerformanceGroupDescriptor, PerformanceGroupDestroyedError, type PerformanceGroupHold, type PerformanceGroupHoldAllocation, type PerformanceGroupOperationEvent, type PerformanceGroupOperationState, PerformanceGroupPicker, type PerformanceGroupPickerOptions, type PerformanceGroupRecoveryState, type PerformanceGroupSeatAllocation, type PerformanceGroupSelectionMode, type PerformanceGroupStatusEvent, 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, SeasonApiError, type SeasonAvailability, type SeasonCheckoutHandoff, type SeasonDescriptor, type SeasonOfferPresentation, type SeasonOperation, type SeasonOperationState, SeasonPicker, type SeasonPickerOptions, SeasonRecoveryTimeoutError, type SeasonRenewalIntent, type SeasonStatusEvent, SeatPicker, type SeatPickerBestAvailableOptions, type SeatPickerBuyerView, type SeatPickerBuyerViewOptions, type SeatPickerOptions, type SeatPickerPricing, type SeatPickerTheme, type SeatPickerWebMcpOptions, SeatingChart, type SeatingChartCallbackProp, type SeatingChartCallbacks, type SeatingChartHandle, type SeatingChartHandleMethod, type SeatingChartIdentityProp, type SeatingChartOptions, type SeatingChartSeatViewInfo, type SeatingChartValueProp, type SeatingChartValues, type SelectedObjectUnavailableEvent, type SelectedSeat, type StatusChange, type SubscribeTicket, ThemeMode, type TicketOfferAvailability, type TicketOfferPrice, type TicketOfferSummary, attachPickerFrame, bindSeatingChartHandle, buildSeatingChartOptions, createBuyerAccessContext, createControllerSink, parseTicketOfferAvailability, shortOperationReference, ticketOfferPrices };
4129
+ 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 GAPromptRequest, type GaPromptTier, type HoldConflict, type HoldLineItem, type HoldResult, type OrderStatusResult, type PaymentOptionsReason, type PaymentOptionsResult, type PaymentProviderName, type PerformanceGroupAvailability, type PerformanceGroupCheckoutHandoff, type PerformanceGroupDescriptor, PerformanceGroupDestroyedError, type PerformanceGroupHold, type PerformanceGroupHoldAllocation, type PerformanceGroupOperationEvent, type PerformanceGroupOperationState, PerformanceGroupPicker, type PerformanceGroupPickerOptions, type PerformanceGroupRecoveryState, type PerformanceGroupSeatAllocation, type PerformanceGroupSelectionMode, type PerformanceGroupStatusEvent, 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, SeasonApiError, type SeasonAvailability, type SeasonBestAvailableOptions, type SeasonCheckoutHandoff, type SeasonDescriptor, type SeasonOfferPresentation, type SeasonOperation, type SeasonOperationState, SeasonPicker, type SeasonPickerOptions, SeasonRecoveryTimeoutError, type SeasonRenewalIntent, type SeasonStatusEvent, SeatPicker, type SeatPickerBestAvailableOptions, type SeatPickerBuyerView, type SeatPickerBuyerViewOptions, type SeatPickerOptions, type SeatPickerPricing, type SeatPickerTheme, type SeatPickerWebMcpOptions, SeatingChart, type SeatingChartCallbackProp, type SeatingChartCallbacks, type SeatingChartHandle, type SeatingChartHandleMethod, type SeatingChartIdentityProp, type SeatingChartOptions, type SeatingChartSeatViewInfo, type SeatingChartValueProp, type SeatingChartValues, type SelectedObjectUnavailableEvent, type SelectedSeat, type StatusChange, type SubscribeTicket, ThemeMode, type TicketOfferAvailability, type TicketOfferPrice, type TicketOfferSummary, attachPickerFrame, bindSeatingChartHandle, buildSeatingChartOptions, createBuyerAccessContext, createControllerSink, parseTicketOfferAvailability, shortOperationReference, ticketOfferPrices };
package/dist/index.d.ts CHANGED
@@ -249,7 +249,8 @@ declare function createBuyerAccessContext(options: {
249
249
  * - compact `{default, exceptions}` snapshot reconstruction;
250
250
  * - `sv.<n>` resume, handling BOTH outcomes (a `resumed` delta or a full
251
251
  * snapshot) on every reconnect;
252
- * - close code 4401 as a typed access-revoked state, never a reconnect loop;
252
+ * - close code 4401 distinguishes an expired session (refresh/reconnect) from
253
+ * a genuinely revoked one (typed terminal state, never a reconnect loop);
253
254
  * - liveness by ping/pong only. Silence is normal and carries no information
254
255
  * (protocol doc §5) — a quiet socket is never treated as a dead one.
255
256
  */
@@ -306,7 +307,7 @@ interface BuyerRealtimeOptions {
306
307
  /** Mint a one-use ticket for THIS connection attempt. Returns null for the
307
308
  * anonymous public case (no ticket needed). Throwing stops the client. */
308
309
  mintTicket?: () => Promise<SubscribeTicket | null>;
309
- /** Typed access states. 4401 arrives here as `revoked`. */
310
+ /** Typed terminal access states. A 4401 `access_expired` close reconnects. */
310
311
  onAccessUnavailable?: (event: BuyerAccessUnavailableEvent) => void;
311
312
  /** Test seam. Defaults to the global WebSocket. */
312
313
  socketFactory?: (url: string, protocols: string[]) => WebSocket;
@@ -1375,11 +1376,20 @@ interface SeatingChartPickerState {
1375
1376
  /** How the stacked view marks each level. */
1376
1377
  floorLabelStyle: FloorLabelStyle;
1377
1378
  rung: LodRung;
1379
+ /** True only when one semantic zoom-out step can reveal more of the venue. */
1380
+ canZoomOut: boolean;
1378
1381
  focusedSectionId: string | null;
1379
1382
  focusedSection: SectionSummary | null;
1380
1383
  viewMode: RendererViewMode;
1381
1384
  buyerView: SeatingChartBuyerView;
1382
1385
  view3dTargetSeatId: string | null;
1386
+ /** Buyer-display identity for the current 3D camera target, selected or not. */
1387
+ view3dTargetSeat: SelectedSeat | null;
1388
+ /** Same-row neighbours in authored seat order, matching the web 3D stepper. */
1389
+ view3dPreviousSeatId: string | null;
1390
+ view3dNextSeatId: string | null;
1391
+ /** Section framed by the 3D scene; separate from the 2D map focus. */
1392
+ view3dFocusedSectionId: string | null;
1383
1393
  view3dNavigationMode: SeatingChartNavigationMode;
1384
1394
  colorblindSafe: boolean;
1385
1395
  /** Chrome the HOST draws over the map, in CSS px, echoed back so a native
@@ -1688,6 +1698,8 @@ declare class SeatingChart {
1688
1698
  private focusedSection_;
1689
1699
  /** Last rung already exposed to native chrome; raw camera frames stay in-canvas. */
1690
1700
  private lastReportedViewRung_;
1701
+ /** Last semantic step-out state exposed to native chrome. */
1702
+ private lastReportedCanZoomOut_;
1691
1703
  private accessState_;
1692
1704
  private tipEl;
1693
1705
  private tipPos;
@@ -1703,7 +1715,7 @@ declare class SeatingChart {
1703
1715
  /**
1704
1716
  * Camera x/y/scale is renderer-local and deliberately absent from the native
1705
1717
  * picker snapshot. Keep pan and pinch frames on the canvas; only a semantic
1706
- * rung transition needs to wake native chrome.
1718
+ * rung or step-out transition needs to wake native chrome.
1707
1719
  */
1708
1720
  private handleViewChange;
1709
1721
  /** Record the current rung before publishing an explicit state mutation. */
@@ -3478,6 +3490,8 @@ declare class SeatPicker implements GaPromptPicker {
3478
3490
  /** Remove one server-held ticket while keeping the rest of the hold active. */
3479
3491
  removeHeldTicket(label: string): Promise<boolean>;
3480
3492
  bestAvailable(qty: number, categoryKey?: string, opts?: SeatPickerBestAvailableOptions): Promise<HoldResult | null>;
3493
+ /** @internal Exact, throwing variant for composed SDK surfaces. */
3494
+ bestAvailableOrThrow(qty: number, categoryKey?: string, opts?: SeatPickerBestAvailableOptions): Promise<HoldResult | null>;
3481
3495
  release(): Promise<void>;
3482
3496
  /**
3483
3497
  * Realtime for an access-scoped picker.
@@ -3915,7 +3929,7 @@ declare class PerformanceGroupPicker {
3915
3929
  private checkout;
3916
3930
  }
3917
3931
 
3918
- type SeasonOperationState = 'preparing' | 'commit_pending' | 'committed' | 'abort_pending' | 'aborted' | 'partial_terminal' | 'expired' | 'booked';
3932
+ type SeasonOperationState = 'preparing' | 'commit_pending' | 'committed' | 'expire_pending' | 'booking_pending' | 'abort_pending' | 'aborted' | 'partial_terminal' | 'expired' | 'booked';
3919
3933
  interface SeasonDescriptor {
3920
3934
  key: string;
3921
3935
  name: string;
@@ -3992,7 +4006,7 @@ declare class SeasonRecoveryTimeoutError extends Error {
3992
4006
  }
3993
4007
 
3994
4008
  interface SeasonStatusEvent {
3995
- kind: 'loading' | 'ready' | 'pending' | 'held' | 'released' | 'renewal_intent' | 'partial_terminal' | 'failed';
4009
+ kind: 'loading' | 'ready' | 'pending' | 'held' | 'booked' | 'released' | 'renewal_intent' | 'partial_terminal' | 'failed';
3996
4010
  message: string;
3997
4011
  operationId?: string;
3998
4012
  }
@@ -4006,6 +4020,14 @@ interface SeasonOfferPresentation {
4006
4020
  benefits?: readonly string[];
4007
4021
  renewalLabel?: string;
4008
4022
  }
4023
+ interface SeasonBestAvailableOptions {
4024
+ categoryKey?: string;
4025
+ zoneId?: string;
4026
+ /** Any-of accommodation filter, evaluated across every Event in the Plan. */
4027
+ accessibility?: readonly AccessibilityType[];
4028
+ /** Refuse scattered fallback when no contiguous block of `qty` exists. */
4029
+ requireContiguous?: boolean;
4030
+ }
4009
4031
  interface SeasonPickerOptions {
4010
4032
  container: string | HTMLElement;
4011
4033
  season: string;
@@ -4055,6 +4077,7 @@ declare class SeasonPicker {
4055
4077
  constructor(options: SeasonPickerOptions);
4056
4078
  render(): Promise<this>;
4057
4079
  holdSameSeat(labels: readonly string[], operationId: string): Promise<SeasonCheckoutHandoff>;
4080
+ holdBestAvailable(qty: number, operationId: string, options?: SeasonBestAvailableOptions): Promise<SeasonCheckoutHandoff>;
4058
4081
  restoreOperation(operationId: string): Promise<SeasonCheckoutHandoff | null>;
4059
4082
  release(releaseActionId: string): Promise<void>;
4060
4083
  createRenewalIntent(offerId: string): Promise<SeasonRenewalIntent>;
@@ -4103,4 +4126,4 @@ interface AttachPickerFrameOptions {
4103
4126
  */
4104
4127
  declare function attachPickerFrame(iframe: HTMLIFrameElement, opts?: AttachPickerFrameOptions): () => void;
4105
4128
 
4106
- 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 GAPromptRequest, type GaPromptTier, type HoldConflict, type HoldLineItem, type HoldResult, type OrderStatusResult, type PaymentOptionsReason, type PaymentOptionsResult, type PaymentProviderName, type PerformanceGroupAvailability, type PerformanceGroupCheckoutHandoff, type PerformanceGroupDescriptor, PerformanceGroupDestroyedError, type PerformanceGroupHold, type PerformanceGroupHoldAllocation, type PerformanceGroupOperationEvent, type PerformanceGroupOperationState, PerformanceGroupPicker, type PerformanceGroupPickerOptions, type PerformanceGroupRecoveryState, type PerformanceGroupSeatAllocation, type PerformanceGroupSelectionMode, type PerformanceGroupStatusEvent, 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, SeasonApiError, type SeasonAvailability, type SeasonCheckoutHandoff, type SeasonDescriptor, type SeasonOfferPresentation, type SeasonOperation, type SeasonOperationState, SeasonPicker, type SeasonPickerOptions, SeasonRecoveryTimeoutError, type SeasonRenewalIntent, type SeasonStatusEvent, SeatPicker, type SeatPickerBestAvailableOptions, type SeatPickerBuyerView, type SeatPickerBuyerViewOptions, type SeatPickerOptions, type SeatPickerPricing, type SeatPickerTheme, type SeatPickerWebMcpOptions, SeatingChart, type SeatingChartCallbackProp, type SeatingChartCallbacks, type SeatingChartHandle, type SeatingChartHandleMethod, type SeatingChartIdentityProp, type SeatingChartOptions, type SeatingChartSeatViewInfo, type SeatingChartValueProp, type SeatingChartValues, type SelectedObjectUnavailableEvent, type SelectedSeat, type StatusChange, type SubscribeTicket, ThemeMode, type TicketOfferAvailability, type TicketOfferPrice, type TicketOfferSummary, attachPickerFrame, bindSeatingChartHandle, buildSeatingChartOptions, createBuyerAccessContext, createControllerSink, parseTicketOfferAvailability, shortOperationReference, ticketOfferPrices };
4129
+ 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 GAPromptRequest, type GaPromptTier, type HoldConflict, type HoldLineItem, type HoldResult, type OrderStatusResult, type PaymentOptionsReason, type PaymentOptionsResult, type PaymentProviderName, type PerformanceGroupAvailability, type PerformanceGroupCheckoutHandoff, type PerformanceGroupDescriptor, PerformanceGroupDestroyedError, type PerformanceGroupHold, type PerformanceGroupHoldAllocation, type PerformanceGroupOperationEvent, type PerformanceGroupOperationState, PerformanceGroupPicker, type PerformanceGroupPickerOptions, type PerformanceGroupRecoveryState, type PerformanceGroupSeatAllocation, type PerformanceGroupSelectionMode, type PerformanceGroupStatusEvent, 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, SeasonApiError, type SeasonAvailability, type SeasonBestAvailableOptions, type SeasonCheckoutHandoff, type SeasonDescriptor, type SeasonOfferPresentation, type SeasonOperation, type SeasonOperationState, SeasonPicker, type SeasonPickerOptions, SeasonRecoveryTimeoutError, type SeasonRenewalIntent, type SeasonStatusEvent, SeatPicker, type SeatPickerBestAvailableOptions, type SeatPickerBuyerView, type SeatPickerBuyerViewOptions, type SeatPickerOptions, type SeatPickerPricing, type SeatPickerTheme, type SeatPickerWebMcpOptions, SeatingChart, type SeatingChartCallbackProp, type SeatingChartCallbacks, type SeatingChartHandle, type SeatingChartHandleMethod, type SeatingChartIdentityProp, type SeatingChartOptions, type SeatingChartSeatViewInfo, type SeatingChartValueProp, type SeatingChartValues, type SelectedObjectUnavailableEvent, type SelectedSeat, type StatusChange, type SubscribeTicket, ThemeMode, type TicketOfferAvailability, type TicketOfferPrice, type TicketOfferSummary, attachPickerFrame, bindSeatingChartHandle, buildSeatingChartOptions, createBuyerAccessContext, createControllerSink, parseTicketOfferAvailability, shortOperationReference, ticketOfferPrices };