@riocrypto/common-server 1.0.2095 → 1.0.2097

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.
@@ -47,6 +47,8 @@ interface OrderAttrs {
47
47
  requestedNetPrice?: number;
48
48
  payoutAddressId?: string;
49
49
  payoutBankAccountId?: string;
50
+ bulkCryptoPaymentId?: string;
51
+ bulkBankPaymentId?: string;
50
52
  binancePayment?: {
51
53
  binanceTransactionId: string;
52
54
  amount: number;
@@ -156,6 +158,8 @@ interface OrderDoc extends Document {
156
158
  requestedNetPrice?: number;
157
159
  payoutAddressId?: string;
158
160
  payoutBankAccountId?: string;
161
+ bulkCryptoPaymentId?: string;
162
+ bulkBankPaymentId?: string;
159
163
  binancePayment?: {
160
164
  binanceTransactionId: string;
161
165
  amount: number;
@@ -22,6 +22,12 @@ const buildOrder = (mongoose) => {
22
22
  wireMessage: {
23
23
  type: String,
24
24
  },
25
+ bulkCryptoPaymentId: {
26
+ type: String,
27
+ },
28
+ bulkBankPaymentId: {
29
+ type: String,
30
+ },
25
31
  substatus: {
26
32
  type: String,
27
33
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2095",
3
+ "version": "1.0.2097",
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.1846",
31
+ "@riocrypto/common": "^1.0.1854",
32
32
  "@types/express": "^4.17.13",
33
33
  "axios": "^1.7.4",
34
34
  "crypto-js": "^4.2.0",