@seamapi/types 1.232.0 → 1.234.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 +523 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1352 -231
- package/lib/seam/connect/models/acs/acs-credential.d.ts +160 -2
- package/lib/seam/connect/models/acs/acs-credential.js +7 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +114 -1
- package/lib/seam/connect/models/acs/acs-user.js +7 -1
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +9 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js +3 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +648 -10
- package/lib/seam/connect/openapi.js +492 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +223 -11
- 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/models/acs/acs-credential.ts +14 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +14 -1
- package/src/lib/seam/connect/models/acs/metadata/visionline.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +492 -3
- package/src/lib/seam/connect/route-types.ts +277 -1
- package/src/lib/seam/connect/schemas.ts +2 -0
|
@@ -2497,6 +2497,7 @@ export interface Routes {
|
|
|
2497
2497
|
email?: string | undefined
|
|
2498
2498
|
email_address?: string | undefined
|
|
2499
2499
|
phone_number?: string | undefined
|
|
2500
|
+
is_managed: true
|
|
2500
2501
|
}>
|
|
2501
2502
|
}
|
|
2502
2503
|
}
|
|
@@ -2607,8 +2608,12 @@ export interface Routes {
|
|
|
2607
2608
|
joiner_acs_credential_ids?: string[] | undefined
|
|
2608
2609
|
guest_acs_entrance_ids?: string[] | undefined
|
|
2609
2610
|
common_acs_entrance_ids?: string[] | undefined
|
|
2611
|
+
is_valid?: boolean | undefined
|
|
2612
|
+
card_id?: string | undefined
|
|
2613
|
+
credential_id?: string | undefined
|
|
2610
2614
|
}
|
|
2611
2615
|
| undefined
|
|
2616
|
+
is_managed: true
|
|
2612
2617
|
}
|
|
2613
2618
|
}
|
|
2614
2619
|
}
|
|
@@ -2683,8 +2688,12 @@ export interface Routes {
|
|
|
2683
2688
|
joiner_acs_credential_ids?: string[] | undefined
|
|
2684
2689
|
guest_acs_entrance_ids?: string[] | undefined
|
|
2685
2690
|
common_acs_entrance_ids?: string[] | undefined
|
|
2691
|
+
is_valid?: boolean | undefined
|
|
2692
|
+
card_id?: string | undefined
|
|
2693
|
+
credential_id?: string | undefined
|
|
2686
2694
|
}
|
|
2687
2695
|
| undefined
|
|
2696
|
+
is_managed: true
|
|
2688
2697
|
}
|
|
2689
2698
|
}
|
|
2690
2699
|
}
|
|
@@ -2749,8 +2758,12 @@ export interface Routes {
|
|
|
2749
2758
|
joiner_acs_credential_ids?: string[] | undefined
|
|
2750
2759
|
guest_acs_entrance_ids?: string[] | undefined
|
|
2751
2760
|
common_acs_entrance_ids?: string[] | undefined
|
|
2761
|
+
is_valid?: boolean | undefined
|
|
2762
|
+
card_id?: string | undefined
|
|
2763
|
+
credential_id?: string | undefined
|
|
2752
2764
|
}
|
|
2753
2765
|
| undefined
|
|
2766
|
+
is_managed: true
|
|
2754
2767
|
}
|
|
2755
2768
|
}
|
|
2756
2769
|
}
|
|
@@ -2820,8 +2833,12 @@ export interface Routes {
|
|
|
2820
2833
|
joiner_acs_credential_ids?: string[] | undefined
|
|
2821
2834
|
guest_acs_entrance_ids?: string[] | undefined
|
|
2822
2835
|
common_acs_entrance_ids?: string[] | undefined
|
|
2836
|
+
is_valid?: boolean | undefined
|
|
2837
|
+
card_id?: string | undefined
|
|
2838
|
+
credential_id?: string | undefined
|
|
2823
2839
|
}
|
|
2824
2840
|
| undefined
|
|
2841
|
+
is_managed: true
|
|
2825
2842
|
}>
|
|
2826
2843
|
}
|
|
2827
2844
|
}
|
|
@@ -2923,11 +2940,144 @@ export interface Routes {
|
|
|
2923
2940
|
joiner_acs_credential_ids?: string[] | undefined
|
|
2924
2941
|
guest_acs_entrance_ids?: string[] | undefined
|
|
2925
2942
|
common_acs_entrance_ids?: string[] | undefined
|
|
2943
|
+
is_valid?: boolean | undefined
|
|
2944
|
+
card_id?: string | undefined
|
|
2945
|
+
credential_id?: string | undefined
|
|
2946
|
+
}
|
|
2947
|
+
| undefined
|
|
2948
|
+
is_managed: true
|
|
2949
|
+
}
|
|
2950
|
+
}
|
|
2951
|
+
}
|
|
2952
|
+
'/acs/credentials/unmanaged/get': {
|
|
2953
|
+
route: '/acs/credentials/unmanaged/get'
|
|
2954
|
+
method: 'GET' | 'POST'
|
|
2955
|
+
queryParams: {}
|
|
2956
|
+
jsonBody: {}
|
|
2957
|
+
commonParams: {
|
|
2958
|
+
acs_credential_id: string
|
|
2959
|
+
}
|
|
2960
|
+
formData: {}
|
|
2961
|
+
jsonResponse: {
|
|
2962
|
+
acs_credential: {
|
|
2963
|
+
acs_credential_id: string
|
|
2964
|
+
acs_user_id?: string | undefined
|
|
2965
|
+
acs_credential_pool_id?: string | undefined
|
|
2966
|
+
acs_system_id: string
|
|
2967
|
+
parent_acs_credential_id?: string | undefined
|
|
2968
|
+
display_name: string
|
|
2969
|
+
code?: (string | undefined) | null
|
|
2970
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
2971
|
+
external_type?:
|
|
2972
|
+
| (
|
|
2973
|
+
| 'pti_card'
|
|
2974
|
+
| 'brivo_credential'
|
|
2975
|
+
| 'hid_credential'
|
|
2976
|
+
| 'visionline_card'
|
|
2977
|
+
| 'salto_ks_credential'
|
|
2978
|
+
)
|
|
2979
|
+
| undefined
|
|
2980
|
+
external_type_display_name?: string | undefined
|
|
2981
|
+
created_at: string
|
|
2982
|
+
workspace_id: string
|
|
2983
|
+
starts_at?: string | undefined
|
|
2984
|
+
ends_at?: string | undefined
|
|
2985
|
+
errors: Array<{
|
|
2986
|
+
error_code: string
|
|
2987
|
+
message: string
|
|
2988
|
+
}>
|
|
2989
|
+
warnings: Array<{
|
|
2990
|
+
warning_code: string
|
|
2991
|
+
message: string
|
|
2992
|
+
}>
|
|
2993
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
2994
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
2995
|
+
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
2996
|
+
visionline_metadata?:
|
|
2997
|
+
| {
|
|
2998
|
+
card_function_type: 'guest' | 'staff'
|
|
2999
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
3000
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
3001
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
3002
|
+
is_valid?: boolean | undefined
|
|
3003
|
+
card_id?: string | undefined
|
|
3004
|
+
credential_id?: string | undefined
|
|
2926
3005
|
}
|
|
2927
3006
|
| undefined
|
|
3007
|
+
is_managed: false
|
|
2928
3008
|
}
|
|
2929
3009
|
}
|
|
2930
3010
|
}
|
|
3011
|
+
'/acs/credentials/unmanaged/list': {
|
|
3012
|
+
route: '/acs/credentials/unmanaged/list'
|
|
3013
|
+
method: 'GET' | 'POST'
|
|
3014
|
+
queryParams: {}
|
|
3015
|
+
jsonBody: {}
|
|
3016
|
+
commonParams:
|
|
3017
|
+
| {
|
|
3018
|
+
acs_user_id: string
|
|
3019
|
+
}
|
|
3020
|
+
| {
|
|
3021
|
+
acs_system_id: string
|
|
3022
|
+
}
|
|
3023
|
+
| {
|
|
3024
|
+
acs_user_id: string
|
|
3025
|
+
acs_system_id: string
|
|
3026
|
+
}
|
|
3027
|
+
| {
|
|
3028
|
+
user_identity_id: string
|
|
3029
|
+
}
|
|
3030
|
+
formData: {}
|
|
3031
|
+
jsonResponse: {
|
|
3032
|
+
acs_credentials: Array<{
|
|
3033
|
+
acs_credential_id: string
|
|
3034
|
+
acs_user_id?: string | undefined
|
|
3035
|
+
acs_credential_pool_id?: string | undefined
|
|
3036
|
+
acs_system_id: string
|
|
3037
|
+
parent_acs_credential_id?: string | undefined
|
|
3038
|
+
display_name: string
|
|
3039
|
+
code?: (string | undefined) | null
|
|
3040
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
3041
|
+
external_type?:
|
|
3042
|
+
| (
|
|
3043
|
+
| 'pti_card'
|
|
3044
|
+
| 'brivo_credential'
|
|
3045
|
+
| 'hid_credential'
|
|
3046
|
+
| 'visionline_card'
|
|
3047
|
+
| 'salto_ks_credential'
|
|
3048
|
+
)
|
|
3049
|
+
| undefined
|
|
3050
|
+
external_type_display_name?: string | undefined
|
|
3051
|
+
created_at: string
|
|
3052
|
+
workspace_id: string
|
|
3053
|
+
starts_at?: string | undefined
|
|
3054
|
+
ends_at?: string | undefined
|
|
3055
|
+
errors: Array<{
|
|
3056
|
+
error_code: string
|
|
3057
|
+
message: string
|
|
3058
|
+
}>
|
|
3059
|
+
warnings: Array<{
|
|
3060
|
+
warning_code: string
|
|
3061
|
+
message: string
|
|
3062
|
+
}>
|
|
3063
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
3064
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
3065
|
+
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
3066
|
+
visionline_metadata?:
|
|
3067
|
+
| {
|
|
3068
|
+
card_function_type: 'guest' | 'staff'
|
|
3069
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
3070
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
3071
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
3072
|
+
is_valid?: boolean | undefined
|
|
3073
|
+
card_id?: string | undefined
|
|
3074
|
+
credential_id?: string | undefined
|
|
3075
|
+
}
|
|
3076
|
+
| undefined
|
|
3077
|
+
is_managed: false
|
|
3078
|
+
}>
|
|
3079
|
+
}
|
|
3080
|
+
}
|
|
2931
3081
|
'/acs/credentials/update': {
|
|
2932
3082
|
route: '/acs/credentials/update'
|
|
2933
3083
|
method: 'PATCH' | 'POST'
|
|
@@ -2980,8 +3130,12 @@ export interface Routes {
|
|
|
2980
3130
|
joiner_acs_credential_ids?: string[] | undefined
|
|
2981
3131
|
guest_acs_entrance_ids?: string[] | undefined
|
|
2982
3132
|
common_acs_entrance_ids?: string[] | undefined
|
|
3133
|
+
is_valid?: boolean | undefined
|
|
3134
|
+
card_id?: string | undefined
|
|
3135
|
+
credential_id?: string | undefined
|
|
2983
3136
|
}
|
|
2984
3137
|
| undefined
|
|
3138
|
+
is_managed: true
|
|
2985
3139
|
}
|
|
2986
3140
|
}
|
|
2987
3141
|
}
|
|
@@ -3143,8 +3297,12 @@ export interface Routes {
|
|
|
3143
3297
|
joiner_acs_credential_ids?: string[] | undefined
|
|
3144
3298
|
guest_acs_entrance_ids?: string[] | undefined
|
|
3145
3299
|
common_acs_entrance_ids?: string[] | undefined
|
|
3300
|
+
is_valid?: boolean | undefined
|
|
3301
|
+
card_id?: string | undefined
|
|
3302
|
+
credential_id?: string | undefined
|
|
3146
3303
|
}
|
|
3147
3304
|
| undefined
|
|
3305
|
+
is_managed: true
|
|
3148
3306
|
}>
|
|
3149
3307
|
}
|
|
3150
3308
|
}
|
|
@@ -3562,6 +3720,7 @@ export interface Routes {
|
|
|
3562
3720
|
email?: string | undefined
|
|
3563
3721
|
email_address?: string | undefined
|
|
3564
3722
|
phone_number?: string | undefined
|
|
3723
|
+
is_managed: true
|
|
3565
3724
|
}
|
|
3566
3725
|
}
|
|
3567
3726
|
}
|
|
@@ -3627,6 +3786,7 @@ export interface Routes {
|
|
|
3627
3786
|
email?: string | undefined
|
|
3628
3787
|
email_address?: string | undefined
|
|
3629
3788
|
phone_number?: string | undefined
|
|
3789
|
+
is_managed: true
|
|
3630
3790
|
}
|
|
3631
3791
|
}
|
|
3632
3792
|
}
|
|
@@ -3686,6 +3846,7 @@ export interface Routes {
|
|
|
3686
3846
|
email?: string | undefined
|
|
3687
3847
|
email_address?: string | undefined
|
|
3688
3848
|
phone_number?: string | undefined
|
|
3849
|
+
is_managed: true
|
|
3689
3850
|
}>
|
|
3690
3851
|
}
|
|
3691
3852
|
}
|
|
@@ -3821,6 +3982,7 @@ export interface Routes {
|
|
|
3821
3982
|
email?: string | undefined
|
|
3822
3983
|
email_address?: string | undefined
|
|
3823
3984
|
phone_number?: string | undefined
|
|
3985
|
+
is_managed: true
|
|
3824
3986
|
}
|
|
3825
3987
|
}
|
|
3826
3988
|
}
|
|
@@ -3830,7 +3992,11 @@ export interface Routes {
|
|
|
3830
3992
|
queryParams: {}
|
|
3831
3993
|
jsonBody: {}
|
|
3832
3994
|
commonParams: {
|
|
3833
|
-
|
|
3995
|
+
user_identity_id?: string | undefined
|
|
3996
|
+
user_identity_phone_number?: string | undefined
|
|
3997
|
+
user_identity_email_address?: string | undefined
|
|
3998
|
+
acs_system_id?: string | undefined
|
|
3999
|
+
limit?: number
|
|
3834
4000
|
}
|
|
3835
4001
|
formData: {}
|
|
3836
4002
|
jsonResponse: {
|
|
@@ -3875,6 +4041,7 @@ export interface Routes {
|
|
|
3875
4041
|
email?: string | undefined
|
|
3876
4042
|
email_address?: string | undefined
|
|
3877
4043
|
phone_number?: string | undefined
|
|
4044
|
+
is_managed: false
|
|
3878
4045
|
}>
|
|
3879
4046
|
}
|
|
3880
4047
|
}
|
|
@@ -5782,6 +5949,10 @@ export interface Routes {
|
|
|
5782
5949
|
can_remotely_lock?: boolean | undefined
|
|
5783
5950
|
can_program_offline_access_codes?: boolean | undefined
|
|
5784
5951
|
can_program_online_access_codes?: boolean | undefined
|
|
5952
|
+
can_hvac_heat?: boolean | undefined
|
|
5953
|
+
can_hvac_cool?: boolean | undefined
|
|
5954
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
5955
|
+
can_turn_off_hvac?: boolean | undefined
|
|
5785
5956
|
can_simulate_removal?: boolean | undefined
|
|
5786
5957
|
can_simulate_connection?: boolean | undefined
|
|
5787
5958
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -5925,6 +6096,10 @@ export interface Routes {
|
|
|
5925
6096
|
| 'can_remotely_lock'
|
|
5926
6097
|
| 'can_program_offline_access_codes'
|
|
5927
6098
|
| 'can_program_online_access_codes'
|
|
6099
|
+
| 'can_hvac_heat'
|
|
6100
|
+
| 'can_hvac_cool'
|
|
6101
|
+
| 'can_hvac_heat_cool'
|
|
6102
|
+
| 'can_turn_off_hvac'
|
|
5928
6103
|
| 'can_simulate_removal'
|
|
5929
6104
|
| 'can_simulate_connection'
|
|
5930
6105
|
| 'can_simulate_disconnection'
|
|
@@ -5936,6 +6111,10 @@ export interface Routes {
|
|
|
5936
6111
|
| 'can_remotely_lock'
|
|
5937
6112
|
| 'can_program_offline_access_codes'
|
|
5938
6113
|
| 'can_program_online_access_codes'
|
|
6114
|
+
| 'can_hvac_heat'
|
|
6115
|
+
| 'can_hvac_cool'
|
|
6116
|
+
| 'can_hvac_heat_cool'
|
|
6117
|
+
| 'can_turn_off_hvac'
|
|
5939
6118
|
| 'can_simulate_removal'
|
|
5940
6119
|
| 'can_simulate_connection'
|
|
5941
6120
|
| 'can_simulate_disconnection'
|
|
@@ -6480,6 +6659,10 @@ export interface Routes {
|
|
|
6480
6659
|
can_remotely_lock?: boolean | undefined
|
|
6481
6660
|
can_program_offline_access_codes?: boolean | undefined
|
|
6482
6661
|
can_program_online_access_codes?: boolean | undefined
|
|
6662
|
+
can_hvac_heat?: boolean | undefined
|
|
6663
|
+
can_hvac_cool?: boolean | undefined
|
|
6664
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
6665
|
+
can_turn_off_hvac?: boolean | undefined
|
|
6483
6666
|
can_simulate_removal?: boolean | undefined
|
|
6484
6667
|
can_simulate_connection?: boolean | undefined
|
|
6485
6668
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -6556,6 +6739,10 @@ export interface Routes {
|
|
|
6556
6739
|
can_remotely_lock?: boolean | undefined
|
|
6557
6740
|
can_program_offline_access_codes?: boolean | undefined
|
|
6558
6741
|
can_program_online_access_codes?: boolean | undefined
|
|
6742
|
+
can_hvac_heat?: boolean | undefined
|
|
6743
|
+
can_hvac_cool?: boolean | undefined
|
|
6744
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
6745
|
+
can_turn_off_hvac?: boolean | undefined
|
|
6559
6746
|
can_simulate_removal?: boolean | undefined
|
|
6560
6747
|
can_simulate_connection?: boolean | undefined
|
|
6561
6748
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -6747,6 +6934,10 @@ export interface Routes {
|
|
|
6747
6934
|
can_remotely_lock?: boolean | undefined
|
|
6748
6935
|
can_program_offline_access_codes?: boolean | undefined
|
|
6749
6936
|
can_program_online_access_codes?: boolean | undefined
|
|
6937
|
+
can_hvac_heat?: boolean | undefined
|
|
6938
|
+
can_hvac_cool?: boolean | undefined
|
|
6939
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
6940
|
+
can_turn_off_hvac?: boolean | undefined
|
|
6750
6941
|
can_simulate_removal?: boolean | undefined
|
|
6751
6942
|
can_simulate_connection?: boolean | undefined
|
|
6752
6943
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -6890,6 +7081,10 @@ export interface Routes {
|
|
|
6890
7081
|
| 'can_remotely_lock'
|
|
6891
7082
|
| 'can_program_offline_access_codes'
|
|
6892
7083
|
| 'can_program_online_access_codes'
|
|
7084
|
+
| 'can_hvac_heat'
|
|
7085
|
+
| 'can_hvac_cool'
|
|
7086
|
+
| 'can_hvac_heat_cool'
|
|
7087
|
+
| 'can_turn_off_hvac'
|
|
6893
7088
|
| 'can_simulate_removal'
|
|
6894
7089
|
| 'can_simulate_connection'
|
|
6895
7090
|
| 'can_simulate_disconnection'
|
|
@@ -6901,6 +7096,10 @@ export interface Routes {
|
|
|
6901
7096
|
| 'can_remotely_lock'
|
|
6902
7097
|
| 'can_program_offline_access_codes'
|
|
6903
7098
|
| 'can_program_online_access_codes'
|
|
7099
|
+
| 'can_hvac_heat'
|
|
7100
|
+
| 'can_hvac_cool'
|
|
7101
|
+
| 'can_hvac_heat_cool'
|
|
7102
|
+
| 'can_turn_off_hvac'
|
|
6904
7103
|
| 'can_simulate_removal'
|
|
6905
7104
|
| 'can_simulate_connection'
|
|
6906
7105
|
| 'can_simulate_disconnection'
|
|
@@ -7050,6 +7249,10 @@ export interface Routes {
|
|
|
7050
7249
|
can_remotely_lock?: boolean | undefined
|
|
7051
7250
|
can_program_offline_access_codes?: boolean | undefined
|
|
7052
7251
|
can_program_online_access_codes?: boolean | undefined
|
|
7252
|
+
can_hvac_heat?: boolean | undefined
|
|
7253
|
+
can_hvac_cool?: boolean | undefined
|
|
7254
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
7255
|
+
can_turn_off_hvac?: boolean | undefined
|
|
7053
7256
|
can_simulate_removal?: boolean | undefined
|
|
7054
7257
|
can_simulate_connection?: boolean | undefined
|
|
7055
7258
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -7831,6 +8034,10 @@ export interface Routes {
|
|
|
7831
8034
|
can_remotely_lock?: boolean | undefined
|
|
7832
8035
|
can_program_offline_access_codes?: boolean | undefined
|
|
7833
8036
|
can_program_online_access_codes?: boolean | undefined
|
|
8037
|
+
can_hvac_heat?: boolean | undefined
|
|
8038
|
+
can_hvac_cool?: boolean | undefined
|
|
8039
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
8040
|
+
can_turn_off_hvac?: boolean | undefined
|
|
7834
8041
|
can_simulate_removal?: boolean | undefined
|
|
7835
8042
|
can_simulate_connection?: boolean | undefined
|
|
7836
8043
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -8371,6 +8578,10 @@ export interface Routes {
|
|
|
8371
8578
|
can_remotely_lock?: boolean | undefined
|
|
8372
8579
|
can_program_offline_access_codes?: boolean | undefined
|
|
8373
8580
|
can_program_online_access_codes?: boolean | undefined
|
|
8581
|
+
can_hvac_heat?: boolean | undefined
|
|
8582
|
+
can_hvac_cool?: boolean | undefined
|
|
8583
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
8584
|
+
can_turn_off_hvac?: boolean | undefined
|
|
8374
8585
|
can_simulate_removal?: boolean | undefined
|
|
8375
8586
|
can_simulate_connection?: boolean | undefined
|
|
8376
8587
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -8514,6 +8725,10 @@ export interface Routes {
|
|
|
8514
8725
|
| 'can_remotely_lock'
|
|
8515
8726
|
| 'can_program_offline_access_codes'
|
|
8516
8727
|
| 'can_program_online_access_codes'
|
|
8728
|
+
| 'can_hvac_heat'
|
|
8729
|
+
| 'can_hvac_cool'
|
|
8730
|
+
| 'can_hvac_heat_cool'
|
|
8731
|
+
| 'can_turn_off_hvac'
|
|
8517
8732
|
| 'can_simulate_removal'
|
|
8518
8733
|
| 'can_simulate_connection'
|
|
8519
8734
|
| 'can_simulate_disconnection'
|
|
@@ -8525,6 +8740,10 @@ export interface Routes {
|
|
|
8525
8740
|
| 'can_remotely_lock'
|
|
8526
8741
|
| 'can_program_offline_access_codes'
|
|
8527
8742
|
| 'can_program_online_access_codes'
|
|
8743
|
+
| 'can_hvac_heat'
|
|
8744
|
+
| 'can_hvac_cool'
|
|
8745
|
+
| 'can_hvac_heat_cool'
|
|
8746
|
+
| 'can_turn_off_hvac'
|
|
8528
8747
|
| 'can_simulate_removal'
|
|
8529
8748
|
| 'can_simulate_connection'
|
|
8530
8749
|
| 'can_simulate_disconnection'
|
|
@@ -9069,6 +9288,10 @@ export interface Routes {
|
|
|
9069
9288
|
can_remotely_lock?: boolean | undefined
|
|
9070
9289
|
can_program_offline_access_codes?: boolean | undefined
|
|
9071
9290
|
can_program_online_access_codes?: boolean | undefined
|
|
9291
|
+
can_hvac_heat?: boolean | undefined
|
|
9292
|
+
can_hvac_cool?: boolean | undefined
|
|
9293
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
9294
|
+
can_turn_off_hvac?: boolean | undefined
|
|
9072
9295
|
can_simulate_removal?: boolean | undefined
|
|
9073
9296
|
can_simulate_connection?: boolean | undefined
|
|
9074
9297
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -9609,6 +9832,10 @@ export interface Routes {
|
|
|
9609
9832
|
can_remotely_lock?: boolean | undefined
|
|
9610
9833
|
can_program_offline_access_codes?: boolean | undefined
|
|
9611
9834
|
can_program_online_access_codes?: boolean | undefined
|
|
9835
|
+
can_hvac_heat?: boolean | undefined
|
|
9836
|
+
can_hvac_cool?: boolean | undefined
|
|
9837
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
9838
|
+
can_turn_off_hvac?: boolean | undefined
|
|
9612
9839
|
can_simulate_removal?: boolean | undefined
|
|
9613
9840
|
can_simulate_connection?: boolean | undefined
|
|
9614
9841
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -10624,6 +10851,10 @@ export interface Routes {
|
|
|
10624
10851
|
| 'can_remotely_lock'
|
|
10625
10852
|
| 'can_program_offline_access_codes'
|
|
10626
10853
|
| 'can_program_online_access_codes'
|
|
10854
|
+
| 'can_hvac_heat'
|
|
10855
|
+
| 'can_hvac_cool'
|
|
10856
|
+
| 'can_hvac_heat_cool'
|
|
10857
|
+
| 'can_turn_off_hvac'
|
|
10627
10858
|
| 'can_simulate_removal'
|
|
10628
10859
|
| 'can_simulate_connection'
|
|
10629
10860
|
| 'can_simulate_disconnection'
|
|
@@ -10635,6 +10866,10 @@ export interface Routes {
|
|
|
10635
10866
|
| 'can_remotely_lock'
|
|
10636
10867
|
| 'can_program_offline_access_codes'
|
|
10637
10868
|
| 'can_program_online_access_codes'
|
|
10869
|
+
| 'can_hvac_heat'
|
|
10870
|
+
| 'can_hvac_cool'
|
|
10871
|
+
| 'can_hvac_heat_cool'
|
|
10872
|
+
| 'can_turn_off_hvac'
|
|
10638
10873
|
| 'can_simulate_removal'
|
|
10639
10874
|
| 'can_simulate_connection'
|
|
10640
10875
|
| 'can_simulate_disconnection'
|
|
@@ -11179,6 +11414,10 @@ export interface Routes {
|
|
|
11179
11414
|
can_remotely_lock?: boolean | undefined
|
|
11180
11415
|
can_program_offline_access_codes?: boolean | undefined
|
|
11181
11416
|
can_program_online_access_codes?: boolean | undefined
|
|
11417
|
+
can_hvac_heat?: boolean | undefined
|
|
11418
|
+
can_hvac_cool?: boolean | undefined
|
|
11419
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
11420
|
+
can_turn_off_hvac?: boolean | undefined
|
|
11182
11421
|
can_simulate_removal?: boolean | undefined
|
|
11183
11422
|
can_simulate_connection?: boolean | undefined
|
|
11184
11423
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -11719,6 +11958,10 @@ export interface Routes {
|
|
|
11719
11958
|
can_remotely_lock?: boolean | undefined
|
|
11720
11959
|
can_program_offline_access_codes?: boolean | undefined
|
|
11721
11960
|
can_program_online_access_codes?: boolean | undefined
|
|
11961
|
+
can_hvac_heat?: boolean | undefined
|
|
11962
|
+
can_hvac_cool?: boolean | undefined
|
|
11963
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
11964
|
+
can_turn_off_hvac?: boolean | undefined
|
|
11722
11965
|
can_simulate_removal?: boolean | undefined
|
|
11723
11966
|
can_simulate_connection?: boolean | undefined
|
|
11724
11967
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -13143,6 +13386,10 @@ export interface Routes {
|
|
|
13143
13386
|
can_remotely_lock?: boolean | undefined
|
|
13144
13387
|
can_program_offline_access_codes?: boolean | undefined
|
|
13145
13388
|
can_program_online_access_codes?: boolean | undefined
|
|
13389
|
+
can_hvac_heat?: boolean | undefined
|
|
13390
|
+
can_hvac_cool?: boolean | undefined
|
|
13391
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
13392
|
+
can_turn_off_hvac?: boolean | undefined
|
|
13146
13393
|
can_simulate_removal?: boolean | undefined
|
|
13147
13394
|
can_simulate_connection?: boolean | undefined
|
|
13148
13395
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -13238,6 +13485,10 @@ export interface Routes {
|
|
|
13238
13485
|
can_remotely_lock?: boolean | undefined
|
|
13239
13486
|
can_program_offline_access_codes?: boolean | undefined
|
|
13240
13487
|
can_program_online_access_codes?: boolean | undefined
|
|
13488
|
+
can_hvac_heat?: boolean | undefined
|
|
13489
|
+
can_hvac_cool?: boolean | undefined
|
|
13490
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
13491
|
+
can_turn_off_hvac?: boolean | undefined
|
|
13241
13492
|
can_simulate_removal?: boolean | undefined
|
|
13242
13493
|
can_simulate_connection?: boolean | undefined
|
|
13243
13494
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -14361,6 +14612,10 @@ export interface Routes {
|
|
|
14361
14612
|
can_remotely_lock?: boolean | undefined
|
|
14362
14613
|
can_program_offline_access_codes?: boolean | undefined
|
|
14363
14614
|
can_program_online_access_codes?: boolean | undefined
|
|
14615
|
+
can_hvac_heat?: boolean | undefined
|
|
14616
|
+
can_hvac_cool?: boolean | undefined
|
|
14617
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
14618
|
+
can_turn_off_hvac?: boolean | undefined
|
|
14364
14619
|
can_simulate_removal?: boolean | undefined
|
|
14365
14620
|
can_simulate_connection?: boolean | undefined
|
|
14366
14621
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -15348,6 +15603,10 @@ export interface Routes {
|
|
|
15348
15603
|
| 'can_remotely_lock'
|
|
15349
15604
|
| 'can_program_offline_access_codes'
|
|
15350
15605
|
| 'can_program_online_access_codes'
|
|
15606
|
+
| 'can_hvac_heat'
|
|
15607
|
+
| 'can_hvac_cool'
|
|
15608
|
+
| 'can_hvac_heat_cool'
|
|
15609
|
+
| 'can_turn_off_hvac'
|
|
15351
15610
|
| 'can_simulate_removal'
|
|
15352
15611
|
| 'can_simulate_connection'
|
|
15353
15612
|
| 'can_simulate_disconnection'
|
|
@@ -15359,6 +15618,10 @@ export interface Routes {
|
|
|
15359
15618
|
| 'can_remotely_lock'
|
|
15360
15619
|
| 'can_program_offline_access_codes'
|
|
15361
15620
|
| 'can_program_online_access_codes'
|
|
15621
|
+
| 'can_hvac_heat'
|
|
15622
|
+
| 'can_hvac_cool'
|
|
15623
|
+
| 'can_hvac_heat_cool'
|
|
15624
|
+
| 'can_turn_off_hvac'
|
|
15362
15625
|
| 'can_simulate_removal'
|
|
15363
15626
|
| 'can_simulate_connection'
|
|
15364
15627
|
| 'can_simulate_disconnection'
|
|
@@ -15903,6 +16166,10 @@ export interface Routes {
|
|
|
15903
16166
|
can_remotely_lock?: boolean | undefined
|
|
15904
16167
|
can_program_offline_access_codes?: boolean | undefined
|
|
15905
16168
|
can_program_online_access_codes?: boolean | undefined
|
|
16169
|
+
can_hvac_heat?: boolean | undefined
|
|
16170
|
+
can_hvac_cool?: boolean | undefined
|
|
16171
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
16172
|
+
can_turn_off_hvac?: boolean | undefined
|
|
15906
16173
|
can_simulate_removal?: boolean | undefined
|
|
15907
16174
|
can_simulate_connection?: boolean | undefined
|
|
15908
16175
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -17495,6 +17762,10 @@ export interface Routes {
|
|
|
17495
17762
|
can_remotely_lock?: boolean | undefined
|
|
17496
17763
|
can_program_offline_access_codes?: boolean | undefined
|
|
17497
17764
|
can_program_online_access_codes?: boolean | undefined
|
|
17765
|
+
can_hvac_heat?: boolean | undefined
|
|
17766
|
+
can_hvac_cool?: boolean | undefined
|
|
17767
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
17768
|
+
can_turn_off_hvac?: boolean | undefined
|
|
17498
17769
|
can_simulate_removal?: boolean | undefined
|
|
17499
17770
|
can_simulate_connection?: boolean | undefined
|
|
17500
17771
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -18037,6 +18308,10 @@ export interface Routes {
|
|
|
18037
18308
|
can_remotely_lock?: boolean | undefined
|
|
18038
18309
|
can_program_offline_access_codes?: boolean | undefined
|
|
18039
18310
|
can_program_online_access_codes?: boolean | undefined
|
|
18311
|
+
can_hvac_heat?: boolean | undefined
|
|
18312
|
+
can_hvac_cool?: boolean | undefined
|
|
18313
|
+
can_hvac_heat_cool?: boolean | undefined
|
|
18314
|
+
can_turn_off_hvac?: boolean | undefined
|
|
18040
18315
|
can_simulate_removal?: boolean | undefined
|
|
18041
18316
|
can_simulate_connection?: boolean | undefined
|
|
18042
18317
|
can_simulate_disconnection?: boolean | undefined
|
|
@@ -18205,6 +18480,7 @@ export interface Routes {
|
|
|
18205
18480
|
email?: string | undefined
|
|
18206
18481
|
email_address?: string | undefined
|
|
18207
18482
|
phone_number?: string | undefined
|
|
18483
|
+
is_managed: true
|
|
18208
18484
|
}>
|
|
18209
18485
|
}
|
|
18210
18486
|
}
|
|
@@ -4,6 +4,7 @@ export {
|
|
|
4
4
|
acs_credential,
|
|
5
5
|
acs_entrance,
|
|
6
6
|
acs_system,
|
|
7
|
+
acs_unmanaged_user,
|
|
7
8
|
acs_user,
|
|
8
9
|
action_attempt,
|
|
9
10
|
client_session,
|
|
@@ -16,6 +17,7 @@ export {
|
|
|
16
17
|
noise_threshold,
|
|
17
18
|
seam_event,
|
|
18
19
|
unmanaged_access_code,
|
|
20
|
+
unmanaged_acs_credential,
|
|
19
21
|
unmanaged_device,
|
|
20
22
|
user_identity,
|
|
21
23
|
webhook,
|