@agentplat/mesh-postgres 0.3.0-beta.4 → 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.
- package/README.md +13 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -4,6 +4,19 @@ Optional PostgreSQL durability for Agentplat Mesh. It stores a tenant- and
|
|
|
4
4
|
instance-scoped inbox, current strict snapshot, append-only hash-chained journal
|
|
5
5
|
and at-least-once outbox.
|
|
6
6
|
|
|
7
|
+
## Installation (developer preview)
|
|
8
|
+
|
|
9
|
+
Install the coordinated preview explicitly:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install @agentplat/mesh-postgres@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
|
PostgresMeshDurableRepository,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentplat/mesh-postgres",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.7",
|
|
4
4
|
"description": "PostgreSQL durable inbox, snapshot, journal and outbox adapter for Agentplat Mesh.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"README.md"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@agentplat/collective-planning": "^0.3.0-beta.7",
|
|
23
|
+
"@agentplat/mesh": "^0.3.0-beta.7",
|
|
24
|
+
"@agentplat/mesh-protocol": "^0.3.0-beta.7",
|
|
25
|
+
"@agentplat/postgres": "^0.3.0-beta.7",
|
|
22
26
|
"@types/node": "^20.10.0",
|
|
23
27
|
"@types/pg": "^8.11.10",
|
|
24
|
-
"pg": "^8.13.1"
|
|
25
|
-
"@agentplat/collective-planning": "^0.3.0-beta.4",
|
|
26
|
-
"@agentplat/mesh": "^0.3.0-beta.4",
|
|
27
|
-
"@agentplat/mesh-protocol": "^0.3.0-beta.4",
|
|
28
|
-
"@agentplat/postgres": "^0.3.0-beta.4"
|
|
28
|
+
"pg": "^8.13.1"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">=20.19.3"
|