@zintrust/db-postgres 0.1.21 → 0.1.27

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @zintrust/db-postgres
2
2
 
3
- PostgreSQL database adapter package for Zintrust (uses `pg`).
3
+ PostgreSQL database adapter package for ZinTrust (uses `pg`).
4
4
 
5
5
  ## Install
6
6
 
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@zintrust/db-postgres",
3
+ "version": "0.1.15",
4
+ "buildDate": "2026-01-28T12:17:06.257Z",
5
+ "buildEnvironment": {
6
+ "node": "v20.20.0",
7
+ "platform": "linux",
8
+ "arch": "x64"
9
+ },
10
+ "git": {
11
+ "commit": "a274786",
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": "50065a5a5e4131b248131d9c572f76cca2d4d3501ea75a92c42ca6e95022e5ae"
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.21",
3
+ "version": "0.1.27",
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.21"
25
+ "@zintrust/core": "^0.1.27"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"