@seatlayer/core 0.49.0 → 0.50.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
@@ -1442,6 +1442,7 @@ interface PickerTransport {
1442
1442
  currency?: string;
1443
1443
  mode?: string;
1444
1444
  inventoryModelVersion?: 1 | 2;
1445
+ posterUrl?: string | null;
1445
1446
  };
1446
1447
  }>;
1447
1448
  /**
@@ -1719,6 +1720,8 @@ declare class PickerController {
1719
1720
  currency?: string;
1720
1721
  /** 'test' ⇒ sandbox event (hosts show a TEST MODE ribbon). */
1721
1722
  mode?: string;
1723
+ /** Absolute event-poster URL, when the server can publicly serve one. */
1724
+ posterUrl?: string | null;
1722
1725
  } | null>;
1723
1726
  getSelection(): PickerSeat[];
1724
1727
  /** Enriched metadata for a seat confirmation card or tooltip. */
package/dist/index.d.ts CHANGED
@@ -1442,6 +1442,7 @@ interface PickerTransport {
1442
1442
  currency?: string;
1443
1443
  mode?: string;
1444
1444
  inventoryModelVersion?: 1 | 2;
1445
+ posterUrl?: string | null;
1445
1446
  };
1446
1447
  }>;
1447
1448
  /**
@@ -1719,6 +1720,8 @@ declare class PickerController {
1719
1720
  currency?: string;
1720
1721
  /** 'test' ⇒ sandbox event (hosts show a TEST MODE ribbon). */
1721
1722
  mode?: string;
1723
+ /** Absolute event-poster URL, when the server can publicly serve one. */
1724
+ posterUrl?: string | null;
1722
1725
  } | null>;
1723
1726
  getSelection(): PickerSeat[];
1724
1727
  /** Enriched metadata for a seat confirmation card or tooltip. */
package/dist/index.js CHANGED
@@ -6964,7 +6964,8 @@ var PickerController = class {
6964
6964
  timezone: res.event.timezone ?? null,
6965
6965
  currency,
6966
6966
  // 'test' ⇒ sandbox event: hosts render a TEST MODE ribbon (Phase 11).
6967
- mode: res.event.mode ?? "live"
6967
+ mode: res.event.mode ?? "live",
6968
+ posterUrl: res.event.posterUrl ?? null
6968
6969
  };
6969
6970
  }
6970
6971
  // ---- selection ------------------------------------------------------------