@dynamatix/gb-schemas 0.5.8 → 0.5.9

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.
@@ -23,7 +23,8 @@ const companySchema = new mongoose.Schema({
23
23
  yearEnd: { type: Date }, // e.g., "2023-12-31"
24
24
  yearEnd1: { type: Number }, // e.g., 2021
25
25
  yearEnd2: { type: Number }, // e.g., 2022
26
- yearEnd3: { type: Number } // e.g., 2023
26
+ yearEnd3: { type: Number }, // e.g., 2023
27
+ sicCode: { type: String, default: "" }, // e.g., "12345"
27
28
  });
28
29
  const ApplicationCompanyModel = mongoose.model("ApplicationCompany", companySchema);
29
30
  export default ApplicationCompanyModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "description": "All the schemas for gatehouse bank back-end",
5
5
  "main": "index.js",
6
6
  "scripts": {