-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
191 lines (191 loc) · 3.75 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"id": "couchpota.to",
"version": "1.0.0",
"compatibility": "0.x || 1.x",
"name": {
"en": "CouchPotato",
"nl": "CouchPotato"
},
"category": "video",
"description": {
"en": "Allow adding movies to your CouchPotato wanted list",
"nl": "Voeg films toe aan je CouchPotato wanted list"
},
"images": {
"small": "assets/images/small.png",
"large": "assets/images/large.png"
},
"author": {
"name": "Ruud Burger",
"email": "ruud@crashdummy.nl"
},
"permissions": [
"homey:manager:speech-input",
"homey:manager:speech-output"
],
"dependencies": {
"request-promise": "*"
},
"speech": [
{
"id": "download",
"importance": 0.9,
"triggers": {
"en": [ "download the movie" ],
"nl": [ "download de film" ]
}
},
{
"id": "add",
"importance": 0.9,
"triggers": {
"en": [ "add movie", "add the movie", "add to couchpotato" ],
"nl": [ "de film", "download de film", "voeg to aan couchpotato" ]
}
},
{
"id": "to_watchlist",
"importance": 1,
"triggers": {
"en": [ "couchpotato", "couch potato", "watchlist", "watch list", "wantedlist", "wanted list",
"to my watch list", "to my collection", "to couchpotato",
"to wanted list", "add new movie to couchpotato", "add new movie"],
"nl": [ "aan de filmlijst", "aan mijn watchlist", "aan wanted",
"aan mijn lijst", "aan mijn filmlijst", "aan mijn collectie",
"voeg nieuwe film toe", "voeg film toe",
"aan couchpotato", "toe aan couchpotato", "voeg toe aan couchpotato"]
}
}
],
"flow": {
"triggers": [
{
"id": "snatched",
"title": {
"en": "Movie downloaded",
"nl": "Film gedownload"
},
"tokens": [
{
"name": "movie",
"title": {
"nl": "film",
"en": "movie"
},
"example": {
"en": "Movie Name 2015",
"nl": "Film titel 2015"
}
}
]
},
{
"id": "downloaded",
"title": {
"en": "Movie snatched",
"nl": "Film naar downloader gestuurd"
},
"tokens": [
{
"name": "movie",
"title": {
"nl": "film",
"en": "movie"
},
"example": {
"en": "Movie Name 2015",
"nl": "Film titel 2015"
}
}
]
},
{
"id": "added",
"title": {
"en": "Movie added to watchlist",
"nl": "Film toegevoegd aan watchlist"
},
"tokens": [
{
"name": "movie",
"title": {
"nl": "film",
"en": "movie"
},
"example": {
"en": "Movie Name 2015",
"nl": "Film titel 2015"
}
}
]
},
{
"id": "dashboard",
"title": {
"en": "Movie found, but needs action from dashboard",
"nl": "Film gevonden, maar heeft actie op dashboard nodig"
},
"tokens": [
{
"name": "movie",
"title": {
"nl": "film",
"en": "movie"
},
"example": {
"en": "Movie Name 2015",
"nl": "Film titel 2015"
}
}
]
}
],
"actions": [
{
"id": "filter_and_add",
"title": {
"en": "Filter and add",
"nl": "Filter en toevoegen"
},
"droptoken": true,
"args": [
{
"name": "remove",
"type": "text",
"placeholder": {
"nl": "Verwijder woorden",
"en": "Remove words"
}
}
]
},
{
"id": "add_movie",
"title": {
"en": "Add a movie by title",
"nl": "Voeg een film toe op titel"
},
"args": [
{
"name": "movie",
"type": "text"
}
]
},
{
"id": "search_all",
"title": {
"en": "Search all movies in wanted",
"nl": "Zoek alle films in wanted"
}
},
{
"id": "ask",
"title": {
"en": "Ask what movie to add",
"nl": "Vraag om de film toe te voegen"
}
}
]
}
}