@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.
@@ -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: [
@@ -56707,6 +56768,10 @@ export default {
56707
56768
  type: 'string',
56708
56769
  },
56709
56770
  code: { nullable: true, type: 'string' },
56771
+ instant_key_url: {
56772
+ format: 'uri',
56773
+ type: 'string',
56774
+ },
56710
56775
  is_card_encoding_required: { type: 'boolean' },
56711
56776
  is_issued: { type: 'boolean' },
56712
56777
  mode: { type: 'string' },
@@ -56823,6 +56888,10 @@ export default {
56823
56888
  type: 'string',
56824
56889
  },
56825
56890
  code: { nullable: true, type: 'string' },
56891
+ instant_key_url: {
56892
+ format: 'uri',
56893
+ type: 'string',
56894
+ },
56826
56895
  is_card_encoding_required: { type: 'boolean' },
56827
56896
  is_issued: { type: 'boolean' },
56828
56897
  mode: { type: 'string' },
@@ -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
@@ -65949,6 +66197,7 @@ export type Routes = {
65949
66197
  is_issued: boolean
65950
66198
  is_card_encoding_required?: boolean | undefined
65951
66199
  code?: (string | null) | undefined
66200
+ instant_key_url?: string | undefined
65952
66201
  }[]
65953
66202
  }
65954
66203
  }
@@ -68778,6 +69027,30 @@ export type Routes = {
68778
69027
  custom_metadata: {
68779
69028
  [x: string]: string | boolean
68780
69029
  }
69030
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
69031
+ device_provider?:
69032
+ | {
69033
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
69034
+ provider_category: string
69035
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
69036
+ device_provider_name: string
69037
+ /** Display name for the device provider type. */
69038
+ display_name: string
69039
+ /** Image URL for the device provider. */
69040
+ image_url?: string | undefined
69041
+ }
69042
+ | undefined
69043
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
69044
+ device_manufacturer?:
69045
+ | {
69046
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
69047
+ manufacturer: string
69048
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
69049
+ display_name: string
69050
+ /** Image URL for the manufacturer logo. */
69051
+ image_url?: string | undefined
69052
+ }
69053
+ | undefined
68781
69054
  can_remotely_unlock?: boolean | undefined
68782
69055
  can_remotely_lock?: boolean | undefined
68783
69056
  can_program_offline_access_codes?: boolean | undefined
@@ -68986,6 +69259,8 @@ export type Routes = {
68986
69259
  account_type?: string | undefined
68987
69260
  /** Display name for the connected account type. */
68988
69261
  account_type_display_name: string
69262
+ /** Logo URL for the connected account provider. */
69263
+ image_url?: string | undefined
68989
69264
  /** Display name for the connected account. */
68990
69265
  display_name: string
68991
69266
  /** Errors associated with the connected account. */
@@ -75469,6 +75744,30 @@ export type Routes = {
75469
75744
  custom_metadata: {
75470
75745
  [x: string]: string | boolean
75471
75746
  }
75747
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
75748
+ device_provider?:
75749
+ | {
75750
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
75751
+ provider_category: string
75752
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
75753
+ device_provider_name: string
75754
+ /** Display name for the device provider type. */
75755
+ display_name: string
75756
+ /** Image URL for the device provider. */
75757
+ image_url?: string | undefined
75758
+ }
75759
+ | undefined
75760
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
75761
+ device_manufacturer?:
75762
+ | {
75763
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
75764
+ manufacturer: string
75765
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
75766
+ display_name: string
75767
+ /** Image URL for the manufacturer logo. */
75768
+ image_url?: string | undefined
75769
+ }
75770
+ | undefined
75472
75771
  can_remotely_unlock?: boolean | undefined
75473
75772
  can_remotely_lock?: boolean | undefined
75474
75773
  can_program_offline_access_codes?: boolean | undefined
@@ -80084,6 +80383,30 @@ export type Routes = {
80084
80383
  custom_metadata: {
80085
80384
  [x: string]: string | boolean
80086
80385
  }
80386
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
80387
+ device_provider?:
80388
+ | {
80389
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
80390
+ provider_category: string
80391
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
80392
+ device_provider_name: string
80393
+ /** Display name for the device provider type. */
80394
+ display_name: string
80395
+ /** Image URL for the device provider. */
80396
+ image_url?: string | undefined
80397
+ }
80398
+ | undefined
80399
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
80400
+ device_manufacturer?:
80401
+ | {
80402
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
80403
+ manufacturer: string
80404
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
80405
+ display_name: string
80406
+ /** Image URL for the manufacturer logo. */
80407
+ image_url?: string | undefined
80408
+ }
80409
+ | undefined
80087
80410
  can_remotely_unlock?: boolean | undefined
80088
80411
  can_remotely_lock?: boolean | undefined
80089
80412
  can_program_offline_access_codes?: boolean | undefined
@@ -81639,6 +81962,30 @@ export type Routes = {
81639
81962
  custom_metadata: {
81640
81963
  [x: string]: string | boolean
81641
81964
  }
81965
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
81966
+ device_provider?:
81967
+ | {
81968
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
81969
+ provider_category: string
81970
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
81971
+ device_provider_name: string
81972
+ /** Display name for the device provider type. */
81973
+ display_name: string
81974
+ /** Image URL for the device provider. */
81975
+ image_url?: string | undefined
81976
+ }
81977
+ | undefined
81978
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
81979
+ device_manufacturer?:
81980
+ | {
81981
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
81982
+ manufacturer: string
81983
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
81984
+ display_name: string
81985
+ /** Image URL for the manufacturer logo. */
81986
+ image_url?: string | undefined
81987
+ }
81988
+ | undefined
81642
81989
  can_remotely_unlock?: boolean | undefined
81643
81990
  can_remotely_lock?: boolean | undefined
81644
81991
  can_program_offline_access_codes?: boolean | undefined
@@ -90014,6 +90361,30 @@ export type Routes = {
90014
90361
  custom_metadata: {
90015
90362
  [x: string]: string | boolean
90016
90363
  }
90364
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
90365
+ device_provider?:
90366
+ | {
90367
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
90368
+ provider_category: string
90369
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
90370
+ device_provider_name: string
90371
+ /** Display name for the device provider type. */
90372
+ display_name: string
90373
+ /** Image URL for the device provider. */
90374
+ image_url?: string | undefined
90375
+ }
90376
+ | undefined
90377
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
90378
+ device_manufacturer?:
90379
+ | {
90380
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
90381
+ manufacturer: string
90382
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
90383
+ display_name: string
90384
+ /** Image URL for the manufacturer logo. */
90385
+ image_url?: string | undefined
90386
+ }
90387
+ | undefined
90017
90388
  can_remotely_unlock?: boolean | undefined
90018
90389
  can_remotely_lock?: boolean | undefined
90019
90390
  can_program_offline_access_codes?: boolean | undefined
@@ -91571,6 +91942,30 @@ export type Routes = {
91571
91942
  custom_metadata: {
91572
91943
  [x: string]: string | boolean
91573
91944
  }
91945
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
91946
+ device_provider?:
91947
+ | {
91948
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
91949
+ provider_category: string
91950
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
91951
+ device_provider_name: string
91952
+ /** Display name for the device provider type. */
91953
+ display_name: string
91954
+ /** Image URL for the device provider. */
91955
+ image_url?: string | undefined
91956
+ }
91957
+ | undefined
91958
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
91959
+ device_manufacturer?:
91960
+ | {
91961
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
91962
+ manufacturer: string
91963
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
91964
+ display_name: string
91965
+ /** Image URL for the manufacturer logo. */
91966
+ image_url?: string | undefined
91967
+ }
91968
+ | undefined
91574
91969
  can_remotely_unlock?: boolean | undefined
91575
91970
  can_remotely_lock?: boolean | undefined
91576
91971
  can_program_offline_access_codes?: boolean | undefined
@@ -94227,6 +94622,30 @@ export type Routes = {
94227
94622
  custom_metadata: {
94228
94623
  [x: string]: string | boolean
94229
94624
  }
94625
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
94626
+ device_provider?:
94627
+ | {
94628
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
94629
+ provider_category: string
94630
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
94631
+ device_provider_name: string
94632
+ /** Display name for the device provider type. */
94633
+ display_name: string
94634
+ /** Image URL for the device provider. */
94635
+ image_url?: string | undefined
94636
+ }
94637
+ | undefined
94638
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
94639
+ device_manufacturer?:
94640
+ | {
94641
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
94642
+ manufacturer: string
94643
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
94644
+ display_name: string
94645
+ /** Image URL for the manufacturer logo. */
94646
+ image_url?: string | undefined
94647
+ }
94648
+ | undefined
94230
94649
  can_remotely_unlock?: boolean | undefined
94231
94650
  can_remotely_lock?: boolean | undefined
94232
94651
  can_program_offline_access_codes?: boolean | undefined
@@ -97464,6 +97883,8 @@ export type Routes = {
97464
97883
  account_type?: string | undefined
97465
97884
  /** Display name for the connected account type. */
97466
97885
  account_type_display_name: string
97886
+ /** Logo URL for the connected account provider. */
97887
+ image_url?: string | undefined
97467
97888
  /** Display name for the connected account. */
97468
97889
  display_name: string
97469
97890
  /** Errors associated with the connected account. */