@nauth-toolkit/database-typeorm-postgres 0.1.132 → 0.2.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.
Files changed (3) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +4 -4
  3. package/package.json +25 -7
package/LICENSE CHANGED
@@ -1,5 +1,6 @@
1
1
  NAUTH TOOLKIT EARLY ACCESS LICENSE
2
2
  Version 1.0 (December 2025)
3
+ Full license: https://nauth.dev/docs/license
3
4
 
4
5
  ================================================================================
5
6
  FUTURE OPEN SOURCE NOTICE
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # @nauth-toolkit/database-typeorm-postgres
2
2
 
3
- PostgreSQL TypeORM adapter for nauth-toolkit
3
+ PostgreSQL database adapter for [nauth-toolkit](https://nauth.dev).
4
4
 
5
- ## Preview Release Notice
5
+ Implements the nauth-toolkit storage interface using TypeORM with PostgreSQL. Provides entity definitions, repositories, and migrations for all auth-related tables — users, sessions, MFA devices, audit logs, and more.
6
6
 
7
- **This is a preview release for internal testing. Do not use in production yet.**
7
+ Plug this into your existing TypeORM `DataSource` and nauth-toolkit manages the rest.
8
8
 
9
- This package is part of nauth-toolkit and is currently in early access/preview. Features and APIs may change between releases. For production use, please wait for the stable v1.0 release.
9
+ **Docs:** [nauth.dev](https://nauth.dev) · **Examples:** [github.com/noorixorg/nauth](https://github.com/noorixorg/nauth) · **Live demo:** [demo.nauth.dev](https://demo.nauth.dev)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nauth-toolkit/database-typeorm-postgres",
3
- "version": "0.1.132",
4
- "description": "PostgreSQL TypeORM adapter for nauth-toolkit",
3
+ "version": "0.2.0",
4
+ "description": "PostgreSQL storage adapter for nauth-toolkit via TypeORM",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
@@ -14,7 +14,7 @@
14
14
  "format:check": "prettier --check \"src/**/*.ts\""
15
15
  },
16
16
  "peerDependencies": {
17
- "@nauth-toolkit/core": "^0.1.132",
17
+ "@nauth-toolkit/core": "^0.2.0",
18
18
  "typeorm": "^0.3.20",
19
19
  "pg": "^8.0.0"
20
20
  },
@@ -32,17 +32,35 @@
32
32
  "access": "public",
33
33
  "tag": "latest"
34
34
  },
35
- "license": "UNLICENSED",
35
+ "license": "SEE LICENSE",
36
36
  "keywords": [
37
- "nestjs",
37
+ "nauth",
38
38
  "authentication",
39
+ "auth",
40
+ "nodejs",
41
+ "typescript",
39
42
  "typeorm",
40
43
  "postgresql",
41
- "database"
44
+ "postgres",
45
+ "database",
46
+ "storage"
42
47
  ],
43
48
  "files": [
44
49
  "dist",
45
50
  "LICENSE",
46
51
  "README.md"
47
- ]
52
+ ],
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/noorixorg/nauth"
56
+ },
57
+ "homepage": "https://nauth.dev",
58
+ "exports": {
59
+ ".": {
60
+ "types": "./dist/index.d.ts",
61
+ "require": "./dist/index.js",
62
+ "default": "./dist/index.js"
63
+ }
64
+ },
65
+ "sideEffects": false
48
66
  }