@b3dotfun/sdk 0.0.1-alpha.8 → 0.0.1-alpha.9

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.
@@ -1,5 +1,6 @@
1
1
  export { B3Provider } from "./components/B3Provider.native";
2
2
  export { useB3 } from "./components/B3Provider.native";
3
3
  export { useAuthentication } from "./hooks/useAuthentication";
4
+ export { useAuthStore } from "./stores/useAuthStore";
4
5
  export { useSiwe } from "./hooks/useSiwe";
5
6
  export { useAccountWallet } from "./hooks/useAccountWallet";
@@ -3,7 +3,7 @@
3
3
  // export * from "./hooks";
4
4
  // export * from "./stores";
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.useAccountWallet = exports.useSiwe = exports.useAuthentication = exports.useB3 = exports.B3Provider = void 0;
6
+ exports.useAccountWallet = exports.useSiwe = exports.useAuthStore = exports.useAuthentication = exports.useB3 = exports.B3Provider = void 0;
7
7
  // We only export the components and hooks that are needed for the native app
8
8
  var B3Provider_native_1 = require("./components/B3Provider.native");
9
9
  Object.defineProperty(exports, "B3Provider", { enumerable: true, get: function () { return B3Provider_native_1.B3Provider; } });
@@ -11,6 +11,8 @@ var B3Provider_native_2 = require("./components/B3Provider.native");
11
11
  Object.defineProperty(exports, "useB3", { enumerable: true, get: function () { return B3Provider_native_2.useB3; } });
12
12
  var useAuthentication_1 = require("./hooks/useAuthentication");
13
13
  Object.defineProperty(exports, "useAuthentication", { enumerable: true, get: function () { return useAuthentication_1.useAuthentication; } });
14
+ var useAuthStore_1 = require("./stores/useAuthStore");
15
+ Object.defineProperty(exports, "useAuthStore", { enumerable: true, get: function () { return useAuthStore_1.useAuthStore; } });
14
16
  var useSiwe_1 = require("./hooks/useSiwe");
15
17
  Object.defineProperty(exports, "useSiwe", { enumerable: true, get: function () { return useSiwe_1.useSiwe; } });
16
18
  var useAccountWallet_1 = require("./hooks/useAccountWallet");
@@ -1,5 +1,6 @@
1
1
  export { B3Provider } from "./components/B3Provider.native";
2
2
  export { useB3 } from "./components/B3Provider.native";
3
3
  export { useAuthentication } from "./hooks/useAuthentication";
4
+ export { useAuthStore } from "./stores/useAuthStore";
4
5
  export { useSiwe } from "./hooks/useSiwe";
5
6
  export { useAccountWallet } from "./hooks/useAccountWallet";
@@ -5,5 +5,6 @@
5
5
  export { B3Provider } from "./components/B3Provider.native";
6
6
  export { useB3 } from "./components/B3Provider.native";
7
7
  export { useAuthentication } from "./hooks/useAuthentication";
8
+ export { useAuthStore } from "./stores/useAuthStore";
8
9
  export { useSiwe } from "./hooks/useSiwe";
9
10
  export { useAccountWallet } from "./hooks/useAccountWallet";
@@ -1,5 +1,6 @@
1
1
  export { B3Provider } from "./components/B3Provider.native";
2
2
  export { useB3 } from "./components/B3Provider.native";
3
3
  export { useAuthentication } from "./hooks/useAuthentication";
4
+ export { useAuthStore } from "./stores/useAuthStore";
4
5
  export { useSiwe } from "./hooks/useSiwe";
5
6
  export { useAccountWallet } from "./hooks/useAccountWallet";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@b3dotfun/sdk",
3
- "version": "0.0.1-alpha.8",
3
+ "version": "0.0.1-alpha.9",
4
4
  "source": "src/index.ts",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "react-native": "./dist/cjs/index.native.js",
@@ -8,5 +8,6 @@ export { B3Provider } from "./components/B3Provider.native";
8
8
 
9
9
  export { useB3 } from "./components/B3Provider.native";
10
10
  export { useAuthentication } from "./hooks/useAuthentication";
11
+ export { useAuthStore } from "./stores/useAuthStore";
11
12
  export { useSiwe } from "./hooks/useSiwe";
12
13
  export { useAccountWallet } from "./hooks/useAccountWallet";