@riocrypto/common-server 1.0.2423 → 1.0.2425

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,6 +91,8 @@ class ClusterClient {
91
91
  netPrice,
92
92
  price,
93
93
  ignoreLiquidityError,
94
+ priceType,
95
+ limitNetPrice,
94
96
  }, {
95
97
  headers: {
96
98
  "x-cluster-api-key": this.clusterApiKey,
@@ -23,6 +23,7 @@ interface OrderAttrs {
23
23
  fees: Fees;
24
24
  actualFees?: Fees;
25
25
  wireMessage?: string;
26
+ parentOrderId?: string;
26
27
  price: number;
27
28
  depositAddress?: string;
28
29
  depositTxId?: string;
@@ -137,6 +138,7 @@ interface OrderDoc extends Document {
137
138
  fiat: Fiat;
138
139
  paymentMethod?: PaymentMethod;
139
140
  payoutMethod?: PayoutMethod;
141
+ parentOrderId?: string;
140
142
  createdAt: Date;
141
143
  twoWaySettlementDate: Date;
142
144
  country: Country;
@@ -29,6 +29,9 @@ const buildOrder = (mongoose) => {
29
29
  wireMessage: {
30
30
  type: String,
31
31
  },
32
+ parentOrderId: {
33
+ type: String,
34
+ },
32
35
  bulkCryptoPaymentId: {
33
36
  type: String,
34
37
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2423",
3
+ "version": "1.0.2425",
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.2175",
31
+ "@riocrypto/common": "^1.0.2176",
32
32
  "@types/express": "^4.17.13",
33
33
  "axios": "^1.7.4",
34
34
  "crypto-js": "^4.2.0",