-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2edcbb2
commit 7974291
Showing
4 changed files
with
341 additions
and
2,744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
export declare type Platform = 'iOS' | 'Android'; | ||
export declare type TemperatureUnit = 'CELSIUS'; | ||
export declare type Feature = 'ELIGIBLE_FOR_ENERGY_CONSUMPTION' | 'ENERGY_CONSUMPTION' | 'HEATING_ROOM_DETAILS_AS_WEBVIEW' | 'HOME_SCREEN_AS_WEBVIEW_PROD_ANDROID'; | ||
export declare type FanLevel = 'LEVEL1' | 'LEVEL2' | 'LEVEL3' | 'AUTO'; | ||
export declare type FanSpeed = 'HIGH' | 'MIDDLE' | 'LOW' | 'AUTO'; | ||
export declare type ACMode = 'COOL' | 'HEAT' | 'DRY' | 'FAN' | 'AUTO'; | ||
export declare type Termination = 'AUTO' | 'NEXT_TIME_BLOCK' | 'MANUAL'; | ||
export declare type OutdoorQualityLevel = 'EXCELLENT' | 'NONE'; | ||
export declare type WeatherStateValue = 'CLOUDY' | 'CLOUDY_PARTLY' | 'CLOUDY_MOSTLY' | 'NIGHT_CLOUDY' | 'NIGHT_CLEAR' | 'SUN' | 'SCATTERED_RAIN'; | ||
export declare type DeviceType = 'VA02' | 'SU02'; | ||
export declare type DeviceCharacteristicsCapabilities = 'RADIO_ENCRYPTION_KEY_ACCESS' | 'INSIDE_TEMPERATURE_MEASUREMENT' | 'IDENTIFY'; | ||
export declare type DeviceBatteryState = 'NORMAL' | 'LOW'; | ||
export declare type DeviceOrientation = 'HORIZONTAL' | 'VERTICAL'; | ||
export declare type IQUnit = 'm3' | 'kWh'; | ||
export declare type RunningTimeAggregation = 'day' | 'month'; | ||
export declare type StatePresence = 'HOME' | 'AWAY' | 'AUTO'; | ||
export declare type ZoneType = 'HEATING' | 'HOT_WATER' | 'AIR_CONDITIONING'; | ||
export declare type ZoneDeviceDuty = 'ZONE_UI' | 'ZONE_LEADER' | 'ZONE_DRIVER'; | ||
export declare type ZoneOverlayTerminationType = 'MANUAL' | 'TIMER'; | ||
export declare type ZoneOverlayTerminationTypeSkillBasedApp = 'MANUAL' | 'NEXT_TIME_BLOCK' | 'TIMER'; | ||
export type Platform = 'iOS' | 'Android'; | ||
export type TemperatureUnit = 'CELSIUS'; | ||
export type Feature = 'ELIGIBLE_FOR_ENERGY_CONSUMPTION' | 'ENERGY_CONSUMPTION' | 'HEATING_ROOM_DETAILS_AS_WEBVIEW' | 'HOME_SCREEN_AS_WEBVIEW_PROD_ANDROID'; | ||
export type FanLevel = 'LEVEL1' | 'LEVEL2' | 'LEVEL3' | 'AUTO'; | ||
export type FanSpeed = 'HIGH' | 'MIDDLE' | 'LOW' | 'AUTO'; | ||
export type ACMode = 'COOL' | 'HEAT' | 'DRY' | 'FAN' | 'AUTO'; | ||
export type Termination = 'AUTO' | 'NEXT_TIME_BLOCK' | 'MANUAL'; | ||
export type OutdoorQualityLevel = 'EXCELLENT' | 'NONE'; | ||
export type WeatherStateValue = 'CLOUDY' | 'CLOUDY_PARTLY' | 'CLOUDY_MOSTLY' | 'NIGHT_CLOUDY' | 'NIGHT_CLEAR' | 'SUN' | 'SCATTERED_RAIN'; | ||
export type DeviceType = 'VA02' | 'SU02'; | ||
export type DeviceCharacteristicsCapabilities = 'RADIO_ENCRYPTION_KEY_ACCESS' | 'INSIDE_TEMPERATURE_MEASUREMENT' | 'IDENTIFY'; | ||
export type DeviceBatteryState = 'NORMAL' | 'LOW'; | ||
export type DeviceOrientation = 'HORIZONTAL' | 'VERTICAL'; | ||
export type IQUnit = 'm3' | 'kWh'; | ||
export type RunningTimeAggregation = 'day' | 'month'; | ||
export type StatePresence = 'HOME' | 'AWAY' | 'AUTO'; | ||
export type ZoneType = 'HEATING' | 'HOT_WATER' | 'AIR_CONDITIONING'; | ||
export type ZoneDeviceDuty = 'ZONE_UI' | 'ZONE_LEADER' | 'ZONE_DRIVER'; | ||
export type ZoneOverlayTerminationType = 'MANUAL' | 'TIMER'; | ||
export type ZoneOverlayTerminationTypeSkillBasedApp = 'MANUAL' | 'NEXT_TIME_BLOCK' | 'TIMER'; | ||
export declare enum DataPointType { | ||
PERCENTAGE = "PERCENTAGE", | ||
TEMPERATURE = "TEMPERATURE" | ||
} | ||
export declare type TimeTableDayType = 'MONDAY_TO_SUNDAY' | 'MONDAY_TO_FRIDAY' | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY'; | ||
export declare type AwayConfigurationPreheatingLevel = 'MEDIUM'; | ||
export declare type AirComfortFreshnessValue = 'FAIR'; | ||
export declare type TemperatureLevel = 'COLD' | 'COMFY' | 'HOT'; | ||
export declare type HumidityLevel = 'HUMID' | 'COMFY' | 'DRY'; | ||
export declare type EnergyIQConsumptionInputState = 'partial'; | ||
export declare type EnergySavingReportUnit = 'HOURS' | 'PERCENTAGE'; | ||
export declare type OutdoorPollensTypeValue = 'GRASS' | 'WEED' | 'TREE'; | ||
export declare type StripeTypeValue = 'HOME' | 'OPEN_WINDOW_DETECTED' | 'OVERLAY_ACTIVE'; | ||
export type TimeTableDayType = 'MONDAY_TO_SUNDAY' | 'MONDAY_TO_FRIDAY' | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY'; | ||
export type AwayConfigurationPreheatingLevel = 'MEDIUM'; | ||
export type AirComfortFreshnessValue = 'FAIR'; | ||
export type TemperatureLevel = 'COLD' | 'COMFY' | 'HOT'; | ||
export type HumidityLevel = 'HUMID' | 'COMFY' | 'DRY'; | ||
export type EnergyIQConsumptionInputState = 'partial'; | ||
export type EnergySavingReportUnit = 'HOURS' | 'PERCENTAGE'; | ||
export type OutdoorPollensTypeValue = 'GRASS' | 'WEED' | 'TREE'; | ||
export type StripeTypeValue = 'HOME' | 'OPEN_WINDOW_DETECTED' | 'OVERLAY_ACTIVE'; |
Oops, something went wrong.