add v5 user rest endpoints

This commit is contained in:
tiagosiebler
2023-02-16 15:30:01 +00:00
parent e312491968
commit d4add6d964
7 changed files with 231 additions and 0 deletions

View File

@@ -34,6 +34,25 @@ export type TransactionTypeV5 =
| 'CURRENCY_BUY'
| 'CURRENCY_SELL';
export type PermissionTypeV5 =
| 'ContractTrade'
| 'Spot'
| 'Wallet'
| 'Options'
| 'Derivatives'
| 'Exchange'
| 'NFT';
export interface PermissionsV5 {
ContractTrade?: string[];
Spot?: string[];
Wallet?: string[];
Options?: string[];
Derivatives?: string[];
Exchange?: string[];
NFT?: string[];
}
export interface CategoryCursorListV5<T extends unknown[]> {
category: CategoryV5;
list: T;