@resira/sdk 0.2.3 → 0.2.4

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/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # Changelog
2
+
3
+ All notable SDK and public API tracking updates are documented here.
4
+
5
+ ## 0.2.3
6
+
7
+ - Current workspace release for the public reservation API package.
8
+ - Tracks the typed payment intent, payment confirmation, promo-code validation, product catalog, and product-availability flows exposed by the SDK.
9
+ - Keeps the SDK aligned with the current `v1/public` endpoints plus reservation creation via `v2/api/reservations`.
10
+
11
+ ## 0.2.1
12
+
13
+ - Published package update after the initial TypeScript SDK rollout.
14
+ - Stabilized the package metadata for the public reservation API client.
15
+
16
+ ## 0.2.0
17
+
18
+ - Introduced the first public TypeScript SDK for Resira reservations.
19
+ - Added typed availability, reservation creation, reservation lookup, and retry-aware error handling.
20
+
21
+ ## 0.1.1
22
+
23
+ - Internal follow-up release used to align the early SDK package with the UI package work.
24
+
25
+ ## 0.1.0
26
+
27
+ - Initial SDK package scaffold.
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  TypeScript SDK for the Resira public reservation API.
4
4
 
5
+ Version tracking lives in [CHANGELOG.md](./CHANGELOG.md).
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
@@ -177,3 +179,7 @@ duplicate reservations.
177
179
 
178
180
  - Node.js ≥ 18 (uses native `fetch`)
179
181
  - No runtime dependencies
182
+
183
+ ## Version tracking
184
+
185
+ Use [CHANGELOG.md](./CHANGELOG.md) to track SDK releases against public API changes. This is the canonical place to record version-to-version API surface updates.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resira/sdk",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "TypeScript SDK for the Resira public reservation API",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -21,7 +21,8 @@
21
21
  },
22
22
  "files": [
23
23
  "dist",
24
- "README.md"
24
+ "README.md",
25
+ "CHANGELOG.md"
25
26
  ],
26
27
  "scripts": {
27
28
  "build": "tsup",