@riocrypto/common 1.0.1859 → 1.0.1861

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.
@@ -67,6 +67,13 @@ export interface Order {
67
67
  settleBy?: Date;
68
68
  bulkCryptoPaymentId?: string;
69
69
  bulkBankPaymentId?: string;
70
+ destinationOfFunds?: {
71
+ blockchainAddress?: string;
72
+ accountHolderName?: string;
73
+ accountNumber?: string;
74
+ CCI?: string;
75
+ CLABE?: string;
76
+ };
70
77
  paymentInstructions?: {
71
78
  blockchainAddress?: string;
72
79
  USBankTransferMethod?: "wire" | "ach_push";
@@ -84,7 +91,7 @@ export interface Order {
84
91
  };
85
92
  paymentsReceived?: {
86
93
  amount: number;
87
- blockchainTxId: string;
94
+ blockchainTxId?: string;
88
95
  SPEITrackingNumber?: string;
89
96
  SPIDTrackingNumber?: string;
90
97
  CEPLink?: string;
@@ -93,7 +100,7 @@ export interface Order {
93
100
  accountNumber?: string;
94
101
  CCI?: string;
95
102
  CLABE?: string;
96
- receivedAt?: Date;
103
+ receivedAt: Date;
97
104
  }[];
98
105
  payoutsSent?: {
99
106
  amount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1859",
3
+ "version": "1.0.1861",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",