payservedb 6.3.2 → 6.3.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payservedb",
3
- "version": "6.3.2",
3
+ "version": "6.3.3",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -115,7 +115,6 @@ const facilityWalletTransactionsMetadataSchema = new mongoose.Schema(
115
115
  );
116
116
 
117
117
  // Indexes for better query performance
118
- facilityWalletTransactionsMetadataSchema.index({ invoiceId: 1 });
119
118
  facilityWalletTransactionsMetadataSchema.index({ facility: 1, status: 1 });
120
119
  facilityWalletTransactionsMetadataSchema.index({ walletId: 1, status: 1 });
121
120
  facilityWalletTransactionsMetadataSchema.index({ status: 1, createdAt: -1 });