@seamapi/types 1.242.1 → 1.243.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 +106 -124
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +427 -273
- package/lib/seam/connect/models/acs/acs-user.d.ts +45 -100
- package/lib/seam/connect/models/acs/acs-user.js +4 -8
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +78 -0
- package/lib/seam/connect/models/devices/device-metadata.js +14 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +102 -0
- package/lib/seam/connect/models/devices/phone.d.ts +78 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +78 -0
- package/lib/seam/connect/openapi.d.ts +52 -138
- package/lib/seam/connect/openapi.js +86 -114
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +165 -63
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +4 -8
- package/src/lib/seam/connect/models/devices/device-metadata.ts +16 -0
- package/src/lib/seam/connect/openapi.ts +86 -123
- package/src/lib/seam/connect/route-types.ts +189 -70
|
@@ -2604,13 +2604,6 @@ export interface Routes {
|
|
|
2604
2604
|
message: string
|
|
2605
2605
|
warning_code: 'being_deleted'
|
|
2606
2606
|
}
|
|
2607
|
-
| {
|
|
2608
|
-
/** Date and time at which Seam created the error. */
|
|
2609
|
-
created_at: string
|
|
2610
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2611
|
-
message: string
|
|
2612
|
-
warning_code: 'failed_to_update_on_acs_system'
|
|
2613
|
-
}
|
|
2614
2607
|
| {
|
|
2615
2608
|
created_at: string
|
|
2616
2609
|
message: string
|
|
@@ -2637,21 +2630,21 @@ export interface Routes {
|
|
|
2637
2630
|
created_at: string
|
|
2638
2631
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2639
2632
|
message: string
|
|
2640
|
-
|
|
2633
|
+
error_code: 'failed_to_create_on_acs_system'
|
|
2641
2634
|
}
|
|
2642
2635
|
| {
|
|
2643
2636
|
/** Date and time at which Seam created the error. */
|
|
2644
2637
|
created_at: string
|
|
2645
2638
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2646
2639
|
message: string
|
|
2647
|
-
|
|
2640
|
+
error_code: 'failed_to_update_on_acs_system'
|
|
2648
2641
|
}
|
|
2649
2642
|
| {
|
|
2650
2643
|
/** Date and time at which Seam created the error. */
|
|
2651
2644
|
created_at: string
|
|
2652
2645
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2653
2646
|
message: string
|
|
2654
|
-
|
|
2647
|
+
error_code: 'failed_to_delete_on_acs_system'
|
|
2655
2648
|
}
|
|
2656
2649
|
>
|
|
2657
2650
|
full_name?: string | undefined
|
|
@@ -4001,13 +3994,6 @@ export interface Routes {
|
|
|
4001
3994
|
message: string
|
|
4002
3995
|
warning_code: 'being_deleted'
|
|
4003
3996
|
}
|
|
4004
|
-
| {
|
|
4005
|
-
/** Date and time at which Seam created the error. */
|
|
4006
|
-
created_at: string
|
|
4007
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4008
|
-
message: string
|
|
4009
|
-
warning_code: 'failed_to_update_on_acs_system'
|
|
4010
|
-
}
|
|
4011
3997
|
| {
|
|
4012
3998
|
created_at: string
|
|
4013
3999
|
message: string
|
|
@@ -4034,21 +4020,21 @@ export interface Routes {
|
|
|
4034
4020
|
created_at: string
|
|
4035
4021
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4036
4022
|
message: string
|
|
4037
|
-
|
|
4023
|
+
error_code: 'failed_to_create_on_acs_system'
|
|
4038
4024
|
}
|
|
4039
4025
|
| {
|
|
4040
4026
|
/** Date and time at which Seam created the error. */
|
|
4041
4027
|
created_at: string
|
|
4042
4028
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4043
4029
|
message: string
|
|
4044
|
-
|
|
4030
|
+
error_code: 'failed_to_update_on_acs_system'
|
|
4045
4031
|
}
|
|
4046
4032
|
| {
|
|
4047
4033
|
/** Date and time at which Seam created the error. */
|
|
4048
4034
|
created_at: string
|
|
4049
4035
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4050
4036
|
message: string
|
|
4051
|
-
|
|
4037
|
+
error_code: 'failed_to_delete_on_acs_system'
|
|
4052
4038
|
}
|
|
4053
4039
|
>
|
|
4054
4040
|
full_name?: string | undefined
|
|
@@ -4118,13 +4104,6 @@ export interface Routes {
|
|
|
4118
4104
|
message: string
|
|
4119
4105
|
warning_code: 'being_deleted'
|
|
4120
4106
|
}
|
|
4121
|
-
| {
|
|
4122
|
-
/** Date and time at which Seam created the error. */
|
|
4123
|
-
created_at: string
|
|
4124
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4125
|
-
message: string
|
|
4126
|
-
warning_code: 'failed_to_update_on_acs_system'
|
|
4127
|
-
}
|
|
4128
4107
|
| {
|
|
4129
4108
|
created_at: string
|
|
4130
4109
|
message: string
|
|
@@ -4151,21 +4130,21 @@ export interface Routes {
|
|
|
4151
4130
|
created_at: string
|
|
4152
4131
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4153
4132
|
message: string
|
|
4154
|
-
|
|
4133
|
+
error_code: 'failed_to_create_on_acs_system'
|
|
4155
4134
|
}
|
|
4156
4135
|
| {
|
|
4157
4136
|
/** Date and time at which Seam created the error. */
|
|
4158
4137
|
created_at: string
|
|
4159
4138
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4160
4139
|
message: string
|
|
4161
|
-
|
|
4140
|
+
error_code: 'failed_to_update_on_acs_system'
|
|
4162
4141
|
}
|
|
4163
4142
|
| {
|
|
4164
4143
|
/** Date and time at which Seam created the error. */
|
|
4165
4144
|
created_at: string
|
|
4166
4145
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4167
4146
|
message: string
|
|
4168
|
-
|
|
4147
|
+
error_code: 'failed_to_delete_on_acs_system'
|
|
4169
4148
|
}
|
|
4170
4149
|
>
|
|
4171
4150
|
full_name?: string | undefined
|
|
@@ -4229,13 +4208,6 @@ export interface Routes {
|
|
|
4229
4208
|
message: string
|
|
4230
4209
|
warning_code: 'being_deleted'
|
|
4231
4210
|
}
|
|
4232
|
-
| {
|
|
4233
|
-
/** Date and time at which Seam created the error. */
|
|
4234
|
-
created_at: string
|
|
4235
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4236
|
-
message: string
|
|
4237
|
-
warning_code: 'failed_to_update_on_acs_system'
|
|
4238
|
-
}
|
|
4239
4211
|
| {
|
|
4240
4212
|
created_at: string
|
|
4241
4213
|
message: string
|
|
@@ -4262,21 +4234,21 @@ export interface Routes {
|
|
|
4262
4234
|
created_at: string
|
|
4263
4235
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4264
4236
|
message: string
|
|
4265
|
-
|
|
4237
|
+
error_code: 'failed_to_create_on_acs_system'
|
|
4266
4238
|
}
|
|
4267
4239
|
| {
|
|
4268
4240
|
/** Date and time at which Seam created the error. */
|
|
4269
4241
|
created_at: string
|
|
4270
4242
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4271
4243
|
message: string
|
|
4272
|
-
|
|
4244
|
+
error_code: 'failed_to_update_on_acs_system'
|
|
4273
4245
|
}
|
|
4274
4246
|
| {
|
|
4275
4247
|
/** Date and time at which Seam created the error. */
|
|
4276
4248
|
created_at: string
|
|
4277
4249
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4278
4250
|
message: string
|
|
4279
|
-
|
|
4251
|
+
error_code: 'failed_to_delete_on_acs_system'
|
|
4280
4252
|
}
|
|
4281
4253
|
>
|
|
4282
4254
|
full_name?: string | undefined
|
|
@@ -4416,13 +4388,6 @@ export interface Routes {
|
|
|
4416
4388
|
message: string
|
|
4417
4389
|
warning_code: 'being_deleted'
|
|
4418
4390
|
}
|
|
4419
|
-
| {
|
|
4420
|
-
/** Date and time at which Seam created the error. */
|
|
4421
|
-
created_at: string
|
|
4422
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4423
|
-
message: string
|
|
4424
|
-
warning_code: 'failed_to_update_on_acs_system'
|
|
4425
|
-
}
|
|
4426
4391
|
| {
|
|
4427
4392
|
created_at: string
|
|
4428
4393
|
message: string
|
|
@@ -4449,21 +4414,21 @@ export interface Routes {
|
|
|
4449
4414
|
created_at: string
|
|
4450
4415
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4451
4416
|
message: string
|
|
4452
|
-
|
|
4417
|
+
error_code: 'failed_to_create_on_acs_system'
|
|
4453
4418
|
}
|
|
4454
4419
|
| {
|
|
4455
4420
|
/** Date and time at which Seam created the error. */
|
|
4456
4421
|
created_at: string
|
|
4457
4422
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4458
4423
|
message: string
|
|
4459
|
-
|
|
4424
|
+
error_code: 'failed_to_update_on_acs_system'
|
|
4460
4425
|
}
|
|
4461
4426
|
| {
|
|
4462
4427
|
/** Date and time at which Seam created the error. */
|
|
4463
4428
|
created_at: string
|
|
4464
4429
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4465
4430
|
message: string
|
|
4466
|
-
|
|
4431
|
+
error_code: 'failed_to_delete_on_acs_system'
|
|
4467
4432
|
}
|
|
4468
4433
|
>
|
|
4469
4434
|
full_name?: string | undefined
|
|
@@ -4526,13 +4491,6 @@ export interface Routes {
|
|
|
4526
4491
|
message: string
|
|
4527
4492
|
warning_code: 'being_deleted'
|
|
4528
4493
|
}
|
|
4529
|
-
| {
|
|
4530
|
-
/** Date and time at which Seam created the error. */
|
|
4531
|
-
created_at: string
|
|
4532
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4533
|
-
message: string
|
|
4534
|
-
warning_code: 'failed_to_update_on_acs_system'
|
|
4535
|
-
}
|
|
4536
4494
|
| {
|
|
4537
4495
|
created_at: string
|
|
4538
4496
|
message: string
|
|
@@ -4559,21 +4517,21 @@ export interface Routes {
|
|
|
4559
4517
|
created_at: string
|
|
4560
4518
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4561
4519
|
message: string
|
|
4562
|
-
|
|
4520
|
+
error_code: 'failed_to_create_on_acs_system'
|
|
4563
4521
|
}
|
|
4564
4522
|
| {
|
|
4565
4523
|
/** Date and time at which Seam created the error. */
|
|
4566
4524
|
created_at: string
|
|
4567
4525
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4568
4526
|
message: string
|
|
4569
|
-
|
|
4527
|
+
error_code: 'failed_to_update_on_acs_system'
|
|
4570
4528
|
}
|
|
4571
4529
|
| {
|
|
4572
4530
|
/** Date and time at which Seam created the error. */
|
|
4573
4531
|
created_at: string
|
|
4574
4532
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4575
4533
|
message: string
|
|
4576
|
-
|
|
4534
|
+
error_code: 'failed_to_delete_on_acs_system'
|
|
4577
4535
|
}
|
|
4578
4536
|
>
|
|
4579
4537
|
full_name?: string | undefined
|
|
@@ -6301,6 +6259,20 @@ export interface Routes {
|
|
|
6301
6259
|
lock_id: number
|
|
6302
6260
|
lock_alias: string
|
|
6303
6261
|
feature_value: string
|
|
6262
|
+
features: {
|
|
6263
|
+
passcode: boolean
|
|
6264
|
+
passcode_management: boolean
|
|
6265
|
+
unlock_via_gateway: boolean
|
|
6266
|
+
lock_command: boolean
|
|
6267
|
+
incomplete_keyboard_passcode: boolean
|
|
6268
|
+
}
|
|
6269
|
+
has_gateway?: boolean | undefined
|
|
6270
|
+
wireless_keypads?:
|
|
6271
|
+
| Array<{
|
|
6272
|
+
wireless_keypad_id: number
|
|
6273
|
+
wireless_keypad_name: string
|
|
6274
|
+
}>
|
|
6275
|
+
| undefined
|
|
6304
6276
|
}
|
|
6305
6277
|
| undefined
|
|
6306
6278
|
seam_bridge_metadata?:
|
|
@@ -7046,6 +7018,20 @@ export interface Routes {
|
|
|
7046
7018
|
lock_id: number
|
|
7047
7019
|
lock_alias: string
|
|
7048
7020
|
feature_value: string
|
|
7021
|
+
features: {
|
|
7022
|
+
passcode: boolean
|
|
7023
|
+
passcode_management: boolean
|
|
7024
|
+
unlock_via_gateway: boolean
|
|
7025
|
+
lock_command: boolean
|
|
7026
|
+
incomplete_keyboard_passcode: boolean
|
|
7027
|
+
}
|
|
7028
|
+
has_gateway?: boolean | undefined
|
|
7029
|
+
wireless_keypads?:
|
|
7030
|
+
| Array<{
|
|
7031
|
+
wireless_keypad_id: number
|
|
7032
|
+
wireless_keypad_name: string
|
|
7033
|
+
}>
|
|
7034
|
+
| undefined
|
|
7049
7035
|
}
|
|
7050
7036
|
| undefined
|
|
7051
7037
|
seam_bridge_metadata?:
|
|
@@ -8457,6 +8443,20 @@ export interface Routes {
|
|
|
8457
8443
|
lock_id: number
|
|
8458
8444
|
lock_alias: string
|
|
8459
8445
|
feature_value: string
|
|
8446
|
+
features: {
|
|
8447
|
+
passcode: boolean
|
|
8448
|
+
passcode_management: boolean
|
|
8449
|
+
unlock_via_gateway: boolean
|
|
8450
|
+
lock_command: boolean
|
|
8451
|
+
incomplete_keyboard_passcode: boolean
|
|
8452
|
+
}
|
|
8453
|
+
has_gateway?: boolean | undefined
|
|
8454
|
+
wireless_keypads?:
|
|
8455
|
+
| Array<{
|
|
8456
|
+
wireless_keypad_id: number
|
|
8457
|
+
wireless_keypad_name: string
|
|
8458
|
+
}>
|
|
8459
|
+
| undefined
|
|
8460
8460
|
}
|
|
8461
8461
|
| undefined
|
|
8462
8462
|
seam_bridge_metadata?:
|
|
@@ -9036,6 +9036,20 @@ export interface Routes {
|
|
|
9036
9036
|
lock_id: number
|
|
9037
9037
|
lock_alias: string
|
|
9038
9038
|
feature_value: string
|
|
9039
|
+
features: {
|
|
9040
|
+
passcode: boolean
|
|
9041
|
+
passcode_management: boolean
|
|
9042
|
+
unlock_via_gateway: boolean
|
|
9043
|
+
lock_command: boolean
|
|
9044
|
+
incomplete_keyboard_passcode: boolean
|
|
9045
|
+
}
|
|
9046
|
+
has_gateway?: boolean | undefined
|
|
9047
|
+
wireless_keypads?:
|
|
9048
|
+
| Array<{
|
|
9049
|
+
wireless_keypad_id: number
|
|
9050
|
+
wireless_keypad_name: string
|
|
9051
|
+
}>
|
|
9052
|
+
| undefined
|
|
9039
9053
|
}
|
|
9040
9054
|
| undefined
|
|
9041
9055
|
seam_bridge_metadata?:
|
|
@@ -9781,6 +9795,20 @@ export interface Routes {
|
|
|
9781
9795
|
lock_id: number
|
|
9782
9796
|
lock_alias: string
|
|
9783
9797
|
feature_value: string
|
|
9798
|
+
features: {
|
|
9799
|
+
passcode: boolean
|
|
9800
|
+
passcode_management: boolean
|
|
9801
|
+
unlock_via_gateway: boolean
|
|
9802
|
+
lock_command: boolean
|
|
9803
|
+
incomplete_keyboard_passcode: boolean
|
|
9804
|
+
}
|
|
9805
|
+
has_gateway?: boolean | undefined
|
|
9806
|
+
wireless_keypads?:
|
|
9807
|
+
| Array<{
|
|
9808
|
+
wireless_keypad_id: number
|
|
9809
|
+
wireless_keypad_name: string
|
|
9810
|
+
}>
|
|
9811
|
+
| undefined
|
|
9784
9812
|
}
|
|
9785
9813
|
| undefined
|
|
9786
9814
|
seam_bridge_metadata?:
|
|
@@ -10360,6 +10388,20 @@ export interface Routes {
|
|
|
10360
10388
|
lock_id: number
|
|
10361
10389
|
lock_alias: string
|
|
10362
10390
|
feature_value: string
|
|
10391
|
+
features: {
|
|
10392
|
+
passcode: boolean
|
|
10393
|
+
passcode_management: boolean
|
|
10394
|
+
unlock_via_gateway: boolean
|
|
10395
|
+
lock_command: boolean
|
|
10396
|
+
incomplete_keyboard_passcode: boolean
|
|
10397
|
+
}
|
|
10398
|
+
has_gateway?: boolean | undefined
|
|
10399
|
+
wireless_keypads?:
|
|
10400
|
+
| Array<{
|
|
10401
|
+
wireless_keypad_id: number
|
|
10402
|
+
wireless_keypad_name: string
|
|
10403
|
+
}>
|
|
10404
|
+
| undefined
|
|
10363
10405
|
}
|
|
10364
10406
|
| undefined
|
|
10365
10407
|
seam_bridge_metadata?:
|
|
@@ -12031,6 +12073,20 @@ export interface Routes {
|
|
|
12031
12073
|
lock_id: number
|
|
12032
12074
|
lock_alias: string
|
|
12033
12075
|
feature_value: string
|
|
12076
|
+
features: {
|
|
12077
|
+
passcode: boolean
|
|
12078
|
+
passcode_management: boolean
|
|
12079
|
+
unlock_via_gateway: boolean
|
|
12080
|
+
lock_command: boolean
|
|
12081
|
+
incomplete_keyboard_passcode: boolean
|
|
12082
|
+
}
|
|
12083
|
+
has_gateway?: boolean | undefined
|
|
12084
|
+
wireless_keypads?:
|
|
12085
|
+
| Array<{
|
|
12086
|
+
wireless_keypad_id: number
|
|
12087
|
+
wireless_keypad_name: string
|
|
12088
|
+
}>
|
|
12089
|
+
| undefined
|
|
12034
12090
|
}
|
|
12035
12091
|
| undefined
|
|
12036
12092
|
seam_bridge_metadata?:
|
|
@@ -12610,6 +12666,20 @@ export interface Routes {
|
|
|
12610
12666
|
lock_id: number
|
|
12611
12667
|
lock_alias: string
|
|
12612
12668
|
feature_value: string
|
|
12669
|
+
features: {
|
|
12670
|
+
passcode: boolean
|
|
12671
|
+
passcode_management: boolean
|
|
12672
|
+
unlock_via_gateway: boolean
|
|
12673
|
+
lock_command: boolean
|
|
12674
|
+
incomplete_keyboard_passcode: boolean
|
|
12675
|
+
}
|
|
12676
|
+
has_gateway?: boolean | undefined
|
|
12677
|
+
wireless_keypads?:
|
|
12678
|
+
| Array<{
|
|
12679
|
+
wireless_keypad_id: number
|
|
12680
|
+
wireless_keypad_name: string
|
|
12681
|
+
}>
|
|
12682
|
+
| undefined
|
|
12613
12683
|
}
|
|
12614
12684
|
| undefined
|
|
12615
12685
|
seam_bridge_metadata?:
|
|
@@ -15751,6 +15821,20 @@ export interface Routes {
|
|
|
15751
15821
|
lock_id: number
|
|
15752
15822
|
lock_alias: string
|
|
15753
15823
|
feature_value: string
|
|
15824
|
+
features: {
|
|
15825
|
+
passcode: boolean
|
|
15826
|
+
passcode_management: boolean
|
|
15827
|
+
unlock_via_gateway: boolean
|
|
15828
|
+
lock_command: boolean
|
|
15829
|
+
incomplete_keyboard_passcode: boolean
|
|
15830
|
+
}
|
|
15831
|
+
has_gateway?: boolean | undefined
|
|
15832
|
+
wireless_keypads?:
|
|
15833
|
+
| Array<{
|
|
15834
|
+
wireless_keypad_id: number
|
|
15835
|
+
wireless_keypad_name: string
|
|
15836
|
+
}>
|
|
15837
|
+
| undefined
|
|
15754
15838
|
}
|
|
15755
15839
|
| undefined
|
|
15756
15840
|
seam_bridge_metadata?:
|
|
@@ -17394,6 +17478,20 @@ export interface Routes {
|
|
|
17394
17478
|
lock_id: number
|
|
17395
17479
|
lock_alias: string
|
|
17396
17480
|
feature_value: string
|
|
17481
|
+
features: {
|
|
17482
|
+
passcode: boolean
|
|
17483
|
+
passcode_management: boolean
|
|
17484
|
+
unlock_via_gateway: boolean
|
|
17485
|
+
lock_command: boolean
|
|
17486
|
+
incomplete_keyboard_passcode: boolean
|
|
17487
|
+
}
|
|
17488
|
+
has_gateway?: boolean | undefined
|
|
17489
|
+
wireless_keypads?:
|
|
17490
|
+
| Array<{
|
|
17491
|
+
wireless_keypad_id: number
|
|
17492
|
+
wireless_keypad_name: string
|
|
17493
|
+
}>
|
|
17494
|
+
| undefined
|
|
17397
17495
|
}
|
|
17398
17496
|
| undefined
|
|
17399
17497
|
seam_bridge_metadata?:
|
|
@@ -19227,6 +19325,20 @@ export interface Routes {
|
|
|
19227
19325
|
lock_id: number
|
|
19228
19326
|
lock_alias: string
|
|
19229
19327
|
feature_value: string
|
|
19328
|
+
features: {
|
|
19329
|
+
passcode: boolean
|
|
19330
|
+
passcode_management: boolean
|
|
19331
|
+
unlock_via_gateway: boolean
|
|
19332
|
+
lock_command: boolean
|
|
19333
|
+
incomplete_keyboard_passcode: boolean
|
|
19334
|
+
}
|
|
19335
|
+
has_gateway?: boolean | undefined
|
|
19336
|
+
wireless_keypads?:
|
|
19337
|
+
| Array<{
|
|
19338
|
+
wireless_keypad_id: number
|
|
19339
|
+
wireless_keypad_name: string
|
|
19340
|
+
}>
|
|
19341
|
+
| undefined
|
|
19230
19342
|
}
|
|
19231
19343
|
| undefined
|
|
19232
19344
|
seam_bridge_metadata?:
|
|
@@ -19808,6 +19920,20 @@ export interface Routes {
|
|
|
19808
19920
|
lock_id: number
|
|
19809
19921
|
lock_alias: string
|
|
19810
19922
|
feature_value: string
|
|
19923
|
+
features: {
|
|
19924
|
+
passcode: boolean
|
|
19925
|
+
passcode_management: boolean
|
|
19926
|
+
unlock_via_gateway: boolean
|
|
19927
|
+
lock_command: boolean
|
|
19928
|
+
incomplete_keyboard_passcode: boolean
|
|
19929
|
+
}
|
|
19930
|
+
has_gateway?: boolean | undefined
|
|
19931
|
+
wireless_keypads?:
|
|
19932
|
+
| Array<{
|
|
19933
|
+
wireless_keypad_id: number
|
|
19934
|
+
wireless_keypad_name: string
|
|
19935
|
+
}>
|
|
19936
|
+
| undefined
|
|
19811
19937
|
}
|
|
19812
19938
|
| undefined
|
|
19813
19939
|
seam_bridge_metadata?:
|
|
@@ -20270,13 +20396,6 @@ export interface Routes {
|
|
|
20270
20396
|
message: string
|
|
20271
20397
|
warning_code: 'being_deleted'
|
|
20272
20398
|
}
|
|
20273
|
-
| {
|
|
20274
|
-
/** Date and time at which Seam created the error. */
|
|
20275
|
-
created_at: string
|
|
20276
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20277
|
-
message: string
|
|
20278
|
-
warning_code: 'failed_to_update_on_acs_system'
|
|
20279
|
-
}
|
|
20280
20399
|
| {
|
|
20281
20400
|
created_at: string
|
|
20282
20401
|
message: string
|
|
@@ -20303,21 +20422,21 @@ export interface Routes {
|
|
|
20303
20422
|
created_at: string
|
|
20304
20423
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20305
20424
|
message: string
|
|
20306
|
-
|
|
20425
|
+
error_code: 'failed_to_create_on_acs_system'
|
|
20307
20426
|
}
|
|
20308
20427
|
| {
|
|
20309
20428
|
/** Date and time at which Seam created the error. */
|
|
20310
20429
|
created_at: string
|
|
20311
20430
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20312
20431
|
message: string
|
|
20313
|
-
|
|
20432
|
+
error_code: 'failed_to_update_on_acs_system'
|
|
20314
20433
|
}
|
|
20315
20434
|
| {
|
|
20316
20435
|
/** Date and time at which Seam created the error. */
|
|
20317
20436
|
created_at: string
|
|
20318
20437
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20319
20438
|
message: string
|
|
20320
|
-
|
|
20439
|
+
error_code: 'failed_to_delete_on_acs_system'
|
|
20321
20440
|
}
|
|
20322
20441
|
>
|
|
20323
20442
|
full_name?: string | undefined
|