@riocrypto/common 1.0.2024 → 1.0.2025
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/types/user.d.ts +7 -0
- package/package.json +1 -1
package/build/types/user.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { UserType } from "./user-type";
|
|
|
7
7
|
import { ImmigrationStatus } from "./immigration-status";
|
|
8
8
|
import { Country } from "./country";
|
|
9
9
|
import { Fiat } from "./fiat";
|
|
10
|
+
import { Crypto } from "./crypto";
|
|
10
11
|
import { Side } from "./side";
|
|
11
12
|
declare type IndividualUser = {
|
|
12
13
|
id: string;
|
|
@@ -123,6 +124,12 @@ export declare type User = {
|
|
|
123
124
|
};
|
|
124
125
|
};
|
|
125
126
|
};
|
|
127
|
+
customPayoutFireblocksVault?: {
|
|
128
|
+
[crypto in Crypto]?: {
|
|
129
|
+
id: string;
|
|
130
|
+
overrideOvernightAndWeekendVault: boolean;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
126
133
|
accumulatedVolumeInUSD?: {
|
|
127
134
|
[country in Country]?: {
|
|
128
135
|
buy?: number;
|