@auth/azure-tables-adapter 0.1.4 → 0.1.6
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 +2 -2
- package/index.js +2 -2
- package/package.json +3 -6
- package/src/index.ts +2 -2
package/index.d.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/azure-tables-adapter
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
@@ -48,7 +48,7 @@ export declare function withoutKeys<T>(entity: GetTableEntityResponse<TableEntit
|
|
|
48
48
|
* // For more information on each option (and a full list of options) go to
|
|
49
49
|
* // https://authjs.dev/reference/configuration/auth-options
|
|
50
50
|
* export default const authConfig = {
|
|
51
|
-
* // https://authjs.dev/reference/providers
|
|
51
|
+
* // https://authjs.dev/reference/core/providers
|
|
52
52
|
* providers: [
|
|
53
53
|
* // ...
|
|
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/azure-tables-adapter
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
@@ -55,7 +55,7 @@ export function withoutKeys(entity) {
|
|
|
55
55
|
* // For more information on each option (and a full list of options) go to
|
|
56
56
|
* // https://authjs.dev/reference/configuration/auth-options
|
|
57
57
|
* export default const authConfig = {
|
|
58
|
-
* // https://authjs.dev/reference/providers
|
|
58
|
+
* // https://authjs.dev/reference/core/providers
|
|
59
59
|
* providers: [
|
|
60
60
|
* // ...
|
|
61
61
|
* ],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auth/azure-tables-adapter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Azure Tables Storage adapter for next-auth.",
|
|
5
5
|
"homepage": "https://authjs.dev",
|
|
6
6
|
"repository": "https://github.com/nextauthjs/next-auth",
|
|
@@ -37,16 +37,13 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@auth/core": "0.18.
|
|
40
|
+
"@auth/core": "0.18.2"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@azure/data-tables": "^13.2.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"
|
|
47
|
-
"@azure/data-tables": "^13.2.1",
|
|
48
|
-
"@auth/adapter-test": "0.0.0",
|
|
49
|
-
"@auth/tsconfig": "0.0.0"
|
|
46
|
+
"@azure/data-tables": "^13.2.1"
|
|
50
47
|
},
|
|
51
48
|
"jest": {
|
|
52
49
|
"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/azure-tables-adapter
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
@@ -73,7 +73,7 @@ export function withoutKeys<T>(
|
|
|
73
73
|
* // For more information on each option (and a full list of options) go to
|
|
74
74
|
* // https://authjs.dev/reference/configuration/auth-options
|
|
75
75
|
* export default const authConfig = {
|
|
76
|
-
* // https://authjs.dev/reference/providers
|
|
76
|
+
* // https://authjs.dev/reference/core/providers
|
|
77
77
|
* providers: [
|
|
78
78
|
* // ...
|
|
79
79
|
* ],
|