homey-api 3.4.24 → 3.4.25
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.
|
@@ -3437,12 +3437,12 @@
|
|
|
3437
3437
|
}
|
|
3438
3438
|
}
|
|
3439
3439
|
},
|
|
3440
|
-
"
|
|
3440
|
+
"setMood": {
|
|
3441
3441
|
"method": "post",
|
|
3442
|
-
"path": "/mood/:id/
|
|
3442
|
+
"path": "/mood/:id/set",
|
|
3443
3443
|
"private": false,
|
|
3444
3444
|
"scopes": [
|
|
3445
|
-
"homey.mood"
|
|
3445
|
+
"homey.mood.start"
|
|
3446
3446
|
],
|
|
3447
3447
|
"parameters": {
|
|
3448
3448
|
"id": {
|
|
@@ -9998,7 +9998,7 @@ export namespace HomeyAPIV3Local {
|
|
|
9998
9998
|
};
|
|
9999
9999
|
}): Promise<HomeyAPIV3Local.ManagerMoods.Mood>;
|
|
10000
10000
|
|
|
10001
|
-
|
|
10001
|
+
setMood(opts: { id: string }): Promise<any>;
|
|
10002
10002
|
|
|
10003
10003
|
deleteMood(opts: { id: string }): Promise<any>;
|
|
10004
10004
|
|