@seamapi/types 1.252.2 → 1.253.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 +41 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +147 -70
- package/lib/seam/connect/models/acs/acs-credential.d.ts +36 -36
- package/lib/seam/connect/models/acs/acs-system.d.ts +4 -4
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +7 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +22 -3
- package/lib/seam/connect/models/devices/phone.d.ts +14 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +16 -3
- package/lib/seam/connect/openapi.d.ts +9 -0
- package/lib/seam/connect/openapi.js +17 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +60 -24
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +17 -0
- package/src/lib/seam/connect/route-types.ts +84 -0
|
@@ -6863,6 +6863,7 @@ export interface Routes {
|
|
|
6863
6863
|
| 'honeywell_resideo_thermostat'
|
|
6864
6864
|
)
|
|
6865
6865
|
| ('ios_phone' | 'android_phone')
|
|
6866
|
+
| 'visionline_encoder'
|
|
6866
6867
|
/** Optional nickname to describe the device, settable through Seam */
|
|
6867
6868
|
nickname?: string | undefined
|
|
6868
6869
|
/** 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. */
|
|
@@ -7222,6 +7223,11 @@ export interface Routes {
|
|
|
7222
7223
|
keypad_id?: number | undefined
|
|
7223
7224
|
}
|
|
7224
7225
|
| undefined
|
|
7226
|
+
visionline_metadata?:
|
|
7227
|
+
| {
|
|
7228
|
+
encoder_id: string
|
|
7229
|
+
}
|
|
7230
|
+
| undefined
|
|
7225
7231
|
}) &
|
|
7226
7232
|
({
|
|
7227
7233
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -7472,6 +7478,7 @@ export interface Routes {
|
|
|
7472
7478
|
| 'honeywell_resideo_thermostat'
|
|
7473
7479
|
)
|
|
7474
7480
|
| ('ios_phone' | 'android_phone')
|
|
7481
|
+
| 'visionline_encoder'
|
|
7475
7482
|
)
|
|
7476
7483
|
| undefined
|
|
7477
7484
|
device_types?:
|
|
@@ -7511,6 +7518,7 @@ export interface Routes {
|
|
|
7511
7518
|
| 'honeywell_resideo_thermostat'
|
|
7512
7519
|
)
|
|
7513
7520
|
| ('ios_phone' | 'android_phone')
|
|
7521
|
+
| 'visionline_encoder'
|
|
7514
7522
|
>
|
|
7515
7523
|
| undefined
|
|
7516
7524
|
manufacturer?:
|
|
@@ -7629,6 +7637,7 @@ export interface Routes {
|
|
|
7629
7637
|
| 'honeywell_resideo_thermostat'
|
|
7630
7638
|
)
|
|
7631
7639
|
| ('ios_phone' | 'android_phone')
|
|
7640
|
+
| 'visionline_encoder'
|
|
7632
7641
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7633
7642
|
nickname?: string | undefined
|
|
7634
7643
|
/** 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. */
|
|
@@ -7988,6 +7997,11 @@ export interface Routes {
|
|
|
7988
7997
|
keypad_id?: number | undefined
|
|
7989
7998
|
}
|
|
7990
7999
|
| undefined
|
|
8000
|
+
visionline_metadata?:
|
|
8001
|
+
| {
|
|
8002
|
+
encoder_id: string
|
|
8003
|
+
}
|
|
8004
|
+
| undefined
|
|
7991
8005
|
}) &
|
|
7992
8006
|
({
|
|
7993
8007
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -8356,6 +8370,7 @@ export interface Routes {
|
|
|
8356
8370
|
| 'honeywell_resideo_thermostat'
|
|
8357
8371
|
)
|
|
8358
8372
|
| ('ios_phone' | 'android_phone')
|
|
8373
|
+
| 'visionline_encoder'
|
|
8359
8374
|
/** Unique identifier for the account associated with the device. */
|
|
8360
8375
|
connected_account_id: string
|
|
8361
8376
|
/** Location information for the device. */
|
|
@@ -8514,6 +8529,7 @@ export interface Routes {
|
|
|
8514
8529
|
| 'honeywell_resideo_thermostat'
|
|
8515
8530
|
)
|
|
8516
8531
|
| ('ios_phone' | 'android_phone')
|
|
8532
|
+
| 'visionline_encoder'
|
|
8517
8533
|
)
|
|
8518
8534
|
| undefined
|
|
8519
8535
|
device_types?:
|
|
@@ -8553,6 +8569,7 @@ export interface Routes {
|
|
|
8553
8569
|
| 'honeywell_resideo_thermostat'
|
|
8554
8570
|
)
|
|
8555
8571
|
| ('ios_phone' | 'android_phone')
|
|
8572
|
+
| 'visionline_encoder'
|
|
8556
8573
|
>
|
|
8557
8574
|
| undefined
|
|
8558
8575
|
manufacturer?:
|
|
@@ -8671,6 +8688,7 @@ export interface Routes {
|
|
|
8671
8688
|
| 'honeywell_resideo_thermostat'
|
|
8672
8689
|
)
|
|
8673
8690
|
| ('ios_phone' | 'android_phone')
|
|
8691
|
+
| 'visionline_encoder'
|
|
8674
8692
|
/** Unique identifier for the account associated with the device. */
|
|
8675
8693
|
connected_account_id: string
|
|
8676
8694
|
/** Location information for the device. */
|
|
@@ -9063,6 +9081,7 @@ export interface Routes {
|
|
|
9063
9081
|
| 'honeywell_resideo_thermostat'
|
|
9064
9082
|
)
|
|
9065
9083
|
| ('ios_phone' | 'android_phone')
|
|
9084
|
+
| 'visionline_encoder'
|
|
9066
9085
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9067
9086
|
nickname?: string | undefined
|
|
9068
9087
|
/** 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. */
|
|
@@ -9422,6 +9441,11 @@ export interface Routes {
|
|
|
9422
9441
|
keypad_id?: number | undefined
|
|
9423
9442
|
}
|
|
9424
9443
|
| undefined
|
|
9444
|
+
visionline_metadata?:
|
|
9445
|
+
| {
|
|
9446
|
+
encoder_id: string
|
|
9447
|
+
}
|
|
9448
|
+
| undefined
|
|
9425
9449
|
}) &
|
|
9426
9450
|
({
|
|
9427
9451
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -9663,6 +9687,7 @@ export interface Routes {
|
|
|
9663
9687
|
| 'honeywell_resideo_thermostat'
|
|
9664
9688
|
)
|
|
9665
9689
|
| ('ios_phone' | 'android_phone')
|
|
9690
|
+
| 'visionline_encoder'
|
|
9666
9691
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9667
9692
|
nickname?: string | undefined
|
|
9668
9693
|
/** 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. */
|
|
@@ -10022,6 +10047,11 @@ export interface Routes {
|
|
|
10022
10047
|
keypad_id?: number | undefined
|
|
10023
10048
|
}
|
|
10024
10049
|
| undefined
|
|
10050
|
+
visionline_metadata?:
|
|
10051
|
+
| {
|
|
10052
|
+
encoder_id: string
|
|
10053
|
+
}
|
|
10054
|
+
| undefined
|
|
10025
10055
|
}) &
|
|
10026
10056
|
({
|
|
10027
10057
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -10272,6 +10302,7 @@ export interface Routes {
|
|
|
10272
10302
|
| 'honeywell_resideo_thermostat'
|
|
10273
10303
|
)
|
|
10274
10304
|
| ('ios_phone' | 'android_phone')
|
|
10305
|
+
| 'visionline_encoder'
|
|
10275
10306
|
)
|
|
10276
10307
|
| undefined
|
|
10277
10308
|
device_types?:
|
|
@@ -10311,6 +10342,7 @@ export interface Routes {
|
|
|
10311
10342
|
| 'honeywell_resideo_thermostat'
|
|
10312
10343
|
)
|
|
10313
10344
|
| ('ios_phone' | 'android_phone')
|
|
10345
|
+
| 'visionline_encoder'
|
|
10314
10346
|
>
|
|
10315
10347
|
| undefined
|
|
10316
10348
|
manufacturer?:
|
|
@@ -10429,6 +10461,7 @@ export interface Routes {
|
|
|
10429
10461
|
| 'honeywell_resideo_thermostat'
|
|
10430
10462
|
)
|
|
10431
10463
|
| ('ios_phone' | 'android_phone')
|
|
10464
|
+
| 'visionline_encoder'
|
|
10432
10465
|
/** Optional nickname to describe the device, settable through Seam */
|
|
10433
10466
|
nickname?: string | undefined
|
|
10434
10467
|
/** 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. */
|
|
@@ -10788,6 +10821,11 @@ export interface Routes {
|
|
|
10788
10821
|
keypad_id?: number | undefined
|
|
10789
10822
|
}
|
|
10790
10823
|
| undefined
|
|
10824
|
+
visionline_metadata?:
|
|
10825
|
+
| {
|
|
10826
|
+
encoder_id: string
|
|
10827
|
+
}
|
|
10828
|
+
| undefined
|
|
10791
10829
|
}) &
|
|
10792
10830
|
({
|
|
10793
10831
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -11029,6 +11067,7 @@ export interface Routes {
|
|
|
11029
11067
|
| 'honeywell_resideo_thermostat'
|
|
11030
11068
|
)
|
|
11031
11069
|
| ('ios_phone' | 'android_phone')
|
|
11070
|
+
| 'visionline_encoder'
|
|
11032
11071
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11033
11072
|
nickname?: string | undefined
|
|
11034
11073
|
/** 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. */
|
|
@@ -11388,6 +11427,11 @@ export interface Routes {
|
|
|
11388
11427
|
keypad_id?: number | undefined
|
|
11389
11428
|
}
|
|
11390
11429
|
| undefined
|
|
11430
|
+
visionline_metadata?:
|
|
11431
|
+
| {
|
|
11432
|
+
encoder_id: string
|
|
11433
|
+
}
|
|
11434
|
+
| undefined
|
|
11391
11435
|
}) &
|
|
11392
11436
|
({
|
|
11393
11437
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -12628,6 +12672,7 @@ export interface Routes {
|
|
|
12628
12672
|
| 'honeywell_resideo_thermostat'
|
|
12629
12673
|
)
|
|
12630
12674
|
| ('ios_phone' | 'android_phone')
|
|
12675
|
+
| 'visionline_encoder'
|
|
12631
12676
|
)
|
|
12632
12677
|
| undefined
|
|
12633
12678
|
device_types?:
|
|
@@ -12667,6 +12712,7 @@ export interface Routes {
|
|
|
12667
12712
|
| 'honeywell_resideo_thermostat'
|
|
12668
12713
|
)
|
|
12669
12714
|
| ('ios_phone' | 'android_phone')
|
|
12715
|
+
| 'visionline_encoder'
|
|
12670
12716
|
>
|
|
12671
12717
|
| undefined
|
|
12672
12718
|
manufacturer?:
|
|
@@ -12785,6 +12831,7 @@ export interface Routes {
|
|
|
12785
12831
|
| 'honeywell_resideo_thermostat'
|
|
12786
12832
|
)
|
|
12787
12833
|
| ('ios_phone' | 'android_phone')
|
|
12834
|
+
| 'visionline_encoder'
|
|
12788
12835
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12789
12836
|
nickname?: string | undefined
|
|
12790
12837
|
/** 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. */
|
|
@@ -13144,6 +13191,11 @@ export interface Routes {
|
|
|
13144
13191
|
keypad_id?: number | undefined
|
|
13145
13192
|
}
|
|
13146
13193
|
| undefined
|
|
13194
|
+
visionline_metadata?:
|
|
13195
|
+
| {
|
|
13196
|
+
encoder_id: string
|
|
13197
|
+
}
|
|
13198
|
+
| undefined
|
|
13147
13199
|
}) &
|
|
13148
13200
|
({
|
|
13149
13201
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -13385,6 +13437,7 @@ export interface Routes {
|
|
|
13385
13437
|
| 'honeywell_resideo_thermostat'
|
|
13386
13438
|
)
|
|
13387
13439
|
| ('ios_phone' | 'android_phone')
|
|
13440
|
+
| 'visionline_encoder'
|
|
13388
13441
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13389
13442
|
nickname?: string | undefined
|
|
13390
13443
|
/** 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. */
|
|
@@ -13744,6 +13797,11 @@ export interface Routes {
|
|
|
13744
13797
|
keypad_id?: number | undefined
|
|
13745
13798
|
}
|
|
13746
13799
|
| undefined
|
|
13800
|
+
visionline_metadata?:
|
|
13801
|
+
| {
|
|
13802
|
+
encoder_id: string
|
|
13803
|
+
}
|
|
13804
|
+
| undefined
|
|
13747
13805
|
}) &
|
|
13748
13806
|
({
|
|
13749
13807
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -16707,6 +16765,7 @@ export interface Routes {
|
|
|
16707
16765
|
| 'honeywell_resideo_thermostat'
|
|
16708
16766
|
)
|
|
16709
16767
|
| ('ios_phone' | 'android_phone')
|
|
16768
|
+
| 'visionline_encoder'
|
|
16710
16769
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16711
16770
|
nickname?: string | undefined
|
|
16712
16771
|
/** 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. */
|
|
@@ -17066,6 +17125,11 @@ export interface Routes {
|
|
|
17066
17125
|
keypad_id?: number | undefined
|
|
17067
17126
|
}
|
|
17068
17127
|
| undefined
|
|
17128
|
+
visionline_metadata?:
|
|
17129
|
+
| {
|
|
17130
|
+
encoder_id: string
|
|
17131
|
+
}
|
|
17132
|
+
| undefined
|
|
17069
17133
|
}) &
|
|
17070
17134
|
({
|
|
17071
17135
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -18278,6 +18342,7 @@ export interface Routes {
|
|
|
18278
18342
|
| 'honeywell_resideo_thermostat'
|
|
18279
18343
|
)
|
|
18280
18344
|
| ('ios_phone' | 'android_phone')
|
|
18345
|
+
| 'visionline_encoder'
|
|
18281
18346
|
)
|
|
18282
18347
|
| undefined
|
|
18283
18348
|
device_types?:
|
|
@@ -18317,6 +18382,7 @@ export interface Routes {
|
|
|
18317
18382
|
| 'honeywell_resideo_thermostat'
|
|
18318
18383
|
)
|
|
18319
18384
|
| ('ios_phone' | 'android_phone')
|
|
18385
|
+
| 'visionline_encoder'
|
|
18320
18386
|
>
|
|
18321
18387
|
| undefined
|
|
18322
18388
|
manufacturer?:
|
|
@@ -18435,6 +18501,7 @@ export interface Routes {
|
|
|
18435
18501
|
| 'honeywell_resideo_thermostat'
|
|
18436
18502
|
)
|
|
18437
18503
|
| ('ios_phone' | 'android_phone')
|
|
18504
|
+
| 'visionline_encoder'
|
|
18438
18505
|
/** Optional nickname to describe the device, settable through Seam */
|
|
18439
18506
|
nickname?: string | undefined
|
|
18440
18507
|
/** 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. */
|
|
@@ -18794,6 +18861,11 @@ export interface Routes {
|
|
|
18794
18861
|
keypad_id?: number | undefined
|
|
18795
18862
|
}
|
|
18796
18863
|
| undefined
|
|
18864
|
+
visionline_metadata?:
|
|
18865
|
+
| {
|
|
18866
|
+
encoder_id: string
|
|
18867
|
+
}
|
|
18868
|
+
| undefined
|
|
18797
18869
|
}) &
|
|
18798
18870
|
({
|
|
18799
18871
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -20325,6 +20397,7 @@ export interface Routes {
|
|
|
20325
20397
|
| 'honeywell_resideo_thermostat'
|
|
20326
20398
|
)
|
|
20327
20399
|
| ('ios_phone' | 'android_phone')
|
|
20400
|
+
| 'visionline_encoder'
|
|
20328
20401
|
/** Optional nickname to describe the device, settable through Seam */
|
|
20329
20402
|
nickname?: string | undefined
|
|
20330
20403
|
/** 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. */
|
|
@@ -20684,6 +20757,11 @@ export interface Routes {
|
|
|
20684
20757
|
keypad_id?: number | undefined
|
|
20685
20758
|
}
|
|
20686
20759
|
| undefined
|
|
20760
|
+
visionline_metadata?:
|
|
20761
|
+
| {
|
|
20762
|
+
encoder_id: string
|
|
20763
|
+
}
|
|
20764
|
+
| undefined
|
|
20687
20765
|
}) &
|
|
20688
20766
|
({
|
|
20689
20767
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -20927,6 +21005,7 @@ export interface Routes {
|
|
|
20927
21005
|
| 'honeywell_resideo_thermostat'
|
|
20928
21006
|
)
|
|
20929
21007
|
| ('ios_phone' | 'android_phone')
|
|
21008
|
+
| 'visionline_encoder'
|
|
20930
21009
|
/** Optional nickname to describe the device, settable through Seam */
|
|
20931
21010
|
nickname?: string | undefined
|
|
20932
21011
|
/** 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. */
|
|
@@ -21286,6 +21365,11 @@ export interface Routes {
|
|
|
21286
21365
|
keypad_id?: number | undefined
|
|
21287
21366
|
}
|
|
21288
21367
|
| undefined
|
|
21368
|
+
visionline_metadata?:
|
|
21369
|
+
| {
|
|
21370
|
+
encoder_id: string
|
|
21371
|
+
}
|
|
21372
|
+
| undefined
|
|
21289
21373
|
}) &
|
|
21290
21374
|
({
|
|
21291
21375
|
_experimental_supported_code_from_access_codes_lengths?:
|