@livequery/rest 2.0.99 → 2.0.101

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 +11 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  `@livequery/rest` is a REST + WebSocket transporter for `@livequery/core`.
4
4
 
5
+ This repository is the transport library package, not an application. Changes here should preserve reusable transport behavior unless a task explicitly targets a breaking change.
6
+
5
7
  It adapts the `LivequeryTransporter` interface to:
6
8
 
7
9
  - HTTP requests for `query`, `add`, `update`, `delete`, and `trigger`
@@ -10,6 +12,15 @@ It adapts the `LivequeryTransporter` interface to:
10
12
 
11
13
  This package does not implement local cache or collection state management. That stays in `@livequery/core`. This package is only the transport layer between a livequery client and your backend.
12
14
 
15
+ ## AI Agent Guidance
16
+
17
+ Repository-specific agent guidance lives in `AGENTS.md` and `copilot-instructions.md`.
18
+
19
+ - `AGENTS.md` is the implementation-focused guide for coding agents modifying this package.
20
+ - `copilot-instructions.md` provides repo-level instructions for Copilot when generating or reviewing code in this workspace.
21
+ - Both documents assume this repo is a transport library package, so agent changes should avoid app-specific scaffolding and should preserve public API compatibility by default.
22
+ - Agents generating consumer code should build around a shared `RestTransporter` inside a shared `LivequeryCore` instance.
23
+
13
24
  ## Installation
14
25
 
15
26
  ```bash
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "repository": {
4
4
  "url": "https://github.com/livequery/rest"
5
5
  },
6
- "version": "2.0.99",
6
+ "version": "2.0.101",
7
7
  "type": "module",
8
8
  "description": "",
9
9
  "main": "./dist/index.js",
@@ -38,7 +38,7 @@
38
38
  "uuid": "^13.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@livequery/core": "2.0.92",
41
+ "@livequery/core": "^2.0.101",
42
42
  "typescript": "5.6.3"
43
43
  },
44
44
  "peerDependencies": {},