@seamapi/types 1.703.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.
- package/dist/connect.cjs +224 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +742 -56
- package/dist/index.cjs +224 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
- package/lib/seam/connect/models/batch.d.ts +140 -33
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +5 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +94 -12
- package/lib/seam/connect/models/devices/device.js +45 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +42 -13
- package/lib/seam/connect/openapi.d.ts +126 -0
- package/lib/seam/connect/openapi.js +187 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +370 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +5 -0
- package/src/lib/seam/connect/models/devices/device.ts +63 -0
- package/src/lib/seam/connect/openapi.ts +210 -0
- package/src/lib/seam/connect/route-types.ts +438 -0
|
@@ -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
|
|
@@ -39415,6 +39519,24 @@ export type Routes = {
|
|
|
39415
39519
|
acs_user_id?: string | undefined
|
|
39416
39520
|
/** ID of the user identity for which you want to list events. */
|
|
39417
39521
|
user_identity_id?: string | undefined
|
|
39522
|
+
/** ID of the access grant for which you want to list events. */
|
|
39523
|
+
access_grant_id?: string | undefined
|
|
39524
|
+
/** IDs of the access grants for which you want to list events. */
|
|
39525
|
+
access_grant_ids?: string[] | undefined
|
|
39526
|
+
/** ID of the access method for which you want to list events. */
|
|
39527
|
+
access_method_id?: string | undefined
|
|
39528
|
+
/** IDs of the access methods for which you want to list events. */
|
|
39529
|
+
access_method_ids?: string[] | undefined
|
|
39530
|
+
/** ID of the ACS credential for which you want to list events. */
|
|
39531
|
+
acs_credential_id?: string | undefined
|
|
39532
|
+
/** ID of the space for which you want to list events. */
|
|
39533
|
+
space_id?: string | undefined
|
|
39534
|
+
/** IDs of the spaces for which you want to list events. */
|
|
39535
|
+
space_ids?: string[] | undefined
|
|
39536
|
+
/** ID of the ACS access group for which you want to list events. */
|
|
39537
|
+
acs_access_group_id?: string | undefined
|
|
39538
|
+
/** ID of the ACS encoder for which you want to list events. */
|
|
39539
|
+
acs_encoder_id?: string | undefined
|
|
39418
39540
|
}
|
|
39419
39541
|
formData: {}
|
|
39420
39542
|
jsonResponse: {
|
|
@@ -43402,6 +43524,30 @@ export type Routes = {
|
|
|
43402
43524
|
custom_metadata: {
|
|
43403
43525
|
[x: string]: string | boolean
|
|
43404
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
|
|
43405
43551
|
can_remotely_unlock?: boolean | undefined
|
|
43406
43552
|
can_remotely_lock?: boolean | undefined
|
|
43407
43553
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -44958,6 +45104,30 @@ export type Routes = {
|
|
|
44958
45104
|
custom_metadata: {
|
|
44959
45105
|
[x: string]: string | boolean
|
|
44960
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
|
|
44961
45131
|
can_remotely_unlock?: boolean | undefined
|
|
44962
45132
|
can_remotely_lock?: boolean | undefined
|
|
44963
45133
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -46704,6 +46874,30 @@ export type Routes = {
|
|
|
46704
46874
|
custom_metadata: {
|
|
46705
46875
|
[x: string]: string | boolean
|
|
46706
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
|
|
46707
46901
|
can_remotely_unlock?: boolean | undefined
|
|
46708
46902
|
can_remotely_lock?: boolean | undefined
|
|
46709
46903
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -48259,6 +48453,30 @@ export type Routes = {
|
|
|
48259
48453
|
custom_metadata: {
|
|
48260
48454
|
[x: string]: string | boolean
|
|
48261
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
|
|
48262
48480
|
can_remotely_unlock?: boolean | undefined
|
|
48263
48481
|
can_remotely_lock?: boolean | undefined
|
|
48264
48482
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -55757,6 +55975,30 @@ export type Routes = {
|
|
|
55757
55975
|
custom_metadata: {
|
|
55758
55976
|
[x: string]: string | boolean
|
|
55759
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
|
|
55760
56002
|
can_remotely_unlock?: boolean | undefined
|
|
55761
56003
|
can_remotely_lock?: boolean | undefined
|
|
55762
56004
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -57312,6 +57554,30 @@ export type Routes = {
|
|
|
57312
57554
|
custom_metadata: {
|
|
57313
57555
|
[x: string]: string | boolean
|
|
57314
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
|
|
57315
57581
|
can_remotely_unlock?: boolean | undefined
|
|
57316
57582
|
can_remotely_lock?: boolean | undefined
|
|
57317
57583
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -68760,6 +69026,30 @@ export type Routes = {
|
|
|
68760
69026
|
custom_metadata: {
|
|
68761
69027
|
[x: string]: string | boolean
|
|
68762
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
|
|
68763
69053
|
can_remotely_unlock?: boolean | undefined
|
|
68764
69054
|
can_remotely_lock?: boolean | undefined
|
|
68765
69055
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -68968,6 +69258,8 @@ export type Routes = {
|
|
|
68968
69258
|
account_type?: string | undefined
|
|
68969
69259
|
/** Display name for the connected account type. */
|
|
68970
69260
|
account_type_display_name: string
|
|
69261
|
+
/** Logo URL for the connected account provider. */
|
|
69262
|
+
image_url?: string | undefined
|
|
68971
69263
|
/** Display name for the connected account. */
|
|
68972
69264
|
display_name: string
|
|
68973
69265
|
/** Errors associated with the connected account. */
|
|
@@ -75451,6 +75743,30 @@ export type Routes = {
|
|
|
75451
75743
|
custom_metadata: {
|
|
75452
75744
|
[x: string]: string | boolean
|
|
75453
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
|
|
75454
75770
|
can_remotely_unlock?: boolean | undefined
|
|
75455
75771
|
can_remotely_lock?: boolean | undefined
|
|
75456
75772
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -80066,6 +80382,30 @@ export type Routes = {
|
|
|
80066
80382
|
custom_metadata: {
|
|
80067
80383
|
[x: string]: string | boolean
|
|
80068
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
|
|
80069
80409
|
can_remotely_unlock?: boolean | undefined
|
|
80070
80410
|
can_remotely_lock?: boolean | undefined
|
|
80071
80411
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -81621,6 +81961,30 @@ export type Routes = {
|
|
|
81621
81961
|
custom_metadata: {
|
|
81622
81962
|
[x: string]: string | boolean
|
|
81623
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
|
|
81624
81988
|
can_remotely_unlock?: boolean | undefined
|
|
81625
81989
|
can_remotely_lock?: boolean | undefined
|
|
81626
81990
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -89996,6 +90360,30 @@ export type Routes = {
|
|
|
89996
90360
|
custom_metadata: {
|
|
89997
90361
|
[x: string]: string | boolean
|
|
89998
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
|
|
89999
90387
|
can_remotely_unlock?: boolean | undefined
|
|
90000
90388
|
can_remotely_lock?: boolean | undefined
|
|
90001
90389
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -91553,6 +91941,30 @@ export type Routes = {
|
|
|
91553
91941
|
custom_metadata: {
|
|
91554
91942
|
[x: string]: string | boolean
|
|
91555
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
|
|
91556
91968
|
can_remotely_unlock?: boolean | undefined
|
|
91557
91969
|
can_remotely_lock?: boolean | undefined
|
|
91558
91970
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -94209,6 +94621,30 @@ export type Routes = {
|
|
|
94209
94621
|
custom_metadata: {
|
|
94210
94622
|
[x: string]: string | boolean
|
|
94211
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
|
|
94212
94648
|
can_remotely_unlock?: boolean | undefined
|
|
94213
94649
|
can_remotely_lock?: boolean | undefined
|
|
94214
94650
|
can_program_offline_access_codes?: boolean | undefined
|
|
@@ -97446,6 +97882,8 @@ export type Routes = {
|
|
|
97446
97882
|
account_type?: string | undefined
|
|
97447
97883
|
/** Display name for the connected account type. */
|
|
97448
97884
|
account_type_display_name: string
|
|
97885
|
+
/** Logo URL for the connected account provider. */
|
|
97886
|
+
image_url?: string | undefined
|
|
97449
97887
|
/** Display name for the connected account. */
|
|
97450
97888
|
display_name: string
|
|
97451
97889
|
/** Errors associated with the connected account. */
|