@seamapi/types 1.704.0 → 1.705.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.
@@ -5005,6 +5005,7 @@ declare const acs_system: z.ZodObject<{
5005
5005
  error_code: "salto_ks_certification_expired";
5006
5006
  })[];
5007
5007
  connected_account_id: string;
5008
+ image_url: string;
5008
5009
  warnings: ({
5009
5010
  message: string;
5010
5011
  created_at: string;
@@ -5015,7 +5016,6 @@ declare const acs_system: z.ZodObject<{
5015
5016
  warning_code: "time_zone_does_not_match_location";
5016
5017
  misconfigured_acs_entrance_ids?: string[] | undefined;
5017
5018
  })[];
5018
- image_url: string;
5019
5019
  image_alt_text: string;
5020
5020
  location: {
5021
5021
  time_zone: string | null;
@@ -5070,6 +5070,7 @@ declare const acs_system: z.ZodObject<{
5070
5070
  error_code: "salto_ks_certification_expired";
5071
5071
  })[];
5072
5072
  connected_account_id: string;
5073
+ image_url: string;
5073
5074
  warnings: ({
5074
5075
  message: string;
5075
5076
  created_at: string;
@@ -5080,7 +5081,6 @@ declare const acs_system: z.ZodObject<{
5080
5081
  warning_code: "time_zone_does_not_match_location";
5081
5082
  misconfigured_acs_entrance_ids?: string[] | undefined;
5082
5083
  })[];
5083
- image_url: string;
5084
5084
  image_alt_text: string;
5085
5085
  location: {
5086
5086
  time_zone: string | null;
@@ -10614,8 +10614,10 @@ declare const batch: z.ZodObject<{
10614
10614
  status: "critical" | "low" | "good" | "full";
10615
10615
  level: number;
10616
10616
  } | undefined;
10617
+ image_url?: string | undefined;
10617
10618
  battery_level?: number | undefined;
10618
10619
  serial_number?: string | undefined;
10620
+ manufacturer?: string | undefined;
10619
10621
  accessory_keypad?: {
10620
10622
  is_connected: boolean;
10621
10623
  battery?: {
@@ -10623,8 +10625,6 @@ declare const batch: z.ZodObject<{
10623
10625
  } | undefined;
10624
10626
  } | undefined;
10625
10627
  has_direct_power?: boolean | undefined;
10626
- manufacturer?: string | undefined;
10627
- image_url?: string | undefined;
10628
10628
  image_alt_text?: string | undefined;
10629
10629
  online_access_codes_enabled?: boolean | undefined;
10630
10630
  offline_access_codes_enabled?: boolean | undefined;
@@ -10651,8 +10651,10 @@ declare const batch: z.ZodObject<{
10651
10651
  status: "critical" | "low" | "good" | "full";
10652
10652
  level: number;
10653
10653
  } | undefined;
10654
+ image_url?: string | undefined;
10654
10655
  battery_level?: number | undefined;
10655
10656
  serial_number?: string | undefined;
10657
+ manufacturer?: string | undefined;
10656
10658
  accessory_keypad?: {
10657
10659
  is_connected: boolean;
10658
10660
  battery?: {
@@ -10660,8 +10662,6 @@ declare const batch: z.ZodObject<{
10660
10662
  } | undefined;
10661
10663
  } | undefined;
10662
10664
  has_direct_power?: boolean | undefined;
10663
- manufacturer?: string | undefined;
10664
- image_url?: string | undefined;
10665
10665
  image_alt_text?: string | undefined;
10666
10666
  online_access_codes_enabled?: boolean | undefined;
10667
10667
  offline_access_codes_enabled?: boolean | undefined;
@@ -13405,6 +13405,35 @@ declare const batch: z.ZodObject<{
13405
13405
  created_at: z.ZodString;
13406
13406
  is_managed: z.ZodLiteral<true>;
13407
13407
  custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
13408
+ device_provider: z.ZodOptional<z.ZodObject<{
13409
+ provider_category: z.ZodString;
13410
+ device_provider_name: z.ZodString;
13411
+ display_name: z.ZodString;
13412
+ image_url: z.ZodOptional<z.ZodString>;
13413
+ }, "strip", z.ZodTypeAny, {
13414
+ display_name: string;
13415
+ provider_category: string;
13416
+ device_provider_name: string;
13417
+ image_url?: string | undefined;
13418
+ }, {
13419
+ display_name: string;
13420
+ provider_category: string;
13421
+ device_provider_name: string;
13422
+ image_url?: string | undefined;
13423
+ }>>;
13424
+ device_manufacturer: z.ZodOptional<z.ZodObject<{
13425
+ manufacturer: z.ZodString;
13426
+ display_name: z.ZodString;
13427
+ image_url: z.ZodOptional<z.ZodString>;
13428
+ }, "strip", z.ZodTypeAny, {
13429
+ display_name: string;
13430
+ manufacturer: string;
13431
+ image_url?: string | undefined;
13432
+ }, {
13433
+ display_name: string;
13434
+ manufacturer: string;
13435
+ image_url?: string | undefined;
13436
+ }>>;
13408
13437
  } & {
13409
13438
  can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
13410
13439
  can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
@@ -13634,8 +13663,10 @@ declare const batch: z.ZodObject<{
13634
13663
  status: "critical" | "low" | "good" | "full";
13635
13664
  level: number;
13636
13665
  } | undefined;
13666
+ image_url?: string | undefined;
13637
13667
  battery_level?: number | undefined;
13638
13668
  serial_number?: string | undefined;
13669
+ manufacturer?: string | undefined;
13639
13670
  accessory_keypad?: {
13640
13671
  is_connected: boolean;
13641
13672
  battery?: {
@@ -13643,8 +13674,6 @@ declare const batch: z.ZodObject<{
13643
13674
  } | undefined;
13644
13675
  } | undefined;
13645
13676
  has_direct_power?: boolean | undefined;
13646
- manufacturer?: string | undefined;
13647
- image_url?: string | undefined;
13648
13677
  image_alt_text?: string | undefined;
13649
13678
  online_access_codes_enabled?: boolean | undefined;
13650
13679
  offline_access_codes_enabled?: boolean | undefined;
@@ -14104,6 +14133,17 @@ declare const batch: z.ZodObject<{
14104
14133
  can_simulate_hub_disconnection?: boolean | undefined;
14105
14134
  can_simulate_paid_subscription?: boolean | undefined;
14106
14135
  nickname?: string | undefined;
14136
+ device_provider?: {
14137
+ display_name: string;
14138
+ provider_category: string;
14139
+ device_provider_name: string;
14140
+ image_url?: string | undefined;
14141
+ } | undefined;
14142
+ device_manufacturer?: {
14143
+ display_name: string;
14144
+ manufacturer: string;
14145
+ image_url?: string | undefined;
14146
+ } | undefined;
14107
14147
  }, {
14108
14148
  display_name: string;
14109
14149
  device_id: string;
@@ -14313,8 +14353,10 @@ declare const batch: z.ZodObject<{
14313
14353
  status: "critical" | "low" | "good" | "full";
14314
14354
  level: number;
14315
14355
  } | undefined;
14356
+ image_url?: string | undefined;
14316
14357
  battery_level?: number | undefined;
14317
14358
  serial_number?: string | undefined;
14359
+ manufacturer?: string | undefined;
14318
14360
  accessory_keypad?: {
14319
14361
  is_connected: boolean;
14320
14362
  battery?: {
@@ -14322,8 +14364,6 @@ declare const batch: z.ZodObject<{
14322
14364
  } | undefined;
14323
14365
  } | undefined;
14324
14366
  has_direct_power?: boolean | undefined;
14325
- manufacturer?: string | undefined;
14326
- image_url?: string | undefined;
14327
14367
  image_alt_text?: string | undefined;
14328
14368
  online_access_codes_enabled?: boolean | undefined;
14329
14369
  offline_access_codes_enabled?: boolean | undefined;
@@ -14783,6 +14823,17 @@ declare const batch: z.ZodObject<{
14783
14823
  can_simulate_hub_disconnection?: boolean | undefined;
14784
14824
  can_simulate_paid_subscription?: boolean | undefined;
14785
14825
  nickname?: string | undefined;
14826
+ device_provider?: {
14827
+ display_name: string;
14828
+ provider_category: string;
14829
+ device_provider_name: string;
14830
+ image_url?: string | undefined;
14831
+ } | undefined;
14832
+ device_manufacturer?: {
14833
+ display_name: string;
14834
+ manufacturer: string;
14835
+ image_url?: string | undefined;
14836
+ } | undefined;
14786
14837
  }>, "many">>;
14787
14838
  connected_accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
14788
14839
  connected_account_id: z.ZodString;
@@ -14808,6 +14859,7 @@ declare const batch: z.ZodObject<{
14808
14859
  }>>;
14809
14860
  account_type: z.ZodOptional<z.ZodString>;
14810
14861
  account_type_display_name: z.ZodString;
14862
+ image_url: z.ZodOptional<z.ZodString>;
14811
14863
  display_name: z.ZodString;
14812
14864
  errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
14813
14865
  created_at: z.ZodString;
@@ -15088,6 +15140,7 @@ declare const batch: z.ZodObject<{
15088
15140
  exclusive?: boolean | undefined;
15089
15141
  } | undefined;
15090
15142
  account_type?: string | undefined;
15143
+ image_url?: string | undefined;
15091
15144
  customer_key?: string | undefined;
15092
15145
  }, {
15093
15146
  display_name: string;
@@ -15157,6 +15210,7 @@ declare const batch: z.ZodObject<{
15157
15210
  exclusive?: boolean | undefined;
15158
15211
  } | undefined;
15159
15212
  account_type?: string | undefined;
15213
+ image_url?: string | undefined;
15160
15214
  customer_key?: string | undefined;
15161
15215
  }>, "many">>;
15162
15216
  acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -15654,6 +15708,7 @@ declare const batch: z.ZodObject<{
15654
15708
  error_code: "salto_ks_certification_expired";
15655
15709
  })[];
15656
15710
  connected_account_id: string;
15711
+ image_url: string;
15657
15712
  warnings: ({
15658
15713
  message: string;
15659
15714
  created_at: string;
@@ -15664,7 +15719,6 @@ declare const batch: z.ZodObject<{
15664
15719
  warning_code: "time_zone_does_not_match_location";
15665
15720
  misconfigured_acs_entrance_ids?: string[] | undefined;
15666
15721
  })[];
15667
- image_url: string;
15668
15722
  image_alt_text: string;
15669
15723
  location: {
15670
15724
  time_zone: string | null;
@@ -15719,6 +15773,7 @@ declare const batch: z.ZodObject<{
15719
15773
  error_code: "salto_ks_certification_expired";
15720
15774
  })[];
15721
15775
  connected_account_id: string;
15776
+ image_url: string;
15722
15777
  warnings: ({
15723
15778
  message: string;
15724
15779
  created_at: string;
@@ -15729,7 +15784,6 @@ declare const batch: z.ZodObject<{
15729
15784
  warning_code: "time_zone_does_not_match_location";
15730
15785
  misconfigured_acs_entrance_ids?: string[] | undefined;
15731
15786
  })[];
15732
- image_url: string;
15733
15787
  image_alt_text: string;
15734
15788
  location: {
15735
15789
  time_zone: string | null;
@@ -21883,8 +21937,10 @@ declare const batch: z.ZodObject<{
21883
21937
  status: "critical" | "low" | "good" | "full";
21884
21938
  level: number;
21885
21939
  } | undefined;
21940
+ image_url?: string | undefined;
21886
21941
  battery_level?: number | undefined;
21887
21942
  serial_number?: string | undefined;
21943
+ manufacturer?: string | undefined;
21888
21944
  accessory_keypad?: {
21889
21945
  is_connected: boolean;
21890
21946
  battery?: {
@@ -21892,8 +21948,6 @@ declare const batch: z.ZodObject<{
21892
21948
  } | undefined;
21893
21949
  } | undefined;
21894
21950
  has_direct_power?: boolean | undefined;
21895
- manufacturer?: string | undefined;
21896
- image_url?: string | undefined;
21897
21951
  image_alt_text?: string | undefined;
21898
21952
  online_access_codes_enabled?: boolean | undefined;
21899
21953
  offline_access_codes_enabled?: boolean | undefined;
@@ -21920,8 +21974,10 @@ declare const batch: z.ZodObject<{
21920
21974
  status: "critical" | "low" | "good" | "full";
21921
21975
  level: number;
21922
21976
  } | undefined;
21977
+ image_url?: string | undefined;
21923
21978
  battery_level?: number | undefined;
21924
21979
  serial_number?: string | undefined;
21980
+ manufacturer?: string | undefined;
21925
21981
  accessory_keypad?: {
21926
21982
  is_connected: boolean;
21927
21983
  battery?: {
@@ -21929,8 +21985,6 @@ declare const batch: z.ZodObject<{
21929
21985
  } | undefined;
21930
21986
  } | undefined;
21931
21987
  has_direct_power?: boolean | undefined;
21932
- manufacturer?: string | undefined;
21933
- image_url?: string | undefined;
21934
21988
  image_alt_text?: string | undefined;
21935
21989
  online_access_codes_enabled?: boolean | undefined;
21936
21990
  offline_access_codes_enabled?: boolean | undefined;
@@ -24674,6 +24728,35 @@ declare const batch: z.ZodObject<{
24674
24728
  created_at: z.ZodString;
24675
24729
  is_managed: z.ZodLiteral<true>;
24676
24730
  custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
24731
+ device_provider: z.ZodOptional<z.ZodObject<{
24732
+ provider_category: z.ZodString;
24733
+ device_provider_name: z.ZodString;
24734
+ display_name: z.ZodString;
24735
+ image_url: z.ZodOptional<z.ZodString>;
24736
+ }, "strip", z.ZodTypeAny, {
24737
+ display_name: string;
24738
+ provider_category: string;
24739
+ device_provider_name: string;
24740
+ image_url?: string | undefined;
24741
+ }, {
24742
+ display_name: string;
24743
+ provider_category: string;
24744
+ device_provider_name: string;
24745
+ image_url?: string | undefined;
24746
+ }>>;
24747
+ device_manufacturer: z.ZodOptional<z.ZodObject<{
24748
+ manufacturer: z.ZodString;
24749
+ display_name: z.ZodString;
24750
+ image_url: z.ZodOptional<z.ZodString>;
24751
+ }, "strip", z.ZodTypeAny, {
24752
+ display_name: string;
24753
+ manufacturer: string;
24754
+ image_url?: string | undefined;
24755
+ }, {
24756
+ display_name: string;
24757
+ manufacturer: string;
24758
+ image_url?: string | undefined;
24759
+ }>>;
24677
24760
  } & {
24678
24761
  can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
24679
24762
  can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
@@ -24773,7 +24856,7 @@ declare const batch: z.ZodObject<{
24773
24856
  supports_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
24774
24857
  noise_level_decibels: z.ZodOptional<z.ZodNumber>;
24775
24858
  currently_triggering_noise_threshold_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
24776
- }, "battery" | "name" | "model" | "battery_level" | "online" | "accessory_keypad" | "manufacturer" | "image_url" | "image_alt_text" | "online_access_codes_enabled" | "offline_access_codes_enabled">, "strip", z.ZodTypeAny, {
24859
+ }, "battery" | "name" | "image_url" | "model" | "battery_level" | "manufacturer" | "online" | "accessory_keypad" | "image_alt_text" | "online_access_codes_enabled" | "offline_access_codes_enabled">, "strip", z.ZodTypeAny, {
24777
24860
  name: string;
24778
24861
  model: {
24779
24862
  display_name: string;
@@ -24789,15 +24872,15 @@ declare const batch: z.ZodObject<{
24789
24872
  status: "critical" | "low" | "good" | "full";
24790
24873
  level: number;
24791
24874
  } | undefined;
24875
+ image_url?: string | undefined;
24792
24876
  battery_level?: number | undefined;
24877
+ manufacturer?: string | undefined;
24793
24878
  accessory_keypad?: {
24794
24879
  is_connected: boolean;
24795
24880
  battery?: {
24796
24881
  level: number;
24797
24882
  } | undefined;
24798
24883
  } | undefined;
24799
- manufacturer?: string | undefined;
24800
- image_url?: string | undefined;
24801
24884
  image_alt_text?: string | undefined;
24802
24885
  online_access_codes_enabled?: boolean | undefined;
24803
24886
  offline_access_codes_enabled?: boolean | undefined;
@@ -24817,15 +24900,15 @@ declare const batch: z.ZodObject<{
24817
24900
  status: "critical" | "low" | "good" | "full";
24818
24901
  level: number;
24819
24902
  } | undefined;
24903
+ image_url?: string | undefined;
24820
24904
  battery_level?: number | undefined;
24905
+ manufacturer?: string | undefined;
24821
24906
  accessory_keypad?: {
24822
24907
  is_connected: boolean;
24823
24908
  battery?: {
24824
24909
  level: number;
24825
24910
  } | undefined;
24826
24911
  } | undefined;
24827
- manufacturer?: string | undefined;
24828
- image_url?: string | undefined;
24829
24912
  image_alt_text?: string | undefined;
24830
24913
  online_access_codes_enabled?: boolean | undefined;
24831
24914
  offline_access_codes_enabled?: boolean | undefined;
@@ -25054,15 +25137,15 @@ declare const batch: z.ZodObject<{
25054
25137
  status: "critical" | "low" | "good" | "full";
25055
25138
  level: number;
25056
25139
  } | undefined;
25140
+ image_url?: string | undefined;
25057
25141
  battery_level?: number | undefined;
25142
+ manufacturer?: string | undefined;
25058
25143
  accessory_keypad?: {
25059
25144
  is_connected: boolean;
25060
25145
  battery?: {
25061
25146
  level: number;
25062
25147
  } | undefined;
25063
25148
  } | undefined;
25064
- manufacturer?: string | undefined;
25065
- image_url?: string | undefined;
25066
25149
  image_alt_text?: string | undefined;
25067
25150
  online_access_codes_enabled?: boolean | undefined;
25068
25151
  offline_access_codes_enabled?: boolean | undefined;
@@ -25295,15 +25378,15 @@ declare const batch: z.ZodObject<{
25295
25378
  status: "critical" | "low" | "good" | "full";
25296
25379
  level: number;
25297
25380
  } | undefined;
25381
+ image_url?: string | undefined;
25298
25382
  battery_level?: number | undefined;
25383
+ manufacturer?: string | undefined;
25299
25384
  accessory_keypad?: {
25300
25385
  is_connected: boolean;
25301
25386
  battery?: {
25302
25387
  level: number;
25303
25388
  } | undefined;
25304
25389
  } | undefined;
25305
- manufacturer?: string | undefined;
25306
- image_url?: string | undefined;
25307
25390
  image_alt_text?: string | undefined;
25308
25391
  online_access_codes_enabled?: boolean | undefined;
25309
25392
  offline_access_codes_enabled?: boolean | undefined;
@@ -32162,8 +32245,10 @@ declare const batch: z.ZodObject<{
32162
32245
  status: "critical" | "low" | "good" | "full";
32163
32246
  level: number;
32164
32247
  } | undefined;
32248
+ image_url?: string | undefined;
32165
32249
  battery_level?: number | undefined;
32166
32250
  serial_number?: string | undefined;
32251
+ manufacturer?: string | undefined;
32167
32252
  accessory_keypad?: {
32168
32253
  is_connected: boolean;
32169
32254
  battery?: {
@@ -32171,8 +32256,6 @@ declare const batch: z.ZodObject<{
32171
32256
  } | undefined;
32172
32257
  } | undefined;
32173
32258
  has_direct_power?: boolean | undefined;
32174
- manufacturer?: string | undefined;
32175
- image_url?: string | undefined;
32176
32259
  image_alt_text?: string | undefined;
32177
32260
  online_access_codes_enabled?: boolean | undefined;
32178
32261
  offline_access_codes_enabled?: boolean | undefined;
@@ -32632,6 +32715,17 @@ declare const batch: z.ZodObject<{
32632
32715
  can_simulate_hub_disconnection?: boolean | undefined;
32633
32716
  can_simulate_paid_subscription?: boolean | undefined;
32634
32717
  nickname?: string | undefined;
32718
+ device_provider?: {
32719
+ display_name: string;
32720
+ provider_category: string;
32721
+ device_provider_name: string;
32722
+ image_url?: string | undefined;
32723
+ } | undefined;
32724
+ device_manufacturer?: {
32725
+ display_name: string;
32726
+ manufacturer: string;
32727
+ image_url?: string | undefined;
32728
+ } | undefined;
32635
32729
  }[] | undefined;
32636
32730
  connected_accounts?: {
32637
32731
  display_name: string;
@@ -32701,6 +32795,7 @@ declare const batch: z.ZodObject<{
32701
32795
  exclusive?: boolean | undefined;
32702
32796
  } | undefined;
32703
32797
  account_type?: string | undefined;
32798
+ image_url?: string | undefined;
32704
32799
  customer_key?: string | undefined;
32705
32800
  }[] | undefined;
32706
32801
  acs_entrances?: {
@@ -32805,6 +32900,7 @@ declare const batch: z.ZodObject<{
32805
32900
  error_code: "salto_ks_certification_expired";
32806
32901
  })[];
32807
32902
  connected_account_id: string;
32903
+ image_url: string;
32808
32904
  warnings: ({
32809
32905
  message: string;
32810
32906
  created_at: string;
@@ -32815,7 +32911,6 @@ declare const batch: z.ZodObject<{
32815
32911
  warning_code: "time_zone_does_not_match_location";
32816
32912
  misconfigured_acs_entrance_ids?: string[] | undefined;
32817
32913
  })[];
32818
- image_url: string;
32819
32914
  image_alt_text: string;
32820
32915
  location: {
32821
32916
  time_zone: string | null;
@@ -34249,15 +34344,15 @@ declare const batch: z.ZodObject<{
34249
34344
  status: "critical" | "low" | "good" | "full";
34250
34345
  level: number;
34251
34346
  } | undefined;
34347
+ image_url?: string | undefined;
34252
34348
  battery_level?: number | undefined;
34349
+ manufacturer?: string | undefined;
34253
34350
  accessory_keypad?: {
34254
34351
  is_connected: boolean;
34255
34352
  battery?: {
34256
34353
  level: number;
34257
34354
  } | undefined;
34258
34355
  } | undefined;
34259
- manufacturer?: string | undefined;
34260
- image_url?: string | undefined;
34261
34356
  image_alt_text?: string | undefined;
34262
34357
  online_access_codes_enabled?: boolean | undefined;
34263
34358
  offline_access_codes_enabled?: boolean | undefined;
@@ -36242,8 +36337,10 @@ declare const batch: z.ZodObject<{
36242
36337
  status: "critical" | "low" | "good" | "full";
36243
36338
  level: number;
36244
36339
  } | undefined;
36340
+ image_url?: string | undefined;
36245
36341
  battery_level?: number | undefined;
36246
36342
  serial_number?: string | undefined;
36343
+ manufacturer?: string | undefined;
36247
36344
  accessory_keypad?: {
36248
36345
  is_connected: boolean;
36249
36346
  battery?: {
@@ -36251,8 +36348,6 @@ declare const batch: z.ZodObject<{
36251
36348
  } | undefined;
36252
36349
  } | undefined;
36253
36350
  has_direct_power?: boolean | undefined;
36254
- manufacturer?: string | undefined;
36255
- image_url?: string | undefined;
36256
36351
  image_alt_text?: string | undefined;
36257
36352
  online_access_codes_enabled?: boolean | undefined;
36258
36353
  offline_access_codes_enabled?: boolean | undefined;
@@ -36712,6 +36807,17 @@ declare const batch: z.ZodObject<{
36712
36807
  can_simulate_hub_disconnection?: boolean | undefined;
36713
36808
  can_simulate_paid_subscription?: boolean | undefined;
36714
36809
  nickname?: string | undefined;
36810
+ device_provider?: {
36811
+ display_name: string;
36812
+ provider_category: string;
36813
+ device_provider_name: string;
36814
+ image_url?: string | undefined;
36815
+ } | undefined;
36816
+ device_manufacturer?: {
36817
+ display_name: string;
36818
+ manufacturer: string;
36819
+ image_url?: string | undefined;
36820
+ } | undefined;
36715
36821
  }[] | undefined;
36716
36822
  connected_accounts?: {
36717
36823
  display_name: string;
@@ -36781,6 +36887,7 @@ declare const batch: z.ZodObject<{
36781
36887
  exclusive?: boolean | undefined;
36782
36888
  } | undefined;
36783
36889
  account_type?: string | undefined;
36890
+ image_url?: string | undefined;
36784
36891
  customer_key?: string | undefined;
36785
36892
  }[] | undefined;
36786
36893
  acs_entrances?: {
@@ -36885,6 +36992,7 @@ declare const batch: z.ZodObject<{
36885
36992
  error_code: "salto_ks_certification_expired";
36886
36993
  })[];
36887
36994
  connected_account_id: string;
36995
+ image_url: string;
36888
36996
  warnings: ({
36889
36997
  message: string;
36890
36998
  created_at: string;
@@ -36895,7 +37003,6 @@ declare const batch: z.ZodObject<{
36895
37003
  warning_code: "time_zone_does_not_match_location";
36896
37004
  misconfigured_acs_entrance_ids?: string[] | undefined;
36897
37005
  })[];
36898
- image_url: string;
36899
37006
  image_alt_text: string;
36900
37007
  location: {
36901
37008
  time_zone: string | null;
@@ -38329,15 +38436,15 @@ declare const batch: z.ZodObject<{
38329
38436
  status: "critical" | "low" | "good" | "full";
38330
38437
  level: number;
38331
38438
  } | undefined;
38439
+ image_url?: string | undefined;
38332
38440
  battery_level?: number | undefined;
38441
+ manufacturer?: string | undefined;
38333
38442
  accessory_keypad?: {
38334
38443
  is_connected: boolean;
38335
38444
  battery?: {
38336
38445
  level: number;
38337
38446
  } | undefined;
38338
38447
  } | undefined;
38339
- manufacturer?: string | undefined;
38340
- image_url?: string | undefined;
38341
38448
  image_alt_text?: string | undefined;
38342
38449
  online_access_codes_enabled?: boolean | undefined;
38343
38450
  offline_access_codes_enabled?: boolean | undefined;
@@ -40521,6 +40628,7 @@ declare const connected_account: z.ZodObject<{
40521
40628
  }>>;
40522
40629
  account_type: z.ZodOptional<z.ZodString>;
40523
40630
  account_type_display_name: z.ZodString;
40631
+ image_url: z.ZodOptional<z.ZodString>;
40524
40632
  display_name: z.ZodString;
40525
40633
  errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
40526
40634
  created_at: z.ZodString;
@@ -40801,6 +40909,7 @@ declare const connected_account: z.ZodObject<{
40801
40909
  exclusive?: boolean | undefined;
40802
40910
  } | undefined;
40803
40911
  account_type?: string | undefined;
40912
+ image_url?: string | undefined;
40804
40913
  customer_key?: string | undefined;
40805
40914
  }, {
40806
40915
  display_name: string;
@@ -40870,6 +40979,7 @@ declare const connected_account: z.ZodObject<{
40870
40979
  exclusive?: boolean | undefined;
40871
40980
  } | undefined;
40872
40981
  account_type?: string | undefined;
40982
+ image_url?: string | undefined;
40873
40983
  customer_key?: string | undefined;
40874
40984
  }>;
40875
40985
  type ConnectedAccount = z.infer<typeof connected_account>;
@@ -41577,8 +41687,10 @@ declare const device: z.ZodObject<{
41577
41687
  status: "critical" | "low" | "good" | "full";
41578
41688
  level: number;
41579
41689
  } | undefined;
41690
+ image_url?: string | undefined;
41580
41691
  battery_level?: number | undefined;
41581
41692
  serial_number?: string | undefined;
41693
+ manufacturer?: string | undefined;
41582
41694
  accessory_keypad?: {
41583
41695
  is_connected: boolean;
41584
41696
  battery?: {
@@ -41586,8 +41698,6 @@ declare const device: z.ZodObject<{
41586
41698
  } | undefined;
41587
41699
  } | undefined;
41588
41700
  has_direct_power?: boolean | undefined;
41589
- manufacturer?: string | undefined;
41590
- image_url?: string | undefined;
41591
41701
  image_alt_text?: string | undefined;
41592
41702
  online_access_codes_enabled?: boolean | undefined;
41593
41703
  offline_access_codes_enabled?: boolean | undefined;
@@ -41614,8 +41724,10 @@ declare const device: z.ZodObject<{
41614
41724
  status: "critical" | "low" | "good" | "full";
41615
41725
  level: number;
41616
41726
  } | undefined;
41727
+ image_url?: string | undefined;
41617
41728
  battery_level?: number | undefined;
41618
41729
  serial_number?: string | undefined;
41730
+ manufacturer?: string | undefined;
41619
41731
  accessory_keypad?: {
41620
41732
  is_connected: boolean;
41621
41733
  battery?: {
@@ -41623,8 +41735,6 @@ declare const device: z.ZodObject<{
41623
41735
  } | undefined;
41624
41736
  } | undefined;
41625
41737
  has_direct_power?: boolean | undefined;
41626
- manufacturer?: string | undefined;
41627
- image_url?: string | undefined;
41628
41738
  image_alt_text?: string | undefined;
41629
41739
  online_access_codes_enabled?: boolean | undefined;
41630
41740
  offline_access_codes_enabled?: boolean | undefined;
@@ -44368,6 +44478,35 @@ declare const device: z.ZodObject<{
44368
44478
  created_at: z.ZodString;
44369
44479
  is_managed: z.ZodLiteral<true>;
44370
44480
  custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
44481
+ device_provider: z.ZodOptional<z.ZodObject<{
44482
+ provider_category: z.ZodString;
44483
+ device_provider_name: z.ZodString;
44484
+ display_name: z.ZodString;
44485
+ image_url: z.ZodOptional<z.ZodString>;
44486
+ }, "strip", z.ZodTypeAny, {
44487
+ display_name: string;
44488
+ provider_category: string;
44489
+ device_provider_name: string;
44490
+ image_url?: string | undefined;
44491
+ }, {
44492
+ display_name: string;
44493
+ provider_category: string;
44494
+ device_provider_name: string;
44495
+ image_url?: string | undefined;
44496
+ }>>;
44497
+ device_manufacturer: z.ZodOptional<z.ZodObject<{
44498
+ manufacturer: z.ZodString;
44499
+ display_name: z.ZodString;
44500
+ image_url: z.ZodOptional<z.ZodString>;
44501
+ }, "strip", z.ZodTypeAny, {
44502
+ display_name: string;
44503
+ manufacturer: string;
44504
+ image_url?: string | undefined;
44505
+ }, {
44506
+ display_name: string;
44507
+ manufacturer: string;
44508
+ image_url?: string | undefined;
44509
+ }>>;
44371
44510
  } & {
44372
44511
  can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
44373
44512
  can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
@@ -44597,8 +44736,10 @@ declare const device: z.ZodObject<{
44597
44736
  status: "critical" | "low" | "good" | "full";
44598
44737
  level: number;
44599
44738
  } | undefined;
44739
+ image_url?: string | undefined;
44600
44740
  battery_level?: number | undefined;
44601
44741
  serial_number?: string | undefined;
44742
+ manufacturer?: string | undefined;
44602
44743
  accessory_keypad?: {
44603
44744
  is_connected: boolean;
44604
44745
  battery?: {
@@ -44606,8 +44747,6 @@ declare const device: z.ZodObject<{
44606
44747
  } | undefined;
44607
44748
  } | undefined;
44608
44749
  has_direct_power?: boolean | undefined;
44609
- manufacturer?: string | undefined;
44610
- image_url?: string | undefined;
44611
44750
  image_alt_text?: string | undefined;
44612
44751
  online_access_codes_enabled?: boolean | undefined;
44613
44752
  offline_access_codes_enabled?: boolean | undefined;
@@ -45067,6 +45206,17 @@ declare const device: z.ZodObject<{
45067
45206
  can_simulate_hub_disconnection?: boolean | undefined;
45068
45207
  can_simulate_paid_subscription?: boolean | undefined;
45069
45208
  nickname?: string | undefined;
45209
+ device_provider?: {
45210
+ display_name: string;
45211
+ provider_category: string;
45212
+ device_provider_name: string;
45213
+ image_url?: string | undefined;
45214
+ } | undefined;
45215
+ device_manufacturer?: {
45216
+ display_name: string;
45217
+ manufacturer: string;
45218
+ image_url?: string | undefined;
45219
+ } | undefined;
45070
45220
  }, {
45071
45221
  display_name: string;
45072
45222
  device_id: string;
@@ -45276,8 +45426,10 @@ declare const device: z.ZodObject<{
45276
45426
  status: "critical" | "low" | "good" | "full";
45277
45427
  level: number;
45278
45428
  } | undefined;
45429
+ image_url?: string | undefined;
45279
45430
  battery_level?: number | undefined;
45280
45431
  serial_number?: string | undefined;
45432
+ manufacturer?: string | undefined;
45281
45433
  accessory_keypad?: {
45282
45434
  is_connected: boolean;
45283
45435
  battery?: {
@@ -45285,8 +45437,6 @@ declare const device: z.ZodObject<{
45285
45437
  } | undefined;
45286
45438
  } | undefined;
45287
45439
  has_direct_power?: boolean | undefined;
45288
- manufacturer?: string | undefined;
45289
- image_url?: string | undefined;
45290
45440
  image_alt_text?: string | undefined;
45291
45441
  online_access_codes_enabled?: boolean | undefined;
45292
45442
  offline_access_codes_enabled?: boolean | undefined;
@@ -45746,6 +45896,17 @@ declare const device: z.ZodObject<{
45746
45896
  can_simulate_hub_disconnection?: boolean | undefined;
45747
45897
  can_simulate_paid_subscription?: boolean | undefined;
45748
45898
  nickname?: string | undefined;
45899
+ device_provider?: {
45900
+ display_name: string;
45901
+ provider_category: string;
45902
+ device_provider_name: string;
45903
+ image_url?: string | undefined;
45904
+ } | undefined;
45905
+ device_manufacturer?: {
45906
+ display_name: string;
45907
+ manufacturer: string;
45908
+ image_url?: string | undefined;
45909
+ } | undefined;
45749
45910
  }>;
45750
45911
  type Device = z.infer<typeof device>;
45751
45912
 
@@ -45981,8 +46142,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
45981
46142
  status: "critical" | "low" | "good" | "full";
45982
46143
  level: number;
45983
46144
  } | undefined;
46145
+ image_url?: string | undefined;
45984
46146
  battery_level?: number | undefined;
45985
46147
  serial_number?: string | undefined;
46148
+ manufacturer?: string | undefined;
45986
46149
  accessory_keypad?: {
45987
46150
  is_connected: boolean;
45988
46151
  battery?: {
@@ -45990,8 +46153,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
45990
46153
  } | undefined;
45991
46154
  } | undefined;
45992
46155
  has_direct_power?: boolean | undefined;
45993
- manufacturer?: string | undefined;
45994
- image_url?: string | undefined;
45995
46156
  image_alt_text?: string | undefined;
45996
46157
  online_access_codes_enabled?: boolean | undefined;
45997
46158
  offline_access_codes_enabled?: boolean | undefined;
@@ -46018,8 +46179,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
46018
46179
  status: "critical" | "low" | "good" | "full";
46019
46180
  level: number;
46020
46181
  } | undefined;
46182
+ image_url?: string | undefined;
46021
46183
  battery_level?: number | undefined;
46022
46184
  serial_number?: string | undefined;
46185
+ manufacturer?: string | undefined;
46023
46186
  accessory_keypad?: {
46024
46187
  is_connected: boolean;
46025
46188
  battery?: {
@@ -46027,8 +46190,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
46027
46190
  } | undefined;
46028
46191
  } | undefined;
46029
46192
  has_direct_power?: boolean | undefined;
46030
- manufacturer?: string | undefined;
46031
- image_url?: string | undefined;
46032
46193
  image_alt_text?: string | undefined;
46033
46194
  online_access_codes_enabled?: boolean | undefined;
46034
46195
  offline_access_codes_enabled?: boolean | undefined;
@@ -48772,6 +48933,35 @@ declare const unmanaged_device: z.ZodObject<Pick<{
48772
48933
  created_at: z.ZodString;
48773
48934
  is_managed: z.ZodLiteral<true>;
48774
48935
  custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
48936
+ device_provider: z.ZodOptional<z.ZodObject<{
48937
+ provider_category: z.ZodString;
48938
+ device_provider_name: z.ZodString;
48939
+ display_name: z.ZodString;
48940
+ image_url: z.ZodOptional<z.ZodString>;
48941
+ }, "strip", z.ZodTypeAny, {
48942
+ display_name: string;
48943
+ provider_category: string;
48944
+ device_provider_name: string;
48945
+ image_url?: string | undefined;
48946
+ }, {
48947
+ display_name: string;
48948
+ provider_category: string;
48949
+ device_provider_name: string;
48950
+ image_url?: string | undefined;
48951
+ }>>;
48952
+ device_manufacturer: z.ZodOptional<z.ZodObject<{
48953
+ manufacturer: z.ZodString;
48954
+ display_name: z.ZodString;
48955
+ image_url: z.ZodOptional<z.ZodString>;
48956
+ }, "strip", z.ZodTypeAny, {
48957
+ display_name: string;
48958
+ manufacturer: string;
48959
+ image_url?: string | undefined;
48960
+ }, {
48961
+ display_name: string;
48962
+ manufacturer: string;
48963
+ image_url?: string | undefined;
48964
+ }>>;
48775
48965
  } & {
48776
48966
  can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
48777
48967
  can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
@@ -48871,7 +49061,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
48871
49061
  supports_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
48872
49062
  noise_level_decibels: z.ZodOptional<z.ZodNumber>;
48873
49063
  currently_triggering_noise_threshold_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48874
- }, "battery" | "name" | "model" | "battery_level" | "online" | "accessory_keypad" | "manufacturer" | "image_url" | "image_alt_text" | "online_access_codes_enabled" | "offline_access_codes_enabled">, "strip", z.ZodTypeAny, {
49064
+ }, "battery" | "name" | "image_url" | "model" | "battery_level" | "manufacturer" | "online" | "accessory_keypad" | "image_alt_text" | "online_access_codes_enabled" | "offline_access_codes_enabled">, "strip", z.ZodTypeAny, {
48875
49065
  name: string;
48876
49066
  model: {
48877
49067
  display_name: string;
@@ -48887,15 +49077,15 @@ declare const unmanaged_device: z.ZodObject<Pick<{
48887
49077
  status: "critical" | "low" | "good" | "full";
48888
49078
  level: number;
48889
49079
  } | undefined;
49080
+ image_url?: string | undefined;
48890
49081
  battery_level?: number | undefined;
49082
+ manufacturer?: string | undefined;
48891
49083
  accessory_keypad?: {
48892
49084
  is_connected: boolean;
48893
49085
  battery?: {
48894
49086
  level: number;
48895
49087
  } | undefined;
48896
49088
  } | undefined;
48897
- manufacturer?: string | undefined;
48898
- image_url?: string | undefined;
48899
49089
  image_alt_text?: string | undefined;
48900
49090
  online_access_codes_enabled?: boolean | undefined;
48901
49091
  offline_access_codes_enabled?: boolean | undefined;
@@ -48915,15 +49105,15 @@ declare const unmanaged_device: z.ZodObject<Pick<{
48915
49105
  status: "critical" | "low" | "good" | "full";
48916
49106
  level: number;
48917
49107
  } | undefined;
49108
+ image_url?: string | undefined;
48918
49109
  battery_level?: number | undefined;
49110
+ manufacturer?: string | undefined;
48919
49111
  accessory_keypad?: {
48920
49112
  is_connected: boolean;
48921
49113
  battery?: {
48922
49114
  level: number;
48923
49115
  } | undefined;
48924
49116
  } | undefined;
48925
- manufacturer?: string | undefined;
48926
- image_url?: string | undefined;
48927
49117
  image_alt_text?: string | undefined;
48928
49118
  online_access_codes_enabled?: boolean | undefined;
48929
49119
  offline_access_codes_enabled?: boolean | undefined;
@@ -49152,15 +49342,15 @@ declare const unmanaged_device: z.ZodObject<Pick<{
49152
49342
  status: "critical" | "low" | "good" | "full";
49153
49343
  level: number;
49154
49344
  } | undefined;
49345
+ image_url?: string | undefined;
49155
49346
  battery_level?: number | undefined;
49347
+ manufacturer?: string | undefined;
49156
49348
  accessory_keypad?: {
49157
49349
  is_connected: boolean;
49158
49350
  battery?: {
49159
49351
  level: number;
49160
49352
  } | undefined;
49161
49353
  } | undefined;
49162
- manufacturer?: string | undefined;
49163
- image_url?: string | undefined;
49164
49354
  image_alt_text?: string | undefined;
49165
49355
  online_access_codes_enabled?: boolean | undefined;
49166
49356
  offline_access_codes_enabled?: boolean | undefined;
@@ -49393,15 +49583,15 @@ declare const unmanaged_device: z.ZodObject<Pick<{
49393
49583
  status: "critical" | "low" | "good" | "full";
49394
49584
  level: number;
49395
49585
  } | undefined;
49586
+ image_url?: string | undefined;
49396
49587
  battery_level?: number | undefined;
49588
+ manufacturer?: string | undefined;
49397
49589
  accessory_keypad?: {
49398
49590
  is_connected: boolean;
49399
49591
  battery?: {
49400
49592
  level: number;
49401
49593
  } | undefined;
49402
49594
  } | undefined;
49403
- manufacturer?: string | undefined;
49404
- image_url?: string | undefined;
49405
49595
  image_alt_text?: string | undefined;
49406
49596
  online_access_codes_enabled?: boolean | undefined;
49407
49597
  offline_access_codes_enabled?: boolean | undefined;
@@ -57688,6 +57878,11 @@ declare const _default: {
57688
57878
  };
57689
57879
  type: string;
57690
57880
  };
57881
+ image_url: {
57882
+ description: string;
57883
+ format: string;
57884
+ type: string;
57885
+ };
57691
57886
  user_identifier: {
57692
57887
  deprecated: boolean;
57693
57888
  description: string;
@@ -57978,6 +58173,52 @@ declare const _default: {
57978
58173
  format: string;
57979
58174
  type: string;
57980
58175
  };
58176
+ device_manufacturer: {
58177
+ description: string;
58178
+ properties: {
58179
+ display_name: {
58180
+ description: string;
58181
+ type: string;
58182
+ };
58183
+ image_url: {
58184
+ description: string;
58185
+ format: string;
58186
+ type: string;
58187
+ };
58188
+ manufacturer: {
58189
+ description: string;
58190
+ type: string;
58191
+ };
58192
+ };
58193
+ required: string[];
58194
+ type: string;
58195
+ 'x-property-group-key': string;
58196
+ };
58197
+ device_provider: {
58198
+ description: string;
58199
+ properties: {
58200
+ device_provider_name: {
58201
+ description: string;
58202
+ type: string;
58203
+ };
58204
+ display_name: {
58205
+ description: string;
58206
+ type: string;
58207
+ };
58208
+ image_url: {
58209
+ description: string;
58210
+ format: string;
58211
+ type: string;
58212
+ };
58213
+ provider_category: {
58214
+ description: string;
58215
+ type: string;
58216
+ };
58217
+ };
58218
+ required: string[];
58219
+ type: string;
58220
+ 'x-property-group-key': string;
58221
+ };
57981
58222
  device_type: {
57982
58223
  description: string;
57983
58224
  oneOf: {
@@ -126297,6 +126538,26 @@ type Routes = {
126297
126538
  custom_metadata: {
126298
126539
  [x: string]: string | boolean;
126299
126540
  };
126541
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
126542
+ device_provider?: {
126543
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
126544
+ provider_category: string;
126545
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
126546
+ device_provider_name: string;
126547
+ /** Display name for the device provider type. */
126548
+ display_name: string;
126549
+ /** Image URL for the device provider. */
126550
+ image_url?: string | undefined;
126551
+ } | undefined;
126552
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
126553
+ device_manufacturer?: {
126554
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
126555
+ manufacturer: string;
126556
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
126557
+ display_name: string;
126558
+ /** Image URL for the manufacturer logo. */
126559
+ image_url?: string | undefined;
126560
+ } | undefined;
126300
126561
  can_remotely_unlock?: boolean | undefined;
126301
126562
  can_remotely_lock?: boolean | undefined;
126302
126563
  can_program_offline_access_codes?: boolean | undefined;
@@ -126463,6 +126724,8 @@ type Routes = {
126463
126724
  account_type?: string | undefined;
126464
126725
  /** Display name for the connected account type. */
126465
126726
  account_type_display_name: string;
126727
+ /** Logo URL for the connected account provider. */
126728
+ image_url?: string | undefined;
126466
126729
  /** Display name for the connected account. */
126467
126730
  display_name: string;
126468
126731
  /** Errors associated with the connected account. */
@@ -129756,6 +130019,26 @@ type Routes = {
129756
130019
  custom_metadata: {
129757
130020
  [x: string]: string | boolean;
129758
130021
  };
130022
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
130023
+ device_provider?: {
130024
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
130025
+ provider_category: string;
130026
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
130027
+ device_provider_name: string;
130028
+ /** Display name for the device provider type. */
130029
+ display_name: string;
130030
+ /** Image URL for the device provider. */
130031
+ image_url?: string | undefined;
130032
+ } | undefined;
130033
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
130034
+ device_manufacturer?: {
130035
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
130036
+ manufacturer: string;
130037
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
130038
+ display_name: string;
130039
+ /** Image URL for the manufacturer logo. */
130040
+ image_url?: string | undefined;
130041
+ } | undefined;
129759
130042
  can_remotely_unlock?: boolean | undefined;
129760
130043
  can_remotely_lock?: boolean | undefined;
129761
130044
  can_program_offline_access_codes?: boolean | undefined;
@@ -141036,6 +141319,8 @@ type Routes = {
141036
141319
  account_type?: string | undefined;
141037
141320
  /** Display name for the connected account type. */
141038
141321
  account_type_display_name: string;
141322
+ /** Logo URL for the connected account provider. */
141323
+ image_url?: string | undefined;
141039
141324
  /** Display name for the connected account. */
141040
141325
  display_name: string;
141041
141326
  /** Errors associated with the connected account. */
@@ -141191,6 +141476,8 @@ type Routes = {
141191
141476
  account_type?: string | undefined;
141192
141477
  /** Display name for the connected account type. */
141193
141478
  account_type_display_name: string;
141479
+ /** Logo URL for the connected account provider. */
141480
+ image_url?: string | undefined;
141194
141481
  /** Display name for the connected account. */
141195
141482
  display_name: string;
141196
141483
  /** Errors associated with the connected account. */
@@ -141380,6 +141667,8 @@ type Routes = {
141380
141667
  account_type?: string | undefined;
141381
141668
  /** Display name for the connected account type. */
141382
141669
  account_type_display_name: string;
141670
+ /** Logo URL for the connected account provider. */
141671
+ image_url?: string | undefined;
141383
141672
  /** Display name for the connected account. */
141384
141673
  display_name: string;
141385
141674
  /** Errors associated with the connected account. */
@@ -143484,6 +143773,26 @@ type Routes = {
143484
143773
  custom_metadata: {
143485
143774
  [x: string]: string | boolean;
143486
143775
  };
143776
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
143777
+ device_provider?: {
143778
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
143779
+ provider_category: string;
143780
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
143781
+ device_provider_name: string;
143782
+ /** Display name for the device provider type. */
143783
+ display_name: string;
143784
+ /** Image URL for the device provider. */
143785
+ image_url?: string | undefined;
143786
+ } | undefined;
143787
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
143788
+ device_manufacturer?: {
143789
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
143790
+ manufacturer: string;
143791
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
143792
+ display_name: string;
143793
+ /** Image URL for the manufacturer logo. */
143794
+ image_url?: string | undefined;
143795
+ } | undefined;
143487
143796
  can_remotely_unlock?: boolean | undefined;
143488
143797
  can_remotely_lock?: boolean | undefined;
143489
143798
  can_program_offline_access_codes?: boolean | undefined;
@@ -144777,6 +145086,26 @@ type Routes = {
144777
145086
  custom_metadata: {
144778
145087
  [x: string]: string | boolean;
144779
145088
  };
145089
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
145090
+ device_provider?: {
145091
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
145092
+ provider_category: string;
145093
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
145094
+ device_provider_name: string;
145095
+ /** Display name for the device provider type. */
145096
+ display_name: string;
145097
+ /** Image URL for the device provider. */
145098
+ image_url?: string | undefined;
145099
+ } | undefined;
145100
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
145101
+ device_manufacturer?: {
145102
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
145103
+ manufacturer: string;
145104
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
145105
+ display_name: string;
145106
+ /** Image URL for the manufacturer logo. */
145107
+ image_url?: string | undefined;
145108
+ } | undefined;
144780
145109
  can_remotely_unlock?: boolean | undefined;
144781
145110
  can_remotely_lock?: boolean | undefined;
144782
145111
  can_program_offline_access_codes?: boolean | undefined;
@@ -151300,6 +151629,26 @@ type Routes = {
151300
151629
  custom_metadata: {
151301
151630
  [x: string]: string | boolean;
151302
151631
  };
151632
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
151633
+ device_provider?: {
151634
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
151635
+ provider_category: string;
151636
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
151637
+ device_provider_name: string;
151638
+ /** Display name for the device provider type. */
151639
+ display_name: string;
151640
+ /** Image URL for the device provider. */
151641
+ image_url?: string | undefined;
151642
+ } | undefined;
151643
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
151644
+ device_manufacturer?: {
151645
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
151646
+ manufacturer: string;
151647
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
151648
+ display_name: string;
151649
+ /** Image URL for the manufacturer logo. */
151650
+ image_url?: string | undefined;
151651
+ } | undefined;
151303
151652
  can_remotely_unlock?: boolean | undefined;
151304
151653
  can_remotely_lock?: boolean | undefined;
151305
151654
  can_program_offline_access_codes?: boolean | undefined;
@@ -152543,6 +152892,26 @@ type Routes = {
152543
152892
  custom_metadata: {
152544
152893
  [x: string]: string | boolean;
152545
152894
  };
152895
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
152896
+ device_provider?: {
152897
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
152898
+ provider_category: string;
152899
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
152900
+ device_provider_name: string;
152901
+ /** Display name for the device provider type. */
152902
+ display_name: string;
152903
+ /** Image URL for the device provider. */
152904
+ image_url?: string | undefined;
152905
+ } | undefined;
152906
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
152907
+ device_manufacturer?: {
152908
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
152909
+ manufacturer: string;
152910
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
152911
+ display_name: string;
152912
+ /** Image URL for the manufacturer logo. */
152913
+ image_url?: string | undefined;
152914
+ } | undefined;
152546
152915
  can_remotely_unlock?: boolean | undefined;
152547
152916
  can_remotely_lock?: boolean | undefined;
152548
152917
  can_program_offline_access_codes?: boolean | undefined;
@@ -153836,6 +154205,26 @@ type Routes = {
153836
154205
  custom_metadata: {
153837
154206
  [x: string]: string | boolean;
153838
154207
  };
154208
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
154209
+ device_provider?: {
154210
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
154211
+ provider_category: string;
154212
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
154213
+ device_provider_name: string;
154214
+ /** Display name for the device provider type. */
154215
+ display_name: string;
154216
+ /** Image URL for the device provider. */
154217
+ image_url?: string | undefined;
154218
+ } | undefined;
154219
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
154220
+ device_manufacturer?: {
154221
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
154222
+ manufacturer: string;
154223
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
154224
+ display_name: string;
154225
+ /** Image URL for the manufacturer logo. */
154226
+ image_url?: string | undefined;
154227
+ } | undefined;
153839
154228
  can_remotely_unlock?: boolean | undefined;
153840
154229
  can_remotely_lock?: boolean | undefined;
153841
154230
  can_program_offline_access_codes?: boolean | undefined;
@@ -155078,6 +155467,26 @@ type Routes = {
155078
155467
  custom_metadata: {
155079
155468
  [x: string]: string | boolean;
155080
155469
  };
155470
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
155471
+ device_provider?: {
155472
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
155473
+ provider_category: string;
155474
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
155475
+ device_provider_name: string;
155476
+ /** Display name for the device provider type. */
155477
+ display_name: string;
155478
+ /** Image URL for the device provider. */
155479
+ image_url?: string | undefined;
155480
+ } | undefined;
155481
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
155482
+ device_manufacturer?: {
155483
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
155484
+ manufacturer: string;
155485
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
155486
+ display_name: string;
155487
+ /** Image URL for the manufacturer logo. */
155488
+ image_url?: string | undefined;
155489
+ } | undefined;
155081
155490
  can_remotely_unlock?: boolean | undefined;
155082
155491
  can_remotely_lock?: boolean | undefined;
155083
155492
  can_program_offline_access_codes?: boolean | undefined;
@@ -161453,6 +161862,26 @@ type Routes = {
161453
161862
  custom_metadata: {
161454
161863
  [x: string]: string | boolean;
161455
161864
  };
161865
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
161866
+ device_provider?: {
161867
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
161868
+ provider_category: string;
161869
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
161870
+ device_provider_name: string;
161871
+ /** Display name for the device provider type. */
161872
+ display_name: string;
161873
+ /** Image URL for the device provider. */
161874
+ image_url?: string | undefined;
161875
+ } | undefined;
161876
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
161877
+ device_manufacturer?: {
161878
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
161879
+ manufacturer: string;
161880
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
161881
+ display_name: string;
161882
+ /** Image URL for the manufacturer logo. */
161883
+ image_url?: string | undefined;
161884
+ } | undefined;
161456
161885
  can_remotely_unlock?: boolean | undefined;
161457
161886
  can_remotely_lock?: boolean | undefined;
161458
161887
  can_program_offline_access_codes?: boolean | undefined;
@@ -162695,6 +163124,26 @@ type Routes = {
162695
163124
  custom_metadata: {
162696
163125
  [x: string]: string | boolean;
162697
163126
  };
163127
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
163128
+ device_provider?: {
163129
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
163130
+ provider_category: string;
163131
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
163132
+ device_provider_name: string;
163133
+ /** Display name for the device provider type. */
163134
+ display_name: string;
163135
+ /** Image URL for the device provider. */
163136
+ image_url?: string | undefined;
163137
+ } | undefined;
163138
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
163139
+ device_manufacturer?: {
163140
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
163141
+ manufacturer: string;
163142
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
163143
+ display_name: string;
163144
+ /** Image URL for the manufacturer logo. */
163145
+ image_url?: string | undefined;
163146
+ } | undefined;
162698
163147
  can_remotely_unlock?: boolean | undefined;
162699
163148
  can_remotely_lock?: boolean | undefined;
162700
163149
  can_program_offline_access_codes?: boolean | undefined;
@@ -172429,6 +172878,26 @@ type Routes = {
172429
172878
  custom_metadata: {
172430
172879
  [x: string]: string | boolean;
172431
172880
  };
172881
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
172882
+ device_provider?: {
172883
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
172884
+ provider_category: string;
172885
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
172886
+ device_provider_name: string;
172887
+ /** Display name for the device provider type. */
172888
+ display_name: string;
172889
+ /** Image URL for the device provider. */
172890
+ image_url?: string | undefined;
172891
+ } | undefined;
172892
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
172893
+ device_manufacturer?: {
172894
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
172895
+ manufacturer: string;
172896
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
172897
+ display_name: string;
172898
+ /** Image URL for the manufacturer logo. */
172899
+ image_url?: string | undefined;
172900
+ } | undefined;
172432
172901
  can_remotely_unlock?: boolean | undefined;
172433
172902
  can_remotely_lock?: boolean | undefined;
172434
172903
  can_program_offline_access_codes?: boolean | undefined;
@@ -172595,6 +173064,8 @@ type Routes = {
172595
173064
  account_type?: string | undefined;
172596
173065
  /** Display name for the connected account type. */
172597
173066
  account_type_display_name: string;
173067
+ /** Logo URL for the connected account provider. */
173068
+ image_url?: string | undefined;
172598
173069
  /** Display name for the connected account. */
172599
173070
  display_name: string;
172600
173071
  /** Errors associated with the connected account. */
@@ -178120,6 +178591,26 @@ type Routes = {
178120
178591
  custom_metadata: {
178121
178592
  [x: string]: string | boolean;
178122
178593
  };
178594
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
178595
+ device_provider?: {
178596
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
178597
+ provider_category: string;
178598
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
178599
+ device_provider_name: string;
178600
+ /** Display name for the device provider type. */
178601
+ display_name: string;
178602
+ /** Image URL for the device provider. */
178603
+ image_url?: string | undefined;
178604
+ } | undefined;
178605
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
178606
+ device_manufacturer?: {
178607
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
178608
+ manufacturer: string;
178609
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
178610
+ display_name: string;
178611
+ /** Image URL for the manufacturer logo. */
178612
+ image_url?: string | undefined;
178613
+ } | undefined;
178123
178614
  can_remotely_unlock?: boolean | undefined;
178124
178615
  can_remotely_lock?: boolean | undefined;
178125
178616
  can_program_offline_access_codes?: boolean | undefined;
@@ -181967,6 +182458,26 @@ type Routes = {
181967
182458
  custom_metadata: {
181968
182459
  [x: string]: string | boolean;
181969
182460
  };
182461
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
182462
+ device_provider?: {
182463
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
182464
+ provider_category: string;
182465
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
182466
+ device_provider_name: string;
182467
+ /** Display name for the device provider type. */
182468
+ display_name: string;
182469
+ /** Image URL for the device provider. */
182470
+ image_url?: string | undefined;
182471
+ } | undefined;
182472
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
182473
+ device_manufacturer?: {
182474
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
182475
+ manufacturer: string;
182476
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
182477
+ display_name: string;
182478
+ /** Image URL for the manufacturer logo. */
182479
+ image_url?: string | undefined;
182480
+ } | undefined;
181970
182481
  can_remotely_unlock?: boolean | undefined;
181971
182482
  can_remotely_lock?: boolean | undefined;
181972
182483
  can_program_offline_access_codes?: boolean | undefined;
@@ -183209,6 +183720,26 @@ type Routes = {
183209
183720
  custom_metadata: {
183210
183721
  [x: string]: string | boolean;
183211
183722
  };
183723
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
183724
+ device_provider?: {
183725
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
183726
+ provider_category: string;
183727
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
183728
+ device_provider_name: string;
183729
+ /** Display name for the device provider type. */
183730
+ display_name: string;
183731
+ /** Image URL for the device provider. */
183732
+ image_url?: string | undefined;
183733
+ } | undefined;
183734
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
183735
+ device_manufacturer?: {
183736
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
183737
+ manufacturer: string;
183738
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
183739
+ display_name: string;
183740
+ /** Image URL for the manufacturer logo. */
183741
+ image_url?: string | undefined;
183742
+ } | undefined;
183212
183743
  can_remotely_unlock?: boolean | undefined;
183213
183744
  can_remotely_lock?: boolean | undefined;
183214
183745
  can_program_offline_access_codes?: boolean | undefined;
@@ -190471,6 +191002,26 @@ type Routes = {
190471
191002
  custom_metadata: {
190472
191003
  [x: string]: string | boolean;
190473
191004
  };
191005
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
191006
+ device_provider?: {
191007
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
191008
+ provider_category: string;
191009
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
191010
+ device_provider_name: string;
191011
+ /** Display name for the device provider type. */
191012
+ display_name: string;
191013
+ /** Image URL for the device provider. */
191014
+ image_url?: string | undefined;
191015
+ } | undefined;
191016
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
191017
+ device_manufacturer?: {
191018
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
191019
+ manufacturer: string;
191020
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
191021
+ display_name: string;
191022
+ /** Image URL for the manufacturer logo. */
191023
+ image_url?: string | undefined;
191024
+ } | undefined;
190474
191025
  can_remotely_unlock?: boolean | undefined;
190475
191026
  can_remotely_lock?: boolean | undefined;
190476
191027
  can_program_offline_access_codes?: boolean | undefined;
@@ -191715,6 +192266,26 @@ type Routes = {
191715
192266
  custom_metadata: {
191716
192267
  [x: string]: string | boolean;
191717
192268
  };
192269
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
192270
+ device_provider?: {
192271
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
192272
+ provider_category: string;
192273
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
192274
+ device_provider_name: string;
192275
+ /** Display name for the device provider type. */
192276
+ display_name: string;
192277
+ /** Image URL for the device provider. */
192278
+ image_url?: string | undefined;
192279
+ } | undefined;
192280
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
192281
+ device_manufacturer?: {
192282
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
192283
+ manufacturer: string;
192284
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
192285
+ display_name: string;
192286
+ /** Image URL for the manufacturer logo. */
192287
+ image_url?: string | undefined;
192288
+ } | undefined;
191718
192289
  can_remotely_unlock?: boolean | undefined;
191719
192290
  can_remotely_lock?: boolean | undefined;
191720
192291
  can_program_offline_access_codes?: boolean | undefined;
@@ -193924,6 +194495,26 @@ type Routes = {
193924
194495
  custom_metadata: {
193925
194496
  [x: string]: string | boolean;
193926
194497
  };
194498
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
194499
+ device_provider?: {
194500
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
194501
+ provider_category: string;
194502
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
194503
+ device_provider_name: string;
194504
+ /** Display name for the device provider type. */
194505
+ display_name: string;
194506
+ /** Image URL for the device provider. */
194507
+ image_url?: string | undefined;
194508
+ } | undefined;
194509
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
194510
+ device_manufacturer?: {
194511
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
194512
+ manufacturer: string;
194513
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
194514
+ display_name: string;
194515
+ /** Image URL for the manufacturer logo. */
194516
+ image_url?: string | undefined;
194517
+ } | undefined;
193927
194518
  can_remotely_unlock?: boolean | undefined;
193928
194519
  can_remotely_lock?: boolean | undefined;
193929
194520
  can_program_offline_access_codes?: boolean | undefined;
@@ -196614,6 +197205,8 @@ type Routes = {
196614
197205
  account_type?: string | undefined;
196615
197206
  /** Display name for the connected account type. */
196616
197207
  account_type_display_name: string;
197208
+ /** Logo URL for the connected account provider. */
197209
+ image_url?: string | undefined;
196617
197210
  /** Display name for the connected account. */
196618
197211
  display_name: string;
196619
197212
  /** Errors associated with the connected account. */