@riocrypto/common-server 1.0.704 → 1.0.706

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.
@@ -49,6 +49,7 @@ interface OrderDoc extends Document {
49
49
  withdrawalTxId?: string;
50
50
  brokerCustomerId?: string;
51
51
  conversionRateToUSD?: number;
52
+ notes?: string;
52
53
  }
53
54
  interface OrderModel extends Model<OrderDoc> {
54
55
  build(attrs: OrderAttrs): OrderDoc;
@@ -99,6 +99,9 @@ const buildOrder = (mongoose) => {
99
99
  conversionRateToUSD: {
100
100
  type: Number,
101
101
  },
102
+ notes: {
103
+ type: String,
104
+ },
102
105
  }, {
103
106
  toJSON: {
104
107
  transform(doc, ret) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.704",
3
+ "version": "1.0.706",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "@aws-sdk/client-s3": "^3.297.0",
25
25
  "@everapi/currencyapi-js": "^1.0.6",
26
26
  "@google-cloud/storage": "^6.9.5",
27
- "@riocrypto/common": "^1.0.629",
27
+ "@riocrypto/common": "^1.0.631",
28
28
  "@types/express": "^4.17.13",
29
29
  "axios": "^0.27.2",
30
30
  "ccxt": "^3.0.30",