@kohost/api-client 3.1.17 → 3.1.19

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.
@@ -8813,7 +8813,7 @@ var require_lock = __commonJS({
8813
8813
  },
8814
8814
  mode: {
8815
8815
  type: ["string", "null"],
8816
- enum: ["normal", "autoLock", null],
8816
+ enum: ["normal", "autoLock", "emergencyOpen", "emergencyClose", null],
8817
8817
  description: "AutoLock: Lock automatically locks after set time. Normal - Lock needs told to lock or unlock.",
8818
8818
  default: "normal"
8819
8819
  },
@@ -10593,6 +10593,23 @@ var require_scene = __commonJS({
10593
10593
  }
10594
10594
  }
10595
10595
  }
10596
+ },
10597
+ locks: {
10598
+ type: "array",
10599
+ items: {
10600
+ type: "object",
10601
+ properties: {
10602
+ id: {
10603
+ $ref: "definitions.json#/definitions/id"
10604
+ },
10605
+ state: {
10606
+ $ref: "lock.json#/properties/state"
10607
+ },
10608
+ mode: {
10609
+ $ref: "lock.json#/properties/mode"
10610
+ }
10611
+ }
10612
+ }
10596
10613
  }
10597
10614
  },
10598
10615
  additionalProperties: false
@@ -13213,6 +13230,28 @@ var require_property = __commonJS({
13213
13230
  }
13214
13231
  }
13215
13232
  },
13233
+ SOS: {
13234
+ type: "object",
13235
+ properties: {
13236
+ active: {
13237
+ type: "boolean"
13238
+ },
13239
+ activeEmergencies: {
13240
+ type: "array",
13241
+ items: {
13242
+ type: "string",
13243
+ enum: [
13244
+ "medical",
13245
+ "fire",
13246
+ "suspiciousPerson",
13247
+ "other",
13248
+ "conflict",
13249
+ "shooter"
13250
+ ]
13251
+ }
13252
+ }
13253
+ }
13254
+ },
13216
13255
  Elevator: {},
13217
13256
  Experiences: {},
13218
13257
  Dining: {},