@archipelago-js/client 0.10.0 → 0.11.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 +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -171,3 +171,7 @@ clearCsrfCache() // clear cache (next call reads from DOM)
|
|
|
171
171
|
| `IslandFetchOptions` | Options type for `islandFetch` |
|
|
172
172
|
| `IslandFetchPayload` | Payload type (`Record<string, unknown>`) |
|
|
173
173
|
| `UploadProgress` | `{ percentage, loaded, total }` for upload tracking |
|
|
174
|
+
|
|
175
|
+
## Stability
|
|
176
|
+
|
|
177
|
+
This library follows [Semantic Versioning](https://semver.org/). The public API — `islandFetch`, `buildIslandPayload`, `parseIslandResponse`, CSRF utilities, `FORM_ERROR`, `ArchipelagoTransportError`, and all exported TypeScript types — is considered stable. The discriminated response union (`ok` / `error` / `redirect` / `forbidden`) is part of the public contract and will not change without a major version bump.
|