-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
132 lines (132 loc) · 3.51 KB
/
app.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.athom.soundboard",
"sdk": 3,
"name": {
"en": "Soundboard",
"nl": "Geluidsbord",
"da": "Lydtavle",
"de": "Soundboard",
"es": "Tablero de sonido",
"fr": "Tableau sonore",
"it": "Bacheca sonora",
"no": "Lydtavle",
"sv": "Ljudbräda",
"pl": "Tablica dźwiękowa",
"ru": "Звуковая панель",
"ko": "사운드 보드"
},
"brandColor": "#AFCA38",
"description": {
"en": "Play your own sounds in Homey",
"nl": "Speel je eigen geluiden in Homey",
"da": "Afspil dine egne lyde i Homey",
"de": "Spiele deine eigenen Sounds in Homey",
"es": "Reproduce tus propios sonidos en Homey",
"fr": "Jouez vos propres sons dans Homey",
"it": "Riproduci i tuoi suoni in Homey",
"no": "Spill dine egne lyder i Homey",
"sv": "Spela upp dina egna ljud i Homey",
"pl": "Odtwarzaj własne dźwięki w Homey",
"ru": "Воспроизводите свои собственные звуки в Homey",
"ko": "Homey에서 나만의 소리를 재생하세요"
},
"version": "3.1.0",
"compatibility": ">=8.0.0",
"category": [
"music"
],
"platforms": [
"local"
],
"author": {
"name": "Athom B.V.",
"email": "[email protected]"
},
"support": "https://support.athom.com/hc/en-us/requests/new",
"images": {
"large": "./assets/images/large.png",
"small": "./assets/images/small.png"
},
"api": {
"playSound": {
"method": "POST",
"path": "/:id/play"
},
"getSounds": {
"method": "GET",
"path": "/"
},
"getSound": {
"method": "GET",
"path": "/"
},
"createSound": {
"method": "POST",
"path": "/"
},
"updateSound": {
"method": "PUT",
"path": "/:id"
},
"deleteSound": {
"method": "DELETE",
"path": "/:id"
}
},
"flow": {
"actions": [
{
"id": "play",
"title": {
"en": "Play a sound",
"nl": "Speel een geluid af",
"da": "Afspil en lyd",
"de": "Ein Geräusch abspielen",
"es": "Reproducir un sonido",
"fr": "Jouer un son",
"it": "Riprodurre un suono",
"no": "Spill av en lyd",
"sv": "Spela ett ljud",
"pl": "Odtwórz dźwięk",
"ru": "Воспроизвести звук",
"ko": "소리 재생"
},
"titleFormatted": {
"en": "Play sound [[sound]]",
"nl": "Speel geluid [[sound]]",
"da": "Afspil lyd [[sound]]",
"de": "Spiel das Geräusch [[sound]] ab",
"es": "Reproduce sonido [[sound]]",
"fr": "Joue le son [[sound]]",
"it": "Riproduci suono [[sound]]",
"no": "Spill lyd [[sound]]",
"sv": "Spela ljud [[sound]]",
"pl": "Odtwórz dźwięk [[sound]]",
"ru": "Воспроизвести звук [[sound]]",
"ko": "소리 재생 [[sound]]"
},
"args": [
{
"name": "sound",
"type": "autocomplete",
"title": {
"en": "Sound",
"nl": "Geluid",
"da": "Lyd",
"de": "Geräusch",
"es": "Sonido",
"fr": "Son",
"it": "Suono",
"no": "Lyd",
"sv": "Ljud",
"pl": "Dźwięk",
"ru": "Звук",
"ko": "소리"
}
}
]
}
]
}
}