@stamprally/core 0.20.0 → 0.20.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @stamprally/core v0.20.0
1
+ # @stamprally/core v0.20.1
2
2
 
3
3
  Dependency-free domain models, immutable state transitions, storage adapters, browser detectors, and safe configuration parsers.
4
4
 
@@ -7,7 +7,7 @@ import { InMemoryStorage, StampRallyClient, type PublicRallyConfig } from "@stam
7
7
 
8
8
  const config: PublicRallyConfig = {
9
9
  id: "city-tour",
10
- version: "0.20.0",
10
+ version: "0.20.1",
11
11
  title: "City Tour",
12
12
  spots: [{ id: "station", orderIndex: 0, name: "Central Station", conditions: [{ type: "passcode" }] }],
13
13
  rewards: [],
@@ -35,7 +35,7 @@ When no authenticated user is supplied, the client creates a persistent UUID v4
35
35
  `anonymousSessionId` and includes it in sync requests. Queue replay uses Web Locks
36
36
  when available and supports bounded exponential backoff through `retryOptions`.
37
37
 
38
- ### v0.20.0 batch sync and storage capability
38
+ ### v0.20.1 batch sync and storage capability
39
39
 
40
40
  An adapter can return `SyncProgressResponse` from `sync` when it sends queued
41
41
  operations to a server-side `syncProgress` endpoint. The adapter passes queued
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamprally/core",
3
- "version": "0.20.0",
3
+ "version": "0.20.1",
4
4
  "description": "A dependency-free stamp rally domain engine and storage-agnostic client.",
5
5
  "license": "MIT",
6
6
  "repository": {