@riocrypto/common 1.0.2436 → 1.0.2438
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/build/index.d.ts +3 -0
- package/build/index.js +3 -0
- package/build/types/admin-auth-dashboard-settings.d.ts +2 -0
- package/build/types/auth-dashboard-settings.d.ts +2 -0
- package/build/types/auth-kyc-status.d.ts +5 -0
- package/build/types/auth-kyc-status.js +9 -0
- package/build/types/auth.d.ts +2 -0
- package/build/types/dashboard-table-type.d.ts +32 -0
- package/build/types/dashboard-table-type.js +36 -0
- package/build/types/table-preference.d.ts +6 -0
- package/build/types/table-preference.js +2 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -404,6 +404,8 @@ export * from "./types/external-trading-algorithm-status";
|
|
|
404
404
|
export * from "./types/external-trading-algorithm-type";
|
|
405
405
|
export * from "./types/external-trading-provider";
|
|
406
406
|
export * from "./types/external-trade-amount-type";
|
|
407
|
+
export * from "./types/dashboard-table-type";
|
|
408
|
+
export * from "./types/table-preference";
|
|
407
409
|
export * from "./types/auth-dashboard-settings";
|
|
408
410
|
export * from "./types/admin-auth-dashboard-settings";
|
|
409
411
|
export * from "./types/STP-mxn-withdrawal";
|
|
@@ -444,6 +446,7 @@ export * from "./types/STP-mxn-withdrawal-status";
|
|
|
444
446
|
export * from "./types/bitso-mxn-withdrawal-status";
|
|
445
447
|
export * from "./types/fireblocks-transfer-status";
|
|
446
448
|
export * from "./types/mexico-invoicing-method";
|
|
449
|
+
export * from "./types/auth-kyc-status";
|
|
447
450
|
export * from "./classes/KYCFieldClass";
|
|
448
451
|
export * from "./classes/KYCFileClass";
|
|
449
452
|
export * from "./classes/CountryAsset";
|
package/build/index.js
CHANGED
|
@@ -420,6 +420,8 @@ __exportStar(require("./types/external-trading-algorithm-status"), exports);
|
|
|
420
420
|
__exportStar(require("./types/external-trading-algorithm-type"), exports);
|
|
421
421
|
__exportStar(require("./types/external-trading-provider"), exports);
|
|
422
422
|
__exportStar(require("./types/external-trade-amount-type"), exports);
|
|
423
|
+
__exportStar(require("./types/dashboard-table-type"), exports);
|
|
424
|
+
__exportStar(require("./types/table-preference"), exports);
|
|
423
425
|
__exportStar(require("./types/auth-dashboard-settings"), exports);
|
|
424
426
|
__exportStar(require("./types/admin-auth-dashboard-settings"), exports);
|
|
425
427
|
__exportStar(require("./types/STP-mxn-withdrawal"), exports);
|
|
@@ -460,6 +462,7 @@ __exportStar(require("./types/STP-mxn-withdrawal-status"), exports);
|
|
|
460
462
|
__exportStar(require("./types/bitso-mxn-withdrawal-status"), exports);
|
|
461
463
|
__exportStar(require("./types/fireblocks-transfer-status"), exports);
|
|
462
464
|
__exportStar(require("./types/mexico-invoicing-method"), exports);
|
|
465
|
+
__exportStar(require("./types/auth-kyc-status"), exports);
|
|
463
466
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
464
467
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
465
468
|
__exportStar(require("./classes/CountryAsset"), exports);
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { TablePreferences } from "./table-preference";
|
|
1
2
|
export interface AdminAuthDashboardSettings {
|
|
2
3
|
adminAuthId: string;
|
|
3
4
|
hideBackgroundAnimation?: boolean;
|
|
4
5
|
pwaInstallBannerDismissedDesktop?: boolean;
|
|
5
6
|
pwaInstallBannerDismissedMobile?: boolean;
|
|
6
7
|
notificationBannerDismissedMobile?: boolean;
|
|
8
|
+
tablePreferences?: TablePreferences;
|
|
7
9
|
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { TablePreferences } from "./table-preference";
|
|
1
2
|
export interface AuthDashboardSettings {
|
|
2
3
|
authId: string;
|
|
3
4
|
hideBackgroundAnimation?: boolean;
|
|
4
5
|
pwaInstallBannerDismissedDesktop?: boolean;
|
|
5
6
|
pwaInstallBannerDismissedMobile?: boolean;
|
|
6
7
|
notificationBannerDismissedMobile?: boolean;
|
|
8
|
+
tablePreferences?: TablePreferences;
|
|
7
9
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AuthKYCStatus = void 0;
|
|
4
|
+
var AuthKYCStatus;
|
|
5
|
+
(function (AuthKYCStatus) {
|
|
6
|
+
AuthKYCStatus["Approved"] = "approved";
|
|
7
|
+
AuthKYCStatus["Rejected"] = "rejected";
|
|
8
|
+
AuthKYCStatus["Pending"] = "pending";
|
|
9
|
+
})(AuthKYCStatus = exports.AuthKYCStatus || (exports.AuthKYCStatus = {}));
|
package/build/types/auth.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { APIKey } from "./api-key";
|
|
2
2
|
import { AuthPermission } from "./auth-permission";
|
|
3
3
|
import { AuthRole } from "./auth-role";
|
|
4
|
+
import { AuthKYCStatus } from "./auth-kyc-status";
|
|
4
5
|
import { SecurityQuestion } from "./security-question";
|
|
5
6
|
export interface Auth {
|
|
6
7
|
id: string;
|
|
@@ -31,4 +32,5 @@ export interface Auth {
|
|
|
31
32
|
secondLastName?: string;
|
|
32
33
|
role?: AuthRole;
|
|
33
34
|
permissions?: AuthPermission[];
|
|
35
|
+
KYCStatus?: AuthKYCStatus;
|
|
34
36
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare enum DashboardTableType {
|
|
2
|
+
Orders = "orders",
|
|
3
|
+
Wallets = "wallets",
|
|
4
|
+
Users = "users",
|
|
5
|
+
BankAccounts = "bankAccounts",
|
|
6
|
+
AdminTasks = "adminTasks",
|
|
7
|
+
ExternalTradingAlgorithms = "externalTradingAlgorithms",
|
|
8
|
+
InternalBalances = "internalBalances",
|
|
9
|
+
InternalTransfers = "internalTransfers",
|
|
10
|
+
Trades = "trades",
|
|
11
|
+
Fees = "fees",
|
|
12
|
+
TwapSessions = "twapSessions",
|
|
13
|
+
TwapSettlements = "twapSettlements",
|
|
14
|
+
ArbitrageSessions = "arbitrageSessions",
|
|
15
|
+
Axes = "axes",
|
|
16
|
+
Team = "team",
|
|
17
|
+
Webhooks = "webhooks",
|
|
18
|
+
ApiKeys = "apiKeys",
|
|
19
|
+
PayoutAdvancesTransactions = "payoutAdvancesTransactions",
|
|
20
|
+
Countries = "countries",
|
|
21
|
+
LiquidityReservations = "liquidityReservations",
|
|
22
|
+
LiquidityAutomations = "liquidityAutomations",
|
|
23
|
+
Passkeys = "passkeys",
|
|
24
|
+
Invoices = "invoices",
|
|
25
|
+
ExternalTrades = "externalTrades",
|
|
26
|
+
PaymentAccounts = "paymentAccounts",
|
|
27
|
+
ArbitrageTrades = "arbitrageTrades",
|
|
28
|
+
InternalTrades = "internalTrades",
|
|
29
|
+
Usage = "usage",
|
|
30
|
+
TemporaryVerifications = "temporaryVerifications",
|
|
31
|
+
AdminActions = "adminActions"
|
|
32
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DashboardTableType = void 0;
|
|
4
|
+
var DashboardTableType;
|
|
5
|
+
(function (DashboardTableType) {
|
|
6
|
+
DashboardTableType["Orders"] = "orders";
|
|
7
|
+
DashboardTableType["Wallets"] = "wallets";
|
|
8
|
+
DashboardTableType["Users"] = "users";
|
|
9
|
+
DashboardTableType["BankAccounts"] = "bankAccounts";
|
|
10
|
+
DashboardTableType["AdminTasks"] = "adminTasks";
|
|
11
|
+
DashboardTableType["ExternalTradingAlgorithms"] = "externalTradingAlgorithms";
|
|
12
|
+
DashboardTableType["InternalBalances"] = "internalBalances";
|
|
13
|
+
DashboardTableType["InternalTransfers"] = "internalTransfers";
|
|
14
|
+
DashboardTableType["Trades"] = "trades";
|
|
15
|
+
DashboardTableType["Fees"] = "fees";
|
|
16
|
+
DashboardTableType["TwapSessions"] = "twapSessions";
|
|
17
|
+
DashboardTableType["TwapSettlements"] = "twapSettlements";
|
|
18
|
+
DashboardTableType["ArbitrageSessions"] = "arbitrageSessions";
|
|
19
|
+
DashboardTableType["Axes"] = "axes";
|
|
20
|
+
DashboardTableType["Team"] = "team";
|
|
21
|
+
DashboardTableType["Webhooks"] = "webhooks";
|
|
22
|
+
DashboardTableType["ApiKeys"] = "apiKeys";
|
|
23
|
+
DashboardTableType["PayoutAdvancesTransactions"] = "payoutAdvancesTransactions";
|
|
24
|
+
DashboardTableType["Countries"] = "countries";
|
|
25
|
+
DashboardTableType["LiquidityReservations"] = "liquidityReservations";
|
|
26
|
+
DashboardTableType["LiquidityAutomations"] = "liquidityAutomations";
|
|
27
|
+
DashboardTableType["Passkeys"] = "passkeys";
|
|
28
|
+
DashboardTableType["Invoices"] = "invoices";
|
|
29
|
+
DashboardTableType["ExternalTrades"] = "externalTrades";
|
|
30
|
+
DashboardTableType["PaymentAccounts"] = "paymentAccounts";
|
|
31
|
+
DashboardTableType["ArbitrageTrades"] = "arbitrageTrades";
|
|
32
|
+
DashboardTableType["InternalTrades"] = "internalTrades";
|
|
33
|
+
DashboardTableType["Usage"] = "usage";
|
|
34
|
+
DashboardTableType["TemporaryVerifications"] = "temporaryVerifications";
|
|
35
|
+
DashboardTableType["AdminActions"] = "adminActions";
|
|
36
|
+
})(DashboardTableType = exports.DashboardTableType || (exports.DashboardTableType = {}));
|