@seamapi/types 1.679.0 → 1.681.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 +524 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +239 -0
- package/dist/index.cjs +524 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +28 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +8 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +14 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/openapi.d.ts +98 -0
- package/lib/seam/connect/openapi.js +518 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +89 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +522 -1
- package/src/lib/seam/connect/route-types.ts +520 -0
|
@@ -10534,6 +10534,8 @@ export type Routes = {
|
|
|
10534
10534
|
locked_state: string;
|
|
10535
10535
|
/** Model for a Salto KS device. */
|
|
10536
10536
|
model?: string | undefined;
|
|
10537
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
10538
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
10537
10539
|
} | undefined;
|
|
10538
10540
|
/** Metadata for a Genie device. */
|
|
10539
10541
|
genie_metadata?: {
|
|
@@ -10899,6 +10901,8 @@ export type Routes = {
|
|
|
10899
10901
|
device_name: string;
|
|
10900
10902
|
/** Device type for an Ultraloq device. */
|
|
10901
10903
|
device_type: string;
|
|
10904
|
+
/** IANA timezone for the Ultraloq device. */
|
|
10905
|
+
time_zone: string | null;
|
|
10902
10906
|
} | undefined;
|
|
10903
10907
|
}) & ({
|
|
10904
10908
|
/** */
|
|
@@ -13923,6 +13927,8 @@ export type Routes = {
|
|
|
13923
13927
|
locked_state: string;
|
|
13924
13928
|
/** Model for a Salto KS device. */
|
|
13925
13929
|
model?: string | undefined;
|
|
13930
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
13931
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
13926
13932
|
} | undefined;
|
|
13927
13933
|
/** Metadata for a Genie device. */
|
|
13928
13934
|
genie_metadata?: {
|
|
@@ -14288,6 +14294,8 @@ export type Routes = {
|
|
|
14288
14294
|
device_name: string;
|
|
14289
14295
|
/** Device type for an Ultraloq device. */
|
|
14290
14296
|
device_type: string;
|
|
14297
|
+
/** IANA timezone for the Ultraloq device. */
|
|
14298
|
+
time_zone: string | null;
|
|
14291
14299
|
} | undefined;
|
|
14292
14300
|
}) & ({
|
|
14293
14301
|
/** */
|
|
@@ -27581,6 +27589,8 @@ export type Routes = {
|
|
|
27581
27589
|
locked_state: string;
|
|
27582
27590
|
/** Model for a Salto KS device. */
|
|
27583
27591
|
model?: string | undefined;
|
|
27592
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
27593
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
27584
27594
|
} | undefined;
|
|
27585
27595
|
/** Metadata for a Genie device. */
|
|
27586
27596
|
genie_metadata?: {
|
|
@@ -27946,6 +27956,8 @@ export type Routes = {
|
|
|
27946
27956
|
device_name: string;
|
|
27947
27957
|
/** Device type for an Ultraloq device. */
|
|
27948
27958
|
device_type: string;
|
|
27959
|
+
/** IANA timezone for the Ultraloq device. */
|
|
27960
|
+
time_zone: string | null;
|
|
27949
27961
|
} | undefined;
|
|
27950
27962
|
}) & ({
|
|
27951
27963
|
/** */
|
|
@@ -28863,6 +28875,8 @@ export type Routes = {
|
|
|
28863
28875
|
locked_state: string;
|
|
28864
28876
|
/** Model for a Salto KS device. */
|
|
28865
28877
|
model?: string | undefined;
|
|
28878
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
28879
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
28866
28880
|
} | undefined;
|
|
28867
28881
|
/** Metadata for a Genie device. */
|
|
28868
28882
|
genie_metadata?: {
|
|
@@ -29228,6 +29242,8 @@ export type Routes = {
|
|
|
29228
29242
|
device_name: string;
|
|
29229
29243
|
/** Device type for an Ultraloq device. */
|
|
29230
29244
|
device_type: string;
|
|
29245
|
+
/** IANA timezone for the Ultraloq device. */
|
|
29246
|
+
time_zone: string | null;
|
|
29231
29247
|
} | undefined;
|
|
29232
29248
|
}) & ({
|
|
29233
29249
|
/** */
|
|
@@ -29908,6 +29924,27 @@ export type Routes = {
|
|
|
29908
29924
|
};
|
|
29909
29925
|
maxDuration: undefined;
|
|
29910
29926
|
};
|
|
29927
|
+
'/devices/report_provider_metadata': {
|
|
29928
|
+
route: '/devices/report_provider_metadata';
|
|
29929
|
+
method: 'POST';
|
|
29930
|
+
queryParams: {};
|
|
29931
|
+
jsonBody: {};
|
|
29932
|
+
commonParams: {
|
|
29933
|
+
/** Array of devices with provider metadata to update */
|
|
29934
|
+
devices: {
|
|
29935
|
+
/** ID of the device to update */
|
|
29936
|
+
device_id: string;
|
|
29937
|
+
/** Ultraloq-specific metadata to update */
|
|
29938
|
+
ultraloq_metadata?: {
|
|
29939
|
+
/** IANA timezone for the Ultraloq device */
|
|
29940
|
+
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';
|
|
29941
|
+
} | undefined;
|
|
29942
|
+
}[];
|
|
29943
|
+
};
|
|
29944
|
+
formData: {};
|
|
29945
|
+
jsonResponse: {};
|
|
29946
|
+
maxDuration: undefined;
|
|
29947
|
+
};
|
|
29911
29948
|
'/devices/simulate/connect': {
|
|
29912
29949
|
route: '/devices/simulate/connect';
|
|
29913
29950
|
method: 'POST';
|
|
@@ -35210,6 +35247,8 @@ export type Routes = {
|
|
|
35210
35247
|
locked_state: string;
|
|
35211
35248
|
/** Model for a Salto KS device. */
|
|
35212
35249
|
model?: string | undefined;
|
|
35250
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
35251
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
35213
35252
|
} | undefined;
|
|
35214
35253
|
/** Metadata for a Genie device. */
|
|
35215
35254
|
genie_metadata?: {
|
|
@@ -35575,6 +35614,8 @@ export type Routes = {
|
|
|
35575
35614
|
device_name: string;
|
|
35576
35615
|
/** Device type for an Ultraloq device. */
|
|
35577
35616
|
device_type: string;
|
|
35617
|
+
/** IANA timezone for the Ultraloq device. */
|
|
35618
|
+
time_zone: string | null;
|
|
35578
35619
|
} | undefined;
|
|
35579
35620
|
}) & ({
|
|
35580
35621
|
/** */
|
|
@@ -36442,6 +36483,8 @@ export type Routes = {
|
|
|
36442
36483
|
locked_state: string;
|
|
36443
36484
|
/** Model for a Salto KS device. */
|
|
36444
36485
|
model?: string | undefined;
|
|
36486
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
36487
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
36445
36488
|
} | undefined;
|
|
36446
36489
|
/** Metadata for a Genie device. */
|
|
36447
36490
|
genie_metadata?: {
|
|
@@ -36807,6 +36850,8 @@ export type Routes = {
|
|
|
36807
36850
|
device_name: string;
|
|
36808
36851
|
/** Device type for an Ultraloq device. */
|
|
36809
36852
|
device_type: string;
|
|
36853
|
+
/** IANA timezone for the Ultraloq device. */
|
|
36854
|
+
time_zone: string | null;
|
|
36810
36855
|
} | undefined;
|
|
36811
36856
|
}) & ({
|
|
36812
36857
|
/** */
|
|
@@ -37724,6 +37769,8 @@ export type Routes = {
|
|
|
37724
37769
|
locked_state: string;
|
|
37725
37770
|
/** Model for a Salto KS device. */
|
|
37726
37771
|
model?: string | undefined;
|
|
37772
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
37773
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
37727
37774
|
} | undefined;
|
|
37728
37775
|
/** Metadata for a Genie device. */
|
|
37729
37776
|
genie_metadata?: {
|
|
@@ -38089,6 +38136,8 @@ export type Routes = {
|
|
|
38089
38136
|
device_name: string;
|
|
38090
38137
|
/** Device type for an Ultraloq device. */
|
|
38091
38138
|
device_type: string;
|
|
38139
|
+
/** IANA timezone for the Ultraloq device. */
|
|
38140
|
+
time_zone: string | null;
|
|
38092
38141
|
} | undefined;
|
|
38093
38142
|
}) & ({
|
|
38094
38143
|
/** */
|
|
@@ -38955,6 +39004,8 @@ export type Routes = {
|
|
|
38955
39004
|
locked_state: string;
|
|
38956
39005
|
/** Model for a Salto KS device. */
|
|
38957
39006
|
model?: string | undefined;
|
|
39007
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
39008
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
38958
39009
|
} | undefined;
|
|
38959
39010
|
/** Metadata for a Genie device. */
|
|
38960
39011
|
genie_metadata?: {
|
|
@@ -39320,6 +39371,8 @@ export type Routes = {
|
|
|
39320
39371
|
device_name: string;
|
|
39321
39372
|
/** Device type for an Ultraloq device. */
|
|
39322
39373
|
device_type: string;
|
|
39374
|
+
/** IANA timezone for the Ultraloq device. */
|
|
39375
|
+
time_zone: string | null;
|
|
39323
39376
|
} | undefined;
|
|
39324
39377
|
}) & ({
|
|
39325
39378
|
/** */
|
|
@@ -45319,6 +45372,8 @@ export type Routes = {
|
|
|
45319
45372
|
locked_state: string;
|
|
45320
45373
|
/** Model for a Salto KS device. */
|
|
45321
45374
|
model?: string | undefined;
|
|
45375
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
45376
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
45322
45377
|
} | undefined;
|
|
45323
45378
|
/** Metadata for a Genie device. */
|
|
45324
45379
|
genie_metadata?: {
|
|
@@ -45684,6 +45739,8 @@ export type Routes = {
|
|
|
45684
45739
|
device_name: string;
|
|
45685
45740
|
/** Device type for an Ultraloq device. */
|
|
45686
45741
|
device_type: string;
|
|
45742
|
+
/** IANA timezone for the Ultraloq device. */
|
|
45743
|
+
time_zone: string | null;
|
|
45687
45744
|
} | undefined;
|
|
45688
45745
|
}) & ({
|
|
45689
45746
|
/** */
|
|
@@ -46550,6 +46607,8 @@ export type Routes = {
|
|
|
46550
46607
|
locked_state: string;
|
|
46551
46608
|
/** Model for a Salto KS device. */
|
|
46552
46609
|
model?: string | undefined;
|
|
46610
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
46611
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
46553
46612
|
} | undefined;
|
|
46554
46613
|
/** Metadata for a Genie device. */
|
|
46555
46614
|
genie_metadata?: {
|
|
@@ -46915,6 +46974,8 @@ export type Routes = {
|
|
|
46915
46974
|
device_name: string;
|
|
46916
46975
|
/** Device type for an Ultraloq device. */
|
|
46917
46976
|
device_type: string;
|
|
46977
|
+
/** IANA timezone for the Ultraloq device. */
|
|
46978
|
+
time_zone: string | null;
|
|
46918
46979
|
} | undefined;
|
|
46919
46980
|
}) & ({
|
|
46920
46981
|
/** */
|
|
@@ -56110,6 +56171,8 @@ export type Routes = {
|
|
|
56110
56171
|
locked_state: string;
|
|
56111
56172
|
/** Model for a Salto KS device. */
|
|
56112
56173
|
model?: string | undefined;
|
|
56174
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
56175
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
56113
56176
|
} | undefined;
|
|
56114
56177
|
/** Metadata for a Genie device. */
|
|
56115
56178
|
genie_metadata?: {
|
|
@@ -56475,6 +56538,8 @@ export type Routes = {
|
|
|
56475
56538
|
device_name: string;
|
|
56476
56539
|
/** Device type for an Ultraloq device. */
|
|
56477
56540
|
device_type: string;
|
|
56541
|
+
/** IANA timezone for the Ultraloq device. */
|
|
56542
|
+
time_zone: string | null;
|
|
56478
56543
|
} | undefined;
|
|
56479
56544
|
}) & ({
|
|
56480
56545
|
/** */
|
|
@@ -61787,6 +61852,8 @@ export type Routes = {
|
|
|
61787
61852
|
locked_state: string;
|
|
61788
61853
|
/** Model for a Salto KS device. */
|
|
61789
61854
|
model?: string | undefined;
|
|
61855
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
61856
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
61790
61857
|
} | undefined;
|
|
61791
61858
|
/** Metadata for a Genie device. */
|
|
61792
61859
|
genie_metadata?: {
|
|
@@ -62152,6 +62219,8 @@ export type Routes = {
|
|
|
62152
62219
|
device_name: string;
|
|
62153
62220
|
/** Device type for an Ultraloq device. */
|
|
62154
62221
|
device_type: string;
|
|
62222
|
+
/** IANA timezone for the Ultraloq device. */
|
|
62223
|
+
time_zone: string | null;
|
|
62155
62224
|
} | undefined;
|
|
62156
62225
|
}) & ({
|
|
62157
62226
|
/** */
|
|
@@ -65623,6 +65692,8 @@ export type Routes = {
|
|
|
65623
65692
|
locked_state: string;
|
|
65624
65693
|
/** Model for a Salto KS device. */
|
|
65625
65694
|
model?: string | undefined;
|
|
65695
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
65696
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
65626
65697
|
} | undefined;
|
|
65627
65698
|
/** Metadata for a Genie device. */
|
|
65628
65699
|
genie_metadata?: {
|
|
@@ -65988,6 +66059,8 @@ export type Routes = {
|
|
|
65988
66059
|
device_name: string;
|
|
65989
66060
|
/** Device type for an Ultraloq device. */
|
|
65990
66061
|
device_type: string;
|
|
66062
|
+
/** IANA timezone for the Ultraloq device. */
|
|
66063
|
+
time_zone: string | null;
|
|
65991
66064
|
} | undefined;
|
|
65992
66065
|
}) & ({
|
|
65993
66066
|
/** */
|
|
@@ -66854,6 +66927,8 @@ export type Routes = {
|
|
|
66854
66927
|
locked_state: string;
|
|
66855
66928
|
/** Model for a Salto KS device. */
|
|
66856
66929
|
model?: string | undefined;
|
|
66930
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
66931
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
66857
66932
|
} | undefined;
|
|
66858
66933
|
/** Metadata for a Genie device. */
|
|
66859
66934
|
genie_metadata?: {
|
|
@@ -67219,6 +67294,8 @@ export type Routes = {
|
|
|
67219
67294
|
device_name: string;
|
|
67220
67295
|
/** Device type for an Ultraloq device. */
|
|
67221
67296
|
device_type: string;
|
|
67297
|
+
/** IANA timezone for the Ultraloq device. */
|
|
67298
|
+
time_zone: string | null;
|
|
67222
67299
|
} | undefined;
|
|
67223
67300
|
}) & ({
|
|
67224
67301
|
/** */
|
|
@@ -74105,6 +74182,8 @@ export type Routes = {
|
|
|
74105
74182
|
locked_state: string;
|
|
74106
74183
|
/** Model for a Salto KS device. */
|
|
74107
74184
|
model?: string | undefined;
|
|
74185
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
74186
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
74108
74187
|
} | undefined;
|
|
74109
74188
|
/** Metadata for a Genie device. */
|
|
74110
74189
|
genie_metadata?: {
|
|
@@ -74470,6 +74549,8 @@ export type Routes = {
|
|
|
74470
74549
|
device_name: string;
|
|
74471
74550
|
/** Device type for an Ultraloq device. */
|
|
74472
74551
|
device_type: string;
|
|
74552
|
+
/** IANA timezone for the Ultraloq device. */
|
|
74553
|
+
time_zone: string | null;
|
|
74473
74554
|
} | undefined;
|
|
74474
74555
|
}) & ({
|
|
74475
74556
|
/** */
|
|
@@ -75338,6 +75419,8 @@ export type Routes = {
|
|
|
75338
75419
|
locked_state: string;
|
|
75339
75420
|
/** Model for a Salto KS device. */
|
|
75340
75421
|
model?: string | undefined;
|
|
75422
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
75423
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
75341
75424
|
} | undefined;
|
|
75342
75425
|
/** Metadata for a Genie device. */
|
|
75343
75426
|
genie_metadata?: {
|
|
@@ -75703,6 +75786,8 @@ export type Routes = {
|
|
|
75703
75786
|
device_name: string;
|
|
75704
75787
|
/** Device type for an Ultraloq device. */
|
|
75705
75788
|
device_type: string;
|
|
75789
|
+
/** IANA timezone for the Ultraloq device. */
|
|
75790
|
+
time_zone: string | null;
|
|
75706
75791
|
} | undefined;
|
|
75707
75792
|
}) & ({
|
|
75708
75793
|
/** */
|
|
@@ -77536,6 +77621,8 @@ export type Routes = {
|
|
|
77536
77621
|
locked_state: string;
|
|
77537
77622
|
/** Model for a Salto KS device. */
|
|
77538
77623
|
model?: string | undefined;
|
|
77624
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
77625
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
77539
77626
|
} | undefined;
|
|
77540
77627
|
/** Metadata for a Genie device. */
|
|
77541
77628
|
genie_metadata?: {
|
|
@@ -77901,6 +77988,8 @@ export type Routes = {
|
|
|
77901
77988
|
device_name: string;
|
|
77902
77989
|
/** Device type for an Ultraloq device. */
|
|
77903
77990
|
device_type: string;
|
|
77991
|
+
/** IANA timezone for the Ultraloq device. */
|
|
77992
|
+
time_zone: string | null;
|
|
77904
77993
|
} | undefined;
|
|
77905
77994
|
}) & ({
|
|
77906
77995
|
/** */
|
package/package.json
CHANGED
|
@@ -188,6 +188,12 @@ export const device_metadata = z
|
|
|
188
188
|
.string()
|
|
189
189
|
.describe(`Locked state for a Salto KS device.`),
|
|
190
190
|
model: z.string().optional().describe(`Model for a Salto KS device.`),
|
|
191
|
+
has_custom_pin_subscription: z
|
|
192
|
+
.boolean()
|
|
193
|
+
.optional()
|
|
194
|
+
.describe(
|
|
195
|
+
`Indicates whether the site has a Salto KS subscription that supports custom PINs.`,
|
|
196
|
+
),
|
|
191
197
|
})
|
|
192
198
|
.describe(`Metadata for a Salto KS device.`),
|
|
193
199
|
|
|
@@ -696,6 +702,10 @@ export const device_metadata = z
|
|
|
696
702
|
device_id: z.string().describe(`Device ID for an Ultraloq device.`),
|
|
697
703
|
device_name: z.string().describe(`Device name for an Ultraloq device.`),
|
|
698
704
|
device_type: z.string().describe(`Device type for an Ultraloq device.`),
|
|
705
|
+
time_zone: z
|
|
706
|
+
.string()
|
|
707
|
+
.nullable()
|
|
708
|
+
.describe(`IANA timezone for the Ultraloq device.`),
|
|
699
709
|
})
|
|
700
710
|
.describe(`Metadata for an Ultraloq device.`),
|
|
701
711
|
})
|