cloud-ide-model-schema 1.1.146 → 1.1.148

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.
@@ -86,8 +86,7 @@ var auth_user_mst = new mongoose_1.Schema({
86
86
  // Indexes for performance optimization
87
87
  // Compound index for user listing queries (sorting and filtering)
88
88
  auth_user_mst.index({ user_fullname: 1, user_username: 1 });
89
- // Index for email search queries
90
- auth_user_mst.index({ user_emailid: 1 });
89
+ // Note: user_emailid already has unique: true which creates an index automatically
91
90
  // Index for username search (already unique, but explicit index for clarity)
92
91
  auth_user_mst.index({ user_username: 1 });
93
92
  // Index for fullname search
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "typescript": "^5.8.3"
10
10
  },
11
11
  "name": "cloud-ide-model-schema",
12
- "version": "1.1.146",
12
+ "version": "1.1.148",
13
13
  "description": "Pachage for schema management of Cloud IDEsys LMS",
14
14
  "main": "lib/index.js",
15
15
  "types": "lib/index.d.ts",