@openfort/openfort-js 0.7.3 → 0.7.4
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/index.cjs +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -59,6 +59,7 @@ exports.OAuthProvider = void 0;
|
|
|
59
59
|
(function (OAuthProvider) {
|
|
60
60
|
OAuthProvider["GOOGLE"] = "google";
|
|
61
61
|
OAuthProvider["TWITTER"] = "twitter";
|
|
62
|
+
OAuthProvider["FACEBOOK"] = "facebook";
|
|
62
63
|
})(exports.OAuthProvider || (exports.OAuthProvider = {}));
|
|
63
64
|
|
|
64
65
|
/* tslint:disable */
|
package/dist/index.d.ts
CHANGED
|
@@ -176,11 +176,13 @@ declare const AUTH_PROVIDER: {
|
|
|
176
176
|
readonly supabase: "supabase";
|
|
177
177
|
readonly custom: "custom";
|
|
178
178
|
readonly oidc: "oidc";
|
|
179
|
+
readonly facebook: "facebook";
|
|
179
180
|
};
|
|
180
181
|
type AuthProvider = typeof AUTH_PROVIDER[keyof typeof AUTH_PROVIDER];
|
|
181
182
|
declare enum OAuthProvider {
|
|
182
183
|
GOOGLE = "google",
|
|
183
|
-
TWITTER = "twitter"
|
|
184
|
+
TWITTER = "twitter",
|
|
185
|
+
FACEBOOK = "facebook"
|
|
184
186
|
}
|
|
185
187
|
interface NextActionPayload {
|
|
186
188
|
'userOp'?: any;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED