udxcms 1.0.3 → 1.0.5
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/api/common.d.ts +28 -28
- package/dist/api/h5/axios.d.ts +1 -1
- package/dist/api/index.d.ts +2 -2
- package/dist/api/index.js +144 -2
- package/dist/utils/axiosRetry.d.ts +7 -0
- package/dist/utils/axiosRetry.js +14 -0
- package/dist/utils/connect.d.ts +6 -0
- package/dist/utils/connect.js +7 -2
- package/dist/utils/index.d.ts +55 -1
- package/dist/utils/index.js +712 -3
- package/dist/utils/parse.d.ts +5 -0
- package/dist/utils/parse.js +12 -0
- package/dist/utils/pdf.d.ts +4 -0
- package/dist/utils/pdf.js +5 -2
- package/dist/views/customService/academy.vue +78 -0
- package/dist/views/customService/api.vue +120 -0
- package/dist/views/customService/dapp.vue +42 -0
- package/dist/views/customService/dappDetail.vue +124 -0
- package/dist/views/customService/detail.vue +155 -0
- package/dist/views/customService/doc.vue +124 -0
- package/dist/views/customService/ecosystem/index.vue +374 -0
- package/dist/views/customService/help/entry.vue +29 -0
- package/dist/views/customService/help/helpDetail.vue +167 -0
- package/dist/views/customService/help/index.vue +145 -0
- package/dist/views/customService/help/nav.vue +68 -0
- package/dist/views/customService/recruit.vue +133 -0
- package/dist/views/customService/sdk.vue +126 -0
- package/dist/views/customService/team.vue +245 -0
- package/dist/views/customService/term.vue +88 -0
- package/dist/views/customService/vote.vue +133 -0
- package/dist/views/customService/whitepaper.vue +126 -0
- package/dist/views/customService/wiki.vue +126 -0
- package/dist/views/error/error404.vue +76 -0
- package/dist/views/error/error500.vue +74 -0
- package/dist/views/index.js +23 -48
- package/dist/views/login/login_wallet.vue +229 -0
- package/package.json +7 -3
package/dist/api/common.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export function getPhoneCode(params: any): any
|
|
2
|
-
export function getCurrency(): any
|
|
3
|
-
export function setCurrency(currency: any): any
|
|
4
|
-
export function setLanguage(data: any): any
|
|
5
|
-
export function getLanguages(): any
|
|
6
|
-
export function geeTest(): any
|
|
7
|
-
export function getMedias(data: any): any
|
|
8
|
-
export function logOut(): any
|
|
9
|
-
export function getMessage(data: any): any
|
|
10
|
-
export function getUnreadCount(): any
|
|
11
|
-
export function setRead(): any
|
|
12
|
-
export function setReadById(data: any): any
|
|
13
|
-
export function breakdown(params: any): any
|
|
14
|
-
export function getLocation(): any
|
|
15
|
-
export function getBlocksOverview(data: any): any
|
|
16
|
-
export function getRewardsOverview(params: any): any
|
|
17
|
-
export function getTradeOverview(params: any): any
|
|
18
|
-
export function getTokens(): any
|
|
19
|
-
export function fetchNetworkList(): any
|
|
20
|
-
export function getCoin(data: any): any
|
|
21
|
-
export function getAnnouncement(type: any): any
|
|
22
|
-
export function getPssistance(type: any): any
|
|
23
|
-
export function getService(data: any): any
|
|
24
|
-
export function favor(data: any): any
|
|
25
|
-
export function isFavor(data: any): any
|
|
26
|
-
export function getWhitePaper(data: any): any
|
|
27
|
-
export function getSignleSymbolPrice(data: any): any
|
|
28
|
-
export function isMerchant(params: any, headers?: {}): any
|
|
1
|
+
export function getPhoneCode(params: any): Promise<import("axios").AxiosResponse<any>>;
|
|
2
|
+
export function getCurrency(): Promise<import("axios").AxiosResponse<any>>;
|
|
3
|
+
export function setCurrency(currency: any): Promise<import("axios").AxiosResponse<any>>;
|
|
4
|
+
export function setLanguage(data: any): import("axios").AxiosPromise<any>;
|
|
5
|
+
export function getLanguages(): import("axios").AxiosPromise<any>;
|
|
6
|
+
export function geeTest(): Promise<import("axios").AxiosResponse<any>>;
|
|
7
|
+
export function getMedias(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
8
|
+
export function logOut(): Promise<import("axios").AxiosResponse<any>>;
|
|
9
|
+
export function getMessage(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
10
|
+
export function getUnreadCount(): Promise<import("axios").AxiosResponse<any>>;
|
|
11
|
+
export function setRead(): Promise<import("axios").AxiosResponse<any>>;
|
|
12
|
+
export function setReadById(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
13
|
+
export function breakdown(params: any): import("axios").AxiosPromise<any>;
|
|
14
|
+
export function getLocation(): Promise<import("axios").AxiosResponse<any>>;
|
|
15
|
+
export function getBlocksOverview(data: any): Promise<any>;
|
|
16
|
+
export function getRewardsOverview(params: any): import("axios").AxiosPromise<any>;
|
|
17
|
+
export function getTradeOverview(params: any): import("axios").AxiosPromise<any>;
|
|
18
|
+
export function getTokens(): import("axios").AxiosPromise<any>;
|
|
19
|
+
export function fetchNetworkList(): import("axios").AxiosPromise<any>;
|
|
20
|
+
export function getCoin(data: any): import("axios").AxiosPromise<any>;
|
|
21
|
+
export function getAnnouncement(type: any): import("axios").AxiosPromise<any>;
|
|
22
|
+
export function getPssistance(type: any): import("axios").AxiosPromise<any>;
|
|
23
|
+
export function getService(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
24
|
+
export function favor(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
25
|
+
export function isFavor(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
26
|
+
export function getWhitePaper(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
27
|
+
export function getSignleSymbolPrice(data: any): import("axios").AxiosPromise<any>;
|
|
28
|
+
export function isMerchant(params: any, headers?: {}): Promise<any>;
|
package/dist/api/h5/axios.d.ts
CHANGED
package/dist/api/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export * from "./common.js";
|
|
2
|
-
export * from "./h5/common.js";
|
|
3
|
-
export
|
|
2
|
+
export * as H5Common from "./h5/common.js";
|
|
3
|
+
export const instance: import("axios").AxiosInstance;
|
package/dist/api/index.js
CHANGED
|
@@ -10,10 +10,152 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
13
18
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
19
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
20
|
};
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
41
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
42
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
43
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
44
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
45
|
+
});
|
|
46
|
+
};
|
|
47
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
49
|
+
};
|
|
16
50
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51
|
+
exports.H5Common = exports.instance = void 0;
|
|
52
|
+
const axios_1 = __importDefault(require("axios"));
|
|
53
|
+
const index_1 = __importDefault(require("../config/index"));
|
|
54
|
+
const index_2 = require("../utils/index");
|
|
55
|
+
const Storage_1 = __importDefault(require("../utils/Storage"));
|
|
56
|
+
const axiosRetry_1 = require("../utils/axiosRetry");
|
|
57
|
+
var mergeConfig = require("axios/lib/core/mergeConfig");
|
|
58
|
+
const instance = axios_1.default.create({
|
|
59
|
+
baseURL: "",
|
|
60
|
+
timeout: index_1.default.timeOut,
|
|
61
|
+
retry: axiosRetry_1.retryCount,
|
|
62
|
+
retryDelay: axiosRetry_1.retryDelay,
|
|
63
|
+
headers: {},
|
|
64
|
+
});
|
|
65
|
+
exports.instance = instance;
|
|
66
|
+
var dealMarktUrl = function (url) {
|
|
67
|
+
if (url.endsWith("/market"))
|
|
68
|
+
return url.slice(0, url.length - "/market".length);
|
|
69
|
+
else
|
|
70
|
+
url;
|
|
71
|
+
};
|
|
72
|
+
instance.delete = function (url, data, config) {
|
|
73
|
+
return instance.request(mergeConfig(config || {}, {
|
|
74
|
+
method: "delete",
|
|
75
|
+
url: url,
|
|
76
|
+
data: data,
|
|
77
|
+
}));
|
|
78
|
+
};
|
|
79
|
+
instance.interceptors.request.use(function (config) {
|
|
80
|
+
let Store = window.$Vue.$store;
|
|
81
|
+
let base_url = (0, axiosRetry_1.getBaseUrl)(0);
|
|
82
|
+
let base_url_market = (site_config && (0, index_2.getMarketApi)((0, index_2.getChainId)())) || "";
|
|
83
|
+
// console.log('base_url_market:', base_url_market);
|
|
84
|
+
let hostname = window.location.hostname;
|
|
85
|
+
if (base_url.length) {
|
|
86
|
+
config.baseURL = base_url;
|
|
87
|
+
}
|
|
88
|
+
if (base_url.length &&
|
|
89
|
+
hostname &&
|
|
90
|
+
(config.url.startsWith("/market") ||
|
|
91
|
+
config.url.startsWith("market"))) {
|
|
92
|
+
config.baseURL = dealMarktUrl(base_url_market);
|
|
93
|
+
}
|
|
94
|
+
if (!config.unToken) {
|
|
95
|
+
config.headers["x-auth-token"] = Storage_1.default.get("TOKEN");
|
|
96
|
+
config.headers["client_id"] = "WEB";
|
|
97
|
+
config.headers["language"] = localStorage.getItem("language");
|
|
98
|
+
config.headers["timezone"] =
|
|
99
|
+
(Store.state.user && Store.state.user.userInfo && Store.state.user.userInfo.timezone) ||
|
|
100
|
+
(0, index_2.getTimeZone)() ||
|
|
101
|
+
"";
|
|
102
|
+
config.headers["country"] =
|
|
103
|
+
(Store.state.user && Store.state.user.userInfo && Store.state.user.userInfo.country) ||
|
|
104
|
+
"";
|
|
105
|
+
if (!config.headers["signature"])
|
|
106
|
+
delete config.headers["signature"];
|
|
107
|
+
if (config["x-submit-token"]) {
|
|
108
|
+
config.headers["x-submit-token"] = config["x-submit-token"];
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
// console.log('config:', config);
|
|
112
|
+
return config;
|
|
113
|
+
}, function (error) {
|
|
114
|
+
return Promise.reject(error);
|
|
115
|
+
});
|
|
116
|
+
instance.interceptors.response.use(function (response) {
|
|
117
|
+
let isNotGoToLogin = response.config.isNotGoToLogin;
|
|
118
|
+
if (response) {
|
|
119
|
+
let code = response.data.code;
|
|
120
|
+
response.data.codeMessage = response.data.message;
|
|
121
|
+
if (code == "200" || (response.status === 200 && !code) || code === 3) {
|
|
122
|
+
return response.data;
|
|
123
|
+
}
|
|
124
|
+
else if (typeof code === 'string') {
|
|
125
|
+
let resCode = code.split("-");
|
|
126
|
+
let codeStr = resCode[2] + "-" + resCode[3];
|
|
127
|
+
if (codeStr === "2-023") {
|
|
128
|
+
if (!isNotGoToLogin) {
|
|
129
|
+
Store.commit("user/logoutWallet");
|
|
130
|
+
response.data.showError = true;
|
|
131
|
+
$Vue && $Vue.$router.push({
|
|
132
|
+
name: "login_wallet",
|
|
133
|
+
});
|
|
134
|
+
return Promise.reject(response.data);
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
Store.commit("user/logoutWallet");
|
|
138
|
+
return Promise.resolve(response.data);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
if (parseInt(code.split("-")[2]) <= 2) {
|
|
143
|
+
response.data.codeMessage = response.data.message;
|
|
144
|
+
return Promise.reject(response.data);
|
|
145
|
+
}
|
|
146
|
+
else {
|
|
147
|
+
response.showError = true;
|
|
148
|
+
return Promise.reject(response.data);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
else {
|
|
153
|
+
return Promise.reject(response.data);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}, (error) => __awaiter(void 0, void 0, void 0, function* () {
|
|
157
|
+
const res = yield (0, axiosRetry_1.retryFun)(instance, error);
|
|
158
|
+
return res;
|
|
159
|
+
}));
|
|
17
160
|
__exportStar(require("./common.js"), exports);
|
|
18
|
-
|
|
19
|
-
__exportStar(require("./h5/axios.js"), exports);
|
|
161
|
+
exports.H5Common = __importStar(require("./h5/common.js"));
|
|
@@ -2,3 +2,10 @@ export const retryCount: 1;
|
|
|
2
2
|
export const retryDelay: 100;
|
|
3
3
|
export function getBaseUrl(retry: any): string;
|
|
4
4
|
export function retryFun(instance: any, error: any): Promise<any>;
|
|
5
|
+
declare namespace _default {
|
|
6
|
+
export { retryCount };
|
|
7
|
+
export { retryDelay };
|
|
8
|
+
export { getBaseUrl };
|
|
9
|
+
export { retryFun };
|
|
10
|
+
}
|
|
11
|
+
export default _default;
|
package/dist/utils/axiosRetry.js
CHANGED
|
@@ -10,6 +10,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.retryFun = exports.getBaseUrl = exports.retryDelay = exports.retryCount = void 0;
|
|
13
|
+
/*
|
|
14
|
+
* @Author: lewis lewis@everylink.ai
|
|
15
|
+
* @Date: 2023-12-19 10:49:53
|
|
16
|
+
* @LastEditors: lewis lewis@everylink.ai
|
|
17
|
+
* @LastEditTime: 2025-09-19 17:03:24
|
|
18
|
+
* @FilePath: /localTools/Users/apple/web-front/web-front/src/common_modules/cms-submodule/utils/axiosRetry.js
|
|
19
|
+
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
20
|
+
*/
|
|
13
21
|
exports.retryCount = 1; // 重试次数,现在默认重试一次,后期可以调整
|
|
14
22
|
exports.retryDelay = 100; // 重试延迟时间
|
|
15
23
|
let site_common_api_url = '';
|
|
@@ -55,3 +63,9 @@ const retryFun = (instance, error) => __awaiter(void 0, void 0, void 0, function
|
|
|
55
63
|
}
|
|
56
64
|
});
|
|
57
65
|
exports.retryFun = retryFun;
|
|
66
|
+
exports.default = {
|
|
67
|
+
retryCount: exports.retryCount,
|
|
68
|
+
retryDelay: exports.retryDelay,
|
|
69
|
+
getBaseUrl: exports.getBaseUrl,
|
|
70
|
+
retryFun: exports.retryFun
|
|
71
|
+
};
|
package/dist/utils/connect.d.ts
CHANGED
|
@@ -12,3 +12,9 @@ export class ConnectSocketTool {
|
|
|
12
12
|
close(): void;
|
|
13
13
|
}
|
|
14
14
|
export function connnectSingle(url: any): void;
|
|
15
|
+
declare namespace _default {
|
|
16
|
+
export { connnectSingle };
|
|
17
|
+
export { ConnectSocketTool };
|
|
18
|
+
export { connectCloseReason };
|
|
19
|
+
}
|
|
20
|
+
export default _default;
|
package/dist/utils/connect.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* @version:
|
|
5
5
|
* @Author:
|
|
6
6
|
* @Date: 2021-04-07 14:59:35
|
|
7
|
-
* @LastEditors:
|
|
8
|
-
* @LastEditTime:
|
|
7
|
+
* @LastEditors: lewis lewis@everylink.ai
|
|
8
|
+
* @LastEditTime: 2025-09-19 17:05:55
|
|
9
9
|
*/
|
|
10
10
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11
11
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -284,3 +284,8 @@ const connnectSingle = function (url) {
|
|
|
284
284
|
};
|
|
285
285
|
};
|
|
286
286
|
exports.connnectSingle = connnectSingle;
|
|
287
|
+
exports.default = {
|
|
288
|
+
connnectSingle: exports.connnectSingle,
|
|
289
|
+
ConnectSocketTool,
|
|
290
|
+
connectCloseReason: exports.connectCloseReason,
|
|
291
|
+
};
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,6 +1,60 @@
|
|
|
1
|
+
export function calcDotDeal(val: any, resVal: any, sign?: string): string;
|
|
2
|
+
export function loadImportScript(src: any, callback: any, saveKey: any): Promise<any>;
|
|
3
|
+
export function AccountForm(account: any, accountType: any): any;
|
|
4
|
+
export function getTimeZone(): string;
|
|
5
|
+
export function getUTCTime(d1: any): number;
|
|
6
|
+
export function formatUTCTime(date: any): any;
|
|
7
|
+
export function isUserCenter(): boolean;
|
|
8
|
+
export function onEvents(type: any, fn: any): void;
|
|
9
|
+
export function emitEvents(type: any, args: any): void;
|
|
10
|
+
export function refreshEvents(events: any): void;
|
|
11
|
+
export function emitLoading(obj: any): void;
|
|
12
|
+
export function getToken(): string;
|
|
13
|
+
export function getAreaCode(): string;
|
|
14
|
+
export function copyText(text: any, e: any): boolean;
|
|
15
|
+
export function isPhone(): RegExpMatchArray;
|
|
16
|
+
export function getChainId(): number;
|
|
17
|
+
export function getLayer1RpcUrl(chainId: any): any;
|
|
18
|
+
export function getChainLayer2Config(chainId?: number): {};
|
|
19
|
+
export function toUpperDataKey(item: any): any;
|
|
20
|
+
export function getMarketApi(chainId: any, connectType: string, apiType: any): string;
|
|
21
|
+
export function getQueryChainId(isMarketType: any): any;
|
|
22
|
+
export function getTradeDefaultChainId(): any;
|
|
23
|
+
export function isMobile(): boolean;
|
|
24
|
+
export function isInIsWalletApp(): boolean;
|
|
25
|
+
export function getStyleObj(pageName: any, keyStr: any): {};
|
|
26
|
+
export function formDataEthers(val: any, decimal: any): string;
|
|
27
|
+
export function formatDateDecimal(num?: number, decimal?: number, zoreFalse?: number): any;
|
|
28
|
+
export function checkEthAddress(address: any): "" | "address must start with '0x'" | "Address must be 20 bytes long";
|
|
29
|
+
export function formatAccount(value: any): any;
|
|
30
|
+
export function accMul(arg1: any, arg2: any): number;
|
|
31
|
+
export function accDiv(arg1: any, arg2: any): number;
|
|
32
|
+
export function accAddSub(arg1: any, arg2: any, sign: any): string | number;
|
|
33
|
+
export function getExplorer(chainId: any): "rinkeby" | "vm";
|
|
34
|
+
export function getHashBlockUrl(hash: string, chainId: any, layer: any): string;
|
|
35
|
+
export function formatTokenCommify(value: any, dp?: any, addSuffixZero?: boolean): any;
|
|
36
|
+
export function toRound(value: any, ratio?: number): string;
|
|
37
|
+
export function formatFiatCommify(value: any, dp?: number): any;
|
|
38
|
+
export function formatNumber(val: any, decimal: any): any;
|
|
39
|
+
export function decimalFunc(val: any, decimal?: number): any;
|
|
40
|
+
export function addZoreFormat(demical: any): string;
|
|
41
|
+
export function numberFormat(num: any, demical?: number, isZero?: boolean): any;
|
|
42
|
+
export function numDecimals(val: any, decimals: any, zeroDecimals?: number): string | number;
|
|
43
|
+
export function formatStringNum(num?: number, decimal?: number, zoreFalse?: number): any;
|
|
44
|
+
export function formatArrStringNum(num: any): any[];
|
|
45
|
+
export function setDecimals(name: any, value: any): void;
|
|
46
|
+
export function getDecimals(name: any): any;
|
|
47
|
+
export function filterL2Balance(data: any, type: any, symbol: any): any;
|
|
48
|
+
export function commify(value: any): any;
|
|
49
|
+
export function getWalletCoinFee(transfer: any, fn: any): Promise<void>;
|
|
50
|
+
export function getFee(transfer: any, fn: any): Promise<void>;
|
|
51
|
+
export function shareUtils(type: any, title: any): void;
|
|
1
52
|
export { default as EventBus } from "./EventBus.js";
|
|
2
53
|
export { default as Session } from "./Session.js";
|
|
3
54
|
export { default as Storage } from "./Storage.js";
|
|
4
55
|
export { default as apiEvent } from "./apiEvent.js";
|
|
56
|
+
export { default as axiosRetry } from "./axiosRetry.js";
|
|
57
|
+
export { default as connect } from "./connect.js";
|
|
5
58
|
export { default as http } from "./http.js";
|
|
6
|
-
export { default as
|
|
59
|
+
export { default as parse } from "./parse.js";
|
|
60
|
+
export { default as pdf } from "./pdf.js";
|