@seamapi/types 1.704.0 → 1.706.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: {
@@ -100700,6 +100941,10 @@ declare const _default: {
100700
100941
  nullable: boolean;
100701
100942
  type: string;
100702
100943
  };
100944
+ instant_key_url: {
100945
+ format: string;
100946
+ type: string;
100947
+ };
100703
100948
  is_card_encoding_required: {
100704
100949
  type: string;
100705
100950
  };
@@ -100841,6 +101086,10 @@ declare const _default: {
100841
101086
  nullable: boolean;
100842
101087
  type: string;
100843
101088
  };
101089
+ instant_key_url: {
101090
+ format: string;
101091
+ type: string;
101092
+ };
100844
101093
  is_card_encoding_required: {
100845
101094
  type: string;
100846
101095
  };
@@ -126297,6 +126546,26 @@ type Routes = {
126297
126546
  custom_metadata: {
126298
126547
  [x: string]: string | boolean;
126299
126548
  };
126549
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
126550
+ device_provider?: {
126551
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
126552
+ provider_category: string;
126553
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
126554
+ device_provider_name: string;
126555
+ /** Display name for the device provider type. */
126556
+ display_name: string;
126557
+ /** Image URL for the device provider. */
126558
+ image_url?: string | undefined;
126559
+ } | undefined;
126560
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
126561
+ device_manufacturer?: {
126562
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
126563
+ manufacturer: string;
126564
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
126565
+ display_name: string;
126566
+ /** Image URL for the manufacturer logo. */
126567
+ image_url?: string | undefined;
126568
+ } | undefined;
126300
126569
  can_remotely_unlock?: boolean | undefined;
126301
126570
  can_remotely_lock?: boolean | undefined;
126302
126571
  can_program_offline_access_codes?: boolean | undefined;
@@ -126463,6 +126732,8 @@ type Routes = {
126463
126732
  account_type?: string | undefined;
126464
126733
  /** Display name for the connected account type. */
126465
126734
  account_type_display_name: string;
126735
+ /** Logo URL for the connected account provider. */
126736
+ image_url?: string | undefined;
126466
126737
  /** Display name for the connected account. */
126467
126738
  display_name: string;
126468
126739
  /** Errors associated with the connected account. */
@@ -129756,6 +130027,26 @@ type Routes = {
129756
130027
  custom_metadata: {
129757
130028
  [x: string]: string | boolean;
129758
130029
  };
130030
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
130031
+ device_provider?: {
130032
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
130033
+ provider_category: string;
130034
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
130035
+ device_provider_name: string;
130036
+ /** Display name for the device provider type. */
130037
+ display_name: string;
130038
+ /** Image URL for the device provider. */
130039
+ image_url?: string | undefined;
130040
+ } | undefined;
130041
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
130042
+ device_manufacturer?: {
130043
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
130044
+ manufacturer: string;
130045
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
130046
+ display_name: string;
130047
+ /** Image URL for the manufacturer logo. */
130048
+ image_url?: string | undefined;
130049
+ } | undefined;
129759
130050
  can_remotely_unlock?: boolean | undefined;
129760
130051
  can_remotely_lock?: boolean | undefined;
129761
130052
  can_program_offline_access_codes?: boolean | undefined;
@@ -141036,6 +141327,8 @@ type Routes = {
141036
141327
  account_type?: string | undefined;
141037
141328
  /** Display name for the connected account type. */
141038
141329
  account_type_display_name: string;
141330
+ /** Logo URL for the connected account provider. */
141331
+ image_url?: string | undefined;
141039
141332
  /** Display name for the connected account. */
141040
141333
  display_name: string;
141041
141334
  /** Errors associated with the connected account. */
@@ -141191,6 +141484,8 @@ type Routes = {
141191
141484
  account_type?: string | undefined;
141192
141485
  /** Display name for the connected account type. */
141193
141486
  account_type_display_name: string;
141487
+ /** Logo URL for the connected account provider. */
141488
+ image_url?: string | undefined;
141194
141489
  /** Display name for the connected account. */
141195
141490
  display_name: string;
141196
141491
  /** Errors associated with the connected account. */
@@ -141380,6 +141675,8 @@ type Routes = {
141380
141675
  account_type?: string | undefined;
141381
141676
  /** Display name for the connected account type. */
141382
141677
  account_type_display_name: string;
141678
+ /** Logo URL for the connected account provider. */
141679
+ image_url?: string | undefined;
141383
141680
  /** Display name for the connected account. */
141384
141681
  display_name: string;
141385
141682
  /** Errors associated with the connected account. */
@@ -143484,6 +143781,26 @@ type Routes = {
143484
143781
  custom_metadata: {
143485
143782
  [x: string]: string | boolean;
143486
143783
  };
143784
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
143785
+ device_provider?: {
143786
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
143787
+ provider_category: string;
143788
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
143789
+ device_provider_name: string;
143790
+ /** Display name for the device provider type. */
143791
+ display_name: string;
143792
+ /** Image URL for the device provider. */
143793
+ image_url?: string | undefined;
143794
+ } | undefined;
143795
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
143796
+ device_manufacturer?: {
143797
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
143798
+ manufacturer: string;
143799
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
143800
+ display_name: string;
143801
+ /** Image URL for the manufacturer logo. */
143802
+ image_url?: string | undefined;
143803
+ } | undefined;
143487
143804
  can_remotely_unlock?: boolean | undefined;
143488
143805
  can_remotely_lock?: boolean | undefined;
143489
143806
  can_program_offline_access_codes?: boolean | undefined;
@@ -144777,6 +145094,26 @@ type Routes = {
144777
145094
  custom_metadata: {
144778
145095
  [x: string]: string | boolean;
144779
145096
  };
145097
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
145098
+ device_provider?: {
145099
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
145100
+ provider_category: string;
145101
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
145102
+ device_provider_name: string;
145103
+ /** Display name for the device provider type. */
145104
+ display_name: string;
145105
+ /** Image URL for the device provider. */
145106
+ image_url?: string | undefined;
145107
+ } | undefined;
145108
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
145109
+ device_manufacturer?: {
145110
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
145111
+ manufacturer: string;
145112
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
145113
+ display_name: string;
145114
+ /** Image URL for the manufacturer logo. */
145115
+ image_url?: string | undefined;
145116
+ } | undefined;
144780
145117
  can_remotely_unlock?: boolean | undefined;
144781
145118
  can_remotely_lock?: boolean | undefined;
144782
145119
  can_program_offline_access_codes?: boolean | undefined;
@@ -151300,6 +151637,26 @@ type Routes = {
151300
151637
  custom_metadata: {
151301
151638
  [x: string]: string | boolean;
151302
151639
  };
151640
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
151641
+ device_provider?: {
151642
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
151643
+ provider_category: string;
151644
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
151645
+ device_provider_name: string;
151646
+ /** Display name for the device provider type. */
151647
+ display_name: string;
151648
+ /** Image URL for the device provider. */
151649
+ image_url?: string | undefined;
151650
+ } | undefined;
151651
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
151652
+ device_manufacturer?: {
151653
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
151654
+ manufacturer: string;
151655
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
151656
+ display_name: string;
151657
+ /** Image URL for the manufacturer logo. */
151658
+ image_url?: string | undefined;
151659
+ } | undefined;
151303
151660
  can_remotely_unlock?: boolean | undefined;
151304
151661
  can_remotely_lock?: boolean | undefined;
151305
151662
  can_program_offline_access_codes?: boolean | undefined;
@@ -152543,6 +152900,26 @@ type Routes = {
152543
152900
  custom_metadata: {
152544
152901
  [x: string]: string | boolean;
152545
152902
  };
152903
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
152904
+ device_provider?: {
152905
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
152906
+ provider_category: string;
152907
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
152908
+ device_provider_name: string;
152909
+ /** Display name for the device provider type. */
152910
+ display_name: string;
152911
+ /** Image URL for the device provider. */
152912
+ image_url?: string | undefined;
152913
+ } | undefined;
152914
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
152915
+ device_manufacturer?: {
152916
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
152917
+ manufacturer: string;
152918
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
152919
+ display_name: string;
152920
+ /** Image URL for the manufacturer logo. */
152921
+ image_url?: string | undefined;
152922
+ } | undefined;
152546
152923
  can_remotely_unlock?: boolean | undefined;
152547
152924
  can_remotely_lock?: boolean | undefined;
152548
152925
  can_program_offline_access_codes?: boolean | undefined;
@@ -153836,6 +154213,26 @@ type Routes = {
153836
154213
  custom_metadata: {
153837
154214
  [x: string]: string | boolean;
153838
154215
  };
154216
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
154217
+ device_provider?: {
154218
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
154219
+ provider_category: string;
154220
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
154221
+ device_provider_name: string;
154222
+ /** Display name for the device provider type. */
154223
+ display_name: string;
154224
+ /** Image URL for the device provider. */
154225
+ image_url?: string | undefined;
154226
+ } | undefined;
154227
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
154228
+ device_manufacturer?: {
154229
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
154230
+ manufacturer: string;
154231
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
154232
+ display_name: string;
154233
+ /** Image URL for the manufacturer logo. */
154234
+ image_url?: string | undefined;
154235
+ } | undefined;
153839
154236
  can_remotely_unlock?: boolean | undefined;
153840
154237
  can_remotely_lock?: boolean | undefined;
153841
154238
  can_program_offline_access_codes?: boolean | undefined;
@@ -155078,6 +155475,26 @@ type Routes = {
155078
155475
  custom_metadata: {
155079
155476
  [x: string]: string | boolean;
155080
155477
  };
155478
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
155479
+ device_provider?: {
155480
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
155481
+ provider_category: string;
155482
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
155483
+ device_provider_name: string;
155484
+ /** Display name for the device provider type. */
155485
+ display_name: string;
155486
+ /** Image URL for the device provider. */
155487
+ image_url?: string | undefined;
155488
+ } | undefined;
155489
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
155490
+ device_manufacturer?: {
155491
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
155492
+ manufacturer: string;
155493
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
155494
+ display_name: string;
155495
+ /** Image URL for the manufacturer logo. */
155496
+ image_url?: string | undefined;
155497
+ } | undefined;
155081
155498
  can_remotely_unlock?: boolean | undefined;
155082
155499
  can_remotely_lock?: boolean | undefined;
155083
155500
  can_program_offline_access_codes?: boolean | undefined;
@@ -161453,6 +161870,26 @@ type Routes = {
161453
161870
  custom_metadata: {
161454
161871
  [x: string]: string | boolean;
161455
161872
  };
161873
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
161874
+ device_provider?: {
161875
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
161876
+ provider_category: string;
161877
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
161878
+ device_provider_name: string;
161879
+ /** Display name for the device provider type. */
161880
+ display_name: string;
161881
+ /** Image URL for the device provider. */
161882
+ image_url?: string | undefined;
161883
+ } | undefined;
161884
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
161885
+ device_manufacturer?: {
161886
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
161887
+ manufacturer: string;
161888
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
161889
+ display_name: string;
161890
+ /** Image URL for the manufacturer logo. */
161891
+ image_url?: string | undefined;
161892
+ } | undefined;
161456
161893
  can_remotely_unlock?: boolean | undefined;
161457
161894
  can_remotely_lock?: boolean | undefined;
161458
161895
  can_program_offline_access_codes?: boolean | undefined;
@@ -162695,6 +163132,26 @@ type Routes = {
162695
163132
  custom_metadata: {
162696
163133
  [x: string]: string | boolean;
162697
163134
  };
163135
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
163136
+ device_provider?: {
163137
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
163138
+ provider_category: string;
163139
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
163140
+ device_provider_name: string;
163141
+ /** Display name for the device provider type. */
163142
+ display_name: string;
163143
+ /** Image URL for the device provider. */
163144
+ image_url?: string | undefined;
163145
+ } | undefined;
163146
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
163147
+ device_manufacturer?: {
163148
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
163149
+ manufacturer: string;
163150
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
163151
+ display_name: string;
163152
+ /** Image URL for the manufacturer logo. */
163153
+ image_url?: string | undefined;
163154
+ } | undefined;
162698
163155
  can_remotely_unlock?: boolean | undefined;
162699
163156
  can_remotely_lock?: boolean | undefined;
162700
163157
  can_program_offline_access_codes?: boolean | undefined;
@@ -170059,6 +170516,7 @@ type Routes = {
170059
170516
  is_issued: boolean;
170060
170517
  is_card_encoding_required?: boolean | undefined;
170061
170518
  code?: (string | null) | undefined;
170519
+ instant_key_url?: string | undefined;
170062
170520
  }[];
170063
170521
  };
170064
170522
  };
@@ -172429,6 +172887,26 @@ type Routes = {
172429
172887
  custom_metadata: {
172430
172888
  [x: string]: string | boolean;
172431
172889
  };
172890
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
172891
+ device_provider?: {
172892
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
172893
+ provider_category: string;
172894
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
172895
+ device_provider_name: string;
172896
+ /** Display name for the device provider type. */
172897
+ display_name: string;
172898
+ /** Image URL for the device provider. */
172899
+ image_url?: string | undefined;
172900
+ } | undefined;
172901
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
172902
+ device_manufacturer?: {
172903
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
172904
+ manufacturer: string;
172905
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
172906
+ display_name: string;
172907
+ /** Image URL for the manufacturer logo. */
172908
+ image_url?: string | undefined;
172909
+ } | undefined;
172432
172910
  can_remotely_unlock?: boolean | undefined;
172433
172911
  can_remotely_lock?: boolean | undefined;
172434
172912
  can_program_offline_access_codes?: boolean | undefined;
@@ -172595,6 +173073,8 @@ type Routes = {
172595
173073
  account_type?: string | undefined;
172596
173074
  /** Display name for the connected account type. */
172597
173075
  account_type_display_name: string;
173076
+ /** Logo URL for the connected account provider. */
173077
+ image_url?: string | undefined;
172598
173078
  /** Display name for the connected account. */
172599
173079
  display_name: string;
172600
173080
  /** Errors associated with the connected account. */
@@ -178120,6 +178600,26 @@ type Routes = {
178120
178600
  custom_metadata: {
178121
178601
  [x: string]: string | boolean;
178122
178602
  };
178603
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
178604
+ device_provider?: {
178605
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
178606
+ provider_category: string;
178607
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
178608
+ device_provider_name: string;
178609
+ /** Display name for the device provider type. */
178610
+ display_name: string;
178611
+ /** Image URL for the device provider. */
178612
+ image_url?: string | undefined;
178613
+ } | undefined;
178614
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
178615
+ device_manufacturer?: {
178616
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
178617
+ manufacturer: string;
178618
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
178619
+ display_name: string;
178620
+ /** Image URL for the manufacturer logo. */
178621
+ image_url?: string | undefined;
178622
+ } | undefined;
178123
178623
  can_remotely_unlock?: boolean | undefined;
178124
178624
  can_remotely_lock?: boolean | undefined;
178125
178625
  can_program_offline_access_codes?: boolean | undefined;
@@ -181967,6 +182467,26 @@ type Routes = {
181967
182467
  custom_metadata: {
181968
182468
  [x: string]: string | boolean;
181969
182469
  };
182470
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
182471
+ device_provider?: {
182472
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
182473
+ provider_category: string;
182474
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
182475
+ device_provider_name: string;
182476
+ /** Display name for the device provider type. */
182477
+ display_name: string;
182478
+ /** Image URL for the device provider. */
182479
+ image_url?: string | undefined;
182480
+ } | undefined;
182481
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
182482
+ device_manufacturer?: {
182483
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
182484
+ manufacturer: string;
182485
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
182486
+ display_name: string;
182487
+ /** Image URL for the manufacturer logo. */
182488
+ image_url?: string | undefined;
182489
+ } | undefined;
181970
182490
  can_remotely_unlock?: boolean | undefined;
181971
182491
  can_remotely_lock?: boolean | undefined;
181972
182492
  can_program_offline_access_codes?: boolean | undefined;
@@ -183209,6 +183729,26 @@ type Routes = {
183209
183729
  custom_metadata: {
183210
183730
  [x: string]: string | boolean;
183211
183731
  };
183732
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
183733
+ device_provider?: {
183734
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
183735
+ provider_category: string;
183736
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
183737
+ device_provider_name: string;
183738
+ /** Display name for the device provider type. */
183739
+ display_name: string;
183740
+ /** Image URL for the device provider. */
183741
+ image_url?: string | undefined;
183742
+ } | undefined;
183743
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
183744
+ device_manufacturer?: {
183745
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
183746
+ manufacturer: string;
183747
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
183748
+ display_name: string;
183749
+ /** Image URL for the manufacturer logo. */
183750
+ image_url?: string | undefined;
183751
+ } | undefined;
183212
183752
  can_remotely_unlock?: boolean | undefined;
183213
183753
  can_remotely_lock?: boolean | undefined;
183214
183754
  can_program_offline_access_codes?: boolean | undefined;
@@ -190471,6 +191011,26 @@ type Routes = {
190471
191011
  custom_metadata: {
190472
191012
  [x: string]: string | boolean;
190473
191013
  };
191014
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
191015
+ device_provider?: {
191016
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
191017
+ provider_category: string;
191018
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
191019
+ device_provider_name: string;
191020
+ /** Display name for the device provider type. */
191021
+ display_name: string;
191022
+ /** Image URL for the device provider. */
191023
+ image_url?: string | undefined;
191024
+ } | undefined;
191025
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
191026
+ device_manufacturer?: {
191027
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
191028
+ manufacturer: string;
191029
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
191030
+ display_name: string;
191031
+ /** Image URL for the manufacturer logo. */
191032
+ image_url?: string | undefined;
191033
+ } | undefined;
190474
191034
  can_remotely_unlock?: boolean | undefined;
190475
191035
  can_remotely_lock?: boolean | undefined;
190476
191036
  can_program_offline_access_codes?: boolean | undefined;
@@ -191715,6 +192275,26 @@ type Routes = {
191715
192275
  custom_metadata: {
191716
192276
  [x: string]: string | boolean;
191717
192277
  };
192278
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
192279
+ device_provider?: {
192280
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
192281
+ provider_category: string;
192282
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
192283
+ device_provider_name: string;
192284
+ /** Display name for the device provider type. */
192285
+ display_name: string;
192286
+ /** Image URL for the device provider. */
192287
+ image_url?: string | undefined;
192288
+ } | undefined;
192289
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
192290
+ device_manufacturer?: {
192291
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
192292
+ manufacturer: string;
192293
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
192294
+ display_name: string;
192295
+ /** Image URL for the manufacturer logo. */
192296
+ image_url?: string | undefined;
192297
+ } | undefined;
191718
192298
  can_remotely_unlock?: boolean | undefined;
191719
192299
  can_remotely_lock?: boolean | undefined;
191720
192300
  can_program_offline_access_codes?: boolean | undefined;
@@ -193924,6 +194504,26 @@ type Routes = {
193924
194504
  custom_metadata: {
193925
194505
  [x: string]: string | boolean;
193926
194506
  };
194507
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
194508
+ device_provider?: {
194509
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
194510
+ provider_category: string;
194511
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
194512
+ device_provider_name: string;
194513
+ /** Display name for the device provider type. */
194514
+ display_name: string;
194515
+ /** Image URL for the device provider. */
194516
+ image_url?: string | undefined;
194517
+ } | undefined;
194518
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
194519
+ device_manufacturer?: {
194520
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
194521
+ manufacturer: string;
194522
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
194523
+ display_name: string;
194524
+ /** Image URL for the manufacturer logo. */
194525
+ image_url?: string | undefined;
194526
+ } | undefined;
193927
194527
  can_remotely_unlock?: boolean | undefined;
193928
194528
  can_remotely_lock?: boolean | undefined;
193929
194529
  can_program_offline_access_codes?: boolean | undefined;
@@ -196614,6 +197214,8 @@ type Routes = {
196614
197214
  account_type?: string | undefined;
196615
197215
  /** Display name for the connected account type. */
196616
197216
  account_type_display_name: string;
197217
+ /** Logo URL for the connected account provider. */
197218
+ image_url?: string | undefined;
196617
197219
  /** Display name for the connected account. */
196618
197220
  display_name: string;
196619
197221
  /** Errors associated with the connected account. */