@zintrust/db-postgres 0.1.21 → 0.1.23
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 +1 -1
- package/dist/build-manifest.json +43 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zintrust/db-postgres",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"buildDate": "2026-01-21T12:26:25.922Z",
|
|
5
|
+
"buildEnvironment": {
|
|
6
|
+
"node": "v20.19.6",
|
|
7
|
+
"platform": "linux",
|
|
8
|
+
"arch": "x64"
|
|
9
|
+
},
|
|
10
|
+
"git": {
|
|
11
|
+
"commit": "ae2c0a6",
|
|
12
|
+
"branch": "master"
|
|
13
|
+
},
|
|
14
|
+
"package": {
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20.0.0"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": [
|
|
19
|
+
"pg"
|
|
20
|
+
],
|
|
21
|
+
"peerDependencies": [
|
|
22
|
+
"@zintrust/core"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"files": {
|
|
26
|
+
"index.d.ts": {
|
|
27
|
+
"size": 1347,
|
|
28
|
+
"sha256": "6090d1757bf63ac7ac510a59ccfd9137e5b0b9e32b2cbebd0d5bbbe3834a7233"
|
|
29
|
+
},
|
|
30
|
+
"index.js": {
|
|
31
|
+
"size": 5762,
|
|
32
|
+
"sha256": "3c4277561b69b3d520fc513f03842e0a674ea960fbd7f0d9e2306397da626772"
|
|
33
|
+
},
|
|
34
|
+
"register.d.ts": {
|
|
35
|
+
"size": 183,
|
|
36
|
+
"sha256": "19c1a528a9a7c4ab8a3c03f71297bff2cb0d3bc91ee4f4d9a162edcbd8843c54"
|
|
37
|
+
},
|
|
38
|
+
"register.js": {
|
|
39
|
+
"size": 343,
|
|
40
|
+
"sha256": "2a0152641cac985910993115ea247ec4e86286b0c404c4af6d63003e4efadb40"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -30,3 +30,9 @@ export declare const PostgreSQLAdapter: Readonly<{
|
|
|
30
30
|
create(config: DatabaseConfig): IDatabaseAdapter;
|
|
31
31
|
}>;
|
|
32
32
|
export default PostgreSQLAdapter;
|
|
33
|
+
/**
|
|
34
|
+
* Package version and build metadata
|
|
35
|
+
* Available at runtime for debugging and health checks
|
|
36
|
+
*/
|
|
37
|
+
export declare const _ZINTRUST_DB_POSTGRES_VERSION = "0.1.15";
|
|
38
|
+
export declare const _ZINTRUST_DB_POSTGRES_BUILD_DATE = "__BUILD_DATE__";
|
package/dist/index.js
CHANGED
|
@@ -140,3 +140,9 @@ function createPostgresAdapter(config) {
|
|
|
140
140
|
return adapter;
|
|
141
141
|
}
|
|
142
142
|
export default PostgreSQLAdapter;
|
|
143
|
+
/**
|
|
144
|
+
* Package version and build metadata
|
|
145
|
+
* Available at runtime for debugging and health checks
|
|
146
|
+
*/
|
|
147
|
+
export const _ZINTRUST_DB_POSTGRES_VERSION = '0.1.15';
|
|
148
|
+
export const _ZINTRUST_DB_POSTGRES_BUILD_DATE = '__BUILD_DATE__';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/db-postgres",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"node": ">=20.0.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@zintrust/core": "^0.1.
|
|
25
|
+
"@zintrust/core": "^0.1.23"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|