@seamapi/types 1.857.0 → 1.858.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.
- package/dist/connect.cjs +442 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -60
- package/dist/index.cjs +442 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +0 -14
- package/lib/seam/connect/models/devices/device-metadata.d.ts +0 -5
- package/lib/seam/connect/models/devices/device-metadata.js +0 -4
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +0 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -5
- package/lib/seam/connect/openapi.js +442 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -34
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +0 -6
- package/src/lib/seam/connect/openapi.ts +443 -5
- package/src/lib/seam/connect/route-types.ts +436 -34
|
@@ -14504,8 +14504,6 @@ export type Routes = {
|
|
|
14504
14504
|
has_gateway: boolean
|
|
14505
14505
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
14506
14506
|
timezone_raw_offset_ms: number
|
|
14507
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
14508
|
-
time_zone?: string | undefined
|
|
14509
14507
|
}
|
|
14510
14508
|
| undefined
|
|
14511
14509
|
/** Metadata for a tado° device. */
|
|
@@ -20058,8 +20056,6 @@ export type Routes = {
|
|
|
20058
20056
|
has_gateway: boolean
|
|
20059
20057
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
20060
20058
|
timezone_raw_offset_ms: number
|
|
20061
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
20062
|
-
time_zone?: string | undefined
|
|
20063
20059
|
}
|
|
20064
20060
|
| undefined
|
|
20065
20061
|
/** Metadata for a tado° device. */
|
|
@@ -42759,8 +42755,6 @@ export type Routes = {
|
|
|
42759
42755
|
has_gateway: boolean
|
|
42760
42756
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
42761
42757
|
timezone_raw_offset_ms: number
|
|
42762
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
42763
|
-
time_zone?: string | undefined
|
|
42764
42758
|
}
|
|
42765
42759
|
| undefined
|
|
42766
42760
|
/** Metadata for a tado° device. */
|
|
@@ -44675,8 +44669,6 @@ export type Routes = {
|
|
|
44675
44669
|
has_gateway: boolean
|
|
44676
44670
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
44677
44671
|
timezone_raw_offset_ms: number
|
|
44678
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
44679
|
-
time_zone?: string | undefined
|
|
44680
44672
|
}
|
|
44681
44673
|
| undefined
|
|
44682
44674
|
/** Metadata for a tado° device. */
|
|
@@ -46685,6 +46677,442 @@ export type Routes = {
|
|
|
46685
46677
|
| 'Pacific/Wallis'
|
|
46686
46678
|
}
|
|
46687
46679
|
| undefined
|
|
46680
|
+
/** Omnitec-specific metadata to update */
|
|
46681
|
+
omnitec_metadata?:
|
|
46682
|
+
| {
|
|
46683
|
+
/** IANA timezone for the Omnitec device */
|
|
46684
|
+
time_zone:
|
|
46685
|
+
| 'Africa/Abidjan'
|
|
46686
|
+
| 'Africa/Accra'
|
|
46687
|
+
| 'Africa/Addis_Ababa'
|
|
46688
|
+
| 'Africa/Algiers'
|
|
46689
|
+
| 'Africa/Asmera'
|
|
46690
|
+
| 'Africa/Bamako'
|
|
46691
|
+
| 'Africa/Bangui'
|
|
46692
|
+
| 'Africa/Banjul'
|
|
46693
|
+
| 'Africa/Bissau'
|
|
46694
|
+
| 'Africa/Blantyre'
|
|
46695
|
+
| 'Africa/Brazzaville'
|
|
46696
|
+
| 'Africa/Bujumbura'
|
|
46697
|
+
| 'Africa/Cairo'
|
|
46698
|
+
| 'Africa/Casablanca'
|
|
46699
|
+
| 'Africa/Ceuta'
|
|
46700
|
+
| 'Africa/Conakry'
|
|
46701
|
+
| 'Africa/Dakar'
|
|
46702
|
+
| 'Africa/Dar_es_Salaam'
|
|
46703
|
+
| 'Africa/Djibouti'
|
|
46704
|
+
| 'Africa/Douala'
|
|
46705
|
+
| 'Africa/El_Aaiun'
|
|
46706
|
+
| 'Africa/Freetown'
|
|
46707
|
+
| 'Africa/Gaborone'
|
|
46708
|
+
| 'Africa/Harare'
|
|
46709
|
+
| 'Africa/Johannesburg'
|
|
46710
|
+
| 'Africa/Juba'
|
|
46711
|
+
| 'Africa/Kampala'
|
|
46712
|
+
| 'Africa/Khartoum'
|
|
46713
|
+
| 'Africa/Kigali'
|
|
46714
|
+
| 'Africa/Kinshasa'
|
|
46715
|
+
| 'Africa/Lagos'
|
|
46716
|
+
| 'Africa/Libreville'
|
|
46717
|
+
| 'Africa/Lome'
|
|
46718
|
+
| 'Africa/Luanda'
|
|
46719
|
+
| 'Africa/Lubumbashi'
|
|
46720
|
+
| 'Africa/Lusaka'
|
|
46721
|
+
| 'Africa/Malabo'
|
|
46722
|
+
| 'Africa/Maputo'
|
|
46723
|
+
| 'Africa/Maseru'
|
|
46724
|
+
| 'Africa/Mbabane'
|
|
46725
|
+
| 'Africa/Mogadishu'
|
|
46726
|
+
| 'Africa/Monrovia'
|
|
46727
|
+
| 'Africa/Nairobi'
|
|
46728
|
+
| 'Africa/Ndjamena'
|
|
46729
|
+
| 'Africa/Niamey'
|
|
46730
|
+
| 'Africa/Nouakchott'
|
|
46731
|
+
| 'Africa/Ouagadougou'
|
|
46732
|
+
| 'Africa/Porto-Novo'
|
|
46733
|
+
| 'Africa/Sao_Tome'
|
|
46734
|
+
| 'Africa/Tripoli'
|
|
46735
|
+
| 'Africa/Tunis'
|
|
46736
|
+
| 'Africa/Windhoek'
|
|
46737
|
+
| 'America/Adak'
|
|
46738
|
+
| 'America/Anchorage'
|
|
46739
|
+
| 'America/Anguilla'
|
|
46740
|
+
| 'America/Antigua'
|
|
46741
|
+
| 'America/Araguaina'
|
|
46742
|
+
| 'America/Argentina/La_Rioja'
|
|
46743
|
+
| 'America/Argentina/Rio_Gallegos'
|
|
46744
|
+
| 'America/Argentina/Salta'
|
|
46745
|
+
| 'America/Argentina/San_Juan'
|
|
46746
|
+
| 'America/Argentina/San_Luis'
|
|
46747
|
+
| 'America/Argentina/Tucuman'
|
|
46748
|
+
| 'America/Argentina/Ushuaia'
|
|
46749
|
+
| 'America/Aruba'
|
|
46750
|
+
| 'America/Asuncion'
|
|
46751
|
+
| 'America/Bahia'
|
|
46752
|
+
| 'America/Bahia_Banderas'
|
|
46753
|
+
| 'America/Barbados'
|
|
46754
|
+
| 'America/Belem'
|
|
46755
|
+
| 'America/Belize'
|
|
46756
|
+
| 'America/Blanc-Sablon'
|
|
46757
|
+
| 'America/Boa_Vista'
|
|
46758
|
+
| 'America/Bogota'
|
|
46759
|
+
| 'America/Boise'
|
|
46760
|
+
| 'America/Buenos_Aires'
|
|
46761
|
+
| 'America/Cambridge_Bay'
|
|
46762
|
+
| 'America/Campo_Grande'
|
|
46763
|
+
| 'America/Cancun'
|
|
46764
|
+
| 'America/Caracas'
|
|
46765
|
+
| 'America/Catamarca'
|
|
46766
|
+
| 'America/Cayenne'
|
|
46767
|
+
| 'America/Cayman'
|
|
46768
|
+
| 'America/Chicago'
|
|
46769
|
+
| 'America/Chihuahua'
|
|
46770
|
+
| 'America/Ciudad_Juarez'
|
|
46771
|
+
| 'America/Coral_Harbour'
|
|
46772
|
+
| 'America/Cordoba'
|
|
46773
|
+
| 'America/Costa_Rica'
|
|
46774
|
+
| 'America/Creston'
|
|
46775
|
+
| 'America/Cuiaba'
|
|
46776
|
+
| 'America/Curacao'
|
|
46777
|
+
| 'America/Danmarkshavn'
|
|
46778
|
+
| 'America/Dawson'
|
|
46779
|
+
| 'America/Dawson_Creek'
|
|
46780
|
+
| 'America/Denver'
|
|
46781
|
+
| 'America/Detroit'
|
|
46782
|
+
| 'America/Dominica'
|
|
46783
|
+
| 'America/Edmonton'
|
|
46784
|
+
| 'America/Eirunepe'
|
|
46785
|
+
| 'America/El_Salvador'
|
|
46786
|
+
| 'America/Fort_Nelson'
|
|
46787
|
+
| 'America/Fortaleza'
|
|
46788
|
+
| 'America/Glace_Bay'
|
|
46789
|
+
| 'America/Godthab'
|
|
46790
|
+
| 'America/Goose_Bay'
|
|
46791
|
+
| 'America/Grand_Turk'
|
|
46792
|
+
| 'America/Grenada'
|
|
46793
|
+
| 'America/Guadeloupe'
|
|
46794
|
+
| 'America/Guatemala'
|
|
46795
|
+
| 'America/Guayaquil'
|
|
46796
|
+
| 'America/Guyana'
|
|
46797
|
+
| 'America/Halifax'
|
|
46798
|
+
| 'America/Havana'
|
|
46799
|
+
| 'America/Hermosillo'
|
|
46800
|
+
| 'America/Indiana/Knox'
|
|
46801
|
+
| 'America/Indiana/Marengo'
|
|
46802
|
+
| 'America/Indiana/Petersburg'
|
|
46803
|
+
| 'America/Indiana/Tell_City'
|
|
46804
|
+
| 'America/Indiana/Vevay'
|
|
46805
|
+
| 'America/Indiana/Vincennes'
|
|
46806
|
+
| 'America/Indiana/Winamac'
|
|
46807
|
+
| 'America/Indianapolis'
|
|
46808
|
+
| 'America/Inuvik'
|
|
46809
|
+
| 'America/Iqaluit'
|
|
46810
|
+
| 'America/Jamaica'
|
|
46811
|
+
| 'America/Jujuy'
|
|
46812
|
+
| 'America/Juneau'
|
|
46813
|
+
| 'America/Kentucky/Monticello'
|
|
46814
|
+
| 'America/Kralendijk'
|
|
46815
|
+
| 'America/La_Paz'
|
|
46816
|
+
| 'America/Lima'
|
|
46817
|
+
| 'America/Los_Angeles'
|
|
46818
|
+
| 'America/Louisville'
|
|
46819
|
+
| 'America/Lower_Princes'
|
|
46820
|
+
| 'America/Maceio'
|
|
46821
|
+
| 'America/Managua'
|
|
46822
|
+
| 'America/Manaus'
|
|
46823
|
+
| 'America/Marigot'
|
|
46824
|
+
| 'America/Martinique'
|
|
46825
|
+
| 'America/Matamoros'
|
|
46826
|
+
| 'America/Mazatlan'
|
|
46827
|
+
| 'America/Mendoza'
|
|
46828
|
+
| 'America/Menominee'
|
|
46829
|
+
| 'America/Merida'
|
|
46830
|
+
| 'America/Metlakatla'
|
|
46831
|
+
| 'America/Mexico_City'
|
|
46832
|
+
| 'America/Miquelon'
|
|
46833
|
+
| 'America/Moncton'
|
|
46834
|
+
| 'America/Monterrey'
|
|
46835
|
+
| 'America/Montevideo'
|
|
46836
|
+
| 'America/Montreal'
|
|
46837
|
+
| 'America/Montserrat'
|
|
46838
|
+
| 'America/Nassau'
|
|
46839
|
+
| 'America/New_York'
|
|
46840
|
+
| 'America/Nipigon'
|
|
46841
|
+
| 'America/Nome'
|
|
46842
|
+
| 'America/Noronha'
|
|
46843
|
+
| 'America/North_Dakota/Beulah'
|
|
46844
|
+
| 'America/North_Dakota/Center'
|
|
46845
|
+
| 'America/North_Dakota/New_Salem'
|
|
46846
|
+
| 'America/Ojinaga'
|
|
46847
|
+
| 'America/Panama'
|
|
46848
|
+
| 'America/Pangnirtung'
|
|
46849
|
+
| 'America/Paramaribo'
|
|
46850
|
+
| 'America/Phoenix'
|
|
46851
|
+
| 'America/Port-au-Prince'
|
|
46852
|
+
| 'America/Port_of_Spain'
|
|
46853
|
+
| 'America/Porto_Velho'
|
|
46854
|
+
| 'America/Puerto_Rico'
|
|
46855
|
+
| 'America/Punta_Arenas'
|
|
46856
|
+
| 'America/Rainy_River'
|
|
46857
|
+
| 'America/Rankin_Inlet'
|
|
46858
|
+
| 'America/Recife'
|
|
46859
|
+
| 'America/Regina'
|
|
46860
|
+
| 'America/Resolute'
|
|
46861
|
+
| 'America/Rio_Branco'
|
|
46862
|
+
| 'America/Santa_Isabel'
|
|
46863
|
+
| 'America/Santarem'
|
|
46864
|
+
| 'America/Santiago'
|
|
46865
|
+
| 'America/Santo_Domingo'
|
|
46866
|
+
| 'America/Sao_Paulo'
|
|
46867
|
+
| 'America/Scoresbysund'
|
|
46868
|
+
| 'America/Sitka'
|
|
46869
|
+
| 'America/St_Barthelemy'
|
|
46870
|
+
| 'America/St_Johns'
|
|
46871
|
+
| 'America/St_Kitts'
|
|
46872
|
+
| 'America/St_Lucia'
|
|
46873
|
+
| 'America/St_Thomas'
|
|
46874
|
+
| 'America/St_Vincent'
|
|
46875
|
+
| 'America/Swift_Current'
|
|
46876
|
+
| 'America/Tegucigalpa'
|
|
46877
|
+
| 'America/Thule'
|
|
46878
|
+
| 'America/Thunder_Bay'
|
|
46879
|
+
| 'America/Tijuana'
|
|
46880
|
+
| 'America/Toronto'
|
|
46881
|
+
| 'America/Tortola'
|
|
46882
|
+
| 'America/Vancouver'
|
|
46883
|
+
| 'America/Whitehorse'
|
|
46884
|
+
| 'America/Winnipeg'
|
|
46885
|
+
| 'America/Yakutat'
|
|
46886
|
+
| 'America/Yellowknife'
|
|
46887
|
+
| 'Antarctica/Casey'
|
|
46888
|
+
| 'Antarctica/Davis'
|
|
46889
|
+
| 'Antarctica/DumontDUrville'
|
|
46890
|
+
| 'Antarctica/Macquarie'
|
|
46891
|
+
| 'Antarctica/Mawson'
|
|
46892
|
+
| 'Antarctica/McMurdo'
|
|
46893
|
+
| 'Antarctica/Palmer'
|
|
46894
|
+
| 'Antarctica/Rothera'
|
|
46895
|
+
| 'Antarctica/Syowa'
|
|
46896
|
+
| 'Antarctica/Troll'
|
|
46897
|
+
| 'Antarctica/Vostok'
|
|
46898
|
+
| 'Arctic/Longyearbyen'
|
|
46899
|
+
| 'Asia/Aden'
|
|
46900
|
+
| 'Asia/Almaty'
|
|
46901
|
+
| 'Asia/Amman'
|
|
46902
|
+
| 'Asia/Anadyr'
|
|
46903
|
+
| 'Asia/Aqtau'
|
|
46904
|
+
| 'Asia/Aqtobe'
|
|
46905
|
+
| 'Asia/Ashgabat'
|
|
46906
|
+
| 'Asia/Atyrau'
|
|
46907
|
+
| 'Asia/Baghdad'
|
|
46908
|
+
| 'Asia/Bahrain'
|
|
46909
|
+
| 'Asia/Baku'
|
|
46910
|
+
| 'Asia/Bangkok'
|
|
46911
|
+
| 'Asia/Barnaul'
|
|
46912
|
+
| 'Asia/Beirut'
|
|
46913
|
+
| 'Asia/Bishkek'
|
|
46914
|
+
| 'Asia/Brunei'
|
|
46915
|
+
| 'Asia/Calcutta'
|
|
46916
|
+
| 'Asia/Chita'
|
|
46917
|
+
| 'Asia/Choibalsan'
|
|
46918
|
+
| 'Asia/Colombo'
|
|
46919
|
+
| 'Asia/Damascus'
|
|
46920
|
+
| 'Asia/Dhaka'
|
|
46921
|
+
| 'Asia/Dili'
|
|
46922
|
+
| 'Asia/Dubai'
|
|
46923
|
+
| 'Asia/Dushanbe'
|
|
46924
|
+
| 'Asia/Famagusta'
|
|
46925
|
+
| 'Asia/Gaza'
|
|
46926
|
+
| 'Asia/Hebron'
|
|
46927
|
+
| 'Asia/Hong_Kong'
|
|
46928
|
+
| 'Asia/Hovd'
|
|
46929
|
+
| 'Asia/Irkutsk'
|
|
46930
|
+
| 'Asia/Jakarta'
|
|
46931
|
+
| 'Asia/Jayapura'
|
|
46932
|
+
| 'Asia/Jerusalem'
|
|
46933
|
+
| 'Asia/Kabul'
|
|
46934
|
+
| 'Asia/Kamchatka'
|
|
46935
|
+
| 'Asia/Karachi'
|
|
46936
|
+
| 'Asia/Katmandu'
|
|
46937
|
+
| 'Asia/Khandyga'
|
|
46938
|
+
| 'Asia/Krasnoyarsk'
|
|
46939
|
+
| 'Asia/Kuala_Lumpur'
|
|
46940
|
+
| 'Asia/Kuching'
|
|
46941
|
+
| 'Asia/Kuwait'
|
|
46942
|
+
| 'Asia/Macau'
|
|
46943
|
+
| 'Asia/Magadan'
|
|
46944
|
+
| 'Asia/Makassar'
|
|
46945
|
+
| 'Asia/Manila'
|
|
46946
|
+
| 'Asia/Muscat'
|
|
46947
|
+
| 'Asia/Nicosia'
|
|
46948
|
+
| 'Asia/Novokuznetsk'
|
|
46949
|
+
| 'Asia/Novosibirsk'
|
|
46950
|
+
| 'Asia/Omsk'
|
|
46951
|
+
| 'Asia/Oral'
|
|
46952
|
+
| 'Asia/Phnom_Penh'
|
|
46953
|
+
| 'Asia/Pontianak'
|
|
46954
|
+
| 'Asia/Pyongyang'
|
|
46955
|
+
| 'Asia/Qatar'
|
|
46956
|
+
| 'Asia/Qostanay'
|
|
46957
|
+
| 'Asia/Qyzylorda'
|
|
46958
|
+
| 'Asia/Rangoon'
|
|
46959
|
+
| 'Asia/Riyadh'
|
|
46960
|
+
| 'Asia/Saigon'
|
|
46961
|
+
| 'Asia/Sakhalin'
|
|
46962
|
+
| 'Asia/Samarkand'
|
|
46963
|
+
| 'Asia/Seoul'
|
|
46964
|
+
| 'Asia/Shanghai'
|
|
46965
|
+
| 'Asia/Singapore'
|
|
46966
|
+
| 'Asia/Srednekolymsk'
|
|
46967
|
+
| 'Asia/Taipei'
|
|
46968
|
+
| 'Asia/Tashkent'
|
|
46969
|
+
| 'Asia/Tbilisi'
|
|
46970
|
+
| 'Asia/Tehran'
|
|
46971
|
+
| 'Asia/Thimphu'
|
|
46972
|
+
| 'Asia/Tokyo'
|
|
46973
|
+
| 'Asia/Tomsk'
|
|
46974
|
+
| 'Asia/Ulaanbaatar'
|
|
46975
|
+
| 'Asia/Urumqi'
|
|
46976
|
+
| 'Asia/Ust-Nera'
|
|
46977
|
+
| 'Asia/Vientiane'
|
|
46978
|
+
| 'Asia/Vladivostok'
|
|
46979
|
+
| 'Asia/Yakutsk'
|
|
46980
|
+
| 'Asia/Yekaterinburg'
|
|
46981
|
+
| 'Asia/Yerevan'
|
|
46982
|
+
| 'Atlantic/Azores'
|
|
46983
|
+
| 'Atlantic/Bermuda'
|
|
46984
|
+
| 'Atlantic/Canary'
|
|
46985
|
+
| 'Atlantic/Cape_Verde'
|
|
46986
|
+
| 'Atlantic/Faeroe'
|
|
46987
|
+
| 'Atlantic/Madeira'
|
|
46988
|
+
| 'Atlantic/Reykjavik'
|
|
46989
|
+
| 'Atlantic/South_Georgia'
|
|
46990
|
+
| 'Atlantic/St_Helena'
|
|
46991
|
+
| 'Atlantic/Stanley'
|
|
46992
|
+
| 'Australia/Adelaide'
|
|
46993
|
+
| 'Australia/Brisbane'
|
|
46994
|
+
| 'Australia/Broken_Hill'
|
|
46995
|
+
| 'Australia/Currie'
|
|
46996
|
+
| 'Australia/Darwin'
|
|
46997
|
+
| 'Australia/Eucla'
|
|
46998
|
+
| 'Australia/Hobart'
|
|
46999
|
+
| 'Australia/Lindeman'
|
|
47000
|
+
| 'Australia/Lord_Howe'
|
|
47001
|
+
| 'Australia/Melbourne'
|
|
47002
|
+
| 'Australia/Perth'
|
|
47003
|
+
| 'Australia/Sydney'
|
|
47004
|
+
| 'Europe/Amsterdam'
|
|
47005
|
+
| 'Europe/Andorra'
|
|
47006
|
+
| 'Europe/Astrakhan'
|
|
47007
|
+
| 'Europe/Athens'
|
|
47008
|
+
| 'Europe/Belgrade'
|
|
47009
|
+
| 'Europe/Berlin'
|
|
47010
|
+
| 'Europe/Bratislava'
|
|
47011
|
+
| 'Europe/Brussels'
|
|
47012
|
+
| 'Europe/Bucharest'
|
|
47013
|
+
| 'Europe/Budapest'
|
|
47014
|
+
| 'Europe/Busingen'
|
|
47015
|
+
| 'Europe/Chisinau'
|
|
47016
|
+
| 'Europe/Copenhagen'
|
|
47017
|
+
| 'Europe/Dublin'
|
|
47018
|
+
| 'Europe/Gibraltar'
|
|
47019
|
+
| 'Europe/Guernsey'
|
|
47020
|
+
| 'Europe/Helsinki'
|
|
47021
|
+
| 'Europe/Isle_of_Man'
|
|
47022
|
+
| 'Europe/Istanbul'
|
|
47023
|
+
| 'Europe/Jersey'
|
|
47024
|
+
| 'Europe/Kaliningrad'
|
|
47025
|
+
| 'Europe/Kiev'
|
|
47026
|
+
| 'Europe/Kirov'
|
|
47027
|
+
| 'Europe/Lisbon'
|
|
47028
|
+
| 'Europe/Ljubljana'
|
|
47029
|
+
| 'Europe/London'
|
|
47030
|
+
| 'Europe/Luxembourg'
|
|
47031
|
+
| 'Europe/Madrid'
|
|
47032
|
+
| 'Europe/Malta'
|
|
47033
|
+
| 'Europe/Mariehamn'
|
|
47034
|
+
| 'Europe/Minsk'
|
|
47035
|
+
| 'Europe/Monaco'
|
|
47036
|
+
| 'Europe/Moscow'
|
|
47037
|
+
| 'Europe/Oslo'
|
|
47038
|
+
| 'Europe/Paris'
|
|
47039
|
+
| 'Europe/Podgorica'
|
|
47040
|
+
| 'Europe/Prague'
|
|
47041
|
+
| 'Europe/Riga'
|
|
47042
|
+
| 'Europe/Rome'
|
|
47043
|
+
| 'Europe/Samara'
|
|
47044
|
+
| 'Europe/San_Marino'
|
|
47045
|
+
| 'Europe/Sarajevo'
|
|
47046
|
+
| 'Europe/Saratov'
|
|
47047
|
+
| 'Europe/Simferopol'
|
|
47048
|
+
| 'Europe/Skopje'
|
|
47049
|
+
| 'Europe/Sofia'
|
|
47050
|
+
| 'Europe/Stockholm'
|
|
47051
|
+
| 'Europe/Tallinn'
|
|
47052
|
+
| 'Europe/Tirane'
|
|
47053
|
+
| 'Europe/Ulyanovsk'
|
|
47054
|
+
| 'Europe/Uzhgorod'
|
|
47055
|
+
| 'Europe/Vaduz'
|
|
47056
|
+
| 'Europe/Vatican'
|
|
47057
|
+
| 'Europe/Vienna'
|
|
47058
|
+
| 'Europe/Vilnius'
|
|
47059
|
+
| 'Europe/Volgograd'
|
|
47060
|
+
| 'Europe/Warsaw'
|
|
47061
|
+
| 'Europe/Zagreb'
|
|
47062
|
+
| 'Europe/Zaporozhye'
|
|
47063
|
+
| 'Europe/Zurich'
|
|
47064
|
+
| 'Indian/Antananarivo'
|
|
47065
|
+
| 'Indian/Chagos'
|
|
47066
|
+
| 'Indian/Christmas'
|
|
47067
|
+
| 'Indian/Cocos'
|
|
47068
|
+
| 'Indian/Comoro'
|
|
47069
|
+
| 'Indian/Kerguelen'
|
|
47070
|
+
| 'Indian/Mahe'
|
|
47071
|
+
| 'Indian/Maldives'
|
|
47072
|
+
| 'Indian/Mauritius'
|
|
47073
|
+
| 'Indian/Mayotte'
|
|
47074
|
+
| 'Indian/Reunion'
|
|
47075
|
+
| 'Pacific/Apia'
|
|
47076
|
+
| 'Pacific/Auckland'
|
|
47077
|
+
| 'Pacific/Bougainville'
|
|
47078
|
+
| 'Pacific/Chatham'
|
|
47079
|
+
| 'Pacific/Easter'
|
|
47080
|
+
| 'Pacific/Efate'
|
|
47081
|
+
| 'Pacific/Enderbury'
|
|
47082
|
+
| 'Pacific/Fakaofo'
|
|
47083
|
+
| 'Pacific/Fiji'
|
|
47084
|
+
| 'Pacific/Funafuti'
|
|
47085
|
+
| 'Pacific/Galapagos'
|
|
47086
|
+
| 'Pacific/Gambier'
|
|
47087
|
+
| 'Pacific/Guadalcanal'
|
|
47088
|
+
| 'Pacific/Guam'
|
|
47089
|
+
| 'Pacific/Honolulu'
|
|
47090
|
+
| 'Pacific/Johnston'
|
|
47091
|
+
| 'Pacific/Kiritimati'
|
|
47092
|
+
| 'Pacific/Kosrae'
|
|
47093
|
+
| 'Pacific/Kwajalein'
|
|
47094
|
+
| 'Pacific/Majuro'
|
|
47095
|
+
| 'Pacific/Marquesas'
|
|
47096
|
+
| 'Pacific/Midway'
|
|
47097
|
+
| 'Pacific/Nauru'
|
|
47098
|
+
| 'Pacific/Niue'
|
|
47099
|
+
| 'Pacific/Norfolk'
|
|
47100
|
+
| 'Pacific/Noumea'
|
|
47101
|
+
| 'Pacific/Pago_Pago'
|
|
47102
|
+
| 'Pacific/Palau'
|
|
47103
|
+
| 'Pacific/Pitcairn'
|
|
47104
|
+
| 'Pacific/Ponape'
|
|
47105
|
+
| 'Pacific/Port_Moresby'
|
|
47106
|
+
| 'Pacific/Rarotonga'
|
|
47107
|
+
| 'Pacific/Saipan'
|
|
47108
|
+
| 'Pacific/Tahiti'
|
|
47109
|
+
| 'Pacific/Tarawa'
|
|
47110
|
+
| 'Pacific/Tongatapu'
|
|
47111
|
+
| 'Pacific/Truk'
|
|
47112
|
+
| 'Pacific/Wake'
|
|
47113
|
+
| 'Pacific/Wallis'
|
|
47114
|
+
}
|
|
47115
|
+
| undefined
|
|
46688
47116
|
}[]
|
|
46689
47117
|
}
|
|
46690
47118
|
formData: {}
|
|
@@ -57297,8 +57725,6 @@ export type Routes = {
|
|
|
57297
57725
|
has_gateway: boolean
|
|
57298
57726
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
57299
57727
|
timezone_raw_offset_ms: number
|
|
57300
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
57301
|
-
time_zone?: string | undefined
|
|
57302
57728
|
}
|
|
57303
57729
|
| undefined
|
|
57304
57730
|
/** Metadata for a tado° device. */
|
|
@@ -58975,8 +59401,6 @@ export type Routes = {
|
|
|
58975
59401
|
has_gateway: boolean
|
|
58976
59402
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
58977
59403
|
timezone_raw_offset_ms: number
|
|
58978
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
58979
|
-
time_zone?: string | undefined
|
|
58980
59404
|
}
|
|
58981
59405
|
| undefined
|
|
58982
59406
|
/** Metadata for a tado° device. */
|
|
@@ -60846,8 +61270,6 @@ export type Routes = {
|
|
|
60846
61270
|
has_gateway: boolean
|
|
60847
61271
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
60848
61272
|
timezone_raw_offset_ms: number
|
|
60849
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
60850
|
-
time_zone?: string | undefined
|
|
60851
61273
|
}
|
|
60852
61274
|
| undefined
|
|
60853
61275
|
/** Metadata for a tado° device. */
|
|
@@ -62523,8 +62945,6 @@ export type Routes = {
|
|
|
62523
62945
|
has_gateway: boolean
|
|
62524
62946
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
62525
62947
|
timezone_raw_offset_ms: number
|
|
62526
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
62527
|
-
time_zone?: string | undefined
|
|
62528
62948
|
}
|
|
62529
62949
|
| undefined
|
|
62530
62950
|
/** Metadata for a tado° device. */
|
|
@@ -71369,8 +71789,6 @@ export type Routes = {
|
|
|
71369
71789
|
has_gateway: boolean
|
|
71370
71790
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
71371
71791
|
timezone_raw_offset_ms: number
|
|
71372
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
71373
|
-
time_zone?: string | undefined
|
|
71374
71792
|
}
|
|
71375
71793
|
| undefined
|
|
71376
71794
|
/** Metadata for a tado° device. */
|
|
@@ -73046,8 +73464,6 @@ export type Routes = {
|
|
|
73046
73464
|
has_gateway: boolean
|
|
73047
73465
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
73048
73466
|
timezone_raw_offset_ms: number
|
|
73049
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
73050
|
-
time_zone?: string | undefined
|
|
73051
73467
|
}
|
|
73052
73468
|
| undefined
|
|
73053
73469
|
/** Metadata for a tado° device. */
|
|
@@ -89733,8 +90149,6 @@ export type Routes = {
|
|
|
89733
90149
|
has_gateway: boolean
|
|
89734
90150
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
89735
90151
|
timezone_raw_offset_ms: number
|
|
89736
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
89737
|
-
time_zone?: string | undefined
|
|
89738
90152
|
}
|
|
89739
90153
|
| undefined
|
|
89740
90154
|
/** Metadata for a tado° device. */
|
|
@@ -97760,8 +98174,6 @@ export type Routes = {
|
|
|
97760
98174
|
has_gateway: boolean
|
|
97761
98175
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
97762
98176
|
timezone_raw_offset_ms: number
|
|
97763
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
97764
|
-
time_zone?: string | undefined
|
|
97765
98177
|
}
|
|
97766
98178
|
| undefined
|
|
97767
98179
|
/** Metadata for a tado° device. */
|
|
@@ -103111,8 +103523,6 @@ export type Routes = {
|
|
|
103111
103523
|
has_gateway: boolean
|
|
103112
103524
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
103113
103525
|
timezone_raw_offset_ms: number
|
|
103114
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
103115
|
-
time_zone?: string | undefined
|
|
103116
103526
|
}
|
|
103117
103527
|
| undefined
|
|
103118
103528
|
/** Metadata for a tado° device. */
|
|
@@ -104788,8 +105198,6 @@ export type Routes = {
|
|
|
104788
105198
|
has_gateway: boolean
|
|
104789
105199
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
104790
105200
|
timezone_raw_offset_ms: number
|
|
104791
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
104792
|
-
time_zone?: string | undefined
|
|
104793
105201
|
}
|
|
104794
105202
|
| undefined
|
|
104795
105203
|
/** Metadata for a tado° device. */
|
|
@@ -114519,8 +114927,6 @@ export type Routes = {
|
|
|
114519
114927
|
has_gateway: boolean
|
|
114520
114928
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
114521
114929
|
timezone_raw_offset_ms: number
|
|
114522
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
114523
|
-
time_zone?: string | undefined
|
|
114524
114930
|
}
|
|
114525
114931
|
| undefined
|
|
114526
114932
|
/** Metadata for a tado° device. */
|
|
@@ -116198,8 +116604,6 @@ export type Routes = {
|
|
|
116198
116604
|
has_gateway: boolean
|
|
116199
116605
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
116200
116606
|
timezone_raw_offset_ms: number
|
|
116201
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
116202
|
-
time_zone?: string | undefined
|
|
116203
116607
|
}
|
|
116204
116608
|
| undefined
|
|
116205
116609
|
/** Metadata for a tado° device. */
|
|
@@ -119217,8 +119621,6 @@ export type Routes = {
|
|
|
119217
119621
|
has_gateway: boolean
|
|
119218
119622
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
119219
119623
|
timezone_raw_offset_ms: number
|
|
119220
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
119221
|
-
time_zone?: string | undefined
|
|
119222
119624
|
}
|
|
119223
119625
|
| undefined
|
|
119224
119626
|
/** Metadata for a tado° device. */
|