@absolutejs/auth 0.48.0 → 0.48.1
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/dist/cli/migrate.js +22 -1
- package/dist/cli/migrate.js.map +3 -3
- package/dist/htmx/index.js +22 -1
- package/dist/htmx/index.js.map +3 -3
- package/dist/index.js +22 -1
- package/dist/index.js.map +3 -3
- package/dist/providers/clients.d.ts +3 -3
- package/dist/providers/index.js +22 -1
- package/dist/providers/index.js.map +3 -3
- package/dist/routes/authorize.d.ts +2 -2
- package/dist/typebox.d.ts +1 -1
- package/package.json +6 -2
package/dist/index.js
CHANGED
|
@@ -581,6 +581,27 @@ var providers = defineProviders({
|
|
|
581
581
|
url: "https://api.close.com/oauth2/token/"
|
|
582
582
|
}
|
|
583
583
|
},
|
|
584
|
+
calendly: {
|
|
585
|
+
authorizationUrl: "https://auth.calendly.com/oauth/authorize",
|
|
586
|
+
email: ["resource", "email"],
|
|
587
|
+
fullName: ["resource", "name"],
|
|
588
|
+
isOIDC: false,
|
|
589
|
+
isRefreshable: true,
|
|
590
|
+
profileRequest: {
|
|
591
|
+
authIn: "header",
|
|
592
|
+
encoding: "application/json",
|
|
593
|
+
method: "GET",
|
|
594
|
+
url: "https://api.calendly.com/users/me"
|
|
595
|
+
},
|
|
596
|
+
scopeRequired: false,
|
|
597
|
+
subject: ["resource", "uri"],
|
|
598
|
+
subjectType: "string",
|
|
599
|
+
tokenRequest: {
|
|
600
|
+
authIn: "body",
|
|
601
|
+
encoding: "application/x-www-form-urlencoded",
|
|
602
|
+
url: "https://auth.calendly.com/oauth/token"
|
|
603
|
+
}
|
|
604
|
+
},
|
|
584
605
|
coinbase: {
|
|
585
606
|
authorizationUrl: "https://www.coinbase.com/oauth/authorize",
|
|
586
607
|
isOIDC: false,
|
|
@@ -27532,5 +27553,5 @@ export {
|
|
|
27532
27553
|
AuthIdentityConflictError
|
|
27533
27554
|
};
|
|
27534
27555
|
|
|
27535
|
-
//# debugId=
|
|
27556
|
+
//# debugId=07E6619F2A4E193764756E2164756E21
|
|
27536
27557
|
//# sourceMappingURL=index.js.map
|