@seamapi/types 1.856.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 +497 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -60
- package/dist/index.cjs +497 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +9 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +29 -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/models/phones/phone-session.d.ts +82 -0
- package/lib/seam/connect/openapi.js +488 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +82 -34
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +12 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +0 -6
- package/src/lib/seam/connect/openapi.ts +497 -5
- package/src/lib/seam/connect/route-types.ts +524 -34
|
@@ -12706,8 +12706,6 @@ export type Routes = {
|
|
|
12706
12706
|
has_gateway: boolean;
|
|
12707
12707
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
12708
12708
|
timezone_raw_offset_ms: number;
|
|
12709
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
12710
|
-
time_zone?: string | undefined;
|
|
12711
12709
|
} | undefined;
|
|
12712
12710
|
/** Metadata for a tado° device. */
|
|
12713
12711
|
tado_metadata?: {
|
|
@@ -13539,6 +13537,13 @@ export type Routes = {
|
|
|
13539
13537
|
message: string;
|
|
13540
13538
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13541
13539
|
warning_code: 'entrance_shares_zone';
|
|
13540
|
+
} | {
|
|
13541
|
+
/** Date and time at which Seam created the warning. */
|
|
13542
|
+
created_at: string;
|
|
13543
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13544
|
+
message: string;
|
|
13545
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13546
|
+
warning_code: 'entrance_setup_required';
|
|
13542
13547
|
})[];
|
|
13543
13548
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
13544
13549
|
latch_metadata?: {
|
|
@@ -17381,8 +17386,6 @@ export type Routes = {
|
|
|
17381
17386
|
has_gateway: boolean;
|
|
17382
17387
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
17383
17388
|
timezone_raw_offset_ms: number;
|
|
17384
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
17385
|
-
time_zone?: string | undefined;
|
|
17386
17389
|
} | undefined;
|
|
17387
17390
|
/** Metadata for a tado° device. */
|
|
17388
17391
|
tado_metadata?: {
|
|
@@ -18214,6 +18217,13 @@ export type Routes = {
|
|
|
18214
18217
|
message: string;
|
|
18215
18218
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18216
18219
|
warning_code: 'entrance_shares_zone';
|
|
18220
|
+
} | {
|
|
18221
|
+
/** Date and time at which Seam created the warning. */
|
|
18222
|
+
created_at: string;
|
|
18223
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18224
|
+
message: string;
|
|
18225
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18226
|
+
warning_code: 'entrance_setup_required';
|
|
18217
18227
|
})[];
|
|
18218
18228
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
18219
18229
|
latch_metadata?: {
|
|
@@ -19641,6 +19651,13 @@ export type Routes = {
|
|
|
19641
19651
|
message: string;
|
|
19642
19652
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19643
19653
|
warning_code: 'entrance_shares_zone';
|
|
19654
|
+
} | {
|
|
19655
|
+
/** Date and time at which Seam created the warning. */
|
|
19656
|
+
created_at: string;
|
|
19657
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19658
|
+
message: string;
|
|
19659
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19660
|
+
warning_code: 'entrance_setup_required';
|
|
19644
19661
|
})[];
|
|
19645
19662
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
19646
19663
|
latch_metadata?: {
|
|
@@ -21369,6 +21386,13 @@ export type Routes = {
|
|
|
21369
21386
|
message: string;
|
|
21370
21387
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21371
21388
|
warning_code: 'entrance_shares_zone';
|
|
21389
|
+
} | {
|
|
21390
|
+
/** Date and time at which Seam created the warning. */
|
|
21391
|
+
created_at: string;
|
|
21392
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21393
|
+
message: string;
|
|
21394
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21395
|
+
warning_code: 'entrance_setup_required';
|
|
21372
21396
|
})[];
|
|
21373
21397
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21374
21398
|
latch_metadata?: {
|
|
@@ -26904,6 +26928,13 @@ export type Routes = {
|
|
|
26904
26928
|
message: string;
|
|
26905
26929
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26906
26930
|
warning_code: 'entrance_shares_zone';
|
|
26931
|
+
} | {
|
|
26932
|
+
/** Date and time at which Seam created the warning. */
|
|
26933
|
+
created_at: string;
|
|
26934
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26935
|
+
message: string;
|
|
26936
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26937
|
+
warning_code: 'entrance_setup_required';
|
|
26907
26938
|
})[];
|
|
26908
26939
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
26909
26940
|
latch_metadata?: {
|
|
@@ -27118,6 +27149,13 @@ export type Routes = {
|
|
|
27118
27149
|
message: string;
|
|
27119
27150
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27120
27151
|
warning_code: 'entrance_shares_zone';
|
|
27152
|
+
} | {
|
|
27153
|
+
/** Date and time at which Seam created the warning. */
|
|
27154
|
+
created_at: string;
|
|
27155
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27156
|
+
message: string;
|
|
27157
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27158
|
+
warning_code: 'entrance_setup_required';
|
|
27121
27159
|
})[];
|
|
27122
27160
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27123
27161
|
latch_metadata?: {
|
|
@@ -30321,6 +30359,13 @@ export type Routes = {
|
|
|
30321
30359
|
message: string;
|
|
30322
30360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30323
30361
|
warning_code: 'entrance_shares_zone';
|
|
30362
|
+
} | {
|
|
30363
|
+
/** Date and time at which Seam created the warning. */
|
|
30364
|
+
created_at: string;
|
|
30365
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30366
|
+
message: string;
|
|
30367
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30368
|
+
warning_code: 'entrance_setup_required';
|
|
30324
30369
|
})[];
|
|
30325
30370
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
30326
30371
|
latch_metadata?: {
|
|
@@ -36732,8 +36777,6 @@ export type Routes = {
|
|
|
36732
36777
|
has_gateway: boolean;
|
|
36733
36778
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
36734
36779
|
timezone_raw_offset_ms: number;
|
|
36735
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
36736
|
-
time_zone?: string | undefined;
|
|
36737
36780
|
} | undefined;
|
|
36738
36781
|
/** Metadata for a tado° device. */
|
|
36739
36782
|
tado_metadata?: {
|
|
@@ -38131,8 +38174,6 @@ export type Routes = {
|
|
|
38131
38174
|
has_gateway: boolean;
|
|
38132
38175
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
38133
38176
|
timezone_raw_offset_ms: number;
|
|
38134
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
38135
|
-
time_zone?: string | undefined;
|
|
38136
38177
|
} | undefined;
|
|
38137
38178
|
/** Metadata for a tado° device. */
|
|
38138
38179
|
tado_metadata?: {
|
|
@@ -39001,6 +39042,11 @@ export type Routes = {
|
|
|
39001
39042
|
/** IANA timezone for the Schlage device */
|
|
39002
39043
|
time_zone: 'Africa/Abidjan' | 'Africa/Accra' | 'Africa/Addis_Ababa' | 'Africa/Algiers' | 'Africa/Asmera' | 'Africa/Bamako' | 'Africa/Bangui' | 'Africa/Banjul' | 'Africa/Bissau' | 'Africa/Blantyre' | 'Africa/Brazzaville' | 'Africa/Bujumbura' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/Conakry' | 'Africa/Dakar' | 'Africa/Dar_es_Salaam' | 'Africa/Djibouti' | 'Africa/Douala' | 'Africa/El_Aaiun' | 'Africa/Freetown' | 'Africa/Gaborone' | 'Africa/Harare' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Kampala' | 'Africa/Khartoum' | 'Africa/Kigali' | 'Africa/Kinshasa' | 'Africa/Lagos' | 'Africa/Libreville' | 'Africa/Lome' | 'Africa/Luanda' | 'Africa/Lubumbashi' | 'Africa/Lusaka' | 'Africa/Malabo' | 'Africa/Maputo' | 'Africa/Maseru' | 'Africa/Mbabane' | 'Africa/Mogadishu' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Niamey' | 'Africa/Nouakchott' | 'Africa/Ouagadougou' | 'Africa/Porto-Novo' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Anguilla' | 'America/Antigua' | 'America/Araguaina' | 'America/Argentina/La_Rioja' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Aruba' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Blanc-Sablon' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Buenos_Aires' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Catamarca' | 'America/Cayenne' | 'America/Cayman' | 'America/Chicago' | 'America/Chihuahua' | 'America/Ciudad_Juarez' | 'America/Coral_Harbour' | 'America/Cordoba' | 'America/Costa_Rica' | 'America/Creston' | 'America/Cuiaba' | 'America/Curacao' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Dominica' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Godthab' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Grenada' | 'America/Guadeloupe' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Indianapolis' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Jujuy' | 'America/Juneau' | 'America/Kentucky/Monticello' | 'America/Kralendijk' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Louisville' | 'America/Lower_Princes' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Marigot' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Mendoza' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/Montreal' | 'America/Montserrat' | 'America/Nassau' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Port_of_Spain' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santa_Isabel' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Barthelemy' | 'America/St_Johns' | 'America/St_Kitts' | 'America/St_Lucia' | 'America/St_Thomas' | 'America/St_Vincent' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Tortola' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/DumontDUrville' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/McMurdo' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Syowa' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Arctic/Longyearbyen' | 'Asia/Aden' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Bahrain' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Calcutta' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Katmandu' | 'Asia/Khandyga' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Kuwait' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Muscat' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Phnom_Penh' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Rangoon' | 'Asia/Riyadh' | 'Asia/Saigon' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vientiane' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faeroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/St_Helena' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Currie' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Bratislava' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Busingen' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Guernsey' | 'Europe/Helsinki' | 'Europe/Isle_of_Man' | 'Europe/Istanbul' | 'Europe/Jersey' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/Ljubljana' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Mariehamn' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Podgorica' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/San_Marino' | 'Europe/Sarajevo' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Skopje' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vaduz' | 'Europe/Vatican' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zagreb' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'Indian/Antananarivo' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Comoro' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Mayotte' | 'Indian/Reunion' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Enderbury' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Johnston' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Midway' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Ponape' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Saipan' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Truk' | 'Pacific/Wake' | 'Pacific/Wallis';
|
|
39003
39044
|
} | undefined;
|
|
39045
|
+
/** Omnitec-specific metadata to update */
|
|
39046
|
+
omnitec_metadata?: {
|
|
39047
|
+
/** IANA timezone for the Omnitec device */
|
|
39048
|
+
time_zone: 'Africa/Abidjan' | 'Africa/Accra' | 'Africa/Addis_Ababa' | 'Africa/Algiers' | 'Africa/Asmera' | 'Africa/Bamako' | 'Africa/Bangui' | 'Africa/Banjul' | 'Africa/Bissau' | 'Africa/Blantyre' | 'Africa/Brazzaville' | 'Africa/Bujumbura' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/Conakry' | 'Africa/Dakar' | 'Africa/Dar_es_Salaam' | 'Africa/Djibouti' | 'Africa/Douala' | 'Africa/El_Aaiun' | 'Africa/Freetown' | 'Africa/Gaborone' | 'Africa/Harare' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Kampala' | 'Africa/Khartoum' | 'Africa/Kigali' | 'Africa/Kinshasa' | 'Africa/Lagos' | 'Africa/Libreville' | 'Africa/Lome' | 'Africa/Luanda' | 'Africa/Lubumbashi' | 'Africa/Lusaka' | 'Africa/Malabo' | 'Africa/Maputo' | 'Africa/Maseru' | 'Africa/Mbabane' | 'Africa/Mogadishu' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Niamey' | 'Africa/Nouakchott' | 'Africa/Ouagadougou' | 'Africa/Porto-Novo' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Anguilla' | 'America/Antigua' | 'America/Araguaina' | 'America/Argentina/La_Rioja' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Aruba' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Blanc-Sablon' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Buenos_Aires' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Catamarca' | 'America/Cayenne' | 'America/Cayman' | 'America/Chicago' | 'America/Chihuahua' | 'America/Ciudad_Juarez' | 'America/Coral_Harbour' | 'America/Cordoba' | 'America/Costa_Rica' | 'America/Creston' | 'America/Cuiaba' | 'America/Curacao' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Dominica' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Godthab' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Grenada' | 'America/Guadeloupe' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Indianapolis' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Jujuy' | 'America/Juneau' | 'America/Kentucky/Monticello' | 'America/Kralendijk' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Louisville' | 'America/Lower_Princes' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Marigot' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Mendoza' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/Montreal' | 'America/Montserrat' | 'America/Nassau' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Port_of_Spain' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santa_Isabel' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Barthelemy' | 'America/St_Johns' | 'America/St_Kitts' | 'America/St_Lucia' | 'America/St_Thomas' | 'America/St_Vincent' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Tortola' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/DumontDUrville' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/McMurdo' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Syowa' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Arctic/Longyearbyen' | 'Asia/Aden' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Bahrain' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Calcutta' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Katmandu' | 'Asia/Khandyga' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Kuwait' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Muscat' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Phnom_Penh' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Rangoon' | 'Asia/Riyadh' | 'Asia/Saigon' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vientiane' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faeroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/St_Helena' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Currie' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Bratislava' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Busingen' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Guernsey' | 'Europe/Helsinki' | 'Europe/Isle_of_Man' | 'Europe/Istanbul' | 'Europe/Jersey' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/Ljubljana' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Mariehamn' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Podgorica' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/San_Marino' | 'Europe/Sarajevo' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Skopje' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vaduz' | 'Europe/Vatican' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zagreb' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'Indian/Antananarivo' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Comoro' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Mayotte' | 'Indian/Reunion' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Enderbury' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Johnston' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Midway' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Ponape' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Saipan' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Truk' | 'Pacific/Wake' | 'Pacific/Wallis';
|
|
39049
|
+
} | undefined;
|
|
39004
39050
|
}[];
|
|
39005
39051
|
};
|
|
39006
39052
|
formData: {};
|
|
@@ -47912,8 +47958,6 @@ export type Routes = {
|
|
|
47912
47958
|
has_gateway: boolean;
|
|
47913
47959
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
47914
47960
|
timezone_raw_offset_ms: number;
|
|
47915
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
47916
|
-
time_zone?: string | undefined;
|
|
47917
47961
|
} | undefined;
|
|
47918
47962
|
/** Metadata for a tado° device. */
|
|
47919
47963
|
tado_metadata?: {
|
|
@@ -49261,8 +49305,6 @@ export type Routes = {
|
|
|
49261
49305
|
has_gateway: boolean;
|
|
49262
49306
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
49263
49307
|
timezone_raw_offset_ms: number;
|
|
49264
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
49265
|
-
time_zone?: string | undefined;
|
|
49266
49308
|
} | undefined;
|
|
49267
49309
|
/** Metadata for a tado° device. */
|
|
49268
49310
|
tado_metadata?: {
|
|
@@ -50660,8 +50702,6 @@ export type Routes = {
|
|
|
50660
50702
|
has_gateway: boolean;
|
|
50661
50703
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
50662
50704
|
timezone_raw_offset_ms: number;
|
|
50663
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
50664
|
-
time_zone?: string | undefined;
|
|
50665
50705
|
} | undefined;
|
|
50666
50706
|
/** Metadata for a tado° device. */
|
|
50667
50707
|
tado_metadata?: {
|
|
@@ -52008,8 +52048,6 @@ export type Routes = {
|
|
|
52008
52048
|
has_gateway: boolean;
|
|
52009
52049
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
52010
52050
|
timezone_raw_offset_ms: number;
|
|
52011
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
52012
|
-
time_zone?: string | undefined;
|
|
52013
52051
|
} | undefined;
|
|
52014
52052
|
/** Metadata for a tado° device. */
|
|
52015
52053
|
tado_metadata?: {
|
|
@@ -59469,8 +59507,6 @@ export type Routes = {
|
|
|
59469
59507
|
has_gateway: boolean;
|
|
59470
59508
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
59471
59509
|
timezone_raw_offset_ms: number;
|
|
59472
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
59473
|
-
time_zone?: string | undefined;
|
|
59474
59510
|
} | undefined;
|
|
59475
59511
|
/** Metadata for a tado° device. */
|
|
59476
59512
|
tado_metadata?: {
|
|
@@ -60817,8 +60853,6 @@ export type Routes = {
|
|
|
60817
60853
|
has_gateway: boolean;
|
|
60818
60854
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
60819
60855
|
timezone_raw_offset_ms: number;
|
|
60820
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
60821
|
-
time_zone?: string | undefined;
|
|
60822
60856
|
} | undefined;
|
|
60823
60857
|
/** Metadata for a tado° device. */
|
|
60824
60858
|
tado_metadata?: {
|
|
@@ -74059,6 +74093,13 @@ export type Routes = {
|
|
|
74059
74093
|
message: string;
|
|
74060
74094
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74061
74095
|
warning_code: 'entrance_shares_zone';
|
|
74096
|
+
} | {
|
|
74097
|
+
/** Date and time at which Seam created the warning. */
|
|
74098
|
+
created_at: string;
|
|
74099
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74100
|
+
message: string;
|
|
74101
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74102
|
+
warning_code: 'entrance_setup_required';
|
|
74062
74103
|
})[];
|
|
74063
74104
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
74064
74105
|
latch_metadata?: {
|
|
@@ -75075,8 +75116,6 @@ export type Routes = {
|
|
|
75075
75116
|
has_gateway: boolean;
|
|
75076
75117
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
75077
75118
|
timezone_raw_offset_ms: number;
|
|
75078
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
75079
|
-
time_zone?: string | undefined;
|
|
75080
75119
|
} | undefined;
|
|
75081
75120
|
/** Metadata for a tado° device. */
|
|
75082
75121
|
tado_metadata?: {
|
|
@@ -75908,6 +75947,13 @@ export type Routes = {
|
|
|
75908
75947
|
message: string;
|
|
75909
75948
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75910
75949
|
warning_code: 'entrance_shares_zone';
|
|
75950
|
+
} | {
|
|
75951
|
+
/** Date and time at which Seam created the warning. */
|
|
75952
|
+
created_at: string;
|
|
75953
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75954
|
+
message: string;
|
|
75955
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75956
|
+
warning_code: 'entrance_setup_required';
|
|
75911
75957
|
})[];
|
|
75912
75958
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
75913
75959
|
latch_metadata?: {
|
|
@@ -81846,8 +81892,6 @@ export type Routes = {
|
|
|
81846
81892
|
has_gateway: boolean;
|
|
81847
81893
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
81848
81894
|
timezone_raw_offset_ms: number;
|
|
81849
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
81850
|
-
time_zone?: string | undefined;
|
|
81851
81895
|
} | undefined;
|
|
81852
81896
|
/** Metadata for a tado° device. */
|
|
81853
81897
|
tado_metadata?: {
|
|
@@ -86289,8 +86333,6 @@ export type Routes = {
|
|
|
86289
86333
|
has_gateway: boolean;
|
|
86290
86334
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
86291
86335
|
timezone_raw_offset_ms: number;
|
|
86292
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
86293
|
-
time_zone?: string | undefined;
|
|
86294
86336
|
} | undefined;
|
|
86295
86337
|
/** Metadata for a tado° device. */
|
|
86296
86338
|
tado_metadata?: {
|
|
@@ -87637,8 +87679,6 @@ export type Routes = {
|
|
|
87637
87679
|
has_gateway: boolean;
|
|
87638
87680
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
87639
87681
|
timezone_raw_offset_ms: number;
|
|
87640
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
87641
|
-
time_zone?: string | undefined;
|
|
87642
87682
|
} | undefined;
|
|
87643
87683
|
/** Metadata for a tado° device. */
|
|
87644
87684
|
tado_metadata?: {
|
|
@@ -95995,8 +96035,6 @@ export type Routes = {
|
|
|
95995
96035
|
has_gateway: boolean;
|
|
95996
96036
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
95997
96037
|
timezone_raw_offset_ms: number;
|
|
95998
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
95999
|
-
time_zone?: string | undefined;
|
|
96000
96038
|
} | undefined;
|
|
96001
96039
|
/** Metadata for a tado° device. */
|
|
96002
96040
|
tado_metadata?: {
|
|
@@ -97345,8 +97383,6 @@ export type Routes = {
|
|
|
97345
97383
|
has_gateway: boolean;
|
|
97346
97384
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
97347
97385
|
timezone_raw_offset_ms: number;
|
|
97348
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
97349
|
-
time_zone?: string | undefined;
|
|
97350
97386
|
} | undefined;
|
|
97351
97387
|
/** Metadata for a tado° device. */
|
|
97352
97388
|
tado_metadata?: {
|
|
@@ -98192,6 +98228,13 @@ export type Routes = {
|
|
|
98192
98228
|
message: string;
|
|
98193
98229
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98194
98230
|
warning_code: 'entrance_shares_zone';
|
|
98231
|
+
} | {
|
|
98232
|
+
/** Date and time at which Seam created the warning. */
|
|
98233
|
+
created_at: string;
|
|
98234
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98235
|
+
message: string;
|
|
98236
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98237
|
+
warning_code: 'entrance_setup_required';
|
|
98195
98238
|
})[];
|
|
98196
98239
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
98197
98240
|
latch_metadata?: {
|
|
@@ -99875,8 +99918,6 @@ export type Routes = {
|
|
|
99875
99918
|
has_gateway: boolean;
|
|
99876
99919
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
99877
99920
|
timezone_raw_offset_ms: number;
|
|
99878
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
99879
|
-
time_zone?: string | undefined;
|
|
99880
99921
|
} | undefined;
|
|
99881
99922
|
/** Metadata for a tado° device. */
|
|
99882
99923
|
tado_metadata?: {
|
|
@@ -100708,6 +100749,13 @@ export type Routes = {
|
|
|
100708
100749
|
message: string;
|
|
100709
100750
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100710
100751
|
warning_code: 'entrance_shares_zone';
|
|
100752
|
+
} | {
|
|
100753
|
+
/** Date and time at which Seam created the warning. */
|
|
100754
|
+
created_at: string;
|
|
100755
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100756
|
+
message: string;
|
|
100757
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100758
|
+
warning_code: 'entrance_setup_required';
|
|
100711
100759
|
})[];
|
|
100712
100760
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
100713
100761
|
latch_metadata?: {
|
package/package.json
CHANGED
|
@@ -49,10 +49,21 @@ const entrance_shares_zone = common_acs_entrance_warning
|
|
|
49
49
|
'Indicates that this entrance shares a zone with other entrances in Avigilon Alta and cannot be added to an access group individually.',
|
|
50
50
|
)
|
|
51
51
|
|
|
52
|
+
const entrance_setup_required = common_acs_entrance_warning
|
|
53
|
+
.extend({
|
|
54
|
+
warning_code: z
|
|
55
|
+
.literal('entrance_setup_required')
|
|
56
|
+
.describe(warning_code_description),
|
|
57
|
+
})
|
|
58
|
+
.describe(
|
|
59
|
+
'Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it.',
|
|
60
|
+
)
|
|
61
|
+
|
|
52
62
|
const acs_entrance_warning = z
|
|
53
63
|
.discriminatedUnion('warning_code', [
|
|
54
64
|
salto_ks_entrance_access_code_support_removed,
|
|
55
65
|
entrance_shares_zone,
|
|
66
|
+
entrance_setup_required,
|
|
56
67
|
])
|
|
57
68
|
.describe(
|
|
58
69
|
'Warning associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
@@ -62,6 +73,7 @@ const _acs_entrance_warning_map = z.object({
|
|
|
62
73
|
salto_ks_entrance_access_code_support_removed:
|
|
63
74
|
salto_ks_entrance_access_code_support_removed.optional().nullable(),
|
|
64
75
|
entrance_shares_zone: entrance_shares_zone.optional().nullable(),
|
|
76
|
+
entrance_setup_required: entrance_setup_required.optional().nullable(),
|
|
65
77
|
})
|
|
66
78
|
|
|
67
79
|
export type AcsEntranceWarningMap = z.infer<typeof _acs_entrance_warning_map>
|
|
@@ -650,12 +650,6 @@ export const device_metadata = z
|
|
|
650
650
|
.describe(
|
|
651
651
|
`Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`,
|
|
652
652
|
),
|
|
653
|
-
time_zone: z
|
|
654
|
-
.string()
|
|
655
|
-
.optional()
|
|
656
|
-
.describe(
|
|
657
|
-
`IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.`,
|
|
658
|
-
),
|
|
659
653
|
})
|
|
660
654
|
.describe(`Metadata for an Omnitec device.`),
|
|
661
655
|
|