@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/index.js
CHANGED
|
@@ -1397,6 +1397,32 @@ var providers = defineProviders({
|
|
|
1397
1397
|
url: "https://nid.naver.com/oauth2.0/token"
|
|
1398
1398
|
}
|
|
1399
1399
|
},
|
|
1400
|
+
neon: {
|
|
1401
|
+
authorizationUrl: "https://oauth2.neon.tech/oauth2/auth",
|
|
1402
|
+
isOIDC: true,
|
|
1403
|
+
isRefreshable: true,
|
|
1404
|
+
PKCEMethod: "S256",
|
|
1405
|
+
profileRequest: {
|
|
1406
|
+
authIn: "header",
|
|
1407
|
+
encoding: "application/json",
|
|
1408
|
+
method: "GET",
|
|
1409
|
+
url: "https://oauth2.neon.tech/userinfo"
|
|
1410
|
+
},
|
|
1411
|
+
revocationRequest: {
|
|
1412
|
+
authIn: "body",
|
|
1413
|
+
encoding: "application/x-www-form-urlencoded",
|
|
1414
|
+
tokenParamName: "token",
|
|
1415
|
+
url: "https://oauth2.neon.tech/oauth2/revoke"
|
|
1416
|
+
},
|
|
1417
|
+
scopeRequired: true,
|
|
1418
|
+
subject: ["sub"],
|
|
1419
|
+
subjectType: "string",
|
|
1420
|
+
tokenRequest: {
|
|
1421
|
+
authIn: "body",
|
|
1422
|
+
encoding: "application/x-www-form-urlencoded",
|
|
1423
|
+
url: "https://oauth2.neon.tech/oauth2/token"
|
|
1424
|
+
}
|
|
1425
|
+
},
|
|
1400
1426
|
notion: {
|
|
1401
1427
|
authorizationUrl: "https://api.notion.com/v1/oauth/authorize",
|
|
1402
1428
|
email: ["bot", "owner", "user", "person", "email"],
|
|
@@ -41547,5 +41573,5 @@ export {
|
|
|
41547
41573
|
writeWarrant
|
|
41548
41574
|
};
|
|
41549
41575
|
|
|
41550
|
-
//# debugId=
|
|
41576
|
+
//# debugId=B0A4E820C09B981564756E2164756E21
|
|
41551
41577
|
//# sourceMappingURL=index.js.map
|