goldstars-services 1.0.50 → 1.0.51

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.
@@ -44,8 +44,7 @@ var reservationSchema = new _mongoose.default.Schema({
44
44
  // Optional: Add indexes for faster querying based on common lookups
45
45
  reservationSchema.index({
46
46
  bikeId: 1,
47
- date: 1,
48
- timeSlot: 1
47
+ date: 1
49
48
  }, {
50
49
  unique: true
51
50
  }); // Prevent double booking the same bike/slot
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goldstars-services",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "This is the services layer for GoldStars",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {