@tachybase/auth 0.23.48 → 0.23.58
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/lib/auth.d.ts +4 -0
- package/package.json +6 -6
package/lib/auth.d.ts
CHANGED
|
@@ -17,6 +17,10 @@ interface IAuth {
|
|
|
17
17
|
signOut(): Promise<any>;
|
|
18
18
|
}
|
|
19
19
|
export declare abstract class Auth implements IAuth {
|
|
20
|
+
/**
|
|
21
|
+
* options keys that are not allowed to use environment variables
|
|
22
|
+
*/
|
|
23
|
+
static optionsKeysNotAllowedInEnv: string[];
|
|
20
24
|
abstract user: Model;
|
|
21
25
|
protected authenticator: Authenticator;
|
|
22
26
|
protected options: {
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tachybase/auth",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.58",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./lib/index.js",
|
|
7
7
|
"types": "./lib/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"jsonwebtoken": "^8.5.1",
|
|
10
|
-
"@tachybase/
|
|
11
|
-
"@tachybase/database": "0.23.
|
|
12
|
-
"@tachybase/
|
|
13
|
-
"@tachybase/
|
|
14
|
-
"@tachybase/
|
|
10
|
+
"@tachybase/actions": "0.23.58",
|
|
11
|
+
"@tachybase/database": "0.23.58",
|
|
12
|
+
"@tachybase/cache": "0.23.58",
|
|
13
|
+
"@tachybase/resourcer": "0.23.58",
|
|
14
|
+
"@tachybase/utils": "0.23.58"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/jsonwebtoken": "^8.5.9",
|