@seatlayer/js 0.71.3 → 0.71.4
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.cjs +14 -14
- package/dist/index.d.cts +39 -3
- package/dist/index.d.ts +39 -3
- package/dist/index.js +13 -13
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PickerSeat, PickerGAArea, PickerMapTheme, PickerTransport, PickerSelectionValidator, RendererViewMode, PickerSelectionValidity, SeatHoverDetails, SectionSummary, ChartTheme, LodRung, PickerController, AccessibilityType, ExpandedSeat } from '@seatlayer/core';
|
|
1
|
+
import { PickerSeat, PickerGAArea, PickerMapTheme, PickerTransport, PickerSelectionValidator, RendererViewMode, PickerSelectionValidity, SeatHoverDetails, FloorLabelStyle, SectionSummary, ChartTheme, LodRung, PickerController, AccessibilityType, ExpandedSeat } from '@seatlayer/core';
|
|
2
2
|
export { ExpandedSeat, PickerMapTheme, PickerSelectionValidator, PickerSelectionValidity, PickerSelectionViolation, RendererViewMode, SeatHoverDetails } from '@seatlayer/core';
|
|
3
3
|
import { T as ThemeMode } from './channelsMode-goczEzyt.cjs';
|
|
4
4
|
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 EventCategoryAssignmentResult, M as EventScopedManageToken, N as EventTableBookingMode, O as EventTableBookingResult, P as IntentSwitchBlockedDetails, Q as InventoryBooking, R as InventoryBookingActivity, S as InventoryBookingDetail, U as InventoryBookingObject, V as InventoryBookingState, W as InventoryBookingsPage, X as InventoryBookingsQuery, Y as LogEntry, Z as LogPage, _ as ManageApi, $ as ManageApiError, a0 as ReportByStatus, a1 as ReportCategoryMeta, a2 as ReportCategoryRow, a3 as ReportResult, a4 as SeatManager, a5 as SeatManagerActionResult, a6 as SeatManagerActivity, a7 as SeatManagerCapability, a8 as SeatManagerConnection, a9 as SeatManagerFilteredSection, aa as SeatManagerMode, ab as SeatManagerOptions, ac as SeatManagerSelectionValidity, ad as SeatManagerTallies, ae as SelectionSourceRow } from './channelsMode-goczEzyt.cjs';
|
|
@@ -620,6 +620,24 @@ interface GaPromptPicker {
|
|
|
620
620
|
|
|
621
621
|
type SeatingChartBuyerView = 'map' | 'venue3d';
|
|
622
622
|
type SeatingChartNavigationMode = 'orbit' | 'pan';
|
|
623
|
+
/** What the 2D seat-view panorama is showing, and what it would say about it. */
|
|
624
|
+
interface SeatingChartSeatViewInfo {
|
|
625
|
+
seatId: string;
|
|
626
|
+
/** e.g. `View from Stalls D · C-6`. */
|
|
627
|
+
title: string;
|
|
628
|
+
/** The disclosure line: an authored capture's provenance, or the generated
|
|
629
|
+
* illustration's distance-from-stage note. */
|
|
630
|
+
caption: string;
|
|
631
|
+
/** The badge word — the localized `Real 360°` or `Preview`. */
|
|
632
|
+
badge: string;
|
|
633
|
+
/** True for an AUTHORED capture of the real seat; false for one the engine
|
|
634
|
+
* drew from the venue's geometry. */
|
|
635
|
+
real: boolean;
|
|
636
|
+
/** True when the panorama was synthesised rather than fetched. */
|
|
637
|
+
generated: boolean;
|
|
638
|
+
/** The pointer instruction the modal would print over the image. */
|
|
639
|
+
dragHint: string;
|
|
640
|
+
}
|
|
623
641
|
|
|
624
642
|
/**
|
|
625
643
|
* Buyer-safe ticket-offer availability shared by the canonical picker and the
|
|
@@ -1381,6 +1399,10 @@ interface SeatingChartPickerState {
|
|
|
1381
1399
|
name: string;
|
|
1382
1400
|
}>;
|
|
1383
1401
|
activeFloorId: string | null;
|
|
1402
|
+
/** `'all'` = the stacked whole-venue view; `'single'` = one floor. */
|
|
1403
|
+
floorMode: 'all' | 'single';
|
|
1404
|
+
/** How the stacked view marks each level. */
|
|
1405
|
+
floorLabelStyle: FloorLabelStyle;
|
|
1384
1406
|
rung: LodRung;
|
|
1385
1407
|
focusedSectionId: string | null;
|
|
1386
1408
|
focusedSection: SectionSummary | null;
|
|
@@ -1582,11 +1604,21 @@ interface SeatingChartOptions {
|
|
|
1582
1604
|
* camera dock come from inside the lazy venue chunk, where an embedding
|
|
1583
1605
|
* host had no way to reach them — so a native shell that already draws all
|
|
1584
1606
|
* three drew them twice. Absent or `true` = drawn, exactly as before. */
|
|
1607
|
+
/** The 2D panorama's title/caption/badge join the 3D pieces here — the full
|
|
1608
|
+
* table is bridge/nativeChrome.ts. */
|
|
1585
1609
|
chrome?: {
|
|
1586
1610
|
view3dCaption?: boolean;
|
|
1587
1611
|
view3dSeatStepper?: boolean;
|
|
1588
1612
|
view3dControlDock?: boolean;
|
|
1613
|
+
seatViewTitle?: boolean;
|
|
1614
|
+
seatViewCaption?: boolean;
|
|
1615
|
+
seatViewBadge?: boolean;
|
|
1589
1616
|
};
|
|
1617
|
+
/** The 2D panorama opened, or closed (`null`). Fires whether or not the web
|
|
1618
|
+
* drew its words, so a host that suppressed them has the exact strings. */
|
|
1619
|
+
onSeatViewChange?: (info: SeatingChartSeatViewInfo | null) => void;
|
|
1620
|
+
/** How the stacked "All floors" view marks each level. Default `'number'`. */
|
|
1621
|
+
floorLabelStyle?: FloorLabelStyle;
|
|
1590
1622
|
/**
|
|
1591
1623
|
* Multi-floor charts only: fires when the buyer taps a deck in the stacked
|
|
1592
1624
|
* 3D view, after the picker switches to that floor — lets the host page sync
|
|
@@ -1829,8 +1861,12 @@ declare class SeatingChart {
|
|
|
1829
1861
|
id: string;
|
|
1830
1862
|
name: string;
|
|
1831
1863
|
}[];
|
|
1832
|
-
/** Switch the shown floor (2D)
|
|
1864
|
+
/** Switch the shown floor (2D), or `'all'` for the stacked whole-venue view.
|
|
1865
|
+
* One control, not two: a strip whose first chip is "All floors" would
|
|
1866
|
+
* otherwise need a separate command for that one chip. */
|
|
1833
1867
|
setFloor(floorId: string): void;
|
|
1868
|
+
/** How the stacked view marks each level: a `G/1/2` badge, or floor names. */
|
|
1869
|
+
setFloorLabelStyle(style: FloorLabelStyle): void;
|
|
1834
1870
|
/** Toggle colorblind-safe rendering at runtime (see options.colorblindSafe). */
|
|
1835
1871
|
setColorblindSafe(on: boolean): void;
|
|
1836
1872
|
/** Switch the 2D canvas projection.
|
|
@@ -4002,4 +4038,4 @@ interface AttachPickerFrameOptions {
|
|
|
4002
4038
|
*/
|
|
4003
4039
|
declare function attachPickerFrame(iframe: HTMLIFrameElement, opts?: AttachPickerFrameOptions): () => void;
|
|
4004
4040
|
|
|
4005
|
-
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 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 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 };
|
|
4041
|
+
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 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PickerSeat, PickerGAArea, PickerMapTheme, PickerTransport, PickerSelectionValidator, RendererViewMode, PickerSelectionValidity, SeatHoverDetails, SectionSummary, ChartTheme, LodRung, PickerController, AccessibilityType, ExpandedSeat } from '@seatlayer/core';
|
|
1
|
+
import { PickerSeat, PickerGAArea, PickerMapTheme, PickerTransport, PickerSelectionValidator, RendererViewMode, PickerSelectionValidity, SeatHoverDetails, FloorLabelStyle, SectionSummary, ChartTheme, LodRung, PickerController, AccessibilityType, ExpandedSeat } from '@seatlayer/core';
|
|
2
2
|
export { ExpandedSeat, PickerMapTheme, PickerSelectionValidator, PickerSelectionValidity, PickerSelectionViolation, RendererViewMode, SeatHoverDetails } from '@seatlayer/core';
|
|
3
3
|
import { T as ThemeMode } from './channelsMode-goczEzyt.js';
|
|
4
4
|
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 EventCategoryAssignmentResult, M as EventScopedManageToken, N as EventTableBookingMode, O as EventTableBookingResult, P as IntentSwitchBlockedDetails, Q as InventoryBooking, R as InventoryBookingActivity, S as InventoryBookingDetail, U as InventoryBookingObject, V as InventoryBookingState, W as InventoryBookingsPage, X as InventoryBookingsQuery, Y as LogEntry, Z as LogPage, _ as ManageApi, $ as ManageApiError, a0 as ReportByStatus, a1 as ReportCategoryMeta, a2 as ReportCategoryRow, a3 as ReportResult, a4 as SeatManager, a5 as SeatManagerActionResult, a6 as SeatManagerActivity, a7 as SeatManagerCapability, a8 as SeatManagerConnection, a9 as SeatManagerFilteredSection, aa as SeatManagerMode, ab as SeatManagerOptions, ac as SeatManagerSelectionValidity, ad as SeatManagerTallies, ae as SelectionSourceRow } from './channelsMode-goczEzyt.js';
|
|
@@ -620,6 +620,24 @@ interface GaPromptPicker {
|
|
|
620
620
|
|
|
621
621
|
type SeatingChartBuyerView = 'map' | 'venue3d';
|
|
622
622
|
type SeatingChartNavigationMode = 'orbit' | 'pan';
|
|
623
|
+
/** What the 2D seat-view panorama is showing, and what it would say about it. */
|
|
624
|
+
interface SeatingChartSeatViewInfo {
|
|
625
|
+
seatId: string;
|
|
626
|
+
/** e.g. `View from Stalls D · C-6`. */
|
|
627
|
+
title: string;
|
|
628
|
+
/** The disclosure line: an authored capture's provenance, or the generated
|
|
629
|
+
* illustration's distance-from-stage note. */
|
|
630
|
+
caption: string;
|
|
631
|
+
/** The badge word — the localized `Real 360°` or `Preview`. */
|
|
632
|
+
badge: string;
|
|
633
|
+
/** True for an AUTHORED capture of the real seat; false for one the engine
|
|
634
|
+
* drew from the venue's geometry. */
|
|
635
|
+
real: boolean;
|
|
636
|
+
/** True when the panorama was synthesised rather than fetched. */
|
|
637
|
+
generated: boolean;
|
|
638
|
+
/** The pointer instruction the modal would print over the image. */
|
|
639
|
+
dragHint: string;
|
|
640
|
+
}
|
|
623
641
|
|
|
624
642
|
/**
|
|
625
643
|
* Buyer-safe ticket-offer availability shared by the canonical picker and the
|
|
@@ -1381,6 +1399,10 @@ interface SeatingChartPickerState {
|
|
|
1381
1399
|
name: string;
|
|
1382
1400
|
}>;
|
|
1383
1401
|
activeFloorId: string | null;
|
|
1402
|
+
/** `'all'` = the stacked whole-venue view; `'single'` = one floor. */
|
|
1403
|
+
floorMode: 'all' | 'single';
|
|
1404
|
+
/** How the stacked view marks each level. */
|
|
1405
|
+
floorLabelStyle: FloorLabelStyle;
|
|
1384
1406
|
rung: LodRung;
|
|
1385
1407
|
focusedSectionId: string | null;
|
|
1386
1408
|
focusedSection: SectionSummary | null;
|
|
@@ -1582,11 +1604,21 @@ interface SeatingChartOptions {
|
|
|
1582
1604
|
* camera dock come from inside the lazy venue chunk, where an embedding
|
|
1583
1605
|
* host had no way to reach them — so a native shell that already draws all
|
|
1584
1606
|
* three drew them twice. Absent or `true` = drawn, exactly as before. */
|
|
1607
|
+
/** The 2D panorama's title/caption/badge join the 3D pieces here — the full
|
|
1608
|
+
* table is bridge/nativeChrome.ts. */
|
|
1585
1609
|
chrome?: {
|
|
1586
1610
|
view3dCaption?: boolean;
|
|
1587
1611
|
view3dSeatStepper?: boolean;
|
|
1588
1612
|
view3dControlDock?: boolean;
|
|
1613
|
+
seatViewTitle?: boolean;
|
|
1614
|
+
seatViewCaption?: boolean;
|
|
1615
|
+
seatViewBadge?: boolean;
|
|
1589
1616
|
};
|
|
1617
|
+
/** The 2D panorama opened, or closed (`null`). Fires whether or not the web
|
|
1618
|
+
* drew its words, so a host that suppressed them has the exact strings. */
|
|
1619
|
+
onSeatViewChange?: (info: SeatingChartSeatViewInfo | null) => void;
|
|
1620
|
+
/** How the stacked "All floors" view marks each level. Default `'number'`. */
|
|
1621
|
+
floorLabelStyle?: FloorLabelStyle;
|
|
1590
1622
|
/**
|
|
1591
1623
|
* Multi-floor charts only: fires when the buyer taps a deck in the stacked
|
|
1592
1624
|
* 3D view, after the picker switches to that floor — lets the host page sync
|
|
@@ -1829,8 +1861,12 @@ declare class SeatingChart {
|
|
|
1829
1861
|
id: string;
|
|
1830
1862
|
name: string;
|
|
1831
1863
|
}[];
|
|
1832
|
-
/** Switch the shown floor (2D)
|
|
1864
|
+
/** Switch the shown floor (2D), or `'all'` for the stacked whole-venue view.
|
|
1865
|
+
* One control, not two: a strip whose first chip is "All floors" would
|
|
1866
|
+
* otherwise need a separate command for that one chip. */
|
|
1833
1867
|
setFloor(floorId: string): void;
|
|
1868
|
+
/** How the stacked view marks each level: a `G/1/2` badge, or floor names. */
|
|
1869
|
+
setFloorLabelStyle(style: FloorLabelStyle): void;
|
|
1834
1870
|
/** Toggle colorblind-safe rendering at runtime (see options.colorblindSafe). */
|
|
1835
1871
|
setColorblindSafe(on: boolean): void;
|
|
1836
1872
|
/** Switch the 2D canvas projection.
|
|
@@ -4002,4 +4038,4 @@ interface AttachPickerFrameOptions {
|
|
|
4002
4038
|
*/
|
|
4003
4039
|
declare function attachPickerFrame(iframe: HTMLIFrameElement, opts?: AttachPickerFrameOptions): () => void;
|
|
4004
4040
|
|
|
4005
|
-
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 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 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 };
|
|
4041
|
+
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 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 };
|