@spfn/auth 0.2.0-beta.80 → 0.2.0-beta.82
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 +12 -8
- package/dist/config.d.ts +74 -0
- package/dist/config.js +32 -0
- package/dist/config.js.map +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/server.d.ts +493 -749
- package/dist/server.js +186 -20
- package/dist/server.js.map +1 -1
- package/package.json +7 -6
- package/dist/{authenticate-ofdEmk6x.d.ts → authenticate-B6CbndRk.d.ts} +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spfn/auth",
|
|
3
|
-
|
|
3
|
+
"version": "0.2.0-beta.82",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Authentication, authorization, and RBAC module for SPFN",
|
|
6
6
|
"author": "Ray Im <rayim@fxy.global>",
|
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
"license": "MIT",
|
|
88
88
|
"repository": {
|
|
89
89
|
"type": "git",
|
|
90
|
-
"url": "https://github.com/
|
|
90
|
+
"url": "git+https://github.com/fxylabs/spfn.git",
|
|
91
91
|
"directory": "packages/auth"
|
|
92
92
|
},
|
|
93
93
|
"bugs": {
|
|
94
|
-
"url": "https://github.com/
|
|
94
|
+
"url": "https://github.com/fxylabs/spfn/issues"
|
|
95
95
|
},
|
|
96
|
-
"homepage": "https://github.com/
|
|
96
|
+
"homepage": "https://github.com/fxylabs/spfn/tree/main/packages/auth#readme",
|
|
97
97
|
"spfn": {
|
|
98
98
|
"schemas": [
|
|
99
99
|
"./dist/server/entities/*.js"
|
|
@@ -105,7 +105,6 @@
|
|
|
105
105
|
},
|
|
106
106
|
"dependencies": {
|
|
107
107
|
"@node-rs/bcrypt": "^1.10.7",
|
|
108
|
-
"drizzle-orm": "^0.45.2",
|
|
109
108
|
"jose": "^6.1.0",
|
|
110
109
|
"jsonwebtoken": "^9.0.2",
|
|
111
110
|
"postgres": "^3.4.0"
|
|
@@ -118,7 +117,8 @@
|
|
|
118
117
|
"@types/react": "^19.2.2",
|
|
119
118
|
"@types/react-dom": "^19.2.2",
|
|
120
119
|
"@vitest/coverage-v8": "^4.0.6",
|
|
121
|
-
"drizzle-kit": "
|
|
120
|
+
"drizzle-kit": "1.0.0-rc.4",
|
|
121
|
+
"drizzle-orm": "1.0.0-rc.4",
|
|
122
122
|
"hono": "^4.12.25",
|
|
123
123
|
"madge": "^8.0.0",
|
|
124
124
|
"next": "^16.2.2",
|
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
"peerDependencies": {
|
|
132
132
|
"@spfn/core": ">=0.2.0-beta.54",
|
|
133
133
|
"@spfn/notification": ">=0.1.0-beta.21",
|
|
134
|
+
"drizzle-orm": ">=1.0.0-rc.4 <2",
|
|
134
135
|
"next": "^15.0.0 || ^16.0.0"
|
|
135
136
|
},
|
|
136
137
|
"peerDependenciesMeta": {
|
|
@@ -959,8 +959,8 @@ declare const mainAuthRouter: _spfn_core_route.Router<{
|
|
|
959
959
|
}, {}, {
|
|
960
960
|
roles: {
|
|
961
961
|
description: string | null;
|
|
962
|
-
id: number;
|
|
963
962
|
name: string;
|
|
963
|
+
id: number;
|
|
964
964
|
displayName: string;
|
|
965
965
|
isBuiltin: boolean;
|
|
966
966
|
isSystem: boolean;
|
|
@@ -981,8 +981,8 @@ declare const mainAuthRouter: _spfn_core_route.Router<{
|
|
|
981
981
|
}, {}, {
|
|
982
982
|
role: {
|
|
983
983
|
description: string | null;
|
|
984
|
-
id: number;
|
|
985
984
|
name: string;
|
|
985
|
+
id: number;
|
|
986
986
|
displayName: string;
|
|
987
987
|
isBuiltin: boolean;
|
|
988
988
|
isSystem: boolean;
|
|
@@ -1005,8 +1005,8 @@ declare const mainAuthRouter: _spfn_core_route.Router<{
|
|
|
1005
1005
|
}, {}, {
|
|
1006
1006
|
role: {
|
|
1007
1007
|
description: string | null;
|
|
1008
|
-
id: number;
|
|
1009
1008
|
name: string;
|
|
1009
|
+
id: number;
|
|
1010
1010
|
displayName: string;
|
|
1011
1011
|
isBuiltin: boolean;
|
|
1012
1012
|
isSystem: boolean;
|