@riocrypto/common 1.0.1860 → 1.0.1862

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.
@@ -91,7 +91,7 @@ export interface Order {
91
91
  };
92
92
  paymentsReceived?: {
93
93
  amount: number;
94
- blockchainTxId: string;
94
+ blockchainTxId?: string;
95
95
  SPEITrackingNumber?: string;
96
96
  SPIDTrackingNumber?: string;
97
97
  CEPLink?: string;
@@ -100,7 +100,7 @@ export interface Order {
100
100
  accountNumber?: string;
101
101
  CCI?: string;
102
102
  CLABE?: string;
103
- receivedAt?: Date;
103
+ receivedAt: Date;
104
104
  }[];
105
105
  payoutsSent?: {
106
106
  amount: number;
@@ -116,7 +116,7 @@ export interface Order {
116
116
  CLABE?: string;
117
117
  fee?: number;
118
118
  feeCurrency?: Crypto | Fiat;
119
- sentAt?: Date;
119
+ sentAt: Date;
120
120
  }[];
121
121
  payoutTransferLimit?: number;
122
122
  paymentReceivedAt?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1860",
3
+ "version": "1.0.1862",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",