@seamapi/types 1.50.0 → 1.52.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 +225 -32
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +526 -49
- package/dist/devicedb.cjs +7 -2
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +130 -0
- package/lib/seam/connect/openapi.d.ts +199 -12
- package/lib/seam/connect/openapi.js +224 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +327 -37
- package/lib/seam/connect/unstable/models/devices/managed-device.js +83 -33
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/user-identity.d.ts +6 -0
- package/lib/seam/connect/unstable/models/user-identity.js +2 -0
- package/lib/seam/connect/unstable/models/user-identity.js.map +1 -1
- package/lib/seam/devicedb/public-models/device-model-v1.d.ts +50 -0
- package/lib/seam/devicedb/public-models/device-model-v1.js +5 -0
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +70 -0
- package/lib/seam/devicedb/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +244 -31
- package/src/lib/seam/connect/route-types.ts +327 -36
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +111 -41
- package/src/lib/seam/connect/unstable/models/user-identity.ts +2 -0
- package/src/lib/seam/devicedb/public-models/device-model-v1.ts +5 -0
- package/src/lib/seam/devicedb/route-types.ts +10 -0
package/dist/connect.d.cts
CHANGED
|
@@ -681,6 +681,7 @@ declare const _default: {
|
|
|
681
681
|
device: {
|
|
682
682
|
properties: {
|
|
683
683
|
capabilities_supported: {
|
|
684
|
+
description: string;
|
|
684
685
|
items: {
|
|
685
686
|
enum: string[];
|
|
686
687
|
type: string;
|
|
@@ -688,24 +689,29 @@ declare const _default: {
|
|
|
688
689
|
type: string;
|
|
689
690
|
};
|
|
690
691
|
connected_account_id: {
|
|
692
|
+
description: string;
|
|
691
693
|
format: string;
|
|
692
694
|
type: string;
|
|
693
695
|
};
|
|
694
696
|
created_at: {
|
|
697
|
+
description: string;
|
|
695
698
|
format: string;
|
|
696
699
|
type: string;
|
|
697
700
|
};
|
|
698
701
|
device_id: {
|
|
702
|
+
description: string;
|
|
699
703
|
format: string;
|
|
700
704
|
type: string;
|
|
701
705
|
};
|
|
702
706
|
device_type: {
|
|
707
|
+
description: string;
|
|
703
708
|
oneOf: {
|
|
704
709
|
enum: string[];
|
|
705
710
|
type: string;
|
|
706
711
|
}[];
|
|
707
712
|
};
|
|
708
713
|
errors: {
|
|
714
|
+
description: string;
|
|
709
715
|
items: {
|
|
710
716
|
properties: {
|
|
711
717
|
error_code: {
|
|
@@ -721,16 +727,20 @@ declare const _default: {
|
|
|
721
727
|
type: string;
|
|
722
728
|
};
|
|
723
729
|
is_managed: {
|
|
730
|
+
description: string;
|
|
724
731
|
enum: boolean[];
|
|
725
732
|
type: string;
|
|
726
733
|
};
|
|
727
734
|
location: {
|
|
735
|
+
description: string;
|
|
728
736
|
nullable: boolean;
|
|
729
737
|
properties: {
|
|
730
738
|
location_name: {
|
|
739
|
+
description: string;
|
|
731
740
|
type: string;
|
|
732
741
|
};
|
|
733
742
|
timezone: {
|
|
743
|
+
description: string;
|
|
734
744
|
type: string;
|
|
735
745
|
};
|
|
736
746
|
};
|
|
@@ -741,6 +751,7 @@ declare const _default: {
|
|
|
741
751
|
allOf: ({
|
|
742
752
|
properties: {
|
|
743
753
|
battery: {
|
|
754
|
+
description: string;
|
|
744
755
|
properties: {
|
|
745
756
|
level: {
|
|
746
757
|
maximum: number;
|
|
@@ -756,38 +767,48 @@ declare const _default: {
|
|
|
756
767
|
type: string;
|
|
757
768
|
};
|
|
758
769
|
battery_level: {
|
|
770
|
+
description: string;
|
|
759
771
|
maximum: number;
|
|
760
772
|
minimum: number;
|
|
761
773
|
type: string;
|
|
762
774
|
};
|
|
763
775
|
has_direct_power: {
|
|
776
|
+
description: string;
|
|
764
777
|
type: string;
|
|
765
778
|
};
|
|
766
779
|
image_alt_text: {
|
|
780
|
+
description: string;
|
|
767
781
|
type: string;
|
|
768
782
|
};
|
|
769
783
|
image_url: {
|
|
784
|
+
description: string;
|
|
770
785
|
format: string;
|
|
771
786
|
type: string;
|
|
772
787
|
};
|
|
773
788
|
manufacturer: {
|
|
789
|
+
description: string;
|
|
774
790
|
type: string;
|
|
775
791
|
};
|
|
776
792
|
model: {
|
|
777
793
|
properties: {
|
|
778
794
|
accessory_keypad_supported: {
|
|
795
|
+
description: string;
|
|
779
796
|
type: string;
|
|
780
797
|
};
|
|
781
798
|
display_name: {
|
|
799
|
+
description: string;
|
|
782
800
|
type: string;
|
|
783
801
|
};
|
|
784
802
|
manufacturer_display_name: {
|
|
803
|
+
description: string;
|
|
785
804
|
type: string;
|
|
786
805
|
};
|
|
787
806
|
offline_access_codes_supported: {
|
|
807
|
+
description: string;
|
|
788
808
|
type: string;
|
|
789
809
|
};
|
|
790
810
|
online_access_codes_supported: {
|
|
811
|
+
description: string;
|
|
791
812
|
type: string;
|
|
792
813
|
};
|
|
793
814
|
};
|
|
@@ -795,6 +816,7 @@ declare const _default: {
|
|
|
795
816
|
type: string;
|
|
796
817
|
};
|
|
797
818
|
name: {
|
|
819
|
+
description: string;
|
|
798
820
|
type: string;
|
|
799
821
|
};
|
|
800
822
|
offline_access_codes_enabled: {
|
|
@@ -802,6 +824,7 @@ declare const _default: {
|
|
|
802
824
|
type: string;
|
|
803
825
|
};
|
|
804
826
|
online: {
|
|
827
|
+
description: string;
|
|
805
828
|
type: string;
|
|
806
829
|
};
|
|
807
830
|
online_access_codes_enabled: {
|
|
@@ -809,6 +832,7 @@ declare const _default: {
|
|
|
809
832
|
type: string;
|
|
810
833
|
};
|
|
811
834
|
serial_number: {
|
|
835
|
+
description: string;
|
|
812
836
|
type: string;
|
|
813
837
|
};
|
|
814
838
|
supports_accessory_keypad: {
|
|
@@ -1990,8 +2014,10 @@ declare const _default: {
|
|
|
1990
2014
|
type?: never;
|
|
1991
2015
|
})[];
|
|
1992
2016
|
})[];
|
|
2017
|
+
description: string;
|
|
1993
2018
|
};
|
|
1994
2019
|
warnings: {
|
|
2020
|
+
description: string;
|
|
1995
2021
|
items: {
|
|
1996
2022
|
properties: {
|
|
1997
2023
|
message: {
|
|
@@ -2007,6 +2033,7 @@ declare const _default: {
|
|
|
2007
2033
|
type: string;
|
|
2008
2034
|
};
|
|
2009
2035
|
workspace_id: {
|
|
2036
|
+
description: string;
|
|
2010
2037
|
format: string;
|
|
2011
2038
|
type: string;
|
|
2012
2039
|
};
|
|
@@ -2177,6 +2204,7 @@ declare const _default: {
|
|
|
2177
2204
|
unmanaged_device: {
|
|
2178
2205
|
properties: {
|
|
2179
2206
|
capabilities_supported: {
|
|
2207
|
+
description: string;
|
|
2180
2208
|
items: {
|
|
2181
2209
|
enum: string[];
|
|
2182
2210
|
type: string;
|
|
@@ -2184,24 +2212,29 @@ declare const _default: {
|
|
|
2184
2212
|
type: string;
|
|
2185
2213
|
};
|
|
2186
2214
|
connected_account_id: {
|
|
2215
|
+
description: string;
|
|
2187
2216
|
format: string;
|
|
2188
2217
|
type: string;
|
|
2189
2218
|
};
|
|
2190
2219
|
created_at: {
|
|
2220
|
+
description: string;
|
|
2191
2221
|
format: string;
|
|
2192
2222
|
type: string;
|
|
2193
2223
|
};
|
|
2194
2224
|
device_id: {
|
|
2225
|
+
description: string;
|
|
2195
2226
|
format: string;
|
|
2196
2227
|
type: string;
|
|
2197
2228
|
};
|
|
2198
2229
|
device_type: {
|
|
2230
|
+
description: string;
|
|
2199
2231
|
oneOf: {
|
|
2200
2232
|
enum: string[];
|
|
2201
2233
|
type: string;
|
|
2202
2234
|
}[];
|
|
2203
2235
|
};
|
|
2204
2236
|
errors: {
|
|
2237
|
+
description: string;
|
|
2205
2238
|
items: {
|
|
2206
2239
|
properties: {
|
|
2207
2240
|
error_code: {
|
|
@@ -2254,6 +2287,7 @@ declare const _default: {
|
|
|
2254
2287
|
type: string;
|
|
2255
2288
|
};
|
|
2256
2289
|
warnings: {
|
|
2290
|
+
description: string;
|
|
2257
2291
|
items: {
|
|
2258
2292
|
properties: {
|
|
2259
2293
|
message: {
|
|
@@ -2269,6 +2303,7 @@ declare const _default: {
|
|
|
2269
2303
|
type: string;
|
|
2270
2304
|
};
|
|
2271
2305
|
workspace_id: {
|
|
2306
|
+
description: string;
|
|
2272
2307
|
format: string;
|
|
2273
2308
|
type: string;
|
|
2274
2309
|
};
|
|
@@ -2339,6 +2374,16 @@ declare const _default: {
|
|
|
2339
2374
|
name: string;
|
|
2340
2375
|
type: string;
|
|
2341
2376
|
};
|
|
2377
|
+
console_session: {
|
|
2378
|
+
bearerFormat: string;
|
|
2379
|
+
scheme: string;
|
|
2380
|
+
type: string;
|
|
2381
|
+
};
|
|
2382
|
+
pat_with_workspace: {
|
|
2383
|
+
bearerFormat: string;
|
|
2384
|
+
scheme: string;
|
|
2385
|
+
type: string;
|
|
2386
|
+
};
|
|
2342
2387
|
seam_client_session_token: {
|
|
2343
2388
|
in: string;
|
|
2344
2389
|
name: string;
|
|
@@ -5588,6 +5633,119 @@ declare const _default: {
|
|
|
5588
5633
|
'x-fern-sdk-method-name': string;
|
|
5589
5634
|
};
|
|
5590
5635
|
};
|
|
5636
|
+
'/acs/credentials/update': {
|
|
5637
|
+
post: {
|
|
5638
|
+
operationId: string;
|
|
5639
|
+
requestBody: {
|
|
5640
|
+
content: {
|
|
5641
|
+
'application/json': {
|
|
5642
|
+
schema: {
|
|
5643
|
+
properties: {
|
|
5644
|
+
code: {
|
|
5645
|
+
pattern: string;
|
|
5646
|
+
type: string;
|
|
5647
|
+
};
|
|
5648
|
+
name: {
|
|
5649
|
+
maxLength: number;
|
|
5650
|
+
type: string;
|
|
5651
|
+
};
|
|
5652
|
+
};
|
|
5653
|
+
type: string;
|
|
5654
|
+
};
|
|
5655
|
+
};
|
|
5656
|
+
};
|
|
5657
|
+
};
|
|
5658
|
+
responses: {
|
|
5659
|
+
200: {
|
|
5660
|
+
content: {
|
|
5661
|
+
'application/json': {
|
|
5662
|
+
schema: {
|
|
5663
|
+
properties: {
|
|
5664
|
+
acs_credential: {
|
|
5665
|
+
properties: {
|
|
5666
|
+
acs_credential_id: {
|
|
5667
|
+
format: string;
|
|
5668
|
+
type: string;
|
|
5669
|
+
};
|
|
5670
|
+
acs_credential_pool_id: {
|
|
5671
|
+
format: string;
|
|
5672
|
+
type: string;
|
|
5673
|
+
};
|
|
5674
|
+
acs_system_id: {
|
|
5675
|
+
format: string;
|
|
5676
|
+
type: string;
|
|
5677
|
+
};
|
|
5678
|
+
acs_user_id: {
|
|
5679
|
+
format: string;
|
|
5680
|
+
type: string;
|
|
5681
|
+
};
|
|
5682
|
+
code: {
|
|
5683
|
+
nullable: boolean;
|
|
5684
|
+
type: string;
|
|
5685
|
+
};
|
|
5686
|
+
created_at: {
|
|
5687
|
+
format: string;
|
|
5688
|
+
type: string;
|
|
5689
|
+
};
|
|
5690
|
+
display_name: {
|
|
5691
|
+
minLength: number;
|
|
5692
|
+
type: string;
|
|
5693
|
+
};
|
|
5694
|
+
external_type: {
|
|
5695
|
+
enum: string[];
|
|
5696
|
+
type: string;
|
|
5697
|
+
};
|
|
5698
|
+
external_type_display_name: {
|
|
5699
|
+
type: string;
|
|
5700
|
+
};
|
|
5701
|
+
workspace_id: {
|
|
5702
|
+
format: string;
|
|
5703
|
+
type: string;
|
|
5704
|
+
};
|
|
5705
|
+
};
|
|
5706
|
+
required: string[];
|
|
5707
|
+
type: string;
|
|
5708
|
+
};
|
|
5709
|
+
ok: {
|
|
5710
|
+
type: string;
|
|
5711
|
+
};
|
|
5712
|
+
};
|
|
5713
|
+
required: string[];
|
|
5714
|
+
type: string;
|
|
5715
|
+
};
|
|
5716
|
+
};
|
|
5717
|
+
};
|
|
5718
|
+
description: string;
|
|
5719
|
+
};
|
|
5720
|
+
400: {
|
|
5721
|
+
description: string;
|
|
5722
|
+
};
|
|
5723
|
+
401: {
|
|
5724
|
+
description: string;
|
|
5725
|
+
};
|
|
5726
|
+
};
|
|
5727
|
+
security: ({
|
|
5728
|
+
access_token: never[];
|
|
5729
|
+
seam_workspace: never[];
|
|
5730
|
+
seam_client_session_token?: never;
|
|
5731
|
+
client_session_token?: never;
|
|
5732
|
+
} | {
|
|
5733
|
+
seam_client_session_token: never[];
|
|
5734
|
+
access_token?: never;
|
|
5735
|
+
seam_workspace?: never;
|
|
5736
|
+
client_session_token?: never;
|
|
5737
|
+
} | {
|
|
5738
|
+
client_session_token: never[];
|
|
5739
|
+
access_token?: never;
|
|
5740
|
+
seam_workspace?: never;
|
|
5741
|
+
seam_client_session_token?: never;
|
|
5742
|
+
})[];
|
|
5743
|
+
summary: string;
|
|
5744
|
+
tags: never[];
|
|
5745
|
+
'x-fern-sdk-group-name': string[];
|
|
5746
|
+
'x-fern-sdk-method-name': string;
|
|
5747
|
+
};
|
|
5748
|
+
};
|
|
5591
5749
|
'/acs/entrances/get': {
|
|
5592
5750
|
post: {
|
|
5593
5751
|
operationId: string;
|
|
@@ -7063,20 +7221,25 @@ declare const _default: {
|
|
|
7063
7221
|
};
|
|
7064
7222
|
};
|
|
7065
7223
|
security: ({
|
|
7066
|
-
|
|
7067
|
-
|
|
7068
|
-
|
|
7069
|
-
|
|
7224
|
+
client_session: never[];
|
|
7225
|
+
pat_with_workspace?: never;
|
|
7226
|
+
console_session?: never;
|
|
7227
|
+
api_key?: never;
|
|
7070
7228
|
} | {
|
|
7071
|
-
|
|
7072
|
-
|
|
7073
|
-
|
|
7074
|
-
|
|
7229
|
+
pat_with_workspace: never[];
|
|
7230
|
+
client_session?: never;
|
|
7231
|
+
console_session?: never;
|
|
7232
|
+
api_key?: never;
|
|
7075
7233
|
} | {
|
|
7076
|
-
|
|
7077
|
-
|
|
7078
|
-
|
|
7079
|
-
|
|
7234
|
+
console_session: never[];
|
|
7235
|
+
client_session?: never;
|
|
7236
|
+
pat_with_workspace?: never;
|
|
7237
|
+
api_key?: never;
|
|
7238
|
+
} | {
|
|
7239
|
+
api_key: never[];
|
|
7240
|
+
client_session?: never;
|
|
7241
|
+
pat_with_workspace?: never;
|
|
7242
|
+
console_session?: never;
|
|
7080
7243
|
})[];
|
|
7081
7244
|
summary: string;
|
|
7082
7245
|
tags: string[];
|
|
@@ -11975,6 +12138,14 @@ declare const _default: {
|
|
|
11975
12138
|
nullable: boolean;
|
|
11976
12139
|
type: string;
|
|
11977
12140
|
};
|
|
12141
|
+
first_name: {
|
|
12142
|
+
nullable: boolean;
|
|
12143
|
+
type: string;
|
|
12144
|
+
};
|
|
12145
|
+
last_name: {
|
|
12146
|
+
nullable: boolean;
|
|
12147
|
+
type: string;
|
|
12148
|
+
};
|
|
11978
12149
|
user_identity_key: {
|
|
11979
12150
|
nullable: boolean;
|
|
11980
12151
|
type: string;
|
|
@@ -12005,6 +12176,14 @@ declare const _default: {
|
|
|
12005
12176
|
nullable: boolean;
|
|
12006
12177
|
type: string;
|
|
12007
12178
|
};
|
|
12179
|
+
first_name: {
|
|
12180
|
+
nullable: boolean;
|
|
12181
|
+
type: string;
|
|
12182
|
+
};
|
|
12183
|
+
last_name: {
|
|
12184
|
+
nullable: boolean;
|
|
12185
|
+
type: string;
|
|
12186
|
+
};
|
|
12008
12187
|
user_identity_id: {
|
|
12009
12188
|
format: string;
|
|
12010
12189
|
type: string;
|
|
@@ -12109,6 +12288,14 @@ declare const _default: {
|
|
|
12109
12288
|
nullable: boolean;
|
|
12110
12289
|
type: string;
|
|
12111
12290
|
};
|
|
12291
|
+
first_name: {
|
|
12292
|
+
nullable: boolean;
|
|
12293
|
+
type: string;
|
|
12294
|
+
};
|
|
12295
|
+
last_name: {
|
|
12296
|
+
nullable: boolean;
|
|
12297
|
+
type: string;
|
|
12298
|
+
};
|
|
12112
12299
|
user_identity_id: {
|
|
12113
12300
|
format: string;
|
|
12114
12301
|
type: string;
|
|
@@ -14078,6 +14265,31 @@ interface Routes {
|
|
|
14078
14265
|
};
|
|
14079
14266
|
};
|
|
14080
14267
|
};
|
|
14268
|
+
'/acs/credentials/update': {
|
|
14269
|
+
route: '/acs/credentials/update';
|
|
14270
|
+
method: 'POST';
|
|
14271
|
+
queryParams: {};
|
|
14272
|
+
jsonBody: {};
|
|
14273
|
+
commonParams: {
|
|
14274
|
+
code?: string | undefined;
|
|
14275
|
+
name?: string | undefined;
|
|
14276
|
+
};
|
|
14277
|
+
formData: {};
|
|
14278
|
+
jsonResponse: {
|
|
14279
|
+
acs_credential: {
|
|
14280
|
+
acs_credential_id: string;
|
|
14281
|
+
acs_user_id?: string | undefined;
|
|
14282
|
+
acs_credential_pool_id?: string | undefined;
|
|
14283
|
+
acs_system_id: string;
|
|
14284
|
+
display_name: string;
|
|
14285
|
+
code: string | null;
|
|
14286
|
+
external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
|
|
14287
|
+
external_type_display_name: string;
|
|
14288
|
+
created_at: string;
|
|
14289
|
+
workspace_id: string;
|
|
14290
|
+
};
|
|
14291
|
+
};
|
|
14292
|
+
};
|
|
14081
14293
|
'/acs/entrances/get': {
|
|
14082
14294
|
route: '/acs/entrances/get';
|
|
14083
14295
|
method: 'GET' | 'POST';
|
|
@@ -14542,7 +14754,7 @@ interface Routes {
|
|
|
14542
14754
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
14543
14755
|
custom_redirect_url?: string | undefined;
|
|
14544
14756
|
custom_redirect_failure_url?: string | undefined;
|
|
14545
|
-
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'yale_access' | 'hid_cm'> | undefined;
|
|
14757
|
+
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'yale_access' | 'hid_cm'> | undefined;
|
|
14546
14758
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
|
|
14547
14759
|
custom_metadata?: Record<string, string | number | null | boolean> | undefined;
|
|
14548
14760
|
automatically_manage_new_devices?: boolean | undefined;
|
|
@@ -14754,36 +14966,54 @@ interface Routes {
|
|
|
14754
14966
|
formData: {};
|
|
14755
14967
|
jsonResponse: {
|
|
14756
14968
|
device: {
|
|
14969
|
+
/** Unique identifier for the device. */
|
|
14757
14970
|
device_id: string;
|
|
14971
|
+
/** Type of the device. */
|
|
14758
14972
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
14973
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
14759
14974
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
14975
|
+
/** Properties of the device. */
|
|
14760
14976
|
properties: ({
|
|
14977
|
+
/** Indicates whether the device is online. */
|
|
14761
14978
|
online: boolean;
|
|
14979
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
14762
14980
|
name: string;
|
|
14763
14981
|
model: {
|
|
14982
|
+
/** Display name of the device model. */
|
|
14764
14983
|
display_name: string;
|
|
14984
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
14765
14985
|
manufacturer_display_name: string;
|
|
14986
|
+
/** Indicates whether the device supports offline access codes. */
|
|
14766
14987
|
offline_access_codes_supported?: boolean | undefined;
|
|
14988
|
+
/** Indicates whether the device supports online access codes. */
|
|
14767
14989
|
online_access_codes_supported?: boolean | undefined;
|
|
14990
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
14768
14991
|
accessory_keypad_supported?: boolean | undefined;
|
|
14769
14992
|
};
|
|
14993
|
+
/** Indicates whether the device has direct power. */
|
|
14770
14994
|
has_direct_power?: boolean | undefined;
|
|
14995
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
14771
14996
|
battery_level?: number | undefined;
|
|
14997
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
14772
14998
|
battery?: {
|
|
14773
14999
|
level: number;
|
|
14774
15000
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
14775
15001
|
} | undefined;
|
|
15002
|
+
/** Manufacturer of the device. */
|
|
14776
15003
|
manufacturer?: string | undefined;
|
|
15004
|
+
/** Image URL for the device. */
|
|
14777
15005
|
image_url?: string | undefined;
|
|
15006
|
+
/** Alt text for the device image. */
|
|
14778
15007
|
image_alt_text?: string | undefined;
|
|
15008
|
+
/** Serial number of the device. */
|
|
14779
15009
|
serial_number?: string | undefined;
|
|
14780
|
-
/**
|
|
15010
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
14781
15011
|
online_access_codes_enabled?: boolean | undefined;
|
|
14782
|
-
/**
|
|
15012
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
14783
15013
|
offline_access_codes_enabled?: boolean | undefined;
|
|
14784
|
-
/** Deprecated:
|
|
15014
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
14785
15015
|
supports_accessory_keypad?: boolean | undefined;
|
|
14786
|
-
/** Deprecated:
|
|
15016
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
14787
15017
|
supports_offline_access_codes?: boolean | undefined;
|
|
14788
15018
|
} & {
|
|
14789
15019
|
august_metadata?: {
|
|
@@ -15133,21 +15363,30 @@ interface Routes {
|
|
|
15133
15363
|
max_cooling_set_point_celsius?: number | undefined;
|
|
15134
15364
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
15135
15365
|
}));
|
|
15366
|
+
/** Location information for the device. */
|
|
15136
15367
|
location: {
|
|
15368
|
+
/** Name of the device location. */
|
|
15137
15369
|
location_name?: string | undefined;
|
|
15370
|
+
/** Time zone of the device location. */
|
|
15138
15371
|
timezone?: string | undefined;
|
|
15139
15372
|
} | null;
|
|
15373
|
+
/** Unique identifier for the account associated with the device. */
|
|
15140
15374
|
connected_account_id: string;
|
|
15375
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
15141
15376
|
workspace_id: string;
|
|
15377
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15142
15378
|
errors: Array<{
|
|
15143
15379
|
error_code: string;
|
|
15144
15380
|
message: string;
|
|
15145
15381
|
}>;
|
|
15382
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15146
15383
|
warnings: Array<{
|
|
15147
15384
|
warning_code: string;
|
|
15148
15385
|
message: string;
|
|
15149
15386
|
}>;
|
|
15387
|
+
/** Date and time at which the device object was created. */
|
|
15150
15388
|
created_at: string;
|
|
15389
|
+
/** Indicates whether Seam manages the device. */
|
|
15151
15390
|
is_managed: true;
|
|
15152
15391
|
};
|
|
15153
15392
|
};
|
|
@@ -15173,36 +15412,54 @@ interface Routes {
|
|
|
15173
15412
|
formData: {};
|
|
15174
15413
|
jsonResponse: {
|
|
15175
15414
|
devices: Array<{
|
|
15415
|
+
/** Unique identifier for the device. */
|
|
15176
15416
|
device_id: string;
|
|
15417
|
+
/** Type of the device. */
|
|
15177
15418
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
15419
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
15178
15420
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15421
|
+
/** Properties of the device. */
|
|
15179
15422
|
properties: ({
|
|
15423
|
+
/** Indicates whether the device is online. */
|
|
15180
15424
|
online: boolean;
|
|
15425
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
15181
15426
|
name: string;
|
|
15182
15427
|
model: {
|
|
15428
|
+
/** Display name of the device model. */
|
|
15183
15429
|
display_name: string;
|
|
15430
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
15184
15431
|
manufacturer_display_name: string;
|
|
15432
|
+
/** Indicates whether the device supports offline access codes. */
|
|
15185
15433
|
offline_access_codes_supported?: boolean | undefined;
|
|
15434
|
+
/** Indicates whether the device supports online access codes. */
|
|
15186
15435
|
online_access_codes_supported?: boolean | undefined;
|
|
15436
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
15187
15437
|
accessory_keypad_supported?: boolean | undefined;
|
|
15188
15438
|
};
|
|
15439
|
+
/** Indicates whether the device has direct power. */
|
|
15189
15440
|
has_direct_power?: boolean | undefined;
|
|
15441
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
15190
15442
|
battery_level?: number | undefined;
|
|
15443
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
15191
15444
|
battery?: {
|
|
15192
15445
|
level: number;
|
|
15193
15446
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
15194
15447
|
} | undefined;
|
|
15448
|
+
/** Manufacturer of the device. */
|
|
15195
15449
|
manufacturer?: string | undefined;
|
|
15450
|
+
/** Image URL for the device. */
|
|
15196
15451
|
image_url?: string | undefined;
|
|
15452
|
+
/** Alt text for the device image. */
|
|
15197
15453
|
image_alt_text?: string | undefined;
|
|
15454
|
+
/** Serial number of the device. */
|
|
15198
15455
|
serial_number?: string | undefined;
|
|
15199
|
-
/**
|
|
15456
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
15200
15457
|
online_access_codes_enabled?: boolean | undefined;
|
|
15201
|
-
/**
|
|
15458
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
15202
15459
|
offline_access_codes_enabled?: boolean | undefined;
|
|
15203
|
-
/** Deprecated:
|
|
15460
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
15204
15461
|
supports_accessory_keypad?: boolean | undefined;
|
|
15205
|
-
/** Deprecated:
|
|
15462
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
15206
15463
|
supports_offline_access_codes?: boolean | undefined;
|
|
15207
15464
|
} & {
|
|
15208
15465
|
august_metadata?: {
|
|
@@ -15552,21 +15809,30 @@ interface Routes {
|
|
|
15552
15809
|
max_cooling_set_point_celsius?: number | undefined;
|
|
15553
15810
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
15554
15811
|
}));
|
|
15812
|
+
/** Location information for the device. */
|
|
15555
15813
|
location: {
|
|
15814
|
+
/** Name of the device location. */
|
|
15556
15815
|
location_name?: string | undefined;
|
|
15816
|
+
/** Time zone of the device location. */
|
|
15557
15817
|
timezone?: string | undefined;
|
|
15558
15818
|
} | null;
|
|
15819
|
+
/** Unique identifier for the account associated with the device. */
|
|
15559
15820
|
connected_account_id: string;
|
|
15821
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
15560
15822
|
workspace_id: string;
|
|
15823
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15561
15824
|
errors: Array<{
|
|
15562
15825
|
error_code: string;
|
|
15563
15826
|
message: string;
|
|
15564
15827
|
}>;
|
|
15828
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15565
15829
|
warnings: Array<{
|
|
15566
15830
|
warning_code: string;
|
|
15567
15831
|
message: string;
|
|
15568
15832
|
}>;
|
|
15833
|
+
/** Date and time at which the device object was created. */
|
|
15569
15834
|
created_at: string;
|
|
15835
|
+
/** Indicates whether Seam manages the device. */
|
|
15570
15836
|
is_managed: true;
|
|
15571
15837
|
}>;
|
|
15572
15838
|
};
|
|
@@ -15601,19 +15867,27 @@ interface Routes {
|
|
|
15601
15867
|
formData: {};
|
|
15602
15868
|
jsonResponse: {
|
|
15603
15869
|
device: {
|
|
15870
|
+
/** Unique identifier for the device. */
|
|
15604
15871
|
device_id: string;
|
|
15872
|
+
/** Type of the device. */
|
|
15605
15873
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
15874
|
+
/** Unique identifier for the account associated with the device. */
|
|
15606
15875
|
connected_account_id: string;
|
|
15876
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
15607
15877
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15878
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
15608
15879
|
workspace_id: string;
|
|
15880
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15609
15881
|
errors: Array<{
|
|
15610
15882
|
error_code: string;
|
|
15611
15883
|
message: string;
|
|
15612
15884
|
}>;
|
|
15885
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15613
15886
|
warnings: Array<{
|
|
15614
15887
|
warning_code: string;
|
|
15615
15888
|
message: string;
|
|
15616
15889
|
}>;
|
|
15890
|
+
/** Date and time at which the device object was created. */
|
|
15617
15891
|
created_at: string;
|
|
15618
15892
|
is_managed: false;
|
|
15619
15893
|
properties: {
|
|
@@ -15651,19 +15925,27 @@ interface Routes {
|
|
|
15651
15925
|
formData: {};
|
|
15652
15926
|
jsonResponse: {
|
|
15653
15927
|
devices: Array<{
|
|
15928
|
+
/** Unique identifier for the device. */
|
|
15654
15929
|
device_id: string;
|
|
15930
|
+
/** Type of the device. */
|
|
15655
15931
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
15932
|
+
/** Unique identifier for the account associated with the device. */
|
|
15656
15933
|
connected_account_id: string;
|
|
15934
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
15657
15935
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15936
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
15658
15937
|
workspace_id: string;
|
|
15938
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15659
15939
|
errors: Array<{
|
|
15660
15940
|
error_code: string;
|
|
15661
15941
|
message: string;
|
|
15662
15942
|
}>;
|
|
15943
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15663
15944
|
warnings: Array<{
|
|
15664
15945
|
warning_code: string;
|
|
15665
15946
|
message: string;
|
|
15666
15947
|
}>;
|
|
15948
|
+
/** Date and time at which the device object was created. */
|
|
15667
15949
|
created_at: string;
|
|
15668
15950
|
is_managed: false;
|
|
15669
15951
|
properties: {
|
|
@@ -15847,36 +16129,54 @@ interface Routes {
|
|
|
15847
16129
|
formData: {};
|
|
15848
16130
|
jsonResponse: {
|
|
15849
16131
|
lock: {
|
|
16132
|
+
/** Unique identifier for the device. */
|
|
15850
16133
|
device_id: string;
|
|
16134
|
+
/** Type of the device. */
|
|
15851
16135
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
16136
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
15852
16137
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16138
|
+
/** Properties of the device. */
|
|
15853
16139
|
properties: ({
|
|
16140
|
+
/** Indicates whether the device is online. */
|
|
15854
16141
|
online: boolean;
|
|
16142
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
15855
16143
|
name: string;
|
|
15856
16144
|
model: {
|
|
16145
|
+
/** Display name of the device model. */
|
|
15857
16146
|
display_name: string;
|
|
16147
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
15858
16148
|
manufacturer_display_name: string;
|
|
16149
|
+
/** Indicates whether the device supports offline access codes. */
|
|
15859
16150
|
offline_access_codes_supported?: boolean | undefined;
|
|
16151
|
+
/** Indicates whether the device supports online access codes. */
|
|
15860
16152
|
online_access_codes_supported?: boolean | undefined;
|
|
16153
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
15861
16154
|
accessory_keypad_supported?: boolean | undefined;
|
|
15862
16155
|
};
|
|
16156
|
+
/** Indicates whether the device has direct power. */
|
|
15863
16157
|
has_direct_power?: boolean | undefined;
|
|
16158
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
15864
16159
|
battery_level?: number | undefined;
|
|
16160
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
15865
16161
|
battery?: {
|
|
15866
16162
|
level: number;
|
|
15867
16163
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
15868
16164
|
} | undefined;
|
|
16165
|
+
/** Manufacturer of the device. */
|
|
15869
16166
|
manufacturer?: string | undefined;
|
|
16167
|
+
/** Image URL for the device. */
|
|
15870
16168
|
image_url?: string | undefined;
|
|
16169
|
+
/** Alt text for the device image. */
|
|
15871
16170
|
image_alt_text?: string | undefined;
|
|
16171
|
+
/** Serial number of the device. */
|
|
15872
16172
|
serial_number?: string | undefined;
|
|
15873
|
-
/**
|
|
16173
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
15874
16174
|
online_access_codes_enabled?: boolean | undefined;
|
|
15875
|
-
/**
|
|
16175
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
15876
16176
|
offline_access_codes_enabled?: boolean | undefined;
|
|
15877
|
-
/** Deprecated:
|
|
16177
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
15878
16178
|
supports_accessory_keypad?: boolean | undefined;
|
|
15879
|
-
/** Deprecated:
|
|
16179
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
15880
16180
|
supports_offline_access_codes?: boolean | undefined;
|
|
15881
16181
|
} & {
|
|
15882
16182
|
august_metadata?: {
|
|
@@ -16226,54 +16526,81 @@ interface Routes {
|
|
|
16226
16526
|
max_cooling_set_point_celsius?: number | undefined;
|
|
16227
16527
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
16228
16528
|
}));
|
|
16529
|
+
/** Location information for the device. */
|
|
16229
16530
|
location: {
|
|
16531
|
+
/** Name of the device location. */
|
|
16230
16532
|
location_name?: string | undefined;
|
|
16533
|
+
/** Time zone of the device location. */
|
|
16231
16534
|
timezone?: string | undefined;
|
|
16232
16535
|
} | null;
|
|
16536
|
+
/** Unique identifier for the account associated with the device. */
|
|
16233
16537
|
connected_account_id: string;
|
|
16538
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
16234
16539
|
workspace_id: string;
|
|
16540
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
16235
16541
|
errors: Array<{
|
|
16236
16542
|
error_code: string;
|
|
16237
16543
|
message: string;
|
|
16238
16544
|
}>;
|
|
16545
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16239
16546
|
warnings: Array<{
|
|
16240
16547
|
warning_code: string;
|
|
16241
16548
|
message: string;
|
|
16242
16549
|
}>;
|
|
16550
|
+
/** Date and time at which the device object was created. */
|
|
16243
16551
|
created_at: string;
|
|
16552
|
+
/** Indicates whether Seam manages the device. */
|
|
16244
16553
|
is_managed: true;
|
|
16245
16554
|
};
|
|
16246
16555
|
device: {
|
|
16556
|
+
/** Unique identifier for the device. */
|
|
16247
16557
|
device_id: string;
|
|
16558
|
+
/** Type of the device. */
|
|
16248
16559
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
16560
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
16249
16561
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16562
|
+
/** Properties of the device. */
|
|
16250
16563
|
properties: ({
|
|
16564
|
+
/** Indicates whether the device is online. */
|
|
16251
16565
|
online: boolean;
|
|
16566
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
16252
16567
|
name: string;
|
|
16253
16568
|
model: {
|
|
16569
|
+
/** Display name of the device model. */
|
|
16254
16570
|
display_name: string;
|
|
16571
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
16255
16572
|
manufacturer_display_name: string;
|
|
16573
|
+
/** Indicates whether the device supports offline access codes. */
|
|
16256
16574
|
offline_access_codes_supported?: boolean | undefined;
|
|
16575
|
+
/** Indicates whether the device supports online access codes. */
|
|
16257
16576
|
online_access_codes_supported?: boolean | undefined;
|
|
16577
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
16258
16578
|
accessory_keypad_supported?: boolean | undefined;
|
|
16259
16579
|
};
|
|
16580
|
+
/** Indicates whether the device has direct power. */
|
|
16260
16581
|
has_direct_power?: boolean | undefined;
|
|
16582
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
16261
16583
|
battery_level?: number | undefined;
|
|
16584
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
16262
16585
|
battery?: {
|
|
16263
16586
|
level: number;
|
|
16264
16587
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
16265
16588
|
} | undefined;
|
|
16589
|
+
/** Manufacturer of the device. */
|
|
16266
16590
|
manufacturer?: string | undefined;
|
|
16591
|
+
/** Image URL for the device. */
|
|
16267
16592
|
image_url?: string | undefined;
|
|
16593
|
+
/** Alt text for the device image. */
|
|
16268
16594
|
image_alt_text?: string | undefined;
|
|
16595
|
+
/** Serial number of the device. */
|
|
16269
16596
|
serial_number?: string | undefined;
|
|
16270
|
-
/**
|
|
16597
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
16271
16598
|
online_access_codes_enabled?: boolean | undefined;
|
|
16272
|
-
/**
|
|
16599
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
16273
16600
|
offline_access_codes_enabled?: boolean | undefined;
|
|
16274
|
-
/** Deprecated:
|
|
16601
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
16275
16602
|
supports_accessory_keypad?: boolean | undefined;
|
|
16276
|
-
/** Deprecated:
|
|
16603
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
16277
16604
|
supports_offline_access_codes?: boolean | undefined;
|
|
16278
16605
|
} & {
|
|
16279
16606
|
august_metadata?: {
|
|
@@ -16623,21 +16950,30 @@ interface Routes {
|
|
|
16623
16950
|
max_cooling_set_point_celsius?: number | undefined;
|
|
16624
16951
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
16625
16952
|
}));
|
|
16953
|
+
/** Location information for the device. */
|
|
16626
16954
|
location: {
|
|
16955
|
+
/** Name of the device location. */
|
|
16627
16956
|
location_name?: string | undefined;
|
|
16957
|
+
/** Time zone of the device location. */
|
|
16628
16958
|
timezone?: string | undefined;
|
|
16629
16959
|
} | null;
|
|
16960
|
+
/** Unique identifier for the account associated with the device. */
|
|
16630
16961
|
connected_account_id: string;
|
|
16962
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
16631
16963
|
workspace_id: string;
|
|
16964
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
16632
16965
|
errors: Array<{
|
|
16633
16966
|
error_code: string;
|
|
16634
16967
|
message: string;
|
|
16635
16968
|
}>;
|
|
16969
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16636
16970
|
warnings: Array<{
|
|
16637
16971
|
warning_code: string;
|
|
16638
16972
|
message: string;
|
|
16639
16973
|
}>;
|
|
16974
|
+
/** Date and time at which the device object was created. */
|
|
16640
16975
|
created_at: string;
|
|
16976
|
+
/** Indicates whether Seam manages the device. */
|
|
16641
16977
|
is_managed: true;
|
|
16642
16978
|
};
|
|
16643
16979
|
};
|
|
@@ -16663,36 +16999,54 @@ interface Routes {
|
|
|
16663
16999
|
formData: {};
|
|
16664
17000
|
jsonResponse: {
|
|
16665
17001
|
locks: Array<{
|
|
17002
|
+
/** Unique identifier for the device. */
|
|
16666
17003
|
device_id: string;
|
|
17004
|
+
/** Type of the device. */
|
|
16667
17005
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
17006
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
16668
17007
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17008
|
+
/** Properties of the device. */
|
|
16669
17009
|
properties: ({
|
|
17010
|
+
/** Indicates whether the device is online. */
|
|
16670
17011
|
online: boolean;
|
|
17012
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
16671
17013
|
name: string;
|
|
16672
17014
|
model: {
|
|
17015
|
+
/** Display name of the device model. */
|
|
16673
17016
|
display_name: string;
|
|
17017
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
16674
17018
|
manufacturer_display_name: string;
|
|
17019
|
+
/** Indicates whether the device supports offline access codes. */
|
|
16675
17020
|
offline_access_codes_supported?: boolean | undefined;
|
|
17021
|
+
/** Indicates whether the device supports online access codes. */
|
|
16676
17022
|
online_access_codes_supported?: boolean | undefined;
|
|
17023
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
16677
17024
|
accessory_keypad_supported?: boolean | undefined;
|
|
16678
17025
|
};
|
|
17026
|
+
/** Indicates whether the device has direct power. */
|
|
16679
17027
|
has_direct_power?: boolean | undefined;
|
|
17028
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
16680
17029
|
battery_level?: number | undefined;
|
|
17030
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
16681
17031
|
battery?: {
|
|
16682
17032
|
level: number;
|
|
16683
17033
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
16684
17034
|
} | undefined;
|
|
17035
|
+
/** Manufacturer of the device. */
|
|
16685
17036
|
manufacturer?: string | undefined;
|
|
17037
|
+
/** Image URL for the device. */
|
|
16686
17038
|
image_url?: string | undefined;
|
|
17039
|
+
/** Alt text for the device image. */
|
|
16687
17040
|
image_alt_text?: string | undefined;
|
|
17041
|
+
/** Serial number of the device. */
|
|
16688
17042
|
serial_number?: string | undefined;
|
|
16689
|
-
/**
|
|
17043
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
16690
17044
|
online_access_codes_enabled?: boolean | undefined;
|
|
16691
|
-
/**
|
|
17045
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
16692
17046
|
offline_access_codes_enabled?: boolean | undefined;
|
|
16693
|
-
/** Deprecated:
|
|
17047
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
16694
17048
|
supports_accessory_keypad?: boolean | undefined;
|
|
16695
|
-
/** Deprecated:
|
|
17049
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
16696
17050
|
supports_offline_access_codes?: boolean | undefined;
|
|
16697
17051
|
} & {
|
|
16698
17052
|
august_metadata?: {
|
|
@@ -17042,54 +17396,81 @@ interface Routes {
|
|
|
17042
17396
|
max_cooling_set_point_celsius?: number | undefined;
|
|
17043
17397
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
17044
17398
|
}));
|
|
17399
|
+
/** Location information for the device. */
|
|
17045
17400
|
location: {
|
|
17401
|
+
/** Name of the device location. */
|
|
17046
17402
|
location_name?: string | undefined;
|
|
17403
|
+
/** Time zone of the device location. */
|
|
17047
17404
|
timezone?: string | undefined;
|
|
17048
17405
|
} | null;
|
|
17406
|
+
/** Unique identifier for the account associated with the device. */
|
|
17049
17407
|
connected_account_id: string;
|
|
17408
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
17050
17409
|
workspace_id: string;
|
|
17410
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
17051
17411
|
errors: Array<{
|
|
17052
17412
|
error_code: string;
|
|
17053
17413
|
message: string;
|
|
17054
17414
|
}>;
|
|
17415
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
17055
17416
|
warnings: Array<{
|
|
17056
17417
|
warning_code: string;
|
|
17057
17418
|
message: string;
|
|
17058
17419
|
}>;
|
|
17420
|
+
/** Date and time at which the device object was created. */
|
|
17059
17421
|
created_at: string;
|
|
17422
|
+
/** Indicates whether Seam manages the device. */
|
|
17060
17423
|
is_managed: true;
|
|
17061
17424
|
}>;
|
|
17062
17425
|
devices: Array<{
|
|
17426
|
+
/** Unique identifier for the device. */
|
|
17063
17427
|
device_id: string;
|
|
17428
|
+
/** Type of the device. */
|
|
17064
17429
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
17430
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
17065
17431
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17432
|
+
/** Properties of the device. */
|
|
17066
17433
|
properties: ({
|
|
17434
|
+
/** Indicates whether the device is online. */
|
|
17067
17435
|
online: boolean;
|
|
17436
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
17068
17437
|
name: string;
|
|
17069
17438
|
model: {
|
|
17439
|
+
/** Display name of the device model. */
|
|
17070
17440
|
display_name: string;
|
|
17441
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
17071
17442
|
manufacturer_display_name: string;
|
|
17443
|
+
/** Indicates whether the device supports offline access codes. */
|
|
17072
17444
|
offline_access_codes_supported?: boolean | undefined;
|
|
17445
|
+
/** Indicates whether the device supports online access codes. */
|
|
17073
17446
|
online_access_codes_supported?: boolean | undefined;
|
|
17447
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
17074
17448
|
accessory_keypad_supported?: boolean | undefined;
|
|
17075
17449
|
};
|
|
17450
|
+
/** Indicates whether the device has direct power. */
|
|
17076
17451
|
has_direct_power?: boolean | undefined;
|
|
17452
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
17077
17453
|
battery_level?: number | undefined;
|
|
17454
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
17078
17455
|
battery?: {
|
|
17079
17456
|
level: number;
|
|
17080
17457
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
17081
17458
|
} | undefined;
|
|
17459
|
+
/** Manufacturer of the device. */
|
|
17082
17460
|
manufacturer?: string | undefined;
|
|
17461
|
+
/** Image URL for the device. */
|
|
17083
17462
|
image_url?: string | undefined;
|
|
17463
|
+
/** Alt text for the device image. */
|
|
17084
17464
|
image_alt_text?: string | undefined;
|
|
17465
|
+
/** Serial number of the device. */
|
|
17085
17466
|
serial_number?: string | undefined;
|
|
17086
|
-
/**
|
|
17467
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
17087
17468
|
online_access_codes_enabled?: boolean | undefined;
|
|
17088
|
-
/**
|
|
17469
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
17089
17470
|
offline_access_codes_enabled?: boolean | undefined;
|
|
17090
|
-
/** Deprecated:
|
|
17471
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
17091
17472
|
supports_accessory_keypad?: boolean | undefined;
|
|
17092
|
-
/** Deprecated:
|
|
17473
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
17093
17474
|
supports_offline_access_codes?: boolean | undefined;
|
|
17094
17475
|
} & {
|
|
17095
17476
|
august_metadata?: {
|
|
@@ -17439,21 +17820,30 @@ interface Routes {
|
|
|
17439
17820
|
max_cooling_set_point_celsius?: number | undefined;
|
|
17440
17821
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
17441
17822
|
}));
|
|
17823
|
+
/** Location information for the device. */
|
|
17442
17824
|
location: {
|
|
17825
|
+
/** Name of the device location. */
|
|
17443
17826
|
location_name?: string | undefined;
|
|
17827
|
+
/** Time zone of the device location. */
|
|
17444
17828
|
timezone?: string | undefined;
|
|
17445
17829
|
} | null;
|
|
17830
|
+
/** Unique identifier for the account associated with the device. */
|
|
17446
17831
|
connected_account_id: string;
|
|
17832
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
17447
17833
|
workspace_id: string;
|
|
17834
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
17448
17835
|
errors: Array<{
|
|
17449
17836
|
error_code: string;
|
|
17450
17837
|
message: string;
|
|
17451
17838
|
}>;
|
|
17839
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
17452
17840
|
warnings: Array<{
|
|
17453
17841
|
warning_code: string;
|
|
17454
17842
|
message: string;
|
|
17455
17843
|
}>;
|
|
17844
|
+
/** Date and time at which the device object was created. */
|
|
17456
17845
|
created_at: string;
|
|
17846
|
+
/** Indicates whether Seam manages the device. */
|
|
17457
17847
|
is_managed: true;
|
|
17458
17848
|
}>;
|
|
17459
17849
|
};
|
|
@@ -17877,36 +18267,54 @@ interface Routes {
|
|
|
17877
18267
|
formData: {};
|
|
17878
18268
|
jsonResponse: {
|
|
17879
18269
|
thermostat: {
|
|
18270
|
+
/** Unique identifier for the device. */
|
|
17880
18271
|
device_id: string;
|
|
18272
|
+
/** Type of the device. */
|
|
17881
18273
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
18274
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
17882
18275
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
18276
|
+
/** Properties of the device. */
|
|
17883
18277
|
properties: ({
|
|
18278
|
+
/** Indicates whether the device is online. */
|
|
17884
18279
|
online: boolean;
|
|
18280
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
17885
18281
|
name: string;
|
|
17886
18282
|
model: {
|
|
18283
|
+
/** Display name of the device model. */
|
|
17887
18284
|
display_name: string;
|
|
18285
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
17888
18286
|
manufacturer_display_name: string;
|
|
18287
|
+
/** Indicates whether the device supports offline access codes. */
|
|
17889
18288
|
offline_access_codes_supported?: boolean | undefined;
|
|
18289
|
+
/** Indicates whether the device supports online access codes. */
|
|
17890
18290
|
online_access_codes_supported?: boolean | undefined;
|
|
18291
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
17891
18292
|
accessory_keypad_supported?: boolean | undefined;
|
|
17892
18293
|
};
|
|
18294
|
+
/** Indicates whether the device has direct power. */
|
|
17893
18295
|
has_direct_power?: boolean | undefined;
|
|
18296
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
17894
18297
|
battery_level?: number | undefined;
|
|
18298
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
17895
18299
|
battery?: {
|
|
17896
18300
|
level: number;
|
|
17897
18301
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
17898
18302
|
} | undefined;
|
|
18303
|
+
/** Manufacturer of the device. */
|
|
17899
18304
|
manufacturer?: string | undefined;
|
|
18305
|
+
/** Image URL for the device. */
|
|
17900
18306
|
image_url?: string | undefined;
|
|
18307
|
+
/** Alt text for the device image. */
|
|
17901
18308
|
image_alt_text?: string | undefined;
|
|
18309
|
+
/** Serial number of the device. */
|
|
17902
18310
|
serial_number?: string | undefined;
|
|
17903
|
-
/**
|
|
18311
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
17904
18312
|
online_access_codes_enabled?: boolean | undefined;
|
|
17905
|
-
/**
|
|
18313
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
17906
18314
|
offline_access_codes_enabled?: boolean | undefined;
|
|
17907
|
-
/** Deprecated:
|
|
18315
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
17908
18316
|
supports_accessory_keypad?: boolean | undefined;
|
|
17909
|
-
/** Deprecated:
|
|
18317
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
17910
18318
|
supports_offline_access_codes?: boolean | undefined;
|
|
17911
18319
|
} & {
|
|
17912
18320
|
august_metadata?: {
|
|
@@ -18256,21 +18664,30 @@ interface Routes {
|
|
|
18256
18664
|
max_cooling_set_point_celsius?: number | undefined;
|
|
18257
18665
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
18258
18666
|
}));
|
|
18667
|
+
/** Location information for the device. */
|
|
18259
18668
|
location: {
|
|
18669
|
+
/** Name of the device location. */
|
|
18260
18670
|
location_name?: string | undefined;
|
|
18671
|
+
/** Time zone of the device location. */
|
|
18261
18672
|
timezone?: string | undefined;
|
|
18262
18673
|
} | null;
|
|
18674
|
+
/** Unique identifier for the account associated with the device. */
|
|
18263
18675
|
connected_account_id: string;
|
|
18676
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
18264
18677
|
workspace_id: string;
|
|
18678
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18265
18679
|
errors: Array<{
|
|
18266
18680
|
error_code: string;
|
|
18267
18681
|
message: string;
|
|
18268
18682
|
}>;
|
|
18683
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
18269
18684
|
warnings: Array<{
|
|
18270
18685
|
warning_code: string;
|
|
18271
18686
|
message: string;
|
|
18272
18687
|
}>;
|
|
18688
|
+
/** Date and time at which the device object was created. */
|
|
18273
18689
|
created_at: string;
|
|
18690
|
+
/** Indicates whether Seam manages the device. */
|
|
18274
18691
|
is_managed: true;
|
|
18275
18692
|
};
|
|
18276
18693
|
};
|
|
@@ -18326,36 +18743,54 @@ interface Routes {
|
|
|
18326
18743
|
formData: {};
|
|
18327
18744
|
jsonResponse: {
|
|
18328
18745
|
thermostats: Array<{
|
|
18746
|
+
/** Unique identifier for the device. */
|
|
18329
18747
|
device_id: string;
|
|
18748
|
+
/** Type of the device. */
|
|
18330
18749
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
18750
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
18331
18751
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
18752
|
+
/** Properties of the device. */
|
|
18332
18753
|
properties: ({
|
|
18754
|
+
/** Indicates whether the device is online. */
|
|
18333
18755
|
online: boolean;
|
|
18756
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
18334
18757
|
name: string;
|
|
18335
18758
|
model: {
|
|
18759
|
+
/** Display name of the device model. */
|
|
18336
18760
|
display_name: string;
|
|
18761
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
18337
18762
|
manufacturer_display_name: string;
|
|
18763
|
+
/** Indicates whether the device supports offline access codes. */
|
|
18338
18764
|
offline_access_codes_supported?: boolean | undefined;
|
|
18765
|
+
/** Indicates whether the device supports online access codes. */
|
|
18339
18766
|
online_access_codes_supported?: boolean | undefined;
|
|
18767
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
18340
18768
|
accessory_keypad_supported?: boolean | undefined;
|
|
18341
18769
|
};
|
|
18770
|
+
/** Indicates whether the device has direct power. */
|
|
18342
18771
|
has_direct_power?: boolean | undefined;
|
|
18772
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
18343
18773
|
battery_level?: number | undefined;
|
|
18774
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
18344
18775
|
battery?: {
|
|
18345
18776
|
level: number;
|
|
18346
18777
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
18347
18778
|
} | undefined;
|
|
18779
|
+
/** Manufacturer of the device. */
|
|
18348
18780
|
manufacturer?: string | undefined;
|
|
18781
|
+
/** Image URL for the device. */
|
|
18349
18782
|
image_url?: string | undefined;
|
|
18783
|
+
/** Alt text for the device image. */
|
|
18350
18784
|
image_alt_text?: string | undefined;
|
|
18785
|
+
/** Serial number of the device. */
|
|
18351
18786
|
serial_number?: string | undefined;
|
|
18352
|
-
/**
|
|
18787
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
18353
18788
|
online_access_codes_enabled?: boolean | undefined;
|
|
18354
|
-
/**
|
|
18789
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
18355
18790
|
offline_access_codes_enabled?: boolean | undefined;
|
|
18356
|
-
/** Deprecated:
|
|
18791
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
18357
18792
|
supports_accessory_keypad?: boolean | undefined;
|
|
18358
|
-
/** Deprecated:
|
|
18793
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
18359
18794
|
supports_offline_access_codes?: boolean | undefined;
|
|
18360
18795
|
} & {
|
|
18361
18796
|
august_metadata?: {
|
|
@@ -18705,21 +19140,30 @@ interface Routes {
|
|
|
18705
19140
|
max_cooling_set_point_celsius?: number | undefined;
|
|
18706
19141
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
18707
19142
|
}));
|
|
19143
|
+
/** Location information for the device. */
|
|
18708
19144
|
location: {
|
|
19145
|
+
/** Name of the device location. */
|
|
18709
19146
|
location_name?: string | undefined;
|
|
19147
|
+
/** Time zone of the device location. */
|
|
18710
19148
|
timezone?: string | undefined;
|
|
18711
19149
|
} | null;
|
|
19150
|
+
/** Unique identifier for the account associated with the device. */
|
|
18712
19151
|
connected_account_id: string;
|
|
19152
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
18713
19153
|
workspace_id: string;
|
|
19154
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18714
19155
|
errors: Array<{
|
|
18715
19156
|
error_code: string;
|
|
18716
19157
|
message: string;
|
|
18717
19158
|
}>;
|
|
19159
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
18718
19160
|
warnings: Array<{
|
|
18719
19161
|
warning_code: string;
|
|
18720
19162
|
message: string;
|
|
18721
19163
|
}>;
|
|
19164
|
+
/** Date and time at which the device object was created. */
|
|
18722
19165
|
created_at: string;
|
|
19166
|
+
/** Indicates whether Seam manages the device. */
|
|
18723
19167
|
is_managed: true;
|
|
18724
19168
|
}>;
|
|
18725
19169
|
};
|
|
@@ -18791,6 +19235,8 @@ interface Routes {
|
|
|
18791
19235
|
commonParams: {
|
|
18792
19236
|
user_identity_key?: (string | null) | undefined;
|
|
18793
19237
|
email_address?: (string | null) | undefined;
|
|
19238
|
+
first_name?: (string | null) | undefined;
|
|
19239
|
+
last_name?: (string | null) | undefined;
|
|
18794
19240
|
};
|
|
18795
19241
|
formData: {};
|
|
18796
19242
|
jsonResponse: {
|
|
@@ -18798,6 +19244,8 @@ interface Routes {
|
|
|
18798
19244
|
user_identity_id: string;
|
|
18799
19245
|
user_identity_key?: (string | null) | undefined;
|
|
18800
19246
|
email_address?: (string | null) | undefined;
|
|
19247
|
+
first_name?: (string | null) | undefined;
|
|
19248
|
+
last_name?: (string | null) | undefined;
|
|
18801
19249
|
created_at: string;
|
|
18802
19250
|
workspace_id: string;
|
|
18803
19251
|
};
|
|
@@ -18819,6 +19267,8 @@ interface Routes {
|
|
|
18819
19267
|
user_identity_id: string;
|
|
18820
19268
|
user_identity_key?: (string | null) | undefined;
|
|
18821
19269
|
email_address?: (string | null) | undefined;
|
|
19270
|
+
first_name?: (string | null) | undefined;
|
|
19271
|
+
last_name?: (string | null) | undefined;
|
|
18822
19272
|
created_at: string;
|
|
18823
19273
|
workspace_id: string;
|
|
18824
19274
|
};
|
|
@@ -18847,36 +19297,54 @@ interface Routes {
|
|
|
18847
19297
|
formData: {};
|
|
18848
19298
|
jsonResponse: {
|
|
18849
19299
|
accessible_devices: Array<{
|
|
19300
|
+
/** Unique identifier for the device. */
|
|
18850
19301
|
device_id: string;
|
|
19302
|
+
/** Type of the device. */
|
|
18851
19303
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
19304
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
18852
19305
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
19306
|
+
/** Properties of the device. */
|
|
18853
19307
|
properties: ({
|
|
19308
|
+
/** Indicates whether the device is online. */
|
|
18854
19309
|
online: boolean;
|
|
19310
|
+
/** Name of the device. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
18855
19311
|
name: string;
|
|
18856
19312
|
model: {
|
|
19313
|
+
/** Display name of the device model. */
|
|
18857
19314
|
display_name: string;
|
|
19315
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
18858
19316
|
manufacturer_display_name: string;
|
|
19317
|
+
/** Indicates whether the device supports offline access codes. */
|
|
18859
19318
|
offline_access_codes_supported?: boolean | undefined;
|
|
19319
|
+
/** Indicates whether the device supports online access codes. */
|
|
18860
19320
|
online_access_codes_supported?: boolean | undefined;
|
|
19321
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
18861
19322
|
accessory_keypad_supported?: boolean | undefined;
|
|
18862
19323
|
};
|
|
19324
|
+
/** Indicates whether the device has direct power. */
|
|
18863
19325
|
has_direct_power?: boolean | undefined;
|
|
19326
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
18864
19327
|
battery_level?: number | undefined;
|
|
19328
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
18865
19329
|
battery?: {
|
|
18866
19330
|
level: number;
|
|
18867
19331
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
18868
19332
|
} | undefined;
|
|
19333
|
+
/** Manufacturer of the device. */
|
|
18869
19334
|
manufacturer?: string | undefined;
|
|
19335
|
+
/** Image URL for the device. */
|
|
18870
19336
|
image_url?: string | undefined;
|
|
19337
|
+
/** Alt text for the device image. */
|
|
18871
19338
|
image_alt_text?: string | undefined;
|
|
19339
|
+
/** Serial number of the device. */
|
|
18872
19340
|
serial_number?: string | undefined;
|
|
18873
|
-
/**
|
|
19341
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
18874
19342
|
online_access_codes_enabled?: boolean | undefined;
|
|
18875
|
-
/**
|
|
19343
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
18876
19344
|
offline_access_codes_enabled?: boolean | undefined;
|
|
18877
|
-
/** Deprecated:
|
|
19345
|
+
/** Deprecated: Use model.offline_access_codes_enabled. */
|
|
18878
19346
|
supports_accessory_keypad?: boolean | undefined;
|
|
18879
|
-
/** Deprecated:
|
|
19347
|
+
/** Deprecated: Use model.accessory_keypad_supported. */
|
|
18880
19348
|
supports_offline_access_codes?: boolean | undefined;
|
|
18881
19349
|
} & {
|
|
18882
19350
|
august_metadata?: {
|
|
@@ -19226,21 +19694,30 @@ interface Routes {
|
|
|
19226
19694
|
max_cooling_set_point_celsius?: number | undefined;
|
|
19227
19695
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
19228
19696
|
}));
|
|
19697
|
+
/** Location information for the device. */
|
|
19229
19698
|
location: {
|
|
19699
|
+
/** Name of the device location. */
|
|
19230
19700
|
location_name?: string | undefined;
|
|
19701
|
+
/** Time zone of the device location. */
|
|
19231
19702
|
timezone?: string | undefined;
|
|
19232
19703
|
} | null;
|
|
19704
|
+
/** Unique identifier for the account associated with the device. */
|
|
19233
19705
|
connected_account_id: string;
|
|
19706
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
19234
19707
|
workspace_id: string;
|
|
19708
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
19235
19709
|
errors: Array<{
|
|
19236
19710
|
error_code: string;
|
|
19237
19711
|
message: string;
|
|
19238
19712
|
}>;
|
|
19713
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
19239
19714
|
warnings: Array<{
|
|
19240
19715
|
warning_code: string;
|
|
19241
19716
|
message: string;
|
|
19242
19717
|
}>;
|
|
19718
|
+
/** Date and time at which the device object was created. */
|
|
19243
19719
|
created_at: string;
|
|
19720
|
+
/** Indicates whether Seam manages the device. */
|
|
19244
19721
|
is_managed: true;
|
|
19245
19722
|
}>;
|
|
19246
19723
|
};
|