@seatlayer/core 0.47.1 → 0.47.2
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.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1451,6 +1451,9 @@ interface PickerTransport {
|
|
|
1451
1451
|
hidden?: string[];
|
|
1452
1452
|
closed?: string[];
|
|
1453
1453
|
}>;
|
|
1454
|
+
/** Optional server-resolved ticket offers/prices. `live` bypasses shared cache
|
|
1455
|
+
* after a realtime seat frame so quota and fallback prices move together. */
|
|
1456
|
+
availability?(key: string, live?: boolean): Promise<unknown>;
|
|
1454
1457
|
hold(key: string, selections: HoldSelectionRequest[], ttlMs?: number, replaceHoldId?: string): Promise<HoldResponse>;
|
|
1455
1458
|
bestAvailable(key: string, qty: number, categoryKey?: string, zoneId?: string, ttlMs?: number): Promise<BestAvailableResponse>;
|
|
1456
1459
|
release(key: string, labels: string[], holdId: string): Promise<unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1451,6 +1451,9 @@ interface PickerTransport {
|
|
|
1451
1451
|
hidden?: string[];
|
|
1452
1452
|
closed?: string[];
|
|
1453
1453
|
}>;
|
|
1454
|
+
/** Optional server-resolved ticket offers/prices. `live` bypasses shared cache
|
|
1455
|
+
* after a realtime seat frame so quota and fallback prices move together. */
|
|
1456
|
+
availability?(key: string, live?: boolean): Promise<unknown>;
|
|
1454
1457
|
hold(key: string, selections: HoldSelectionRequest[], ttlMs?: number, replaceHoldId?: string): Promise<HoldResponse>;
|
|
1455
1458
|
bestAvailable(key: string, qty: number, categoryKey?: string, zoneId?: string, ttlMs?: number): Promise<BestAvailableResponse>;
|
|
1456
1459
|
release(key: string, labels: string[], holdId: string): Promise<unknown>;
|