meteocat 2.1.0 → 2.2.3
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.
- package/CHANGELOG.md +18 -0
- package/README.md +1 -1
- package/custom_components/meteocat/__init__.py +29 -1
- package/custom_components/meteocat/config_flow.py +140 -1
- package/custom_components/meteocat/const.py +14 -0
- package/custom_components/meteocat/coordinator.py +524 -9
- package/custom_components/meteocat/manifest.json +2 -2
- package/custom_components/meteocat/options_flow.py +30 -4
- package/custom_components/meteocat/sensor.py +420 -4
- package/custom_components/meteocat/strings.json +197 -4
- package/custom_components/meteocat/translations/ca.json +197 -4
- package/custom_components/meteocat/translations/en.json +197 -4
- package/custom_components/meteocat/translations/es.json +197 -4
- package/custom_components/meteocat/version.py +1 -1
- package/images/api_limits.png +0 -0
- package/images/diagnostic_sensors.png +0 -0
- package/images/dynamic_sensors.png +0 -0
- package/package.json +1 -1
- package/poetry.lock +598 -586
- package/pyproject.toml +3 -3
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"set_api_limits": {
|
|
23
|
-
"description": "Set the API limits
|
|
23
|
+
"description": "Set the API limits.",
|
|
24
24
|
"title": "API limits"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"options": {
|
|
37
37
|
"step":{
|
|
38
38
|
"init": {
|
|
39
|
-
"description": "Setup the API Key and the limits
|
|
39
|
+
"description": "Setup the API Key and the API limits.",
|
|
40
40
|
"title": "Setup options",
|
|
41
41
|
"data": {
|
|
42
42
|
"option": "Options"
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"update_api_and_limits": {
|
|
46
|
-
"description": "Setup the API Key and the limits
|
|
46
|
+
"description": "Setup the API Key and the API limits.",
|
|
47
47
|
"title": "API Key and limits"
|
|
48
48
|
},
|
|
49
49
|
"update_limits_only": {
|
|
50
|
-
"description": "Setup the limits
|
|
50
|
+
"description": "Setup the API limits.",
|
|
51
51
|
"title": "API limits"
|
|
52
52
|
}
|
|
53
53
|
},
|
|
@@ -151,6 +151,12 @@
|
|
|
151
151
|
"station_timestamp": {
|
|
152
152
|
"name": "Station Timestamp"
|
|
153
153
|
},
|
|
154
|
+
"region_name": {
|
|
155
|
+
"name": "Region Name"
|
|
156
|
+
},
|
|
157
|
+
"region_id": {
|
|
158
|
+
"name": "Region ID"
|
|
159
|
+
},
|
|
154
160
|
"condition": {
|
|
155
161
|
"name": "Condition",
|
|
156
162
|
"state": {
|
|
@@ -225,6 +231,193 @@
|
|
|
225
231
|
}
|
|
226
232
|
}
|
|
227
233
|
},
|
|
234
|
+
"quota_file_status": {
|
|
235
|
+
"name": "Quota File",
|
|
236
|
+
"state": {
|
|
237
|
+
"updated": "Updated",
|
|
238
|
+
"obsolete": "Obsolete"
|
|
239
|
+
},
|
|
240
|
+
"state_attributes": {
|
|
241
|
+
"update_date": {
|
|
242
|
+
"name": "Date"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"lightning_file_status": {
|
|
247
|
+
"name": "Lightning File",
|
|
248
|
+
"state": {
|
|
249
|
+
"updated": "Updated",
|
|
250
|
+
"obsolete": "Obsolete"
|
|
251
|
+
},
|
|
252
|
+
"state_attributes": {
|
|
253
|
+
"update_date": {
|
|
254
|
+
"name": "Date"
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"lightning_region": {
|
|
259
|
+
"name": "Lightning Region",
|
|
260
|
+
"state_attributes": {
|
|
261
|
+
"cloud_cloud": {
|
|
262
|
+
"name": "Cloud-Cloud"
|
|
263
|
+
},
|
|
264
|
+
"cloud_ground_neg":{
|
|
265
|
+
"name": "Cloud-Ground Negative"
|
|
266
|
+
},
|
|
267
|
+
"cloud_ground_pos": {
|
|
268
|
+
"name": "Cloud-Ground Positive"
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"lightning_town": {
|
|
273
|
+
"name": "Lightning Town",
|
|
274
|
+
"state_attributes": {
|
|
275
|
+
"cloud_cloud": {
|
|
276
|
+
"name": "Cloud-Cloud"
|
|
277
|
+
},
|
|
278
|
+
"cloud_ground_neg":{
|
|
279
|
+
"name": "Cloud-Ground Negative"
|
|
280
|
+
},
|
|
281
|
+
"cloud_ground_pos": {
|
|
282
|
+
"name": "Cloud-Ground Positive"
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"quota_xdde": {
|
|
287
|
+
"name": "Quota XDDE",
|
|
288
|
+
"state": {
|
|
289
|
+
"ok": "Ok",
|
|
290
|
+
"exceeded": "Exceeded",
|
|
291
|
+
"unknown": "Unknown"
|
|
292
|
+
},
|
|
293
|
+
"state_attributes": {
|
|
294
|
+
"period": {
|
|
295
|
+
"name": "Period",
|
|
296
|
+
"state": {
|
|
297
|
+
"weekly": "Weekly",
|
|
298
|
+
"monthly": "Monthly",
|
|
299
|
+
"annual": "Annual"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"max_queries": {
|
|
303
|
+
"name": "Max Queries"
|
|
304
|
+
},
|
|
305
|
+
"remain_queries": {
|
|
306
|
+
"name": "Remaining"
|
|
307
|
+
},
|
|
308
|
+
"made_queries": {
|
|
309
|
+
"name": "Made"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"quota_prediccio": {
|
|
314
|
+
"name": "Quota Prediction",
|
|
315
|
+
"state": {
|
|
316
|
+
"ok": "Ok",
|
|
317
|
+
"exceeded": "Exceeded",
|
|
318
|
+
"unknown": "Unknown"
|
|
319
|
+
},
|
|
320
|
+
"state_attributes": {
|
|
321
|
+
"period": {
|
|
322
|
+
"name": "Period",
|
|
323
|
+
"state": {
|
|
324
|
+
"weekly": "Weekly",
|
|
325
|
+
"monthly": "Monthly",
|
|
326
|
+
"annual": "Annual"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"max_queries": {
|
|
330
|
+
"name": "Max Queries"
|
|
331
|
+
},
|
|
332
|
+
"remain_queries": {
|
|
333
|
+
"name": "Remaining"
|
|
334
|
+
},
|
|
335
|
+
"made_queries": {
|
|
336
|
+
"name": "Made"
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"quota_basic": {
|
|
341
|
+
"name": "Quota Basic",
|
|
342
|
+
"state": {
|
|
343
|
+
"ok": "Ok",
|
|
344
|
+
"exceeded": "Exceeded",
|
|
345
|
+
"unknown": "Unknown"
|
|
346
|
+
},
|
|
347
|
+
"state_attributes": {
|
|
348
|
+
"period": {
|
|
349
|
+
"name": "Period",
|
|
350
|
+
"state": {
|
|
351
|
+
"weekly": "Weekly",
|
|
352
|
+
"monthly": "Monthly",
|
|
353
|
+
"annual": "Annual"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"max_queries": {
|
|
357
|
+
"name": "Max Queries"
|
|
358
|
+
},
|
|
359
|
+
"remain_queries": {
|
|
360
|
+
"name": "Remaining"
|
|
361
|
+
},
|
|
362
|
+
"made_queries": {
|
|
363
|
+
"name": "Made"
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"quota_xema": {
|
|
368
|
+
"name": "Quota XEMA",
|
|
369
|
+
"state": {
|
|
370
|
+
"ok": "Ok",
|
|
371
|
+
"exceeded": "Exceeded",
|
|
372
|
+
"unknown": "Unknown"
|
|
373
|
+
},
|
|
374
|
+
"state_attributes": {
|
|
375
|
+
"period": {
|
|
376
|
+
"name": "Period",
|
|
377
|
+
"state": {
|
|
378
|
+
"weekly": "Weekly",
|
|
379
|
+
"monthly": "Monthly",
|
|
380
|
+
"annual": "Annual"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"max_queries": {
|
|
384
|
+
"name": "Max Queries"
|
|
385
|
+
},
|
|
386
|
+
"remain_queries": {
|
|
387
|
+
"name": "Remaining"
|
|
388
|
+
},
|
|
389
|
+
"made_queries": {
|
|
390
|
+
"name": "Made"
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"quota_queries": {
|
|
395
|
+
"name": "Quota Queries",
|
|
396
|
+
"state": {
|
|
397
|
+
"ok": "Ok",
|
|
398
|
+
"exceeded": "Exceeded",
|
|
399
|
+
"unknown": "Unknown"
|
|
400
|
+
},
|
|
401
|
+
"state_attributes": {
|
|
402
|
+
"period": {
|
|
403
|
+
"name": "Period",
|
|
404
|
+
"state": {
|
|
405
|
+
"weekly": "Weekly",
|
|
406
|
+
"monthly": "Monthly",
|
|
407
|
+
"annual": "Annual"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"max_queries": {
|
|
411
|
+
"name": "Max Queries"
|
|
412
|
+
},
|
|
413
|
+
"remain_queries": {
|
|
414
|
+
"name": "Remaining"
|
|
415
|
+
},
|
|
416
|
+
"made_queries": {
|
|
417
|
+
"name": "Made"
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
228
421
|
"alerts": {
|
|
229
422
|
"name": "Alerts",
|
|
230
423
|
"state_attributes": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"set_api_limits": {
|
|
23
|
-
"description": "Defineix els límits del pla de l'API
|
|
23
|
+
"description": "Defineix els límits del pla de l'API.",
|
|
24
24
|
"title": "API límits"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"options": {
|
|
37
37
|
"step":{
|
|
38
38
|
"init": {
|
|
39
|
-
"description": "Configura l'API Key i els límits de l'API
|
|
39
|
+
"description": "Configura l'API Key i els límits de l'API.",
|
|
40
40
|
"title": "Opcions de configuració",
|
|
41
41
|
"data": {
|
|
42
42
|
"option": "Opcions"
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"update_api_and_limits": {
|
|
46
|
-
"description": "Configura l'API Key i els límits
|
|
46
|
+
"description": "Configura l'API Key i els límits de l'API.",
|
|
47
47
|
"title": "API Key i límits"
|
|
48
48
|
},
|
|
49
49
|
"update_limits_only": {
|
|
50
|
-
"description": "Configura els límits
|
|
50
|
+
"description": "Configura els límits de l'API.",
|
|
51
51
|
"title": "Límits de l'API"
|
|
52
52
|
}
|
|
53
53
|
},
|
|
@@ -151,6 +151,12 @@
|
|
|
151
151
|
"station_timestamp": {
|
|
152
152
|
"name": "Estació Timestamp"
|
|
153
153
|
},
|
|
154
|
+
"region_name": {
|
|
155
|
+
"name": "Comarca Nom"
|
|
156
|
+
},
|
|
157
|
+
"region_id": {
|
|
158
|
+
"name": "Comarca ID"
|
|
159
|
+
},
|
|
154
160
|
"condition": {
|
|
155
161
|
"name": "Estat del Cel",
|
|
156
162
|
"state": {
|
|
@@ -225,6 +231,193 @@
|
|
|
225
231
|
}
|
|
226
232
|
}
|
|
227
233
|
},
|
|
234
|
+
"quota_file_status": {
|
|
235
|
+
"name": "Arxiu Quota",
|
|
236
|
+
"state": {
|
|
237
|
+
"updated": "Actualitzat",
|
|
238
|
+
"obsolete": "Obsolet"
|
|
239
|
+
},
|
|
240
|
+
"state_attributes": {
|
|
241
|
+
"update_date": {
|
|
242
|
+
"name": "Data"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"lightning_file_status": {
|
|
247
|
+
"name": "Arxiu Llamps",
|
|
248
|
+
"state": {
|
|
249
|
+
"updated": "Actualitzat",
|
|
250
|
+
"obsolete": "Obsolet"
|
|
251
|
+
},
|
|
252
|
+
"state_attributes": {
|
|
253
|
+
"update_date": {
|
|
254
|
+
"name": "Data"
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"lightning_region": {
|
|
259
|
+
"name": "Llamps Comarca",
|
|
260
|
+
"state_attributes": {
|
|
261
|
+
"cloud_cloud": {
|
|
262
|
+
"name": "Núvol-Núvol"
|
|
263
|
+
},
|
|
264
|
+
"cloud_ground_neg":{
|
|
265
|
+
"name": "Núvol-Terra Negatiu"
|
|
266
|
+
},
|
|
267
|
+
"cloud_ground_pos": {
|
|
268
|
+
"name": "Núvol-Terra Positiu"
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"lightning_town": {
|
|
273
|
+
"name": "Llamps Municipi",
|
|
274
|
+
"state_attributes": {
|
|
275
|
+
"cloud_cloud": {
|
|
276
|
+
"name": "Núvol-Núvol"
|
|
277
|
+
},
|
|
278
|
+
"cloud_ground_neg":{
|
|
279
|
+
"name": "Núvol-Terra Negatiu"
|
|
280
|
+
},
|
|
281
|
+
"cloud_ground_pos": {
|
|
282
|
+
"name": "Núvol-Terra Positiu"
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"quota_xdde": {
|
|
287
|
+
"name": "Quota XDDE",
|
|
288
|
+
"state": {
|
|
289
|
+
"ok": "Ok",
|
|
290
|
+
"exceeded": "Superada",
|
|
291
|
+
"unknown": "Desconegut"
|
|
292
|
+
},
|
|
293
|
+
"state_attributes": {
|
|
294
|
+
"period": {
|
|
295
|
+
"name": "Periode",
|
|
296
|
+
"state": {
|
|
297
|
+
"weekly": "Setmanal",
|
|
298
|
+
"monthly": "Mensual",
|
|
299
|
+
"annual": "Anual"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"max_queries": {
|
|
303
|
+
"name": "Màxim"
|
|
304
|
+
},
|
|
305
|
+
"remain_queries": {
|
|
306
|
+
"name": "Restants"
|
|
307
|
+
},
|
|
308
|
+
"made_queries": {
|
|
309
|
+
"name": "Realitzades"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"quota_prediccio": {
|
|
314
|
+
"name": "Quota Predicció",
|
|
315
|
+
"state": {
|
|
316
|
+
"ok": "Ok",
|
|
317
|
+
"exceeded": "Superada",
|
|
318
|
+
"unknown": "Desconegut"
|
|
319
|
+
},
|
|
320
|
+
"state_attributes": {
|
|
321
|
+
"period": {
|
|
322
|
+
"name": "Periode",
|
|
323
|
+
"state": {
|
|
324
|
+
"weekly": "Setmanal",
|
|
325
|
+
"monthly": "Mensual",
|
|
326
|
+
"annual": "Anual"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"max_queries": {
|
|
330
|
+
"name": "Màxim"
|
|
331
|
+
},
|
|
332
|
+
"remain_queries": {
|
|
333
|
+
"name": "Restants"
|
|
334
|
+
},
|
|
335
|
+
"made_queries": {
|
|
336
|
+
"name": "Realitzades"
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"quota_basic": {
|
|
341
|
+
"name": "Quota Bàsica",
|
|
342
|
+
"state": {
|
|
343
|
+
"ok": "Ok",
|
|
344
|
+
"exceeded": "Superada",
|
|
345
|
+
"unknown": "Desconegut"
|
|
346
|
+
},
|
|
347
|
+
"state_attributes": {
|
|
348
|
+
"period": {
|
|
349
|
+
"name": "Periode",
|
|
350
|
+
"state": {
|
|
351
|
+
"weekly": "Setmanal",
|
|
352
|
+
"monthly": "Mensual",
|
|
353
|
+
"annual": "Anual"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"max_queries": {
|
|
357
|
+
"name": "Màxim"
|
|
358
|
+
},
|
|
359
|
+
"remain_queries": {
|
|
360
|
+
"name": "Restants"
|
|
361
|
+
},
|
|
362
|
+
"made_queries": {
|
|
363
|
+
"name": "Realitzades"
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"quota_xema": {
|
|
368
|
+
"name": "Quota XEMA",
|
|
369
|
+
"state": {
|
|
370
|
+
"ok": "Ok",
|
|
371
|
+
"exceeded": "Superada",
|
|
372
|
+
"unknown": "Desconegut"
|
|
373
|
+
},
|
|
374
|
+
"state_attributes": {
|
|
375
|
+
"period": {
|
|
376
|
+
"name": "Periode",
|
|
377
|
+
"state": {
|
|
378
|
+
"weekly": "Setmanal",
|
|
379
|
+
"monthly": "Mensual",
|
|
380
|
+
"annual": "Anual"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"max_queries": {
|
|
384
|
+
"name": "Màxim"
|
|
385
|
+
},
|
|
386
|
+
"remain_queries": {
|
|
387
|
+
"name": "Restants"
|
|
388
|
+
},
|
|
389
|
+
"made_queries": {
|
|
390
|
+
"name": "Realitzades"
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"quota_queries": {
|
|
395
|
+
"name": "Quota Consultes",
|
|
396
|
+
"state": {
|
|
397
|
+
"ok": "Ok",
|
|
398
|
+
"exceeded": "Superada",
|
|
399
|
+
"unknown": "Desconegut"
|
|
400
|
+
},
|
|
401
|
+
"state_attributes": {
|
|
402
|
+
"period": {
|
|
403
|
+
"name": "Periode",
|
|
404
|
+
"state": {
|
|
405
|
+
"weekly": "Setmanal",
|
|
406
|
+
"monthly": "Mensual",
|
|
407
|
+
"annual": "Anual"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"max_queries": {
|
|
411
|
+
"name": "Màxim"
|
|
412
|
+
},
|
|
413
|
+
"remain_queries": {
|
|
414
|
+
"name": "Restants"
|
|
415
|
+
},
|
|
416
|
+
"made_queries": {
|
|
417
|
+
"name": "Realitzades"
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
228
421
|
"alerts": {
|
|
229
422
|
"name": "Alertes",
|
|
230
423
|
"state_attributes": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"set_api_limits": {
|
|
23
|
-
"description": "Set the API limits
|
|
23
|
+
"description": "Set the API limits.",
|
|
24
24
|
"title": "API limits"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"options": {
|
|
37
37
|
"step":{
|
|
38
38
|
"init": {
|
|
39
|
-
"description": "Setup the API Key and the limits
|
|
39
|
+
"description": "Setup the API Key and the API limits.",
|
|
40
40
|
"title": "Setup options",
|
|
41
41
|
"data": {
|
|
42
42
|
"option": "Options"
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"update_api_and_limits": {
|
|
46
|
-
"description": "Setup the API Key and the limits
|
|
46
|
+
"description": "Setup the API Key and the API limits.",
|
|
47
47
|
"title": "API Key and limits"
|
|
48
48
|
},
|
|
49
49
|
"update_limits_only": {
|
|
50
|
-
"description": "Setup the limits
|
|
50
|
+
"description": "Setup the API limits.",
|
|
51
51
|
"title": "API limits"
|
|
52
52
|
}
|
|
53
53
|
},
|
|
@@ -151,6 +151,12 @@
|
|
|
151
151
|
"station_timestamp": {
|
|
152
152
|
"name": "Station Timestamp"
|
|
153
153
|
},
|
|
154
|
+
"region_name": {
|
|
155
|
+
"name": "Region Name"
|
|
156
|
+
},
|
|
157
|
+
"region_id": {
|
|
158
|
+
"name": "Region ID"
|
|
159
|
+
},
|
|
154
160
|
"condition": {
|
|
155
161
|
"name": "Condition",
|
|
156
162
|
"state": {
|
|
@@ -225,6 +231,193 @@
|
|
|
225
231
|
}
|
|
226
232
|
}
|
|
227
233
|
},
|
|
234
|
+
"quota_file_status": {
|
|
235
|
+
"name": "Quota File",
|
|
236
|
+
"state": {
|
|
237
|
+
"updated": "Updated",
|
|
238
|
+
"obsolete": "Obsolete"
|
|
239
|
+
},
|
|
240
|
+
"state_attributes": {
|
|
241
|
+
"update_date": {
|
|
242
|
+
"name": "Date"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"lightning_file_status": {
|
|
247
|
+
"name": "Lightning File",
|
|
248
|
+
"state": {
|
|
249
|
+
"updated": "Updated",
|
|
250
|
+
"obsolete": "Obsolete"
|
|
251
|
+
},
|
|
252
|
+
"state_attributes": {
|
|
253
|
+
"update_date": {
|
|
254
|
+
"name": "Date"
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"lightning_region": {
|
|
259
|
+
"name": "Lightning Region",
|
|
260
|
+
"state_attributes": {
|
|
261
|
+
"cloud_cloud": {
|
|
262
|
+
"name": "Cloud-Cloud"
|
|
263
|
+
},
|
|
264
|
+
"cloud_ground_neg":{
|
|
265
|
+
"name": "Cloud-Ground Negative"
|
|
266
|
+
},
|
|
267
|
+
"cloud_ground_pos": {
|
|
268
|
+
"name": "Cloud-Ground Positive"
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"lightning_town": {
|
|
273
|
+
"name": "Lightning Town",
|
|
274
|
+
"state_attributes": {
|
|
275
|
+
"cloud_cloud": {
|
|
276
|
+
"name": "Cloud-Cloud"
|
|
277
|
+
},
|
|
278
|
+
"cloud_ground_neg":{
|
|
279
|
+
"name": "Cloud-Ground Negative"
|
|
280
|
+
},
|
|
281
|
+
"cloud_ground_pos": {
|
|
282
|
+
"name": "Cloud-Ground Positive"
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"quota_xdde": {
|
|
287
|
+
"name": "Quota XDDE",
|
|
288
|
+
"state": {
|
|
289
|
+
"ok": "Ok",
|
|
290
|
+
"exceeded": "Exceeded",
|
|
291
|
+
"unknown": "Unknown"
|
|
292
|
+
},
|
|
293
|
+
"state_attributes": {
|
|
294
|
+
"period": {
|
|
295
|
+
"name": "Period",
|
|
296
|
+
"state": {
|
|
297
|
+
"weekly": "Weekly",
|
|
298
|
+
"monthly": "Monthly",
|
|
299
|
+
"annual": "Annual"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"max_queries": {
|
|
303
|
+
"name": "Max Queries"
|
|
304
|
+
},
|
|
305
|
+
"remain_queries": {
|
|
306
|
+
"name": "Remaining"
|
|
307
|
+
},
|
|
308
|
+
"made_queries": {
|
|
309
|
+
"name": "Made"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"quota_prediccio": {
|
|
314
|
+
"name": "Quota Prediction",
|
|
315
|
+
"state": {
|
|
316
|
+
"ok": "Ok",
|
|
317
|
+
"exceeded": "Exceeded",
|
|
318
|
+
"unknown": "Unknown"
|
|
319
|
+
},
|
|
320
|
+
"state_attributes": {
|
|
321
|
+
"period": {
|
|
322
|
+
"name": "Period",
|
|
323
|
+
"state": {
|
|
324
|
+
"weekly": "Weekly",
|
|
325
|
+
"monthly": "Monthly",
|
|
326
|
+
"annual": "Annual"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"max_queries": {
|
|
330
|
+
"name": "Max Queries"
|
|
331
|
+
},
|
|
332
|
+
"remain_queries": {
|
|
333
|
+
"name": "Remaining"
|
|
334
|
+
},
|
|
335
|
+
"made_queries": {
|
|
336
|
+
"name": "Made"
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"quota_basic": {
|
|
341
|
+
"name": "Quota Basic",
|
|
342
|
+
"state": {
|
|
343
|
+
"ok": "Ok",
|
|
344
|
+
"exceeded": "Exceeded",
|
|
345
|
+
"unknown": "Unknown"
|
|
346
|
+
},
|
|
347
|
+
"state_attributes": {
|
|
348
|
+
"period": {
|
|
349
|
+
"name": "Period",
|
|
350
|
+
"state": {
|
|
351
|
+
"weekly": "Weekly",
|
|
352
|
+
"monthly": "Monthly",
|
|
353
|
+
"annual": "Annual"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"max_queries": {
|
|
357
|
+
"name": "Max Queries"
|
|
358
|
+
},
|
|
359
|
+
"remain_queries": {
|
|
360
|
+
"name": "Remaining"
|
|
361
|
+
},
|
|
362
|
+
"made_queries": {
|
|
363
|
+
"name": "Made"
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"quota_xema": {
|
|
368
|
+
"name": "Quota XEMA",
|
|
369
|
+
"state": {
|
|
370
|
+
"ok": "Ok",
|
|
371
|
+
"exceeded": "Exceeded",
|
|
372
|
+
"unknown": "Unknown"
|
|
373
|
+
},
|
|
374
|
+
"state_attributes": {
|
|
375
|
+
"period": {
|
|
376
|
+
"name": "Period",
|
|
377
|
+
"state": {
|
|
378
|
+
"weekly": "Weekly",
|
|
379
|
+
"monthly": "Monthly",
|
|
380
|
+
"annual": "Annual"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"max_queries": {
|
|
384
|
+
"name": "Max Queries"
|
|
385
|
+
},
|
|
386
|
+
"remain_queries": {
|
|
387
|
+
"name": "Remaining"
|
|
388
|
+
},
|
|
389
|
+
"made_queries": {
|
|
390
|
+
"name": "Made"
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"quota_queries": {
|
|
395
|
+
"name": "Quota Queries",
|
|
396
|
+
"state": {
|
|
397
|
+
"ok": "Ok",
|
|
398
|
+
"exceeded": "Exceeded",
|
|
399
|
+
"unknown": "Unknown"
|
|
400
|
+
},
|
|
401
|
+
"state_attributes": {
|
|
402
|
+
"period": {
|
|
403
|
+
"name": "Period",
|
|
404
|
+
"state": {
|
|
405
|
+
"weekly": "Weekly",
|
|
406
|
+
"monthly": "Monthly",
|
|
407
|
+
"annual": "Annual"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"max_queries": {
|
|
411
|
+
"name": "Max Queries"
|
|
412
|
+
},
|
|
413
|
+
"remain_queries": {
|
|
414
|
+
"name": "Remaining"
|
|
415
|
+
},
|
|
416
|
+
"made_queries": {
|
|
417
|
+
"name": "Made"
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
228
421
|
"alerts": {
|
|
229
422
|
"name": "Alerts",
|
|
230
423
|
"state_attributes": {
|