@vendoai/store 0.1.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/LICENSE +202 -0
- package/dist/automation-store.d.ts +62 -0
- package/dist/automation-store.js +675 -0
- package/dist/connections-store.d.ts +25 -0
- package/dist/connections-store.js +102 -0
- package/dist/db.d.ts +28 -0
- package/dist/db.js +105 -0
- package/dist/decision-store.d.ts +8 -0
- package/dist/decision-store.js +39 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +15 -0
- package/dist/meta.d.ts +5 -0
- package/dist/meta.js +20 -0
- package/dist/schema.d.ts +1420 -0
- package/dist/schema.js +114 -0
- package/dist/thread-store.d.ts +5 -0
- package/dist/thread-store.js +209 -0
- package/dist/vendo-registry.d.ts +5 -0
- package/dist/vendo-registry.js +52 -0
- package/migrations/.gitkeep +0 -0
- package/migrations/0000_living_kate_bishop.sql +110 -0
- package/migrations/0001_brainy_tinkerer.sql +13 -0
- package/migrations/meta/0000_snapshot.json +757 -0
- package/migrations/meta/0001_snapshot.json +859 -0
- package/migrations/meta/_journal.json +20 -0
- package/package.json +58 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "7",
|
|
3
|
+
"dialect": "postgresql",
|
|
4
|
+
"entries": [
|
|
5
|
+
{
|
|
6
|
+
"idx": 0,
|
|
7
|
+
"version": "7",
|
|
8
|
+
"when": 1783212246684,
|
|
9
|
+
"tag": "0000_living_kate_bishop",
|
|
10
|
+
"breakpoints": true
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"idx": 1,
|
|
14
|
+
"version": "7",
|
|
15
|
+
"when": 1783238909148,
|
|
16
|
+
"tag": "0001_brainy_tinkerer",
|
|
17
|
+
"breakpoints": true
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vendoai/store",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Durable persistence for Vendo: PGlite by default, Postgres in production.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"agent",
|
|
8
|
+
"persistence",
|
|
9
|
+
"postgres",
|
|
10
|
+
"pglite",
|
|
11
|
+
"drizzle"
|
|
12
|
+
],
|
|
13
|
+
"license": "Apache-2.0",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/runvendo/vendo.git",
|
|
17
|
+
"directory": "packages/vendo-store"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://vendo.run",
|
|
20
|
+
"bugs": "https://github.com/runvendo/vendo/issues",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=20"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"main": "./dist/index.js",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"default": "./dist/index.js"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"migrations"
|
|
39
|
+
],
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@electric-sql/pglite": "^0.2.0",
|
|
42
|
+
"drizzle-orm": "^0.36.0",
|
|
43
|
+
"pg": "^8.13.0",
|
|
44
|
+
"@vendoai/core": "0.1.0",
|
|
45
|
+
"@vendoai/runtime": "0.1.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/pg": "^8.11.0",
|
|
49
|
+
"drizzle-kit": "^0.28.0",
|
|
50
|
+
"typescript": "^5.6.0",
|
|
51
|
+
"vitest": "^2.1.0"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsc -p tsconfig.json",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
57
|
+
}
|
|
58
|
+
}
|