@agentplat/mesh-http 0.3.0-beta.5 → 0.3.0-beta.7

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 +13 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -4,6 +4,19 @@ Bounded, Fetch-compatible HTTP transport for already signed Agentplat Mesh
4
4
  envelopes. Importing or constructing a client/handler starts no server, performs
5
5
  no discovery and opens no network connection.
6
6
 
7
+ ## Installation (developer preview)
8
+
9
+ Install the coordinated preview explicitly:
10
+
11
+ ```sh
12
+ npm install @agentplat/mesh-http@next
13
+ ```
14
+
15
+ Keep all `@agentplat/*` packages on the same release version. npm's default
16
+ `latest` tag can point to an older preview. See the
17
+ [release channels](https://github.com/Agentplat/agentplat/blob/main/docs/release-channels.md)
18
+ for distribution status and version selection.
19
+
7
20
  ```ts
8
21
  import {
9
22
  createMeshHttpClient,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentplat/mesh-http",
3
- "version": "0.3.0-beta.5",
3
+ "version": "0.3.0-beta.7",
4
4
  "description": "Bounded Fetch-compatible HTTP transport for signed Agentplat Mesh envelopes.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -18,8 +18,8 @@
18
18
  "README.md"
19
19
  ],
20
20
  "dependencies": {
21
- "@agentplat/mesh": "^0.3.0-beta.5",
22
- "@agentplat/mesh-protocol": "^0.3.0-beta.5"
21
+ "@agentplat/mesh": "^0.3.0-beta.7",
22
+ "@agentplat/mesh-protocol": "^0.3.0-beta.7"
23
23
  },
24
24
  "engines": {
25
25
  "node": ">=20.19.3"