@auth/azure-tables-adapter 0.6.2 → 1.0.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.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <p align="center">
2
2
  <br/>
3
3
  <a href="https://authjs.dev" target="_blank">
4
- <img height="64px" src="https://authjs.dev/img/logo/logo-sm.png" />
4
+ <img height="64px" src="https://authjs.dev/img/logo-sm.png" />
5
5
  </a>
6
6
  <a href="https://azure.microsoft.com/en-us/products/storage/tables" target="_blank">
7
7
  <img height="64px" src="https://authjs.dev/img/adapters/azure-tables.svg"/>
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
- * <div style={{display: "flex", justifyContent: "space-between", alignItems: "center", padding: 16}}>
3
- * <p style={{fontWeight: "normal"}}>An official <a href="https://azure.microsoft.com/en-us/products/storage/tables">Azure Table Storage</a> adapter for Auth.js / NextAuth.js.</p>
2
+ * <div style={{display: "flex", justifyContent: "space-between", alignItems: "center", padding: "16px"}}>
3
+ * <p style={{fontWeight: "300"}}>An official <a href="https://azure.microsoft.com/en-us/products/storage/tables">Azure Table Storage</a> adapter for Auth.js / NextAuth.js.</p>
4
4
  * <a href="https://azure.microsoft.com/en-us/products/storage/tables">
5
5
  * <img style={{display: "block"}} src="/img/adapters/azure-tables.svg" width="48" />
6
6
  * </a>
@@ -46,9 +46,9 @@ export declare function withoutKeys<T>(entity: GetTableEntityResponse<TableEntit
46
46
  * )
47
47
  *
48
48
  * // For more information on each option (and a full list of options) go to
49
- * // https://authjs.dev/reference/configuration/auth-options
49
+ * // https://authjs.dev/reference/core/types#authconfig
50
50
  * export default const authConfig = {
51
- * // https://authjs.dev/reference/core/providers
51
+ * // https://authjs.dev/getting-started/authentication/oauth
52
52
  * providers: [
53
53
  * // ...
54
54
  * ],
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
- * <div style={{display: "flex", justifyContent: "space-between", alignItems: "center", padding: 16}}>
3
- * <p style={{fontWeight: "normal"}}>An official <a href="https://azure.microsoft.com/en-us/products/storage/tables">Azure Table Storage</a> adapter for Auth.js / NextAuth.js.</p>
2
+ * <div style={{display: "flex", justifyContent: "space-between", alignItems: "center", padding: "16px"}}>
3
+ * <p style={{fontWeight: "300"}}>An official <a href="https://azure.microsoft.com/en-us/products/storage/tables">Azure Table Storage</a> adapter for Auth.js / NextAuth.js.</p>
4
4
  * <a href="https://azure.microsoft.com/en-us/products/storage/tables">
5
5
  * <img style={{display: "block"}} src="/img/adapters/azure-tables.svg" width="48" />
6
6
  * </a>
@@ -53,9 +53,9 @@ export function withoutKeys(entity) {
53
53
  * )
54
54
  *
55
55
  * // For more information on each option (and a full list of options) go to
56
- * // https://authjs.dev/reference/configuration/auth-options
56
+ * // https://authjs.dev/reference/core/types#authconfig
57
57
  * export default const authConfig = {
58
- * // https://authjs.dev/reference/core/providers
58
+ * // https://authjs.dev/getting-started/authentication/oauth
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.6.2",
3
+ "version": "1.0.0",
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,7 +37,7 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@auth/core": "0.28.2"
40
+ "@auth/core": "0.30.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@azure/data-tables": "^13.2.1"
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
- * <div style={{display: "flex", justifyContent: "space-between", alignItems: "center", padding: 16}}>
3
- * <p style={{fontWeight: "normal"}}>An official <a href="https://azure.microsoft.com/en-us/products/storage/tables">Azure Table Storage</a> adapter for Auth.js / NextAuth.js.</p>
2
+ * <div style={{display: "flex", justifyContent: "space-between", alignItems: "center", padding: "16px"}}>
3
+ * <p style={{fontWeight: "300"}}>An official <a href="https://azure.microsoft.com/en-us/products/storage/tables">Azure Table Storage</a> adapter for Auth.js / NextAuth.js.</p>
4
4
  * <a href="https://azure.microsoft.com/en-us/products/storage/tables">
5
5
  * <img style={{display: "block"}} src="/img/adapters/azure-tables.svg" width="48" />
6
6
  * </a>
@@ -71,9 +71,9 @@ export function withoutKeys<T>(
71
71
  * )
72
72
  *
73
73
  * // For more information on each option (and a full list of options) go to
74
- * // https://authjs.dev/reference/configuration/auth-options
74
+ * // https://authjs.dev/reference/core/types#authconfig
75
75
  * export default const authConfig = {
76
- * // https://authjs.dev/reference/core/providers
76
+ * // https://authjs.dev/getting-started/authentication/oauth
77
77
  * providers: [
78
78
  * // ...
79
79
  * ],