@seamapi/types 1.186.0 → 1.187.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 +338 -16
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +685 -52
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +0 -17
- package/lib/seam/connect/models/acs/acs-credential.js +1 -6
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +36 -53
- package/lib/seam/connect/models/acs/acs-entrance.js +5 -31
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +1 -2
- package/lib/seam/connect/models/acs/acs-system.js +9 -10
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/index.js +1 -0
- package/lib/seam/connect/models/acs/index.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +2 -0
- package/lib/seam/connect/models/acs/metadata/index.js +3 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/latch.d.ts +18 -0
- package/lib/seam/connect/models/acs/metadata/latch.js +8 -0
- package/lib/seam/connect/models/acs/metadata/latch.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +47 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js +24 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js.map +1 -0
- package/lib/seam/connect/models/devices/managed-device.d.ts +12 -0
- package/lib/seam/connect/models/devices/managed-device.js +2 -0
- package/lib/seam/connect/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +6 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +6 -0
- package/lib/seam/connect/openapi.d.ts +143 -2
- package/lib/seam/connect/openapi.js +110 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +98 -48
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +5 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -11
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +8 -37
- package/src/lib/seam/connect/models/acs/acs-system.ts +11 -11
- package/src/lib/seam/connect/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/latch.ts +12 -0
- package/src/lib/seam/connect/models/acs/metadata/visionline.ts +35 -0
- package/src/lib/seam/connect/models/devices/managed-device.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +110 -7
- package/src/lib/seam/connect/route-types.ts +174 -92
- package/src/lib/seam/connect/schemas.ts +5 -0
|
@@ -332,7 +332,6 @@ export default {
|
|
|
332
332
|
type: 'array',
|
|
333
333
|
},
|
|
334
334
|
latch_metadata: {
|
|
335
|
-
nullable: true,
|
|
336
335
|
properties: {
|
|
337
336
|
accessibility_type: { type: 'string' },
|
|
338
337
|
door_name: { type: 'string' },
|
|
@@ -348,7 +347,6 @@ export default {
|
|
|
348
347
|
type: 'object',
|
|
349
348
|
},
|
|
350
349
|
visionline_metadata: {
|
|
351
|
-
nullable: true,
|
|
352
350
|
properties: {
|
|
353
351
|
door_category: {
|
|
354
352
|
enum: [
|
|
@@ -384,13 +382,11 @@ export default {
|
|
|
384
382
|
},
|
|
385
383
|
},
|
|
386
384
|
required: [
|
|
387
|
-
'acs_entrance_id',
|
|
388
|
-
'display_name',
|
|
389
385
|
'acs_system_id',
|
|
386
|
+
'acs_entrance_id',
|
|
390
387
|
'created_at',
|
|
391
|
-
'
|
|
388
|
+
'display_name',
|
|
392
389
|
'errors',
|
|
393
|
-
'visionline_metadata',
|
|
394
390
|
],
|
|
395
391
|
type: 'object',
|
|
396
392
|
},
|
|
@@ -401,7 +397,10 @@ export default {
|
|
|
401
397
|
can_automate_enrollment: { type: 'boolean' },
|
|
402
398
|
can_create_acs_access_groups: { type: 'boolean' },
|
|
403
399
|
can_remove_acs_users_from_acs_access_groups: { type: 'boolean' },
|
|
404
|
-
connected_account_ids: {
|
|
400
|
+
connected_account_ids: {
|
|
401
|
+
items: { format: 'uuid', type: 'string' },
|
|
402
|
+
type: 'array',
|
|
403
|
+
},
|
|
405
404
|
created_at: { format: 'date-time', type: 'string' },
|
|
406
405
|
errors: {
|
|
407
406
|
items: {
|
|
@@ -1819,6 +1818,8 @@ export default {
|
|
|
1819
1818
|
can_program_online_access_codes: { type: 'boolean' },
|
|
1820
1819
|
can_remotely_lock: { type: 'boolean' },
|
|
1821
1820
|
can_remotely_unlock: { type: 'boolean' },
|
|
1821
|
+
can_simulate_connection: { type: 'boolean' },
|
|
1822
|
+
can_simulate_disconnection: { type: 'boolean' },
|
|
1822
1823
|
can_simulate_removal: { type: 'boolean' },
|
|
1823
1824
|
capabilities_supported: {
|
|
1824
1825
|
description:
|
|
@@ -3244,6 +3245,8 @@ export default {
|
|
|
3244
3245
|
can_program_online_access_codes: { type: 'boolean' },
|
|
3245
3246
|
can_remotely_lock: { type: 'boolean' },
|
|
3246
3247
|
can_remotely_unlock: { type: 'boolean' },
|
|
3248
|
+
can_simulate_connection: { type: 'boolean' },
|
|
3249
|
+
can_simulate_disconnection: { type: 'boolean' },
|
|
3247
3250
|
can_simulate_removal: { type: 'boolean' },
|
|
3248
3251
|
capabilities_supported: {
|
|
3249
3252
|
description:
|
|
@@ -3471,6 +3474,8 @@ export default {
|
|
|
3471
3474
|
can_program_online_access_codes: { type: 'boolean' },
|
|
3472
3475
|
can_remotely_lock: { type: 'boolean' },
|
|
3473
3476
|
can_remotely_unlock: { type: 'boolean' },
|
|
3477
|
+
can_simulate_connection: { type: 'boolean' },
|
|
3478
|
+
can_simulate_disconnection: { type: 'boolean' },
|
|
3474
3479
|
can_simulate_removal: { type: 'boolean' },
|
|
3475
3480
|
capabilities_supported: {
|
|
3476
3481
|
description:
|
|
@@ -8313,6 +8318,8 @@ export default {
|
|
|
8313
8318
|
'can_program_offline_access_codes',
|
|
8314
8319
|
'can_program_online_access_codes',
|
|
8315
8320
|
'can_simulate_removal',
|
|
8321
|
+
'can_simulate_connection',
|
|
8322
|
+
'can_simulate_disconnection',
|
|
8316
8323
|
],
|
|
8317
8324
|
type: 'string',
|
|
8318
8325
|
},
|
|
@@ -8326,6 +8333,8 @@ export default {
|
|
|
8326
8333
|
'can_program_offline_access_codes',
|
|
8327
8334
|
'can_program_online_access_codes',
|
|
8328
8335
|
'can_simulate_removal',
|
|
8336
|
+
'can_simulate_connection',
|
|
8337
|
+
'can_simulate_disconnection',
|
|
8329
8338
|
],
|
|
8330
8339
|
type: 'string',
|
|
8331
8340
|
},
|
|
@@ -8472,6 +8481,88 @@ export default {
|
|
|
8472
8481
|
'x-fern-sdk-return-value': 'device_providers',
|
|
8473
8482
|
},
|
|
8474
8483
|
},
|
|
8484
|
+
'/devices/simulate/connect': {
|
|
8485
|
+
post: {
|
|
8486
|
+
operationId: 'devicesSimulateConnectPost',
|
|
8487
|
+
requestBody: {
|
|
8488
|
+
content: {
|
|
8489
|
+
'application/json': {
|
|
8490
|
+
schema: {
|
|
8491
|
+
properties: { device_id: { format: 'uuid', type: 'string' } },
|
|
8492
|
+
required: ['device_id'],
|
|
8493
|
+
type: 'object',
|
|
8494
|
+
},
|
|
8495
|
+
},
|
|
8496
|
+
},
|
|
8497
|
+
},
|
|
8498
|
+
responses: {
|
|
8499
|
+
200: {
|
|
8500
|
+
content: {
|
|
8501
|
+
'application/json': {
|
|
8502
|
+
schema: {
|
|
8503
|
+
properties: { ok: { type: 'boolean' } },
|
|
8504
|
+
required: ['ok'],
|
|
8505
|
+
type: 'object',
|
|
8506
|
+
},
|
|
8507
|
+
},
|
|
8508
|
+
},
|
|
8509
|
+
description: 'OK',
|
|
8510
|
+
},
|
|
8511
|
+
400: { description: 'Bad Request' },
|
|
8512
|
+
401: { description: 'Unauthorized' },
|
|
8513
|
+
},
|
|
8514
|
+
security: [
|
|
8515
|
+
{ api_key: [] },
|
|
8516
|
+
{ pat_with_workspace: [] },
|
|
8517
|
+
{ console_session: [] },
|
|
8518
|
+
],
|
|
8519
|
+
summary: '/devices/simulate/connect',
|
|
8520
|
+
tags: ['/devices'],
|
|
8521
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
8522
|
+
'x-fern-sdk-method-name': 'connect',
|
|
8523
|
+
},
|
|
8524
|
+
},
|
|
8525
|
+
'/devices/simulate/disconnect': {
|
|
8526
|
+
post: {
|
|
8527
|
+
operationId: 'devicesSimulateDisconnectPost',
|
|
8528
|
+
requestBody: {
|
|
8529
|
+
content: {
|
|
8530
|
+
'application/json': {
|
|
8531
|
+
schema: {
|
|
8532
|
+
properties: { device_id: { format: 'uuid', type: 'string' } },
|
|
8533
|
+
required: ['device_id'],
|
|
8534
|
+
type: 'object',
|
|
8535
|
+
},
|
|
8536
|
+
},
|
|
8537
|
+
},
|
|
8538
|
+
},
|
|
8539
|
+
responses: {
|
|
8540
|
+
200: {
|
|
8541
|
+
content: {
|
|
8542
|
+
'application/json': {
|
|
8543
|
+
schema: {
|
|
8544
|
+
properties: { ok: { type: 'boolean' } },
|
|
8545
|
+
required: ['ok'],
|
|
8546
|
+
type: 'object',
|
|
8547
|
+
},
|
|
8548
|
+
},
|
|
8549
|
+
},
|
|
8550
|
+
description: 'OK',
|
|
8551
|
+
},
|
|
8552
|
+
400: { description: 'Bad Request' },
|
|
8553
|
+
401: { description: 'Unauthorized' },
|
|
8554
|
+
},
|
|
8555
|
+
security: [
|
|
8556
|
+
{ api_key: [] },
|
|
8557
|
+
{ pat_with_workspace: [] },
|
|
8558
|
+
{ console_session: [] },
|
|
8559
|
+
],
|
|
8560
|
+
summary: '/devices/simulate/disconnect',
|
|
8561
|
+
tags: ['/devices'],
|
|
8562
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
8563
|
+
'x-fern-sdk-method-name': 'disconnect',
|
|
8564
|
+
},
|
|
8565
|
+
},
|
|
8475
8566
|
'/devices/simulate/remove': {
|
|
8476
8567
|
post: {
|
|
8477
8568
|
operationId: 'devicesSimulateRemovePost',
|
|
@@ -8705,6 +8796,8 @@ export default {
|
|
|
8705
8796
|
'can_program_offline_access_codes',
|
|
8706
8797
|
'can_program_online_access_codes',
|
|
8707
8798
|
'can_simulate_removal',
|
|
8799
|
+
'can_simulate_connection',
|
|
8800
|
+
'can_simulate_disconnection',
|
|
8708
8801
|
],
|
|
8709
8802
|
type: 'string',
|
|
8710
8803
|
},
|
|
@@ -8718,6 +8811,8 @@ export default {
|
|
|
8718
8811
|
'can_program_offline_access_codes',
|
|
8719
8812
|
'can_program_online_access_codes',
|
|
8720
8813
|
'can_simulate_removal',
|
|
8814
|
+
'can_simulate_connection',
|
|
8815
|
+
'can_simulate_disconnection',
|
|
8721
8816
|
],
|
|
8722
8817
|
type: 'string',
|
|
8723
8818
|
},
|
|
@@ -9451,6 +9546,8 @@ export default {
|
|
|
9451
9546
|
'can_program_offline_access_codes',
|
|
9452
9547
|
'can_program_online_access_codes',
|
|
9453
9548
|
'can_simulate_removal',
|
|
9549
|
+
'can_simulate_connection',
|
|
9550
|
+
'can_simulate_disconnection',
|
|
9454
9551
|
],
|
|
9455
9552
|
type: 'string',
|
|
9456
9553
|
},
|
|
@@ -9464,6 +9561,8 @@ export default {
|
|
|
9464
9561
|
'can_program_offline_access_codes',
|
|
9465
9562
|
'can_program_online_access_codes',
|
|
9466
9563
|
'can_simulate_removal',
|
|
9564
|
+
'can_simulate_connection',
|
|
9565
|
+
'can_simulate_disconnection',
|
|
9467
9566
|
],
|
|
9468
9567
|
type: 'string',
|
|
9469
9568
|
},
|
|
@@ -11155,6 +11254,8 @@ export default {
|
|
|
11155
11254
|
'can_program_offline_access_codes',
|
|
11156
11255
|
'can_program_online_access_codes',
|
|
11157
11256
|
'can_simulate_removal',
|
|
11257
|
+
'can_simulate_connection',
|
|
11258
|
+
'can_simulate_disconnection',
|
|
11158
11259
|
],
|
|
11159
11260
|
type: 'string',
|
|
11160
11261
|
},
|
|
@@ -11168,6 +11269,8 @@ export default {
|
|
|
11168
11269
|
'can_program_offline_access_codes',
|
|
11169
11270
|
'can_program_online_access_codes',
|
|
11170
11271
|
'can_simulate_removal',
|
|
11272
|
+
'can_simulate_connection',
|
|
11273
|
+
'can_simulate_disconnection',
|
|
11171
11274
|
],
|
|
11172
11275
|
type: 'string',
|
|
11173
11276
|
},
|
|
@@ -3542,35 +3542,39 @@ export interface Routes {
|
|
|
3542
3542
|
formData: {}
|
|
3543
3543
|
jsonResponse: {
|
|
3544
3544
|
acs_entrances: Array<{
|
|
3545
|
-
acs_entrance_id: string
|
|
3546
|
-
display_name: string
|
|
3547
3545
|
acs_system_id: string
|
|
3546
|
+
acs_entrance_id: string
|
|
3548
3547
|
created_at: string
|
|
3549
|
-
|
|
3550
|
-
accessibility_type: string
|
|
3551
|
-
door_name: string
|
|
3552
|
-
door_type: string
|
|
3553
|
-
is_connected: boolean
|
|
3554
|
-
} | null
|
|
3548
|
+
display_name: string
|
|
3555
3549
|
errors: Array<{
|
|
3556
3550
|
error_code: string
|
|
3557
3551
|
message: string
|
|
3558
3552
|
}>
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3553
|
+
latch_metadata?:
|
|
3554
|
+
| {
|
|
3555
|
+
accessibility_type: string
|
|
3556
|
+
door_name: string
|
|
3557
|
+
door_type: string
|
|
3558
|
+
is_connected: boolean
|
|
3559
|
+
}
|
|
3560
|
+
| undefined
|
|
3561
|
+
visionline_metadata?:
|
|
3562
|
+
| {
|
|
3563
|
+
door_name: string
|
|
3564
|
+
door_category:
|
|
3565
|
+
| 'entrance'
|
|
3566
|
+
| 'guest'
|
|
3567
|
+
| 'elevator reader'
|
|
3568
|
+
| 'common'
|
|
3569
|
+
| 'common (PMS)'
|
|
3570
|
+
profiles?:
|
|
3571
|
+
| Array<{
|
|
3572
|
+
visionline_door_profile_id: string
|
|
3573
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch'
|
|
3574
|
+
}>
|
|
3575
|
+
| undefined
|
|
3576
|
+
}
|
|
3577
|
+
| undefined
|
|
3574
3578
|
}>
|
|
3575
3579
|
}
|
|
3576
3580
|
}
|
|
@@ -3696,35 +3700,39 @@ export interface Routes {
|
|
|
3696
3700
|
formData: {}
|
|
3697
3701
|
jsonResponse: {
|
|
3698
3702
|
acs_entrance: {
|
|
3699
|
-
acs_entrance_id: string
|
|
3700
|
-
display_name: string
|
|
3701
3703
|
acs_system_id: string
|
|
3704
|
+
acs_entrance_id: string
|
|
3702
3705
|
created_at: string
|
|
3703
|
-
|
|
3704
|
-
accessibility_type: string
|
|
3705
|
-
door_name: string
|
|
3706
|
-
door_type: string
|
|
3707
|
-
is_connected: boolean
|
|
3708
|
-
} | null
|
|
3706
|
+
display_name: string
|
|
3709
3707
|
errors: Array<{
|
|
3710
3708
|
error_code: string
|
|
3711
3709
|
message: string
|
|
3712
3710
|
}>
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3711
|
+
latch_metadata?:
|
|
3712
|
+
| {
|
|
3713
|
+
accessibility_type: string
|
|
3714
|
+
door_name: string
|
|
3715
|
+
door_type: string
|
|
3716
|
+
is_connected: boolean
|
|
3717
|
+
}
|
|
3718
|
+
| undefined
|
|
3719
|
+
visionline_metadata?:
|
|
3720
|
+
| {
|
|
3721
|
+
door_name: string
|
|
3722
|
+
door_category:
|
|
3723
|
+
| 'entrance'
|
|
3724
|
+
| 'guest'
|
|
3725
|
+
| 'elevator reader'
|
|
3726
|
+
| 'common'
|
|
3727
|
+
| 'common (PMS)'
|
|
3728
|
+
profiles?:
|
|
3729
|
+
| Array<{
|
|
3730
|
+
visionline_door_profile_id: string
|
|
3731
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch'
|
|
3732
|
+
}>
|
|
3733
|
+
| undefined
|
|
3734
|
+
}
|
|
3735
|
+
| undefined
|
|
3728
3736
|
}
|
|
3729
3737
|
}
|
|
3730
3738
|
}
|
|
@@ -3752,35 +3760,39 @@ export interface Routes {
|
|
|
3752
3760
|
formData: {}
|
|
3753
3761
|
jsonResponse: {
|
|
3754
3762
|
acs_entrances: Array<{
|
|
3755
|
-
acs_entrance_id: string
|
|
3756
|
-
display_name: string
|
|
3757
3763
|
acs_system_id: string
|
|
3764
|
+
acs_entrance_id: string
|
|
3758
3765
|
created_at: string
|
|
3759
|
-
|
|
3760
|
-
accessibility_type: string
|
|
3761
|
-
door_name: string
|
|
3762
|
-
door_type: string
|
|
3763
|
-
is_connected: boolean
|
|
3764
|
-
} | null
|
|
3766
|
+
display_name: string
|
|
3765
3767
|
errors: Array<{
|
|
3766
3768
|
error_code: string
|
|
3767
3769
|
message: string
|
|
3768
3770
|
}>
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3771
|
+
latch_metadata?:
|
|
3772
|
+
| {
|
|
3773
|
+
accessibility_type: string
|
|
3774
|
+
door_name: string
|
|
3775
|
+
door_type: string
|
|
3776
|
+
is_connected: boolean
|
|
3777
|
+
}
|
|
3778
|
+
| undefined
|
|
3779
|
+
visionline_metadata?:
|
|
3780
|
+
| {
|
|
3781
|
+
door_name: string
|
|
3782
|
+
door_category:
|
|
3783
|
+
| 'entrance'
|
|
3784
|
+
| 'guest'
|
|
3785
|
+
| 'elevator reader'
|
|
3786
|
+
| 'common'
|
|
3787
|
+
| 'common (PMS)'
|
|
3788
|
+
profiles?:
|
|
3789
|
+
| Array<{
|
|
3790
|
+
visionline_door_profile_id: string
|
|
3791
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch'
|
|
3792
|
+
}>
|
|
3793
|
+
| undefined
|
|
3794
|
+
}
|
|
3795
|
+
| undefined
|
|
3784
3796
|
}>
|
|
3785
3797
|
}
|
|
3786
3798
|
}
|
|
@@ -4265,35 +4277,39 @@ export interface Routes {
|
|
|
4265
4277
|
formData: {}
|
|
4266
4278
|
jsonResponse: {
|
|
4267
4279
|
acs_entrances: Array<{
|
|
4268
|
-
acs_entrance_id: string
|
|
4269
|
-
display_name: string
|
|
4270
4280
|
acs_system_id: string
|
|
4281
|
+
acs_entrance_id: string
|
|
4271
4282
|
created_at: string
|
|
4272
|
-
|
|
4273
|
-
accessibility_type: string
|
|
4274
|
-
door_name: string
|
|
4275
|
-
door_type: string
|
|
4276
|
-
is_connected: boolean
|
|
4277
|
-
} | null
|
|
4283
|
+
display_name: string
|
|
4278
4284
|
errors: Array<{
|
|
4279
4285
|
error_code: string
|
|
4280
4286
|
message: string
|
|
4281
4287
|
}>
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
|
|
4288
|
+
latch_metadata?:
|
|
4289
|
+
| {
|
|
4290
|
+
accessibility_type: string
|
|
4291
|
+
door_name: string
|
|
4292
|
+
door_type: string
|
|
4293
|
+
is_connected: boolean
|
|
4294
|
+
}
|
|
4295
|
+
| undefined
|
|
4296
|
+
visionline_metadata?:
|
|
4297
|
+
| {
|
|
4298
|
+
door_name: string
|
|
4299
|
+
door_category:
|
|
4300
|
+
| 'entrance'
|
|
4301
|
+
| 'guest'
|
|
4302
|
+
| 'elevator reader'
|
|
4303
|
+
| 'common'
|
|
4304
|
+
| 'common (PMS)'
|
|
4305
|
+
profiles?:
|
|
4306
|
+
| Array<{
|
|
4307
|
+
visionline_door_profile_id: string
|
|
4308
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch'
|
|
4309
|
+
}>
|
|
4310
|
+
| undefined
|
|
4311
|
+
}
|
|
4312
|
+
| undefined
|
|
4297
4313
|
}>
|
|
4298
4314
|
}
|
|
4299
4315
|
}
|
|
@@ -6886,6 +6902,8 @@ export interface Routes {
|
|
|
6886
6902
|
can_program_offline_access_codes?: boolean | undefined
|
|
6887
6903
|
can_program_online_access_codes?: boolean | undefined
|
|
6888
6904
|
can_simulate_removal?: boolean | undefined
|
|
6905
|
+
can_simulate_connection?: boolean | undefined
|
|
6906
|
+
can_simulate_disconnection?: boolean | undefined
|
|
6889
6907
|
}
|
|
6890
6908
|
}
|
|
6891
6909
|
}
|
|
@@ -7027,6 +7045,8 @@ export interface Routes {
|
|
|
7027
7045
|
| 'can_program_offline_access_codes'
|
|
7028
7046
|
| 'can_program_online_access_codes'
|
|
7029
7047
|
| 'can_simulate_removal'
|
|
7048
|
+
| 'can_simulate_connection'
|
|
7049
|
+
| 'can_simulate_disconnection'
|
|
7030
7050
|
>
|
|
7031
7051
|
| undefined
|
|
7032
7052
|
exclude_if?:
|
|
@@ -7036,6 +7056,8 @@ export interface Routes {
|
|
|
7036
7056
|
| 'can_program_offline_access_codes'
|
|
7037
7057
|
| 'can_program_online_access_codes'
|
|
7038
7058
|
| 'can_simulate_removal'
|
|
7059
|
+
| 'can_simulate_connection'
|
|
7060
|
+
| 'can_simulate_disconnection'
|
|
7039
7061
|
>
|
|
7040
7062
|
| undefined
|
|
7041
7063
|
}
|
|
@@ -7781,6 +7803,8 @@ export interface Routes {
|
|
|
7781
7803
|
can_program_offline_access_codes?: boolean | undefined
|
|
7782
7804
|
can_program_online_access_codes?: boolean | undefined
|
|
7783
7805
|
can_simulate_removal?: boolean | undefined
|
|
7806
|
+
can_simulate_connection?: boolean | undefined
|
|
7807
|
+
can_simulate_disconnection?: boolean | undefined
|
|
7784
7808
|
}>
|
|
7785
7809
|
}
|
|
7786
7810
|
}
|
|
@@ -7853,6 +7877,28 @@ export interface Routes {
|
|
|
7853
7877
|
}>
|
|
7854
7878
|
}
|
|
7855
7879
|
}
|
|
7880
|
+
'/devices/simulate/connect': {
|
|
7881
|
+
route: '/devices/simulate/connect'
|
|
7882
|
+
method: 'POST'
|
|
7883
|
+
queryParams: {}
|
|
7884
|
+
jsonBody: {
|
|
7885
|
+
device_id: string
|
|
7886
|
+
}
|
|
7887
|
+
commonParams: {}
|
|
7888
|
+
formData: {}
|
|
7889
|
+
jsonResponse: {}
|
|
7890
|
+
}
|
|
7891
|
+
'/devices/simulate/disconnect': {
|
|
7892
|
+
route: '/devices/simulate/disconnect'
|
|
7893
|
+
method: 'POST'
|
|
7894
|
+
queryParams: {}
|
|
7895
|
+
jsonBody: {
|
|
7896
|
+
device_id: string
|
|
7897
|
+
}
|
|
7898
|
+
commonParams: {}
|
|
7899
|
+
formData: {}
|
|
7900
|
+
jsonResponse: {}
|
|
7901
|
+
}
|
|
7856
7902
|
'/devices/simulate/remove': {
|
|
7857
7903
|
route: '/devices/simulate/remove'
|
|
7858
7904
|
method: 'DELETE' | 'POST'
|
|
@@ -8009,6 +8055,8 @@ export interface Routes {
|
|
|
8009
8055
|
can_program_offline_access_codes?: boolean | undefined
|
|
8010
8056
|
can_program_online_access_codes?: boolean | undefined
|
|
8011
8057
|
can_simulate_removal?: boolean | undefined
|
|
8058
|
+
can_simulate_connection?: boolean | undefined
|
|
8059
|
+
can_simulate_disconnection?: boolean | undefined
|
|
8012
8060
|
}
|
|
8013
8061
|
}
|
|
8014
8062
|
}
|
|
@@ -8150,6 +8198,8 @@ export interface Routes {
|
|
|
8150
8198
|
| 'can_program_offline_access_codes'
|
|
8151
8199
|
| 'can_program_online_access_codes'
|
|
8152
8200
|
| 'can_simulate_removal'
|
|
8201
|
+
| 'can_simulate_connection'
|
|
8202
|
+
| 'can_simulate_disconnection'
|
|
8153
8203
|
>
|
|
8154
8204
|
| undefined
|
|
8155
8205
|
exclude_if?:
|
|
@@ -8159,6 +8209,8 @@ export interface Routes {
|
|
|
8159
8209
|
| 'can_program_offline_access_codes'
|
|
8160
8210
|
| 'can_program_online_access_codes'
|
|
8161
8211
|
| 'can_simulate_removal'
|
|
8212
|
+
| 'can_simulate_connection'
|
|
8213
|
+
| 'can_simulate_disconnection'
|
|
8162
8214
|
>
|
|
8163
8215
|
| undefined
|
|
8164
8216
|
}
|
|
@@ -8298,6 +8350,8 @@ export interface Routes {
|
|
|
8298
8350
|
can_program_offline_access_codes?: boolean | undefined
|
|
8299
8351
|
can_program_online_access_codes?: boolean | undefined
|
|
8300
8352
|
can_simulate_removal?: boolean | undefined
|
|
8353
|
+
can_simulate_connection?: boolean | undefined
|
|
8354
|
+
can_simulate_disconnection?: boolean | undefined
|
|
8301
8355
|
}>
|
|
8302
8356
|
}
|
|
8303
8357
|
}
|
|
@@ -9271,6 +9325,8 @@ export interface Routes {
|
|
|
9271
9325
|
can_program_offline_access_codes?: boolean | undefined
|
|
9272
9326
|
can_program_online_access_codes?: boolean | undefined
|
|
9273
9327
|
can_simulate_removal?: boolean | undefined
|
|
9328
|
+
can_simulate_connection?: boolean | undefined
|
|
9329
|
+
can_simulate_disconnection?: boolean | undefined
|
|
9274
9330
|
}
|
|
9275
9331
|
device: {
|
|
9276
9332
|
/** Unique identifier for the device. */
|
|
@@ -10012,6 +10068,8 @@ export interface Routes {
|
|
|
10012
10068
|
can_program_offline_access_codes?: boolean | undefined
|
|
10013
10069
|
can_program_online_access_codes?: boolean | undefined
|
|
10014
10070
|
can_simulate_removal?: boolean | undefined
|
|
10071
|
+
can_simulate_connection?: boolean | undefined
|
|
10072
|
+
can_simulate_disconnection?: boolean | undefined
|
|
10015
10073
|
}
|
|
10016
10074
|
}
|
|
10017
10075
|
}
|
|
@@ -10153,6 +10211,8 @@ export interface Routes {
|
|
|
10153
10211
|
| 'can_program_offline_access_codes'
|
|
10154
10212
|
| 'can_program_online_access_codes'
|
|
10155
10213
|
| 'can_simulate_removal'
|
|
10214
|
+
| 'can_simulate_connection'
|
|
10215
|
+
| 'can_simulate_disconnection'
|
|
10156
10216
|
>
|
|
10157
10217
|
| undefined
|
|
10158
10218
|
exclude_if?:
|
|
@@ -10162,6 +10222,8 @@ export interface Routes {
|
|
|
10162
10222
|
| 'can_program_offline_access_codes'
|
|
10163
10223
|
| 'can_program_online_access_codes'
|
|
10164
10224
|
| 'can_simulate_removal'
|
|
10225
|
+
| 'can_simulate_connection'
|
|
10226
|
+
| 'can_simulate_disconnection'
|
|
10165
10227
|
>
|
|
10166
10228
|
| undefined
|
|
10167
10229
|
}
|
|
@@ -10907,6 +10969,8 @@ export interface Routes {
|
|
|
10907
10969
|
can_program_offline_access_codes?: boolean | undefined
|
|
10908
10970
|
can_program_online_access_codes?: boolean | undefined
|
|
10909
10971
|
can_simulate_removal?: boolean | undefined
|
|
10972
|
+
can_simulate_connection?: boolean | undefined
|
|
10973
|
+
can_simulate_disconnection?: boolean | undefined
|
|
10910
10974
|
}>
|
|
10911
10975
|
devices: Array<{
|
|
10912
10976
|
/** Unique identifier for the device. */
|
|
@@ -11648,6 +11712,8 @@ export interface Routes {
|
|
|
11648
11712
|
can_program_offline_access_codes?: boolean | undefined
|
|
11649
11713
|
can_program_online_access_codes?: boolean | undefined
|
|
11650
11714
|
can_simulate_removal?: boolean | undefined
|
|
11715
|
+
can_simulate_connection?: boolean | undefined
|
|
11716
|
+
can_simulate_disconnection?: boolean | undefined
|
|
11651
11717
|
}>
|
|
11652
11718
|
}
|
|
11653
11719
|
}
|
|
@@ -15058,6 +15124,8 @@ export interface Routes {
|
|
|
15058
15124
|
can_program_offline_access_codes?: boolean | undefined
|
|
15059
15125
|
can_program_online_access_codes?: boolean | undefined
|
|
15060
15126
|
can_simulate_removal?: boolean | undefined
|
|
15127
|
+
can_simulate_connection?: boolean | undefined
|
|
15128
|
+
can_simulate_disconnection?: boolean | undefined
|
|
15061
15129
|
}>
|
|
15062
15130
|
}
|
|
15063
15131
|
}
|
|
@@ -15143,6 +15211,8 @@ export interface Routes {
|
|
|
15143
15211
|
can_program_offline_access_codes?: boolean | undefined
|
|
15144
15212
|
can_program_online_access_codes?: boolean | undefined
|
|
15145
15213
|
can_simulate_removal?: boolean | undefined
|
|
15214
|
+
can_simulate_connection?: boolean | undefined
|
|
15215
|
+
can_simulate_disconnection?: boolean | undefined
|
|
15146
15216
|
}
|
|
15147
15217
|
}
|
|
15148
15218
|
}
|
|
@@ -16704,6 +16774,8 @@ export interface Routes {
|
|
|
16704
16774
|
can_program_offline_access_codes?: boolean | undefined
|
|
16705
16775
|
can_program_online_access_codes?: boolean | undefined
|
|
16706
16776
|
can_simulate_removal?: boolean | undefined
|
|
16777
|
+
can_simulate_connection?: boolean | undefined
|
|
16778
|
+
can_simulate_disconnection?: boolean | undefined
|
|
16707
16779
|
}
|
|
16708
16780
|
}
|
|
16709
16781
|
}
|
|
@@ -18139,6 +18211,8 @@ export interface Routes {
|
|
|
18139
18211
|
| 'can_program_offline_access_codes'
|
|
18140
18212
|
| 'can_program_online_access_codes'
|
|
18141
18213
|
| 'can_simulate_removal'
|
|
18214
|
+
| 'can_simulate_connection'
|
|
18215
|
+
| 'can_simulate_disconnection'
|
|
18142
18216
|
>
|
|
18143
18217
|
| undefined
|
|
18144
18218
|
exclude_if?:
|
|
@@ -18148,6 +18222,8 @@ export interface Routes {
|
|
|
18148
18222
|
| 'can_program_offline_access_codes'
|
|
18149
18223
|
| 'can_program_online_access_codes'
|
|
18150
18224
|
| 'can_simulate_removal'
|
|
18225
|
+
| 'can_simulate_connection'
|
|
18226
|
+
| 'can_simulate_disconnection'
|
|
18151
18227
|
>
|
|
18152
18228
|
| undefined
|
|
18153
18229
|
}
|
|
@@ -18893,6 +18969,8 @@ export interface Routes {
|
|
|
18893
18969
|
can_program_offline_access_codes?: boolean | undefined
|
|
18894
18970
|
can_program_online_access_codes?: boolean | undefined
|
|
18895
18971
|
can_simulate_removal?: boolean | undefined
|
|
18972
|
+
can_simulate_connection?: boolean | undefined
|
|
18973
|
+
can_simulate_disconnection?: boolean | undefined
|
|
18896
18974
|
}>
|
|
18897
18975
|
}
|
|
18898
18976
|
}
|
|
@@ -21138,6 +21216,8 @@ export interface Routes {
|
|
|
21138
21216
|
can_program_offline_access_codes?: boolean | undefined
|
|
21139
21217
|
can_program_online_access_codes?: boolean | undefined
|
|
21140
21218
|
can_simulate_removal?: boolean | undefined
|
|
21219
|
+
can_simulate_connection?: boolean | undefined
|
|
21220
|
+
can_simulate_disconnection?: boolean | undefined
|
|
21141
21221
|
}>
|
|
21142
21222
|
/**
|
|
21143
21223
|
---
|
|
@@ -21884,6 +21964,8 @@ export interface Routes {
|
|
|
21884
21964
|
can_program_offline_access_codes?: boolean | undefined
|
|
21885
21965
|
can_program_online_access_codes?: boolean | undefined
|
|
21886
21966
|
can_simulate_removal?: boolean | undefined
|
|
21967
|
+
can_simulate_connection?: boolean | undefined
|
|
21968
|
+
can_simulate_disconnection?: boolean | undefined
|
|
21887
21969
|
}>
|
|
21888
21970
|
}
|
|
21889
21971
|
}
|