@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/cli/migrate.js
CHANGED
|
@@ -831,6 +831,27 @@ var providers = defineProviders({
|
|
|
831
831
|
url: "https://api.close.com/oauth2/token/"
|
|
832
832
|
}
|
|
833
833
|
},
|
|
834
|
+
calendly: {
|
|
835
|
+
authorizationUrl: "https://auth.calendly.com/oauth/authorize",
|
|
836
|
+
email: ["resource", "email"],
|
|
837
|
+
fullName: ["resource", "name"],
|
|
838
|
+
isOIDC: false,
|
|
839
|
+
isRefreshable: true,
|
|
840
|
+
profileRequest: {
|
|
841
|
+
authIn: "header",
|
|
842
|
+
encoding: "application/json",
|
|
843
|
+
method: "GET",
|
|
844
|
+
url: "https://api.calendly.com/users/me"
|
|
845
|
+
},
|
|
846
|
+
scopeRequired: false,
|
|
847
|
+
subject: ["resource", "uri"],
|
|
848
|
+
subjectType: "string",
|
|
849
|
+
tokenRequest: {
|
|
850
|
+
authIn: "body",
|
|
851
|
+
encoding: "application/x-www-form-urlencoded",
|
|
852
|
+
url: "https://auth.calendly.com/oauth/token"
|
|
853
|
+
}
|
|
854
|
+
},
|
|
834
855
|
coinbase: {
|
|
835
856
|
authorizationUrl: "https://www.coinbase.com/oauth/authorize",
|
|
836
857
|
isOIDC: false,
|
|
@@ -3138,5 +3159,5 @@ var main = async () => {
|
|
|
3138
3159
|
};
|
|
3139
3160
|
await main();
|
|
3140
3161
|
|
|
3141
|
-
//# debugId=
|
|
3162
|
+
//# debugId=2EAA867B1010DA6A64756E2164756E21
|
|
3142
3163
|
//# sourceMappingURL=migrate.js.map
|