@taiger-common/model 1.0.37 → 1.0.38
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/dist/cjs/model/User.js +1 -1
- package/dist/esm/model/User.js +1 -1
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
package/dist/cjs/model/User.js
CHANGED
|
@@ -510,7 +510,7 @@ var officehoursSchema = new mongoose_1.Schema({
|
|
|
510
510
|
active: { type: Boolean, default: false },
|
|
511
511
|
time_slots: [{ type: Object }]
|
|
512
512
|
}
|
|
513
|
-
});
|
|
513
|
+
}, { _id: false });
|
|
514
514
|
var agentSchema = new mongoose_1.Schema({
|
|
515
515
|
timezone: { type: String, default: '' },
|
|
516
516
|
officehours: { type: officehoursSchema, default: {} },
|
package/dist/esm/model/User.js
CHANGED
|
@@ -505,7 +505,7 @@ var officehoursSchema = new Schema({
|
|
|
505
505
|
active: { type: Boolean, default: false },
|
|
506
506
|
time_slots: [{ type: Object }]
|
|
507
507
|
}
|
|
508
|
-
});
|
|
508
|
+
}, { _id: false });
|
|
509
509
|
var agentSchema = new Schema({
|
|
510
510
|
timezone: { type: String, default: '' },
|
|
511
511
|
officehours: { type: officehoursSchema, default: {} },
|