@brimble/models 2.4.2 → 2.4.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/dist/project/index.js
CHANGED
|
@@ -141,6 +141,10 @@ const projectSchema = new mongoose_1.Schema({
|
|
|
141
141
|
type: Date,
|
|
142
142
|
default: null,
|
|
143
143
|
},
|
|
144
|
+
replica_ready: {
|
|
145
|
+
type: Boolean,
|
|
146
|
+
default: false
|
|
147
|
+
}
|
|
144
148
|
}, { timestamps: true });
|
|
145
149
|
exports.default = (0, mongoose_1.model)("Project", projectSchema);
|
|
146
150
|
exports.DeletedProject = (0, mongoose_1.model)("DeletedProject", projectSchema);
|
package/package.json
CHANGED
package/project/index.ts
CHANGED