@seamapi/types 1.299.0 → 1.300.1
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 +20 -101
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +56 -53
- package/lib/seam/connect/models/acs/acs-user.d.ts +10 -10
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -10
- package/lib/seam/connect/models/devices/device-type.js +0 -8
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +3 -3
- package/lib/seam/connect/models/devices/phone.d.ts +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -3
- package/lib/seam/connect/models/schedule.d.ts +6 -6
- package/lib/seam/connect/models/schedule.js +2 -1
- package/lib/seam/connect/models/schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -1
- package/lib/seam/connect/openapi.js +11 -83
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -36
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +0 -18
- package/src/lib/seam/connect/models/schedule.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +11 -83
- package/src/lib/seam/connect/route-types.ts +11 -36
|
@@ -1054,6 +1054,7 @@ export default {
|
|
|
1054
1054
|
description:
|
|
1055
1055
|
"Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
1056
1056
|
format: 'date-time',
|
|
1057
|
+
nullable: true,
|
|
1057
1058
|
type: 'string',
|
|
1058
1059
|
},
|
|
1059
1060
|
starts_at: {
|
|
@@ -4326,10 +4327,6 @@ export default {
|
|
|
4326
4327
|
type: 'string',
|
|
4327
4328
|
},
|
|
4328
4329
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
4329
|
-
{
|
|
4330
|
-
enum: ['visionline_encoder', 'assa_abloy_vostio_encoder'],
|
|
4331
|
-
type: 'string',
|
|
4332
|
-
},
|
|
4333
4330
|
],
|
|
4334
4331
|
},
|
|
4335
4332
|
display_name: {
|
|
@@ -6341,10 +6338,6 @@ export default {
|
|
|
6341
6338
|
type: 'string',
|
|
6342
6339
|
},
|
|
6343
6340
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
6344
|
-
{
|
|
6345
|
-
enum: ['visionline_encoder', 'assa_abloy_vostio_encoder'],
|
|
6346
|
-
type: 'string',
|
|
6347
|
-
},
|
|
6348
6341
|
],
|
|
6349
6342
|
},
|
|
6350
6343
|
errors: {
|
|
@@ -11102,12 +11095,15 @@ export default {
|
|
|
11102
11095
|
properties: {
|
|
11103
11096
|
access_schedule: {
|
|
11104
11097
|
description:
|
|
11105
|
-
"`starts_at` and `ends_at` timestamps for the new `acs_user`'s access. If you specify an `access_schedule`, you
|
|
11098
|
+
"`starts_at` and `ends_at` timestamps for the new `acs_user`'s access. If you specify an `access_schedule`, you may include both `starts_at` and `ends_at`. `starts_at` defaults to the current time if not provided. `ends_at` is optional and must be a time in the future and after `starts_at`.",
|
|
11106
11099
|
properties: {
|
|
11107
|
-
ends_at: {
|
|
11100
|
+
ends_at: {
|
|
11101
|
+
format: 'date-time',
|
|
11102
|
+
nullable: true,
|
|
11103
|
+
type: 'string',
|
|
11104
|
+
},
|
|
11108
11105
|
starts_at: { format: 'date-time', type: 'string' },
|
|
11109
11106
|
},
|
|
11110
|
-
required: ['starts_at', 'ends_at'],
|
|
11111
11107
|
type: 'object',
|
|
11112
11108
|
},
|
|
11113
11109
|
acs_access_group_ids: {
|
|
@@ -11619,6 +11615,7 @@ export default {
|
|
|
11619
11615
|
description:
|
|
11620
11616
|
"Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
11621
11617
|
format: 'date-time',
|
|
11618
|
+
nullable: true,
|
|
11622
11619
|
type: 'string',
|
|
11623
11620
|
},
|
|
11624
11621
|
starts_at: {
|
|
@@ -12011,6 +12008,7 @@ export default {
|
|
|
12011
12008
|
description:
|
|
12012
12009
|
"Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
12013
12010
|
format: 'date-time',
|
|
12011
|
+
nullable: true,
|
|
12014
12012
|
type: 'string',
|
|
12015
12013
|
},
|
|
12016
12014
|
starts_at: {
|
|
@@ -12433,7 +12431,7 @@ export default {
|
|
|
12433
12431
|
properties: {
|
|
12434
12432
|
access_schedule: {
|
|
12435
12433
|
description:
|
|
12436
|
-
"`starts_at` and `ends_at` timestamps for the `acs_user`'s access. If you specify an `access_schedule`, you must include both `starts_at` and `ends_at`. `ends_at` must be a time in the future and after `starts_at`.
|
|
12434
|
+
"`starts_at` and `ends_at` timestamps for the `acs_user`'s access. If you specify an `access_schedule`, you must include both `starts_at` and `ends_at`. `ends_at` must be a time in the future and after `starts_at`.",
|
|
12437
12435
|
nullable: true,
|
|
12438
12436
|
properties: {
|
|
12439
12437
|
ends_at: { format: 'date-time', type: 'string' },
|
|
@@ -12513,7 +12511,7 @@ export default {
|
|
|
12513
12511
|
properties: {
|
|
12514
12512
|
access_schedule: {
|
|
12515
12513
|
description:
|
|
12516
|
-
"`starts_at` and `ends_at` timestamps for the `acs_user`'s access. If you specify an `access_schedule`, you must include both `starts_at` and `ends_at`. `ends_at` must be a time in the future and after `starts_at`.
|
|
12514
|
+
"`starts_at` and `ends_at` timestamps for the `acs_user`'s access. If you specify an `access_schedule`, you must include both `starts_at` and `ends_at`. `ends_at` must be a time in the future and after `starts_at`.",
|
|
12517
12515
|
nullable: true,
|
|
12518
12516
|
properties: {
|
|
12519
12517
|
ends_at: { format: 'date-time', type: 'string' },
|
|
@@ -13933,13 +13931,6 @@ export default {
|
|
|
13933
13931
|
type: 'string',
|
|
13934
13932
|
},
|
|
13935
13933
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
13936
|
-
{
|
|
13937
|
-
enum: [
|
|
13938
|
-
'visionline_encoder',
|
|
13939
|
-
'assa_abloy_vostio_encoder',
|
|
13940
|
-
],
|
|
13941
|
-
type: 'string',
|
|
13942
|
-
},
|
|
13943
13934
|
],
|
|
13944
13935
|
},
|
|
13945
13936
|
device_types: {
|
|
@@ -13995,13 +13986,6 @@ export default {
|
|
|
13995
13986
|
enum: ['ios_phone', 'android_phone'],
|
|
13996
13987
|
type: 'string',
|
|
13997
13988
|
},
|
|
13998
|
-
{
|
|
13999
|
-
enum: [
|
|
14000
|
-
'visionline_encoder',
|
|
14001
|
-
'assa_abloy_vostio_encoder',
|
|
14002
|
-
],
|
|
14003
|
-
type: 'string',
|
|
14004
|
-
},
|
|
14005
13989
|
],
|
|
14006
13990
|
},
|
|
14007
13991
|
type: 'array',
|
|
@@ -14471,13 +14455,6 @@ export default {
|
|
|
14471
14455
|
type: 'string',
|
|
14472
14456
|
},
|
|
14473
14457
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
14474
|
-
{
|
|
14475
|
-
enum: [
|
|
14476
|
-
'visionline_encoder',
|
|
14477
|
-
'assa_abloy_vostio_encoder',
|
|
14478
|
-
],
|
|
14479
|
-
type: 'string',
|
|
14480
|
-
},
|
|
14481
14458
|
],
|
|
14482
14459
|
},
|
|
14483
14460
|
device_types: {
|
|
@@ -14533,13 +14510,6 @@ export default {
|
|
|
14533
14510
|
enum: ['ios_phone', 'android_phone'],
|
|
14534
14511
|
type: 'string',
|
|
14535
14512
|
},
|
|
14536
|
-
{
|
|
14537
|
-
enum: [
|
|
14538
|
-
'visionline_encoder',
|
|
14539
|
-
'assa_abloy_vostio_encoder',
|
|
14540
|
-
],
|
|
14541
|
-
type: 'string',
|
|
14542
|
-
},
|
|
14543
14513
|
],
|
|
14544
14514
|
},
|
|
14545
14515
|
type: 'array',
|
|
@@ -15312,13 +15282,6 @@ export default {
|
|
|
15312
15282
|
type: 'string',
|
|
15313
15283
|
},
|
|
15314
15284
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
15315
|
-
{
|
|
15316
|
-
enum: [
|
|
15317
|
-
'visionline_encoder',
|
|
15318
|
-
'assa_abloy_vostio_encoder',
|
|
15319
|
-
],
|
|
15320
|
-
type: 'string',
|
|
15321
|
-
},
|
|
15322
15285
|
],
|
|
15323
15286
|
},
|
|
15324
15287
|
device_types: {
|
|
@@ -15374,13 +15337,6 @@ export default {
|
|
|
15374
15337
|
enum: ['ios_phone', 'android_phone'],
|
|
15375
15338
|
type: 'string',
|
|
15376
15339
|
},
|
|
15377
|
-
{
|
|
15378
|
-
enum: [
|
|
15379
|
-
'visionline_encoder',
|
|
15380
|
-
'assa_abloy_vostio_encoder',
|
|
15381
|
-
],
|
|
15382
|
-
type: 'string',
|
|
15383
|
-
},
|
|
15384
15340
|
],
|
|
15385
15341
|
},
|
|
15386
15342
|
type: 'array',
|
|
@@ -15811,13 +15767,6 @@ export default {
|
|
|
15811
15767
|
type: 'string',
|
|
15812
15768
|
},
|
|
15813
15769
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
15814
|
-
{
|
|
15815
|
-
enum: [
|
|
15816
|
-
'visionline_encoder',
|
|
15817
|
-
'assa_abloy_vostio_encoder',
|
|
15818
|
-
],
|
|
15819
|
-
type: 'string',
|
|
15820
|
-
},
|
|
15821
15770
|
],
|
|
15822
15771
|
},
|
|
15823
15772
|
device_types: {
|
|
@@ -15873,13 +15822,6 @@ export default {
|
|
|
15873
15822
|
enum: ['ios_phone', 'android_phone'],
|
|
15874
15823
|
type: 'string',
|
|
15875
15824
|
},
|
|
15876
|
-
{
|
|
15877
|
-
enum: [
|
|
15878
|
-
'visionline_encoder',
|
|
15879
|
-
'assa_abloy_vostio_encoder',
|
|
15880
|
-
],
|
|
15881
|
-
type: 'string',
|
|
15882
|
-
},
|
|
15883
15825
|
],
|
|
15884
15826
|
},
|
|
15885
15827
|
type: 'array',
|
|
@@ -17231,13 +17173,6 @@ export default {
|
|
|
17231
17173
|
type: 'string',
|
|
17232
17174
|
},
|
|
17233
17175
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
17234
|
-
{
|
|
17235
|
-
enum: [
|
|
17236
|
-
'visionline_encoder',
|
|
17237
|
-
'assa_abloy_vostio_encoder',
|
|
17238
|
-
],
|
|
17239
|
-
type: 'string',
|
|
17240
|
-
},
|
|
17241
17176
|
],
|
|
17242
17177
|
},
|
|
17243
17178
|
device_types: {
|
|
@@ -17293,13 +17228,6 @@ export default {
|
|
|
17293
17228
|
enum: ['ios_phone', 'android_phone'],
|
|
17294
17229
|
type: 'string',
|
|
17295
17230
|
},
|
|
17296
|
-
{
|
|
17297
|
-
enum: [
|
|
17298
|
-
'visionline_encoder',
|
|
17299
|
-
'assa_abloy_vostio_encoder',
|
|
17300
|
-
],
|
|
17301
|
-
type: 'string',
|
|
17302
|
-
},
|
|
17303
17231
|
],
|
|
17304
17232
|
},
|
|
17305
17233
|
type: 'array',
|
|
@@ -4836,7 +4836,7 @@ export interface Routes {
|
|
|
4836
4836
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
4837
4837
|
starts_at: string
|
|
4838
4838
|
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
4839
|
-
ends_at: string
|
|
4839
|
+
ends_at: string | null
|
|
4840
4840
|
}
|
|
4841
4841
|
| undefined
|
|
4842
4842
|
/** ID of the user identity associated with the `acs_user`. */
|
|
@@ -8964,11 +8964,11 @@ export interface Routes {
|
|
|
8964
8964
|
acs_access_group_ids?: string[]
|
|
8965
8965
|
/** ID of the user identity with which to associate the new `acs_user`. */
|
|
8966
8966
|
user_identity_id?: string | undefined
|
|
8967
|
-
/** `starts_at` and `ends_at` timestamps for the new `acs_user`'s access. If you specify an `access_schedule`, you
|
|
8967
|
+
/** `starts_at` and `ends_at` timestamps for the new `acs_user`'s access. If you specify an `access_schedule`, you may include both `starts_at` and `ends_at`. `starts_at` defaults to the current time if not provided. `ends_at` is optional and must be a time in the future and after `starts_at`. */
|
|
8968
8968
|
access_schedule?:
|
|
8969
8969
|
| {
|
|
8970
|
-
starts_at
|
|
8971
|
-
ends_at
|
|
8970
|
+
starts_at?: string | undefined
|
|
8971
|
+
ends_at?: (string | undefined) | null
|
|
8972
8972
|
}
|
|
8973
8973
|
| undefined
|
|
8974
8974
|
/** Full name of the `acs_user`. */
|
|
@@ -9017,7 +9017,7 @@ export interface Routes {
|
|
|
9017
9017
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9018
9018
|
starts_at: string
|
|
9019
9019
|
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9020
|
-
ends_at: string
|
|
9020
|
+
ends_at: string | null
|
|
9021
9021
|
}
|
|
9022
9022
|
| undefined
|
|
9023
9023
|
/** ID of the user identity associated with the `acs_user`. */
|
|
@@ -9152,7 +9152,7 @@ export interface Routes {
|
|
|
9152
9152
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9153
9153
|
starts_at: string
|
|
9154
9154
|
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9155
|
-
ends_at: string
|
|
9155
|
+
ends_at: string | null
|
|
9156
9156
|
}
|
|
9157
9157
|
| undefined
|
|
9158
9158
|
/** ID of the user identity associated with the `acs_user`. */
|
|
@@ -9283,7 +9283,7 @@ export interface Routes {
|
|
|
9283
9283
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9284
9284
|
starts_at: string
|
|
9285
9285
|
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9286
|
-
ends_at: string
|
|
9286
|
+
ends_at: string | null
|
|
9287
9287
|
}
|
|
9288
9288
|
| undefined
|
|
9289
9289
|
/** ID of the user identity associated with the `acs_user`. */
|
|
@@ -9525,7 +9525,7 @@ export interface Routes {
|
|
|
9525
9525
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9526
9526
|
starts_at: string
|
|
9527
9527
|
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9528
|
-
ends_at: string
|
|
9528
|
+
ends_at: string | null
|
|
9529
9529
|
}
|
|
9530
9530
|
| undefined
|
|
9531
9531
|
/** ID of the user identity associated with the `acs_user`. */
|
|
@@ -9651,7 +9651,7 @@ export interface Routes {
|
|
|
9651
9651
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9652
9652
|
starts_at: string
|
|
9653
9653
|
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9654
|
-
ends_at: string
|
|
9654
|
+
ends_at: string | null
|
|
9655
9655
|
}
|
|
9656
9656
|
| undefined
|
|
9657
9657
|
/** ID of the user identity associated with the `acs_user`. */
|
|
@@ -9747,7 +9747,7 @@ export interface Routes {
|
|
|
9747
9747
|
method: 'PATCH' | 'POST'
|
|
9748
9748
|
queryParams: {}
|
|
9749
9749
|
jsonBody: {
|
|
9750
|
-
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. If you specify an `access_schedule`, you must include both `starts_at` and `ends_at`. `ends_at` must be a time in the future and after `starts_at`.
|
|
9750
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. If you specify an `access_schedule`, you must include both `starts_at` and `ends_at`. `ends_at` must be a time in the future and after `starts_at`. */
|
|
9751
9751
|
access_schedule?:
|
|
9752
9752
|
| ({
|
|
9753
9753
|
starts_at: string
|
|
@@ -12287,7 +12287,6 @@ export interface Routes {
|
|
|
12287
12287
|
| 'honeywell_resideo_thermostat'
|
|
12288
12288
|
)
|
|
12289
12289
|
| ('ios_phone' | 'android_phone')
|
|
12290
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
12291
12290
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12292
12291
|
nickname?: string | undefined
|
|
12293
12292
|
/** 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. */
|
|
@@ -12995,7 +12994,6 @@ export interface Routes {
|
|
|
12995
12994
|
| 'honeywell_resideo_thermostat'
|
|
12996
12995
|
)
|
|
12997
12996
|
| ('ios_phone' | 'android_phone')
|
|
12998
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
12999
12997
|
)
|
|
13000
12998
|
| undefined
|
|
13001
12999
|
/** Array of device types by which to filter devices. */
|
|
@@ -13037,7 +13035,6 @@ export interface Routes {
|
|
|
13037
13035
|
| 'honeywell_resideo_thermostat'
|
|
13038
13036
|
)
|
|
13039
13037
|
| ('ios_phone' | 'android_phone')
|
|
13040
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13041
13038
|
>
|
|
13042
13039
|
| undefined
|
|
13043
13040
|
/** Manufacturer by which to filter devices. */
|
|
@@ -13166,7 +13163,6 @@ export interface Routes {
|
|
|
13166
13163
|
| 'honeywell_resideo_thermostat'
|
|
13167
13164
|
)
|
|
13168
13165
|
| ('ios_phone' | 'android_phone')
|
|
13169
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13170
13166
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13171
13167
|
nickname?: string | undefined
|
|
13172
13168
|
/** 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. */
|
|
@@ -13994,7 +13990,6 @@ export interface Routes {
|
|
|
13994
13990
|
| 'honeywell_resideo_thermostat'
|
|
13995
13991
|
)
|
|
13996
13992
|
| ('ios_phone' | 'android_phone')
|
|
13997
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13998
13993
|
/** Unique identifier for the account associated with the device. */
|
|
13999
13994
|
connected_account_id: string
|
|
14000
13995
|
/** Location information for the device. */
|
|
@@ -14157,7 +14152,6 @@ export interface Routes {
|
|
|
14157
14152
|
| 'honeywell_resideo_thermostat'
|
|
14158
14153
|
)
|
|
14159
14154
|
| ('ios_phone' | 'android_phone')
|
|
14160
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
14161
14155
|
)
|
|
14162
14156
|
| undefined
|
|
14163
14157
|
/** Array of device types by which to filter devices. */
|
|
@@ -14199,7 +14193,6 @@ export interface Routes {
|
|
|
14199
14193
|
| 'honeywell_resideo_thermostat'
|
|
14200
14194
|
)
|
|
14201
14195
|
| ('ios_phone' | 'android_phone')
|
|
14202
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
14203
14196
|
>
|
|
14204
14197
|
| undefined
|
|
14205
14198
|
/** Manufacturer by which to filter devices. */
|
|
@@ -14328,7 +14321,6 @@ export interface Routes {
|
|
|
14328
14321
|
| 'honeywell_resideo_thermostat'
|
|
14329
14322
|
)
|
|
14330
14323
|
| ('ios_phone' | 'android_phone')
|
|
14331
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
14332
14324
|
/** Unique identifier for the account associated with the device. */
|
|
14333
14325
|
connected_account_id: string
|
|
14334
14326
|
/** Location information for the device. */
|
|
@@ -14761,7 +14753,6 @@ export interface Routes {
|
|
|
14761
14753
|
| 'honeywell_resideo_thermostat'
|
|
14762
14754
|
)
|
|
14763
14755
|
| ('ios_phone' | 'android_phone')
|
|
14764
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
14765
14756
|
/** Optional nickname to describe the device, settable through Seam */
|
|
14766
14757
|
nickname?: string | undefined
|
|
14767
14758
|
/** 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. */
|
|
@@ -15457,7 +15448,6 @@ export interface Routes {
|
|
|
15457
15448
|
| 'honeywell_resideo_thermostat'
|
|
15458
15449
|
)
|
|
15459
15450
|
| ('ios_phone' | 'android_phone')
|
|
15460
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
15461
15451
|
/** Optional nickname to describe the device, settable through Seam */
|
|
15462
15452
|
nickname?: string | undefined
|
|
15463
15453
|
/** 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. */
|
|
@@ -16165,7 +16155,6 @@ export interface Routes {
|
|
|
16165
16155
|
| 'honeywell_resideo_thermostat'
|
|
16166
16156
|
)
|
|
16167
16157
|
| ('ios_phone' | 'android_phone')
|
|
16168
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
16169
16158
|
)
|
|
16170
16159
|
| undefined
|
|
16171
16160
|
/** Array of device types by which to filter devices. */
|
|
@@ -16207,7 +16196,6 @@ export interface Routes {
|
|
|
16207
16196
|
| 'honeywell_resideo_thermostat'
|
|
16208
16197
|
)
|
|
16209
16198
|
| ('ios_phone' | 'android_phone')
|
|
16210
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
16211
16199
|
>
|
|
16212
16200
|
| undefined
|
|
16213
16201
|
/** Manufacturer by which to filter devices. */
|
|
@@ -16336,7 +16324,6 @@ export interface Routes {
|
|
|
16336
16324
|
| 'honeywell_resideo_thermostat'
|
|
16337
16325
|
)
|
|
16338
16326
|
| ('ios_phone' | 'android_phone')
|
|
16339
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
16340
16327
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16341
16328
|
nickname?: string | undefined
|
|
16342
16329
|
/** 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. */
|
|
@@ -17032,7 +17019,6 @@ export interface Routes {
|
|
|
17032
17019
|
| 'honeywell_resideo_thermostat'
|
|
17033
17020
|
)
|
|
17034
17021
|
| ('ios_phone' | 'android_phone')
|
|
17035
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
17036
17022
|
/** Optional nickname to describe the device, settable through Seam */
|
|
17037
17023
|
nickname?: string | undefined
|
|
17038
17024
|
/** 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. */
|
|
@@ -19748,7 +19734,6 @@ export interface Routes {
|
|
|
19748
19734
|
| 'honeywell_resideo_thermostat'
|
|
19749
19735
|
)
|
|
19750
19736
|
| ('ios_phone' | 'android_phone')
|
|
19751
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
19752
19737
|
)
|
|
19753
19738
|
| undefined
|
|
19754
19739
|
/** Array of device types by which to filter devices. */
|
|
@@ -19790,7 +19775,6 @@ export interface Routes {
|
|
|
19790
19775
|
| 'honeywell_resideo_thermostat'
|
|
19791
19776
|
)
|
|
19792
19777
|
| ('ios_phone' | 'android_phone')
|
|
19793
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
19794
19778
|
>
|
|
19795
19779
|
| undefined
|
|
19796
19780
|
/** Manufacturer by which to filter devices. */
|
|
@@ -19919,7 +19903,6 @@ export interface Routes {
|
|
|
19919
19903
|
| 'honeywell_resideo_thermostat'
|
|
19920
19904
|
)
|
|
19921
19905
|
| ('ios_phone' | 'android_phone')
|
|
19922
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
19923
19906
|
/** Optional nickname to describe the device, settable through Seam */
|
|
19924
19907
|
nickname?: string | undefined
|
|
19925
19908
|
/** 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. */
|
|
@@ -20615,7 +20598,6 @@ export interface Routes {
|
|
|
20615
20598
|
| 'honeywell_resideo_thermostat'
|
|
20616
20599
|
)
|
|
20617
20600
|
| ('ios_phone' | 'android_phone')
|
|
20618
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
20619
20601
|
/** Optional nickname to describe the device, settable through Seam */
|
|
20620
20602
|
nickname?: string | undefined
|
|
20621
20603
|
/** 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. */
|
|
@@ -26582,7 +26564,6 @@ export interface Routes {
|
|
|
26582
26564
|
| 'honeywell_resideo_thermostat'
|
|
26583
26565
|
)
|
|
26584
26566
|
| ('ios_phone' | 'android_phone')
|
|
26585
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
26586
26567
|
/** Optional nickname to describe the device, settable through Seam */
|
|
26587
26568
|
nickname?: string | undefined
|
|
26588
26569
|
/** 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. */
|
|
@@ -29280,7 +29261,6 @@ export interface Routes {
|
|
|
29280
29261
|
| 'honeywell_resideo_thermostat'
|
|
29281
29262
|
)
|
|
29282
29263
|
| ('ios_phone' | 'android_phone')
|
|
29283
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
29284
29264
|
)
|
|
29285
29265
|
| undefined
|
|
29286
29266
|
/** Array of device types by which to filter devices. */
|
|
@@ -29322,7 +29302,6 @@ export interface Routes {
|
|
|
29322
29302
|
| 'honeywell_resideo_thermostat'
|
|
29323
29303
|
)
|
|
29324
29304
|
| ('ios_phone' | 'android_phone')
|
|
29325
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
29326
29305
|
>
|
|
29327
29306
|
| undefined
|
|
29328
29307
|
/** Manufacturer by which to filter devices. */
|
|
@@ -29451,7 +29430,6 @@ export interface Routes {
|
|
|
29451
29430
|
| 'honeywell_resideo_thermostat'
|
|
29452
29431
|
)
|
|
29453
29432
|
| ('ios_phone' | 'android_phone')
|
|
29454
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
29455
29433
|
/** Optional nickname to describe the device, settable through Seam */
|
|
29456
29434
|
nickname?: string | undefined
|
|
29457
29435
|
/** 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. */
|
|
@@ -30147,7 +30125,6 @@ export interface Routes {
|
|
|
30147
30125
|
| 'honeywell_resideo_thermostat'
|
|
30148
30126
|
)
|
|
30149
30127
|
| ('ios_phone' | 'android_phone')
|
|
30150
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
30151
30128
|
/** Optional nickname to describe the device, settable through Seam */
|
|
30152
30129
|
nickname?: string | undefined
|
|
30153
30130
|
/** 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. */
|
|
@@ -34308,7 +34285,6 @@ export interface Routes {
|
|
|
34308
34285
|
| 'honeywell_resideo_thermostat'
|
|
34309
34286
|
)
|
|
34310
34287
|
| ('ios_phone' | 'android_phone')
|
|
34311
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
34312
34288
|
/** Optional nickname to describe the device, settable through Seam */
|
|
34313
34289
|
nickname?: string | undefined
|
|
34314
34290
|
/** 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. */
|
|
@@ -35006,7 +34982,6 @@ export interface Routes {
|
|
|
35006
34982
|
| 'honeywell_resideo_thermostat'
|
|
35007
34983
|
)
|
|
35008
34984
|
| ('ios_phone' | 'android_phone')
|
|
35009
|
-
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
35010
34985
|
/** Optional nickname to describe the device, settable through Seam */
|
|
35011
34986
|
nickname?: string | undefined
|
|
35012
34987
|
/** 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. */
|
|
@@ -35862,7 +35837,7 @@ export interface Routes {
|
|
|
35862
35837
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
35863
35838
|
starts_at: string
|
|
35864
35839
|
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
35865
|
-
ends_at: string
|
|
35840
|
+
ends_at: string | null
|
|
35866
35841
|
}
|
|
35867
35842
|
| undefined
|
|
35868
35843
|
/** ID of the user identity associated with the `acs_user`. */
|