@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.
- package/dist/connect.cjs +103 -75
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +451 -374
- package/lib/seam/connect/models/acs/acs-credential.d.ts +36 -36
- package/lib/seam/connect/models/acs/acs-system.d.ts +4 -4
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +7 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +22 -3
- package/lib/seam/connect/models/devices/phone.d.ts +14 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +16 -3
- package/lib/seam/connect/openapi.d.ts +93 -84
- package/lib/seam/connect/openapi.js +79 -62
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +280 -244
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +79 -62
- package/src/lib/seam/connect/route-types.ts +430 -346
|
@@ -2922,8 +2922,226 @@ export interface Routes {
|
|
|
2922
2922
|
}>;
|
|
2923
2923
|
};
|
|
2924
2924
|
};
|
|
2925
|
-
'/acs/credentials/
|
|
2926
|
-
route: '/acs/credentials/
|
|
2925
|
+
'/acs/credentials/unassign': {
|
|
2926
|
+
route: '/acs/credentials/unassign';
|
|
2927
|
+
method: 'PATCH' | 'POST';
|
|
2928
|
+
queryParams: {};
|
|
2929
|
+
jsonBody: {
|
|
2930
|
+
acs_user_id: string;
|
|
2931
|
+
acs_credential_id: string;
|
|
2932
|
+
};
|
|
2933
|
+
commonParams: {};
|
|
2934
|
+
formData: {};
|
|
2935
|
+
jsonResponse: {
|
|
2936
|
+
acs_credential: {
|
|
2937
|
+
acs_credential_id: string;
|
|
2938
|
+
acs_user_id?: string | undefined;
|
|
2939
|
+
acs_credential_pool_id?: string | undefined;
|
|
2940
|
+
acs_system_id: string;
|
|
2941
|
+
parent_acs_credential_id?: string | undefined;
|
|
2942
|
+
display_name: string;
|
|
2943
|
+
code?: (string | undefined) | null;
|
|
2944
|
+
card_number?: (string | undefined) | null;
|
|
2945
|
+
is_encoded?: boolean | undefined;
|
|
2946
|
+
encoded_at?: (string | undefined) | null;
|
|
2947
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
2948
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2949
|
+
external_type_display_name?: string | undefined;
|
|
2950
|
+
created_at: string;
|
|
2951
|
+
workspace_id: string;
|
|
2952
|
+
starts_at?: string | undefined;
|
|
2953
|
+
ends_at?: string | undefined;
|
|
2954
|
+
errors: Array<{
|
|
2955
|
+
error_code: string;
|
|
2956
|
+
message: string;
|
|
2957
|
+
}>;
|
|
2958
|
+
warnings: Array<{
|
|
2959
|
+
warning_code: string;
|
|
2960
|
+
message: string;
|
|
2961
|
+
}>;
|
|
2962
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2963
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2964
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2965
|
+
visionline_metadata?: {
|
|
2966
|
+
card_function_type: 'guest' | 'staff';
|
|
2967
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
2968
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2969
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2970
|
+
is_valid?: boolean | undefined;
|
|
2971
|
+
card_id?: string | undefined;
|
|
2972
|
+
credential_id?: string | undefined;
|
|
2973
|
+
} | undefined;
|
|
2974
|
+
is_managed: true;
|
|
2975
|
+
};
|
|
2976
|
+
};
|
|
2977
|
+
};
|
|
2978
|
+
'/acs/credentials/unmanaged/get': {
|
|
2979
|
+
route: '/acs/credentials/unmanaged/get';
|
|
2980
|
+
method: 'GET' | 'POST';
|
|
2981
|
+
queryParams: {};
|
|
2982
|
+
jsonBody: {};
|
|
2983
|
+
commonParams: {
|
|
2984
|
+
acs_credential_id: string;
|
|
2985
|
+
};
|
|
2986
|
+
formData: {};
|
|
2987
|
+
jsonResponse: {
|
|
2988
|
+
acs_credential: {
|
|
2989
|
+
acs_credential_id: string;
|
|
2990
|
+
acs_user_id?: string | undefined;
|
|
2991
|
+
acs_credential_pool_id?: string | undefined;
|
|
2992
|
+
acs_system_id: string;
|
|
2993
|
+
parent_acs_credential_id?: string | undefined;
|
|
2994
|
+
display_name: string;
|
|
2995
|
+
code?: (string | undefined) | null;
|
|
2996
|
+
card_number?: (string | undefined) | null;
|
|
2997
|
+
is_encoded?: boolean | undefined;
|
|
2998
|
+
encoded_at?: (string | undefined) | null;
|
|
2999
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
3000
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3001
|
+
external_type_display_name?: string | undefined;
|
|
3002
|
+
created_at: string;
|
|
3003
|
+
workspace_id: string;
|
|
3004
|
+
starts_at?: string | undefined;
|
|
3005
|
+
ends_at?: string | undefined;
|
|
3006
|
+
errors: Array<{
|
|
3007
|
+
error_code: string;
|
|
3008
|
+
message: string;
|
|
3009
|
+
}>;
|
|
3010
|
+
warnings: Array<{
|
|
3011
|
+
warning_code: string;
|
|
3012
|
+
message: string;
|
|
3013
|
+
}>;
|
|
3014
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3015
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3016
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3017
|
+
visionline_metadata?: {
|
|
3018
|
+
card_function_type: 'guest' | 'staff';
|
|
3019
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
3020
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
3021
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
3022
|
+
is_valid?: boolean | undefined;
|
|
3023
|
+
card_id?: string | undefined;
|
|
3024
|
+
credential_id?: string | undefined;
|
|
3025
|
+
} | undefined;
|
|
3026
|
+
is_managed: false;
|
|
3027
|
+
};
|
|
3028
|
+
};
|
|
3029
|
+
};
|
|
3030
|
+
'/acs/credentials/unmanaged/list': {
|
|
3031
|
+
route: '/acs/credentials/unmanaged/list';
|
|
3032
|
+
method: 'GET' | 'POST';
|
|
3033
|
+
queryParams: {};
|
|
3034
|
+
jsonBody: {};
|
|
3035
|
+
commonParams: {
|
|
3036
|
+
acs_user_id: string;
|
|
3037
|
+
} | {
|
|
3038
|
+
acs_system_id: string;
|
|
3039
|
+
} | {
|
|
3040
|
+
acs_user_id: string;
|
|
3041
|
+
acs_system_id: string;
|
|
3042
|
+
} | {
|
|
3043
|
+
user_identity_id: string;
|
|
3044
|
+
};
|
|
3045
|
+
formData: {};
|
|
3046
|
+
jsonResponse: {
|
|
3047
|
+
acs_credentials: Array<{
|
|
3048
|
+
acs_credential_id: string;
|
|
3049
|
+
acs_user_id?: string | undefined;
|
|
3050
|
+
acs_credential_pool_id?: string | undefined;
|
|
3051
|
+
acs_system_id: string;
|
|
3052
|
+
parent_acs_credential_id?: string | undefined;
|
|
3053
|
+
display_name: string;
|
|
3054
|
+
code?: (string | undefined) | null;
|
|
3055
|
+
card_number?: (string | undefined) | null;
|
|
3056
|
+
is_encoded?: boolean | undefined;
|
|
3057
|
+
encoded_at?: (string | undefined) | null;
|
|
3058
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
3059
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3060
|
+
external_type_display_name?: string | undefined;
|
|
3061
|
+
created_at: string;
|
|
3062
|
+
workspace_id: string;
|
|
3063
|
+
starts_at?: string | undefined;
|
|
3064
|
+
ends_at?: string | undefined;
|
|
3065
|
+
errors: Array<{
|
|
3066
|
+
error_code: string;
|
|
3067
|
+
message: string;
|
|
3068
|
+
}>;
|
|
3069
|
+
warnings: Array<{
|
|
3070
|
+
warning_code: string;
|
|
3071
|
+
message: string;
|
|
3072
|
+
}>;
|
|
3073
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3074
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3075
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3076
|
+
visionline_metadata?: {
|
|
3077
|
+
card_function_type: 'guest' | 'staff';
|
|
3078
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
3079
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
3080
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
3081
|
+
is_valid?: boolean | undefined;
|
|
3082
|
+
card_id?: string | undefined;
|
|
3083
|
+
credential_id?: string | undefined;
|
|
3084
|
+
} | undefined;
|
|
3085
|
+
is_managed: false;
|
|
3086
|
+
}>;
|
|
3087
|
+
};
|
|
3088
|
+
};
|
|
3089
|
+
'/acs/credentials/update': {
|
|
3090
|
+
route: '/acs/credentials/update';
|
|
3091
|
+
method: 'PATCH' | 'POST';
|
|
3092
|
+
queryParams: {};
|
|
3093
|
+
jsonBody: {
|
|
3094
|
+
acs_credential_id: string;
|
|
3095
|
+
code?: string | undefined;
|
|
3096
|
+
ends_at?: string | undefined;
|
|
3097
|
+
};
|
|
3098
|
+
commonParams: {};
|
|
3099
|
+
formData: {};
|
|
3100
|
+
jsonResponse: {
|
|
3101
|
+
acs_credential: {
|
|
3102
|
+
acs_credential_id: string;
|
|
3103
|
+
acs_user_id?: string | undefined;
|
|
3104
|
+
acs_credential_pool_id?: string | undefined;
|
|
3105
|
+
acs_system_id: string;
|
|
3106
|
+
parent_acs_credential_id?: string | undefined;
|
|
3107
|
+
display_name: string;
|
|
3108
|
+
code?: (string | undefined) | null;
|
|
3109
|
+
card_number?: (string | undefined) | null;
|
|
3110
|
+
is_encoded?: boolean | undefined;
|
|
3111
|
+
encoded_at?: (string | undefined) | null;
|
|
3112
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
3113
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3114
|
+
external_type_display_name?: string | undefined;
|
|
3115
|
+
created_at: string;
|
|
3116
|
+
workspace_id: string;
|
|
3117
|
+
starts_at?: string | undefined;
|
|
3118
|
+
ends_at?: string | undefined;
|
|
3119
|
+
errors: Array<{
|
|
3120
|
+
error_code: string;
|
|
3121
|
+
message: string;
|
|
3122
|
+
}>;
|
|
3123
|
+
warnings: Array<{
|
|
3124
|
+
warning_code: string;
|
|
3125
|
+
message: string;
|
|
3126
|
+
}>;
|
|
3127
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3128
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3129
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3130
|
+
visionline_metadata?: {
|
|
3131
|
+
card_function_type: 'guest' | 'staff';
|
|
3132
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
3133
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
3134
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
3135
|
+
is_valid?: boolean | undefined;
|
|
3136
|
+
card_id?: string | undefined;
|
|
3137
|
+
credential_id?: string | undefined;
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
is_managed: true;
|
|
3140
|
+
};
|
|
3141
|
+
};
|
|
3142
|
+
};
|
|
3143
|
+
'/acs/encoders/read_card': {
|
|
3144
|
+
route: '/acs/encoders/read_card';
|
|
2927
3145
|
method: 'POST';
|
|
2928
3146
|
queryParams: {};
|
|
2929
3147
|
jsonBody: {};
|
|
@@ -3351,224 +3569,6 @@ export interface Routes {
|
|
|
3351
3569
|
};
|
|
3352
3570
|
};
|
|
3353
3571
|
};
|
|
3354
|
-
'/acs/credentials/unassign': {
|
|
3355
|
-
route: '/acs/credentials/unassign';
|
|
3356
|
-
method: 'PATCH' | 'POST';
|
|
3357
|
-
queryParams: {};
|
|
3358
|
-
jsonBody: {
|
|
3359
|
-
acs_user_id: string;
|
|
3360
|
-
acs_credential_id: string;
|
|
3361
|
-
};
|
|
3362
|
-
commonParams: {};
|
|
3363
|
-
formData: {};
|
|
3364
|
-
jsonResponse: {
|
|
3365
|
-
acs_credential: {
|
|
3366
|
-
acs_credential_id: string;
|
|
3367
|
-
acs_user_id?: string | undefined;
|
|
3368
|
-
acs_credential_pool_id?: string | undefined;
|
|
3369
|
-
acs_system_id: string;
|
|
3370
|
-
parent_acs_credential_id?: string | undefined;
|
|
3371
|
-
display_name: string;
|
|
3372
|
-
code?: (string | undefined) | null;
|
|
3373
|
-
card_number?: (string | undefined) | null;
|
|
3374
|
-
is_encoded?: boolean | undefined;
|
|
3375
|
-
encoded_at?: (string | undefined) | null;
|
|
3376
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
3377
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3378
|
-
external_type_display_name?: string | undefined;
|
|
3379
|
-
created_at: string;
|
|
3380
|
-
workspace_id: string;
|
|
3381
|
-
starts_at?: string | undefined;
|
|
3382
|
-
ends_at?: string | undefined;
|
|
3383
|
-
errors: Array<{
|
|
3384
|
-
error_code: string;
|
|
3385
|
-
message: string;
|
|
3386
|
-
}>;
|
|
3387
|
-
warnings: Array<{
|
|
3388
|
-
warning_code: string;
|
|
3389
|
-
message: string;
|
|
3390
|
-
}>;
|
|
3391
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3392
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3393
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3394
|
-
visionline_metadata?: {
|
|
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
|
-
} | undefined;
|
|
3403
|
-
is_managed: true;
|
|
3404
|
-
};
|
|
3405
|
-
};
|
|
3406
|
-
};
|
|
3407
|
-
'/acs/credentials/unmanaged/get': {
|
|
3408
|
-
route: '/acs/credentials/unmanaged/get';
|
|
3409
|
-
method: 'GET' | 'POST';
|
|
3410
|
-
queryParams: {};
|
|
3411
|
-
jsonBody: {};
|
|
3412
|
-
commonParams: {
|
|
3413
|
-
acs_credential_id: string;
|
|
3414
|
-
};
|
|
3415
|
-
formData: {};
|
|
3416
|
-
jsonResponse: {
|
|
3417
|
-
acs_credential: {
|
|
3418
|
-
acs_credential_id: string;
|
|
3419
|
-
acs_user_id?: string | undefined;
|
|
3420
|
-
acs_credential_pool_id?: string | undefined;
|
|
3421
|
-
acs_system_id: string;
|
|
3422
|
-
parent_acs_credential_id?: string | undefined;
|
|
3423
|
-
display_name: string;
|
|
3424
|
-
code?: (string | undefined) | null;
|
|
3425
|
-
card_number?: (string | undefined) | null;
|
|
3426
|
-
is_encoded?: boolean | undefined;
|
|
3427
|
-
encoded_at?: (string | undefined) | null;
|
|
3428
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
3429
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3430
|
-
external_type_display_name?: string | undefined;
|
|
3431
|
-
created_at: string;
|
|
3432
|
-
workspace_id: string;
|
|
3433
|
-
starts_at?: string | undefined;
|
|
3434
|
-
ends_at?: string | undefined;
|
|
3435
|
-
errors: Array<{
|
|
3436
|
-
error_code: string;
|
|
3437
|
-
message: string;
|
|
3438
|
-
}>;
|
|
3439
|
-
warnings: Array<{
|
|
3440
|
-
warning_code: string;
|
|
3441
|
-
message: string;
|
|
3442
|
-
}>;
|
|
3443
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3444
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3445
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3446
|
-
visionline_metadata?: {
|
|
3447
|
-
card_function_type: 'guest' | 'staff';
|
|
3448
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
3449
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
3450
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
3451
|
-
is_valid?: boolean | undefined;
|
|
3452
|
-
card_id?: string | undefined;
|
|
3453
|
-
credential_id?: string | undefined;
|
|
3454
|
-
} | undefined;
|
|
3455
|
-
is_managed: false;
|
|
3456
|
-
};
|
|
3457
|
-
};
|
|
3458
|
-
};
|
|
3459
|
-
'/acs/credentials/unmanaged/list': {
|
|
3460
|
-
route: '/acs/credentials/unmanaged/list';
|
|
3461
|
-
method: 'GET' | 'POST';
|
|
3462
|
-
queryParams: {};
|
|
3463
|
-
jsonBody: {};
|
|
3464
|
-
commonParams: {
|
|
3465
|
-
acs_user_id: string;
|
|
3466
|
-
} | {
|
|
3467
|
-
acs_system_id: string;
|
|
3468
|
-
} | {
|
|
3469
|
-
acs_user_id: string;
|
|
3470
|
-
acs_system_id: string;
|
|
3471
|
-
} | {
|
|
3472
|
-
user_identity_id: string;
|
|
3473
|
-
};
|
|
3474
|
-
formData: {};
|
|
3475
|
-
jsonResponse: {
|
|
3476
|
-
acs_credentials: Array<{
|
|
3477
|
-
acs_credential_id: string;
|
|
3478
|
-
acs_user_id?: string | undefined;
|
|
3479
|
-
acs_credential_pool_id?: string | undefined;
|
|
3480
|
-
acs_system_id: string;
|
|
3481
|
-
parent_acs_credential_id?: string | undefined;
|
|
3482
|
-
display_name: string;
|
|
3483
|
-
code?: (string | undefined) | null;
|
|
3484
|
-
card_number?: (string | undefined) | null;
|
|
3485
|
-
is_encoded?: boolean | undefined;
|
|
3486
|
-
encoded_at?: (string | undefined) | null;
|
|
3487
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
3488
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3489
|
-
external_type_display_name?: string | undefined;
|
|
3490
|
-
created_at: string;
|
|
3491
|
-
workspace_id: string;
|
|
3492
|
-
starts_at?: string | undefined;
|
|
3493
|
-
ends_at?: string | undefined;
|
|
3494
|
-
errors: Array<{
|
|
3495
|
-
error_code: string;
|
|
3496
|
-
message: string;
|
|
3497
|
-
}>;
|
|
3498
|
-
warnings: Array<{
|
|
3499
|
-
warning_code: string;
|
|
3500
|
-
message: string;
|
|
3501
|
-
}>;
|
|
3502
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3503
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3504
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3505
|
-
visionline_metadata?: {
|
|
3506
|
-
card_function_type: 'guest' | 'staff';
|
|
3507
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
3508
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
3509
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
3510
|
-
is_valid?: boolean | undefined;
|
|
3511
|
-
card_id?: string | undefined;
|
|
3512
|
-
credential_id?: string | undefined;
|
|
3513
|
-
} | undefined;
|
|
3514
|
-
is_managed: false;
|
|
3515
|
-
}>;
|
|
3516
|
-
};
|
|
3517
|
-
};
|
|
3518
|
-
'/acs/credentials/update': {
|
|
3519
|
-
route: '/acs/credentials/update';
|
|
3520
|
-
method: 'PATCH' | 'POST';
|
|
3521
|
-
queryParams: {};
|
|
3522
|
-
jsonBody: {
|
|
3523
|
-
acs_credential_id: string;
|
|
3524
|
-
code?: string | undefined;
|
|
3525
|
-
ends_at?: string | undefined;
|
|
3526
|
-
};
|
|
3527
|
-
commonParams: {};
|
|
3528
|
-
formData: {};
|
|
3529
|
-
jsonResponse: {
|
|
3530
|
-
acs_credential: {
|
|
3531
|
-
acs_credential_id: string;
|
|
3532
|
-
acs_user_id?: string | undefined;
|
|
3533
|
-
acs_credential_pool_id?: string | undefined;
|
|
3534
|
-
acs_system_id: string;
|
|
3535
|
-
parent_acs_credential_id?: string | undefined;
|
|
3536
|
-
display_name: string;
|
|
3537
|
-
code?: (string | undefined) | null;
|
|
3538
|
-
card_number?: (string | undefined) | null;
|
|
3539
|
-
is_encoded?: boolean | undefined;
|
|
3540
|
-
encoded_at?: (string | undefined) | null;
|
|
3541
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
3542
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3543
|
-
external_type_display_name?: string | undefined;
|
|
3544
|
-
created_at: string;
|
|
3545
|
-
workspace_id: string;
|
|
3546
|
-
starts_at?: string | undefined;
|
|
3547
|
-
ends_at?: string | undefined;
|
|
3548
|
-
errors: Array<{
|
|
3549
|
-
error_code: string;
|
|
3550
|
-
message: string;
|
|
3551
|
-
}>;
|
|
3552
|
-
warnings: Array<{
|
|
3553
|
-
warning_code: string;
|
|
3554
|
-
message: string;
|
|
3555
|
-
}>;
|
|
3556
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3557
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3558
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3559
|
-
visionline_metadata?: {
|
|
3560
|
-
card_function_type: 'guest' | 'staff';
|
|
3561
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
3562
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
3563
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
3564
|
-
is_valid?: boolean | undefined;
|
|
3565
|
-
card_id?: string | undefined;
|
|
3566
|
-
credential_id?: string | undefined;
|
|
3567
|
-
} | undefined;
|
|
3568
|
-
is_managed: true;
|
|
3569
|
-
};
|
|
3570
|
-
};
|
|
3571
|
-
};
|
|
3572
3572
|
'/acs/entrances/get': {
|
|
3573
3573
|
route: '/acs/entrances/get';
|
|
3574
3574
|
method: 'GET' | 'POST';
|
|
@@ -5976,7 +5976,7 @@ export interface Routes {
|
|
|
5976
5976
|
/** Unique identifier for the device. */
|
|
5977
5977
|
device_id: string;
|
|
5978
5978
|
/** Type of the device. */
|
|
5979
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
5979
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
5980
5980
|
/** Optional nickname to describe the device, settable through Seam */
|
|
5981
5981
|
nickname?: string | undefined;
|
|
5982
5982
|
/** 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. */
|
|
@@ -6262,6 +6262,9 @@ export interface Routes {
|
|
|
6262
6262
|
bridge_name: string;
|
|
6263
6263
|
keypad_id?: number | undefined;
|
|
6264
6264
|
} | undefined;
|
|
6265
|
+
visionline_metadata?: {
|
|
6266
|
+
encoder_id: string;
|
|
6267
|
+
} | undefined;
|
|
6265
6268
|
}) & ({
|
|
6266
6269
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
6267
6270
|
code_constraints?: (Array<{
|
|
@@ -6416,8 +6419,8 @@ export interface Routes {
|
|
|
6416
6419
|
connected_account_id?: string | undefined;
|
|
6417
6420
|
connected_account_ids?: string[] | undefined;
|
|
6418
6421
|
connect_webview_id?: string | undefined;
|
|
6419
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
6420
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
6422
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
6423
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
6421
6424
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
6422
6425
|
device_ids?: string[] | undefined;
|
|
6423
6426
|
limit?: number;
|
|
@@ -6433,7 +6436,7 @@ export interface Routes {
|
|
|
6433
6436
|
/** Unique identifier for the device. */
|
|
6434
6437
|
device_id: string;
|
|
6435
6438
|
/** Type of the device. */
|
|
6436
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
6439
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
6437
6440
|
/** Optional nickname to describe the device, settable through Seam */
|
|
6438
6441
|
nickname?: string | undefined;
|
|
6439
6442
|
/** 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. */
|
|
@@ -6719,6 +6722,9 @@ export interface Routes {
|
|
|
6719
6722
|
bridge_name: string;
|
|
6720
6723
|
keypad_id?: number | undefined;
|
|
6721
6724
|
} | undefined;
|
|
6725
|
+
visionline_metadata?: {
|
|
6726
|
+
encoder_id: string;
|
|
6727
|
+
} | undefined;
|
|
6722
6728
|
}) & ({
|
|
6723
6729
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
6724
6730
|
code_constraints?: (Array<{
|
|
@@ -6940,7 +6946,7 @@ export interface Routes {
|
|
|
6940
6946
|
/** Unique identifier for the device. */
|
|
6941
6947
|
device_id: string;
|
|
6942
6948
|
/** Type of the device. */
|
|
6943
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
6949
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
6944
6950
|
/** Unique identifier for the account associated with the device. */
|
|
6945
6951
|
connected_account_id: string;
|
|
6946
6952
|
/** Location information for the device. */
|
|
@@ -7046,8 +7052,8 @@ export interface Routes {
|
|
|
7046
7052
|
connected_account_id?: string | undefined;
|
|
7047
7053
|
connected_account_ids?: string[] | undefined;
|
|
7048
7054
|
connect_webview_id?: string | undefined;
|
|
7049
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
7050
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
7055
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
7056
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
7051
7057
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
7052
7058
|
device_ids?: string[] | undefined;
|
|
7053
7059
|
limit?: number;
|
|
@@ -7063,7 +7069,7 @@ export interface Routes {
|
|
|
7063
7069
|
/** Unique identifier for the device. */
|
|
7064
7070
|
device_id: string;
|
|
7065
7071
|
/** Type of the device. */
|
|
7066
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
7072
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7067
7073
|
/** Unique identifier for the account associated with the device. */
|
|
7068
7074
|
connected_account_id: string;
|
|
7069
7075
|
/** Location information for the device. */
|
|
@@ -7270,7 +7276,7 @@ export interface Routes {
|
|
|
7270
7276
|
/** Unique identifier for the device. */
|
|
7271
7277
|
device_id: string;
|
|
7272
7278
|
/** Type of the device. */
|
|
7273
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
7279
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7274
7280
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7275
7281
|
nickname?: string | undefined;
|
|
7276
7282
|
/** 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. */
|
|
@@ -7556,6 +7562,9 @@ export interface Routes {
|
|
|
7556
7562
|
bridge_name: string;
|
|
7557
7563
|
keypad_id?: number | undefined;
|
|
7558
7564
|
} | undefined;
|
|
7565
|
+
visionline_metadata?: {
|
|
7566
|
+
encoder_id: string;
|
|
7567
|
+
} | undefined;
|
|
7559
7568
|
}) & ({
|
|
7560
7569
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
7561
7570
|
code_constraints?: (Array<{
|
|
@@ -7702,7 +7711,7 @@ export interface Routes {
|
|
|
7702
7711
|
/** Unique identifier for the device. */
|
|
7703
7712
|
device_id: string;
|
|
7704
7713
|
/** Type of the device. */
|
|
7705
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
7714
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7706
7715
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7707
7716
|
nickname?: string | undefined;
|
|
7708
7717
|
/** 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,9 @@ export interface Routes {
|
|
|
7988
7997
|
bridge_name: string;
|
|
7989
7998
|
keypad_id?: number | undefined;
|
|
7990
7999
|
} | undefined;
|
|
8000
|
+
visionline_metadata?: {
|
|
8001
|
+
encoder_id: string;
|
|
8002
|
+
} | undefined;
|
|
7991
8003
|
}) & ({
|
|
7992
8004
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
7993
8005
|
code_constraints?: (Array<{
|
|
@@ -8142,8 +8154,8 @@ export interface Routes {
|
|
|
8142
8154
|
connected_account_id?: string | undefined;
|
|
8143
8155
|
connected_account_ids?: string[] | undefined;
|
|
8144
8156
|
connect_webview_id?: string | undefined;
|
|
8145
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
8146
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
8157
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
8158
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
8147
8159
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
8148
8160
|
device_ids?: string[] | undefined;
|
|
8149
8161
|
limit?: number;
|
|
@@ -8159,7 +8171,7 @@ export interface Routes {
|
|
|
8159
8171
|
/** Unique identifier for the device. */
|
|
8160
8172
|
device_id: string;
|
|
8161
8173
|
/** Type of the device. */
|
|
8162
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
8174
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8163
8175
|
/** Optional nickname to describe the device, settable through Seam */
|
|
8164
8176
|
nickname?: string | undefined;
|
|
8165
8177
|
/** 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. */
|
|
@@ -8445,6 +8457,9 @@ export interface Routes {
|
|
|
8445
8457
|
bridge_name: string;
|
|
8446
8458
|
keypad_id?: number | undefined;
|
|
8447
8459
|
} | undefined;
|
|
8460
|
+
visionline_metadata?: {
|
|
8461
|
+
encoder_id: string;
|
|
8462
|
+
} | undefined;
|
|
8448
8463
|
}) & ({
|
|
8449
8464
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
8450
8465
|
code_constraints?: (Array<{
|
|
@@ -8591,7 +8606,7 @@ export interface Routes {
|
|
|
8591
8606
|
/** Unique identifier for the device. */
|
|
8592
8607
|
device_id: string;
|
|
8593
8608
|
/** Type of the device. */
|
|
8594
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
8609
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8595
8610
|
/** Optional nickname to describe the device, settable through Seam */
|
|
8596
8611
|
nickname?: string | undefined;
|
|
8597
8612
|
/** 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. */
|
|
@@ -8877,6 +8892,9 @@ export interface Routes {
|
|
|
8877
8892
|
bridge_name: string;
|
|
8878
8893
|
keypad_id?: number | undefined;
|
|
8879
8894
|
} | undefined;
|
|
8895
|
+
visionline_metadata?: {
|
|
8896
|
+
encoder_id: string;
|
|
8897
|
+
} | undefined;
|
|
8880
8898
|
}) & ({
|
|
8881
8899
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
8882
8900
|
code_constraints?: (Array<{
|
|
@@ -9919,8 +9937,8 @@ export interface Routes {
|
|
|
9919
9937
|
connected_account_id?: string | undefined;
|
|
9920
9938
|
connected_account_ids?: string[] | undefined;
|
|
9921
9939
|
connect_webview_id?: string | undefined;
|
|
9922
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
9923
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
9940
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
9941
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
9924
9942
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
9925
9943
|
device_ids?: string[] | undefined;
|
|
9926
9944
|
limit?: number;
|
|
@@ -9936,7 +9954,7 @@ export interface Routes {
|
|
|
9936
9954
|
/** Unique identifier for the device. */
|
|
9937
9955
|
device_id: string;
|
|
9938
9956
|
/** Type of the device. */
|
|
9939
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
9957
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
9940
9958
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9941
9959
|
nickname?: string | undefined;
|
|
9942
9960
|
/** 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. */
|
|
@@ -10222,6 +10240,9 @@ export interface Routes {
|
|
|
10222
10240
|
bridge_name: string;
|
|
10223
10241
|
keypad_id?: number | undefined;
|
|
10224
10242
|
} | undefined;
|
|
10243
|
+
visionline_metadata?: {
|
|
10244
|
+
encoder_id: string;
|
|
10245
|
+
} | undefined;
|
|
10225
10246
|
}) & ({
|
|
10226
10247
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10227
10248
|
code_constraints?: (Array<{
|
|
@@ -10368,7 +10389,7 @@ export interface Routes {
|
|
|
10368
10389
|
/** Unique identifier for the device. */
|
|
10369
10390
|
device_id: string;
|
|
10370
10391
|
/** Type of the device. */
|
|
10371
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
10392
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
10372
10393
|
/** Optional nickname to describe the device, settable through Seam */
|
|
10373
10394
|
nickname?: string | undefined;
|
|
10374
10395
|
/** 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. */
|
|
@@ -10654,6 +10675,9 @@ export interface Routes {
|
|
|
10654
10675
|
bridge_name: string;
|
|
10655
10676
|
keypad_id?: number | undefined;
|
|
10656
10677
|
} | undefined;
|
|
10678
|
+
visionline_metadata?: {
|
|
10679
|
+
encoder_id: string;
|
|
10680
|
+
} | undefined;
|
|
10657
10681
|
}) & ({
|
|
10658
10682
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10659
10683
|
code_constraints?: (Array<{
|
|
@@ -13243,7 +13267,7 @@ export interface Routes {
|
|
|
13243
13267
|
/** Unique identifier for the device. */
|
|
13244
13268
|
device_id: string;
|
|
13245
13269
|
/** Type of the device. */
|
|
13246
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
13270
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
13247
13271
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13248
13272
|
nickname?: string | undefined;
|
|
13249
13273
|
/** 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. */
|
|
@@ -13529,6 +13553,9 @@ export interface Routes {
|
|
|
13529
13553
|
bridge_name: string;
|
|
13530
13554
|
keypad_id?: number | undefined;
|
|
13531
13555
|
} | undefined;
|
|
13556
|
+
visionline_metadata?: {
|
|
13557
|
+
encoder_id: string;
|
|
13558
|
+
} | undefined;
|
|
13532
13559
|
}) & ({
|
|
13533
13560
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
13534
13561
|
code_constraints?: (Array<{
|
|
@@ -14543,8 +14570,8 @@ export interface Routes {
|
|
|
14543
14570
|
connected_account_id?: string | undefined;
|
|
14544
14571
|
connected_account_ids?: string[] | undefined;
|
|
14545
14572
|
connect_webview_id?: string | undefined;
|
|
14546
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
14547
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
14573
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
14574
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
14548
14575
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
14549
14576
|
device_ids?: string[] | undefined;
|
|
14550
14577
|
limit?: number;
|
|
@@ -14560,7 +14587,7 @@ export interface Routes {
|
|
|
14560
14587
|
/** Unique identifier for the device. */
|
|
14561
14588
|
device_id: string;
|
|
14562
14589
|
/** Type of the device. */
|
|
14563
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
14590
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
14564
14591
|
/** Optional nickname to describe the device, settable through Seam */
|
|
14565
14592
|
nickname?: string | undefined;
|
|
14566
14593
|
/** 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. */
|
|
@@ -14846,6 +14873,9 @@ export interface Routes {
|
|
|
14846
14873
|
bridge_name: string;
|
|
14847
14874
|
keypad_id?: number | undefined;
|
|
14848
14875
|
} | undefined;
|
|
14876
|
+
visionline_metadata?: {
|
|
14877
|
+
encoder_id: string;
|
|
14878
|
+
} | undefined;
|
|
14849
14879
|
}) & ({
|
|
14850
14880
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
14851
14881
|
code_constraints?: (Array<{
|
|
@@ -16178,7 +16208,7 @@ export interface Routes {
|
|
|
16178
16208
|
/** Unique identifier for the device. */
|
|
16179
16209
|
device_id: string;
|
|
16180
16210
|
/** Type of the device. */
|
|
16181
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
16211
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
16182
16212
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16183
16213
|
nickname?: string | undefined;
|
|
16184
16214
|
/** 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. */
|
|
@@ -16464,6 +16494,9 @@ export interface Routes {
|
|
|
16464
16494
|
bridge_name: string;
|
|
16465
16495
|
keypad_id?: number | undefined;
|
|
16466
16496
|
} | undefined;
|
|
16497
|
+
visionline_metadata?: {
|
|
16498
|
+
encoder_id: string;
|
|
16499
|
+
} | undefined;
|
|
16467
16500
|
}) & ({
|
|
16468
16501
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
16469
16502
|
code_constraints?: (Array<{
|
|
@@ -16612,7 +16645,7 @@ export interface Routes {
|
|
|
16612
16645
|
/** Unique identifier for the device. */
|
|
16613
16646
|
device_id: string;
|
|
16614
16647
|
/** Type of the device. */
|
|
16615
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
16648
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
16616
16649
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16617
16650
|
nickname?: string | undefined;
|
|
16618
16651
|
/** 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. */
|
|
@@ -16898,6 +16931,9 @@ export interface Routes {
|
|
|
16898
16931
|
bridge_name: string;
|
|
16899
16932
|
keypad_id?: number | undefined;
|
|
16900
16933
|
} | undefined;
|
|
16934
|
+
visionline_metadata?: {
|
|
16935
|
+
encoder_id: string;
|
|
16936
|
+
} | undefined;
|
|
16901
16937
|
}) & ({
|
|
16902
16938
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
16903
16939
|
code_constraints?: (Array<{
|