@riocrypto/common 1.0.620 → 1.0.621
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
CHANGED
|
@@ -96,7 +96,6 @@ export * from "./types/order-input";
|
|
|
96
96
|
export * from "./types/quote";
|
|
97
97
|
export * from "./types/fees";
|
|
98
98
|
export * from "./types/user-update";
|
|
99
|
-
export * from "./types/wyre-payment-method";
|
|
100
99
|
export * from "./types/partner";
|
|
101
100
|
export * from "./types/partner-auth";
|
|
102
101
|
export * from "./types/kyc-status";
|
package/build/index.js
CHANGED
|
@@ -112,7 +112,6 @@ __exportStar(require("./types/order-input"), exports);
|
|
|
112
112
|
__exportStar(require("./types/quote"), exports);
|
|
113
113
|
__exportStar(require("./types/fees"), exports);
|
|
114
114
|
__exportStar(require("./types/user-update"), exports);
|
|
115
|
-
__exportStar(require("./types/wyre-payment-method"), exports);
|
|
116
115
|
__exportStar(require("./types/partner"), exports);
|
|
117
116
|
__exportStar(require("./types/partner-auth"), exports);
|
|
118
117
|
__exportStar(require("./types/kyc-status"), exports);
|
package/package.json
CHANGED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
export interface WyrePaymentMethod {
|
|
2
|
-
id: string;
|
|
3
|
-
owner: string;
|
|
4
|
-
createdAt: number;
|
|
5
|
-
name: string;
|
|
6
|
-
defaultCurrency: string;
|
|
7
|
-
fingerprint: string;
|
|
8
|
-
status: string;
|
|
9
|
-
statusMessage: string;
|
|
10
|
-
waitingPrompts: {
|
|
11
|
-
id: string;
|
|
12
|
-
prompt: string;
|
|
13
|
-
responses: string[];
|
|
14
|
-
type: string;
|
|
15
|
-
}[];
|
|
16
|
-
linkType: string;
|
|
17
|
-
beneficiaryType: string;
|
|
18
|
-
supportsDeposit: boolean;
|
|
19
|
-
nameOnMethod: string;
|
|
20
|
-
last4Digits: string;
|
|
21
|
-
brand: string;
|
|
22
|
-
expirationDisplay: string;
|
|
23
|
-
countryCode: string;
|
|
24
|
-
nickname: string;
|
|
25
|
-
rejectionMessage: string;
|
|
26
|
-
disabled: boolean;
|
|
27
|
-
supportsPayment: boolean;
|
|
28
|
-
chargeableCurrencies: string[];
|
|
29
|
-
depositableCurrencies: string[];
|
|
30
|
-
chargeFeeSchedule: string;
|
|
31
|
-
depositFeeSchedule: string;
|
|
32
|
-
minCharge: string;
|
|
33
|
-
maxCharge: string;
|
|
34
|
-
minDeposit: string;
|
|
35
|
-
maxDeposit: string;
|
|
36
|
-
documents: string[];
|
|
37
|
-
blockchains: any;
|
|
38
|
-
liquidationBalances: any;
|
|
39
|
-
srn: string;
|
|
40
|
-
}
|