@kohost/api-client 3.0.0-beta.73 → 3.0.0-beta.75

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.
@@ -13,6 +13,7 @@ export interface Property {
13
13
  name: string;
14
14
  type: string;
15
15
  discriminator?: "hospitality" | "education" | "commercial";
16
+ testModeEnabled?: boolean;
16
17
  timezone?: string;
17
18
  smsNumber?: string;
18
19
  hostname: string | null;
@@ -9,7 +9,17 @@ export interface Space {
9
9
  id?: string;
10
10
  name?: string;
11
11
  type?: string;
12
- discriminator?: "classRoom" | "hotelRoom" | "office" | "building" | "commonArea";
12
+ discriminator?:
13
+ | "classRoom"
14
+ | "hotelRoom"
15
+ | "office"
16
+ | "building"
17
+ | "commonArea"
18
+ | "conferenceRoom"
19
+ | "lobby"
20
+ | "gym"
21
+ | "pool"
22
+ | "restaurant";
13
23
  driver?:
14
24
  | "aws-kinesis"
15
25
  | "butler"
@@ -20,7 +20,9 @@
20
20
  "type": "string",
21
21
  "enum": ["hospitality", "education", "commercial"]
22
22
  },
23
-
23
+ "testModeEnabled": {
24
+ "type": "boolean"
25
+ },
24
26
  "timezone": {
25
27
  "type": "string"
26
28
  },
@@ -17,7 +17,18 @@
17
17
  },
18
18
  "discriminator": {
19
19
  "type": "string",
20
- "enum": ["classRoom", "hotelRoom", "office", "building", "commonArea"]
20
+ "enum": [
21
+ "classRoom",
22
+ "hotelRoom",
23
+ "office",
24
+ "building",
25
+ "commonArea",
26
+ "conferenceRoom",
27
+ "lobby",
28
+ "gym",
29
+ "pool",
30
+ "restaurant"
31
+ ]
21
32
  },
22
33
  "driver": {
23
34
  "$ref": "definitions.json#/definitions/driver"
@@ -11622,7 +11622,18 @@ var require_space = __commonJS({
11622
11622
  },
11623
11623
  discriminator: {
11624
11624
  type: "string",
11625
- enum: ["classRoom", "hotelRoom", "office", "building", "commonArea"]
11625
+ enum: [
11626
+ "classRoom",
11627
+ "hotelRoom",
11628
+ "office",
11629
+ "building",
11630
+ "commonArea",
11631
+ "conferenceRoom",
11632
+ "lobby",
11633
+ "gym",
11634
+ "pool",
11635
+ "restaurant"
11636
+ ]
11626
11637
  },
11627
11638
  driver: {
11628
11639
  $ref: "definitions.json#/definitions/driver"
@@ -15448,6 +15459,9 @@ var require_property = __commonJS({
15448
15459
  type: "string",
15449
15460
  enum: ["hospitality", "education", "commercial"]
15450
15461
  },
15462
+ testModeEnabled: {
15463
+ type: "boolean"
15464
+ },
15451
15465
  timezone: {
15452
15466
  type: "string"
15453
15467
  },