@seamapi/types 1.252.1 → 1.253.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3280,8 +3280,270 @@ export interface Routes {
3280
3280
  }>
3281
3281
  }
3282
3282
  }
3283
- '/acs/credentials/read_card': {
3284
- route: '/acs/credentials/read_card'
3283
+ '/acs/credentials/unassign': {
3284
+ route: '/acs/credentials/unassign'
3285
+ method: 'PATCH' | 'POST'
3286
+ queryParams: {}
3287
+ jsonBody: {
3288
+ acs_user_id: string
3289
+ acs_credential_id: string
3290
+ }
3291
+ commonParams: {}
3292
+ formData: {}
3293
+ jsonResponse: {
3294
+ acs_credential: {
3295
+ acs_credential_id: string
3296
+ acs_user_id?: string | undefined
3297
+ acs_credential_pool_id?: string | undefined
3298
+ acs_system_id: string
3299
+ parent_acs_credential_id?: string | undefined
3300
+ display_name: string
3301
+ code?: (string | undefined) | null
3302
+ card_number?: (string | undefined) | null
3303
+ is_encoded?: boolean | undefined
3304
+ encoded_at?: (string | undefined) | null
3305
+ access_method: 'code' | 'card' | 'mobile_key'
3306
+ external_type?:
3307
+ | (
3308
+ | 'pti_card'
3309
+ | 'brivo_credential'
3310
+ | 'hid_credential'
3311
+ | 'visionline_card'
3312
+ | 'salto_ks_credential'
3313
+ )
3314
+ | undefined
3315
+ external_type_display_name?: string | undefined
3316
+ created_at: string
3317
+ workspace_id: string
3318
+ starts_at?: string | undefined
3319
+ ends_at?: string | undefined
3320
+ errors: Array<{
3321
+ error_code: string
3322
+ message: string
3323
+ }>
3324
+ warnings: Array<{
3325
+ warning_code: string
3326
+ message: string
3327
+ }>
3328
+ is_multi_phone_sync_credential?: boolean | undefined
3329
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3330
+ latest_desired_state_synced_with_provider_at?: string | undefined
3331
+ visionline_metadata?:
3332
+ | {
3333
+ card_function_type: 'guest' | 'staff'
3334
+ joiner_acs_credential_ids?: string[] | undefined
3335
+ guest_acs_entrance_ids?: string[] | undefined
3336
+ common_acs_entrance_ids?: string[] | undefined
3337
+ is_valid?: boolean | undefined
3338
+ card_id?: string | undefined
3339
+ credential_id?: string | undefined
3340
+ }
3341
+ | undefined
3342
+ is_managed: true
3343
+ }
3344
+ }
3345
+ }
3346
+ '/acs/credentials/unmanaged/get': {
3347
+ route: '/acs/credentials/unmanaged/get'
3348
+ method: 'GET' | 'POST'
3349
+ queryParams: {}
3350
+ jsonBody: {}
3351
+ commonParams: {
3352
+ acs_credential_id: string
3353
+ }
3354
+ formData: {}
3355
+ jsonResponse: {
3356
+ acs_credential: {
3357
+ acs_credential_id: string
3358
+ acs_user_id?: string | undefined
3359
+ acs_credential_pool_id?: string | undefined
3360
+ acs_system_id: string
3361
+ parent_acs_credential_id?: string | undefined
3362
+ display_name: string
3363
+ code?: (string | undefined) | null
3364
+ card_number?: (string | undefined) | null
3365
+ is_encoded?: boolean | undefined
3366
+ encoded_at?: (string | undefined) | null
3367
+ access_method: 'code' | 'card' | 'mobile_key'
3368
+ external_type?:
3369
+ | (
3370
+ | 'pti_card'
3371
+ | 'brivo_credential'
3372
+ | 'hid_credential'
3373
+ | 'visionline_card'
3374
+ | 'salto_ks_credential'
3375
+ )
3376
+ | undefined
3377
+ external_type_display_name?: string | undefined
3378
+ created_at: string
3379
+ workspace_id: string
3380
+ starts_at?: string | undefined
3381
+ ends_at?: string | undefined
3382
+ errors: Array<{
3383
+ error_code: string
3384
+ message: string
3385
+ }>
3386
+ warnings: Array<{
3387
+ warning_code: string
3388
+ message: string
3389
+ }>
3390
+ is_multi_phone_sync_credential?: boolean | undefined
3391
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3392
+ latest_desired_state_synced_with_provider_at?: string | undefined
3393
+ visionline_metadata?:
3394
+ | {
3395
+ card_function_type: 'guest' | 'staff'
3396
+ joiner_acs_credential_ids?: string[] | undefined
3397
+ guest_acs_entrance_ids?: string[] | undefined
3398
+ common_acs_entrance_ids?: string[] | undefined
3399
+ is_valid?: boolean | undefined
3400
+ card_id?: string | undefined
3401
+ credential_id?: string | undefined
3402
+ }
3403
+ | undefined
3404
+ is_managed: false
3405
+ }
3406
+ }
3407
+ }
3408
+ '/acs/credentials/unmanaged/list': {
3409
+ route: '/acs/credentials/unmanaged/list'
3410
+ method: 'GET' | 'POST'
3411
+ queryParams: {}
3412
+ jsonBody: {}
3413
+ commonParams:
3414
+ | {
3415
+ acs_user_id: string
3416
+ }
3417
+ | {
3418
+ acs_system_id: string
3419
+ }
3420
+ | {
3421
+ acs_user_id: string
3422
+ acs_system_id: string
3423
+ }
3424
+ | {
3425
+ user_identity_id: string
3426
+ }
3427
+ formData: {}
3428
+ jsonResponse: {
3429
+ acs_credentials: Array<{
3430
+ acs_credential_id: string
3431
+ acs_user_id?: string | undefined
3432
+ acs_credential_pool_id?: string | undefined
3433
+ acs_system_id: string
3434
+ parent_acs_credential_id?: string | undefined
3435
+ display_name: string
3436
+ code?: (string | undefined) | null
3437
+ card_number?: (string | undefined) | null
3438
+ is_encoded?: boolean | undefined
3439
+ encoded_at?: (string | undefined) | null
3440
+ access_method: 'code' | 'card' | 'mobile_key'
3441
+ external_type?:
3442
+ | (
3443
+ | 'pti_card'
3444
+ | 'brivo_credential'
3445
+ | 'hid_credential'
3446
+ | 'visionline_card'
3447
+ | 'salto_ks_credential'
3448
+ )
3449
+ | undefined
3450
+ external_type_display_name?: string | undefined
3451
+ created_at: string
3452
+ workspace_id: string
3453
+ starts_at?: string | undefined
3454
+ ends_at?: string | undefined
3455
+ errors: Array<{
3456
+ error_code: string
3457
+ message: string
3458
+ }>
3459
+ warnings: Array<{
3460
+ warning_code: string
3461
+ message: string
3462
+ }>
3463
+ is_multi_phone_sync_credential?: boolean | undefined
3464
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3465
+ latest_desired_state_synced_with_provider_at?: string | undefined
3466
+ visionline_metadata?:
3467
+ | {
3468
+ card_function_type: 'guest' | 'staff'
3469
+ joiner_acs_credential_ids?: string[] | undefined
3470
+ guest_acs_entrance_ids?: string[] | undefined
3471
+ common_acs_entrance_ids?: string[] | undefined
3472
+ is_valid?: boolean | undefined
3473
+ card_id?: string | undefined
3474
+ credential_id?: string | undefined
3475
+ }
3476
+ | undefined
3477
+ is_managed: false
3478
+ }>
3479
+ }
3480
+ }
3481
+ '/acs/credentials/update': {
3482
+ route: '/acs/credentials/update'
3483
+ method: 'PATCH' | 'POST'
3484
+ queryParams: {}
3485
+ jsonBody: {
3486
+ acs_credential_id: string
3487
+ code?: string | undefined
3488
+ ends_at?: string | undefined
3489
+ }
3490
+ commonParams: {}
3491
+ formData: {}
3492
+ jsonResponse: {
3493
+ acs_credential: {
3494
+ acs_credential_id: string
3495
+ acs_user_id?: string | undefined
3496
+ acs_credential_pool_id?: string | undefined
3497
+ acs_system_id: string
3498
+ parent_acs_credential_id?: string | undefined
3499
+ display_name: string
3500
+ code?: (string | undefined) | null
3501
+ card_number?: (string | undefined) | null
3502
+ is_encoded?: boolean | undefined
3503
+ encoded_at?: (string | undefined) | null
3504
+ access_method: 'code' | 'card' | 'mobile_key'
3505
+ external_type?:
3506
+ | (
3507
+ | 'pti_card'
3508
+ | 'brivo_credential'
3509
+ | 'hid_credential'
3510
+ | 'visionline_card'
3511
+ | 'salto_ks_credential'
3512
+ )
3513
+ | undefined
3514
+ external_type_display_name?: string | undefined
3515
+ created_at: string
3516
+ workspace_id: string
3517
+ starts_at?: string | undefined
3518
+ ends_at?: string | undefined
3519
+ errors: Array<{
3520
+ error_code: string
3521
+ message: string
3522
+ }>
3523
+ warnings: Array<{
3524
+ warning_code: string
3525
+ message: string
3526
+ }>
3527
+ is_multi_phone_sync_credential?: boolean | undefined
3528
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3529
+ latest_desired_state_synced_with_provider_at?: string | undefined
3530
+ visionline_metadata?:
3531
+ | {
3532
+ card_function_type: 'guest' | 'staff'
3533
+ joiner_acs_credential_ids?: string[] | undefined
3534
+ guest_acs_entrance_ids?: string[] | undefined
3535
+ common_acs_entrance_ids?: string[] | undefined
3536
+ is_valid?: boolean | undefined
3537
+ card_id?: string | undefined
3538
+ credential_id?: string | undefined
3539
+ }
3540
+ | undefined
3541
+ is_managed: true
3542
+ }
3543
+ }
3544
+ }
3545
+ '/acs/encoders/read_card': {
3546
+ route: '/acs/encoders/read_card'
3285
3547
  method: 'POST'
3286
3548
  queryParams: {}
3287
3549
  jsonBody: {}
@@ -3675,353 +3937,91 @@ export interface Routes {
3675
3937
  result: null
3676
3938
  action_type: 'UPDATE_ACCESS_CODE'
3677
3939
  error: {
3678
- type: string
3679
- message: string
3680
- }
3681
- }
3682
- | {
3683
- /** The ID of the action attempt. */
3684
- action_attempt_id: string
3685
- status: 'pending'
3686
- result: null
3687
- error: null
3688
- action_type: 'CREATE_NOISE_THRESHOLD'
3689
- }
3690
- | {
3691
- /** The ID of the action attempt. */
3692
- action_attempt_id: string
3693
- status: 'success'
3694
- error: null
3695
- action_type: 'CREATE_NOISE_THRESHOLD'
3696
- result?: any
3697
- }
3698
- | {
3699
- /** The ID of the action attempt. */
3700
- action_attempt_id: string
3701
- status: 'error'
3702
- result: null
3703
- action_type: 'CREATE_NOISE_THRESHOLD'
3704
- error: {
3705
- type: string
3706
- message: string
3707
- }
3708
- }
3709
- | {
3710
- /** The ID of the action attempt. */
3711
- action_attempt_id: string
3712
- status: 'pending'
3713
- result: null
3714
- error: null
3715
- action_type: 'DELETE_NOISE_THRESHOLD'
3716
- }
3717
- | {
3718
- /** The ID of the action attempt. */
3719
- action_attempt_id: string
3720
- status: 'success'
3721
- error: null
3722
- action_type: 'DELETE_NOISE_THRESHOLD'
3723
- result?: any
3724
- }
3725
- | {
3726
- /** The ID of the action attempt. */
3727
- action_attempt_id: string
3728
- status: 'error'
3729
- result: null
3730
- action_type: 'DELETE_NOISE_THRESHOLD'
3731
- error: {
3732
- type: string
3733
- message: string
3734
- }
3735
- }
3736
- | {
3737
- /** The ID of the action attempt. */
3738
- action_attempt_id: string
3739
- status: 'pending'
3740
- result: null
3741
- error: null
3742
- action_type: 'UPDATE_NOISE_THRESHOLD'
3743
- }
3744
- | {
3745
- /** The ID of the action attempt. */
3746
- action_attempt_id: string
3747
- status: 'success'
3748
- error: null
3749
- action_type: 'UPDATE_NOISE_THRESHOLD'
3750
- result?: any
3751
- }
3752
- | {
3753
- /** The ID of the action attempt. */
3754
- action_attempt_id: string
3755
- status: 'error'
3756
- result: null
3757
- action_type: 'UPDATE_NOISE_THRESHOLD'
3758
- error: {
3759
- type: string
3760
- message: string
3761
- }
3762
- }
3763
- }
3764
- }
3765
- '/acs/credentials/unassign': {
3766
- route: '/acs/credentials/unassign'
3767
- method: 'PATCH' | 'POST'
3768
- queryParams: {}
3769
- jsonBody: {
3770
- acs_user_id: string
3771
- acs_credential_id: string
3772
- }
3773
- commonParams: {}
3774
- formData: {}
3775
- jsonResponse: {
3776
- acs_credential: {
3777
- acs_credential_id: string
3778
- acs_user_id?: string | undefined
3779
- acs_credential_pool_id?: string | undefined
3780
- acs_system_id: string
3781
- parent_acs_credential_id?: string | undefined
3782
- display_name: string
3783
- code?: (string | undefined) | null
3784
- card_number?: (string | undefined) | null
3785
- is_encoded?: boolean | undefined
3786
- encoded_at?: (string | undefined) | null
3787
- access_method: 'code' | 'card' | 'mobile_key'
3788
- external_type?:
3789
- | (
3790
- | 'pti_card'
3791
- | 'brivo_credential'
3792
- | 'hid_credential'
3793
- | 'visionline_card'
3794
- | 'salto_ks_credential'
3795
- )
3796
- | undefined
3797
- external_type_display_name?: string | undefined
3798
- created_at: string
3799
- workspace_id: string
3800
- starts_at?: string | undefined
3801
- ends_at?: string | undefined
3802
- errors: Array<{
3803
- error_code: string
3804
- message: string
3805
- }>
3806
- warnings: Array<{
3807
- warning_code: string
3808
- message: string
3809
- }>
3810
- is_multi_phone_sync_credential?: boolean | undefined
3811
- is_latest_desired_state_synced_with_provider?: boolean | undefined
3812
- latest_desired_state_synced_with_provider_at?: string | undefined
3813
- visionline_metadata?:
3814
- | {
3815
- card_function_type: 'guest' | 'staff'
3816
- joiner_acs_credential_ids?: string[] | undefined
3817
- guest_acs_entrance_ids?: string[] | undefined
3818
- common_acs_entrance_ids?: string[] | undefined
3819
- is_valid?: boolean | undefined
3820
- card_id?: string | undefined
3821
- credential_id?: string | undefined
3822
- }
3823
- | undefined
3824
- is_managed: true
3825
- }
3826
- }
3827
- }
3828
- '/acs/credentials/unmanaged/get': {
3829
- route: '/acs/credentials/unmanaged/get'
3830
- method: 'GET' | 'POST'
3831
- queryParams: {}
3832
- jsonBody: {}
3833
- commonParams: {
3834
- acs_credential_id: string
3835
- }
3836
- formData: {}
3837
- jsonResponse: {
3838
- acs_credential: {
3839
- acs_credential_id: string
3840
- acs_user_id?: string | undefined
3841
- acs_credential_pool_id?: string | undefined
3842
- acs_system_id: string
3843
- parent_acs_credential_id?: string | undefined
3844
- display_name: string
3845
- code?: (string | undefined) | null
3846
- card_number?: (string | undefined) | null
3847
- is_encoded?: boolean | undefined
3848
- encoded_at?: (string | undefined) | null
3849
- access_method: 'code' | 'card' | 'mobile_key'
3850
- external_type?:
3851
- | (
3852
- | 'pti_card'
3853
- | 'brivo_credential'
3854
- | 'hid_credential'
3855
- | 'visionline_card'
3856
- | 'salto_ks_credential'
3857
- )
3858
- | undefined
3859
- external_type_display_name?: string | undefined
3860
- created_at: string
3861
- workspace_id: string
3862
- starts_at?: string | undefined
3863
- ends_at?: string | undefined
3864
- errors: Array<{
3865
- error_code: string
3866
- message: string
3867
- }>
3868
- warnings: Array<{
3869
- warning_code: string
3870
- message: string
3871
- }>
3872
- is_multi_phone_sync_credential?: boolean | undefined
3873
- is_latest_desired_state_synced_with_provider?: boolean | undefined
3874
- latest_desired_state_synced_with_provider_at?: string | undefined
3875
- visionline_metadata?:
3876
- | {
3877
- card_function_type: 'guest' | 'staff'
3878
- joiner_acs_credential_ids?: string[] | undefined
3879
- guest_acs_entrance_ids?: string[] | undefined
3880
- common_acs_entrance_ids?: string[] | undefined
3881
- is_valid?: boolean | undefined
3882
- card_id?: string | undefined
3883
- credential_id?: string | undefined
3940
+ type: string
3941
+ message: string
3884
3942
  }
3885
- | undefined
3886
- is_managed: false
3887
- }
3888
- }
3889
- }
3890
- '/acs/credentials/unmanaged/list': {
3891
- route: '/acs/credentials/unmanaged/list'
3892
- method: 'GET' | 'POST'
3893
- queryParams: {}
3894
- jsonBody: {}
3895
- commonParams:
3896
- | {
3897
- acs_user_id: string
3898
- }
3899
- | {
3900
- acs_system_id: string
3901
- }
3902
- | {
3903
- acs_user_id: string
3904
- acs_system_id: string
3905
- }
3906
- | {
3907
- user_identity_id: string
3908
- }
3909
- formData: {}
3910
- jsonResponse: {
3911
- acs_credentials: Array<{
3912
- acs_credential_id: string
3913
- acs_user_id?: string | undefined
3914
- acs_credential_pool_id?: string | undefined
3915
- acs_system_id: string
3916
- parent_acs_credential_id?: string | undefined
3917
- display_name: string
3918
- code?: (string | undefined) | null
3919
- card_number?: (string | undefined) | null
3920
- is_encoded?: boolean | undefined
3921
- encoded_at?: (string | undefined) | null
3922
- access_method: 'code' | 'card' | 'mobile_key'
3923
- external_type?:
3924
- | (
3925
- | 'pti_card'
3926
- | 'brivo_credential'
3927
- | 'hid_credential'
3928
- | 'visionline_card'
3929
- | 'salto_ks_credential'
3930
- )
3931
- | undefined
3932
- external_type_display_name?: string | undefined
3933
- created_at: string
3934
- workspace_id: string
3935
- starts_at?: string | undefined
3936
- ends_at?: string | undefined
3937
- errors: Array<{
3938
- error_code: string
3939
- message: string
3940
- }>
3941
- warnings: Array<{
3942
- warning_code: string
3943
- message: string
3944
- }>
3945
- is_multi_phone_sync_credential?: boolean | undefined
3946
- is_latest_desired_state_synced_with_provider?: boolean | undefined
3947
- latest_desired_state_synced_with_provider_at?: string | undefined
3948
- visionline_metadata?:
3949
- | {
3950
- card_function_type: 'guest' | 'staff'
3951
- joiner_acs_credential_ids?: string[] | undefined
3952
- guest_acs_entrance_ids?: string[] | undefined
3953
- common_acs_entrance_ids?: string[] | undefined
3954
- is_valid?: boolean | undefined
3955
- card_id?: string | undefined
3956
- credential_id?: string | undefined
3943
+ }
3944
+ | {
3945
+ /** The ID of the action attempt. */
3946
+ action_attempt_id: string
3947
+ status: 'pending'
3948
+ result: null
3949
+ error: null
3950
+ action_type: 'CREATE_NOISE_THRESHOLD'
3951
+ }
3952
+ | {
3953
+ /** The ID of the action attempt. */
3954
+ action_attempt_id: string
3955
+ status: 'success'
3956
+ error: null
3957
+ action_type: 'CREATE_NOISE_THRESHOLD'
3958
+ result?: any
3959
+ }
3960
+ | {
3961
+ /** The ID of the action attempt. */
3962
+ action_attempt_id: string
3963
+ status: 'error'
3964
+ result: null
3965
+ action_type: 'CREATE_NOISE_THRESHOLD'
3966
+ error: {
3967
+ type: string
3968
+ message: string
3957
3969
  }
3958
- | undefined
3959
- is_managed: false
3960
- }>
3961
- }
3962
- }
3963
- '/acs/credentials/update': {
3964
- route: '/acs/credentials/update'
3965
- method: 'PATCH' | 'POST'
3966
- queryParams: {}
3967
- jsonBody: {
3968
- acs_credential_id: string
3969
- code?: string | undefined
3970
- ends_at?: string | undefined
3971
- }
3972
- commonParams: {}
3973
- formData: {}
3974
- jsonResponse: {
3975
- acs_credential: {
3976
- acs_credential_id: string
3977
- acs_user_id?: string | undefined
3978
- acs_credential_pool_id?: string | undefined
3979
- acs_system_id: string
3980
- parent_acs_credential_id?: string | undefined
3981
- display_name: string
3982
- code?: (string | undefined) | null
3983
- card_number?: (string | undefined) | null
3984
- is_encoded?: boolean | undefined
3985
- encoded_at?: (string | undefined) | null
3986
- access_method: 'code' | 'card' | 'mobile_key'
3987
- external_type?:
3988
- | (
3989
- | 'pti_card'
3990
- | 'brivo_credential'
3991
- | 'hid_credential'
3992
- | 'visionline_card'
3993
- | 'salto_ks_credential'
3994
- )
3995
- | undefined
3996
- external_type_display_name?: string | undefined
3997
- created_at: string
3998
- workspace_id: string
3999
- starts_at?: string | undefined
4000
- ends_at?: string | undefined
4001
- errors: Array<{
4002
- error_code: string
4003
- message: string
4004
- }>
4005
- warnings: Array<{
4006
- warning_code: string
4007
- message: string
4008
- }>
4009
- is_multi_phone_sync_credential?: boolean | undefined
4010
- is_latest_desired_state_synced_with_provider?: boolean | undefined
4011
- latest_desired_state_synced_with_provider_at?: string | undefined
4012
- visionline_metadata?:
4013
- | {
4014
- card_function_type: 'guest' | 'staff'
4015
- joiner_acs_credential_ids?: string[] | undefined
4016
- guest_acs_entrance_ids?: string[] | undefined
4017
- common_acs_entrance_ids?: string[] | undefined
4018
- is_valid?: boolean | undefined
4019
- card_id?: string | undefined
4020
- credential_id?: string | undefined
3970
+ }
3971
+ | {
3972
+ /** The ID of the action attempt. */
3973
+ action_attempt_id: string
3974
+ status: 'pending'
3975
+ result: null
3976
+ error: null
3977
+ action_type: 'DELETE_NOISE_THRESHOLD'
3978
+ }
3979
+ | {
3980
+ /** The ID of the action attempt. */
3981
+ action_attempt_id: string
3982
+ status: 'success'
3983
+ error: null
3984
+ action_type: 'DELETE_NOISE_THRESHOLD'
3985
+ result?: any
3986
+ }
3987
+ | {
3988
+ /** The ID of the action attempt. */
3989
+ action_attempt_id: string
3990
+ status: 'error'
3991
+ result: null
3992
+ action_type: 'DELETE_NOISE_THRESHOLD'
3993
+ error: {
3994
+ type: string
3995
+ message: string
4021
3996
  }
4022
- | undefined
4023
- is_managed: true
4024
- }
3997
+ }
3998
+ | {
3999
+ /** The ID of the action attempt. */
4000
+ action_attempt_id: string
4001
+ status: 'pending'
4002
+ result: null
4003
+ error: null
4004
+ action_type: 'UPDATE_NOISE_THRESHOLD'
4005
+ }
4006
+ | {
4007
+ /** The ID of the action attempt. */
4008
+ action_attempt_id: string
4009
+ status: 'success'
4010
+ error: null
4011
+ action_type: 'UPDATE_NOISE_THRESHOLD'
4012
+ result?: any
4013
+ }
4014
+ | {
4015
+ /** The ID of the action attempt. */
4016
+ action_attempt_id: string
4017
+ status: 'error'
4018
+ result: null
4019
+ action_type: 'UPDATE_NOISE_THRESHOLD'
4020
+ error: {
4021
+ type: string
4022
+ message: string
4023
+ }
4024
+ }
4025
4025
  }
4026
4026
  }
4027
4027
  '/acs/entrances/get': {
@@ -6863,6 +6863,7 @@ export interface Routes {
6863
6863
  | 'honeywell_resideo_thermostat'
6864
6864
  )
6865
6865
  | ('ios_phone' | 'android_phone')
6866
+ | 'visionline_encoder'
6866
6867
  /** Optional nickname to describe the device, settable through Seam */
6867
6868
  nickname?: string | undefined
6868
6869
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -7222,6 +7223,11 @@ export interface Routes {
7222
7223
  keypad_id?: number | undefined
7223
7224
  }
7224
7225
  | undefined
7226
+ visionline_metadata?:
7227
+ | {
7228
+ encoder_id: string
7229
+ }
7230
+ | undefined
7225
7231
  }) &
7226
7232
  ({
7227
7233
  _experimental_supported_code_from_access_codes_lengths?:
@@ -7472,6 +7478,7 @@ export interface Routes {
7472
7478
  | 'honeywell_resideo_thermostat'
7473
7479
  )
7474
7480
  | ('ios_phone' | 'android_phone')
7481
+ | 'visionline_encoder'
7475
7482
  )
7476
7483
  | undefined
7477
7484
  device_types?:
@@ -7511,6 +7518,7 @@ export interface Routes {
7511
7518
  | 'honeywell_resideo_thermostat'
7512
7519
  )
7513
7520
  | ('ios_phone' | 'android_phone')
7521
+ | 'visionline_encoder'
7514
7522
  >
7515
7523
  | undefined
7516
7524
  manufacturer?:
@@ -7629,6 +7637,7 @@ export interface Routes {
7629
7637
  | 'honeywell_resideo_thermostat'
7630
7638
  )
7631
7639
  | ('ios_phone' | 'android_phone')
7640
+ | 'visionline_encoder'
7632
7641
  /** Optional nickname to describe the device, settable through Seam */
7633
7642
  nickname?: string | undefined
7634
7643
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -7988,6 +7997,11 @@ export interface Routes {
7988
7997
  keypad_id?: number | undefined
7989
7998
  }
7990
7999
  | undefined
8000
+ visionline_metadata?:
8001
+ | {
8002
+ encoder_id: string
8003
+ }
8004
+ | undefined
7991
8005
  }) &
7992
8006
  ({
7993
8007
  _experimental_supported_code_from_access_codes_lengths?:
@@ -8356,6 +8370,7 @@ export interface Routes {
8356
8370
  | 'honeywell_resideo_thermostat'
8357
8371
  )
8358
8372
  | ('ios_phone' | 'android_phone')
8373
+ | 'visionline_encoder'
8359
8374
  /** Unique identifier for the account associated with the device. */
8360
8375
  connected_account_id: string
8361
8376
  /** Location information for the device. */
@@ -8514,6 +8529,7 @@ export interface Routes {
8514
8529
  | 'honeywell_resideo_thermostat'
8515
8530
  )
8516
8531
  | ('ios_phone' | 'android_phone')
8532
+ | 'visionline_encoder'
8517
8533
  )
8518
8534
  | undefined
8519
8535
  device_types?:
@@ -8553,6 +8569,7 @@ export interface Routes {
8553
8569
  | 'honeywell_resideo_thermostat'
8554
8570
  )
8555
8571
  | ('ios_phone' | 'android_phone')
8572
+ | 'visionline_encoder'
8556
8573
  >
8557
8574
  | undefined
8558
8575
  manufacturer?:
@@ -8671,6 +8688,7 @@ export interface Routes {
8671
8688
  | 'honeywell_resideo_thermostat'
8672
8689
  )
8673
8690
  | ('ios_phone' | 'android_phone')
8691
+ | 'visionline_encoder'
8674
8692
  /** Unique identifier for the account associated with the device. */
8675
8693
  connected_account_id: string
8676
8694
  /** Location information for the device. */
@@ -9063,6 +9081,7 @@ export interface Routes {
9063
9081
  | 'honeywell_resideo_thermostat'
9064
9082
  )
9065
9083
  | ('ios_phone' | 'android_phone')
9084
+ | 'visionline_encoder'
9066
9085
  /** Optional nickname to describe the device, settable through Seam */
9067
9086
  nickname?: string | undefined
9068
9087
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -9422,6 +9441,11 @@ export interface Routes {
9422
9441
  keypad_id?: number | undefined
9423
9442
  }
9424
9443
  | undefined
9444
+ visionline_metadata?:
9445
+ | {
9446
+ encoder_id: string
9447
+ }
9448
+ | undefined
9425
9449
  }) &
9426
9450
  ({
9427
9451
  _experimental_supported_code_from_access_codes_lengths?:
@@ -9663,6 +9687,7 @@ export interface Routes {
9663
9687
  | 'honeywell_resideo_thermostat'
9664
9688
  )
9665
9689
  | ('ios_phone' | 'android_phone')
9690
+ | 'visionline_encoder'
9666
9691
  /** Optional nickname to describe the device, settable through Seam */
9667
9692
  nickname?: string | undefined
9668
9693
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -10022,6 +10047,11 @@ export interface Routes {
10022
10047
  keypad_id?: number | undefined
10023
10048
  }
10024
10049
  | undefined
10050
+ visionline_metadata?:
10051
+ | {
10052
+ encoder_id: string
10053
+ }
10054
+ | undefined
10025
10055
  }) &
10026
10056
  ({
10027
10057
  _experimental_supported_code_from_access_codes_lengths?:
@@ -10272,6 +10302,7 @@ export interface Routes {
10272
10302
  | 'honeywell_resideo_thermostat'
10273
10303
  )
10274
10304
  | ('ios_phone' | 'android_phone')
10305
+ | 'visionline_encoder'
10275
10306
  )
10276
10307
  | undefined
10277
10308
  device_types?:
@@ -10311,6 +10342,7 @@ export interface Routes {
10311
10342
  | 'honeywell_resideo_thermostat'
10312
10343
  )
10313
10344
  | ('ios_phone' | 'android_phone')
10345
+ | 'visionline_encoder'
10314
10346
  >
10315
10347
  | undefined
10316
10348
  manufacturer?:
@@ -10429,6 +10461,7 @@ export interface Routes {
10429
10461
  | 'honeywell_resideo_thermostat'
10430
10462
  )
10431
10463
  | ('ios_phone' | 'android_phone')
10464
+ | 'visionline_encoder'
10432
10465
  /** Optional nickname to describe the device, settable through Seam */
10433
10466
  nickname?: string | undefined
10434
10467
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -10788,6 +10821,11 @@ export interface Routes {
10788
10821
  keypad_id?: number | undefined
10789
10822
  }
10790
10823
  | undefined
10824
+ visionline_metadata?:
10825
+ | {
10826
+ encoder_id: string
10827
+ }
10828
+ | undefined
10791
10829
  }) &
10792
10830
  ({
10793
10831
  _experimental_supported_code_from_access_codes_lengths?:
@@ -11029,6 +11067,7 @@ export interface Routes {
11029
11067
  | 'honeywell_resideo_thermostat'
11030
11068
  )
11031
11069
  | ('ios_phone' | 'android_phone')
11070
+ | 'visionline_encoder'
11032
11071
  /** Optional nickname to describe the device, settable through Seam */
11033
11072
  nickname?: string | undefined
11034
11073
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -11388,6 +11427,11 @@ export interface Routes {
11388
11427
  keypad_id?: number | undefined
11389
11428
  }
11390
11429
  | undefined
11430
+ visionline_metadata?:
11431
+ | {
11432
+ encoder_id: string
11433
+ }
11434
+ | undefined
11391
11435
  }) &
11392
11436
  ({
11393
11437
  _experimental_supported_code_from_access_codes_lengths?:
@@ -12628,6 +12672,7 @@ export interface Routes {
12628
12672
  | 'honeywell_resideo_thermostat'
12629
12673
  )
12630
12674
  | ('ios_phone' | 'android_phone')
12675
+ | 'visionline_encoder'
12631
12676
  )
12632
12677
  | undefined
12633
12678
  device_types?:
@@ -12667,6 +12712,7 @@ export interface Routes {
12667
12712
  | 'honeywell_resideo_thermostat'
12668
12713
  )
12669
12714
  | ('ios_phone' | 'android_phone')
12715
+ | 'visionline_encoder'
12670
12716
  >
12671
12717
  | undefined
12672
12718
  manufacturer?:
@@ -12785,6 +12831,7 @@ export interface Routes {
12785
12831
  | 'honeywell_resideo_thermostat'
12786
12832
  )
12787
12833
  | ('ios_phone' | 'android_phone')
12834
+ | 'visionline_encoder'
12788
12835
  /** Optional nickname to describe the device, settable through Seam */
12789
12836
  nickname?: string | undefined
12790
12837
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -13144,6 +13191,11 @@ export interface Routes {
13144
13191
  keypad_id?: number | undefined
13145
13192
  }
13146
13193
  | undefined
13194
+ visionline_metadata?:
13195
+ | {
13196
+ encoder_id: string
13197
+ }
13198
+ | undefined
13147
13199
  }) &
13148
13200
  ({
13149
13201
  _experimental_supported_code_from_access_codes_lengths?:
@@ -13385,6 +13437,7 @@ export interface Routes {
13385
13437
  | 'honeywell_resideo_thermostat'
13386
13438
  )
13387
13439
  | ('ios_phone' | 'android_phone')
13440
+ | 'visionline_encoder'
13388
13441
  /** Optional nickname to describe the device, settable through Seam */
13389
13442
  nickname?: string | undefined
13390
13443
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -13744,6 +13797,11 @@ export interface Routes {
13744
13797
  keypad_id?: number | undefined
13745
13798
  }
13746
13799
  | undefined
13800
+ visionline_metadata?:
13801
+ | {
13802
+ encoder_id: string
13803
+ }
13804
+ | undefined
13747
13805
  }) &
13748
13806
  ({
13749
13807
  _experimental_supported_code_from_access_codes_lengths?:
@@ -16707,6 +16765,7 @@ export interface Routes {
16707
16765
  | 'honeywell_resideo_thermostat'
16708
16766
  )
16709
16767
  | ('ios_phone' | 'android_phone')
16768
+ | 'visionline_encoder'
16710
16769
  /** Optional nickname to describe the device, settable through Seam */
16711
16770
  nickname?: string | undefined
16712
16771
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -17066,6 +17125,11 @@ export interface Routes {
17066
17125
  keypad_id?: number | undefined
17067
17126
  }
17068
17127
  | undefined
17128
+ visionline_metadata?:
17129
+ | {
17130
+ encoder_id: string
17131
+ }
17132
+ | undefined
17069
17133
  }) &
17070
17134
  ({
17071
17135
  _experimental_supported_code_from_access_codes_lengths?:
@@ -18278,6 +18342,7 @@ export interface Routes {
18278
18342
  | 'honeywell_resideo_thermostat'
18279
18343
  )
18280
18344
  | ('ios_phone' | 'android_phone')
18345
+ | 'visionline_encoder'
18281
18346
  )
18282
18347
  | undefined
18283
18348
  device_types?:
@@ -18317,6 +18382,7 @@ export interface Routes {
18317
18382
  | 'honeywell_resideo_thermostat'
18318
18383
  )
18319
18384
  | ('ios_phone' | 'android_phone')
18385
+ | 'visionline_encoder'
18320
18386
  >
18321
18387
  | undefined
18322
18388
  manufacturer?:
@@ -18435,6 +18501,7 @@ export interface Routes {
18435
18501
  | 'honeywell_resideo_thermostat'
18436
18502
  )
18437
18503
  | ('ios_phone' | 'android_phone')
18504
+ | 'visionline_encoder'
18438
18505
  /** Optional nickname to describe the device, settable through Seam */
18439
18506
  nickname?: string | undefined
18440
18507
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -18794,6 +18861,11 @@ export interface Routes {
18794
18861
  keypad_id?: number | undefined
18795
18862
  }
18796
18863
  | undefined
18864
+ visionline_metadata?:
18865
+ | {
18866
+ encoder_id: string
18867
+ }
18868
+ | undefined
18797
18869
  }) &
18798
18870
  ({
18799
18871
  _experimental_supported_code_from_access_codes_lengths?:
@@ -20325,6 +20397,7 @@ export interface Routes {
20325
20397
  | 'honeywell_resideo_thermostat'
20326
20398
  )
20327
20399
  | ('ios_phone' | 'android_phone')
20400
+ | 'visionline_encoder'
20328
20401
  /** Optional nickname to describe the device, settable through Seam */
20329
20402
  nickname?: string | undefined
20330
20403
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -20684,6 +20757,11 @@ export interface Routes {
20684
20757
  keypad_id?: number | undefined
20685
20758
  }
20686
20759
  | undefined
20760
+ visionline_metadata?:
20761
+ | {
20762
+ encoder_id: string
20763
+ }
20764
+ | undefined
20687
20765
  }) &
20688
20766
  ({
20689
20767
  _experimental_supported_code_from_access_codes_lengths?:
@@ -20927,6 +21005,7 @@ export interface Routes {
20927
21005
  | 'honeywell_resideo_thermostat'
20928
21006
  )
20929
21007
  | ('ios_phone' | 'android_phone')
21008
+ | 'visionline_encoder'
20930
21009
  /** Optional nickname to describe the device, settable through Seam */
20931
21010
  nickname?: string | undefined
20932
21011
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -21286,6 +21365,11 @@ export interface Routes {
21286
21365
  keypad_id?: number | undefined
21287
21366
  }
21288
21367
  | undefined
21368
+ visionline_metadata?:
21369
+ | {
21370
+ encoder_id: string
21371
+ }
21372
+ | undefined
21289
21373
  }) &
21290
21374
  ({
21291
21375
  _experimental_supported_code_from_access_codes_lengths?: