@seatlayer/js 0.71.5 → 0.72.1
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 +15 -15
- package/dist/index.cjs +38 -23
- package/dist/index.d.cts +41 -2
- package/dist/index.d.ts +41 -2
- package/dist/index.js +37 -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,19 @@ 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
|
|
93
93
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
stable registered package and do not prove this candidate is published.
|
|
94
|
+
`SeasonPicker` is supported in `@seatlayer/js` `0.72.0` and newer. It is an SDK
|
|
95
|
+
integration surface; the organizer dashboard remains a separately controlled
|
|
96
|
+
product rollout.
|
|
98
97
|
|
|
99
98
|
`SeasonPicker` is a distinct fixed-inclusion surface. Your server mints a
|
|
100
99
|
short-lived `bss_` session for the browser's exact Origin; keep that token in
|
|
101
100
|
memory. The picker returns an opaque, price-free handoff with the immutable Plan
|
|
102
101
|
activation, stable operation/hold identities, expiry/policy, and per-occurrence
|
|
103
|
-
outcomes.
|
|
102
|
+
outcomes. `pricingAuthority: "host"` and `authoritativeAmountIncluded: false`
|
|
103
|
+
make the commerce boundary explicit: your trusted server applies its own package
|
|
104
|
+
price, tax, and payment decision before it books the identity-only allocation.
|
|
104
105
|
|
|
105
106
|
```js
|
|
106
107
|
import { SeasonPicker } from '@seatlayer/js';
|
|
@@ -126,14 +127,13 @@ sendIntentToYourBackend(intent);
|
|
|
126
127
|
|
|
127
128
|
Supply `initialOperationId` to restore a lost create response. Pending operations
|
|
128
129
|
are polled through their retained operation URL; `partial_terminal` stays visible
|
|
129
|
-
and must be reconciled rather than replaced with a blind new action.
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
surface inside a framework, but that does not create a wrapper support claim.
|
|
130
|
+
and must be reconciled rather than replaced with a blind new action.
|
|
131
|
+
|
|
132
|
+
The framework-agnostic JavaScript `SeasonPicker` is also wrapped by
|
|
133
|
+
`@seatlayer/react`, `@seatlayer/vue`, and `@seatlayer/angular` `0.72.0` and
|
|
134
|
+
newer. React Native, Flutter, iOS, and Android do not expose a Season bridge
|
|
135
|
+
surface and remain explicitly unsupported. A vendored bundle containing
|
|
136
|
+
`SeasonPicker` is not native parity.
|
|
137
137
|
|
|
138
138
|
## Use in any framework
|
|
139
139
|
|