@absolutejs/auth 0.84.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 +11 -0
- package/changelog.json +26 -0
- 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.js +28 -28
- package/dist/providers/index.js.map +4 -4
- package/dist/providers/neon.d.ts +27 -27
- package/dist/server.js +27 -1
- package/dist/server.js.map +3 -3
- package/docs/neon.md +12 -5
- package/package.json +2 -2
|
@@ -1285,6 +1285,32 @@ var providers = defineProviders({
|
|
|
1285
1285
|
url: "https://nid.naver.com/oauth2.0/token"
|
|
1286
1286
|
}
|
|
1287
1287
|
},
|
|
1288
|
+
neon: {
|
|
1289
|
+
authorizationUrl: "https://oauth2.neon.tech/oauth2/auth",
|
|
1290
|
+
isOIDC: true,
|
|
1291
|
+
isRefreshable: true,
|
|
1292
|
+
PKCEMethod: "S256",
|
|
1293
|
+
profileRequest: {
|
|
1294
|
+
authIn: "header",
|
|
1295
|
+
encoding: "application/json",
|
|
1296
|
+
method: "GET",
|
|
1297
|
+
url: "https://oauth2.neon.tech/userinfo"
|
|
1298
|
+
},
|
|
1299
|
+
revocationRequest: {
|
|
1300
|
+
authIn: "body",
|
|
1301
|
+
encoding: "application/x-www-form-urlencoded",
|
|
1302
|
+
tokenParamName: "token",
|
|
1303
|
+
url: "https://oauth2.neon.tech/oauth2/revoke"
|
|
1304
|
+
},
|
|
1305
|
+
scopeRequired: true,
|
|
1306
|
+
subject: ["sub"],
|
|
1307
|
+
subjectType: "string",
|
|
1308
|
+
tokenRequest: {
|
|
1309
|
+
authIn: "body",
|
|
1310
|
+
encoding: "application/x-www-form-urlencoded",
|
|
1311
|
+
url: "https://oauth2.neon.tech/oauth2/token"
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1288
1314
|
notion: {
|
|
1289
1315
|
authorizationUrl: "https://api.notion.com/v1/oauth/authorize",
|
|
1290
1316
|
email: ["bot", "owner", "user", "person", "email"],
|
|
@@ -15446,5 +15472,5 @@ export {
|
|
|
15446
15472
|
linkedProviderGrantsTable
|
|
15447
15473
|
};
|
|
15448
15474
|
|
|
15449
|
-
//# debugId=
|
|
15475
|
+
//# debugId=FB3750D623CBDCD964756E2164756E21
|
|
15450
15476
|
//# sourceMappingURL=index.js.map
|