@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 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 reserved-seating platform](https://seatlayer.io/) ·
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 (private-beta candidate)
92
+ ## Fixed Renewable Season (not in the current npm release)
93
93
 
94
- The Season source is merged for development, but it is not included in the
95
- currently registered stable package. The validated out-of-band candidate is
96
- `0.67.0-season-s08.0`; the npm badge and install command above describe the
97
- stable registered package and do not prove this candidate is published.
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. Inspect and book it from trusted server code.
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 an
130
- unpublished private-beta candidate, not the currently registered npm package.
131
-
132
- The private-beta claim is this framework-agnostic JavaScript `SeasonPicker`
133
- only. `@seatlayer/react`, `@seatlayer/vue`, `@seatlayer/angular`, React Native,
134
- Flutter, iOS, and Android do not expose a verified Season wrapper and are
135
- explicitly unsupported for this candidate. A host may mount this plain-JS
136
- surface inside a framework, but that does not create a wrapper support claim.
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