@resvary/postgres 0.5.0-alpha.3 → 0.5.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.
- package/README.md +2 -2
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# @resvary/postgres
|
|
2
2
|
|
|
3
|
-
Postgres `CreditStore` and `ReceiptStore` implementations for Resvary
|
|
3
|
+
Postgres `CreditStore` and `ReceiptStore` implementations for Resvary multi-process deployments. Resvary supports PostgreSQL 16–18. Stores never migrate automatically.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @resvary/sdk
|
|
6
|
+
npm install @resvary/sdk @resvary/postgres
|
|
7
7
|
DATABASE_URL=postgres://... npx resvary-postgres migrate
|
|
8
8
|
```
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@resvary/postgres",
|
|
3
|
-
"version": "0.5.0
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Postgres persistence and migration tooling for Resvary",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,8 +24,7 @@
|
|
|
24
24
|
"LICENSE"
|
|
25
25
|
],
|
|
26
26
|
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
28
|
-
"tag": "alpha"
|
|
27
|
+
"access": "public"
|
|
29
28
|
},
|
|
30
29
|
"scripts": {
|
|
31
30
|
"build": "tsc",
|
|
@@ -37,7 +36,7 @@
|
|
|
37
36
|
"node": ">=20.0.0"
|
|
38
37
|
},
|
|
39
38
|
"dependencies": {
|
|
40
|
-
"@resvary/sdk": "0.5.0
|
|
39
|
+
"@resvary/sdk": "0.5.0",
|
|
41
40
|
"pg": "^8.16.3"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|