@auth/dgraph-adapter 1.0.3 → 1.0.4
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/index.d.ts +1 -1
- package/index.js +2 -2
- package/package.json +3 -9
- package/src/index.ts +2 -2
package/index.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export { format };
|
|
|
48
48
|
* This approach is not secure or for production use, and does not require a `jwtSecret`.
|
|
49
49
|
* :::
|
|
50
50
|
*
|
|
51
|
-
* > This schema is adapted for use in Dgraph and based upon our main [schema](https://authjs.dev/reference/adapters
|
|
51
|
+
* > This schema is adapted for use in Dgraph and based upon our main [schema](https://authjs.dev/reference/core/adapters)
|
|
52
52
|
*
|
|
53
53
|
* #### Example
|
|
54
54
|
*
|
package/index.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*
|
|
9
9
|
* ## Installation
|
|
10
10
|
*
|
|
11
|
-
* ```bash
|
|
11
|
+
* ```bash npm2yarn
|
|
12
12
|
* npm install next-auth @auth/dgraph-adapter
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
@@ -47,7 +47,7 @@ export { format };
|
|
|
47
47
|
* This approach is not secure or for production use, and does not require a `jwtSecret`.
|
|
48
48
|
* :::
|
|
49
49
|
*
|
|
50
|
-
* > This schema is adapted for use in Dgraph and based upon our main [schema](https://authjs.dev/reference/adapters
|
|
50
|
+
* > This schema is adapted for use in Dgraph and based upon our main [schema](https://authjs.dev/reference/core/adapters)
|
|
51
51
|
*
|
|
52
52
|
* #### Example
|
|
53
53
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auth/dgraph-adapter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Dgraph adapter for Auth.js",
|
|
5
5
|
"homepage": "https://authjs.dev",
|
|
6
6
|
"repository": "https://github.com/nextauthjs/next-auth",
|
|
@@ -37,17 +37,11 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/
|
|
41
|
-
"@types/jsonwebtoken": "^8.5.5",
|
|
42
|
-
"jest": "^27.4.3",
|
|
43
|
-
"ts-jest": "^27.0.3",
|
|
44
|
-
"typescript": "5.2.2",
|
|
45
|
-
"@auth/adapter-test": "0.0.0",
|
|
46
|
-
"@auth/tsconfig": "0.0.0"
|
|
40
|
+
"@types/jsonwebtoken": "^8.5.5"
|
|
47
41
|
},
|
|
48
42
|
"dependencies": {
|
|
49
43
|
"jsonwebtoken": "^8.5.1",
|
|
50
|
-
"@auth/core": "0.18.
|
|
44
|
+
"@auth/core": "0.18.1"
|
|
51
45
|
},
|
|
52
46
|
"jest": {
|
|
53
47
|
"preset": "@auth/adapter-test/jest"
|
package/src/index.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*
|
|
9
9
|
* ## Installation
|
|
10
10
|
*
|
|
11
|
-
* ```bash
|
|
11
|
+
* ```bash npm2yarn
|
|
12
12
|
* npm install next-auth @auth/dgraph-adapter
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
@@ -70,7 +70,7 @@ export { format }
|
|
|
70
70
|
* This approach is not secure or for production use, and does not require a `jwtSecret`.
|
|
71
71
|
* :::
|
|
72
72
|
*
|
|
73
|
-
* > This schema is adapted for use in Dgraph and based upon our main [schema](https://authjs.dev/reference/adapters
|
|
73
|
+
* > This schema is adapted for use in Dgraph and based upon our main [schema](https://authjs.dev/reference/core/adapters)
|
|
74
74
|
*
|
|
75
75
|
* #### Example
|
|
76
76
|
*
|