@riocrypto/common-server 1.0.1815 → 1.0.1816

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.
@@ -111,7 +111,7 @@ interface UserAttrs {
111
111
  };
112
112
  attioRecordId?: string;
113
113
  cumulativeVolumesInUSD?: {
114
- [country in Country]?: Number;
114
+ [country in Country]?: number;
115
115
  };
116
116
  }
117
117
  interface UserModel extends Model<UserDoc> {
@@ -229,7 +229,7 @@ interface UserDoc extends Document {
229
229
  };
230
230
  };
231
231
  cumulativeVolumesInUSD?: {
232
- [country in Country]?: Number;
232
+ [country in Country]?: number;
233
233
  };
234
234
  }
235
235
  declare const buildUser: (mongoose: Mongoose) => UserModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1815",
3
+ "version": "1.0.1816",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",