-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsonos-commands.ts
42 lines (42 loc) · 1.07 KB
/
sonos-commands.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export enum SonosCommands {
AdvancedCommand = 'adv-command',
ClearQueue = 'clearqueue',
Command = 'command',
JoinGroup = 'joingroup',
LeaveGroup = 'leavegroup',
Mute = 'mute',
Next = 'next',
Notify = 'notify',
/**
* @deprecated Experimental see https://github.com/svrooij/node-sonos-ts/issues/119
*/
NotifyTwo = 'notifytwo',
Pause = 'pause',
Play = 'play',
PlayMode = 'playmode',
Previous = 'previous',
Queue = 'queue',
Seek = 'seek',
SelectTrack = 'selecttrack',
SetBass = 'setbass',
SetButtonLockState = 'setbuttonlockstate',
SetLEDState = 'setledstate',
SetNightmode = 'setnightmode',
SetTransportUri = 'setavtransporturi',
SetTreble = 'settreble',
Sleep = 'sleep',
Speak = 'speak',
/**
* @deprecated Experimental see https://github.com/svrooij/node-sonos-ts/issues/119
*/
SpeakTwo = 'speaktwo',
Stop = 'stop',
SwitchToLine = "switchtoline",
SwitchToQueue = "switchtoqueue",
SwitchToTv = "switchtotv",
Toggle = 'toggle',
Unmute = 'unmute',
Volume = 'volume',
VolumeDown = 'volumedown',
VolumeUp = 'volumeup'
}