@seatlayer/js 0.67.14 → 0.67.15
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/README.md +207 -26
- package/dist/index.cjs +18 -9
- package/dist/index.d.cts +259 -2
- package/dist/index.d.ts +259 -2
- package/dist/index.js +17 -8
- package/package.json +15 -6
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PickerSeat, PickerGAArea, PickerSelectionValidator, RendererViewMode, SeatHoverDetails, PickerSelectionValidity,
|
|
1
|
+
import { PickerSeat, PickerGAArea, PickerSelectionValidator, PickerMapTheme, RendererViewMode, SeatHoverDetails, PickerSelectionValidity, SectionSummary, ChartTheme, LodRung, PickerTransport } from '@seatlayer/core';
|
|
2
2
|
export { ExpandedSeat, PickerMapTheme, PickerSelectionValidator, PickerSelectionValidity, PickerSelectionViolation, RendererViewMode, SeatHoverDetails } from '@seatlayer/core';
|
|
3
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 EventCategoryAssignmentResult, M as EventScopedManageToken, N as EventTableBookingMode, O as EventTableBookingResult, P as IntentSwitchBlockedDetails, Q as InventoryBooking, R as InventoryBookingActivity, S as InventoryBookingDetail, T as InventoryBookingObject, U as InventoryBookingState, V as InventoryBookingsPage, W as InventoryBookingsQuery, X as LogEntry, Y as LogPage, Z as ManageApi, _ as ManageApiError, $ as ReportByStatus, a0 as ReportCategoryMeta, a1 as ReportCategoryRow, a2 as ReportResult, a3 as SeatManager, a4 as SeatManagerActionResult, a5 as SeatManagerActivity, a6 as SeatManagerCapability, a7 as SeatManagerConnection, a8 as SeatManagerFilteredSection, a9 as SeatManagerMode, aa as SeatManagerOptions, ab as SeatManagerSelectionValidity, ac as SeatManagerTallies, ad as SelectionSourceRow } from './channelsMode-2z9HBOAX.cjs';
|
|
4
4
|
|
|
@@ -76,6 +76,8 @@ type BuyerAccessUnavailableReason =
|
|
|
76
76
|
| 'group_mismatch'
|
|
77
77
|
/** 403 `buyer_access_mode_mismatch` (test bearer on a live event or v.v.). */
|
|
78
78
|
| 'mode_mismatch'
|
|
79
|
+
/** 403 `buyer_access_environment_mismatch` (session belongs to another environment). */
|
|
80
|
+
| 'environment_mismatch'
|
|
79
81
|
/** 403 `channel_access_denied`. */
|
|
80
82
|
| 'channel_denied'
|
|
81
83
|
/** 422 `invalid_channel_scope` — an integration configuration error. */
|
|
@@ -642,6 +644,101 @@ interface GAAreaAvailability {
|
|
|
642
644
|
price: number;
|
|
643
645
|
}>;
|
|
644
646
|
}
|
|
647
|
+
/**
|
|
648
|
+
* Serializable state exposed to hosted native picker chrome. It deliberately
|
|
649
|
+
* contains buyer-display data only: never API keys, buyer-access bearers,
|
|
650
|
+
* provider callbacks, or the active hold id.
|
|
651
|
+
*/
|
|
652
|
+
interface SeatingChartPickerState {
|
|
653
|
+
event: {
|
|
654
|
+
key: string;
|
|
655
|
+
name: string;
|
|
656
|
+
venue: string | null;
|
|
657
|
+
startsAt: number | null;
|
|
658
|
+
timezone: string | null;
|
|
659
|
+
currency: string;
|
|
660
|
+
locale: string | null;
|
|
661
|
+
posterUrl: string | null;
|
|
662
|
+
mode: 'live' | 'test';
|
|
663
|
+
salesClosed: boolean;
|
|
664
|
+
};
|
|
665
|
+
branding: {
|
|
666
|
+
accent?: ChartTheme['accent'];
|
|
667
|
+
accentInk?: ChartTheme['accentInk'];
|
|
668
|
+
background?: ChartTheme['background'];
|
|
669
|
+
textColor?: ChartTheme['textColor'];
|
|
670
|
+
brandName?: ChartTheme['brandName'];
|
|
671
|
+
logoUrl?: ChartTheme['logoUrl'];
|
|
672
|
+
/** Native must render SeatLayer attribution when it owns chrome and this is true. */
|
|
673
|
+
attributionRequired: boolean;
|
|
674
|
+
};
|
|
675
|
+
features: {
|
|
676
|
+
ga: boolean;
|
|
677
|
+
tiers: boolean;
|
|
678
|
+
floors: boolean;
|
|
679
|
+
zones: boolean;
|
|
680
|
+
sections: boolean;
|
|
681
|
+
bestAvailable: boolean;
|
|
682
|
+
accessibilityFilter: boolean;
|
|
683
|
+
limitedViewFilter: boolean;
|
|
684
|
+
};
|
|
685
|
+
catalog: {
|
|
686
|
+
categories: Array<{
|
|
687
|
+
key: string;
|
|
688
|
+
label: string;
|
|
689
|
+
color: string;
|
|
690
|
+
price: number;
|
|
691
|
+
available: number;
|
|
692
|
+
tiers: Array<{
|
|
693
|
+
id: string;
|
|
694
|
+
name: string;
|
|
695
|
+
price: number;
|
|
696
|
+
currency?: string;
|
|
697
|
+
}>;
|
|
698
|
+
}>;
|
|
699
|
+
zones: Array<{
|
|
700
|
+
id: string;
|
|
701
|
+
label: string;
|
|
702
|
+
color?: string;
|
|
703
|
+
}>;
|
|
704
|
+
sections: Array<{
|
|
705
|
+
id: string;
|
|
706
|
+
label: string;
|
|
707
|
+
displayLabel?: string;
|
|
708
|
+
zoneId?: string;
|
|
709
|
+
}>;
|
|
710
|
+
gaAreas: GAAreaAvailability[];
|
|
711
|
+
bestAvailableZones: Array<{
|
|
712
|
+
id: string;
|
|
713
|
+
label: string;
|
|
714
|
+
}>;
|
|
715
|
+
};
|
|
716
|
+
map: {
|
|
717
|
+
floors: Array<{
|
|
718
|
+
id: string;
|
|
719
|
+
name: string;
|
|
720
|
+
}>;
|
|
721
|
+
activeFloorId: string | null;
|
|
722
|
+
rung: LodRung;
|
|
723
|
+
focusedSectionId: string | null;
|
|
724
|
+
focusedSection: SectionSummary | null;
|
|
725
|
+
viewMode: RendererViewMode;
|
|
726
|
+
colorblindSafe: boolean;
|
|
727
|
+
categoryFilter: string[] | null;
|
|
728
|
+
accessibilityFilter: string[] | null;
|
|
729
|
+
hideLimitedView: boolean;
|
|
730
|
+
};
|
|
731
|
+
selection: {
|
|
732
|
+
seats: SelectedSeat[];
|
|
733
|
+
validity: PickerSelectionValidity | null;
|
|
734
|
+
maxSelection: number;
|
|
735
|
+
};
|
|
736
|
+
access: {
|
|
737
|
+
configured: boolean;
|
|
738
|
+
status: 'public' | 'ready' | 'expired' | 'unavailable';
|
|
739
|
+
reason?: string;
|
|
740
|
+
};
|
|
741
|
+
}
|
|
645
742
|
interface SeatingChartOptions {
|
|
646
743
|
/** CSS selector or an HTMLElement to render into. */
|
|
647
744
|
container: string | HTMLElement;
|
|
@@ -714,6 +811,8 @@ interface SeatingChartOptions {
|
|
|
714
811
|
* Toggleable later with setColorblindSafe().
|
|
715
812
|
*/
|
|
716
813
|
colorblindSafe?: boolean;
|
|
814
|
+
/** Host-authoritative colors for the drawn canvas, separate from native chrome. */
|
|
815
|
+
mapTheme?: PickerMapTheme;
|
|
717
816
|
/** Initial canvas projection.
|
|
718
817
|
* @deprecated `'isometric'` and `'perspective'` are retired in favour of the
|
|
719
818
|
* real 3D venue view (`setBuyerView('venue3d')`); they remain accepted for
|
|
@@ -725,6 +824,10 @@ interface SeatingChartOptions {
|
|
|
725
824
|
* to draw your own popover from onSeatHover.
|
|
726
825
|
*/
|
|
727
826
|
seatTooltip?: boolean;
|
|
827
|
+
/** Internal hosted-runtime control. Defaults true for direct web embeds. */
|
|
828
|
+
showTestModeIndicator?: boolean;
|
|
829
|
+
/** Internal hosted-runtime control. Defaults true, subject to white-label entitlement. */
|
|
830
|
+
showAttribution?: boolean;
|
|
728
831
|
/**
|
|
729
832
|
* Seat hover with everything a popover needs (category label/color, resolved
|
|
730
833
|
* tier-aware price, live status, currency); null on hover-out. Fires whether
|
|
@@ -793,6 +896,16 @@ interface SeatingChartOptions {
|
|
|
793
896
|
* its own floor UI (tabs, labels) with the map.
|
|
794
897
|
*/
|
|
795
898
|
onDeckTap?: (floorId: string) => void;
|
|
899
|
+
/** Big-venue section focus state for host-owned navigation chrome. */
|
|
900
|
+
onSectionFocus?: (summary: SectionSummary | null) => void;
|
|
901
|
+
/** Availability changed after a live frame or explicit refresh. */
|
|
902
|
+
onStatusChange?: () => void;
|
|
903
|
+
/** The server closed sales for this event. */
|
|
904
|
+
onSalesClosed?: () => void;
|
|
905
|
+
/** A programmatic/native map-control action changed serializable map state. */
|
|
906
|
+
onMapStateChange?: () => void;
|
|
907
|
+
/** Pan/zoom/resize settled; useful for host overlays and native map controls. */
|
|
908
|
+
onViewChange?: () => void;
|
|
796
909
|
/**
|
|
797
910
|
* Non-blocking, localized selection advice — currently the orphan-seat hint
|
|
798
911
|
* (the selection would strand a single free seat between taken neighbors).
|
|
@@ -811,6 +924,14 @@ declare class SeatingChart {
|
|
|
811
924
|
private eventLocale;
|
|
812
925
|
private rendered;
|
|
813
926
|
private mode_;
|
|
927
|
+
private eventInfo;
|
|
928
|
+
private maxSelection_;
|
|
929
|
+
private colorblindSafe_;
|
|
930
|
+
private categoryFilter_;
|
|
931
|
+
private accessibilityFilter_;
|
|
932
|
+
private hideLimitedView_;
|
|
933
|
+
private focusedSection_;
|
|
934
|
+
private accessState_;
|
|
814
935
|
private tipEl;
|
|
815
936
|
private tipPos;
|
|
816
937
|
private onTipMove;
|
|
@@ -869,6 +990,22 @@ declare class SeatingChart {
|
|
|
869
990
|
*/
|
|
870
991
|
setLocale(next: string | null | undefined): Promise<string>;
|
|
871
992
|
getMode(): 'live' | 'test' | null;
|
|
993
|
+
/** Atomic, token-free display state for native-owned picker chrome. */
|
|
994
|
+
getPickerState(): SeatingChartPickerState;
|
|
995
|
+
getCategoryAvailability(): Record<string, number>;
|
|
996
|
+
getBestAvailableZones(): Array<{
|
|
997
|
+
id: string;
|
|
998
|
+
label: string;
|
|
999
|
+
}>;
|
|
1000
|
+
getActiveFloorId(): string | null;
|
|
1001
|
+
getRung(): LodRung;
|
|
1002
|
+
getFocusedSection(): string | null;
|
|
1003
|
+
focusSection(sectionId: string): void;
|
|
1004
|
+
overview(): void;
|
|
1005
|
+
setRung(rung: LodRung): void;
|
|
1006
|
+
setCategoryFilter(categoryKeys: string[] | null, focus?: boolean): void;
|
|
1007
|
+
setAccessibilityFilter(types: string[] | null): void;
|
|
1008
|
+
setCommercialLimitedFilter(on: boolean): void;
|
|
872
1009
|
/** Current selection with prices resolved from the chart categories. */
|
|
873
1010
|
getSelection(): SelectedSeat[];
|
|
874
1011
|
/** Select free objects by engine id or public label. Returns newly selected objects. */
|
|
@@ -951,6 +1088,15 @@ declare class SeatingChart {
|
|
|
951
1088
|
* reverts to the default tier.
|
|
952
1089
|
*/
|
|
953
1090
|
setSeatTier(seatId: string, tierId: string | null): void;
|
|
1091
|
+
/** Confirm/update an unheld variable table's guest quantity locally. */
|
|
1092
|
+
setTableQuantity(label: string, quantity: number): boolean;
|
|
1093
|
+
/**
|
|
1094
|
+
* Atomically replace an active variable-table hold with a new guest count.
|
|
1095
|
+
* Returns null for an inapplicable/invalid quantity or a refused replacement.
|
|
1096
|
+
*/
|
|
1097
|
+
replaceTableQuantity(label: string, quantity: number, ttlMs?: number): Promise<HoldResult | null>;
|
|
1098
|
+
/** @internal Throwing variant used by the correlated native bridge. */
|
|
1099
|
+
replaceTableQuantityOrThrow(label: string, quantity: number, ttlMs?: number): Promise<HoldResult | null>;
|
|
954
1100
|
/**
|
|
955
1101
|
* Floors of a multi-floor chart — `[{ id, name }]` (single-floor charts
|
|
956
1102
|
* return one entry; empty before render()). Pair with setFloor() to build a
|
|
@@ -990,6 +1136,8 @@ declare class SeatingChart {
|
|
|
990
1136
|
* and its own legacy frames. Nothing about the public path changes.
|
|
991
1137
|
*/
|
|
992
1138
|
private startRealtime;
|
|
1139
|
+
/** Re-read live inventory without remounting or dropping buyer state. */
|
|
1140
|
+
refreshAvailability(): Promise<void>;
|
|
993
1141
|
/**
|
|
994
1142
|
* Re-acquire the buyer access session — call after your app has re-authorized
|
|
995
1143
|
* the buyer (a revoked session cannot be recovered any other way). Resolves
|
|
@@ -3230,6 +3378,115 @@ declare class PerformanceGroupPicker {
|
|
|
3230
3378
|
private checkout;
|
|
3231
3379
|
}
|
|
3232
3380
|
|
|
3381
|
+
type SeasonOperationState = 'preparing' | 'commit_pending' | 'committed' | 'abort_pending' | 'aborted' | 'partial_terminal' | 'expired' | 'booked';
|
|
3382
|
+
interface SeasonDescriptor {
|
|
3383
|
+
key: string;
|
|
3384
|
+
name: string;
|
|
3385
|
+
edition: string | null;
|
|
3386
|
+
mode: 'live' | 'test';
|
|
3387
|
+
currency: string;
|
|
3388
|
+
venue: string;
|
|
3389
|
+
timezone: string | null;
|
|
3390
|
+
audience: 'private' | 'embed_only' | 'discoverable';
|
|
3391
|
+
planActivationId: string;
|
|
3392
|
+
occurrenceCount: number;
|
|
3393
|
+
occurrences: Array<{
|
|
3394
|
+
position: number;
|
|
3395
|
+
eventKey: string;
|
|
3396
|
+
name: string;
|
|
3397
|
+
startsAt: number | null;
|
|
3398
|
+
}>;
|
|
3399
|
+
}
|
|
3400
|
+
interface SeasonAvailability {
|
|
3401
|
+
seats: Record<string, 'free' | 'blocked'>;
|
|
3402
|
+
partial: Record<string, string[]>;
|
|
3403
|
+
revision: string;
|
|
3404
|
+
comparisons: number;
|
|
3405
|
+
freeCount: number;
|
|
3406
|
+
blockedCount: number;
|
|
3407
|
+
}
|
|
3408
|
+
interface SeasonOperation {
|
|
3409
|
+
operationId: string;
|
|
3410
|
+
seasonId: string;
|
|
3411
|
+
kind: string;
|
|
3412
|
+
holdId: string;
|
|
3413
|
+
expiresAt: number;
|
|
3414
|
+
policy: 'fixed_inclusion_same_seat';
|
|
3415
|
+
state: SeasonOperationState;
|
|
3416
|
+
bookingRef: string | null;
|
|
3417
|
+
location: string;
|
|
3418
|
+
retryAfterSeconds: number;
|
|
3419
|
+
allocations: Array<{
|
|
3420
|
+
eventId: string;
|
|
3421
|
+
state: string;
|
|
3422
|
+
}>;
|
|
3423
|
+
}
|
|
3424
|
+
interface SeasonCheckoutHandoff {
|
|
3425
|
+
seasonKey: string;
|
|
3426
|
+
planActivationId: string;
|
|
3427
|
+
operationId: string;
|
|
3428
|
+
holdId: string;
|
|
3429
|
+
expiresAt: number;
|
|
3430
|
+
policy: 'fixed_inclusion_same_seat';
|
|
3431
|
+
state: SeasonOperationState;
|
|
3432
|
+
allocations: Array<{
|
|
3433
|
+
eventKey: string;
|
|
3434
|
+
state: string;
|
|
3435
|
+
}>;
|
|
3436
|
+
}
|
|
3437
|
+
interface SeasonRenewalIntent {
|
|
3438
|
+
offerId: string;
|
|
3439
|
+
state: 'intent_received';
|
|
3440
|
+
intentId: string;
|
|
3441
|
+
receivedAt: number;
|
|
3442
|
+
}
|
|
3443
|
+
declare class SeasonApiError extends Error {
|
|
3444
|
+
readonly code: string;
|
|
3445
|
+
readonly status: number;
|
|
3446
|
+
constructor(code: string, status: number);
|
|
3447
|
+
}
|
|
3448
|
+
declare class SeasonRecoveryTimeoutError extends Error {
|
|
3449
|
+
readonly operationId: string;
|
|
3450
|
+
constructor(operationId: string);
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
interface SeasonStatusEvent {
|
|
3454
|
+
kind: 'loading' | 'ready' | 'pending' | 'held' | 'released' | 'renewal_intent' | 'partial_terminal' | 'failed';
|
|
3455
|
+
message: string;
|
|
3456
|
+
operationId?: string;
|
|
3457
|
+
}
|
|
3458
|
+
interface SeasonPickerOptions {
|
|
3459
|
+
container: string | HTMLElement;
|
|
3460
|
+
season: string;
|
|
3461
|
+
apiBase?: string;
|
|
3462
|
+
buyerAccessTokenProvider?: BuyerAccessTokenProvider;
|
|
3463
|
+
buyerAccessToken?: string | BuyerAccessToken;
|
|
3464
|
+
initialOperationId?: string;
|
|
3465
|
+
recoveryTimeoutMs?: number;
|
|
3466
|
+
fetch?: typeof fetch;
|
|
3467
|
+
onHold?: (handoff: SeasonCheckoutHandoff) => void;
|
|
3468
|
+
onHoldChange?: (handoff: SeasonCheckoutHandoff | null) => void;
|
|
3469
|
+
onContinue?: (handoff: SeasonCheckoutHandoff) => void;
|
|
3470
|
+
onRenewalIntent?: (intent: SeasonRenewalIntent) => void;
|
|
3471
|
+
onAccessExpired?: (event: BuyerAccessExpiredEvent) => void;
|
|
3472
|
+
onAccessUnavailable?: (event: BuyerAccessUnavailableEvent) => void;
|
|
3473
|
+
onStatusChange?: (event: SeasonStatusEvent) => void;
|
|
3474
|
+
onError?: (error: unknown) => void;
|
|
3475
|
+
}
|
|
3476
|
+
declare class SeasonPicker {
|
|
3477
|
+
#private;
|
|
3478
|
+
constructor(options: SeasonPickerOptions);
|
|
3479
|
+
render(): Promise<this>;
|
|
3480
|
+
holdSameSeat(labels: readonly string[], operationId: string): Promise<SeasonCheckoutHandoff>;
|
|
3481
|
+
restoreOperation(operationId: string): Promise<SeasonCheckoutHandoff | null>;
|
|
3482
|
+
release(releaseActionId: string): Promise<void>;
|
|
3483
|
+
createRenewalIntent(offerId: string): Promise<SeasonRenewalIntent>;
|
|
3484
|
+
getDescriptor(): SeasonDescriptor | null;
|
|
3485
|
+
getAvailability(): SeasonAvailability | null;
|
|
3486
|
+
getHandoff(): SeasonCheckoutHandoff | null;
|
|
3487
|
+
destroy(): void;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3233
3490
|
/**
|
|
3234
3491
|
* Host-side helper for embedding the SeatLayer picker as an iframe.
|
|
3235
3492
|
*
|
|
@@ -3269,4 +3526,4 @@ interface AttachPickerFrameOptions {
|
|
|
3269
3526
|
*/
|
|
3270
3527
|
declare function attachPickerFrame(iframe: HTMLIFrameElement, opts?: AttachPickerFrameOptions): () => void;
|
|
3271
3528
|
|
|
3272
|
-
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, 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, shortOperationReference, ticketOfferPrices };
|
|
3529
|
+
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, 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, shortOperationReference, ticketOfferPrices };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PickerSeat, PickerGAArea, PickerSelectionValidator, RendererViewMode, SeatHoverDetails, PickerSelectionValidity,
|
|
1
|
+
import { PickerSeat, PickerGAArea, PickerSelectionValidator, PickerMapTheme, RendererViewMode, SeatHoverDetails, PickerSelectionValidity, SectionSummary, ChartTheme, LodRung, PickerTransport } from '@seatlayer/core';
|
|
2
2
|
export { ExpandedSeat, PickerMapTheme, PickerSelectionValidator, PickerSelectionValidity, PickerSelectionViolation, RendererViewMode, SeatHoverDetails } from '@seatlayer/core';
|
|
3
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 EventCategoryAssignmentResult, M as EventScopedManageToken, N as EventTableBookingMode, O as EventTableBookingResult, P as IntentSwitchBlockedDetails, Q as InventoryBooking, R as InventoryBookingActivity, S as InventoryBookingDetail, T as InventoryBookingObject, U as InventoryBookingState, V as InventoryBookingsPage, W as InventoryBookingsQuery, X as LogEntry, Y as LogPage, Z as ManageApi, _ as ManageApiError, $ as ReportByStatus, a0 as ReportCategoryMeta, a1 as ReportCategoryRow, a2 as ReportResult, a3 as SeatManager, a4 as SeatManagerActionResult, a5 as SeatManagerActivity, a6 as SeatManagerCapability, a7 as SeatManagerConnection, a8 as SeatManagerFilteredSection, a9 as SeatManagerMode, aa as SeatManagerOptions, ab as SeatManagerSelectionValidity, ac as SeatManagerTallies, ad as SelectionSourceRow } from './channelsMode-2z9HBOAX.js';
|
|
4
4
|
|
|
@@ -76,6 +76,8 @@ type BuyerAccessUnavailableReason =
|
|
|
76
76
|
| 'group_mismatch'
|
|
77
77
|
/** 403 `buyer_access_mode_mismatch` (test bearer on a live event or v.v.). */
|
|
78
78
|
| 'mode_mismatch'
|
|
79
|
+
/** 403 `buyer_access_environment_mismatch` (session belongs to another environment). */
|
|
80
|
+
| 'environment_mismatch'
|
|
79
81
|
/** 403 `channel_access_denied`. */
|
|
80
82
|
| 'channel_denied'
|
|
81
83
|
/** 422 `invalid_channel_scope` — an integration configuration error. */
|
|
@@ -642,6 +644,101 @@ interface GAAreaAvailability {
|
|
|
642
644
|
price: number;
|
|
643
645
|
}>;
|
|
644
646
|
}
|
|
647
|
+
/**
|
|
648
|
+
* Serializable state exposed to hosted native picker chrome. It deliberately
|
|
649
|
+
* contains buyer-display data only: never API keys, buyer-access bearers,
|
|
650
|
+
* provider callbacks, or the active hold id.
|
|
651
|
+
*/
|
|
652
|
+
interface SeatingChartPickerState {
|
|
653
|
+
event: {
|
|
654
|
+
key: string;
|
|
655
|
+
name: string;
|
|
656
|
+
venue: string | null;
|
|
657
|
+
startsAt: number | null;
|
|
658
|
+
timezone: string | null;
|
|
659
|
+
currency: string;
|
|
660
|
+
locale: string | null;
|
|
661
|
+
posterUrl: string | null;
|
|
662
|
+
mode: 'live' | 'test';
|
|
663
|
+
salesClosed: boolean;
|
|
664
|
+
};
|
|
665
|
+
branding: {
|
|
666
|
+
accent?: ChartTheme['accent'];
|
|
667
|
+
accentInk?: ChartTheme['accentInk'];
|
|
668
|
+
background?: ChartTheme['background'];
|
|
669
|
+
textColor?: ChartTheme['textColor'];
|
|
670
|
+
brandName?: ChartTheme['brandName'];
|
|
671
|
+
logoUrl?: ChartTheme['logoUrl'];
|
|
672
|
+
/** Native must render SeatLayer attribution when it owns chrome and this is true. */
|
|
673
|
+
attributionRequired: boolean;
|
|
674
|
+
};
|
|
675
|
+
features: {
|
|
676
|
+
ga: boolean;
|
|
677
|
+
tiers: boolean;
|
|
678
|
+
floors: boolean;
|
|
679
|
+
zones: boolean;
|
|
680
|
+
sections: boolean;
|
|
681
|
+
bestAvailable: boolean;
|
|
682
|
+
accessibilityFilter: boolean;
|
|
683
|
+
limitedViewFilter: boolean;
|
|
684
|
+
};
|
|
685
|
+
catalog: {
|
|
686
|
+
categories: Array<{
|
|
687
|
+
key: string;
|
|
688
|
+
label: string;
|
|
689
|
+
color: string;
|
|
690
|
+
price: number;
|
|
691
|
+
available: number;
|
|
692
|
+
tiers: Array<{
|
|
693
|
+
id: string;
|
|
694
|
+
name: string;
|
|
695
|
+
price: number;
|
|
696
|
+
currency?: string;
|
|
697
|
+
}>;
|
|
698
|
+
}>;
|
|
699
|
+
zones: Array<{
|
|
700
|
+
id: string;
|
|
701
|
+
label: string;
|
|
702
|
+
color?: string;
|
|
703
|
+
}>;
|
|
704
|
+
sections: Array<{
|
|
705
|
+
id: string;
|
|
706
|
+
label: string;
|
|
707
|
+
displayLabel?: string;
|
|
708
|
+
zoneId?: string;
|
|
709
|
+
}>;
|
|
710
|
+
gaAreas: GAAreaAvailability[];
|
|
711
|
+
bestAvailableZones: Array<{
|
|
712
|
+
id: string;
|
|
713
|
+
label: string;
|
|
714
|
+
}>;
|
|
715
|
+
};
|
|
716
|
+
map: {
|
|
717
|
+
floors: Array<{
|
|
718
|
+
id: string;
|
|
719
|
+
name: string;
|
|
720
|
+
}>;
|
|
721
|
+
activeFloorId: string | null;
|
|
722
|
+
rung: LodRung;
|
|
723
|
+
focusedSectionId: string | null;
|
|
724
|
+
focusedSection: SectionSummary | null;
|
|
725
|
+
viewMode: RendererViewMode;
|
|
726
|
+
colorblindSafe: boolean;
|
|
727
|
+
categoryFilter: string[] | null;
|
|
728
|
+
accessibilityFilter: string[] | null;
|
|
729
|
+
hideLimitedView: boolean;
|
|
730
|
+
};
|
|
731
|
+
selection: {
|
|
732
|
+
seats: SelectedSeat[];
|
|
733
|
+
validity: PickerSelectionValidity | null;
|
|
734
|
+
maxSelection: number;
|
|
735
|
+
};
|
|
736
|
+
access: {
|
|
737
|
+
configured: boolean;
|
|
738
|
+
status: 'public' | 'ready' | 'expired' | 'unavailable';
|
|
739
|
+
reason?: string;
|
|
740
|
+
};
|
|
741
|
+
}
|
|
645
742
|
interface SeatingChartOptions {
|
|
646
743
|
/** CSS selector or an HTMLElement to render into. */
|
|
647
744
|
container: string | HTMLElement;
|
|
@@ -714,6 +811,8 @@ interface SeatingChartOptions {
|
|
|
714
811
|
* Toggleable later with setColorblindSafe().
|
|
715
812
|
*/
|
|
716
813
|
colorblindSafe?: boolean;
|
|
814
|
+
/** Host-authoritative colors for the drawn canvas, separate from native chrome. */
|
|
815
|
+
mapTheme?: PickerMapTheme;
|
|
717
816
|
/** Initial canvas projection.
|
|
718
817
|
* @deprecated `'isometric'` and `'perspective'` are retired in favour of the
|
|
719
818
|
* real 3D venue view (`setBuyerView('venue3d')`); they remain accepted for
|
|
@@ -725,6 +824,10 @@ interface SeatingChartOptions {
|
|
|
725
824
|
* to draw your own popover from onSeatHover.
|
|
726
825
|
*/
|
|
727
826
|
seatTooltip?: boolean;
|
|
827
|
+
/** Internal hosted-runtime control. Defaults true for direct web embeds. */
|
|
828
|
+
showTestModeIndicator?: boolean;
|
|
829
|
+
/** Internal hosted-runtime control. Defaults true, subject to white-label entitlement. */
|
|
830
|
+
showAttribution?: boolean;
|
|
728
831
|
/**
|
|
729
832
|
* Seat hover with everything a popover needs (category label/color, resolved
|
|
730
833
|
* tier-aware price, live status, currency); null on hover-out. Fires whether
|
|
@@ -793,6 +896,16 @@ interface SeatingChartOptions {
|
|
|
793
896
|
* its own floor UI (tabs, labels) with the map.
|
|
794
897
|
*/
|
|
795
898
|
onDeckTap?: (floorId: string) => void;
|
|
899
|
+
/** Big-venue section focus state for host-owned navigation chrome. */
|
|
900
|
+
onSectionFocus?: (summary: SectionSummary | null) => void;
|
|
901
|
+
/** Availability changed after a live frame or explicit refresh. */
|
|
902
|
+
onStatusChange?: () => void;
|
|
903
|
+
/** The server closed sales for this event. */
|
|
904
|
+
onSalesClosed?: () => void;
|
|
905
|
+
/** A programmatic/native map-control action changed serializable map state. */
|
|
906
|
+
onMapStateChange?: () => void;
|
|
907
|
+
/** Pan/zoom/resize settled; useful for host overlays and native map controls. */
|
|
908
|
+
onViewChange?: () => void;
|
|
796
909
|
/**
|
|
797
910
|
* Non-blocking, localized selection advice — currently the orphan-seat hint
|
|
798
911
|
* (the selection would strand a single free seat between taken neighbors).
|
|
@@ -811,6 +924,14 @@ declare class SeatingChart {
|
|
|
811
924
|
private eventLocale;
|
|
812
925
|
private rendered;
|
|
813
926
|
private mode_;
|
|
927
|
+
private eventInfo;
|
|
928
|
+
private maxSelection_;
|
|
929
|
+
private colorblindSafe_;
|
|
930
|
+
private categoryFilter_;
|
|
931
|
+
private accessibilityFilter_;
|
|
932
|
+
private hideLimitedView_;
|
|
933
|
+
private focusedSection_;
|
|
934
|
+
private accessState_;
|
|
814
935
|
private tipEl;
|
|
815
936
|
private tipPos;
|
|
816
937
|
private onTipMove;
|
|
@@ -869,6 +990,22 @@ declare class SeatingChart {
|
|
|
869
990
|
*/
|
|
870
991
|
setLocale(next: string | null | undefined): Promise<string>;
|
|
871
992
|
getMode(): 'live' | 'test' | null;
|
|
993
|
+
/** Atomic, token-free display state for native-owned picker chrome. */
|
|
994
|
+
getPickerState(): SeatingChartPickerState;
|
|
995
|
+
getCategoryAvailability(): Record<string, number>;
|
|
996
|
+
getBestAvailableZones(): Array<{
|
|
997
|
+
id: string;
|
|
998
|
+
label: string;
|
|
999
|
+
}>;
|
|
1000
|
+
getActiveFloorId(): string | null;
|
|
1001
|
+
getRung(): LodRung;
|
|
1002
|
+
getFocusedSection(): string | null;
|
|
1003
|
+
focusSection(sectionId: string): void;
|
|
1004
|
+
overview(): void;
|
|
1005
|
+
setRung(rung: LodRung): void;
|
|
1006
|
+
setCategoryFilter(categoryKeys: string[] | null, focus?: boolean): void;
|
|
1007
|
+
setAccessibilityFilter(types: string[] | null): void;
|
|
1008
|
+
setCommercialLimitedFilter(on: boolean): void;
|
|
872
1009
|
/** Current selection with prices resolved from the chart categories. */
|
|
873
1010
|
getSelection(): SelectedSeat[];
|
|
874
1011
|
/** Select free objects by engine id or public label. Returns newly selected objects. */
|
|
@@ -951,6 +1088,15 @@ declare class SeatingChart {
|
|
|
951
1088
|
* reverts to the default tier.
|
|
952
1089
|
*/
|
|
953
1090
|
setSeatTier(seatId: string, tierId: string | null): void;
|
|
1091
|
+
/** Confirm/update an unheld variable table's guest quantity locally. */
|
|
1092
|
+
setTableQuantity(label: string, quantity: number): boolean;
|
|
1093
|
+
/**
|
|
1094
|
+
* Atomically replace an active variable-table hold with a new guest count.
|
|
1095
|
+
* Returns null for an inapplicable/invalid quantity or a refused replacement.
|
|
1096
|
+
*/
|
|
1097
|
+
replaceTableQuantity(label: string, quantity: number, ttlMs?: number): Promise<HoldResult | null>;
|
|
1098
|
+
/** @internal Throwing variant used by the correlated native bridge. */
|
|
1099
|
+
replaceTableQuantityOrThrow(label: string, quantity: number, ttlMs?: number): Promise<HoldResult | null>;
|
|
954
1100
|
/**
|
|
955
1101
|
* Floors of a multi-floor chart — `[{ id, name }]` (single-floor charts
|
|
956
1102
|
* return one entry; empty before render()). Pair with setFloor() to build a
|
|
@@ -990,6 +1136,8 @@ declare class SeatingChart {
|
|
|
990
1136
|
* and its own legacy frames. Nothing about the public path changes.
|
|
991
1137
|
*/
|
|
992
1138
|
private startRealtime;
|
|
1139
|
+
/** Re-read live inventory without remounting or dropping buyer state. */
|
|
1140
|
+
refreshAvailability(): Promise<void>;
|
|
993
1141
|
/**
|
|
994
1142
|
* Re-acquire the buyer access session — call after your app has re-authorized
|
|
995
1143
|
* the buyer (a revoked session cannot be recovered any other way). Resolves
|
|
@@ -3230,6 +3378,115 @@ declare class PerformanceGroupPicker {
|
|
|
3230
3378
|
private checkout;
|
|
3231
3379
|
}
|
|
3232
3380
|
|
|
3381
|
+
type SeasonOperationState = 'preparing' | 'commit_pending' | 'committed' | 'abort_pending' | 'aborted' | 'partial_terminal' | 'expired' | 'booked';
|
|
3382
|
+
interface SeasonDescriptor {
|
|
3383
|
+
key: string;
|
|
3384
|
+
name: string;
|
|
3385
|
+
edition: string | null;
|
|
3386
|
+
mode: 'live' | 'test';
|
|
3387
|
+
currency: string;
|
|
3388
|
+
venue: string;
|
|
3389
|
+
timezone: string | null;
|
|
3390
|
+
audience: 'private' | 'embed_only' | 'discoverable';
|
|
3391
|
+
planActivationId: string;
|
|
3392
|
+
occurrenceCount: number;
|
|
3393
|
+
occurrences: Array<{
|
|
3394
|
+
position: number;
|
|
3395
|
+
eventKey: string;
|
|
3396
|
+
name: string;
|
|
3397
|
+
startsAt: number | null;
|
|
3398
|
+
}>;
|
|
3399
|
+
}
|
|
3400
|
+
interface SeasonAvailability {
|
|
3401
|
+
seats: Record<string, 'free' | 'blocked'>;
|
|
3402
|
+
partial: Record<string, string[]>;
|
|
3403
|
+
revision: string;
|
|
3404
|
+
comparisons: number;
|
|
3405
|
+
freeCount: number;
|
|
3406
|
+
blockedCount: number;
|
|
3407
|
+
}
|
|
3408
|
+
interface SeasonOperation {
|
|
3409
|
+
operationId: string;
|
|
3410
|
+
seasonId: string;
|
|
3411
|
+
kind: string;
|
|
3412
|
+
holdId: string;
|
|
3413
|
+
expiresAt: number;
|
|
3414
|
+
policy: 'fixed_inclusion_same_seat';
|
|
3415
|
+
state: SeasonOperationState;
|
|
3416
|
+
bookingRef: string | null;
|
|
3417
|
+
location: string;
|
|
3418
|
+
retryAfterSeconds: number;
|
|
3419
|
+
allocations: Array<{
|
|
3420
|
+
eventId: string;
|
|
3421
|
+
state: string;
|
|
3422
|
+
}>;
|
|
3423
|
+
}
|
|
3424
|
+
interface SeasonCheckoutHandoff {
|
|
3425
|
+
seasonKey: string;
|
|
3426
|
+
planActivationId: string;
|
|
3427
|
+
operationId: string;
|
|
3428
|
+
holdId: string;
|
|
3429
|
+
expiresAt: number;
|
|
3430
|
+
policy: 'fixed_inclusion_same_seat';
|
|
3431
|
+
state: SeasonOperationState;
|
|
3432
|
+
allocations: Array<{
|
|
3433
|
+
eventKey: string;
|
|
3434
|
+
state: string;
|
|
3435
|
+
}>;
|
|
3436
|
+
}
|
|
3437
|
+
interface SeasonRenewalIntent {
|
|
3438
|
+
offerId: string;
|
|
3439
|
+
state: 'intent_received';
|
|
3440
|
+
intentId: string;
|
|
3441
|
+
receivedAt: number;
|
|
3442
|
+
}
|
|
3443
|
+
declare class SeasonApiError extends Error {
|
|
3444
|
+
readonly code: string;
|
|
3445
|
+
readonly status: number;
|
|
3446
|
+
constructor(code: string, status: number);
|
|
3447
|
+
}
|
|
3448
|
+
declare class SeasonRecoveryTimeoutError extends Error {
|
|
3449
|
+
readonly operationId: string;
|
|
3450
|
+
constructor(operationId: string);
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
interface SeasonStatusEvent {
|
|
3454
|
+
kind: 'loading' | 'ready' | 'pending' | 'held' | 'released' | 'renewal_intent' | 'partial_terminal' | 'failed';
|
|
3455
|
+
message: string;
|
|
3456
|
+
operationId?: string;
|
|
3457
|
+
}
|
|
3458
|
+
interface SeasonPickerOptions {
|
|
3459
|
+
container: string | HTMLElement;
|
|
3460
|
+
season: string;
|
|
3461
|
+
apiBase?: string;
|
|
3462
|
+
buyerAccessTokenProvider?: BuyerAccessTokenProvider;
|
|
3463
|
+
buyerAccessToken?: string | BuyerAccessToken;
|
|
3464
|
+
initialOperationId?: string;
|
|
3465
|
+
recoveryTimeoutMs?: number;
|
|
3466
|
+
fetch?: typeof fetch;
|
|
3467
|
+
onHold?: (handoff: SeasonCheckoutHandoff) => void;
|
|
3468
|
+
onHoldChange?: (handoff: SeasonCheckoutHandoff | null) => void;
|
|
3469
|
+
onContinue?: (handoff: SeasonCheckoutHandoff) => void;
|
|
3470
|
+
onRenewalIntent?: (intent: SeasonRenewalIntent) => void;
|
|
3471
|
+
onAccessExpired?: (event: BuyerAccessExpiredEvent) => void;
|
|
3472
|
+
onAccessUnavailable?: (event: BuyerAccessUnavailableEvent) => void;
|
|
3473
|
+
onStatusChange?: (event: SeasonStatusEvent) => void;
|
|
3474
|
+
onError?: (error: unknown) => void;
|
|
3475
|
+
}
|
|
3476
|
+
declare class SeasonPicker {
|
|
3477
|
+
#private;
|
|
3478
|
+
constructor(options: SeasonPickerOptions);
|
|
3479
|
+
render(): Promise<this>;
|
|
3480
|
+
holdSameSeat(labels: readonly string[], operationId: string): Promise<SeasonCheckoutHandoff>;
|
|
3481
|
+
restoreOperation(operationId: string): Promise<SeasonCheckoutHandoff | null>;
|
|
3482
|
+
release(releaseActionId: string): Promise<void>;
|
|
3483
|
+
createRenewalIntent(offerId: string): Promise<SeasonRenewalIntent>;
|
|
3484
|
+
getDescriptor(): SeasonDescriptor | null;
|
|
3485
|
+
getAvailability(): SeasonAvailability | null;
|
|
3486
|
+
getHandoff(): SeasonCheckoutHandoff | null;
|
|
3487
|
+
destroy(): void;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3233
3490
|
/**
|
|
3234
3491
|
* Host-side helper for embedding the SeatLayer picker as an iframe.
|
|
3235
3492
|
*
|
|
@@ -3269,4 +3526,4 @@ interface AttachPickerFrameOptions {
|
|
|
3269
3526
|
*/
|
|
3270
3527
|
declare function attachPickerFrame(iframe: HTMLIFrameElement, opts?: AttachPickerFrameOptions): () => void;
|
|
3271
3528
|
|
|
3272
|
-
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, 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, shortOperationReference, ticketOfferPrices };
|
|
3529
|
+
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, 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, shortOperationReference, ticketOfferPrices };
|