@sovant/sdk 1.4.1 → 1.4.2

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 +8 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -202,9 +202,9 @@ console.log(recall.results);
202
202
  ## Features
203
203
 
204
204
  - **Memory CRUD** — create, retrieve, update, delete memories
205
- - **Semantic Search** — query memories with filters and topK ranking
205
+ - **Semantic Search** — query memories with filters and ranking
206
206
  - **Threads** — organize memories into conversations or sessions (fully supported in SDK)
207
- - **Batch Operations (Beta)** — atomic multi-operation support
207
+ - **Batch Operations** — create multiple memories in one request
208
208
  - **Compliance-ready** — audit trails, PDPA/GDPR-friendly by design
209
209
  - **SDKs** — official TypeScript and Python SDKs, with REST API reference
210
210
 
@@ -224,27 +224,21 @@ console.log(recall.results);
224
224
  - `PATCH|PUT /api/v1/memories/{id}` — Update memory
225
225
  - `DELETE /api/v1/memories/{id}` — Delete memory
226
226
  - `GET /api/v1/memory/search` — Search memories
227
- - `POST /api/v1/memory/batch` — Batch operations (Beta)
227
+ - `POST /api/v1/memory/batch` — Batch create
228
228
 
229
229
  ## Field Mapping Note
230
230
 
231
231
  - **SDK level:** accepts `data`
232
232
  - **API level:** expects `content`
233
233
  - SDK automatically converts `data` → `content`.
234
- - `subject` is deprecated (ignored by API). Use `thread_id`, `tags`, or `metadata` for grouping.
235
-
236
- ## Status of Advanced Features
237
-
238
- - **Batch API:** Available, marked Beta.
239
- - **Threads:** Fully supported in TypeScript SDK (v1.4.0+).
240
- - **Webhooks, personalization, multi-channel sync:** Coming soon.
241
234
 
242
235
  ## Versioning & Changelog
243
236
 
244
- - **Current release:** 1.4.0
245
- - Version 1.4.0 adds full threads support (create, list, get, update, delete)
246
- - Version 1.3.0 added hybrid recall with profile awareness
247
- - See [CHANGELOG.md](./CHANGELOG.md) for details.
237
+ - **Current release:** 1.4.1
238
+ - Version 1.4.1 CJS export fix
239
+ - Version 1.4.0 full threads support (create, list, get, update, delete)
240
+ - Version 1.3.0 hybrid recall with profile awareness
241
+ - Version 1.2.0 — retry logic, batch operations, telemetry hooks
248
242
 
249
243
  ## License & Use
250
244
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sovant/sdk",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Official Sovant Memory-as-a-Service SDK for JavaScript and TypeScript",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",