@absolutejs/auth 0.83.0 → 0.85.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/CHANGELOG.md +17 -0
- package/changelog.json +44 -2
- package/dist/bun.js +27 -1
- package/dist/bun.js.map +3 -3
- package/dist/cli/migrate.js +27 -1
- package/dist/cli/migrate.js.map +3 -3
- package/dist/cli/setup.d.ts +1 -1
- package/dist/htmx/index.js +27 -1
- package/dist/htmx/index.js.map +3 -3
- package/dist/index.js +27 -1
- package/dist/index.js.map +3 -3
- package/dist/linkedProviders/index.js +27 -1
- package/dist/linkedProviders/index.js.map +3 -3
- package/dist/providers/clients.d.ts +28 -3
- package/dist/providers/index.d.ts +2 -0
- package/dist/providers/index.js +43 -1
- package/dist/providers/index.js.map +5 -4
- package/dist/providers/neon.d.ts +42 -0
- package/dist/server.js +27 -1
- package/dist/server.js.map +3 -3
- package/docs/neon.md +49 -0
- package/package.json +2 -2
package/dist/cli/migrate.js
CHANGED
|
@@ -1745,6 +1745,32 @@ var providers = defineProviders({
|
|
|
1745
1745
|
url: "https://nid.naver.com/oauth2.0/token"
|
|
1746
1746
|
}
|
|
1747
1747
|
},
|
|
1748
|
+
neon: {
|
|
1749
|
+
authorizationUrl: "https://oauth2.neon.tech/oauth2/auth",
|
|
1750
|
+
isOIDC: true,
|
|
1751
|
+
isRefreshable: true,
|
|
1752
|
+
PKCEMethod: "S256",
|
|
1753
|
+
profileRequest: {
|
|
1754
|
+
authIn: "header",
|
|
1755
|
+
encoding: "application/json",
|
|
1756
|
+
method: "GET",
|
|
1757
|
+
url: "https://oauth2.neon.tech/userinfo"
|
|
1758
|
+
},
|
|
1759
|
+
revocationRequest: {
|
|
1760
|
+
authIn: "body",
|
|
1761
|
+
encoding: "application/x-www-form-urlencoded",
|
|
1762
|
+
tokenParamName: "token",
|
|
1763
|
+
url: "https://oauth2.neon.tech/oauth2/revoke"
|
|
1764
|
+
},
|
|
1765
|
+
scopeRequired: true,
|
|
1766
|
+
subject: ["sub"],
|
|
1767
|
+
subjectType: "string",
|
|
1768
|
+
tokenRequest: {
|
|
1769
|
+
authIn: "body",
|
|
1770
|
+
encoding: "application/x-www-form-urlencoded",
|
|
1771
|
+
url: "https://oauth2.neon.tech/oauth2/token"
|
|
1772
|
+
}
|
|
1773
|
+
},
|
|
1748
1774
|
notion: {
|
|
1749
1775
|
authorizationUrl: "https://api.notion.com/v1/oauth/authorize",
|
|
1750
1776
|
email: ["bot", "owner", "user", "person", "email"],
|
|
@@ -3704,5 +3730,5 @@ var main = async () => {
|
|
|
3704
3730
|
};
|
|
3705
3731
|
await main();
|
|
3706
3732
|
|
|
3707
|
-
//# debugId=
|
|
3733
|
+
//# debugId=003E941CFD8164A364756E2164756E21
|
|
3708
3734
|
//# sourceMappingURL=migrate.js.map
|