forked from jordenc/org.telegram.api.bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
103 lines (103 loc) · 2.4 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
{
"id": "org.telegram.api.bot",
"name": {
"en": "Telegram Bot",
"nl": "Telegram Bot"
},
"sdk": 2,
"version": "0.2.3",
"compatibility": ">=1.5.0",
"description": {
"en": "Send and receive messages and images on Telegram with Homey",
"nl": "Verstuur en ontvang berichten en afbeeldingen op Telegram met Homey"
},
"author": {
"name": "Chamid Media",
"email": "[email protected]"
},
"contributing": {
"donate": {
"paypal": {
"email": "[email protected]",
"currency": "EUR"
}
}
},
"images": {
"small": "assets/images/small.png",
"large": "assets/images/large.png"
},
"permissions": [
"homey:manager:speech-output",
"homey:manager:speech-input"
],
"speech": [
],
"category": "internet",
"flow": {
"triggers": [
{
"id": "incomingmessage",
"title": {
"en": "A message was received",
"nl": "Een bericht werd ontvangen"
},
"tokens": [
{
"name": "message",
"title": {
"en": "text",
"nl": "tekst"
},
"example": "test"
}
]
}
],
"actions": [
{
"id": "sendmessage",
"title": {
"en": "Send a message",
"nl": "Stuur een bericht"
},
"args": [
{
"name": "to",
"type": "autocomplete",
"placeholder": {
"en": "Receiver name",
"nl": "Naam ontvanger"
}
},
{
"name": "text",
"type": "text",
"placeholder": {
"en": "Message",
"nl": "Bericht"
}
}
]
},
{
"id": "sendimage",
"title": {
"en": "Send a picture",
"nl": "Stuur een afbeelding"
},
"droptoken": "image",
"args": [
{
"name": "to",
"type": "autocomplete",
"placeholder": {
"en": "Receiver name",
"nl": "Naam ontvanger"
}
}
]
}
]
}
}