@poolse/sdk 0.2.0-alpha.7 → 1.0.0-beta.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,15 @@ All notable changes to `@poolse/sdk` are documented here. Format follows
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow
5
5
  [semver](https://semver.org).
6
6
 
7
+ ## [1.0.0-beta.0] — 2026-06-01
8
+
9
+ First beta of the stable API surface. Consolidates everything from
10
+ the 0.2.x line (realtime read receipts, per-conv unread counts,
11
+ thread + reply_count, quote replies, MemberReadEvent, attachment
12
+ preloads, the AbortError preservation fix). No breaking API changes
13
+ relative to `0.2.0-alpha.7` — only a version promotion + diagnostic
14
+ log cleanup.
15
+
7
16
  ## [0.2.0] — 2026-06-01
8
17
 
9
18
  ### Added — quote replies (WhatsApp-style)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolse/sdk",
3
- "version": "0.2.0-alpha.7",
3
+ "version": "1.0.0-beta.0",
4
4
  "description": "Headless TypeScript SDK for poolse — realtime chat infrastructure. REST + WebSocket, framework-agnostic. Use directly, or via @poolse/react.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -54,6 +54,7 @@
54
54
  },
55
55
  "scripts": {
56
56
  "build": "tsup",
57
+ "dev": "tsup --watch",
57
58
  "test": "vitest run",
58
59
  "test:watch": "vitest",
59
60
  "typecheck": "tsc --noEmit",