iobroker.gotify-ws 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,270 @@
1
+ {
2
+ "i18n": true,
3
+ "type": "panel",
4
+ "items": {
5
+ "gotifyDesc": {
6
+ "type": "staticText",
7
+ "text": "Gotify web socket for connection to various notification systems",
8
+ "newLine": true,
9
+ "style": {
10
+ "fontSize": 20
11
+ }
12
+ },
13
+ "gotifySettings": {
14
+ "newLine": true,
15
+ "type": "header",
16
+ "text": "Gotify Settings",
17
+ "size": 2
18
+ },
19
+ "ip": {
20
+ "type": "text",
21
+ "label": "Gotify IP or Domain",
22
+ "sm": 12,
23
+ "md": 8,
24
+ "lg": 4,
25
+ "help": "Gotify IP or Domain",
26
+ "validator": "data.ip",
27
+ "validatorNoSaveOnError": true,
28
+ "placeholder": "10.250.1.10",
29
+ "newLine": true
30
+ },
31
+ "port": {
32
+ "sm": 12,
33
+ "md": 8,
34
+ "lg": 4,
35
+ "min": 1,
36
+ "max": 65535,
37
+ "help": "Gotify Port",
38
+ "type": "number",
39
+ "validator": "data.port",
40
+ "validatorNoSaveOnError": true,
41
+ "placeholder": "8080",
42
+ "label": "Gotify Port"
43
+ },
44
+ "token": {
45
+ "type": "text",
46
+ "label": "Gotify Token",
47
+ "sm": 12,
48
+ "md": 8,
49
+ "lg": 4,
50
+ "validator": "data.token",
51
+ "validatorNoSaveOnError": true,
52
+ "placeholder": "XXXxxXXXxxxXXXX",
53
+ "help": "Gotify Token"
54
+ },
55
+ "notificationSettings": {
56
+ "newLine": true,
57
+ "type": "header",
58
+ "text": "Notification Settings",
59
+ "size": 2
60
+ },
61
+ "notificationType": {
62
+ "type": "select",
63
+ "label": "Notification type",
64
+ "sm": 12,
65
+ "md": 8,
66
+ "lg": 4,
67
+ "help": "Notification type",
68
+ "options": [
69
+ {
70
+ "label": "E-Mail",
71
+ "value": "email"
72
+ },
73
+ {
74
+ "label": "Matrix",
75
+ "value": "matrix-org"
76
+ },
77
+ {
78
+ "label": "Pushover",
79
+ "value": "pushover"
80
+ },
81
+ {
82
+ "label": "Discord",
83
+ "value": "discord"
84
+ },
85
+ {
86
+ "label": "Signal",
87
+ "value": "signal-cmb"
88
+ },
89
+ {
90
+ "label": "Telegram",
91
+ "value": "telegram"
92
+ },
93
+ {
94
+ "label": "Whatsapp",
95
+ "value": "whatsapp-cmb"
96
+ }
97
+ ],
98
+ "newLine": true
99
+ },
100
+ "emailInstance": {
101
+ "type": "selectSendTo",
102
+ "command": "sendToInstance",
103
+ "jsonData": "{ \"type\": \"email\" }",
104
+ "hidden": "data.notificationType !== 'email'",
105
+ "label": "E-Mail Instance",
106
+ "sm": 12,
107
+ "md": 8,
108
+ "lg": 4,
109
+ "help": "E-Mail Instance"
110
+ },
111
+ "emailReceiver": {
112
+ "type": "text",
113
+ "hidden": "data.notificationType !== 'email'",
114
+ "label": "E-Mail Receiver",
115
+ "sm": 12,
116
+ "md": 8,
117
+ "lg": 4,
118
+ "help": "E-Mail Receiver",
119
+ "validator": "data.emailReceiver",
120
+ "validatorNoSaveOnError": true,
121
+ "placeholder": "xxxx@xxxx.com",
122
+ "newLine": true
123
+ },
124
+ "emailSender": {
125
+ "type": "text",
126
+ "hidden": "data.notificationType !== 'email'",
127
+ "label": "E-Mail Sender",
128
+ "sm": 12,
129
+ "md": 8,
130
+ "lg": 4,
131
+ "validator": "data.emailSender",
132
+ "validatorNoSaveOnError": true,
133
+ "placeholder": "xxxx@xxxx.com",
134
+ "help": "E-Mail Sender"
135
+ },
136
+ "matrixInstance": {
137
+ "type": "selectSendTo",
138
+ "command": "sendToInstance",
139
+ "jsonData": "{ \"type\": \"matrix\" }",
140
+ "hidden": "data.notificationType !== 'matrix'",
141
+ "label": "Matrix Instance",
142
+ "sm": 12,
143
+ "md": 8,
144
+ "lg": 4,
145
+ "help": "Matrix Instance"
146
+ },
147
+ "pushoverInstance": {
148
+ "type": "selectSendTo",
149
+ "command": "sendToInstance",
150
+ "jsonData": "{ \"type\": \"pushover\" }",
151
+ "hidden": "data.notificationType !== 'pushover'",
152
+ "label": "Pushover Instance",
153
+ "sm": 12,
154
+ "md": 8,
155
+ "lg": 4,
156
+ "help": "Pushover Instance"
157
+ },
158
+ "pushoverDeviceID": {
159
+ "type": "text",
160
+ "hidden": "data.notificationType !== 'pushover'",
161
+ "label": "Device ID",
162
+ "sm": 12,
163
+ "md": 8,
164
+ "lg": 4,
165
+ "help": "Device ID"
166
+ },
167
+ "pushoverSilentNotice": {
168
+ "newLine": true,
169
+ "type": "checkbox",
170
+ "hidden": "data.notificationType !== 'pushover'",
171
+ "label": "Silent Notice",
172
+ "sm": 12,
173
+ "md": 8,
174
+ "lg": 4
175
+ },
176
+ "discordInstance": {
177
+ "type": "selectSendTo",
178
+ "command": "sendToInstance",
179
+ "jsonData": "{ \"type\": \"discord\" }",
180
+ "hidden": "data.notificationType !== 'discord'",
181
+ "label": "Discord Instance",
182
+ "sm": 12,
183
+ "md": 8,
184
+ "lg": 4,
185
+ "help": "Discord Instance"
186
+ },
187
+ "discordTarget": {
188
+ "type": "selectSendTo",
189
+ "command": "sendToDiscordTarget",
190
+ "jsonData": "{ \"instance\": \"${data.discordInstance}\" }",
191
+ "hidden": "data.notificationType !== 'discord'",
192
+ "label": "Discord Target",
193
+ "sm": 12,
194
+ "md": 8,
195
+ "lg": 4,
196
+ "default": "none",
197
+ "help": "Discord Target"
198
+ },
199
+ "signalInstance": {
200
+ "type": "selectSendTo",
201
+ "command": "sendToInstance",
202
+ "jsonData": "{ \"type\": \"signal-cmb\" }",
203
+ "hidden": "data.notificationType !== 'signal-cmb'",
204
+ "label": "Signal Instance",
205
+ "sm": 12,
206
+ "md": 8,
207
+ "lg": 4,
208
+ "help": "Signal Instance"
209
+ },
210
+ "telegramInstance": {
211
+ "type": "selectSendTo",
212
+ "command": "sendToInstance",
213
+ "jsonData": "{ \"type\": \"telegram\" }",
214
+ "hidden": "data.notificationType !== 'telegram'",
215
+ "label": "Telegram Instance",
216
+ "sm": 12,
217
+ "md": 8,
218
+ "lg": 4,
219
+ "help": "Telegram Instance"
220
+ },
221
+ "telegramUser": {
222
+ "type": "selectSendTo",
223
+ "command": "sendToTelegramUser",
224
+ "jsonData": "{ \"instance\": \"${data.telegramInstance}\" }",
225
+ "hidden": "data.notificationType !== 'telegram'",
226
+ "label": "Telegram User",
227
+ "noTranslation": false,
228
+ "sm": 12,
229
+ "md": 8,
230
+ "lg": 4,
231
+ "help": "Telegram User"
232
+ },
233
+ "whatsappInstance": {
234
+ "type": "selectSendTo",
235
+ "command": "sendToInstance",
236
+ "jsonData": "{ \"type\": \"whatsapp-cmb\" }",
237
+ "hidden": "data.notificationType !== 'whatsapp-cmb'",
238
+ "label": "Whatsapp Instance",
239
+ "sm": 12,
240
+ "md": 8,
241
+ "lg": 4,
242
+ "help": "Whatsapp Instance"
243
+ },
244
+ "_helpLine2": {
245
+ "newLine": true,
246
+ "type": "divider",
247
+ "color": "secondary"
248
+ },
249
+ "_donateTxt": {
250
+ "type": "staticText",
251
+ "text": "If you like this project and would like to support its development, you are welcome to leave a donation.",
252
+ "newLine": true
253
+ },
254
+ "_donate": {
255
+ "type": "staticImage",
256
+ "tooltip": "PayPal.Me",
257
+ "noTranslation": true,
258
+ "href": "https://paypal.me/mk1676",
259
+ "src": "https://camo.githubusercontent.com/bf0ea06ef4d9aa4dcb2f2990d99371e7a68e543ec49b788e481568a88c745502/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f70617970616c2d646f6e6174652532302537432532307370656e64656e2d626c75652e737667",
260
+ "newLine": true
261
+ },
262
+ "_githubSponsor": {
263
+ "type": "staticImage",
264
+ "tooltip": "GitHub Sponsors",
265
+ "noTranslation": true,
266
+ "href": "https://github.com/sponsors/simatec",
267
+ "src": "https://camo.githubusercontent.com/365a269ff418d24bdf194ab15958a7545e2d9cc794be9e42933e57519e315b51/68747470733a2f2f696d672e736869656c64732e696f2f7374617469632f76313f6c6162656c3d53706f6e736f72266d6573736167653d254532253944254134266c6f676f3d47697448756226636f6c6f723d253233666538653836"
268
+ }
269
+ }
270
+ }
package/admin/words.js ADDED
@@ -0,0 +1,43 @@
1
+ /*global systemDictionary:true */
2
+ /*
3
+ +===================== DO NOT MODIFY ======================+
4
+ | This file was generated by translate-adapter, please use |
5
+ | `translate-adapter adminLanguages2words` to update it. |
6
+ +===================== DO NOT MODIFY ======================+
7
+ */
8
+ 'use strict';
9
+
10
+ systemDictionary = {
11
+ "discordInstance": { "en": "", "de": "Discord Instance", "ru": "Discord Instance", "pt": "Discord Instance", "nl": "Discord Instance", "fr": "Discord Instance", "it": "Discord Instance", "es": "Discord Instance", "pl": "Discord Instance", "uk": "Екземпляр Discord", "zh-cn": "Discord Instance"},
12
+ "e-mailInstance": { "en": "", "de": "E-Mail Instance", "ru": "E-Mail Instance", "pt": "E-Mail Instance", "nl": "E-Mail Instance", "fr": "E-Mail Instance", "it": "E-Mail Instance", "es": "E-Mail Instance", "pl": "E-Mail Instance", "uk": "Примірник електронної пошти", "zh-cn": "E-Mail Instance"},
13
+ "gotify-ws adapter settings": { "en": "Adapter settings for gotify-ws", "de": "Adaptereinstellungen für gotify-ws", "ru": "Настройки адаптера для gotify-ws", "pt": "Configurações do adaptador para gotify-ws", "nl": "Adapterinstellingen voor gotify-ws", "fr": "Paramètres d'adaptateur pour gotify-ws", "it": "Impostazioni dell'adattatore per gotify-ws", "es": "Ajustes del adaptador para gotify-ws", "pl": "Ustawienia adaptera dla gotify-ws", "uk": "Налаштування адаптера для gotify-ws", "zh-cn": "gotify-ws的适配器设置"},
14
+ "matrixInstance": { "en": "", "de": "Matrix Instance", "ru": "Matrix Instance", "pt": "Matrix Instance", "nl": "Matrix Instance", "fr": "Matrix Instance", "it": "Matrix Instance", "es": "Matrix Instance", "pl": "Matrix Instance", "uk": "Екземпляр матриці", "zh-cn": "Matrix Instance"},
15
+ "notificationType": { "en": "Notification type", "de": "Notification type", "ru": "Notification type", "pt": "Notification type", "nl": "Notification type", "fr": "Notification type", "it": "Notification type", "es": "Notification type", "pl": "Notification type", "uk": "Тип сповіщення", "zh-cn": "Notification type"},
16
+ "pushoverInstance": { "en": "", "de": "Pushover Instance", "ru": "Pushover Instance", "pt": "Pushover Instance", "nl": "Pushover Instance", "fr": "Pushover Instance", "it": "Pushover Instance", "es": "Pushover Instance", "pl": "Pushover Instance", "uk": "Примірник Pushover", "zh-cn": "Pushover Instance"},
17
+ "signalInstance": { "en": "", "de": "Signal Instance", "ru": "Signal Instance", "pt": "Signal Instance", "nl": "Signal Instance", "fr": "Signal Instance", "it": "Signal Instance", "es": "Signal Instance", "pl": "Signal Instance", "uk": "Примірник сигналу", "zh-cn": "Signal Instance"},
18
+ "telegramInstance": { "en": "", "de": "Telegram Instance", "ru": "Telegram Instance", "pt": "Telegram Instance", "nl": "Telegram Instance", "fr": "Telegram Instance", "it": "Telegram Instance", "es": "Telegram Instance", "pl": "Telegram Instance", "uk": "Примірник Telegram", "zh-cn": "Telegram Instance"},
19
+ "token": { "en": "", "de": "Gotify Token", "ru": "Gotify Token", "pt": "Gotify Token", "nl": "Gotify Token", "fr": "Gotify Token", "it": "Gotify Token", "es": "Gotify Token", "pl": "Gotify Token", "uk": "Токен Gotify", "zh-cn": "Gotify Token"},
20
+ "url": { "en": "", "de": "Gotify URL with Port", "ru": "Gotify URL with Port", "pt": "Gotify URL with Port", "nl": "Gotify URL with Port", "fr": "Gotify URL with Port", "it": "Gotify URL with Port", "es": "Gotify URL with Port", "pl": "Gotify URL with Port", "uk": "Gotify URL-адреса з портом", "zh-cn": "Gotify URL with Port"},
21
+ "whatsappInstance": { "en": "", "de": "Whatsapp Instance", "ru": "Whatsapp Instance", "pt": "Whatsapp Instance", "nl": "Whatsapp Instance", "fr": "Whatsapp Instance", "it": "Whatsapp Instance", "es": "Whatsapp Instance", "pl": "Whatsapp Instance", "uk": "Екземпляр WhatsApp", "zh-cn": "Whatsapp Instance"},
22
+ "Discord Instance": { "en": "Discord Instance", "de": "Discord-Instanz", "ru": "Экземпляр Дискорда", "pt": "Instância de discórdia", "nl": "Discord-instantie", "fr": "Instance de discorde", "it": "Istanza della discordia", "es": "Instancia de discordia", "pl": "Instancja Discorda", "uk": "Екземпляр Discord", "zh-cn": "不和谐实例"},
23
+ "E-Mail Instance": { "en": "E-Mail Instance", "de": "E-Mail-Instanz", "ru": "Экземпляр электронной почты", "pt": "Instância de e-mail", "nl": "E-mailinstantie", "fr": "Instance de courrier électronique", "it": "Istanza di posta elettronica", "es": "Instancia de correo electrónico", "pl": "Instancja poczty elektronicznej", "uk": "Примірник електронної пошти", "zh-cn": "电子邮件实例"},
24
+ "Matrix Instance": { "en": "Matrix Instance", "de": "Matrixinstanz", "ru": "Экземпляр матрицы", "pt": "Instância de matriz", "nl": "Matrix-instantie", "fr": "Instance matricielle", "it": "Istanza della matrice", "es": "Instancia de matriz", "pl": "Instancja matrycy", "uk": "Екземпляр матриці", "zh-cn": "矩阵实例"},
25
+ "Pushover Instance": { "en": "Pushover Instance", "de": "Pushover-Instanz", "ru": "Пушоверный экземпляр", "pt": "Instância pushover", "nl": "Pushover-instantie", "fr": "Instance de transfert", "it": "Istanza push-over", "es": "Instancia fácil de convencer", "pl": "Instancja Pushover", "uk": "Примірник Pushover", "zh-cn": "推倒实例"},
26
+ "Signal Instance": { "en": "Signal Instance", "de": "Signalinstanz", "ru": "Экземпляр сигнала", "pt": "Instância de Sinal", "nl": "Signaalinstantie", "fr": "Instance de signal", "it": "Istanza del segnale", "es": "Instancia de señal", "pl": "Instancja sygnału", "uk": "Примірник сигналу", "zh-cn": "信号实例"},
27
+ "Telegram Instance": { "en": "Telegram Instance", "de": "Telegram-Instanz", "ru": "Экземпляр Телеграммы", "pt": "Instância de telegrama", "nl": "Telegram-instantie", "fr": "Instance de télégramme", "it": "Istanza di Telegramma", "es": "Instancia de telegrama", "pl": "Instancja telegramu", "uk": "Примірник Telegram", "zh-cn": "电报实例"},
28
+ "Gotify Token": { "en": "Gotify Token", "de": "Gotify-Token", "ru": "Токен Gotify", "pt": "Token Gotify", "nl": "Gotify-token", "fr": "Jeton Gotify", "it": "Gettone Getify", "es": "Token de gotificación", "pl": "Gotify token", "uk": "Токен Gotify", "zh-cn": "Gotify 代币"},
29
+ "Gotify IP or Domain": { "en": "Gotify IP or Domain", "de": "Gotify IP oder Domain", "ru": "Gotify IP или домен", "pt": "IP ou domínio Gotify", "nl": "Gotify IP of domein", "fr": "Gotify IP ou domaine", "it": "Gotify IP o dominio", "es": "Gotificar IP o Dominio", "pl": "Gotyfikuj adres IP lub domenę", "uk": "Gotify IP або домен", "zh-cn": "获取IP或域名"},
30
+ "Whatsapp Instance": { "en": "Whatsapp Instance", "de": "WhatsApp-Instanz", "ru": "Экземпляр WhatsApp", "pt": "Instância do Whatsapp", "nl": "Whatsapp-instantie", "fr": "Instance WhatsApp", "it": "Istanza di Whatsapp", "es": "Instancia de WhatsApp", "pl": "Instancja Whatsapp", "uk": "Екземпляр WhatsApp", "zh-cn": "Whatsapp 实例"},
31
+ "Gotify web socket for connection to various notification systems": {"en": "Gotify web socket for connection to various notification systems", "de": "Gotify-Web-Socket zur Anbindung an verschiedene Benachrichtigungssysteme", "ru": "Веб-сокет Gotify для подключения к различным системам уведомлений", "pt": "Soquete web Gotify para conexão com vários sistemas de notificação", "nl": "Gotify websocket voor verbinding met verschillende meldingssystemen", "fr": "Socket Web Gotify pour la connexion à divers systèmes de notification", "it": "Presa web Gotify per la connessione a vari sistemi di notifica", "es": "Socket web Gotify para conexión a varios sistemas de notificación", "pl": "Gniazdo sieciowe Gotify umożliwiające połączenie z różnymi systemami powiadomień", "uk": "Веб-сокет Gotify для підключення до різних систем сповіщень", "zh-cn": "Gotify Web 套接字用于连接各种通知系统"},
32
+ "Gotify Settings": { "en": "Gotify Settings", "de": "Gotify-Einstellungen", "ru": "Настройки Готифай", "pt": "Configurações do Gotify", "nl": "Gotify-instellingen", "fr": "Paramètres Gotify", "it": "Impostazioni di Gotify", "es": "Configuración de Gotify", "pl": "Ustawienia Gotify", "uk": "Налаштування Gotify", "zh-cn": "戈特化设置"},
33
+ "Gotify Port": { "en": "Gotify Port", "de": "Gotify-Port", "ru": "Готифай Порт", "pt": "Porto Gotify", "nl": "Gotify-poort", "fr": "Port Gotify", "it": "Porto Gotify", "es": "Puerto Gotify", "pl": "Gotify Port", "uk": "Порт Gotify", "zh-cn": "戈蒂菲港"},
34
+ "Notification Settings": { "en": "Notification Settings", "de": "Benachrichtigungseinstellungen", "ru": "Настройки уведомлений", "pt": "Configurações de notificação", "nl": "Notificatie instellingen", "fr": "Paramètres de notification", "it": "Impostazioni di notifica", "es": "Configuración de las notificaciones", "pl": "Ustawienia powiadomień", "uk": "Налаштування сповіщень", "zh-cn": "通知设置"},
35
+ "Notification type": { "en": "Notification type", "de": "Benachrichtigungstyp", "ru": "Тип уведомления", "pt": "Tipo de notificação", "nl": "Melding type", "fr": "Type de notification", "it": "Tipo di notifica", "es": "Tipo de notificación", "pl": "Typ powiadomienia", "uk": "Тип сповіщення", "zh-cn": "通知类型"},
36
+ "E-Mail Receiver": { "en": "E-Mail Receiver", "de": "E-Mail-Empfänger", "ru": "Получатель электронной почты", "pt": "Receptor de e-mail", "nl": "E-mailontvanger", "fr": "Récepteur de courrier électronique", "it": "Ricevitore di posta elettronica", "es": "Receptor de correo electrónico", "pl": "Odbiorca poczty elektronicznej", "uk": "Приймач електронної пошти", "zh-cn": "电子邮件接收器"},
37
+ "E-Mail Sender": { "en": "E-Mail Sender", "de": "E-Mail-Absender", "ru": "Отправитель электронной почты", "pt": "Remetente de e-mail", "nl": "E-mailafzender", "fr": "Expéditeur de courrier électronique", "it": "Mittente dell'e-mail", "es": "Remitente de correo electrónico", "pl": "Nadawca e-maila", "uk": "Відправник електронної пошти", "zh-cn": "电子邮件发送者"},
38
+ "Device ID": { "en": "Device ID", "de": "Geräte ID", "ru": "Идентификатор устройства", "pt": "ID de dispositivo", "nl": "Apparaat ID", "fr": "Reference de l'appareil", "it": "ID del dispositivo", "es": "ID del dispositivo", "pl": "Identyfikator urzadzenia", "uk": "ID пристрою", "zh-cn": "设备ID"},
39
+ "Silent Notice": { "en": "Silent notice", "de": "Stille Mitteilung", "ru": "Тихое уведомление", "pt": "Aviso silencioso", "nl": "Stille mededeling", "fr": "Avis silencieux", "it": "Avviso silenzioso", "es": "Aviso silencioso", "pl": "Ciche powiadomienie", "uk": "Мовчазне повідомлення", "zh-cn": "无声通知"},
40
+ "Discord Target": { "en": "Discord Target", "de": "Discord-Ziel", "ru": "Цель разногласий", "pt": "Alvo de discórdia", "nl": "Onenigheid Doel", "fr": "Cible de discorde", "it": "Obiettivo della discordia", "es": "Objetivo de discordia", "pl": "Cel niezgody", "uk": "Discord Target", "zh-cn": "不和谐目标"},
41
+ "Telegram User": { "en": "Telegram User", "de": "Telegram-Benutzer", "ru": "Пользователь Telegram", "pt": "Usuário do telegrama", "nl": "Telegram-gebruiker", "fr": "Utilisateur de télégramme", "it": "Utente Telegram", "es": "Usuario de Telegrama", "pl": "Użytkownik Telegramu", "uk": "Користувач Telegram", "zh-cn": "电报用户"},
42
+ "If you like this project and would like to support its development, you are welcome to leave a donation.": {"en": "If you like this project and would like to support its development, you are welcome to leave a donation.", "de": "Wenn Ihnen dieses Projekt gefällt und Sie seine Entwicklung unterstützen möchten, können Sie gerne eine Spende hinterlassen.", "ru": "Если вам нравится этот проект и вы хотите поддержать его развитие, вы можете оставить пожертвование.", "pt": "Se você gosta deste projeto e gostaria de apoiar seu desenvolvimento, fique à vontade para deixar uma doação.", "nl": "Als u dit project leuk vindt en de ontwikkeling ervan wilt ondersteunen, kunt u een donatie achterlaten.", "fr": "Si vous aimez ce projet et souhaitez soutenir son développement, n'hésitez pas à faire un don.", "it": "Se ti piace questo progetto e desideri sostenerne lo sviluppo, puoi lasciare una donazione.", "es": "Si te gusta este proyecto y te gustaría apoyar su desarrollo, puedes dejar una donación.", "pl": "Jeśli podoba Ci się ten projekt i chciałbyś wesprzeć jego rozwój, możesz zostawić darowiznę.", "uk": "Якщо вам подобається цей проект і ви хочете підтримати його розвиток, ви можете залишити пожертву.", "zh-cn": "如果您喜欢这个项目并愿意支持它的发展,欢迎您留下捐款。"},
43
+ };
@@ -0,0 +1,145 @@
1
+ {
2
+ "common": {
3
+ "name": "gotify-ws",
4
+ "version": "0.1.0",
5
+ "news": {
6
+ "0.1.0": {
7
+ "en": "(simatec) First Release",
8
+ "de": "(simatec) Erste Veröffentlichung",
9
+ "ru": "Первый выпуск",
10
+ "pt": "(simatec) Primeira versão",
11
+ "nl": "Eerste uitgave",
12
+ "fr": "Première sortie",
13
+ "it": "(simatec) Primo rilascio",
14
+ "es": "Primer lanzamiento",
15
+ "pl": "Pierwsze wydanie",
16
+ "uk": "(simatec) Перший реліз",
17
+ "zh-cn": "第一次发布"
18
+ },
19
+ "0.0.1": {
20
+ "en": "initial release",
21
+ "de": "Erstveröffentlichung",
22
+ "ru": "Начальная версия",
23
+ "pt": "lançamento inicial",
24
+ "nl": "Eerste uitgave",
25
+ "fr": "Première version",
26
+ "it": "Versione iniziale",
27
+ "es": "Versión inicial",
28
+ "pl": "Pierwsze wydanie",
29
+ "zh-cn": "首次出版",
30
+ "uk": "початковий випуск"
31
+ }
32
+ },
33
+ "titleLang": {
34
+ "en": "Gotify web socket",
35
+ "de": "Gotify web socket",
36
+ "ru": "Gotify web socket",
37
+ "pt": "Gotify web socket",
38
+ "nl": "Gotify web socket",
39
+ "fr": "Gotify web socket",
40
+ "it": "Gotify web socket",
41
+ "es": "Gotify web socket",
42
+ "pl": "Gotify web socket",
43
+ "zh-cn": "Gotify web socket",
44
+ "uk": "Веб-сокет Gotify"
45
+ },
46
+ "desc": {
47
+ "en": "Gotify web socket for connection to various notification systems",
48
+ "de": "Gotify web socket for connection to various notification systems",
49
+ "ru": "Gotify web socket for connection to various notification systems",
50
+ "pt": "Gotify web socket for connection to various notification systems",
51
+ "nl": "Gotify web socket for connection to various notification systems",
52
+ "fr": "Gotify web socket for connection to various notification systems",
53
+ "it": "Gotify web socket for connection to various notification systems",
54
+ "es": "Gotify web socket for connection to various notification systems",
55
+ "pl": "Gotify web socket for connection to various notification systems",
56
+ "zh-cn": "Gotify web socket for connection to various notification systems",
57
+ "uk": "Веб-сокет Gotify для підключення до різних систем сповіщень"
58
+ },
59
+ "authors": [
60
+ "simatec <simatec@simateccloud.de>"
61
+ ],
62
+ "keywords": [
63
+ "Gotify",
64
+ "Websocket",
65
+ "Telegram",
66
+ "Whatsapp",
67
+ "Discord",
68
+ "Mail",
69
+ "Pushover"
70
+ ],
71
+ "licenseInformation": {
72
+ "license": "MIT",
73
+ "type": "free"
74
+ },
75
+ "platform": "Javascript/Node.js",
76
+ "main": "main.js",
77
+ "icon": "gotify-ws.png",
78
+ "enabled": true,
79
+ "messagebox": true,
80
+ "extIcon": "https://raw.githubusercontent.com/simatec/ioBroker.gotify-ws/main/admin/gotify-ws.png",
81
+ "readme": "https://github.com/simatec/ioBroker.gotify-ws/blob/main/README.md",
82
+ "loglevel": "info",
83
+ "mode": "daemon",
84
+ "type": "messaging",
85
+ "compact": true,
86
+ "connectionType": "local",
87
+ "dataSource": "poll",
88
+ "adminUI": {
89
+ "config": "json"
90
+ },
91
+ "dependencies": [
92
+ {
93
+ "js-controller": ">=4.0.0"
94
+ }
95
+ ],
96
+ "globalDependencies": [
97
+ {
98
+ "admin": ">=6.0.0"
99
+ }
100
+ ]
101
+ },
102
+ "native": {
103
+ "ip": "",
104
+ "port": 8080,
105
+ "token": "",
106
+ "notificationType": "telegram",
107
+ "emailInstance": "email.0",
108
+ "matrixInstance": "matrix.0",
109
+ "pushoverInstance": "pushover.0",
110
+ "discordInstance": "discord.0",
111
+ "signalInstance": "signal-cmb.0",
112
+ "telegramInstance": "telegram.0",
113
+ "telegramUser": "allTelegramUsers",
114
+ "whatsappInstance": "whatsapp-cmb.0",
115
+ "emailReceiver": "xxx@xxx.com",
116
+ "emailSender": "xxx@xxx.com",
117
+ "pushoverDeviceID": "",
118
+ "pushoverSilentNotice": false,
119
+ "discordTarget": "none"
120
+ },
121
+ "objects": [],
122
+ "instanceObjects": [
123
+ {
124
+ "_id": "info",
125
+ "type": "channel",
126
+ "common": {
127
+ "name": "Information"
128
+ },
129
+ "native": {}
130
+ },
131
+ {
132
+ "_id": "info.connection",
133
+ "type": "state",
134
+ "common": {
135
+ "role": "indicator.connected",
136
+ "name": "Device or service connected",
137
+ "type": "boolean",
138
+ "read": true,
139
+ "write": false,
140
+ "def": false
141
+ },
142
+ "native": {}
143
+ }
144
+ ]
145
+ }
@@ -0,0 +1,19 @@
1
+ // This file extends the AdapterConfig type from "@types/iobroker"
2
+ // using the actual properties present in io-package.json
3
+ // in order to provide typings for adapter.config properties
4
+
5
+ import { native } from "../io-package.json";
6
+
7
+ type _AdapterConfig = typeof native;
8
+
9
+ // Augment the globally declared type ioBroker.AdapterConfig
10
+ declare global {
11
+ namespace ioBroker {
12
+ interface AdapterConfig extends _AdapterConfig {
13
+ // Do not enter anything here!
14
+ }
15
+ }
16
+ }
17
+
18
+ // this is required so the above AdapterConfig is found by TypeScript / type checking
19
+ export {};