@b3dotfun/sdk 0.0.33-alpha.7 → 0.0.33-alpha.8
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/cjs/global-account/react/index.native.d.ts +2 -1
- package/dist/cjs/global-account/react/index.native.js +5 -3
- package/dist/esm/global-account/react/index.native.d.ts +2 -1
- package/dist/esm/global-account/react/index.native.js +2 -1
- package/dist/types/global-account/react/index.native.d.ts +2 -1
- package/package.json +2 -2
- package/src/global-account/react/index.native.ts +2 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export { B3Provider } from "./components/B3Provider/B3Provider.native";
|
|
2
|
-
export { useB3 } from "./components/B3Provider/useB3";
|
|
3
2
|
export { B3Context, type B3ContextType } from "./components/B3Provider/types";
|
|
3
|
+
export { useB3 } from "./components/B3Provider/useB3";
|
|
4
4
|
export { useAccountWallet } from "./hooks/useAccountWallet";
|
|
5
5
|
export { useAuthentication } from "./hooks/useAuthentication";
|
|
6
|
+
export { useProfile } from "./hooks/useProfile";
|
|
6
7
|
export { useSiwe } from "./hooks/useSiwe";
|
|
7
8
|
export { useAuthStore } from "./stores/useAuthStore";
|
|
@@ -3,18 +3,20 @@
|
|
|
3
3
|
// export * from "./hooks";
|
|
4
4
|
// export * from "./stores";
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.useAuthStore = exports.useSiwe = exports.useAuthentication = exports.useAccountWallet = exports.
|
|
6
|
+
exports.useAuthStore = exports.useSiwe = exports.useProfile = exports.useAuthentication = exports.useAccountWallet = exports.useB3 = exports.B3Context = 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/B3Provider.native");
|
|
9
9
|
Object.defineProperty(exports, "B3Provider", { enumerable: true, get: function () { return B3Provider_native_1.B3Provider; } });
|
|
10
|
-
var useB3_1 = require("./components/B3Provider/useB3");
|
|
11
|
-
Object.defineProperty(exports, "useB3", { enumerable: true, get: function () { return useB3_1.useB3; } });
|
|
12
10
|
var types_1 = require("./components/B3Provider/types");
|
|
13
11
|
Object.defineProperty(exports, "B3Context", { enumerable: true, get: function () { return types_1.B3Context; } });
|
|
12
|
+
var useB3_1 = require("./components/B3Provider/useB3");
|
|
13
|
+
Object.defineProperty(exports, "useB3", { enumerable: true, get: function () { return useB3_1.useB3; } });
|
|
14
14
|
var useAccountWallet_1 = require("./hooks/useAccountWallet");
|
|
15
15
|
Object.defineProperty(exports, "useAccountWallet", { enumerable: true, get: function () { return useAccountWallet_1.useAccountWallet; } });
|
|
16
16
|
var useAuthentication_1 = require("./hooks/useAuthentication");
|
|
17
17
|
Object.defineProperty(exports, "useAuthentication", { enumerable: true, get: function () { return useAuthentication_1.useAuthentication; } });
|
|
18
|
+
var useProfile_1 = require("./hooks/useProfile");
|
|
19
|
+
Object.defineProperty(exports, "useProfile", { enumerable: true, get: function () { return useProfile_1.useProfile; } });
|
|
18
20
|
var useSiwe_1 = require("./hooks/useSiwe");
|
|
19
21
|
Object.defineProperty(exports, "useSiwe", { enumerable: true, get: function () { return useSiwe_1.useSiwe; } });
|
|
20
22
|
var useAuthStore_1 = require("./stores/useAuthStore");
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export { B3Provider } from "./components/B3Provider/B3Provider.native";
|
|
2
|
-
export { useB3 } from "./components/B3Provider/useB3";
|
|
3
2
|
export { B3Context, type B3ContextType } from "./components/B3Provider/types";
|
|
3
|
+
export { useB3 } from "./components/B3Provider/useB3";
|
|
4
4
|
export { useAccountWallet } from "./hooks/useAccountWallet";
|
|
5
5
|
export { useAuthentication } from "./hooks/useAuthentication";
|
|
6
|
+
export { useProfile } from "./hooks/useProfile";
|
|
6
7
|
export { useSiwe } from "./hooks/useSiwe";
|
|
7
8
|
export { useAuthStore } from "./stores/useAuthStore";
|
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
// export * from "./stores/index.js";
|
|
4
4
|
// We only export the components and hooks that are needed for the native app
|
|
5
5
|
export { B3Provider } from "./components/B3Provider/B3Provider.native.js";
|
|
6
|
-
export { useB3 } from "./components/B3Provider/useB3.js";
|
|
7
6
|
export { B3Context } from "./components/B3Provider/types.js";
|
|
7
|
+
export { useB3 } from "./components/B3Provider/useB3.js";
|
|
8
8
|
export { useAccountWallet } from "./hooks/useAccountWallet.js";
|
|
9
9
|
export { useAuthentication } from "./hooks/useAuthentication.js";
|
|
10
|
+
export { useProfile } from "./hooks/useProfile.js";
|
|
10
11
|
export { useSiwe } from "./hooks/useSiwe.js";
|
|
11
12
|
export { useAuthStore } from "./stores/useAuthStore.js";
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export { B3Provider } from "./components/B3Provider/B3Provider.native";
|
|
2
|
-
export { useB3 } from "./components/B3Provider/useB3";
|
|
3
2
|
export { B3Context, type B3ContextType } from "./components/B3Provider/types";
|
|
3
|
+
export { useB3 } from "./components/B3Provider/useB3";
|
|
4
4
|
export { useAccountWallet } from "./hooks/useAccountWallet";
|
|
5
5
|
export { useAuthentication } from "./hooks/useAuthentication";
|
|
6
|
+
export { useProfile } from "./hooks/useProfile";
|
|
6
7
|
export { useSiwe } from "./hooks/useSiwe";
|
|
7
8
|
export { useAuthStore } from "./stores/useAuthStore";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@b3dotfun/sdk",
|
|
3
|
-
"version": "0.0.33-alpha.
|
|
3
|
+
"version": "0.0.33-alpha.8",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"react-native": "./dist/cjs/index.native.js",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
"constants"
|
|
238
238
|
],
|
|
239
239
|
"dependencies": {
|
|
240
|
-
"@b3dotfun/b3-api": "0.0.
|
|
240
|
+
"@b3dotfun/b3-api": "0.0.48",
|
|
241
241
|
"@b3dotfun/basement-api": "0.0.11",
|
|
242
242
|
"@feathersjs/authentication-client": "5.0.33",
|
|
243
243
|
"@feathersjs/feathers": "5.0.33",
|
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
export { B3Provider } from "./components/B3Provider/B3Provider.native";
|
|
8
8
|
|
|
9
|
-
export { useB3 } from "./components/B3Provider/useB3";
|
|
10
9
|
export { B3Context, type B3ContextType } from "./components/B3Provider/types";
|
|
10
|
+
export { useB3 } from "./components/B3Provider/useB3";
|
|
11
11
|
export { useAccountWallet } from "./hooks/useAccountWallet";
|
|
12
12
|
export { useAuthentication } from "./hooks/useAuthentication";
|
|
13
|
+
export { useProfile } from "./hooks/useProfile";
|
|
13
14
|
export { useSiwe } from "./hooks/useSiwe";
|
|
14
15
|
export { useAuthStore } from "./stores/useAuthStore";
|