tango-api-schema 2.5.98 → 2.6.0

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.5.98",
3
+ "version": "2.6.0",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -324,6 +324,10 @@ const checklistconfigSchema = new mongoose.Schema({
324
324
  floorDetection: {
325
325
  enabled: { type: Boolean, default: false },
326
326
  duration: { type: Number, default: 2 }
327
+ },
328
+ unattendedDetection: {
329
+ enabled: { type: Boolean, default: false },
330
+ duration: { type: Number, default: 2 }
327
331
  },
328
332
  recurrence: {
329
333
  status: {
@@ -265,6 +265,22 @@ const processedchecklistconfigSchema = new mongoose.Schema({
265
265
  enabled: { type: Boolean, default: false },
266
266
  duration: { type: Number, default: 2 }
267
267
  },
268
+ tableClutterDetection: {
269
+ enabled: { type: Boolean, default: false },
270
+ duration: { type: Number, default: 2 }
271
+ },
272
+ objectDetection: {
273
+ enabled: { type: Boolean, default: false },
274
+ duration: { type: Number, default: 4 }
275
+ },
276
+ spillDetection: {
277
+ enabled: { type: Boolean, default: false },
278
+ duration: { type: Number, default: 4 }
279
+ },
280
+ unattendedDetection: {
281
+ enabled: { type: Boolean, default: false },
282
+ duration: { type: Number, default: 2 }
283
+ },
268
284
  },
269
285
  cameraAngle: {
270
286
  enabled: {
@@ -1,31 +1,31 @@
1
- import mongoose from 'mongoose';
2
- import { randomUUID } from 'crypto';
3
-
4
- // schema
5
- const collection = new mongoose.Schema({
6
- apiKey: {
7
- type: String,
8
- required: true,
9
- unique: true,
10
- default: () => randomUUID()
11
- },
12
- countryName: {
13
- type: String,
14
- },
15
- countryCode: {
16
- type: String,
17
- },
18
- clientId: {
19
- type: String,
20
- },
21
- },
22
- {
23
- timestamps: true,
24
- strict: true,
25
- versionKey: false,
26
- });
27
-
28
-
29
- collection.index({ apiKey: 1 });
30
-
31
- export default mongoose.model('regionKey', collection, 'regionKey');
1
+ import mongoose from 'mongoose';
2
+ import { randomUUID } from 'crypto';
3
+
4
+ // schema
5
+ const collection = new mongoose.Schema({
6
+ apiKey: {
7
+ type: String,
8
+ required: true,
9
+ unique: true,
10
+ default: () => randomUUID()
11
+ },
12
+ countryName: {
13
+ type: String,
14
+ },
15
+ countryCode: {
16
+ type: String,
17
+ },
18
+ clientId: {
19
+ type: String,
20
+ },
21
+ },
22
+ {
23
+ timestamps: true,
24
+ strict: true,
25
+ versionKey: false,
26
+ });
27
+
28
+
29
+ collection.index({ apiKey: 1 });
30
+
31
+ export default mongoose.model('regionKey', collection, 'regionKey');