@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":"
|
|
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
|
@@ -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,
|
package/src/models/monitors.js
CHANGED
|
@@ -289,8 +289,8 @@ const monitorsSchema = mongoose.Schema(
|
|
|
289
289
|
enum: Object.values(deploymentTypesEnum),
|
|
290
290
|
default: deploymentTypesEnum.STATIONARY,
|
|
291
291
|
},
|
|
292
|
-
// Optional node
|
|
293
|
-
|
|
292
|
+
// Optional Clarity node ID (1:1 relationship with Node-S sensor)
|
|
293
|
+
nodeId: { type: String },
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
timestamps: true,
|