@riocrypto/common-server 1.0.2097 → 1.0.2098
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/models/order.d.ts +28 -36
- package/package.json +2 -2
package/build/models/order.d.ts
CHANGED
|
@@ -59,20 +59,6 @@ interface OrderAttrs {
|
|
|
59
59
|
};
|
|
60
60
|
attributes?: OrderAttribute[];
|
|
61
61
|
settleBy?: Date;
|
|
62
|
-
originOfFunds?: {
|
|
63
|
-
blockchainAddress?: string;
|
|
64
|
-
accountHolderName?: string;
|
|
65
|
-
accountNumber?: string;
|
|
66
|
-
CCI?: string;
|
|
67
|
-
CLABE?: string;
|
|
68
|
-
};
|
|
69
|
-
destinationOfFunds?: {
|
|
70
|
-
blockchainAddress?: string;
|
|
71
|
-
accountHolderName?: string;
|
|
72
|
-
accountNumber?: string;
|
|
73
|
-
CCI?: string;
|
|
74
|
-
CLABE?: string;
|
|
75
|
-
};
|
|
76
62
|
payoutTransferLimit?: number;
|
|
77
63
|
paymentReceivedAt?: Date;
|
|
78
64
|
version: number;
|
|
@@ -93,20 +79,29 @@ interface OrderAttrs {
|
|
|
93
79
|
};
|
|
94
80
|
paymentsReceived?: {
|
|
95
81
|
amount: number;
|
|
96
|
-
blockchainTxId
|
|
82
|
+
blockchainTxId: string;
|
|
97
83
|
SPEITrackingNumber?: string;
|
|
98
84
|
SPIDTrackingNumber?: string;
|
|
99
85
|
CEPLink?: string;
|
|
100
|
-
|
|
86
|
+
blockchainAddress?: string;
|
|
87
|
+
accountHolderName?: string;
|
|
88
|
+
accountNumber?: string;
|
|
89
|
+
CCI?: string;
|
|
90
|
+
CLABE?: string;
|
|
101
91
|
receivedAt?: Date;
|
|
102
92
|
}[];
|
|
103
93
|
payoutsSent?: {
|
|
104
94
|
amount: number;
|
|
105
|
-
blockchainTxId
|
|
95
|
+
blockchainTxId: string;
|
|
106
96
|
SPEITrackingNumber?: string;
|
|
107
97
|
SPIDTrackingNumber?: string;
|
|
108
|
-
bankPayoutId?: string;
|
|
109
98
|
CEPLink?: string;
|
|
99
|
+
references: string[];
|
|
100
|
+
blockchainAddress?: string;
|
|
101
|
+
accountHolderName?: string;
|
|
102
|
+
accountNumber?: string;
|
|
103
|
+
CCI?: string;
|
|
104
|
+
CLABE?: string;
|
|
110
105
|
fee?: number;
|
|
111
106
|
feeCurrency?: Crypto | Fiat;
|
|
112
107
|
sentAt?: Date;
|
|
@@ -170,20 +165,6 @@ interface OrderDoc extends Document {
|
|
|
170
165
|
};
|
|
171
166
|
attributes?: OrderAttribute[];
|
|
172
167
|
settleBy?: Date;
|
|
173
|
-
originOfFunds?: {
|
|
174
|
-
blockchainAddress?: string;
|
|
175
|
-
accountHolderName?: string;
|
|
176
|
-
accountNumber?: string;
|
|
177
|
-
CCI?: string;
|
|
178
|
-
CLABE?: string;
|
|
179
|
-
};
|
|
180
|
-
destinationOfFunds?: {
|
|
181
|
-
blockchainAddress?: string;
|
|
182
|
-
accountHolderName?: string;
|
|
183
|
-
accountNumber?: string;
|
|
184
|
-
CCI?: string;
|
|
185
|
-
CLABE?: string;
|
|
186
|
-
};
|
|
187
168
|
paymentInstructions?: {
|
|
188
169
|
blockchainAddress?: string;
|
|
189
170
|
USBankTransferMethod?: "wire" | "ach_push";
|
|
@@ -200,19 +181,30 @@ interface OrderDoc extends Document {
|
|
|
200
181
|
CCI?: string;
|
|
201
182
|
};
|
|
202
183
|
paymentsReceived?: {
|
|
203
|
-
|
|
184
|
+
amount: number;
|
|
185
|
+
blockchainTxId: string;
|
|
204
186
|
SPEITrackingNumber?: string;
|
|
205
187
|
SPIDTrackingNumber?: string;
|
|
206
188
|
CEPLink?: string;
|
|
207
|
-
|
|
189
|
+
blockchainAddress?: string;
|
|
190
|
+
accountHolderName?: string;
|
|
191
|
+
accountNumber?: string;
|
|
192
|
+
CCI?: string;
|
|
193
|
+
CLABE?: string;
|
|
208
194
|
receivedAt?: Date;
|
|
209
195
|
}[];
|
|
210
196
|
payoutsSent?: {
|
|
211
|
-
|
|
197
|
+
amount: number;
|
|
198
|
+
blockchainTxId: string;
|
|
212
199
|
SPEITrackingNumber?: string;
|
|
213
200
|
SPIDTrackingNumber?: string;
|
|
214
201
|
CEPLink?: string;
|
|
215
|
-
|
|
202
|
+
references: string[];
|
|
203
|
+
blockchainAddress?: string;
|
|
204
|
+
accountHolderName?: string;
|
|
205
|
+
accountNumber?: string;
|
|
206
|
+
CCI?: string;
|
|
207
|
+
CLABE?: string;
|
|
216
208
|
fee?: number;
|
|
217
209
|
feeCurrency?: Crypto | Fiat;
|
|
218
210
|
sentAt?: Date;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riocrypto/common-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2098",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@google-cloud/secret-manager": "^5.3.0",
|
|
29
29
|
"@google-cloud/storage": "^6.9.5",
|
|
30
30
|
"@hyperdx/node-opentelemetry": "^0.7.0",
|
|
31
|
-
"@riocrypto/common": "^1.0.
|
|
31
|
+
"@riocrypto/common": "^1.0.1859",
|
|
32
32
|
"@types/express": "^4.17.13",
|
|
33
33
|
"axios": "^1.7.4",
|
|
34
34
|
"crypto-js": "^4.2.0",
|