@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.
@@ -9338,6 +9338,11 @@ export default {
9338
9338
  },
9339
9339
  type: 'array',
9340
9340
  },
9341
+ image_url: {
9342
+ description: 'Logo URL for the connected account provider.',
9343
+ format: 'uri',
9344
+ type: 'string',
9345
+ },
9341
9346
  user_identifier: {
9342
9347
  deprecated: true,
9343
9348
  description:
@@ -9675,6 +9680,62 @@ export default {
9675
9680
  format: 'uuid',
9676
9681
  type: 'string',
9677
9682
  },
9683
+ device_manufacturer: {
9684
+ description:
9685
+ 'Manufacturer of the device. Represents the hardware brand, which may differ from the provider.',
9686
+ properties: {
9687
+ display_name: {
9688
+ description:
9689
+ 'Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on.',
9690
+ type: 'string',
9691
+ },
9692
+ image_url: {
9693
+ description: 'Image URL for the manufacturer logo.',
9694
+ format: 'uri',
9695
+ type: 'string',
9696
+ },
9697
+ manufacturer: {
9698
+ description:
9699
+ 'Manufacturer identifier, such as `august`, `yale`, `salto`, and so on.',
9700
+ type: 'string',
9701
+ },
9702
+ },
9703
+ required: ['manufacturer', 'display_name'],
9704
+ type: 'object',
9705
+ 'x-property-group-key': 'hardware',
9706
+ },
9707
+ device_provider: {
9708
+ description:
9709
+ 'Provider of the device. Represents the third-party service through which the device is controlled.',
9710
+ properties: {
9711
+ device_provider_name: {
9712
+ description:
9713
+ 'Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on.',
9714
+ type: 'string',
9715
+ },
9716
+ display_name: {
9717
+ description: 'Display name for the device provider type.',
9718
+ type: 'string',
9719
+ },
9720
+ image_url: {
9721
+ description: 'Image URL for the device provider.',
9722
+ format: 'uri',
9723
+ type: 'string',
9724
+ },
9725
+ provider_category: {
9726
+ description:
9727
+ 'Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations.',
9728
+ type: 'string',
9729
+ },
9730
+ },
9731
+ required: [
9732
+ 'provider_category',
9733
+ 'device_provider_name',
9734
+ 'display_name',
9735
+ ],
9736
+ type: 'object',
9737
+ 'x-property-group-key': 'hardware',
9738
+ },
9678
9739
  device_type: {
9679
9740
  description: 'Type of the device.',
9680
9741
  oneOf: [
@@ -12896,6 +12896,30 @@ export type Routes = {
12896
12896
  custom_metadata: {
12897
12897
  [x: string]: string | boolean
12898
12898
  }
12899
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
12900
+ device_provider?:
12901
+ | {
12902
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
12903
+ provider_category: string
12904
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
12905
+ device_provider_name: string
12906
+ /** Display name for the device provider type. */
12907
+ display_name: string
12908
+ /** Image URL for the device provider. */
12909
+ image_url?: string | undefined
12910
+ }
12911
+ | undefined
12912
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
12913
+ device_manufacturer?:
12914
+ | {
12915
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
12916
+ manufacturer: string
12917
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
12918
+ display_name: string
12919
+ /** Image URL for the manufacturer logo. */
12920
+ image_url?: string | undefined
12921
+ }
12922
+ | undefined
12899
12923
  can_remotely_unlock?: boolean | undefined
12900
12924
  can_remotely_lock?: boolean | undefined
12901
12925
  can_program_offline_access_codes?: boolean | undefined
@@ -13104,6 +13128,8 @@ export type Routes = {
13104
13128
  account_type?: string | undefined
13105
13129
  /** Display name for the connected account type. */
13106
13130
  account_type_display_name: string
13131
+ /** Logo URL for the connected account provider. */
13132
+ image_url?: string | undefined
13107
13133
  /** Display name for the connected account. */
13108
13134
  display_name: string
13109
13135
  /** Errors associated with the connected account. */
@@ -17036,6 +17062,30 @@ export type Routes = {
17036
17062
  custom_metadata: {
17037
17063
  [x: string]: string | boolean
17038
17064
  }
17065
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
17066
+ device_provider?:
17067
+ | {
17068
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
17069
+ provider_category: string
17070
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
17071
+ device_provider_name: string
17072
+ /** Display name for the device provider type. */
17073
+ display_name: string
17074
+ /** Image URL for the device provider. */
17075
+ image_url?: string | undefined
17076
+ }
17077
+ | undefined
17078
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
17079
+ device_manufacturer?:
17080
+ | {
17081
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
17082
+ manufacturer: string
17083
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
17084
+ display_name: string
17085
+ /** Image URL for the manufacturer logo. */
17086
+ image_url?: string | undefined
17087
+ }
17088
+ | undefined
17039
17089
  can_remotely_unlock?: boolean | undefined
17040
17090
  can_remotely_lock?: boolean | undefined
17041
17091
  can_program_offline_access_codes?: boolean | undefined
@@ -30137,6 +30187,8 @@ export type Routes = {
30137
30187
  account_type?: string | undefined
30138
30188
  /** Display name for the connected account type. */
30139
30189
  account_type_display_name: string
30190
+ /** Logo URL for the connected account provider. */
30191
+ image_url?: string | undefined
30140
30192
  /** Display name for the connected account. */
30141
30193
  display_name: string
30142
30194
  /** Errors associated with the connected account. */
@@ -30310,6 +30362,8 @@ export type Routes = {
30310
30362
  account_type?: string | undefined
30311
30363
  /** Display name for the connected account type. */
30312
30364
  account_type_display_name: string
30365
+ /** Logo URL for the connected account provider. */
30366
+ image_url?: string | undefined
30313
30367
  /** Display name for the connected account. */
30314
30368
  display_name: string
30315
30369
  /** Errors associated with the connected account. */
@@ -30519,6 +30573,8 @@ export type Routes = {
30519
30573
  account_type?: string | undefined
30520
30574
  /** Display name for the connected account type. */
30521
30575
  account_type_display_name: string
30576
+ /** Logo URL for the connected account provider. */
30577
+ image_url?: string | undefined
30522
30578
  /** Display name for the connected account. */
30523
30579
  display_name: string
30524
30580
  /** Errors associated with the connected account. */
@@ -33054,6 +33110,30 @@ export type Routes = {
33054
33110
  custom_metadata: {
33055
33111
  [x: string]: string | boolean
33056
33112
  }
33113
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
33114
+ device_provider?:
33115
+ | {
33116
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
33117
+ provider_category: string
33118
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
33119
+ device_provider_name: string
33120
+ /** Display name for the device provider type. */
33121
+ display_name: string
33122
+ /** Image URL for the device provider. */
33123
+ image_url?: string | undefined
33124
+ }
33125
+ | undefined
33126
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
33127
+ device_manufacturer?:
33128
+ | {
33129
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
33130
+ manufacturer: string
33131
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
33132
+ display_name: string
33133
+ /** Image URL for the manufacturer logo. */
33134
+ image_url?: string | undefined
33135
+ }
33136
+ | undefined
33057
33137
  can_remotely_unlock?: boolean | undefined
33058
33138
  can_remotely_lock?: boolean | undefined
33059
33139
  can_program_offline_access_codes?: boolean | undefined
@@ -34838,6 +34918,30 @@ export type Routes = {
34838
34918
  custom_metadata: {
34839
34919
  [x: string]: string | boolean
34840
34920
  }
34921
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
34922
+ device_provider?:
34923
+ | {
34924
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
34925
+ provider_category: string
34926
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
34927
+ device_provider_name: string
34928
+ /** Display name for the device provider type. */
34929
+ display_name: string
34930
+ /** Image URL for the device provider. */
34931
+ image_url?: string | undefined
34932
+ }
34933
+ | undefined
34934
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
34935
+ device_manufacturer?:
34936
+ | {
34937
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
34938
+ manufacturer: string
34939
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
34940
+ display_name: string
34941
+ /** Image URL for the manufacturer logo. */
34942
+ image_url?: string | undefined
34943
+ }
34944
+ | undefined
34841
34945
  can_remotely_unlock?: boolean | undefined
34842
34946
  can_remotely_lock?: boolean | undefined
34843
34947
  can_program_offline_access_codes?: boolean | undefined
@@ -43420,6 +43524,30 @@ export type Routes = {
43420
43524
  custom_metadata: {
43421
43525
  [x: string]: string | boolean
43422
43526
  }
43527
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
43528
+ device_provider?:
43529
+ | {
43530
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
43531
+ provider_category: string
43532
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
43533
+ device_provider_name: string
43534
+ /** Display name for the device provider type. */
43535
+ display_name: string
43536
+ /** Image URL for the device provider. */
43537
+ image_url?: string | undefined
43538
+ }
43539
+ | undefined
43540
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
43541
+ device_manufacturer?:
43542
+ | {
43543
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
43544
+ manufacturer: string
43545
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
43546
+ display_name: string
43547
+ /** Image URL for the manufacturer logo. */
43548
+ image_url?: string | undefined
43549
+ }
43550
+ | undefined
43423
43551
  can_remotely_unlock?: boolean | undefined
43424
43552
  can_remotely_lock?: boolean | undefined
43425
43553
  can_program_offline_access_codes?: boolean | undefined
@@ -44976,6 +45104,30 @@ export type Routes = {
44976
45104
  custom_metadata: {
44977
45105
  [x: string]: string | boolean
44978
45106
  }
45107
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
45108
+ device_provider?:
45109
+ | {
45110
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
45111
+ provider_category: string
45112
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
45113
+ device_provider_name: string
45114
+ /** Display name for the device provider type. */
45115
+ display_name: string
45116
+ /** Image URL for the device provider. */
45117
+ image_url?: string | undefined
45118
+ }
45119
+ | undefined
45120
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
45121
+ device_manufacturer?:
45122
+ | {
45123
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
45124
+ manufacturer: string
45125
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
45126
+ display_name: string
45127
+ /** Image URL for the manufacturer logo. */
45128
+ image_url?: string | undefined
45129
+ }
45130
+ | undefined
44979
45131
  can_remotely_unlock?: boolean | undefined
44980
45132
  can_remotely_lock?: boolean | undefined
44981
45133
  can_program_offline_access_codes?: boolean | undefined
@@ -46722,6 +46874,30 @@ export type Routes = {
46722
46874
  custom_metadata: {
46723
46875
  [x: string]: string | boolean
46724
46876
  }
46877
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
46878
+ device_provider?:
46879
+ | {
46880
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
46881
+ provider_category: string
46882
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
46883
+ device_provider_name: string
46884
+ /** Display name for the device provider type. */
46885
+ display_name: string
46886
+ /** Image URL for the device provider. */
46887
+ image_url?: string | undefined
46888
+ }
46889
+ | undefined
46890
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
46891
+ device_manufacturer?:
46892
+ | {
46893
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
46894
+ manufacturer: string
46895
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
46896
+ display_name: string
46897
+ /** Image URL for the manufacturer logo. */
46898
+ image_url?: string | undefined
46899
+ }
46900
+ | undefined
46725
46901
  can_remotely_unlock?: boolean | undefined
46726
46902
  can_remotely_lock?: boolean | undefined
46727
46903
  can_program_offline_access_codes?: boolean | undefined
@@ -48277,6 +48453,30 @@ export type Routes = {
48277
48453
  custom_metadata: {
48278
48454
  [x: string]: string | boolean
48279
48455
  }
48456
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
48457
+ device_provider?:
48458
+ | {
48459
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
48460
+ provider_category: string
48461
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
48462
+ device_provider_name: string
48463
+ /** Display name for the device provider type. */
48464
+ display_name: string
48465
+ /** Image URL for the device provider. */
48466
+ image_url?: string | undefined
48467
+ }
48468
+ | undefined
48469
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
48470
+ device_manufacturer?:
48471
+ | {
48472
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
48473
+ manufacturer: string
48474
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
48475
+ display_name: string
48476
+ /** Image URL for the manufacturer logo. */
48477
+ image_url?: string | undefined
48478
+ }
48479
+ | undefined
48280
48480
  can_remotely_unlock?: boolean | undefined
48281
48481
  can_remotely_lock?: boolean | undefined
48282
48482
  can_program_offline_access_codes?: boolean | undefined
@@ -55775,6 +55975,30 @@ export type Routes = {
55775
55975
  custom_metadata: {
55776
55976
  [x: string]: string | boolean
55777
55977
  }
55978
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
55979
+ device_provider?:
55980
+ | {
55981
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
55982
+ provider_category: string
55983
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
55984
+ device_provider_name: string
55985
+ /** Display name for the device provider type. */
55986
+ display_name: string
55987
+ /** Image URL for the device provider. */
55988
+ image_url?: string | undefined
55989
+ }
55990
+ | undefined
55991
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
55992
+ device_manufacturer?:
55993
+ | {
55994
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
55995
+ manufacturer: string
55996
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
55997
+ display_name: string
55998
+ /** Image URL for the manufacturer logo. */
55999
+ image_url?: string | undefined
56000
+ }
56001
+ | undefined
55778
56002
  can_remotely_unlock?: boolean | undefined
55779
56003
  can_remotely_lock?: boolean | undefined
55780
56004
  can_program_offline_access_codes?: boolean | undefined
@@ -57330,6 +57554,30 @@ export type Routes = {
57330
57554
  custom_metadata: {
57331
57555
  [x: string]: string | boolean
57332
57556
  }
57557
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
57558
+ device_provider?:
57559
+ | {
57560
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
57561
+ provider_category: string
57562
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
57563
+ device_provider_name: string
57564
+ /** Display name for the device provider type. */
57565
+ display_name: string
57566
+ /** Image URL for the device provider. */
57567
+ image_url?: string | undefined
57568
+ }
57569
+ | undefined
57570
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
57571
+ device_manufacturer?:
57572
+ | {
57573
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
57574
+ manufacturer: string
57575
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
57576
+ display_name: string
57577
+ /** Image URL for the manufacturer logo. */
57578
+ image_url?: string | undefined
57579
+ }
57580
+ | undefined
57333
57581
  can_remotely_unlock?: boolean | undefined
57334
57582
  can_remotely_lock?: boolean | undefined
57335
57583
  can_program_offline_access_codes?: boolean | undefined
@@ -68778,6 +69026,30 @@ export type Routes = {
68778
69026
  custom_metadata: {
68779
69027
  [x: string]: string | boolean
68780
69028
  }
69029
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
69030
+ device_provider?:
69031
+ | {
69032
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
69033
+ provider_category: string
69034
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
69035
+ device_provider_name: string
69036
+ /** Display name for the device provider type. */
69037
+ display_name: string
69038
+ /** Image URL for the device provider. */
69039
+ image_url?: string | undefined
69040
+ }
69041
+ | undefined
69042
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
69043
+ device_manufacturer?:
69044
+ | {
69045
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
69046
+ manufacturer: string
69047
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
69048
+ display_name: string
69049
+ /** Image URL for the manufacturer logo. */
69050
+ image_url?: string | undefined
69051
+ }
69052
+ | undefined
68781
69053
  can_remotely_unlock?: boolean | undefined
68782
69054
  can_remotely_lock?: boolean | undefined
68783
69055
  can_program_offline_access_codes?: boolean | undefined
@@ -68986,6 +69258,8 @@ export type Routes = {
68986
69258
  account_type?: string | undefined
68987
69259
  /** Display name for the connected account type. */
68988
69260
  account_type_display_name: string
69261
+ /** Logo URL for the connected account provider. */
69262
+ image_url?: string | undefined
68989
69263
  /** Display name for the connected account. */
68990
69264
  display_name: string
68991
69265
  /** Errors associated with the connected account. */
@@ -75469,6 +75743,30 @@ export type Routes = {
75469
75743
  custom_metadata: {
75470
75744
  [x: string]: string | boolean
75471
75745
  }
75746
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
75747
+ device_provider?:
75748
+ | {
75749
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
75750
+ provider_category: string
75751
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
75752
+ device_provider_name: string
75753
+ /** Display name for the device provider type. */
75754
+ display_name: string
75755
+ /** Image URL for the device provider. */
75756
+ image_url?: string | undefined
75757
+ }
75758
+ | undefined
75759
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
75760
+ device_manufacturer?:
75761
+ | {
75762
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
75763
+ manufacturer: string
75764
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
75765
+ display_name: string
75766
+ /** Image URL for the manufacturer logo. */
75767
+ image_url?: string | undefined
75768
+ }
75769
+ | undefined
75472
75770
  can_remotely_unlock?: boolean | undefined
75473
75771
  can_remotely_lock?: boolean | undefined
75474
75772
  can_program_offline_access_codes?: boolean | undefined
@@ -80084,6 +80382,30 @@ export type Routes = {
80084
80382
  custom_metadata: {
80085
80383
  [x: string]: string | boolean
80086
80384
  }
80385
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
80386
+ device_provider?:
80387
+ | {
80388
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
80389
+ provider_category: string
80390
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
80391
+ device_provider_name: string
80392
+ /** Display name for the device provider type. */
80393
+ display_name: string
80394
+ /** Image URL for the device provider. */
80395
+ image_url?: string | undefined
80396
+ }
80397
+ | undefined
80398
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
80399
+ device_manufacturer?:
80400
+ | {
80401
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
80402
+ manufacturer: string
80403
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
80404
+ display_name: string
80405
+ /** Image URL for the manufacturer logo. */
80406
+ image_url?: string | undefined
80407
+ }
80408
+ | undefined
80087
80409
  can_remotely_unlock?: boolean | undefined
80088
80410
  can_remotely_lock?: boolean | undefined
80089
80411
  can_program_offline_access_codes?: boolean | undefined
@@ -81639,6 +81961,30 @@ export type Routes = {
81639
81961
  custom_metadata: {
81640
81962
  [x: string]: string | boolean
81641
81963
  }
81964
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
81965
+ device_provider?:
81966
+ | {
81967
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
81968
+ provider_category: string
81969
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
81970
+ device_provider_name: string
81971
+ /** Display name for the device provider type. */
81972
+ display_name: string
81973
+ /** Image URL for the device provider. */
81974
+ image_url?: string | undefined
81975
+ }
81976
+ | undefined
81977
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
81978
+ device_manufacturer?:
81979
+ | {
81980
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
81981
+ manufacturer: string
81982
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
81983
+ display_name: string
81984
+ /** Image URL for the manufacturer logo. */
81985
+ image_url?: string | undefined
81986
+ }
81987
+ | undefined
81642
81988
  can_remotely_unlock?: boolean | undefined
81643
81989
  can_remotely_lock?: boolean | undefined
81644
81990
  can_program_offline_access_codes?: boolean | undefined
@@ -90014,6 +90360,30 @@ export type Routes = {
90014
90360
  custom_metadata: {
90015
90361
  [x: string]: string | boolean
90016
90362
  }
90363
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
90364
+ device_provider?:
90365
+ | {
90366
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
90367
+ provider_category: string
90368
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
90369
+ device_provider_name: string
90370
+ /** Display name for the device provider type. */
90371
+ display_name: string
90372
+ /** Image URL for the device provider. */
90373
+ image_url?: string | undefined
90374
+ }
90375
+ | undefined
90376
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
90377
+ device_manufacturer?:
90378
+ | {
90379
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
90380
+ manufacturer: string
90381
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
90382
+ display_name: string
90383
+ /** Image URL for the manufacturer logo. */
90384
+ image_url?: string | undefined
90385
+ }
90386
+ | undefined
90017
90387
  can_remotely_unlock?: boolean | undefined
90018
90388
  can_remotely_lock?: boolean | undefined
90019
90389
  can_program_offline_access_codes?: boolean | undefined
@@ -91571,6 +91941,30 @@ export type Routes = {
91571
91941
  custom_metadata: {
91572
91942
  [x: string]: string | boolean
91573
91943
  }
91944
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
91945
+ device_provider?:
91946
+ | {
91947
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
91948
+ provider_category: string
91949
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
91950
+ device_provider_name: string
91951
+ /** Display name for the device provider type. */
91952
+ display_name: string
91953
+ /** Image URL for the device provider. */
91954
+ image_url?: string | undefined
91955
+ }
91956
+ | undefined
91957
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
91958
+ device_manufacturer?:
91959
+ | {
91960
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
91961
+ manufacturer: string
91962
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
91963
+ display_name: string
91964
+ /** Image URL for the manufacturer logo. */
91965
+ image_url?: string | undefined
91966
+ }
91967
+ | undefined
91574
91968
  can_remotely_unlock?: boolean | undefined
91575
91969
  can_remotely_lock?: boolean | undefined
91576
91970
  can_program_offline_access_codes?: boolean | undefined
@@ -94227,6 +94621,30 @@ export type Routes = {
94227
94621
  custom_metadata: {
94228
94622
  [x: string]: string | boolean
94229
94623
  }
94624
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
94625
+ device_provider?:
94626
+ | {
94627
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
94628
+ provider_category: string
94629
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
94630
+ device_provider_name: string
94631
+ /** Display name for the device provider type. */
94632
+ display_name: string
94633
+ /** Image URL for the device provider. */
94634
+ image_url?: string | undefined
94635
+ }
94636
+ | undefined
94637
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
94638
+ device_manufacturer?:
94639
+ | {
94640
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
94641
+ manufacturer: string
94642
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
94643
+ display_name: string
94644
+ /** Image URL for the manufacturer logo. */
94645
+ image_url?: string | undefined
94646
+ }
94647
+ | undefined
94230
94648
  can_remotely_unlock?: boolean | undefined
94231
94649
  can_remotely_lock?: boolean | undefined
94232
94650
  can_program_offline_access_codes?: boolean | undefined
@@ -97464,6 +97882,8 @@ export type Routes = {
97464
97882
  account_type?: string | undefined
97465
97883
  /** Display name for the connected account type. */
97466
97884
  account_type_display_name: string
97885
+ /** Logo URL for the connected account provider. */
97886
+ image_url?: string | undefined
97467
97887
  /** Display name for the connected account. */
97468
97888
  display_name: string
97469
97889
  /** Errors associated with the connected account. */