@seamapi/types 1.496.0 → 1.498.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 +107 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +189 -10
- package/dist/index.cjs +107 -25
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +74 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.d.ts +12 -0
- package/lib/seam/connect/models/devices/device.js +2 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +8 -0
- package/lib/seam/connect/openapi.d.ts +80 -0
- package/lib/seam/connect/openapi.js +82 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +67 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +85 -2
- package/src/lib/seam/connect/route-types.ts +77 -0
|
@@ -12904,6 +12904,8 @@ export type Routes = {
|
|
|
12904
12904
|
can_simulate_disconnection?: boolean | undefined
|
|
12905
12905
|
can_unlock_with_code?: boolean | undefined
|
|
12906
12906
|
can_run_thermostat_programs?: boolean | undefined
|
|
12907
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
12908
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
12907
12909
|
}[]
|
|
12908
12910
|
| undefined
|
|
12909
12911
|
acs_entrances?:
|
|
@@ -16681,6 +16683,8 @@ export type Routes = {
|
|
|
16681
16683
|
can_simulate_disconnection?: boolean | undefined
|
|
16682
16684
|
can_unlock_with_code?: boolean | undefined
|
|
16683
16685
|
can_run_thermostat_programs?: boolean | undefined
|
|
16686
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
16687
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
16684
16688
|
}[]
|
|
16685
16689
|
| undefined
|
|
16686
16690
|
acs_entrances?:
|
|
@@ -19871,6 +19875,8 @@ export type Routes = {
|
|
|
19871
19875
|
can_simulate_disconnection?: boolean | undefined
|
|
19872
19876
|
can_unlock_with_code?: boolean | undefined
|
|
19873
19877
|
can_run_thermostat_programs?: boolean | undefined
|
|
19878
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
19879
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
19874
19880
|
}[]
|
|
19875
19881
|
| undefined
|
|
19876
19882
|
connect_webviews?:
|
|
@@ -29252,6 +29258,10 @@ export type Routes = {
|
|
|
29252
29258
|
acs_entrance_ids?: string[] | undefined
|
|
29253
29259
|
/** String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`. */
|
|
29254
29260
|
search?: string | undefined
|
|
29261
|
+
/** Maximum number of records to return per page. */
|
|
29262
|
+
limit?: number
|
|
29263
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
29264
|
+
page_cursor?: (string | undefined) | null
|
|
29255
29265
|
}
|
|
29256
29266
|
formData: {}
|
|
29257
29267
|
jsonResponse: {
|
|
@@ -29388,6 +29398,15 @@ export type Routes = {
|
|
|
29388
29398
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
29389
29399
|
can_unlock_with_code?: boolean | undefined
|
|
29390
29400
|
}[]
|
|
29401
|
+
/** Information about the current page of results. */
|
|
29402
|
+
pagination: {
|
|
29403
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
29404
|
+
next_page_cursor: string | null
|
|
29405
|
+
/** Indicates whether there is another page of results after this one. */
|
|
29406
|
+
has_next_page: boolean
|
|
29407
|
+
/** URL to get the next page of results. */
|
|
29408
|
+
next_page_url: string | null
|
|
29409
|
+
}
|
|
29391
29410
|
}
|
|
29392
29411
|
}
|
|
29393
29412
|
'/acs/entrances/list_credentials_with_access': {
|
|
@@ -37951,6 +37970,8 @@ export type Routes = {
|
|
|
37951
37970
|
can_simulate_disconnection?: boolean | undefined
|
|
37952
37971
|
can_unlock_with_code?: boolean | undefined
|
|
37953
37972
|
can_run_thermostat_programs?: boolean | undefined
|
|
37973
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
37974
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
37954
37975
|
}
|
|
37955
37976
|
}
|
|
37956
37977
|
}
|
|
@@ -38132,6 +38153,8 @@ export type Routes = {
|
|
|
38132
38153
|
| 'can_simulate_disconnection'
|
|
38133
38154
|
| 'can_unlock_with_code'
|
|
38134
38155
|
| 'can_run_thermostat_programs'
|
|
38156
|
+
| 'can_simulate_hub_connection'
|
|
38157
|
+
| 'can_simulate_hub_disconnection'
|
|
38135
38158
|
)[]
|
|
38136
38159
|
| undefined
|
|
38137
38160
|
/** */
|
|
@@ -38150,6 +38173,8 @@ export type Routes = {
|
|
|
38150
38173
|
| 'can_simulate_disconnection'
|
|
38151
38174
|
| 'can_unlock_with_code'
|
|
38152
38175
|
| 'can_run_thermostat_programs'
|
|
38176
|
+
| 'can_simulate_hub_connection'
|
|
38177
|
+
| 'can_simulate_hub_disconnection'
|
|
38153
38178
|
)[]
|
|
38154
38179
|
| undefined
|
|
38155
38180
|
/**
|
|
@@ -39669,6 +39694,8 @@ export type Routes = {
|
|
|
39669
39694
|
can_simulate_disconnection?: boolean | undefined
|
|
39670
39695
|
can_unlock_with_code?: boolean | undefined
|
|
39671
39696
|
can_run_thermostat_programs?: boolean | undefined
|
|
39697
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
39698
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
39672
39699
|
}[]
|
|
39673
39700
|
/** Information about the current page of results. */
|
|
39674
39701
|
pagination: {
|
|
@@ -39772,6 +39799,8 @@ export type Routes = {
|
|
|
39772
39799
|
can_simulate_disconnection?: boolean | undefined
|
|
39773
39800
|
can_unlock_with_code?: boolean | undefined
|
|
39774
39801
|
can_run_thermostat_programs?: boolean | undefined
|
|
39802
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
39803
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
39775
39804
|
}[]
|
|
39776
39805
|
}
|
|
39777
39806
|
}
|
|
@@ -40317,6 +40346,8 @@ export type Routes = {
|
|
|
40317
40346
|
can_simulate_disconnection?: boolean | undefined
|
|
40318
40347
|
can_unlock_with_code?: boolean | undefined
|
|
40319
40348
|
can_run_thermostat_programs?: boolean | undefined
|
|
40349
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
40350
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
40320
40351
|
}
|
|
40321
40352
|
}
|
|
40322
40353
|
}
|
|
@@ -40498,6 +40529,8 @@ export type Routes = {
|
|
|
40498
40529
|
| 'can_simulate_disconnection'
|
|
40499
40530
|
| 'can_unlock_with_code'
|
|
40500
40531
|
| 'can_run_thermostat_programs'
|
|
40532
|
+
| 'can_simulate_hub_connection'
|
|
40533
|
+
| 'can_simulate_hub_disconnection'
|
|
40501
40534
|
)[]
|
|
40502
40535
|
| undefined
|
|
40503
40536
|
/** */
|
|
@@ -40516,6 +40549,8 @@ export type Routes = {
|
|
|
40516
40549
|
| 'can_simulate_disconnection'
|
|
40517
40550
|
| 'can_unlock_with_code'
|
|
40518
40551
|
| 'can_run_thermostat_programs'
|
|
40552
|
+
| 'can_simulate_hub_connection'
|
|
40553
|
+
| 'can_simulate_hub_disconnection'
|
|
40519
40554
|
)[]
|
|
40520
40555
|
| undefined
|
|
40521
40556
|
/**
|
|
@@ -40998,6 +41033,8 @@ export type Routes = {
|
|
|
40998
41033
|
can_simulate_disconnection?: boolean | undefined
|
|
40999
41034
|
can_unlock_with_code?: boolean | undefined
|
|
41000
41035
|
can_run_thermostat_programs?: boolean | undefined
|
|
41036
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
41037
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
41001
41038
|
}[]
|
|
41002
41039
|
}
|
|
41003
41040
|
}
|
|
@@ -47232,6 +47269,8 @@ export type Routes = {
|
|
|
47232
47269
|
can_simulate_disconnection?: boolean | undefined
|
|
47233
47270
|
can_unlock_with_code?: boolean | undefined
|
|
47234
47271
|
can_run_thermostat_programs?: boolean | undefined
|
|
47272
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
47273
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
47235
47274
|
}
|
|
47236
47275
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
47237
47276
|
device: {
|
|
@@ -48739,6 +48778,8 @@ export type Routes = {
|
|
|
48739
48778
|
can_simulate_disconnection?: boolean | undefined
|
|
48740
48779
|
can_unlock_with_code?: boolean | undefined
|
|
48741
48780
|
can_run_thermostat_programs?: boolean | undefined
|
|
48781
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
48782
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
48742
48783
|
}
|
|
48743
48784
|
}
|
|
48744
48785
|
}
|
|
@@ -48884,6 +48925,8 @@ export type Routes = {
|
|
|
48884
48925
|
| 'can_simulate_disconnection'
|
|
48885
48926
|
| 'can_unlock_with_code'
|
|
48886
48927
|
| 'can_run_thermostat_programs'
|
|
48928
|
+
| 'can_simulate_hub_connection'
|
|
48929
|
+
| 'can_simulate_hub_disconnection'
|
|
48887
48930
|
)[]
|
|
48888
48931
|
| undefined
|
|
48889
48932
|
/** */
|
|
@@ -48902,6 +48945,8 @@ export type Routes = {
|
|
|
48902
48945
|
| 'can_simulate_disconnection'
|
|
48903
48946
|
| 'can_unlock_with_code'
|
|
48904
48947
|
| 'can_run_thermostat_programs'
|
|
48948
|
+
| 'can_simulate_hub_connection'
|
|
48949
|
+
| 'can_simulate_hub_disconnection'
|
|
48905
48950
|
)[]
|
|
48906
48951
|
| undefined
|
|
48907
48952
|
/**
|
|
@@ -50421,6 +50466,8 @@ export type Routes = {
|
|
|
50421
50466
|
can_simulate_disconnection?: boolean | undefined
|
|
50422
50467
|
can_unlock_with_code?: boolean | undefined
|
|
50423
50468
|
can_run_thermostat_programs?: boolean | undefined
|
|
50469
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
50470
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
50424
50471
|
}[]
|
|
50425
50472
|
devices: {
|
|
50426
50473
|
/** ID of the device. */
|
|
@@ -51927,6 +51974,8 @@ export type Routes = {
|
|
|
51927
51974
|
can_simulate_disconnection?: boolean | undefined
|
|
51928
51975
|
can_unlock_with_code?: boolean | undefined
|
|
51929
51976
|
can_run_thermostat_programs?: boolean | undefined
|
|
51977
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
51978
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
51930
51979
|
}[]
|
|
51931
51980
|
}
|
|
51932
51981
|
}
|
|
@@ -57743,6 +57792,8 @@ export type Routes = {
|
|
|
57743
57792
|
| 'can_simulate_disconnection'
|
|
57744
57793
|
| 'can_unlock_with_code'
|
|
57745
57794
|
| 'can_run_thermostat_programs'
|
|
57795
|
+
| 'can_simulate_hub_connection'
|
|
57796
|
+
| 'can_simulate_hub_disconnection'
|
|
57746
57797
|
)[]
|
|
57747
57798
|
| undefined
|
|
57748
57799
|
/** */
|
|
@@ -57761,6 +57812,8 @@ export type Routes = {
|
|
|
57761
57812
|
| 'can_simulate_disconnection'
|
|
57762
57813
|
| 'can_unlock_with_code'
|
|
57763
57814
|
| 'can_run_thermostat_programs'
|
|
57815
|
+
| 'can_simulate_hub_connection'
|
|
57816
|
+
| 'can_simulate_hub_disconnection'
|
|
57764
57817
|
)[]
|
|
57765
57818
|
| undefined
|
|
57766
57819
|
/**
|
|
@@ -59280,6 +59333,8 @@ export type Routes = {
|
|
|
59280
59333
|
can_simulate_disconnection?: boolean | undefined
|
|
59281
59334
|
can_unlock_with_code?: boolean | undefined
|
|
59282
59335
|
can_run_thermostat_programs?: boolean | undefined
|
|
59336
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
59337
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
59283
59338
|
}[]
|
|
59284
59339
|
devices: {
|
|
59285
59340
|
/** ID of the device. */
|
|
@@ -60786,6 +60841,8 @@ export type Routes = {
|
|
|
60786
60841
|
can_simulate_disconnection?: boolean | undefined
|
|
60787
60842
|
can_unlock_with_code?: boolean | undefined
|
|
60788
60843
|
can_run_thermostat_programs?: boolean | undefined
|
|
60844
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
60845
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
60789
60846
|
}[]
|
|
60790
60847
|
}
|
|
60791
60848
|
}
|
|
@@ -70753,6 +70810,8 @@ export type Routes = {
|
|
|
70753
70810
|
can_simulate_disconnection?: boolean | undefined
|
|
70754
70811
|
can_unlock_with_code?: boolean | undefined
|
|
70755
70812
|
can_run_thermostat_programs?: boolean | undefined
|
|
70813
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
70814
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
70756
70815
|
}[]
|
|
70757
70816
|
| undefined
|
|
70758
70817
|
acs_entrances?:
|
|
@@ -77289,6 +77348,8 @@ export type Routes = {
|
|
|
77289
77348
|
can_simulate_disconnection?: boolean | undefined
|
|
77290
77349
|
can_unlock_with_code?: boolean | undefined
|
|
77291
77350
|
can_run_thermostat_programs?: boolean | undefined
|
|
77351
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
77352
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
77292
77353
|
}
|
|
77293
77354
|
}
|
|
77294
77355
|
}
|
|
@@ -80264,6 +80325,8 @@ export type Routes = {
|
|
|
80264
80325
|
| 'can_simulate_disconnection'
|
|
80265
80326
|
| 'can_unlock_with_code'
|
|
80266
80327
|
| 'can_run_thermostat_programs'
|
|
80328
|
+
| 'can_simulate_hub_connection'
|
|
80329
|
+
| 'can_simulate_hub_disconnection'
|
|
80267
80330
|
)[]
|
|
80268
80331
|
| undefined
|
|
80269
80332
|
/** */
|
|
@@ -80282,6 +80345,8 @@ export type Routes = {
|
|
|
80282
80345
|
| 'can_simulate_disconnection'
|
|
80283
80346
|
| 'can_unlock_with_code'
|
|
80284
80347
|
| 'can_run_thermostat_programs'
|
|
80348
|
+
| 'can_simulate_hub_connection'
|
|
80349
|
+
| 'can_simulate_hub_disconnection'
|
|
80285
80350
|
)[]
|
|
80286
80351
|
| undefined
|
|
80287
80352
|
/**
|
|
@@ -81801,6 +81866,8 @@ export type Routes = {
|
|
|
81801
81866
|
can_simulate_disconnection?: boolean | undefined
|
|
81802
81867
|
can_unlock_with_code?: boolean | undefined
|
|
81803
81868
|
can_run_thermostat_programs?: boolean | undefined
|
|
81869
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
81870
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
81804
81871
|
}[]
|
|
81805
81872
|
devices: {
|
|
81806
81873
|
/** ID of the device. */
|
|
@@ -83307,6 +83374,8 @@ export type Routes = {
|
|
|
83307
83374
|
can_simulate_disconnection?: boolean | undefined
|
|
83308
83375
|
can_unlock_with_code?: boolean | undefined
|
|
83309
83376
|
can_run_thermostat_programs?: boolean | undefined
|
|
83377
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
83378
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
83310
83379
|
}[]
|
|
83311
83380
|
}
|
|
83312
83381
|
}
|
|
@@ -91530,6 +91599,8 @@ export type Routes = {
|
|
|
91530
91599
|
can_simulate_disconnection?: boolean | undefined
|
|
91531
91600
|
can_unlock_with_code?: boolean | undefined
|
|
91532
91601
|
can_run_thermostat_programs?: boolean | undefined
|
|
91602
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
91603
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
91533
91604
|
}[]
|
|
91534
91605
|
/**
|
|
91535
91606
|
* @deprecated Use devices.*/
|
|
@@ -93038,6 +93109,8 @@ export type Routes = {
|
|
|
93038
93109
|
can_simulate_disconnection?: boolean | undefined
|
|
93039
93110
|
can_unlock_with_code?: boolean | undefined
|
|
93040
93111
|
can_run_thermostat_programs?: boolean | undefined
|
|
93112
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
93113
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
93041
93114
|
}[]
|
|
93042
93115
|
}
|
|
93043
93116
|
}
|
|
@@ -95413,6 +95486,8 @@ export type Routes = {
|
|
|
95413
95486
|
can_simulate_disconnection?: boolean | undefined
|
|
95414
95487
|
can_unlock_with_code?: boolean | undefined
|
|
95415
95488
|
can_run_thermostat_programs?: boolean | undefined
|
|
95489
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
95490
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
95416
95491
|
}[]
|
|
95417
95492
|
| undefined
|
|
95418
95493
|
acs_entrances?:
|
|
@@ -98603,6 +98678,8 @@ export type Routes = {
|
|
|
98603
98678
|
can_simulate_disconnection?: boolean | undefined
|
|
98604
98679
|
can_unlock_with_code?: boolean | undefined
|
|
98605
98680
|
can_run_thermostat_programs?: boolean | undefined
|
|
98681
|
+
can_simulate_hub_connection?: boolean | undefined
|
|
98682
|
+
can_simulate_hub_disconnection?: boolean | undefined
|
|
98606
98683
|
}[]
|
|
98607
98684
|
| undefined
|
|
98608
98685
|
connect_webviews?:
|