@riocrypto/common-server 1.0.2396 → 1.0.2398

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.
@@ -6,7 +6,6 @@ interface CryptoAddressAttrs {
6
6
  crypto: Crypto;
7
7
  address: string;
8
8
  approved: boolean;
9
- userApproved: boolean;
10
9
  lastChecked: Date;
11
10
  label?: string;
12
11
  advancedVerificationStatus?: AddressVerificationStatus;
@@ -20,7 +19,6 @@ interface CryptoAddressDoc extends mongoose.Document {
20
19
  crypto: Crypto;
21
20
  address: string;
22
21
  approved: boolean;
23
- userApproved: boolean;
24
22
  lastChecked: Date;
25
23
  label?: string;
26
24
  advancedVerificationStatus?: AddressVerificationStatus;
@@ -26,9 +26,6 @@ const buildCryptoAddress = (mongoose) => {
26
26
  type: Boolean,
27
27
  required: true,
28
28
  },
29
- userApproved: {
30
- type: Boolean,
31
- },
32
29
  lastChecked: {
33
30
  type: mongoose.Schema.Types.Date,
34
31
  required: true,
@@ -73,7 +73,7 @@ interface OrderAttrs {
73
73
  XMLLink?: string;
74
74
  };
75
75
  paymentInstructions?: {
76
- dueDate: Date;
76
+ dueDate?: Date;
77
77
  blockchainAddress?: string;
78
78
  USBankTransferMethod?: "wire" | "ach_push";
79
79
  bankName?: string;
@@ -192,7 +192,7 @@ interface OrderDoc extends Document {
192
192
  CLABE?: string;
193
193
  };
194
194
  paymentInstructions?: {
195
- dueDate: Date;
195
+ dueDate?: Date;
196
196
  blockchainAddress?: string;
197
197
  USBankTransferMethod?: "wire" | "ach_push";
198
198
  bankName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2396",
3
+ "version": "1.0.2398",
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.2123",
31
+ "@riocrypto/common": "^1.0.2127",
32
32
  "@types/express": "^4.17.13",
33
33
  "axios": "^1.7.4",
34
34
  "crypto-js": "^4.2.0",