@seamapi/types 1.854.0 → 1.856.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.
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  export declare const unmanaged_device: z.ZodObject<Pick<{
3
3
  device_id: z.ZodString;
4
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
4
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
5
5
  space_ids: z.ZodArray<z.ZodString, "many">;
6
6
  nickname: z.ZodOptional<z.ZodString>;
7
7
  display_name: z.ZodString;
@@ -954,16 +954,22 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
954
954
  lock_name: z.ZodString;
955
955
  lock_mac: z.ZodString;
956
956
  has_gateway: z.ZodBoolean;
957
+ timezone_raw_offset_ms: z.ZodNumber;
958
+ time_zone: z.ZodOptional<z.ZodString>;
957
959
  }, "strip", z.ZodTypeAny, {
958
960
  lock_id: number;
959
961
  lock_name: string;
960
962
  has_gateway: boolean;
963
+ timezone_raw_offset_ms: number;
961
964
  lock_mac: string;
965
+ time_zone?: string | undefined;
962
966
  }, {
963
967
  lock_id: number;
964
968
  lock_name: string;
965
969
  has_gateway: boolean;
970
+ timezone_raw_offset_ms: number;
966
971
  lock_mac: string;
972
+ time_zone?: string | undefined;
967
973
  }>>;
968
974
  tado_metadata: z.ZodOptional<z.ZodObject<{
969
975
  serial_no: z.ZodString;
@@ -1343,7 +1349,9 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
1343
1349
  lock_id: number;
1344
1350
  lock_name: string;
1345
1351
  has_gateway: boolean;
1352
+ timezone_raw_offset_ms: number;
1346
1353
  lock_mac: string;
1354
+ time_zone?: string | undefined;
1347
1355
  } | undefined;
1348
1356
  tado_metadata?: {
1349
1357
  serial_no: string;
@@ -1629,7 +1637,9 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
1629
1637
  lock_id: number;
1630
1638
  lock_name: string;
1631
1639
  has_gateway: boolean;
1640
+ timezone_raw_offset_ms: number;
1632
1641
  lock_mac: string;
1642
+ time_zone?: string | undefined;
1633
1643
  } | undefined;
1634
1644
  tado_metadata?: {
1635
1645
  serial_no: string;
@@ -3479,7 +3489,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
3479
3489
  max_active_access_code_count: number;
3480
3490
  })[];
3481
3491
  custom_metadata: Record<string, string | boolean>;
3482
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
3492
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
3483
3493
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
3484
3494
  properties: {
3485
3495
  name: string;
@@ -3740,7 +3750,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
3740
3750
  max_active_access_code_count: number;
3741
3751
  })[];
3742
3752
  custom_metadata: Record<string, string | boolean>;
3743
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
3753
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
3744
3754
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
3745
3755
  properties: {
3746
3756
  name: string;
@@ -11012,7 +11012,7 @@ const openapi = {
11012
11012
  'tedee_lock',
11013
11013
  'akiles_lock',
11014
11014
  'ultraloq_lock',
11015
- 'korelock_lock',
11015
+ 'keyincode_lock',
11016
11016
  'omnitec_lock',
11017
11017
  ],
11018
11018
  type: 'string',
@@ -12616,12 +12616,22 @@ const openapi = {
12616
12616
  description: 'Lock name for an Omnitec device.',
12617
12617
  type: 'string',
12618
12618
  },
12619
+ time_zone: {
12620
+ description: 'IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.',
12621
+ type: 'string',
12622
+ },
12623
+ timezone_raw_offset_ms: {
12624
+ description: 'Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.',
12625
+ format: 'float',
12626
+ type: 'number',
12627
+ },
12619
12628
  },
12620
12629
  required: [
12621
12630
  'lock_id',
12622
12631
  'lock_name',
12623
12632
  'lock_mac',
12624
12633
  'has_gateway',
12634
+ 'timezone_raw_offset_ms',
12625
12635
  ],
12626
12636
  type: 'object',
12627
12637
  },
@@ -27742,7 +27752,7 @@ const openapi = {
27742
27752
  'tedee_lock',
27743
27753
  'akiles_lock',
27744
27754
  'ultraloq_lock',
27745
- 'korelock_lock',
27755
+ 'keyincode_lock',
27746
27756
  'omnitec_lock',
27747
27757
  ],
27748
27758
  type: 'string',
@@ -49693,7 +49703,7 @@ const openapi = {
49693
49703
  'tedee_lock',
49694
49704
  'akiles_lock',
49695
49705
  'ultraloq_lock',
49696
- 'korelock_lock',
49706
+ 'keyincode_lock',
49697
49707
  'omnitec_lock',
49698
49708
  ],
49699
49709
  type: 'string',
@@ -49769,7 +49779,7 @@ const openapi = {
49769
49779
  'tedee_lock',
49770
49780
  'akiles_lock',
49771
49781
  'ultraloq_lock',
49772
- 'korelock_lock',
49782
+ 'keyincode_lock',
49773
49783
  'omnitec_lock',
49774
49784
  ],
49775
49785
  type: 'string',
@@ -49845,7 +49855,7 @@ const openapi = {
49845
49855
  'controlbyweb',
49846
49856
  'dormakaba_oracode',
49847
49857
  'tedee',
49848
- 'korelock',
49858
+ 'keyincode',
49849
49859
  'akiles',
49850
49860
  'ecobee',
49851
49861
  'honeywell_resideo',
@@ -50134,7 +50144,7 @@ const openapi = {
50134
50144
  'tedee_lock',
50135
50145
  'akiles_lock',
50136
50146
  'ultraloq_lock',
50137
- 'korelock_lock',
50147
+ 'keyincode_lock',
50138
50148
  'omnitec_lock',
50139
50149
  ],
50140
50150
  type: 'string',
@@ -50206,7 +50216,7 @@ const openapi = {
50206
50216
  'tedee_lock',
50207
50217
  'akiles_lock',
50208
50218
  'ultraloq_lock',
50209
- 'korelock_lock',
50219
+ 'keyincode_lock',
50210
50220
  'omnitec_lock',
50211
50221
  ],
50212
50222
  type: 'string',
@@ -50342,7 +50352,7 @@ const openapi = {
50342
50352
  'controlbyweb',
50343
50353
  'dormakaba_oracode',
50344
50354
  'tedee',
50345
- 'korelock',
50355
+ 'keyincode',
50346
50356
  'akiles',
50347
50357
  'ecobee',
50348
50358
  'honeywell_resideo',
@@ -51996,7 +52006,7 @@ const openapi = {
51996
52006
  'tedee_lock',
51997
52007
  'akiles_lock',
51998
52008
  'ultraloq_lock',
51999
- 'korelock_lock',
52009
+ 'keyincode_lock',
52000
52010
  'omnitec_lock',
52001
52011
  ],
52002
52012
  type: 'string',
@@ -52072,7 +52082,7 @@ const openapi = {
52072
52082
  'tedee_lock',
52073
52083
  'akiles_lock',
52074
52084
  'ultraloq_lock',
52075
- 'korelock_lock',
52085
+ 'keyincode_lock',
52076
52086
  'omnitec_lock',
52077
52087
  ],
52078
52088
  type: 'string',
@@ -52148,7 +52158,7 @@ const openapi = {
52148
52158
  'controlbyweb',
52149
52159
  'dormakaba_oracode',
52150
52160
  'tedee',
52151
- 'korelock',
52161
+ 'keyincode',
52152
52162
  'akiles',
52153
52163
  'ecobee',
52154
52164
  'honeywell_resideo',
@@ -52436,7 +52446,7 @@ const openapi = {
52436
52446
  'tedee_lock',
52437
52447
  'akiles_lock',
52438
52448
  'ultraloq_lock',
52439
- 'korelock_lock',
52449
+ 'keyincode_lock',
52440
52450
  'omnitec_lock',
52441
52451
  ],
52442
52452
  type: 'string',
@@ -52508,7 +52518,7 @@ const openapi = {
52508
52518
  'tedee_lock',
52509
52519
  'akiles_lock',
52510
52520
  'ultraloq_lock',
52511
- 'korelock_lock',
52521
+ 'keyincode_lock',
52512
52522
  'omnitec_lock',
52513
52523
  ],
52514
52524
  type: 'string',
@@ -52644,7 +52654,7 @@ const openapi = {
52644
52654
  'controlbyweb',
52645
52655
  'dormakaba_oracode',
52646
52656
  'tedee',
52647
- 'korelock',
52657
+ 'keyincode',
52648
52658
  'akiles',
52649
52659
  'ecobee',
52650
52660
  'honeywell_resideo',
@@ -54657,7 +54667,7 @@ const openapi = {
54657
54667
  'tedee_lock',
54658
54668
  'akiles_lock',
54659
54669
  'ultraloq_lock',
54660
- 'korelock_lock',
54670
+ 'keyincode_lock',
54661
54671
  'omnitec_lock',
54662
54672
  ],
54663
54673
  type: 'string',
@@ -54697,7 +54707,7 @@ const openapi = {
54697
54707
  'tedee_lock',
54698
54708
  'akiles_lock',
54699
54709
  'ultraloq_lock',
54700
- 'korelock_lock',
54710
+ 'keyincode_lock',
54701
54711
  'omnitec_lock',
54702
54712
  ],
54703
54713
  type: 'string',
@@ -54735,7 +54745,7 @@ const openapi = {
54735
54745
  'four_suites',
54736
54746
  'dormakaba_oracode',
54737
54747
  'tedee',
54738
- 'korelock',
54748
+ 'keyincode',
54739
54749
  'akiles',
54740
54750
  'korelock',
54741
54751
  'smartthings',
@@ -55010,7 +55020,7 @@ const openapi = {
55010
55020
  'tedee_lock',
55011
55021
  'akiles_lock',
55012
55022
  'ultraloq_lock',
55013
- 'korelock_lock',
55023
+ 'keyincode_lock',
55014
55024
  'omnitec_lock',
55015
55025
  ],
55016
55026
  type: 'string',
@@ -55046,7 +55056,7 @@ const openapi = {
55046
55056
  'tedee_lock',
55047
55057
  'akiles_lock',
55048
55058
  'ultraloq_lock',
55049
- 'korelock_lock',
55059
+ 'keyincode_lock',
55050
55060
  'omnitec_lock',
55051
55061
  ],
55052
55062
  type: 'string',
@@ -55144,7 +55154,7 @@ const openapi = {
55144
55154
  'four_suites',
55145
55155
  'dormakaba_oracode',
55146
55156
  'tedee',
55147
- 'korelock',
55157
+ 'keyincode',
55148
55158
  'akiles',
55149
55159
  'korelock',
55150
55160
  'smartthings',