@kohost/api-client 3.3.10 → 3.3.12
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/dist/cjs/schemas/definitions.json +1 -0
- package/dist/cjs/schemas/property.json +22 -1
- package/dist/esm/Models.js +23 -1
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +23 -1
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/AlarmSchema.d.ts +1 -0
- package/dist/types/schemas/CameraSchema.d.ts +1 -0
- package/dist/types/schemas/CategorySchema.d.ts +1 -0
- package/dist/types/schemas/CourtesySchema.d.ts +1 -0
- package/dist/types/schemas/CredentialSchema.d.ts +1 -0
- package/dist/types/schemas/DimmerSchema.d.ts +1 -0
- package/dist/types/schemas/GatewaySchema.d.ts +1 -0
- package/dist/types/schemas/LockSchema.d.ts +1 -0
- package/dist/types/schemas/MediaSourceSchema.d.ts +1 -0
- package/dist/types/schemas/MotionSensorSchema.d.ts +1 -0
- package/dist/types/schemas/ProductSchema.d.ts +1 -0
- package/dist/types/schemas/PropertySchema.d.ts +48 -1
- package/dist/types/schemas/ReservationSchema.d.ts +1 -0
- package/dist/types/schemas/RoomSchema.d.ts +10 -0
- package/dist/types/schemas/SpaceSchema.d.ts +1 -0
- package/dist/types/schemas/SwitchSchema.d.ts +1 -0
- package/dist/types/schemas/SystemUserSchema.d.ts +1 -0
- package/dist/types/schemas/ThermostatSchema.d.ts +1 -0
- package/dist/types/schemas/UserSchema.d.ts +1 -0
- package/dist/types/schemas/WindowCoveringSchema.d.ts +1 -0
- package/package.json +1 -1
package/dist/esm/utils.js
CHANGED
|
@@ -7604,6 +7604,7 @@ var require_definitions = __commonJS({
|
|
|
7604
7604
|
"dsc",
|
|
7605
7605
|
"ecobee",
|
|
7606
7606
|
"epson",
|
|
7607
|
+
"honeywell-vista",
|
|
7607
7608
|
"igor",
|
|
7608
7609
|
"inncom",
|
|
7609
7610
|
"isapi",
|
|
@@ -13376,7 +13377,7 @@ var require_property = __commonJS({
|
|
|
13376
13377
|
},
|
|
13377
13378
|
discriminator: {
|
|
13378
13379
|
type: "string",
|
|
13379
|
-
enum: ["hospitality", "education", "commercial"]
|
|
13380
|
+
enum: ["hospitality", "education", "commercial", "storage"]
|
|
13380
13381
|
},
|
|
13381
13382
|
organization: {
|
|
13382
13383
|
type: ["string", "null"],
|
|
@@ -13554,6 +13555,27 @@ var require_property = __commonJS({
|
|
|
13554
13555
|
tipping: {
|
|
13555
13556
|
type: "boolean",
|
|
13556
13557
|
default: false
|
|
13558
|
+
},
|
|
13559
|
+
quickServices: {
|
|
13560
|
+
type: "array",
|
|
13561
|
+
items: {
|
|
13562
|
+
type: "object",
|
|
13563
|
+
properties: {
|
|
13564
|
+
name: {
|
|
13565
|
+
type: "string"
|
|
13566
|
+
},
|
|
13567
|
+
description: {
|
|
13568
|
+
type: "string"
|
|
13569
|
+
},
|
|
13570
|
+
department: {
|
|
13571
|
+
type: "string"
|
|
13572
|
+
},
|
|
13573
|
+
image: {
|
|
13574
|
+
$ref: "mediaFile.json"
|
|
13575
|
+
}
|
|
13576
|
+
},
|
|
13577
|
+
required: ["name", "description", "image"]
|
|
13578
|
+
}
|
|
13557
13579
|
}
|
|
13558
13580
|
}
|
|
13559
13581
|
},
|