@dynamatix/gb-schemas 0.5.4 → 0.5.6

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.
@@ -1,5 +1,5 @@
1
1
  export { default as ApplicationModel } from './application.model.js';
2
- export { default as ApplicationAuditModel } from './application-audit.model.js';
2
+ export { default as ApplicationAuditStageModel } from './application-audit-stage.model.js';
3
3
  export { default as ApplicationCheckListModel } from './application-checklist-Item.model.js';
4
4
  export { default as ApplicationCompanyModel } from './application-company-model.js';
5
5
  export { default as ApplicationNoteModel } from './application-note.model.js';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "0.5.4",
4
- "description": "All the schemas for gatehouse bank back-end.",
3
+ "version": "0.5.6",
4
+ "description": "All the schemas for gatehouse bank back-end",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -25,7 +25,8 @@ const checklistSchema = new mongoose.Schema({
25
25
  ref: "Lookup",
26
26
  required: true
27
27
  }
28
- });
28
+ },
29
+ {timestamps: true});
29
30
 
30
31
  const CheckListModel = mongoose.model("CheckList", checklistSchema);
31
32