@seatlayer/js 0.71.4 → 0.72.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 +18 -15
- package/dist/index.cjs +64 -23
- package/dist/index.d.cts +99 -34
- package/dist/index.d.ts +99 -34
- package/dist/index.js +63 -22
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ plain HTML and in any framework.
|
|
|
13
13
|
|
|
14
14
|
[SeatLayer JavaScript SDK on npm](https://www.npmjs.com/package/@seatlayer/js) ·
|
|
15
15
|
[Buyer SDK installation guide](https://docs.seatlayer.io/buyer-sdk/install/) ·
|
|
16
|
-
[SeatLayer
|
|
16
|
+
[SeatLayer SDK and API overview](https://seatlayer.io/developers/) ·
|
|
17
17
|
[Buyer seat-map demo](https://app.seatlayer.io/demo/play/grand-theatre) ·
|
|
18
18
|
[SeatLayer React seat map SDK](https://www.npmjs.com/package/@seatlayer/react) ·
|
|
19
19
|
[SeatLayer Vue seat map SDK](https://www.npmjs.com/package/@seatlayer/vue) ·
|
|
@@ -89,18 +89,20 @@ together. Login, presale, partner, and channel inventory instead use
|
|
|
89
89
|
backend; either explicit credential takes precedence over `publicKey`. Managed
|
|
90
90
|
public/unlisted events retain anonymous event-key access and omit `publicKey`.
|
|
91
91
|
|
|
92
|
-
## Fixed Renewable Season (
|
|
92
|
+
## Fixed Renewable Season (not in the current npm release)
|
|
93
93
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
94
|
+
`SeasonPicker` is exported by the current JavaScript package for gated Season
|
|
95
|
+
integration. That export does not make the production dashboard/API available
|
|
96
|
+
or prove a supported Season release; those remain separate release gates. The
|
|
97
|
+
earlier isolated candidate was `0.67.0-season-s08.0`.
|
|
98
98
|
|
|
99
99
|
`SeasonPicker` is a distinct fixed-inclusion surface. Your server mints a
|
|
100
100
|
short-lived `bss_` session for the browser's exact Origin; keep that token in
|
|
101
101
|
memory. The picker returns an opaque, price-free handoff with the immutable Plan
|
|
102
102
|
activation, stable operation/hold identities, expiry/policy, and per-occurrence
|
|
103
|
-
outcomes.
|
|
103
|
+
outcomes. `pricingAuthority: "host"` and `authoritativeAmountIncluded: false`
|
|
104
|
+
make the commerce boundary explicit: your trusted server applies its own package
|
|
105
|
+
price, tax, and payment decision before it books the identity-only allocation.
|
|
104
106
|
|
|
105
107
|
```js
|
|
106
108
|
import { SeasonPicker } from '@seatlayer/js';
|
|
@@ -126,14 +128,15 @@ sendIntentToYourBackend(intent);
|
|
|
126
128
|
|
|
127
129
|
Supply `initialOperationId` to restore a lost create response. Pending operations
|
|
128
130
|
are polled through their retained operation URL; `partial_terminal` stays visible
|
|
129
|
-
and must be reconciled rather than replaced with a blind new action. This is
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
only.
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
131
|
+
and must be reconciled rather than replaced with a blind new action. This is
|
|
132
|
+
release-gated source for the next package, not the currently registered npm package.
|
|
133
|
+
|
|
134
|
+
This release-gated surface remains the framework-agnostic JavaScript
|
|
135
|
+
`SeasonPicker` only. React, Vue, and Angular source candidates exist but remain
|
|
136
|
+
unpublished until their immutable artifact/install gates pass. React Native,
|
|
137
|
+
Flutter, iOS, and Android do not expose a Season bridge surface and remain
|
|
138
|
+
explicitly unsupported. A vendored bundle containing `SeasonPicker` is not
|
|
139
|
+
native parity.
|
|
137
140
|
|
|
138
141
|
## Use in any framework
|
|
139
142
|
|