tango-api-schema 2.6.39 → 2.6.40

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.6.39",
3
+ "version": "2.6.40",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -87,6 +87,14 @@ const storeLayoutSchema = new mongoose.Schema( {
87
87
  isPlanoApproved:{
88
88
  type:Boolean
89
89
  },
90
+ // Source CAD/DXF files this floor was generated (and re-generated) from.
91
+ // Ordered oldest→newest; the last entry is the latest source. Loose Array
92
+ // to match layoutPolygon's style. Entry shape:
93
+ // { key, fileName, uploadedAt, inferred }
94
+ cadFiles:{
95
+ type: Array,
96
+ default: [],
97
+ },
90
98
  },
91
99
  {
92
100
  strict: true,