@odynn/awayz-core 0.2.26 → 0.2.28
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/{AccountService-BmvBvxkG.js → AccountService-B-dpvIRm.js} +455 -477
- package/dist/_commonjsHelpers-B52_cu2H.js +26 -0
- package/dist/components/CashValue/CashValue.js +1799 -20925
- package/dist/hooks/useAwayzAuth/useAwayzAuth.js +1 -1
- package/dist/hooks/useSearchLimit.js +1 -1
- package/dist/hooks/{useWallet.js → useWallet/useWallet.js} +5 -5
- package/dist/hooks/useWallet/useWallet.test.js +12859 -0
- package/dist/index-B7QVGqcx.js +19134 -0
- package/dist/lib/hooks/useWallet/mocks/CardsResponse.json.d.ts +34 -0
- package/dist/lib/hooks/useWallet/useWallet.d.ts +15 -0
- package/dist/lib/hooks/useWallet/useWallet.test.d.ts +1 -0
- package/dist/lib/main.d.ts +2 -2
- package/dist/lib/services/wallet/WalletService.types.d.ts +4 -0
- package/dist/lib/tests/TestWrapper.d.ts +7 -0
- package/dist/magic-string.es-D4UQQyt0.js +859 -0
- package/dist/main.js +2 -2
- package/dist/providers/AwayzProvider.js +1 -1
- package/dist/services/account/AccountService.js +1 -1
- package/dist/services/currency/CurrencyService.js +1 -1
- package/dist/services/instance.js +1 -1
- package/dist/services/wallet/WalletService.js +1 -1
- package/dist/tests/TestWrapper.js +11678 -0
- package/package.json +2 -5
- package/dist/lib/hooks/useWallet.d.ts +0 -15
package/dist/main.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { AwayzProvider as e } from "./providers/AwayzProvider.js";
|
|
2
2
|
import { useAwayzContext as a } from "./hooks/useAwayzContext.js";
|
|
3
3
|
import { useSearchLimit as p } from "./hooks/useSearchLimit.js";
|
|
4
|
-
import { useWallet as f } from "./hooks/useWallet.js";
|
|
4
|
+
import { useWallet as f } from "./hooks/useWallet/useWallet.js";
|
|
5
5
|
import { EAuthFlow as s } from "./types/EAuthFlow.js";
|
|
6
|
-
import { c as l, i as c } from "./AccountService-
|
|
6
|
+
import { c as l, i as c } from "./AccountService-B-dpvIRm.js";
|
|
7
7
|
import { awayzClient as w } from "./configs/awayzClient.js";
|
|
8
8
|
import { CashValue as C } from "./components/CashValue/CashValue.js";
|
|
9
9
|
import { EToolTipPosition as z } from "./components/CashValue/CashValueTypes.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { useEffect as i } from "react";
|
|
3
3
|
import { AwayzContext as m } from "../context/AwayzContext.js";
|
|
4
|
-
import { E as e } from "../AccountService-
|
|
4
|
+
import { E as e } from "../AccountService-B-dpvIRm.js";
|
|
5
5
|
import { useAwayzAuth as s } from "../hooks/useAwayzAuth/useAwayzAuth.js";
|
|
6
6
|
import { setBaseUrl as l } from "../configs/baseUrl.js";
|
|
7
7
|
import { QueryClientProvider as u } from "@tanstack/react-query";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../../assets/_styles.css';var i = Object.defineProperty;
|
|
2
2
|
var y = (t, r, e) => r in t ? i(t, r, { enumerable: !0, configurable: !0, writable: !0, value: e }) : t[r] = e;
|
|
3
3
|
var o = (t, r, e) => y(t, typeof r != "symbol" ? r + "" : r, e);
|
|
4
|
-
import { e as p, a as C, c as a } from "../../AccountService-
|
|
4
|
+
import { e as p, a as C, c as a } from "../../AccountService-B-dpvIRm.js";
|
|
5
5
|
import "react";
|
|
6
6
|
import { ECurrencyEndpoints as s } from "../../configs/endpoints.js";
|
|
7
7
|
import "react/jsx-runtime";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../../assets/_styles.css';var y = Object.defineProperty;
|
|
2
2
|
var w = (e, a, t) => a in e ? y(e, a, { enumerable: !0, configurable: !0, writable: !0, value: t }) : e[a] = t;
|
|
3
3
|
var o = (e, a, t) => w(e, typeof a != "symbol" ? a + "" : a, t);
|
|
4
|
-
import { b as s, c as i, d as n } from "../../AccountService-
|
|
4
|
+
import { b as s, c as i, d as n } from "../../AccountService-B-dpvIRm.js";
|
|
5
5
|
import "react";
|
|
6
6
|
import "react/jsx-runtime";
|
|
7
7
|
import "../../context/AwayzContext.js";
|