@seamapi/types 1.132.0 → 1.133.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 +80 -64
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +261 -215
- package/lib/seam/connect/openapi.d.ts +216 -170
- package/lib/seam/connect/openapi.js +77 -61
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +45 -45
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +2 -2
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.d.ts +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.js +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +19 -19
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +77 -61
- package/src/lib/seam/connect/route-types.ts +121 -43
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +2 -2
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -1173,12 +1173,12 @@ declare const _default: {
|
|
|
1173
1173
|
required: string[];
|
|
1174
1174
|
type: string;
|
|
1175
1175
|
};
|
|
1176
|
-
|
|
1176
|
+
honeywell_resideo_metadata: {
|
|
1177
1177
|
properties: {
|
|
1178
1178
|
device_name: {
|
|
1179
1179
|
type: string;
|
|
1180
1180
|
};
|
|
1181
|
-
|
|
1181
|
+
honeywell_resideo_device_id: {
|
|
1182
1182
|
type: string;
|
|
1183
1183
|
};
|
|
1184
1184
|
};
|
|
@@ -13240,20 +13240,25 @@ declare const _default: {
|
|
|
13240
13240
|
};
|
|
13241
13241
|
};
|
|
13242
13242
|
security: ({
|
|
13243
|
-
|
|
13244
|
-
|
|
13245
|
-
|
|
13246
|
-
|
|
13243
|
+
client_session: never[];
|
|
13244
|
+
pat_with_workspace?: never;
|
|
13245
|
+
console_session?: never;
|
|
13246
|
+
api_key?: never;
|
|
13247
13247
|
} | {
|
|
13248
|
-
|
|
13249
|
-
|
|
13250
|
-
|
|
13251
|
-
|
|
13248
|
+
pat_with_workspace: never[];
|
|
13249
|
+
client_session?: never;
|
|
13250
|
+
console_session?: never;
|
|
13251
|
+
api_key?: never;
|
|
13252
13252
|
} | {
|
|
13253
|
-
|
|
13254
|
-
|
|
13255
|
-
|
|
13256
|
-
|
|
13253
|
+
console_session: never[];
|
|
13254
|
+
client_session?: never;
|
|
13255
|
+
pat_with_workspace?: never;
|
|
13256
|
+
api_key?: never;
|
|
13257
|
+
} | {
|
|
13258
|
+
api_key: never[];
|
|
13259
|
+
client_session?: never;
|
|
13260
|
+
pat_with_workspace?: never;
|
|
13261
|
+
console_session?: never;
|
|
13257
13262
|
})[];
|
|
13258
13263
|
summary: string;
|
|
13259
13264
|
tags: string[];
|
|
@@ -13306,20 +13311,25 @@ declare const _default: {
|
|
|
13306
13311
|
};
|
|
13307
13312
|
};
|
|
13308
13313
|
security: ({
|
|
13309
|
-
|
|
13310
|
-
|
|
13311
|
-
|
|
13312
|
-
|
|
13314
|
+
client_session: never[];
|
|
13315
|
+
pat_with_workspace?: never;
|
|
13316
|
+
console_session?: never;
|
|
13317
|
+
api_key?: never;
|
|
13313
13318
|
} | {
|
|
13314
|
-
|
|
13315
|
-
|
|
13316
|
-
|
|
13317
|
-
|
|
13319
|
+
pat_with_workspace: never[];
|
|
13320
|
+
client_session?: never;
|
|
13321
|
+
console_session?: never;
|
|
13322
|
+
api_key?: never;
|
|
13318
13323
|
} | {
|
|
13319
|
-
|
|
13320
|
-
|
|
13321
|
-
|
|
13322
|
-
|
|
13324
|
+
console_session: never[];
|
|
13325
|
+
client_session?: never;
|
|
13326
|
+
pat_with_workspace?: never;
|
|
13327
|
+
api_key?: never;
|
|
13328
|
+
} | {
|
|
13329
|
+
api_key: never[];
|
|
13330
|
+
client_session?: never;
|
|
13331
|
+
pat_with_workspace?: never;
|
|
13332
|
+
console_session?: never;
|
|
13323
13333
|
})[];
|
|
13324
13334
|
summary: string;
|
|
13325
13335
|
tags: string[];
|
|
@@ -13369,20 +13379,25 @@ declare const _default: {
|
|
|
13369
13379
|
};
|
|
13370
13380
|
};
|
|
13371
13381
|
security: ({
|
|
13372
|
-
|
|
13373
|
-
|
|
13374
|
-
|
|
13375
|
-
|
|
13382
|
+
client_session: never[];
|
|
13383
|
+
pat_with_workspace?: never;
|
|
13384
|
+
console_session?: never;
|
|
13385
|
+
api_key?: never;
|
|
13376
13386
|
} | {
|
|
13377
|
-
|
|
13378
|
-
|
|
13379
|
-
|
|
13380
|
-
|
|
13387
|
+
pat_with_workspace: never[];
|
|
13388
|
+
client_session?: never;
|
|
13389
|
+
console_session?: never;
|
|
13390
|
+
api_key?: never;
|
|
13381
13391
|
} | {
|
|
13382
|
-
|
|
13383
|
-
|
|
13384
|
-
|
|
13385
|
-
|
|
13392
|
+
console_session: never[];
|
|
13393
|
+
client_session?: never;
|
|
13394
|
+
pat_with_workspace?: never;
|
|
13395
|
+
api_key?: never;
|
|
13396
|
+
} | {
|
|
13397
|
+
api_key: never[];
|
|
13398
|
+
client_session?: never;
|
|
13399
|
+
pat_with_workspace?: never;
|
|
13400
|
+
console_session?: never;
|
|
13386
13401
|
})[];
|
|
13387
13402
|
summary: string;
|
|
13388
13403
|
tags: string[];
|
|
@@ -13439,20 +13454,25 @@ declare const _default: {
|
|
|
13439
13454
|
};
|
|
13440
13455
|
};
|
|
13441
13456
|
security: ({
|
|
13442
|
-
|
|
13443
|
-
|
|
13444
|
-
|
|
13445
|
-
|
|
13457
|
+
client_session: never[];
|
|
13458
|
+
pat_with_workspace?: never;
|
|
13459
|
+
console_session?: never;
|
|
13460
|
+
api_key?: never;
|
|
13446
13461
|
} | {
|
|
13447
|
-
|
|
13448
|
-
|
|
13449
|
-
|
|
13450
|
-
|
|
13462
|
+
pat_with_workspace: never[];
|
|
13463
|
+
client_session?: never;
|
|
13464
|
+
console_session?: never;
|
|
13465
|
+
api_key?: never;
|
|
13451
13466
|
} | {
|
|
13452
|
-
|
|
13453
|
-
|
|
13454
|
-
|
|
13455
|
-
|
|
13467
|
+
console_session: never[];
|
|
13468
|
+
client_session?: never;
|
|
13469
|
+
pat_with_workspace?: never;
|
|
13470
|
+
api_key?: never;
|
|
13471
|
+
} | {
|
|
13472
|
+
api_key: never[];
|
|
13473
|
+
client_session?: never;
|
|
13474
|
+
pat_with_workspace?: never;
|
|
13475
|
+
console_session?: never;
|
|
13456
13476
|
})[];
|
|
13457
13477
|
summary: string;
|
|
13458
13478
|
tags: string[];
|
|
@@ -13514,20 +13534,25 @@ declare const _default: {
|
|
|
13514
13534
|
};
|
|
13515
13535
|
};
|
|
13516
13536
|
security: ({
|
|
13517
|
-
|
|
13518
|
-
|
|
13519
|
-
|
|
13520
|
-
|
|
13537
|
+
api_key: never[];
|
|
13538
|
+
client_session?: never;
|
|
13539
|
+
pat_with_workspace?: never;
|
|
13540
|
+
console_session?: never;
|
|
13521
13541
|
} | {
|
|
13522
|
-
|
|
13523
|
-
|
|
13524
|
-
|
|
13525
|
-
|
|
13542
|
+
client_session: never[];
|
|
13543
|
+
api_key?: never;
|
|
13544
|
+
pat_with_workspace?: never;
|
|
13545
|
+
console_session?: never;
|
|
13526
13546
|
} | {
|
|
13527
|
-
|
|
13528
|
-
|
|
13529
|
-
|
|
13530
|
-
|
|
13547
|
+
pat_with_workspace: never[];
|
|
13548
|
+
api_key?: never;
|
|
13549
|
+
client_session?: never;
|
|
13550
|
+
console_session?: never;
|
|
13551
|
+
} | {
|
|
13552
|
+
console_session: never[];
|
|
13553
|
+
api_key?: never;
|
|
13554
|
+
client_session?: never;
|
|
13555
|
+
pat_with_workspace?: never;
|
|
13531
13556
|
})[];
|
|
13532
13557
|
summary: string;
|
|
13533
13558
|
tags: string[];
|
|
@@ -13622,20 +13647,25 @@ declare const _default: {
|
|
|
13622
13647
|
};
|
|
13623
13648
|
};
|
|
13624
13649
|
security: ({
|
|
13625
|
-
|
|
13626
|
-
|
|
13627
|
-
|
|
13628
|
-
|
|
13650
|
+
client_session: never[];
|
|
13651
|
+
pat_with_workspace?: never;
|
|
13652
|
+
console_session?: never;
|
|
13653
|
+
api_key?: never;
|
|
13629
13654
|
} | {
|
|
13630
|
-
|
|
13631
|
-
|
|
13632
|
-
|
|
13633
|
-
|
|
13655
|
+
pat_with_workspace: never[];
|
|
13656
|
+
client_session?: never;
|
|
13657
|
+
console_session?: never;
|
|
13658
|
+
api_key?: never;
|
|
13634
13659
|
} | {
|
|
13635
|
-
|
|
13636
|
-
|
|
13637
|
-
|
|
13638
|
-
|
|
13660
|
+
console_session: never[];
|
|
13661
|
+
client_session?: never;
|
|
13662
|
+
pat_with_workspace?: never;
|
|
13663
|
+
api_key?: never;
|
|
13664
|
+
} | {
|
|
13665
|
+
api_key: never[];
|
|
13666
|
+
client_session?: never;
|
|
13667
|
+
pat_with_workspace?: never;
|
|
13668
|
+
console_session?: never;
|
|
13639
13669
|
})[];
|
|
13640
13670
|
summary: string;
|
|
13641
13671
|
tags: string[];
|
|
@@ -13726,20 +13756,25 @@ declare const _default: {
|
|
|
13726
13756
|
};
|
|
13727
13757
|
};
|
|
13728
13758
|
security: ({
|
|
13729
|
-
|
|
13730
|
-
|
|
13731
|
-
|
|
13732
|
-
|
|
13759
|
+
client_session: never[];
|
|
13760
|
+
pat_with_workspace?: never;
|
|
13761
|
+
console_session?: never;
|
|
13762
|
+
api_key?: never;
|
|
13733
13763
|
} | {
|
|
13734
|
-
|
|
13735
|
-
|
|
13736
|
-
|
|
13737
|
-
|
|
13764
|
+
pat_with_workspace: never[];
|
|
13765
|
+
client_session?: never;
|
|
13766
|
+
console_session?: never;
|
|
13767
|
+
api_key?: never;
|
|
13738
13768
|
} | {
|
|
13739
|
-
|
|
13740
|
-
|
|
13741
|
-
|
|
13742
|
-
|
|
13769
|
+
console_session: never[];
|
|
13770
|
+
client_session?: never;
|
|
13771
|
+
pat_with_workspace?: never;
|
|
13772
|
+
api_key?: never;
|
|
13773
|
+
} | {
|
|
13774
|
+
api_key: never[];
|
|
13775
|
+
client_session?: never;
|
|
13776
|
+
pat_with_workspace?: never;
|
|
13777
|
+
console_session?: never;
|
|
13743
13778
|
})[];
|
|
13744
13779
|
summary: string;
|
|
13745
13780
|
tags: string[];
|
|
@@ -13832,20 +13867,25 @@ declare const _default: {
|
|
|
13832
13867
|
};
|
|
13833
13868
|
};
|
|
13834
13869
|
security: ({
|
|
13835
|
-
|
|
13836
|
-
|
|
13837
|
-
|
|
13838
|
-
|
|
13870
|
+
client_session: never[];
|
|
13871
|
+
pat_with_workspace?: never;
|
|
13872
|
+
console_session?: never;
|
|
13873
|
+
api_key?: never;
|
|
13839
13874
|
} | {
|
|
13840
|
-
|
|
13841
|
-
|
|
13842
|
-
|
|
13843
|
-
|
|
13875
|
+
pat_with_workspace: never[];
|
|
13876
|
+
client_session?: never;
|
|
13877
|
+
console_session?: never;
|
|
13878
|
+
api_key?: never;
|
|
13844
13879
|
} | {
|
|
13845
|
-
|
|
13846
|
-
|
|
13847
|
-
|
|
13848
|
-
|
|
13880
|
+
console_session: never[];
|
|
13881
|
+
client_session?: never;
|
|
13882
|
+
pat_with_workspace?: never;
|
|
13883
|
+
api_key?: never;
|
|
13884
|
+
} | {
|
|
13885
|
+
api_key: never[];
|
|
13886
|
+
client_session?: never;
|
|
13887
|
+
pat_with_workspace?: never;
|
|
13888
|
+
console_session?: never;
|
|
13849
13889
|
})[];
|
|
13850
13890
|
summary: string;
|
|
13851
13891
|
tags: string[];
|
|
@@ -13909,20 +13949,17 @@ declare const _default: {
|
|
|
13909
13949
|
};
|
|
13910
13950
|
};
|
|
13911
13951
|
security: ({
|
|
13912
|
-
|
|
13913
|
-
|
|
13914
|
-
|
|
13915
|
-
client_session_token?: never;
|
|
13952
|
+
api_key: never[];
|
|
13953
|
+
client_session?: never;
|
|
13954
|
+
pat_with_workspace?: never;
|
|
13916
13955
|
} | {
|
|
13917
|
-
|
|
13918
|
-
|
|
13919
|
-
|
|
13920
|
-
client_session_token?: never;
|
|
13956
|
+
client_session: never[];
|
|
13957
|
+
api_key?: never;
|
|
13958
|
+
pat_with_workspace?: never;
|
|
13921
13959
|
} | {
|
|
13922
|
-
|
|
13923
|
-
|
|
13924
|
-
|
|
13925
|
-
seam_client_session_token?: never;
|
|
13960
|
+
pat_with_workspace: never[];
|
|
13961
|
+
api_key?: never;
|
|
13962
|
+
client_session?: never;
|
|
13926
13963
|
})[];
|
|
13927
13964
|
summary: string;
|
|
13928
13965
|
tags: string[];
|
|
@@ -13980,20 +14017,17 @@ declare const _default: {
|
|
|
13980
14017
|
};
|
|
13981
14018
|
};
|
|
13982
14019
|
security: ({
|
|
13983
|
-
|
|
13984
|
-
|
|
13985
|
-
|
|
13986
|
-
client_session_token?: never;
|
|
14020
|
+
api_key: never[];
|
|
14021
|
+
client_session?: never;
|
|
14022
|
+
pat_with_workspace?: never;
|
|
13987
14023
|
} | {
|
|
13988
|
-
|
|
13989
|
-
|
|
13990
|
-
|
|
13991
|
-
client_session_token?: never;
|
|
14024
|
+
client_session: never[];
|
|
14025
|
+
api_key?: never;
|
|
14026
|
+
pat_with_workspace?: never;
|
|
13992
14027
|
} | {
|
|
13993
|
-
|
|
13994
|
-
|
|
13995
|
-
|
|
13996
|
-
seam_client_session_token?: never;
|
|
14028
|
+
pat_with_workspace: never[];
|
|
14029
|
+
api_key?: never;
|
|
14030
|
+
client_session?: never;
|
|
13997
14031
|
})[];
|
|
13998
14032
|
summary: string;
|
|
13999
14033
|
tags: string[];
|
|
@@ -14059,20 +14093,17 @@ declare const _default: {
|
|
|
14059
14093
|
};
|
|
14060
14094
|
};
|
|
14061
14095
|
security: ({
|
|
14062
|
-
|
|
14063
|
-
|
|
14064
|
-
|
|
14065
|
-
client_session_token?: never;
|
|
14096
|
+
api_key: never[];
|
|
14097
|
+
client_session?: never;
|
|
14098
|
+
pat_with_workspace?: never;
|
|
14066
14099
|
} | {
|
|
14067
|
-
|
|
14068
|
-
|
|
14069
|
-
|
|
14070
|
-
client_session_token?: never;
|
|
14100
|
+
client_session: never[];
|
|
14101
|
+
api_key?: never;
|
|
14102
|
+
pat_with_workspace?: never;
|
|
14071
14103
|
} | {
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
seam_client_session_token?: never;
|
|
14104
|
+
pat_with_workspace: never[];
|
|
14105
|
+
api_key?: never;
|
|
14106
|
+
client_session?: never;
|
|
14076
14107
|
})[];
|
|
14077
14108
|
summary: string;
|
|
14078
14109
|
tags: string[];
|
|
@@ -14144,20 +14175,17 @@ declare const _default: {
|
|
|
14144
14175
|
};
|
|
14145
14176
|
};
|
|
14146
14177
|
security: ({
|
|
14147
|
-
|
|
14148
|
-
|
|
14149
|
-
|
|
14150
|
-
client_session_token?: never;
|
|
14178
|
+
api_key: never[];
|
|
14179
|
+
client_session?: never;
|
|
14180
|
+
pat_with_workspace?: never;
|
|
14151
14181
|
} | {
|
|
14152
|
-
|
|
14153
|
-
|
|
14154
|
-
|
|
14155
|
-
client_session_token?: never;
|
|
14182
|
+
client_session: never[];
|
|
14183
|
+
api_key?: never;
|
|
14184
|
+
pat_with_workspace?: never;
|
|
14156
14185
|
} | {
|
|
14157
|
-
|
|
14158
|
-
|
|
14159
|
-
|
|
14160
|
-
seam_client_session_token?: never;
|
|
14186
|
+
pat_with_workspace: never[];
|
|
14187
|
+
api_key?: never;
|
|
14188
|
+
client_session?: never;
|
|
14161
14189
|
})[];
|
|
14162
14190
|
summary: string;
|
|
14163
14191
|
tags: string[];
|
|
@@ -14291,14 +14319,22 @@ declare const _default: {
|
|
|
14291
14319
|
api_key: never[];
|
|
14292
14320
|
pat_with_workspace?: never;
|
|
14293
14321
|
console_session?: never;
|
|
14322
|
+
client_session?: never;
|
|
14294
14323
|
} | {
|
|
14295
14324
|
pat_with_workspace: never[];
|
|
14296
14325
|
api_key?: never;
|
|
14297
14326
|
console_session?: never;
|
|
14327
|
+
client_session?: never;
|
|
14298
14328
|
} | {
|
|
14299
14329
|
console_session: never[];
|
|
14300
14330
|
api_key?: never;
|
|
14301
14331
|
pat_with_workspace?: never;
|
|
14332
|
+
client_session?: never;
|
|
14333
|
+
} | {
|
|
14334
|
+
client_session: never[];
|
|
14335
|
+
api_key?: never;
|
|
14336
|
+
pat_with_workspace?: never;
|
|
14337
|
+
console_session?: never;
|
|
14302
14338
|
})[];
|
|
14303
14339
|
summary: string;
|
|
14304
14340
|
tags: string[];
|
|
@@ -14358,20 +14394,17 @@ declare const _default: {
|
|
|
14358
14394
|
};
|
|
14359
14395
|
};
|
|
14360
14396
|
security: ({
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
14364
|
-
client_session_token?: never;
|
|
14397
|
+
api_key: never[];
|
|
14398
|
+
client_session?: never;
|
|
14399
|
+
pat_with_workspace?: never;
|
|
14365
14400
|
} | {
|
|
14366
|
-
|
|
14367
|
-
|
|
14368
|
-
|
|
14369
|
-
client_session_token?: never;
|
|
14401
|
+
client_session: never[];
|
|
14402
|
+
api_key?: never;
|
|
14403
|
+
pat_with_workspace?: never;
|
|
14370
14404
|
} | {
|
|
14371
|
-
|
|
14372
|
-
|
|
14373
|
-
|
|
14374
|
-
seam_client_session_token?: never;
|
|
14405
|
+
pat_with_workspace: never[];
|
|
14406
|
+
api_key?: never;
|
|
14407
|
+
client_session?: never;
|
|
14375
14408
|
})[];
|
|
14376
14409
|
summary: string;
|
|
14377
14410
|
tags: string[];
|
|
@@ -14439,20 +14472,17 @@ declare const _default: {
|
|
|
14439
14472
|
};
|
|
14440
14473
|
};
|
|
14441
14474
|
security: ({
|
|
14442
|
-
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
client_session_token?: never;
|
|
14475
|
+
api_key: never[];
|
|
14476
|
+
client_session?: never;
|
|
14477
|
+
pat_with_workspace?: never;
|
|
14446
14478
|
} | {
|
|
14447
|
-
|
|
14448
|
-
|
|
14449
|
-
|
|
14450
|
-
client_session_token?: never;
|
|
14479
|
+
client_session: never[];
|
|
14480
|
+
api_key?: never;
|
|
14481
|
+
pat_with_workspace?: never;
|
|
14451
14482
|
} | {
|
|
14452
|
-
|
|
14453
|
-
|
|
14454
|
-
|
|
14455
|
-
seam_client_session_token?: never;
|
|
14483
|
+
pat_with_workspace: never[];
|
|
14484
|
+
api_key?: never;
|
|
14485
|
+
client_session?: never;
|
|
14456
14486
|
})[];
|
|
14457
14487
|
summary: string;
|
|
14458
14488
|
tags: string[];
|
|
@@ -14538,14 +14568,22 @@ declare const _default: {
|
|
|
14538
14568
|
api_key: never[];
|
|
14539
14569
|
pat_with_workspace?: never;
|
|
14540
14570
|
console_session?: never;
|
|
14571
|
+
client_session?: never;
|
|
14541
14572
|
} | {
|
|
14542
14573
|
pat_with_workspace: never[];
|
|
14543
14574
|
api_key?: never;
|
|
14544
14575
|
console_session?: never;
|
|
14576
|
+
client_session?: never;
|
|
14545
14577
|
} | {
|
|
14546
14578
|
console_session: never[];
|
|
14547
14579
|
api_key?: never;
|
|
14548
14580
|
pat_with_workspace?: never;
|
|
14581
|
+
client_session?: never;
|
|
14582
|
+
} | {
|
|
14583
|
+
client_session: never[];
|
|
14584
|
+
api_key?: never;
|
|
14585
|
+
pat_with_workspace?: never;
|
|
14586
|
+
console_session?: never;
|
|
14549
14587
|
})[];
|
|
14550
14588
|
summary: string;
|
|
14551
14589
|
tags: string[];
|
|
@@ -14627,14 +14665,22 @@ declare const _default: {
|
|
|
14627
14665
|
api_key: never[];
|
|
14628
14666
|
pat_with_workspace?: never;
|
|
14629
14667
|
console_session?: never;
|
|
14668
|
+
client_session?: never;
|
|
14630
14669
|
} | {
|
|
14631
14670
|
pat_with_workspace: never[];
|
|
14632
14671
|
api_key?: never;
|
|
14633
14672
|
console_session?: never;
|
|
14673
|
+
client_session?: never;
|
|
14634
14674
|
} | {
|
|
14635
14675
|
console_session: never[];
|
|
14636
14676
|
api_key?: never;
|
|
14637
14677
|
pat_with_workspace?: never;
|
|
14678
|
+
client_session?: never;
|
|
14679
|
+
} | {
|
|
14680
|
+
client_session: never[];
|
|
14681
|
+
api_key?: never;
|
|
14682
|
+
pat_with_workspace?: never;
|
|
14683
|
+
console_session?: never;
|
|
14638
14684
|
})[];
|
|
14639
14685
|
summary: string;
|
|
14640
14686
|
tags: string[];
|
|
@@ -18652,7 +18698,7 @@ interface Routes {
|
|
|
18652
18698
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
18653
18699
|
custom_redirect_url?: string | undefined;
|
|
18654
18700
|
custom_redirect_failure_url?: string | undefined;
|
|
18655
|
-
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' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | '
|
|
18701
|
+
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' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
18656
18702
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
18657
18703
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
18658
18704
|
automatically_manage_new_devices?: boolean | undefined;
|
|
@@ -18905,7 +18951,7 @@ interface Routes {
|
|
|
18905
18951
|
/** Unique identifier for the device. */
|
|
18906
18952
|
device_id: string;
|
|
18907
18953
|
/** Type of the device. */
|
|
18908
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
18954
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
18909
18955
|
/** Optional nickname to describe the device, settable through Seam */
|
|
18910
18956
|
nickname?: string | undefined;
|
|
18911
18957
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -19103,8 +19149,8 @@ interface Routes {
|
|
|
19103
19149
|
ecobee_device_id: string;
|
|
19104
19150
|
device_name: string;
|
|
19105
19151
|
} | undefined;
|
|
19106
|
-
|
|
19107
|
-
|
|
19152
|
+
honeywell_resideo_metadata?: {
|
|
19153
|
+
honeywell_resideo_device_id: string;
|
|
19108
19154
|
device_name: string;
|
|
19109
19155
|
} | undefined;
|
|
19110
19156
|
hubitat_metadata?: {
|
|
@@ -19388,9 +19434,9 @@ interface Routes {
|
|
|
19388
19434
|
connected_account_id?: string | undefined;
|
|
19389
19435
|
connected_account_ids?: string[] | undefined;
|
|
19390
19436
|
connect_webview_id?: string | undefined;
|
|
19391
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
19392
|
-
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
19393
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | '
|
|
19437
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
19438
|
+
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
19439
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
19394
19440
|
device_ids?: string[] | undefined;
|
|
19395
19441
|
limit?: number;
|
|
19396
19442
|
created_before?: Date | undefined;
|
|
@@ -19403,7 +19449,7 @@ interface Routes {
|
|
|
19403
19449
|
/** Unique identifier for the device. */
|
|
19404
19450
|
device_id: string;
|
|
19405
19451
|
/** Type of the device. */
|
|
19406
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
19452
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
19407
19453
|
/** Optional nickname to describe the device, settable through Seam */
|
|
19408
19454
|
nickname?: string | undefined;
|
|
19409
19455
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -19601,8 +19647,8 @@ interface Routes {
|
|
|
19601
19647
|
ecobee_device_id: string;
|
|
19602
19648
|
device_name: string;
|
|
19603
19649
|
} | undefined;
|
|
19604
|
-
|
|
19605
|
-
|
|
19650
|
+
honeywell_resideo_metadata?: {
|
|
19651
|
+
honeywell_resideo_device_id: string;
|
|
19606
19652
|
device_name: string;
|
|
19607
19653
|
} | undefined;
|
|
19608
19654
|
hubitat_metadata?: {
|
|
@@ -19887,7 +19933,7 @@ interface Routes {
|
|
|
19887
19933
|
formData: {};
|
|
19888
19934
|
jsonResponse: {
|
|
19889
19935
|
device_providers: Array<{
|
|
19890
|
-
device_provider_name: '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' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | '
|
|
19936
|
+
device_provider_name: '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' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo';
|
|
19891
19937
|
display_name: string;
|
|
19892
19938
|
image_url: string;
|
|
19893
19939
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -19909,7 +19955,7 @@ interface Routes {
|
|
|
19909
19955
|
/** Unique identifier for the device. */
|
|
19910
19956
|
device_id: string;
|
|
19911
19957
|
/** Type of the device. */
|
|
19912
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
19958
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
19913
19959
|
/** Unique identifier for the account associated with the device. */
|
|
19914
19960
|
connected_account_id: string;
|
|
19915
19961
|
/** 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. */
|
|
@@ -19979,9 +20025,9 @@ interface Routes {
|
|
|
19979
20025
|
connected_account_id?: string | undefined;
|
|
19980
20026
|
connected_account_ids?: string[] | undefined;
|
|
19981
20027
|
connect_webview_id?: string | undefined;
|
|
19982
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
19983
|
-
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
19984
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | '
|
|
20028
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
20029
|
+
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
20030
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
19985
20031
|
device_ids?: string[] | undefined;
|
|
19986
20032
|
limit?: number;
|
|
19987
20033
|
created_before?: Date | undefined;
|
|
@@ -19994,7 +20040,7 @@ interface Routes {
|
|
|
19994
20040
|
/** Unique identifier for the device. */
|
|
19995
20041
|
device_id: string;
|
|
19996
20042
|
/** Type of the device. */
|
|
19997
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
20043
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
19998
20044
|
/** Unique identifier for the account associated with the device. */
|
|
19999
20045
|
connected_account_id: string;
|
|
20000
20046
|
/** 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. */
|
|
@@ -20118,8 +20164,8 @@ interface Routes {
|
|
|
20118
20164
|
device_ids?: string[] | undefined;
|
|
20119
20165
|
access_code_id?: string | undefined;
|
|
20120
20166
|
access_code_ids?: string[] | undefined;
|
|
20121
|
-
event_type?: ('device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_user.deleted' | 'acs_credential.deleted' | 'enrollment_automation.deleted' | 'client_session.deleted') | undefined;
|
|
20122
|
-
event_types?: Array<'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_user.deleted' | 'acs_credential.deleted' | 'enrollment_automation.deleted' | 'client_session.deleted'> | undefined;
|
|
20167
|
+
event_type?: ('device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_user.deleted' | 'acs_credential.deleted' | 'enrollment_automation.deleted' | 'client_session.deleted') | undefined;
|
|
20168
|
+
event_types?: Array<'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_user.deleted' | 'acs_credential.deleted' | 'enrollment_automation.deleted' | 'client_session.deleted'> | undefined;
|
|
20123
20169
|
connected_account_id?: string | undefined;
|
|
20124
20170
|
limit?: number;
|
|
20125
20171
|
};
|
|
@@ -20224,7 +20270,7 @@ interface Routes {
|
|
|
20224
20270
|
/** Unique identifier for the device. */
|
|
20225
20271
|
device_id: string;
|
|
20226
20272
|
/** Type of the device. */
|
|
20227
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
20273
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
20228
20274
|
/** Optional nickname to describe the device, settable through Seam */
|
|
20229
20275
|
nickname?: string | undefined;
|
|
20230
20276
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -20422,8 +20468,8 @@ interface Routes {
|
|
|
20422
20468
|
ecobee_device_id: string;
|
|
20423
20469
|
device_name: string;
|
|
20424
20470
|
} | undefined;
|
|
20425
|
-
|
|
20426
|
-
|
|
20471
|
+
honeywell_resideo_metadata?: {
|
|
20472
|
+
honeywell_resideo_device_id: string;
|
|
20427
20473
|
device_name: string;
|
|
20428
20474
|
} | undefined;
|
|
20429
20475
|
hubitat_metadata?: {
|
|
@@ -20699,7 +20745,7 @@ interface Routes {
|
|
|
20699
20745
|
/** Unique identifier for the device. */
|
|
20700
20746
|
device_id: string;
|
|
20701
20747
|
/** Type of the device. */
|
|
20702
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
20748
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
20703
20749
|
/** Optional nickname to describe the device, settable through Seam */
|
|
20704
20750
|
nickname?: string | undefined;
|
|
20705
20751
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -20897,8 +20943,8 @@ interface Routes {
|
|
|
20897
20943
|
ecobee_device_id: string;
|
|
20898
20944
|
device_name: string;
|
|
20899
20945
|
} | undefined;
|
|
20900
|
-
|
|
20901
|
-
|
|
20946
|
+
honeywell_resideo_metadata?: {
|
|
20947
|
+
honeywell_resideo_device_id: string;
|
|
20902
20948
|
device_name: string;
|
|
20903
20949
|
} | undefined;
|
|
20904
20950
|
hubitat_metadata?: {
|
|
@@ -21182,9 +21228,9 @@ interface Routes {
|
|
|
21182
21228
|
connected_account_id?: string | undefined;
|
|
21183
21229
|
connected_account_ids?: string[] | undefined;
|
|
21184
21230
|
connect_webview_id?: string | undefined;
|
|
21185
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
21186
|
-
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
21187
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | '
|
|
21231
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
21232
|
+
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
21233
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
21188
21234
|
device_ids?: string[] | undefined;
|
|
21189
21235
|
limit?: number;
|
|
21190
21236
|
created_before?: Date | undefined;
|
|
@@ -21197,7 +21243,7 @@ interface Routes {
|
|
|
21197
21243
|
/** Unique identifier for the device. */
|
|
21198
21244
|
device_id: string;
|
|
21199
21245
|
/** Type of the device. */
|
|
21200
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
21246
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
21201
21247
|
/** Optional nickname to describe the device, settable through Seam */
|
|
21202
21248
|
nickname?: string | undefined;
|
|
21203
21249
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -21395,8 +21441,8 @@ interface Routes {
|
|
|
21395
21441
|
ecobee_device_id: string;
|
|
21396
21442
|
device_name: string;
|
|
21397
21443
|
} | undefined;
|
|
21398
|
-
|
|
21399
|
-
|
|
21444
|
+
honeywell_resideo_metadata?: {
|
|
21445
|
+
honeywell_resideo_device_id: string;
|
|
21400
21446
|
device_name: string;
|
|
21401
21447
|
} | undefined;
|
|
21402
21448
|
hubitat_metadata?: {
|
|
@@ -21672,7 +21718,7 @@ interface Routes {
|
|
|
21672
21718
|
/** Unique identifier for the device. */
|
|
21673
21719
|
device_id: string;
|
|
21674
21720
|
/** Type of the device. */
|
|
21675
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
21721
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
21676
21722
|
/** Optional nickname to describe the device, settable through Seam */
|
|
21677
21723
|
nickname?: string | undefined;
|
|
21678
21724
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -21870,8 +21916,8 @@ interface Routes {
|
|
|
21870
21916
|
ecobee_device_id: string;
|
|
21871
21917
|
device_name: string;
|
|
21872
21918
|
} | undefined;
|
|
21873
|
-
|
|
21874
|
-
|
|
21919
|
+
honeywell_resideo_metadata?: {
|
|
21920
|
+
honeywell_resideo_device_id: string;
|
|
21875
21921
|
device_name: string;
|
|
21876
21922
|
} | undefined;
|
|
21877
21923
|
hubitat_metadata?: {
|
|
@@ -22784,7 +22830,7 @@ interface Routes {
|
|
|
22784
22830
|
/** Unique identifier for the device. */
|
|
22785
22831
|
device_id: string;
|
|
22786
22832
|
/** Type of the device. */
|
|
22787
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
22833
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
22788
22834
|
/** Optional nickname to describe the device, settable through Seam */
|
|
22789
22835
|
nickname?: string | undefined;
|
|
22790
22836
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -22982,8 +23028,8 @@ interface Routes {
|
|
|
22982
23028
|
ecobee_device_id: string;
|
|
22983
23029
|
device_name: string;
|
|
22984
23030
|
} | undefined;
|
|
22985
|
-
|
|
22986
|
-
|
|
23031
|
+
honeywell_resideo_metadata?: {
|
|
23032
|
+
honeywell_resideo_device_id: string;
|
|
22987
23033
|
device_name: string;
|
|
22988
23034
|
} | undefined;
|
|
22989
23035
|
hubitat_metadata?: {
|
|
@@ -23343,9 +23389,9 @@ interface Routes {
|
|
|
23343
23389
|
connected_account_id?: string | undefined;
|
|
23344
23390
|
connected_account_ids?: string[] | undefined;
|
|
23345
23391
|
connect_webview_id?: string | undefined;
|
|
23346
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
23347
|
-
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
23348
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | '
|
|
23392
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
23393
|
+
device_types?: Array<('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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
23394
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
23349
23395
|
device_ids?: string[] | undefined;
|
|
23350
23396
|
limit?: number;
|
|
23351
23397
|
created_before?: Date | undefined;
|
|
@@ -23358,7 +23404,7 @@ interface Routes {
|
|
|
23358
23404
|
/** Unique identifier for the device. */
|
|
23359
23405
|
device_id: string;
|
|
23360
23406
|
/** Type of the device. */
|
|
23361
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
23407
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
23362
23408
|
/** Optional nickname to describe the device, settable through Seam */
|
|
23363
23409
|
nickname?: string | undefined;
|
|
23364
23410
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -23556,8 +23602,8 @@ interface Routes {
|
|
|
23556
23602
|
ecobee_device_id: string;
|
|
23557
23603
|
device_name: string;
|
|
23558
23604
|
} | undefined;
|
|
23559
|
-
|
|
23560
|
-
|
|
23605
|
+
honeywell_resideo_metadata?: {
|
|
23606
|
+
honeywell_resideo_device_id: string;
|
|
23561
23607
|
device_name: string;
|
|
23562
23608
|
} | undefined;
|
|
23563
23609
|
hubitat_metadata?: {
|
|
@@ -24117,7 +24163,7 @@ interface Routes {
|
|
|
24117
24163
|
/** Unique identifier for the device. */
|
|
24118
24164
|
device_id: string;
|
|
24119
24165
|
/** Type of the device. */
|
|
24120
|
-
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | '
|
|
24166
|
+
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' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
24121
24167
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24122
24168
|
nickname?: string | undefined;
|
|
24123
24169
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -24315,8 +24361,8 @@ interface Routes {
|
|
|
24315
24361
|
ecobee_device_id: string;
|
|
24316
24362
|
device_name: string;
|
|
24317
24363
|
} | undefined;
|
|
24318
|
-
|
|
24319
|
-
|
|
24364
|
+
honeywell_resideo_metadata?: {
|
|
24365
|
+
honeywell_resideo_device_id: string;
|
|
24320
24366
|
device_name: string;
|
|
24321
24367
|
} | undefined;
|
|
24322
24368
|
hubitat_metadata?: {
|