@justair/justair-library 4.12.0 → 4.14.0-alpha.c91c8ec

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 +1 @@
1
- {"version":3,"file":"measurements.d.ts","sourceRoot":"","sources":["../../src/models/measurements.js"],"names":[],"mappings":"AA+FA,qCA0BE;AAgJF,+BAAwE;AA7KxE,wBAAmD;AA1BnD,8BAwBE;AAlEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCE;qBA5DmB,UAAU"}
1
+ {"version":3,"file":"measurements.d.ts","sourceRoot":"","sources":["../../src/models/measurements.js"],"names":[],"mappings":"AA8FA,qCAyBE;AAgJF,+BAAwE;AA5KxE,wBAAmD;AAzBnD,8BAuBE;AAjEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCE;qBA5DmB,UAAU"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justair/justair-library",
3
- "version": "4.12.0",
3
+ "version": "4.14.0-alpha.c91c8ec",
4
4
  "description": "JustAir Internal Library",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -83,7 +83,6 @@ const auditSchema = mongoose.Schema(
83
83
  },
84
84
  annotations: [annotationSchema], // Include annotations in audit trail
85
85
  isCorrected: { type: Boolean },
86
- isFog: { type: Boolean },
87
86
  },
88
87
  {
89
88
  timestamps: true,
@@ -114,7 +113,6 @@ const measurementsSchema = mongoose.Schema(
114
113
  default: [],
115
114
  },
116
115
  isCorrected: { type: Boolean },
117
- isFog: { type: Boolean },
118
116
  },
119
117
  {
120
118
  timestamps: true,
@@ -289,8 +289,8 @@ const monitorsSchema = mongoose.Schema(
289
289
  enum: Object.values(deploymentTypesEnum),
290
290
  default: deploymentTypesEnum.STATIONARY,
291
291
  },
292
- // Optional node Ids for Clarity (supports multiple nodes per monitor)
293
- nodeIds: { type: [String], default: [] },
292
+ // Optional Clarity node ID (1:1 relationship with Node-S sensor)
293
+ nodeId: { type: String },
294
294
  },
295
295
  {
296
296
  timestamps: true,