This repository has been archived by the owner on Sep 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io-package.json
executable file
·124 lines (124 loc) · 3.5 KB
/
io-package.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
{
"common": {
"name": "timeular",
"version": "0.1.0",
"news": {
"0.1.0": {
"en": "news",
"de": "neues",
"ru": "новое"
}
},
"title": "Timeular tracking adapter",
"desc": {
"en": "Adapter to receive the current tracking vom timeular"
},
"authors": [
"Michael Müller @ marvin + konsorten <dev@konsorten.de>"
],
"platform": "Javascript/Node.js",
"mode": "daemon",
"icon": "timeular.png",
"materialize": true,
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/konsorten/ioBroker.timeular/master/admin/timeular.png",
"keywords": [
"timeular"
],
"readme": "https://github.com/konsorten/ioBroker.timeular/blob/master/README.md",
"loglevel": "info",
"type": "general",
"license": "MIT",
"messagebox": false
},
"native": {
"apiKey": "",
"apiSecret": "",
"updateInterval": 60
},
"instanceObjects": [
{
"_id": "connected",
"type": "state",
"common": {
"name": "Indicates if ioBroker is connected to the timeular API",
"type": "bool",
"read": true,
"write": false,
"role": "indicator.connected"
}
},
{
"_id": "error",
"type": "state",
"common": {
"name": "Error during connecting to the timeular API",
"type": "string",
"read": true,
"write": false,
"role": "indicator.maintenance"
}
},
{
"_id": "tracking",
"type": "state",
"common": {
"name": "Indicates if timeular is currently tracking an activity",
"type": "bool",
"read": true,
"write": false
}
},
{
"_id": "currentTracking.startedAt",
"type": "state",
"common": {
"name": "Start time of the current activity",
"type": "string",
"read": true,
"write": false,
"role": "value.time"
}
},
{
"_id": "currentTracking.activity.id",
"type": "state",
"common": {
"name": "Current activity id",
"type": "number",
"read": true,
"write": false
}
},
{
"_id": "currentTracking.activity.name",
"type": "state",
"common": {
"name": "Current activity name",
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "currentTracking.activity.color",
"type": "state",
"common": {
"name": "Current activity color",
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "currentTracking.note.text",
"type": "state",
"common": {
"name": "Note for the current activity",
"type": "string",
"read": true,
"write": false
}
}
]
}