flykup_model_production 1.0.3 → 1.0.4

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.
@@ -65,6 +65,14 @@ const ChatRoomSchema = new mongoose.Schema({
65
65
  type: Date,
66
66
  default: null
67
67
  },
68
+ isMuted: {
69
+ type: Boolean,
70
+ default: false
71
+ },
72
+ mutedAt: {
73
+ type: Date,
74
+ default:null
75
+ },
68
76
  isPinned: { type: Boolean, default: false }, // Add this field
69
77
  pinnedAt: Date, // Add this field
70
78
  }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flykup_model_production",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "private": false,