@riocrypto/common-server 1.0.1866 → 1.0.1868

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.
@@ -289,6 +289,15 @@ const buildOrder = (mongoose) => {
289
289
  },
290
290
  },
291
291
  });
292
+ // Define indexes
293
+ orderSchema.index({ userId: 1 });
294
+ orderSchema.index({ userId: 1, createdAt: 1 });
295
+ orderSchema.index({ userId: 1, createdAt: 1, country: 1 });
296
+ orderSchema.index({ userId: 1, createdAt: 1, side: 1 });
297
+ orderSchema.index({ brokerId: 1 });
298
+ orderSchema.index({ brokerId: 1, createdAt: 1 });
299
+ orderSchema.index({ brokerId: 1, createdAt: 1, country: 1 });
300
+ orderSchema.index({ brokerId: 1, createdAt: 1, side: 1 });
292
301
  orderSchema.statics.build = (attrs) => {
293
302
  return new Order(attrs);
294
303
  };
@@ -347,6 +347,7 @@ const buildUser = (mongoose) => {
347
347
  },
348
348
  },
349
349
  });
350
+ userSchema.index({ brokerId: 1 });
350
351
  userSchema.statics.build = (attrs) => {
351
352
  return new User(attrs);
352
353
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1866",
3
+ "version": "1.0.1868",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -26,7 +26,7 @@
26
26
  "@google-cloud/secret-manager": "^5.3.0",
27
27
  "@google-cloud/storage": "^6.9.5",
28
28
  "@hyperdx/node-opentelemetry": "^0.4.2",
29
- "@riocrypto/common": "^1.0.1673",
29
+ "@riocrypto/common": "^1.0.1675",
30
30
  "@types/express": "^4.17.13",
31
31
  "axios": "^1.6.0",
32
32
  "crypto-js": "^4.2.0",