mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-30 05:13:40 +00:00
fix
This commit is contained in:
parent
1f8158ecea
commit
da4ef5675a
1 changed files with 8 additions and 2 deletions
|
|
@ -337,7 +337,10 @@ class TibberPricesApiClient:
|
|||
"query": """
|
||||
{viewer{homes{id,currentSubscription{priceRating{
|
||||
thresholdPercentages{low high}
|
||||
daily{entries{time total energy tax difference level}}
|
||||
daily{
|
||||
currency
|
||||
entries{time total energy tax difference level}
|
||||
}
|
||||
}}}}}"""
|
||||
},
|
||||
query_type=QueryType.DAILY_RATING,
|
||||
|
|
@ -350,7 +353,10 @@ class TibberPricesApiClient:
|
|||
"query": """
|
||||
{viewer{homes{id,currentSubscription{priceRating{
|
||||
thresholdPercentages{low high}
|
||||
hourly{entries{time total energy tax difference level}}
|
||||
hourly{
|
||||
currency
|
||||
entries{time total energy tax difference level}
|
||||
}
|
||||
}}}}}"""
|
||||
},
|
||||
query_type=QueryType.HOURLY_RATING,
|
||||
|
|
|
|||
Loading…
Reference in a new issue