@riocrypto/common 1.0.865 → 1.0.867
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.
|
@@ -14,6 +14,10 @@ const humanizeKYCStatus = (status) => {
|
|
|
14
14
|
return "Legal Representative Passed";
|
|
15
15
|
case kyc_status_1.KYCStatus.LegalRepresentativeFailed:
|
|
16
16
|
return "Legal Representative Failed";
|
|
17
|
+
case kyc_status_1.KYCStatus.IndividualPassed:
|
|
18
|
+
return "Individual Passed";
|
|
19
|
+
case kyc_status_1.KYCStatus.IndividualFailed:
|
|
20
|
+
return "Individual Failed";
|
|
17
21
|
case kyc_status_1.KYCStatus.None:
|
|
18
22
|
return "None";
|
|
19
23
|
default:
|
|
@@ -5,6 +5,7 @@ import { PaymentMethod } from "./payment-method";
|
|
|
5
5
|
import { PayoutMethod } from "./payout-method";
|
|
6
6
|
import { Processor } from "./processor";
|
|
7
7
|
import { Side } from "./side";
|
|
8
|
+
import { Crypto } from "./crypto";
|
|
8
9
|
export interface ImportOrderInput {
|
|
9
10
|
quoteId?: string;
|
|
10
11
|
userId: string;
|