@seatlayer/js 0.67.15 → 0.68.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/README.md +47 -20
- package/dist/index.cjs +10 -10
- package/dist/index.d.cts +16 -7
- package/dist/index.d.ts +16 -7
- package/dist/index.js +9 -9
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -746,9 +746,11 @@ interface SeatingChartOptions {
|
|
|
746
746
|
event: string;
|
|
747
747
|
/** API origin. Defaults to https://api.seatlayer.io. */
|
|
748
748
|
apiBase?: string;
|
|
749
|
-
/**
|
|
750
|
-
*
|
|
751
|
-
*
|
|
749
|
+
/**
|
|
750
|
+
* Publishable account key for direct Public-sale bootstrap of a Platform/SDK
|
|
751
|
+
* Event. It is never buyer identity and cannot request private inventory.
|
|
752
|
+
* An explicit buyer-access provider/token below always takes precedence.
|
|
753
|
+
*/
|
|
752
754
|
publicKey?: string;
|
|
753
755
|
/**
|
|
754
756
|
* Buyer access session provider — the recommended way to render private
|
|
@@ -916,7 +918,7 @@ interface SeatingChartOptions {
|
|
|
916
918
|
declare class SeatingChart {
|
|
917
919
|
private readonly opts;
|
|
918
920
|
private readonly controller;
|
|
919
|
-
/**
|
|
921
|
+
/** Publishable key used only by the public-only direct bootstrap path. */
|
|
920
922
|
readonly publicKey?: string;
|
|
921
923
|
private mount;
|
|
922
924
|
private hostEl;
|
|
@@ -1776,9 +1778,16 @@ interface SeatPickerOptions {
|
|
|
1776
1778
|
* SeatLayer dashboard's own transport) or a fully local mock (demos).
|
|
1777
1779
|
*/
|
|
1778
1780
|
transport?: PickerTransport;
|
|
1779
|
-
/**
|
|
1780
|
-
*
|
|
1781
|
-
*
|
|
1781
|
+
/**
|
|
1782
|
+
* Publishable account key (`pk_live_…` / `pk_test_…`) for a public
|
|
1783
|
+
* Platform/SDK Event. With no explicit buyer-access token/provider, the SDK
|
|
1784
|
+
* uses it to bootstrap one origin-bound, Public-sale-only session directly
|
|
1785
|
+
* from SeatLayer and receives chart + inventory in the same request.
|
|
1786
|
+
*
|
|
1787
|
+
* This is not buyer identity and cannot request private channels. An explicit
|
|
1788
|
+
* `buyerAccessTokenProvider` or `buyerAccessToken` below always takes
|
|
1789
|
+
* precedence for login, presale, partner or other scoped inventory.
|
|
1790
|
+
*/
|
|
1782
1791
|
publicKey?: string;
|
|
1783
1792
|
/**
|
|
1784
1793
|
* Buyer access session provider — the recommended way to show private channel
|
package/dist/index.d.ts
CHANGED
|
@@ -746,9 +746,11 @@ interface SeatingChartOptions {
|
|
|
746
746
|
event: string;
|
|
747
747
|
/** API origin. Defaults to https://api.seatlayer.io. */
|
|
748
748
|
apiBase?: string;
|
|
749
|
-
/**
|
|
750
|
-
*
|
|
751
|
-
*
|
|
749
|
+
/**
|
|
750
|
+
* Publishable account key for direct Public-sale bootstrap of a Platform/SDK
|
|
751
|
+
* Event. It is never buyer identity and cannot request private inventory.
|
|
752
|
+
* An explicit buyer-access provider/token below always takes precedence.
|
|
753
|
+
*/
|
|
752
754
|
publicKey?: string;
|
|
753
755
|
/**
|
|
754
756
|
* Buyer access session provider — the recommended way to render private
|
|
@@ -916,7 +918,7 @@ interface SeatingChartOptions {
|
|
|
916
918
|
declare class SeatingChart {
|
|
917
919
|
private readonly opts;
|
|
918
920
|
private readonly controller;
|
|
919
|
-
/**
|
|
921
|
+
/** Publishable key used only by the public-only direct bootstrap path. */
|
|
920
922
|
readonly publicKey?: string;
|
|
921
923
|
private mount;
|
|
922
924
|
private hostEl;
|
|
@@ -1776,9 +1778,16 @@ interface SeatPickerOptions {
|
|
|
1776
1778
|
* SeatLayer dashboard's own transport) or a fully local mock (demos).
|
|
1777
1779
|
*/
|
|
1778
1780
|
transport?: PickerTransport;
|
|
1779
|
-
/**
|
|
1780
|
-
*
|
|
1781
|
-
*
|
|
1781
|
+
/**
|
|
1782
|
+
* Publishable account key (`pk_live_…` / `pk_test_…`) for a public
|
|
1783
|
+
* Platform/SDK Event. With no explicit buyer-access token/provider, the SDK
|
|
1784
|
+
* uses it to bootstrap one origin-bound, Public-sale-only session directly
|
|
1785
|
+
* from SeatLayer and receives chart + inventory in the same request.
|
|
1786
|
+
*
|
|
1787
|
+
* This is not buyer identity and cannot request private channels. An explicit
|
|
1788
|
+
* `buyerAccessTokenProvider` or `buyerAccessToken` below always takes
|
|
1789
|
+
* precedence for login, presale, partner or other scoped inventory.
|
|
1790
|
+
*/
|
|
1782
1791
|
publicKey?: string;
|
|
1783
1792
|
/**
|
|
1784
1793
|
* Buyer access session provider — the recommended way to show private channel
|