@kohost/api-client 3.7.8 → 3.7.9
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/switch.json +7 -2
- package/dist/esm/Models.js +7 -2
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +7 -2
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/RoomSchema.d.ts +1 -1
- package/dist/types/schemas/SwitchSchema.d.ts +1 -1
- package/package.json +1 -1
|
@@ -14,8 +14,13 @@
|
|
|
14
14
|
"type": {
|
|
15
15
|
"$ref": "definitions.json#/definitions/type"
|
|
16
16
|
},
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"discriminator": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"enum": [
|
|
20
|
+
"light",
|
|
21
|
+
"fan",
|
|
22
|
+
"irrigation"
|
|
23
|
+
]
|
|
19
24
|
},
|
|
20
25
|
"supportedNotifications": {
|
|
21
26
|
"$ref": "definitions.json#/definitions/supportedNotifications"
|
package/dist/esm/Models.js
CHANGED
|
@@ -8170,8 +8170,13 @@ var require_switch = __commonJS({
|
|
|
8170
8170
|
type: {
|
|
8171
8171
|
$ref: "definitions.json#/definitions/type"
|
|
8172
8172
|
},
|
|
8173
|
-
|
|
8174
|
-
|
|
8173
|
+
discriminator: {
|
|
8174
|
+
type: "string",
|
|
8175
|
+
enum: [
|
|
8176
|
+
"light",
|
|
8177
|
+
"fan",
|
|
8178
|
+
"irrigation"
|
|
8179
|
+
]
|
|
8175
8180
|
},
|
|
8176
8181
|
supportedNotifications: {
|
|
8177
8182
|
$ref: "definitions.json#/definitions/supportedNotifications"
|