@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 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
@@ -55,6 +55,7 @@ var OAuthProvider;
55
55
  (function (OAuthProvider) {
56
56
  OAuthProvider["GOOGLE"] = "google";
57
57
  OAuthProvider["TWITTER"] = "twitter";
58
+ OAuthProvider["FACEBOOK"] = "facebook";
58
59
  })(OAuthProvider || (OAuthProvider = {}));
59
60
 
60
61
  /* tslint:disable */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfort/openfort-js",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "author": "Openfort (https://www.openfort.xyz)",
5
5
  "bugs": "https://github.com/openfort-xyz/openfort-js/issues",
6
6
  "repository": "openfort-xyz/openfort-js.git",