@riocrypto/common 1.0.1858 → 1.0.1859
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/order.d.ts +10 -16
- package/package.json +1 -1
package/build/types/order.d.ts
CHANGED
|
@@ -67,20 +67,6 @@ export interface Order {
|
|
|
67
67
|
settleBy?: Date;
|
|
68
68
|
bulkCryptoPaymentId?: string;
|
|
69
69
|
bulkBankPaymentId?: string;
|
|
70
|
-
originOfFunds?: {
|
|
71
|
-
blockchainAddress?: string;
|
|
72
|
-
accountHolderName?: string;
|
|
73
|
-
accountNumber?: string;
|
|
74
|
-
CCI?: string;
|
|
75
|
-
CLABE?: string;
|
|
76
|
-
};
|
|
77
|
-
destinationOfFunds?: {
|
|
78
|
-
blockchainAddress?: string;
|
|
79
|
-
accountHolderName?: string;
|
|
80
|
-
accountNumber?: string;
|
|
81
|
-
CCI?: string;
|
|
82
|
-
CLABE?: string;
|
|
83
|
-
};
|
|
84
70
|
paymentInstructions?: {
|
|
85
71
|
blockchainAddress?: string;
|
|
86
72
|
USBankTransferMethod?: "wire" | "ach_push";
|
|
@@ -102,7 +88,11 @@ export interface Order {
|
|
|
102
88
|
SPEITrackingNumber?: string;
|
|
103
89
|
SPIDTrackingNumber?: string;
|
|
104
90
|
CEPLink?: string;
|
|
105
|
-
|
|
91
|
+
blockchainAddress?: string;
|
|
92
|
+
accountHolderName?: string;
|
|
93
|
+
accountNumber?: string;
|
|
94
|
+
CCI?: string;
|
|
95
|
+
CLABE?: string;
|
|
106
96
|
receivedAt?: Date;
|
|
107
97
|
}[];
|
|
108
98
|
payoutsSent?: {
|
|
@@ -112,7 +102,11 @@ export interface Order {
|
|
|
112
102
|
SPIDTrackingNumber?: string;
|
|
113
103
|
CEPLink?: string;
|
|
114
104
|
references: string[];
|
|
115
|
-
|
|
105
|
+
blockchainAddress?: string;
|
|
106
|
+
accountHolderName?: string;
|
|
107
|
+
accountNumber?: string;
|
|
108
|
+
CCI?: string;
|
|
109
|
+
CLABE?: string;
|
|
116
110
|
fee?: number;
|
|
117
111
|
feeCurrency?: Crypto | Fiat;
|
|
118
112
|
sentAt?: Date;
|