@riocrypto/common 1.0.1858 → 1.0.1860
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 -9
- package/package.json +1 -1
package/build/types/order.d.ts
CHANGED
|
@@ -67,13 +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
70
|
destinationOfFunds?: {
|
|
78
71
|
blockchainAddress?: string;
|
|
79
72
|
accountHolderName?: string;
|
|
@@ -102,7 +95,11 @@ export interface Order {
|
|
|
102
95
|
SPEITrackingNumber?: string;
|
|
103
96
|
SPIDTrackingNumber?: string;
|
|
104
97
|
CEPLink?: string;
|
|
105
|
-
|
|
98
|
+
blockchainAddress?: string;
|
|
99
|
+
accountHolderName?: string;
|
|
100
|
+
accountNumber?: string;
|
|
101
|
+
CCI?: string;
|
|
102
|
+
CLABE?: string;
|
|
106
103
|
receivedAt?: Date;
|
|
107
104
|
}[];
|
|
108
105
|
payoutsSent?: {
|
|
@@ -112,7 +109,11 @@ export interface Order {
|
|
|
112
109
|
SPIDTrackingNumber?: string;
|
|
113
110
|
CEPLink?: string;
|
|
114
111
|
references: string[];
|
|
115
|
-
|
|
112
|
+
blockchainAddress?: string;
|
|
113
|
+
accountHolderName?: string;
|
|
114
|
+
accountNumber?: string;
|
|
115
|
+
CCI?: string;
|
|
116
|
+
CLABE?: string;
|
|
116
117
|
fee?: number;
|
|
117
118
|
feeCurrency?: Crypto | Fiat;
|
|
118
119
|
sentAt?: Date;
|