@geonosis/db 0.3.0 → 0.5.1
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/CHANGELOG.md +151 -0
- package/README.md +147 -10
- package/dist/index.cjs +998 -204
- package/dist/index.d.cts +438 -89
- package/dist/index.d.ts +438 -89
- package/dist/index.js +981 -200
- package/package.json +11 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geonosis/db",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"types": "./dist/index.d.ts",
|
|
5
5
|
"description": "The consumer side of the executor port: a query-in-a-session type a domain provider imports, a tenant session seam whose set_config is the first statement of its transaction, an RLS policy generator, an app role whose password never enters logged DDL, and one handle per invocation.",
|
|
6
6
|
"keywords": [
|
|
@@ -33,23 +33,31 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
|
-
"dist"
|
|
36
|
+
"dist",
|
|
37
|
+
"CHANGELOG.md"
|
|
37
38
|
],
|
|
38
39
|
"dependencies": {
|
|
39
|
-
"@geonosis/conformance": "^0.2.
|
|
40
|
+
"@geonosis/conformance": "^0.2.1"
|
|
40
41
|
},
|
|
41
42
|
"peerDependencies": {
|
|
43
|
+
"drizzle-orm": ">=0.45.0",
|
|
42
44
|
"pg": ">=8.11.0"
|
|
43
45
|
},
|
|
44
46
|
"peerDependenciesMeta": {
|
|
47
|
+
"drizzle-orm": {
|
|
48
|
+
"optional": true
|
|
49
|
+
},
|
|
45
50
|
"pg": {
|
|
46
51
|
"optional": true
|
|
47
52
|
}
|
|
48
53
|
},
|
|
49
54
|
"devDependencies": {
|
|
50
55
|
"@types/pg": "^8.15.5",
|
|
56
|
+
"drizzle-kit": "^0.31.10",
|
|
57
|
+
"drizzle-orm": "^0.45.2",
|
|
51
58
|
"embedded-postgres-17": "npm:embedded-postgres@17.10.0-beta.17",
|
|
52
59
|
"embedded-postgres-18": "npm:embedded-postgres@18.4.0-beta.17",
|
|
60
|
+
"esbuild": "^0.28.2",
|
|
53
61
|
"pg": "^8.16.3"
|
|
54
62
|
},
|
|
55
63
|
"engines": {
|