@seamapi/types 1.330.0 → 1.332.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 +755 -106
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1767 -195
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/models/devices/device.d.ts +380 -16
- package/lib/seam/connect/models/devices/device.js +125 -5
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +235 -11
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +235 -11
- package/lib/seam/connect/openapi.d.ts +42 -27
- package/lib/seam/connect/openapi.js +682 -95
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1080 -111
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/devices/device.ts +143 -6
- package/src/lib/seam/connect/openapi.ts +720 -76
- package/src/lib/seam/connect/route-types.ts +1497 -68
package/dist/connect.d.cts
CHANGED
|
@@ -951,7 +951,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
951
951
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
952
952
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
953
953
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
954
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
954
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
955
955
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
956
956
|
created_at: z.ZodString;
|
|
957
957
|
workspace_id: z.ZodString;
|
|
@@ -1130,7 +1130,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1130
1130
|
credential_id?: string | undefined;
|
|
1131
1131
|
} | undefined;
|
|
1132
1132
|
is_one_time_use?: boolean | undefined;
|
|
1133
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1133
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1134
1134
|
external_type_display_name?: string | undefined;
|
|
1135
1135
|
acs_user_id?: string | undefined;
|
|
1136
1136
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1192,7 +1192,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1192
1192
|
credential_id?: string | undefined;
|
|
1193
1193
|
} | undefined;
|
|
1194
1194
|
is_one_time_use?: boolean | undefined;
|
|
1195
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1195
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1196
1196
|
external_type_display_name?: string | undefined;
|
|
1197
1197
|
acs_user_id?: string | undefined;
|
|
1198
1198
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1217,7 +1217,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1217
1217
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1218
1218
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1219
1219
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1220
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
1220
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
1221
1221
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1222
1222
|
created_at: z.ZodString;
|
|
1223
1223
|
workspace_id: z.ZodString;
|
|
@@ -1396,7 +1396,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1396
1396
|
credential_id?: string | undefined;
|
|
1397
1397
|
} | undefined;
|
|
1398
1398
|
is_one_time_use?: boolean | undefined;
|
|
1399
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1399
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1400
1400
|
external_type_display_name?: string | undefined;
|
|
1401
1401
|
acs_user_id?: string | undefined;
|
|
1402
1402
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1458,7 +1458,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1458
1458
|
credential_id?: string | undefined;
|
|
1459
1459
|
} | undefined;
|
|
1460
1460
|
is_one_time_use?: boolean | undefined;
|
|
1461
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1461
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1462
1462
|
external_type_display_name?: string | undefined;
|
|
1463
1463
|
acs_user_id?: string | undefined;
|
|
1464
1464
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2822,7 +2822,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2822
2822
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2823
2823
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2824
2824
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
2825
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
2825
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
2826
2826
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2827
2827
|
created_at: z.ZodString;
|
|
2828
2828
|
workspace_id: z.ZodString;
|
|
@@ -3001,7 +3001,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3001
3001
|
credential_id?: string | undefined;
|
|
3002
3002
|
} | undefined;
|
|
3003
3003
|
is_one_time_use?: boolean | undefined;
|
|
3004
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3004
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3005
3005
|
external_type_display_name?: string | undefined;
|
|
3006
3006
|
acs_user_id?: string | undefined;
|
|
3007
3007
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3063,7 +3063,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3063
3063
|
credential_id?: string | undefined;
|
|
3064
3064
|
} | undefined;
|
|
3065
3065
|
is_one_time_use?: boolean | undefined;
|
|
3066
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3066
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3067
3067
|
external_type_display_name?: string | undefined;
|
|
3068
3068
|
acs_user_id?: string | undefined;
|
|
3069
3069
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3087,7 +3087,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3087
3087
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
3088
3088
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3089
3089
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
3090
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
3090
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
3091
3091
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
3092
3092
|
created_at: z.ZodString;
|
|
3093
3093
|
workspace_id: z.ZodString;
|
|
@@ -3266,7 +3266,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3266
3266
|
credential_id?: string | undefined;
|
|
3267
3267
|
} | undefined;
|
|
3268
3268
|
is_one_time_use?: boolean | undefined;
|
|
3269
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3269
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3270
3270
|
external_type_display_name?: string | undefined;
|
|
3271
3271
|
acs_user_id?: string | undefined;
|
|
3272
3272
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3328,7 +3328,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3328
3328
|
credential_id?: string | undefined;
|
|
3329
3329
|
} | undefined;
|
|
3330
3330
|
is_one_time_use?: boolean | undefined;
|
|
3331
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3331
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3332
3332
|
external_type_display_name?: string | undefined;
|
|
3333
3333
|
acs_user_id?: string | undefined;
|
|
3334
3334
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3427,7 +3427,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3427
3427
|
credential_id?: string | undefined;
|
|
3428
3428
|
} | undefined;
|
|
3429
3429
|
is_one_time_use?: boolean | undefined;
|
|
3430
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3430
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3431
3431
|
external_type_display_name?: string | undefined;
|
|
3432
3432
|
acs_user_id?: string | undefined;
|
|
3433
3433
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3489,7 +3489,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3489
3489
|
credential_id?: string | undefined;
|
|
3490
3490
|
} | undefined;
|
|
3491
3491
|
is_one_time_use?: boolean | undefined;
|
|
3492
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3492
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3493
3493
|
external_type_display_name?: string | undefined;
|
|
3494
3494
|
acs_user_id?: string | undefined;
|
|
3495
3495
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3578,7 +3578,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3578
3578
|
credential_id?: string | undefined;
|
|
3579
3579
|
} | undefined;
|
|
3580
3580
|
is_one_time_use?: boolean | undefined;
|
|
3581
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3581
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3582
3582
|
external_type_display_name?: string | undefined;
|
|
3583
3583
|
acs_user_id?: string | undefined;
|
|
3584
3584
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3640,7 +3640,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3640
3640
|
credential_id?: string | undefined;
|
|
3641
3641
|
} | undefined;
|
|
3642
3642
|
is_one_time_use?: boolean | undefined;
|
|
3643
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3643
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3644
3644
|
external_type_display_name?: string | undefined;
|
|
3645
3645
|
acs_user_id?: string | undefined;
|
|
3646
3646
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3734,7 +3734,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3734
3734
|
credential_id?: string | undefined;
|
|
3735
3735
|
} | undefined;
|
|
3736
3736
|
is_one_time_use?: boolean | undefined;
|
|
3737
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3737
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3738
3738
|
external_type_display_name?: string | undefined;
|
|
3739
3739
|
acs_user_id?: string | undefined;
|
|
3740
3740
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3796,7 +3796,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3796
3796
|
credential_id?: string | undefined;
|
|
3797
3797
|
} | undefined;
|
|
3798
3798
|
is_one_time_use?: boolean | undefined;
|
|
3799
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3799
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3800
3800
|
external_type_display_name?: string | undefined;
|
|
3801
3801
|
acs_user_id?: string | undefined;
|
|
3802
3802
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3891,7 +3891,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3891
3891
|
credential_id?: string | undefined;
|
|
3892
3892
|
} | undefined;
|
|
3893
3893
|
is_one_time_use?: boolean | undefined;
|
|
3894
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3894
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3895
3895
|
external_type_display_name?: string | undefined;
|
|
3896
3896
|
acs_user_id?: string | undefined;
|
|
3897
3897
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3953,7 +3953,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3953
3953
|
credential_id?: string | undefined;
|
|
3954
3954
|
} | undefined;
|
|
3955
3955
|
is_one_time_use?: boolean | undefined;
|
|
3956
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3956
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
3957
3957
|
external_type_display_name?: string | undefined;
|
|
3958
3958
|
acs_user_id?: string | undefined;
|
|
3959
3959
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4075,7 +4075,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4075
4075
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
4076
4076
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4077
4077
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4078
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
4078
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
4079
4079
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
4080
4080
|
created_at: z.ZodString;
|
|
4081
4081
|
workspace_id: z.ZodString;
|
|
@@ -4254,7 +4254,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4254
4254
|
credential_id?: string | undefined;
|
|
4255
4255
|
} | undefined;
|
|
4256
4256
|
is_one_time_use?: boolean | undefined;
|
|
4257
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4257
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4258
4258
|
external_type_display_name?: string | undefined;
|
|
4259
4259
|
acs_user_id?: string | undefined;
|
|
4260
4260
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4316,7 +4316,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4316
4316
|
credential_id?: string | undefined;
|
|
4317
4317
|
} | undefined;
|
|
4318
4318
|
is_one_time_use?: boolean | undefined;
|
|
4319
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4319
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4320
4320
|
external_type_display_name?: string | undefined;
|
|
4321
4321
|
acs_user_id?: string | undefined;
|
|
4322
4322
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4340,7 +4340,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4340
4340
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
4341
4341
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4342
4342
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4343
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
4343
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
4344
4344
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
4345
4345
|
created_at: z.ZodString;
|
|
4346
4346
|
workspace_id: z.ZodString;
|
|
@@ -4519,7 +4519,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4519
4519
|
credential_id?: string | undefined;
|
|
4520
4520
|
} | undefined;
|
|
4521
4521
|
is_one_time_use?: boolean | undefined;
|
|
4522
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4522
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4523
4523
|
external_type_display_name?: string | undefined;
|
|
4524
4524
|
acs_user_id?: string | undefined;
|
|
4525
4525
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4581,7 +4581,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4581
4581
|
credential_id?: string | undefined;
|
|
4582
4582
|
} | undefined;
|
|
4583
4583
|
is_one_time_use?: boolean | undefined;
|
|
4584
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4584
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4585
4585
|
external_type_display_name?: string | undefined;
|
|
4586
4586
|
acs_user_id?: string | undefined;
|
|
4587
4587
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4648,7 +4648,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4648
4648
|
credential_id?: string | undefined;
|
|
4649
4649
|
} | undefined;
|
|
4650
4650
|
is_one_time_use?: boolean | undefined;
|
|
4651
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4651
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4652
4652
|
external_type_display_name?: string | undefined;
|
|
4653
4653
|
acs_user_id?: string | undefined;
|
|
4654
4654
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4710,7 +4710,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4710
4710
|
credential_id?: string | undefined;
|
|
4711
4711
|
} | undefined;
|
|
4712
4712
|
is_one_time_use?: boolean | undefined;
|
|
4713
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4713
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4714
4714
|
external_type_display_name?: string | undefined;
|
|
4715
4715
|
acs_user_id?: string | undefined;
|
|
4716
4716
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4778,7 +4778,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4778
4778
|
credential_id?: string | undefined;
|
|
4779
4779
|
} | undefined;
|
|
4780
4780
|
is_one_time_use?: boolean | undefined;
|
|
4781
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4781
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4782
4782
|
external_type_display_name?: string | undefined;
|
|
4783
4783
|
acs_user_id?: string | undefined;
|
|
4784
4784
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4840,7 +4840,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4840
4840
|
credential_id?: string | undefined;
|
|
4841
4841
|
} | undefined;
|
|
4842
4842
|
is_one_time_use?: boolean | undefined;
|
|
4843
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
4843
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4844
4844
|
external_type_display_name?: string | undefined;
|
|
4845
4845
|
acs_user_id?: string | undefined;
|
|
4846
4846
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6310,17 +6310,157 @@ declare const device_error: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6310
6310
|
is_device_error: true;
|
|
6311
6311
|
}>]>;
|
|
6312
6312
|
type DeviceError = z.infer<typeof device_error>;
|
|
6313
|
-
declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
|
|
6313
|
+
declare const device_warning: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6314
6314
|
message: z.ZodString;
|
|
6315
6315
|
}, {
|
|
6316
|
-
warning_code: z.
|
|
6316
|
+
warning_code: z.ZodLiteral<"partial_backup_access_code_pool">;
|
|
6317
6317
|
}>, "strip", z.ZodTypeAny, {
|
|
6318
6318
|
message: string;
|
|
6319
|
-
warning_code:
|
|
6319
|
+
warning_code: "partial_backup_access_code_pool";
|
|
6320
6320
|
}, {
|
|
6321
6321
|
message: string;
|
|
6322
|
-
warning_code:
|
|
6323
|
-
}
|
|
6322
|
+
warning_code: "partial_backup_access_code_pool";
|
|
6323
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6324
|
+
message: z.ZodString;
|
|
6325
|
+
}, {
|
|
6326
|
+
warning_code: z.ZodLiteral<"many_active_backup_codes">;
|
|
6327
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6328
|
+
message: string;
|
|
6329
|
+
warning_code: "many_active_backup_codes";
|
|
6330
|
+
}, {
|
|
6331
|
+
message: string;
|
|
6332
|
+
warning_code: "many_active_backup_codes";
|
|
6333
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6334
|
+
message: z.ZodString;
|
|
6335
|
+
}, {
|
|
6336
|
+
warning_code: z.ZodLiteral<"salto_unknown_device_type">;
|
|
6337
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6338
|
+
message: string;
|
|
6339
|
+
warning_code: "salto_unknown_device_type";
|
|
6340
|
+
}, {
|
|
6341
|
+
message: string;
|
|
6342
|
+
warning_code: "salto_unknown_device_type";
|
|
6343
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6344
|
+
message: z.ZodString;
|
|
6345
|
+
}, {
|
|
6346
|
+
warning_code: z.ZodLiteral<"wyze_device_missing_gateway">;
|
|
6347
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6348
|
+
message: string;
|
|
6349
|
+
warning_code: "wyze_device_missing_gateway";
|
|
6350
|
+
}, {
|
|
6351
|
+
message: string;
|
|
6352
|
+
warning_code: "wyze_device_missing_gateway";
|
|
6353
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6354
|
+
message: z.ZodString;
|
|
6355
|
+
}, {
|
|
6356
|
+
warning_code: z.ZodLiteral<"functional_offline_device">;
|
|
6357
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6358
|
+
message: string;
|
|
6359
|
+
warning_code: "functional_offline_device";
|
|
6360
|
+
}, {
|
|
6361
|
+
message: string;
|
|
6362
|
+
warning_code: "functional_offline_device";
|
|
6363
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6364
|
+
message: z.ZodString;
|
|
6365
|
+
}, {
|
|
6366
|
+
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
6367
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6368
|
+
message: string;
|
|
6369
|
+
warning_code: "third_party_integration_detected";
|
|
6370
|
+
}, {
|
|
6371
|
+
message: string;
|
|
6372
|
+
warning_code: "third_party_integration_detected";
|
|
6373
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6374
|
+
message: z.ZodString;
|
|
6375
|
+
}, {
|
|
6376
|
+
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
6377
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6378
|
+
message: string;
|
|
6379
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
6380
|
+
}, {
|
|
6381
|
+
message: string;
|
|
6382
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
6383
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6384
|
+
message: z.ZodString;
|
|
6385
|
+
}, {
|
|
6386
|
+
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
6387
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6388
|
+
message: string;
|
|
6389
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
6390
|
+
}, {
|
|
6391
|
+
message: string;
|
|
6392
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
6393
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6394
|
+
message: z.ZodString;
|
|
6395
|
+
}, {
|
|
6396
|
+
warning_code: z.ZodLiteral<"ttlock_weak_gateway_signal">;
|
|
6397
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6398
|
+
message: string;
|
|
6399
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
6400
|
+
}, {
|
|
6401
|
+
message: string;
|
|
6402
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
6403
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6404
|
+
message: z.ZodString;
|
|
6405
|
+
}, {
|
|
6406
|
+
warning_code: z.ZodLiteral<"temperature_threshold_exceeded">;
|
|
6407
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6408
|
+
message: string;
|
|
6409
|
+
warning_code: "temperature_threshold_exceeded";
|
|
6410
|
+
}, {
|
|
6411
|
+
message: string;
|
|
6412
|
+
warning_code: "temperature_threshold_exceeded";
|
|
6413
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6414
|
+
message: z.ZodString;
|
|
6415
|
+
}, {
|
|
6416
|
+
warning_code: z.ZodLiteral<"device_communication_degraded">;
|
|
6417
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6418
|
+
message: string;
|
|
6419
|
+
warning_code: "device_communication_degraded";
|
|
6420
|
+
}, {
|
|
6421
|
+
message: string;
|
|
6422
|
+
warning_code: "device_communication_degraded";
|
|
6423
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6424
|
+
message: z.ZodString;
|
|
6425
|
+
}, {
|
|
6426
|
+
warning_code: z.ZodLiteral<"scheduled_maintenance_window">;
|
|
6427
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6428
|
+
message: string;
|
|
6429
|
+
warning_code: "scheduled_maintenance_window";
|
|
6430
|
+
}, {
|
|
6431
|
+
message: string;
|
|
6432
|
+
warning_code: "scheduled_maintenance_window";
|
|
6433
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6434
|
+
message: z.ZodString;
|
|
6435
|
+
}, {
|
|
6436
|
+
warning_code: z.ZodLiteral<"device_has_flaky_connection">;
|
|
6437
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6438
|
+
message: string;
|
|
6439
|
+
warning_code: "device_has_flaky_connection";
|
|
6440
|
+
}, {
|
|
6441
|
+
message: string;
|
|
6442
|
+
warning_code: "device_has_flaky_connection";
|
|
6443
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6444
|
+
message: z.ZodString;
|
|
6445
|
+
}, {
|
|
6446
|
+
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
6447
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6448
|
+
message: string;
|
|
6449
|
+
warning_code: "salto_office_mode";
|
|
6450
|
+
}, {
|
|
6451
|
+
message: string;
|
|
6452
|
+
warning_code: "salto_office_mode";
|
|
6453
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6454
|
+
message: z.ZodString;
|
|
6455
|
+
}, {
|
|
6456
|
+
warning_code: z.ZodLiteral<"salto_privacy_mode">;
|
|
6457
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6458
|
+
message: string;
|
|
6459
|
+
warning_code: "salto_privacy_mode";
|
|
6460
|
+
}, {
|
|
6461
|
+
message: string;
|
|
6462
|
+
warning_code: "salto_privacy_mode";
|
|
6463
|
+
}>]>;
|
|
6324
6464
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
6325
6465
|
declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
6326
6466
|
device_id: z.ZodString;
|
|
@@ -8348,17 +8488,157 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8348
8488
|
is_connected_account_error: true;
|
|
8349
8489
|
error_code: string;
|
|
8350
8490
|
}>]>, "many">;
|
|
8351
|
-
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
8491
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8352
8492
|
message: z.ZodString;
|
|
8353
8493
|
}, {
|
|
8354
|
-
warning_code: z.
|
|
8494
|
+
warning_code: z.ZodLiteral<"partial_backup_access_code_pool">;
|
|
8355
8495
|
}>, "strip", z.ZodTypeAny, {
|
|
8356
8496
|
message: string;
|
|
8357
|
-
warning_code:
|
|
8497
|
+
warning_code: "partial_backup_access_code_pool";
|
|
8358
8498
|
}, {
|
|
8359
8499
|
message: string;
|
|
8360
|
-
warning_code:
|
|
8361
|
-
}>,
|
|
8500
|
+
warning_code: "partial_backup_access_code_pool";
|
|
8501
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8502
|
+
message: z.ZodString;
|
|
8503
|
+
}, {
|
|
8504
|
+
warning_code: z.ZodLiteral<"many_active_backup_codes">;
|
|
8505
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8506
|
+
message: string;
|
|
8507
|
+
warning_code: "many_active_backup_codes";
|
|
8508
|
+
}, {
|
|
8509
|
+
message: string;
|
|
8510
|
+
warning_code: "many_active_backup_codes";
|
|
8511
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8512
|
+
message: z.ZodString;
|
|
8513
|
+
}, {
|
|
8514
|
+
warning_code: z.ZodLiteral<"salto_unknown_device_type">;
|
|
8515
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8516
|
+
message: string;
|
|
8517
|
+
warning_code: "salto_unknown_device_type";
|
|
8518
|
+
}, {
|
|
8519
|
+
message: string;
|
|
8520
|
+
warning_code: "salto_unknown_device_type";
|
|
8521
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8522
|
+
message: z.ZodString;
|
|
8523
|
+
}, {
|
|
8524
|
+
warning_code: z.ZodLiteral<"wyze_device_missing_gateway">;
|
|
8525
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8526
|
+
message: string;
|
|
8527
|
+
warning_code: "wyze_device_missing_gateway";
|
|
8528
|
+
}, {
|
|
8529
|
+
message: string;
|
|
8530
|
+
warning_code: "wyze_device_missing_gateway";
|
|
8531
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8532
|
+
message: z.ZodString;
|
|
8533
|
+
}, {
|
|
8534
|
+
warning_code: z.ZodLiteral<"functional_offline_device">;
|
|
8535
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8536
|
+
message: string;
|
|
8537
|
+
warning_code: "functional_offline_device";
|
|
8538
|
+
}, {
|
|
8539
|
+
message: string;
|
|
8540
|
+
warning_code: "functional_offline_device";
|
|
8541
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8542
|
+
message: z.ZodString;
|
|
8543
|
+
}, {
|
|
8544
|
+
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
8545
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8546
|
+
message: string;
|
|
8547
|
+
warning_code: "third_party_integration_detected";
|
|
8548
|
+
}, {
|
|
8549
|
+
message: string;
|
|
8550
|
+
warning_code: "third_party_integration_detected";
|
|
8551
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8552
|
+
message: z.ZodString;
|
|
8553
|
+
}, {
|
|
8554
|
+
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
8555
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8556
|
+
message: string;
|
|
8557
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
8558
|
+
}, {
|
|
8559
|
+
message: string;
|
|
8560
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
8561
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8562
|
+
message: z.ZodString;
|
|
8563
|
+
}, {
|
|
8564
|
+
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
8565
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8566
|
+
message: string;
|
|
8567
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
8568
|
+
}, {
|
|
8569
|
+
message: string;
|
|
8570
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
8571
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8572
|
+
message: z.ZodString;
|
|
8573
|
+
}, {
|
|
8574
|
+
warning_code: z.ZodLiteral<"ttlock_weak_gateway_signal">;
|
|
8575
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8576
|
+
message: string;
|
|
8577
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
8578
|
+
}, {
|
|
8579
|
+
message: string;
|
|
8580
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
8581
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8582
|
+
message: z.ZodString;
|
|
8583
|
+
}, {
|
|
8584
|
+
warning_code: z.ZodLiteral<"temperature_threshold_exceeded">;
|
|
8585
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8586
|
+
message: string;
|
|
8587
|
+
warning_code: "temperature_threshold_exceeded";
|
|
8588
|
+
}, {
|
|
8589
|
+
message: string;
|
|
8590
|
+
warning_code: "temperature_threshold_exceeded";
|
|
8591
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8592
|
+
message: z.ZodString;
|
|
8593
|
+
}, {
|
|
8594
|
+
warning_code: z.ZodLiteral<"device_communication_degraded">;
|
|
8595
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8596
|
+
message: string;
|
|
8597
|
+
warning_code: "device_communication_degraded";
|
|
8598
|
+
}, {
|
|
8599
|
+
message: string;
|
|
8600
|
+
warning_code: "device_communication_degraded";
|
|
8601
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8602
|
+
message: z.ZodString;
|
|
8603
|
+
}, {
|
|
8604
|
+
warning_code: z.ZodLiteral<"scheduled_maintenance_window">;
|
|
8605
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8606
|
+
message: string;
|
|
8607
|
+
warning_code: "scheduled_maintenance_window";
|
|
8608
|
+
}, {
|
|
8609
|
+
message: string;
|
|
8610
|
+
warning_code: "scheduled_maintenance_window";
|
|
8611
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8612
|
+
message: z.ZodString;
|
|
8613
|
+
}, {
|
|
8614
|
+
warning_code: z.ZodLiteral<"device_has_flaky_connection">;
|
|
8615
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8616
|
+
message: string;
|
|
8617
|
+
warning_code: "device_has_flaky_connection";
|
|
8618
|
+
}, {
|
|
8619
|
+
message: string;
|
|
8620
|
+
warning_code: "device_has_flaky_connection";
|
|
8621
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8622
|
+
message: z.ZodString;
|
|
8623
|
+
}, {
|
|
8624
|
+
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
8625
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8626
|
+
message: string;
|
|
8627
|
+
warning_code: "salto_office_mode";
|
|
8628
|
+
}, {
|
|
8629
|
+
message: string;
|
|
8630
|
+
warning_code: "salto_office_mode";
|
|
8631
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8632
|
+
message: z.ZodString;
|
|
8633
|
+
}, {
|
|
8634
|
+
warning_code: z.ZodLiteral<"salto_privacy_mode">;
|
|
8635
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8636
|
+
message: string;
|
|
8637
|
+
warning_code: "salto_privacy_mode";
|
|
8638
|
+
}, {
|
|
8639
|
+
message: string;
|
|
8640
|
+
warning_code: "salto_privacy_mode";
|
|
8641
|
+
}>]>, "many">;
|
|
8362
8642
|
created_at: z.ZodString;
|
|
8363
8643
|
is_managed: z.ZodLiteral<true>;
|
|
8364
8644
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -8435,10 +8715,52 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8435
8715
|
error_code: "subscription_required";
|
|
8436
8716
|
is_device_error: true;
|
|
8437
8717
|
})[];
|
|
8438
|
-
warnings: {
|
|
8718
|
+
warnings: ({
|
|
8439
8719
|
message: string;
|
|
8440
|
-
warning_code:
|
|
8441
|
-
}
|
|
8720
|
+
warning_code: "partial_backup_access_code_pool";
|
|
8721
|
+
} | {
|
|
8722
|
+
message: string;
|
|
8723
|
+
warning_code: "many_active_backup_codes";
|
|
8724
|
+
} | {
|
|
8725
|
+
message: string;
|
|
8726
|
+
warning_code: "salto_unknown_device_type";
|
|
8727
|
+
} | {
|
|
8728
|
+
message: string;
|
|
8729
|
+
warning_code: "salto_office_mode";
|
|
8730
|
+
} | {
|
|
8731
|
+
message: string;
|
|
8732
|
+
warning_code: "salto_privacy_mode";
|
|
8733
|
+
} | {
|
|
8734
|
+
message: string;
|
|
8735
|
+
warning_code: "wyze_device_missing_gateway";
|
|
8736
|
+
} | {
|
|
8737
|
+
message: string;
|
|
8738
|
+
warning_code: "functional_offline_device";
|
|
8739
|
+
} | {
|
|
8740
|
+
message: string;
|
|
8741
|
+
warning_code: "third_party_integration_detected";
|
|
8742
|
+
} | {
|
|
8743
|
+
message: string;
|
|
8744
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
8745
|
+
} | {
|
|
8746
|
+
message: string;
|
|
8747
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
8748
|
+
} | {
|
|
8749
|
+
message: string;
|
|
8750
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
8751
|
+
} | {
|
|
8752
|
+
message: string;
|
|
8753
|
+
warning_code: "temperature_threshold_exceeded";
|
|
8754
|
+
} | {
|
|
8755
|
+
message: string;
|
|
8756
|
+
warning_code: "device_communication_degraded";
|
|
8757
|
+
} | {
|
|
8758
|
+
message: string;
|
|
8759
|
+
warning_code: "scheduled_maintenance_window";
|
|
8760
|
+
} | {
|
|
8761
|
+
message: string;
|
|
8762
|
+
warning_code: "device_has_flaky_connection";
|
|
8763
|
+
})[];
|
|
8442
8764
|
custom_metadata: Record<string, string | boolean>;
|
|
8443
8765
|
display_name: string;
|
|
8444
8766
|
device_id: string;
|
|
@@ -8898,10 +9220,52 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8898
9220
|
error_code: "subscription_required";
|
|
8899
9221
|
is_device_error: true;
|
|
8900
9222
|
})[];
|
|
8901
|
-
warnings: {
|
|
9223
|
+
warnings: ({
|
|
8902
9224
|
message: string;
|
|
8903
|
-
warning_code:
|
|
8904
|
-
}
|
|
9225
|
+
warning_code: "partial_backup_access_code_pool";
|
|
9226
|
+
} | {
|
|
9227
|
+
message: string;
|
|
9228
|
+
warning_code: "many_active_backup_codes";
|
|
9229
|
+
} | {
|
|
9230
|
+
message: string;
|
|
9231
|
+
warning_code: "salto_unknown_device_type";
|
|
9232
|
+
} | {
|
|
9233
|
+
message: string;
|
|
9234
|
+
warning_code: "salto_office_mode";
|
|
9235
|
+
} | {
|
|
9236
|
+
message: string;
|
|
9237
|
+
warning_code: "salto_privacy_mode";
|
|
9238
|
+
} | {
|
|
9239
|
+
message: string;
|
|
9240
|
+
warning_code: "wyze_device_missing_gateway";
|
|
9241
|
+
} | {
|
|
9242
|
+
message: string;
|
|
9243
|
+
warning_code: "functional_offline_device";
|
|
9244
|
+
} | {
|
|
9245
|
+
message: string;
|
|
9246
|
+
warning_code: "third_party_integration_detected";
|
|
9247
|
+
} | {
|
|
9248
|
+
message: string;
|
|
9249
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
9250
|
+
} | {
|
|
9251
|
+
message: string;
|
|
9252
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
9253
|
+
} | {
|
|
9254
|
+
message: string;
|
|
9255
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
9256
|
+
} | {
|
|
9257
|
+
message: string;
|
|
9258
|
+
warning_code: "temperature_threshold_exceeded";
|
|
9259
|
+
} | {
|
|
9260
|
+
message: string;
|
|
9261
|
+
warning_code: "device_communication_degraded";
|
|
9262
|
+
} | {
|
|
9263
|
+
message: string;
|
|
9264
|
+
warning_code: "scheduled_maintenance_window";
|
|
9265
|
+
} | {
|
|
9266
|
+
message: string;
|
|
9267
|
+
warning_code: "device_has_flaky_connection";
|
|
9268
|
+
})[];
|
|
8905
9269
|
custom_metadata: Record<string, string | boolean>;
|
|
8906
9270
|
display_name: string;
|
|
8907
9271
|
device_id: string;
|
|
@@ -11431,17 +11795,157 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
11431
11795
|
is_connected_account_error: true;
|
|
11432
11796
|
error_code: string;
|
|
11433
11797
|
}>]>, "many">;
|
|
11434
|
-
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
11798
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
11435
11799
|
message: z.ZodString;
|
|
11436
11800
|
}, {
|
|
11437
|
-
warning_code: z.
|
|
11801
|
+
warning_code: z.ZodLiteral<"partial_backup_access_code_pool">;
|
|
11438
11802
|
}>, "strip", z.ZodTypeAny, {
|
|
11439
11803
|
message: string;
|
|
11440
|
-
warning_code:
|
|
11804
|
+
warning_code: "partial_backup_access_code_pool";
|
|
11441
11805
|
}, {
|
|
11442
11806
|
message: string;
|
|
11443
|
-
warning_code:
|
|
11444
|
-
}>,
|
|
11807
|
+
warning_code: "partial_backup_access_code_pool";
|
|
11808
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11809
|
+
message: z.ZodString;
|
|
11810
|
+
}, {
|
|
11811
|
+
warning_code: z.ZodLiteral<"many_active_backup_codes">;
|
|
11812
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11813
|
+
message: string;
|
|
11814
|
+
warning_code: "many_active_backup_codes";
|
|
11815
|
+
}, {
|
|
11816
|
+
message: string;
|
|
11817
|
+
warning_code: "many_active_backup_codes";
|
|
11818
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11819
|
+
message: z.ZodString;
|
|
11820
|
+
}, {
|
|
11821
|
+
warning_code: z.ZodLiteral<"salto_unknown_device_type">;
|
|
11822
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11823
|
+
message: string;
|
|
11824
|
+
warning_code: "salto_unknown_device_type";
|
|
11825
|
+
}, {
|
|
11826
|
+
message: string;
|
|
11827
|
+
warning_code: "salto_unknown_device_type";
|
|
11828
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11829
|
+
message: z.ZodString;
|
|
11830
|
+
}, {
|
|
11831
|
+
warning_code: z.ZodLiteral<"wyze_device_missing_gateway">;
|
|
11832
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11833
|
+
message: string;
|
|
11834
|
+
warning_code: "wyze_device_missing_gateway";
|
|
11835
|
+
}, {
|
|
11836
|
+
message: string;
|
|
11837
|
+
warning_code: "wyze_device_missing_gateway";
|
|
11838
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11839
|
+
message: z.ZodString;
|
|
11840
|
+
}, {
|
|
11841
|
+
warning_code: z.ZodLiteral<"functional_offline_device">;
|
|
11842
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11843
|
+
message: string;
|
|
11844
|
+
warning_code: "functional_offline_device";
|
|
11845
|
+
}, {
|
|
11846
|
+
message: string;
|
|
11847
|
+
warning_code: "functional_offline_device";
|
|
11848
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11849
|
+
message: z.ZodString;
|
|
11850
|
+
}, {
|
|
11851
|
+
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
11852
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11853
|
+
message: string;
|
|
11854
|
+
warning_code: "third_party_integration_detected";
|
|
11855
|
+
}, {
|
|
11856
|
+
message: string;
|
|
11857
|
+
warning_code: "third_party_integration_detected";
|
|
11858
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11859
|
+
message: z.ZodString;
|
|
11860
|
+
}, {
|
|
11861
|
+
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
11862
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11863
|
+
message: string;
|
|
11864
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
11865
|
+
}, {
|
|
11866
|
+
message: string;
|
|
11867
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
11868
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11869
|
+
message: z.ZodString;
|
|
11870
|
+
}, {
|
|
11871
|
+
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
11872
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11873
|
+
message: string;
|
|
11874
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
11875
|
+
}, {
|
|
11876
|
+
message: string;
|
|
11877
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
11878
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11879
|
+
message: z.ZodString;
|
|
11880
|
+
}, {
|
|
11881
|
+
warning_code: z.ZodLiteral<"ttlock_weak_gateway_signal">;
|
|
11882
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11883
|
+
message: string;
|
|
11884
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
11885
|
+
}, {
|
|
11886
|
+
message: string;
|
|
11887
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
11888
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11889
|
+
message: z.ZodString;
|
|
11890
|
+
}, {
|
|
11891
|
+
warning_code: z.ZodLiteral<"temperature_threshold_exceeded">;
|
|
11892
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11893
|
+
message: string;
|
|
11894
|
+
warning_code: "temperature_threshold_exceeded";
|
|
11895
|
+
}, {
|
|
11896
|
+
message: string;
|
|
11897
|
+
warning_code: "temperature_threshold_exceeded";
|
|
11898
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11899
|
+
message: z.ZodString;
|
|
11900
|
+
}, {
|
|
11901
|
+
warning_code: z.ZodLiteral<"device_communication_degraded">;
|
|
11902
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11903
|
+
message: string;
|
|
11904
|
+
warning_code: "device_communication_degraded";
|
|
11905
|
+
}, {
|
|
11906
|
+
message: string;
|
|
11907
|
+
warning_code: "device_communication_degraded";
|
|
11908
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11909
|
+
message: z.ZodString;
|
|
11910
|
+
}, {
|
|
11911
|
+
warning_code: z.ZodLiteral<"scheduled_maintenance_window">;
|
|
11912
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11913
|
+
message: string;
|
|
11914
|
+
warning_code: "scheduled_maintenance_window";
|
|
11915
|
+
}, {
|
|
11916
|
+
message: string;
|
|
11917
|
+
warning_code: "scheduled_maintenance_window";
|
|
11918
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11919
|
+
message: z.ZodString;
|
|
11920
|
+
}, {
|
|
11921
|
+
warning_code: z.ZodLiteral<"device_has_flaky_connection">;
|
|
11922
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11923
|
+
message: string;
|
|
11924
|
+
warning_code: "device_has_flaky_connection";
|
|
11925
|
+
}, {
|
|
11926
|
+
message: string;
|
|
11927
|
+
warning_code: "device_has_flaky_connection";
|
|
11928
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11929
|
+
message: z.ZodString;
|
|
11930
|
+
}, {
|
|
11931
|
+
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
11932
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11933
|
+
message: string;
|
|
11934
|
+
warning_code: "salto_office_mode";
|
|
11935
|
+
}, {
|
|
11936
|
+
message: string;
|
|
11937
|
+
warning_code: "salto_office_mode";
|
|
11938
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11939
|
+
message: z.ZodString;
|
|
11940
|
+
}, {
|
|
11941
|
+
warning_code: z.ZodLiteral<"salto_privacy_mode">;
|
|
11942
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11943
|
+
message: string;
|
|
11944
|
+
warning_code: "salto_privacy_mode";
|
|
11945
|
+
}, {
|
|
11946
|
+
message: string;
|
|
11947
|
+
warning_code: "salto_privacy_mode";
|
|
11948
|
+
}>]>, "many">;
|
|
11445
11949
|
created_at: z.ZodString;
|
|
11446
11950
|
is_managed: z.ZodLiteral<true>;
|
|
11447
11951
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -11667,10 +12171,52 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
11667
12171
|
error_code: "subscription_required";
|
|
11668
12172
|
is_device_error: true;
|
|
11669
12173
|
})[];
|
|
11670
|
-
warnings: {
|
|
12174
|
+
warnings: ({
|
|
11671
12175
|
message: string;
|
|
11672
|
-
warning_code:
|
|
11673
|
-
}
|
|
12176
|
+
warning_code: "partial_backup_access_code_pool";
|
|
12177
|
+
} | {
|
|
12178
|
+
message: string;
|
|
12179
|
+
warning_code: "many_active_backup_codes";
|
|
12180
|
+
} | {
|
|
12181
|
+
message: string;
|
|
12182
|
+
warning_code: "salto_unknown_device_type";
|
|
12183
|
+
} | {
|
|
12184
|
+
message: string;
|
|
12185
|
+
warning_code: "salto_office_mode";
|
|
12186
|
+
} | {
|
|
12187
|
+
message: string;
|
|
12188
|
+
warning_code: "salto_privacy_mode";
|
|
12189
|
+
} | {
|
|
12190
|
+
message: string;
|
|
12191
|
+
warning_code: "wyze_device_missing_gateway";
|
|
12192
|
+
} | {
|
|
12193
|
+
message: string;
|
|
12194
|
+
warning_code: "functional_offline_device";
|
|
12195
|
+
} | {
|
|
12196
|
+
message: string;
|
|
12197
|
+
warning_code: "third_party_integration_detected";
|
|
12198
|
+
} | {
|
|
12199
|
+
message: string;
|
|
12200
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
12201
|
+
} | {
|
|
12202
|
+
message: string;
|
|
12203
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
12204
|
+
} | {
|
|
12205
|
+
message: string;
|
|
12206
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
12207
|
+
} | {
|
|
12208
|
+
message: string;
|
|
12209
|
+
warning_code: "temperature_threshold_exceeded";
|
|
12210
|
+
} | {
|
|
12211
|
+
message: string;
|
|
12212
|
+
warning_code: "device_communication_degraded";
|
|
12213
|
+
} | {
|
|
12214
|
+
message: string;
|
|
12215
|
+
warning_code: "scheduled_maintenance_window";
|
|
12216
|
+
} | {
|
|
12217
|
+
message: string;
|
|
12218
|
+
warning_code: "device_has_flaky_connection";
|
|
12219
|
+
})[];
|
|
11674
12220
|
device_id: string;
|
|
11675
12221
|
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" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
11676
12222
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
@@ -11780,10 +12326,52 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
11780
12326
|
error_code: "subscription_required";
|
|
11781
12327
|
is_device_error: true;
|
|
11782
12328
|
})[];
|
|
11783
|
-
warnings: {
|
|
12329
|
+
warnings: ({
|
|
11784
12330
|
message: string;
|
|
11785
|
-
warning_code:
|
|
11786
|
-
}
|
|
12331
|
+
warning_code: "partial_backup_access_code_pool";
|
|
12332
|
+
} | {
|
|
12333
|
+
message: string;
|
|
12334
|
+
warning_code: "many_active_backup_codes";
|
|
12335
|
+
} | {
|
|
12336
|
+
message: string;
|
|
12337
|
+
warning_code: "salto_unknown_device_type";
|
|
12338
|
+
} | {
|
|
12339
|
+
message: string;
|
|
12340
|
+
warning_code: "salto_office_mode";
|
|
12341
|
+
} | {
|
|
12342
|
+
message: string;
|
|
12343
|
+
warning_code: "salto_privacy_mode";
|
|
12344
|
+
} | {
|
|
12345
|
+
message: string;
|
|
12346
|
+
warning_code: "wyze_device_missing_gateway";
|
|
12347
|
+
} | {
|
|
12348
|
+
message: string;
|
|
12349
|
+
warning_code: "functional_offline_device";
|
|
12350
|
+
} | {
|
|
12351
|
+
message: string;
|
|
12352
|
+
warning_code: "third_party_integration_detected";
|
|
12353
|
+
} | {
|
|
12354
|
+
message: string;
|
|
12355
|
+
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
12356
|
+
} | {
|
|
12357
|
+
message: string;
|
|
12358
|
+
warning_code: "ttlock_lock_gateway_unlocking_not_enabled";
|
|
12359
|
+
} | {
|
|
12360
|
+
message: string;
|
|
12361
|
+
warning_code: "ttlock_weak_gateway_signal";
|
|
12362
|
+
} | {
|
|
12363
|
+
message: string;
|
|
12364
|
+
warning_code: "temperature_threshold_exceeded";
|
|
12365
|
+
} | {
|
|
12366
|
+
message: string;
|
|
12367
|
+
warning_code: "device_communication_degraded";
|
|
12368
|
+
} | {
|
|
12369
|
+
message: string;
|
|
12370
|
+
warning_code: "scheduled_maintenance_window";
|
|
12371
|
+
} | {
|
|
12372
|
+
message: string;
|
|
12373
|
+
warning_code: "device_has_flaky_connection";
|
|
12374
|
+
})[];
|
|
11787
12375
|
device_id: string;
|
|
11788
12376
|
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" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
11789
12377
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
@@ -18046,16 +18634,21 @@ declare const _default: {
|
|
|
18046
18634
|
warnings: {
|
|
18047
18635
|
description: string;
|
|
18048
18636
|
items: {
|
|
18049
|
-
|
|
18050
|
-
|
|
18051
|
-
|
|
18052
|
-
|
|
18053
|
-
|
|
18054
|
-
|
|
18637
|
+
oneOf: {
|
|
18638
|
+
description: string;
|
|
18639
|
+
properties: {
|
|
18640
|
+
message: {
|
|
18641
|
+
type: string;
|
|
18642
|
+
};
|
|
18643
|
+
warning_code: {
|
|
18644
|
+
description: string;
|
|
18645
|
+
enum: string[];
|
|
18646
|
+
type: string;
|
|
18647
|
+
};
|
|
18055
18648
|
};
|
|
18056
|
-
|
|
18057
|
-
|
|
18058
|
-
|
|
18649
|
+
required: string[];
|
|
18650
|
+
type: string;
|
|
18651
|
+
}[];
|
|
18059
18652
|
};
|
|
18060
18653
|
type: string;
|
|
18061
18654
|
};
|
|
@@ -20907,16 +21500,21 @@ declare const _default: {
|
|
|
20907
21500
|
warnings: {
|
|
20908
21501
|
description: string;
|
|
20909
21502
|
items: {
|
|
20910
|
-
|
|
20911
|
-
|
|
20912
|
-
|
|
20913
|
-
|
|
20914
|
-
|
|
20915
|
-
|
|
21503
|
+
oneOf: {
|
|
21504
|
+
description: string;
|
|
21505
|
+
properties: {
|
|
21506
|
+
message: {
|
|
21507
|
+
type: string;
|
|
21508
|
+
};
|
|
21509
|
+
warning_code: {
|
|
21510
|
+
description: string;
|
|
21511
|
+
enum: string[];
|
|
21512
|
+
type: string;
|
|
21513
|
+
};
|
|
20916
21514
|
};
|
|
20917
|
-
|
|
20918
|
-
|
|
20919
|
-
|
|
21515
|
+
required: string[];
|
|
21516
|
+
type: string;
|
|
21517
|
+
}[];
|
|
20920
21518
|
};
|
|
20921
21519
|
type: string;
|
|
20922
21520
|
};
|
|
@@ -21409,16 +22007,21 @@ declare const _default: {
|
|
|
21409
22007
|
warnings: {
|
|
21410
22008
|
description: string;
|
|
21411
22009
|
items: {
|
|
21412
|
-
|
|
21413
|
-
|
|
21414
|
-
|
|
21415
|
-
|
|
21416
|
-
|
|
21417
|
-
|
|
22010
|
+
oneOf: {
|
|
22011
|
+
description: string;
|
|
22012
|
+
properties: {
|
|
22013
|
+
message: {
|
|
22014
|
+
type: string;
|
|
22015
|
+
};
|
|
22016
|
+
warning_code: {
|
|
22017
|
+
description: string;
|
|
22018
|
+
enum: string[];
|
|
22019
|
+
type: string;
|
|
22020
|
+
};
|
|
21418
22021
|
};
|
|
21419
|
-
|
|
21420
|
-
|
|
21421
|
-
|
|
22022
|
+
required: string[];
|
|
22023
|
+
type: string;
|
|
22024
|
+
}[];
|
|
21422
22025
|
};
|
|
21423
22026
|
type: string;
|
|
21424
22027
|
};
|
|
@@ -38142,7 +38745,7 @@ interface Routes {
|
|
|
38142
38745
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
38143
38746
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38144
38747
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38145
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
38748
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
38146
38749
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
38147
38750
|
external_type_display_name?: string | undefined;
|
|
38148
38751
|
/** Date and time at which the credential was created. */
|
|
@@ -38242,7 +38845,7 @@ interface Routes {
|
|
|
38242
38845
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
38243
38846
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38244
38847
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38245
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
38848
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
38246
38849
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
38247
38850
|
external_type_display_name?: string | undefined;
|
|
38248
38851
|
/** Date and time at which the credential was created. */
|
|
@@ -38379,7 +38982,7 @@ interface Routes {
|
|
|
38379
38982
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
38380
38983
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38381
38984
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38382
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
38985
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
38383
38986
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
38384
38987
|
external_type_display_name?: string | undefined;
|
|
38385
38988
|
/** Date and time at which the credential was created. */
|
|
@@ -38479,7 +39082,7 @@ interface Routes {
|
|
|
38479
39082
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
38480
39083
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38481
39084
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38482
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
39085
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
38483
39086
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
38484
39087
|
external_type_display_name?: string | undefined;
|
|
38485
39088
|
/** Date and time at which the credential was created. */
|
|
@@ -39249,7 +39852,7 @@ interface Routes {
|
|
|
39249
39852
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
39250
39853
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39251
39854
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39252
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
39855
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
39253
39856
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
39254
39857
|
external_type_display_name?: string | undefined;
|
|
39255
39858
|
/** Date and time at which the credential was created. */
|
|
@@ -39349,7 +39952,7 @@ interface Routes {
|
|
|
39349
39952
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
39350
39953
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39351
39954
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39352
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
39955
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
39353
39956
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
39354
39957
|
external_type_display_name?: string | undefined;
|
|
39355
39958
|
/** Date and time at which the credential was created. */
|
|
@@ -39486,7 +40089,7 @@ interface Routes {
|
|
|
39486
40089
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
39487
40090
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39488
40091
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39489
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
40092
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
39490
40093
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
39491
40094
|
external_type_display_name?: string | undefined;
|
|
39492
40095
|
/** Date and time at which the credential was created. */
|
|
@@ -39586,7 +40189,7 @@ interface Routes {
|
|
|
39586
40189
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
39587
40190
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39588
40191
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39589
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
40192
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
39590
40193
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
39591
40194
|
external_type_display_name?: string | undefined;
|
|
39592
40195
|
/** Date and time at which the credential was created. */
|
|
@@ -40760,7 +41363,7 @@ interface Routes {
|
|
|
40760
41363
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
40761
41364
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
40762
41365
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
40763
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
41366
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
40764
41367
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
40765
41368
|
external_type_display_name?: string | undefined;
|
|
40766
41369
|
/** Date and time at which the credential was created. */
|
|
@@ -40860,7 +41463,7 @@ interface Routes {
|
|
|
40860
41463
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
40861
41464
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
40862
41465
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
40863
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
41466
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
40864
41467
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
40865
41468
|
external_type_display_name?: string | undefined;
|
|
40866
41469
|
/** Date and time at which the credential was created. */
|
|
@@ -40997,7 +41600,7 @@ interface Routes {
|
|
|
40997
41600
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
40998
41601
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
40999
41602
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41000
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
41603
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
41001
41604
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41002
41605
|
external_type_display_name?: string | undefined;
|
|
41003
41606
|
/** Date and time at which the credential was created. */
|
|
@@ -41097,7 +41700,7 @@ interface Routes {
|
|
|
41097
41700
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
41098
41701
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41099
41702
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41100
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
41703
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
41101
41704
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41102
41705
|
external_type_display_name?: string | undefined;
|
|
41103
41706
|
/** Date and time at which the credential was created. */
|
|
@@ -41854,7 +42457,7 @@ interface Routes {
|
|
|
41854
42457
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
41855
42458
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41856
42459
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41857
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
42460
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
41858
42461
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41859
42462
|
external_type_display_name?: string | undefined;
|
|
41860
42463
|
/** Date and time at which the credential was created. */
|
|
@@ -41954,7 +42557,7 @@ interface Routes {
|
|
|
41954
42557
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
41955
42558
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41956
42559
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41957
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
42560
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
41958
42561
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41959
42562
|
external_type_display_name?: string | undefined;
|
|
41960
42563
|
/** Date and time at which the credential was created. */
|
|
@@ -42091,7 +42694,7 @@ interface Routes {
|
|
|
42091
42694
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
42092
42695
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
42093
42696
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
42094
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
42697
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
42095
42698
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
42096
42699
|
external_type_display_name?: string | undefined;
|
|
42097
42700
|
/** Date and time at which the credential was created. */
|
|
@@ -42191,7 +42794,7 @@ interface Routes {
|
|
|
42191
42794
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
42192
42795
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
42193
42796
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
42194
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
42797
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
42195
42798
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
42196
42799
|
external_type_display_name?: string | undefined;
|
|
42197
42800
|
/** Date and time at which the credential was created. */
|
|
@@ -43051,7 +43654,7 @@ interface Routes {
|
|
|
43051
43654
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43052
43655
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43053
43656
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43054
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
43657
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
43055
43658
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43056
43659
|
external_type_display_name?: string | undefined;
|
|
43057
43660
|
/** Date and time at which the credential was created. */
|
|
@@ -43206,7 +43809,7 @@ interface Routes {
|
|
|
43206
43809
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43207
43810
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43208
43811
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43209
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
43812
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
43210
43813
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43211
43814
|
external_type_display_name?: string | undefined;
|
|
43212
43815
|
/** Date and time at which the credential was created. */
|
|
@@ -43330,7 +43933,7 @@ interface Routes {
|
|
|
43330
43933
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43331
43934
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43332
43935
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43333
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
43936
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
43334
43937
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43335
43938
|
external_type_display_name?: string | undefined;
|
|
43336
43939
|
/** Date and time at which the credential was created. */
|
|
@@ -43458,7 +44061,7 @@ interface Routes {
|
|
|
43458
44061
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43459
44062
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43460
44063
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43461
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
44064
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
43462
44065
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43463
44066
|
external_type_display_name?: string | undefined;
|
|
43464
44067
|
/** Date and time at which the credential was created. */
|
|
@@ -43590,7 +44193,7 @@ interface Routes {
|
|
|
43590
44193
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43591
44194
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43592
44195
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43593
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
44196
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
43594
44197
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43595
44198
|
external_type_display_name?: string | undefined;
|
|
43596
44199
|
/** Date and time at which the credential was created. */
|
|
@@ -43774,7 +44377,7 @@ interface Routes {
|
|
|
43774
44377
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43775
44378
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43776
44379
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43777
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
44380
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
43778
44381
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43779
44382
|
external_type_display_name?: string | undefined;
|
|
43780
44383
|
/** Date and time at which the credential was created. */
|
|
@@ -43890,7 +44493,7 @@ interface Routes {
|
|
|
43890
44493
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43891
44494
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43892
44495
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43893
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
44496
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
43894
44497
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43895
44498
|
external_type_display_name?: string | undefined;
|
|
43896
44499
|
/** Date and time at which the credential was created. */
|
|
@@ -44015,7 +44618,7 @@ interface Routes {
|
|
|
44015
44618
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44016
44619
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44017
44620
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44018
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
44621
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44019
44622
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44020
44623
|
external_type_display_name?: string | undefined;
|
|
44021
44624
|
/** Date and time at which the credential was created. */
|
|
@@ -44135,7 +44738,7 @@ interface Routes {
|
|
|
44135
44738
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44136
44739
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44137
44740
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44138
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
44741
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44139
44742
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44140
44743
|
external_type_display_name?: string | undefined;
|
|
44141
44744
|
/** Date and time at which the credential was created. */
|
|
@@ -44342,7 +44945,7 @@ interface Routes {
|
|
|
44342
44945
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44343
44946
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44344
44947
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44345
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
44948
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44346
44949
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44347
44950
|
external_type_display_name?: string | undefined;
|
|
44348
44951
|
/** Date and time at which the credential was created. */
|
|
@@ -44442,7 +45045,7 @@ interface Routes {
|
|
|
44442
45045
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44443
45046
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44444
45047
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44445
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
45048
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44446
45049
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44447
45050
|
external_type_display_name?: string | undefined;
|
|
44448
45051
|
/** Date and time at which the credential was created. */
|
|
@@ -44579,7 +45182,7 @@ interface Routes {
|
|
|
44579
45182
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44580
45183
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44581
45184
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44582
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
45185
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44583
45186
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44584
45187
|
external_type_display_name?: string | undefined;
|
|
44585
45188
|
/** Date and time at which the credential was created. */
|
|
@@ -44679,7 +45282,7 @@ interface Routes {
|
|
|
44679
45282
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44680
45283
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44681
45284
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44682
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
45285
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44683
45286
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44684
45287
|
external_type_display_name?: string | undefined;
|
|
44685
45288
|
/** Date and time at which the credential was created. */
|
|
@@ -45222,7 +45825,7 @@ interface Routes {
|
|
|
45222
45825
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45223
45826
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45224
45827
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45225
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
45828
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
45226
45829
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45227
45830
|
external_type_display_name?: string | undefined;
|
|
45228
45831
|
/** Date and time at which the credential was created. */
|
|
@@ -45322,7 +45925,7 @@ interface Routes {
|
|
|
45322
45925
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45323
45926
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45324
45927
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45325
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
45928
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
45326
45929
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45327
45930
|
external_type_display_name?: string | undefined;
|
|
45328
45931
|
/** Date and time at which the credential was created. */
|
|
@@ -45459,7 +46062,7 @@ interface Routes {
|
|
|
45459
46062
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45460
46063
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45461
46064
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45462
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
46065
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
45463
46066
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45464
46067
|
external_type_display_name?: string | undefined;
|
|
45465
46068
|
/** Date and time at which the credential was created. */
|
|
@@ -45559,7 +46162,7 @@ interface Routes {
|
|
|
45559
46162
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45560
46163
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45561
46164
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45562
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
46165
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
45563
46166
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45564
46167
|
external_type_display_name?: string | undefined;
|
|
45565
46168
|
/** Date and time at which the credential was created. */
|
|
@@ -46188,7 +46791,7 @@ interface Routes {
|
|
|
46188
46791
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
46189
46792
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
46190
46793
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
46191
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
46794
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
46192
46795
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
46193
46796
|
external_type_display_name?: string | undefined;
|
|
46194
46797
|
/** Date and time at which the credential was created. */
|
|
@@ -47509,7 +48112,7 @@ interface Routes {
|
|
|
47509
48112
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47510
48113
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47511
48114
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47512
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
48115
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47513
48116
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47514
48117
|
external_type_display_name?: string | undefined;
|
|
47515
48118
|
/** Date and time at which the credential was created. */
|
|
@@ -47609,7 +48212,7 @@ interface Routes {
|
|
|
47609
48212
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47610
48213
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47611
48214
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47612
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
48215
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47613
48216
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47614
48217
|
external_type_display_name?: string | undefined;
|
|
47615
48218
|
/** Date and time at which the credential was created. */
|
|
@@ -47746,7 +48349,7 @@ interface Routes {
|
|
|
47746
48349
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47747
48350
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47748
48351
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47749
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
48352
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47750
48353
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47751
48354
|
external_type_display_name?: string | undefined;
|
|
47752
48355
|
/** Date and time at which the credential was created. */
|
|
@@ -47846,7 +48449,7 @@ interface Routes {
|
|
|
47846
48449
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47847
48450
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47848
48451
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47849
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
48452
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47850
48453
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47851
48454
|
external_type_display_name?: string | undefined;
|
|
47852
48455
|
/** Date and time at which the credential was created. */
|
|
@@ -48341,7 +48944,7 @@ interface Routes {
|
|
|
48341
48944
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48342
48945
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48343
48946
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48344
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
48947
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48345
48948
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48346
48949
|
external_type_display_name?: string | undefined;
|
|
48347
48950
|
/** Date and time at which the credential was created. */
|
|
@@ -48441,7 +49044,7 @@ interface Routes {
|
|
|
48441
49044
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48442
49045
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48443
49046
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48444
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
49047
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48445
49048
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48446
49049
|
external_type_display_name?: string | undefined;
|
|
48447
49050
|
/** Date and time at which the credential was created. */
|
|
@@ -48578,7 +49181,7 @@ interface Routes {
|
|
|
48578
49181
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48579
49182
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48580
49183
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48581
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
49184
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48582
49185
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48583
49186
|
external_type_display_name?: string | undefined;
|
|
48584
49187
|
/** Date and time at which the credential was created. */
|
|
@@ -48678,7 +49281,7 @@ interface Routes {
|
|
|
48678
49281
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48679
49282
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48680
49283
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48681
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
49284
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48682
49285
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48683
49286
|
external_type_display_name?: string | undefined;
|
|
48684
49287
|
/** Date and time at which the credential was created. */
|
|
@@ -50075,7 +50678,64 @@ interface Routes {
|
|
|
50075
50678
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
50076
50679
|
warnings: Array<{
|
|
50077
50680
|
message: string;
|
|
50078
|
-
|
|
50681
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50682
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
50683
|
+
} | {
|
|
50684
|
+
message: string;
|
|
50685
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50686
|
+
warning_code: 'many_active_backup_codes';
|
|
50687
|
+
} | {
|
|
50688
|
+
message: string;
|
|
50689
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50690
|
+
warning_code: 'salto_unknown_device_type';
|
|
50691
|
+
} | {
|
|
50692
|
+
message: string;
|
|
50693
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50694
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
50695
|
+
} | {
|
|
50696
|
+
message: string;
|
|
50697
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50698
|
+
warning_code: 'functional_offline_device';
|
|
50699
|
+
} | {
|
|
50700
|
+
message: string;
|
|
50701
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50702
|
+
warning_code: 'third_party_integration_detected';
|
|
50703
|
+
} | {
|
|
50704
|
+
message: string;
|
|
50705
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50706
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
50707
|
+
} | {
|
|
50708
|
+
message: string;
|
|
50709
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50710
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
50711
|
+
} | {
|
|
50712
|
+
message: string;
|
|
50713
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50714
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
50715
|
+
} | {
|
|
50716
|
+
message: string;
|
|
50717
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50718
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
50719
|
+
} | {
|
|
50720
|
+
message: string;
|
|
50721
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50722
|
+
warning_code: 'device_communication_degraded';
|
|
50723
|
+
} | {
|
|
50724
|
+
message: string;
|
|
50725
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50726
|
+
warning_code: 'scheduled_maintenance_window';
|
|
50727
|
+
} | {
|
|
50728
|
+
message: string;
|
|
50729
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50730
|
+
warning_code: 'device_has_flaky_connection';
|
|
50731
|
+
} | {
|
|
50732
|
+
message: string;
|
|
50733
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50734
|
+
warning_code: 'salto_office_mode';
|
|
50735
|
+
} | {
|
|
50736
|
+
message: string;
|
|
50737
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50738
|
+
warning_code: 'salto_privacy_mode';
|
|
50079
50739
|
}>;
|
|
50080
50740
|
/** Date and time at which the device object was created. */
|
|
50081
50741
|
created_at: string;
|
|
@@ -50693,7 +51353,64 @@ interface Routes {
|
|
|
50693
51353
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
50694
51354
|
warnings: Array<{
|
|
50695
51355
|
message: string;
|
|
50696
|
-
|
|
51356
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51357
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
51358
|
+
} | {
|
|
51359
|
+
message: string;
|
|
51360
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51361
|
+
warning_code: 'many_active_backup_codes';
|
|
51362
|
+
} | {
|
|
51363
|
+
message: string;
|
|
51364
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51365
|
+
warning_code: 'salto_unknown_device_type';
|
|
51366
|
+
} | {
|
|
51367
|
+
message: string;
|
|
51368
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51369
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
51370
|
+
} | {
|
|
51371
|
+
message: string;
|
|
51372
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51373
|
+
warning_code: 'functional_offline_device';
|
|
51374
|
+
} | {
|
|
51375
|
+
message: string;
|
|
51376
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51377
|
+
warning_code: 'third_party_integration_detected';
|
|
51378
|
+
} | {
|
|
51379
|
+
message: string;
|
|
51380
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51381
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
51382
|
+
} | {
|
|
51383
|
+
message: string;
|
|
51384
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51385
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
51386
|
+
} | {
|
|
51387
|
+
message: string;
|
|
51388
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51389
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
51390
|
+
} | {
|
|
51391
|
+
message: string;
|
|
51392
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51393
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
51394
|
+
} | {
|
|
51395
|
+
message: string;
|
|
51396
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51397
|
+
warning_code: 'device_communication_degraded';
|
|
51398
|
+
} | {
|
|
51399
|
+
message: string;
|
|
51400
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51401
|
+
warning_code: 'scheduled_maintenance_window';
|
|
51402
|
+
} | {
|
|
51403
|
+
message: string;
|
|
51404
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51405
|
+
warning_code: 'device_has_flaky_connection';
|
|
51406
|
+
} | {
|
|
51407
|
+
message: string;
|
|
51408
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51409
|
+
warning_code: 'salto_office_mode';
|
|
51410
|
+
} | {
|
|
51411
|
+
message: string;
|
|
51412
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51413
|
+
warning_code: 'salto_privacy_mode';
|
|
50697
51414
|
}>;
|
|
50698
51415
|
/** Date and time at which the device object was created. */
|
|
50699
51416
|
created_at: string;
|
|
@@ -50880,7 +51597,64 @@ interface Routes {
|
|
|
50880
51597
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
50881
51598
|
warnings: Array<{
|
|
50882
51599
|
message: string;
|
|
50883
|
-
|
|
51600
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51601
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
51602
|
+
} | {
|
|
51603
|
+
message: string;
|
|
51604
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51605
|
+
warning_code: 'many_active_backup_codes';
|
|
51606
|
+
} | {
|
|
51607
|
+
message: string;
|
|
51608
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51609
|
+
warning_code: 'salto_unknown_device_type';
|
|
51610
|
+
} | {
|
|
51611
|
+
message: string;
|
|
51612
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51613
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
51614
|
+
} | {
|
|
51615
|
+
message: string;
|
|
51616
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51617
|
+
warning_code: 'functional_offline_device';
|
|
51618
|
+
} | {
|
|
51619
|
+
message: string;
|
|
51620
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51621
|
+
warning_code: 'third_party_integration_detected';
|
|
51622
|
+
} | {
|
|
51623
|
+
message: string;
|
|
51624
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51625
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
51626
|
+
} | {
|
|
51627
|
+
message: string;
|
|
51628
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51629
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
51630
|
+
} | {
|
|
51631
|
+
message: string;
|
|
51632
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51633
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
51634
|
+
} | {
|
|
51635
|
+
message: string;
|
|
51636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51637
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
51638
|
+
} | {
|
|
51639
|
+
message: string;
|
|
51640
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51641
|
+
warning_code: 'device_communication_degraded';
|
|
51642
|
+
} | {
|
|
51643
|
+
message: string;
|
|
51644
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51645
|
+
warning_code: 'scheduled_maintenance_window';
|
|
51646
|
+
} | {
|
|
51647
|
+
message: string;
|
|
51648
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51649
|
+
warning_code: 'device_has_flaky_connection';
|
|
51650
|
+
} | {
|
|
51651
|
+
message: string;
|
|
51652
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51653
|
+
warning_code: 'salto_office_mode';
|
|
51654
|
+
} | {
|
|
51655
|
+
message: string;
|
|
51656
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51657
|
+
warning_code: 'salto_privacy_mode';
|
|
50884
51658
|
}>;
|
|
50885
51659
|
/** Date and time at which the device object was created. */
|
|
50886
51660
|
created_at: string;
|
|
@@ -51076,7 +51850,64 @@ interface Routes {
|
|
|
51076
51850
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
51077
51851
|
warnings: Array<{
|
|
51078
51852
|
message: string;
|
|
51079
|
-
|
|
51853
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51854
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
51855
|
+
} | {
|
|
51856
|
+
message: string;
|
|
51857
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51858
|
+
warning_code: 'many_active_backup_codes';
|
|
51859
|
+
} | {
|
|
51860
|
+
message: string;
|
|
51861
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51862
|
+
warning_code: 'salto_unknown_device_type';
|
|
51863
|
+
} | {
|
|
51864
|
+
message: string;
|
|
51865
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51866
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
51867
|
+
} | {
|
|
51868
|
+
message: string;
|
|
51869
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51870
|
+
warning_code: 'functional_offline_device';
|
|
51871
|
+
} | {
|
|
51872
|
+
message: string;
|
|
51873
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51874
|
+
warning_code: 'third_party_integration_detected';
|
|
51875
|
+
} | {
|
|
51876
|
+
message: string;
|
|
51877
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51878
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
51879
|
+
} | {
|
|
51880
|
+
message: string;
|
|
51881
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51882
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
51883
|
+
} | {
|
|
51884
|
+
message: string;
|
|
51885
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51886
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
51887
|
+
} | {
|
|
51888
|
+
message: string;
|
|
51889
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51890
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
51891
|
+
} | {
|
|
51892
|
+
message: string;
|
|
51893
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51894
|
+
warning_code: 'device_communication_degraded';
|
|
51895
|
+
} | {
|
|
51896
|
+
message: string;
|
|
51897
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51898
|
+
warning_code: 'scheduled_maintenance_window';
|
|
51899
|
+
} | {
|
|
51900
|
+
message: string;
|
|
51901
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51902
|
+
warning_code: 'device_has_flaky_connection';
|
|
51903
|
+
} | {
|
|
51904
|
+
message: string;
|
|
51905
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51906
|
+
warning_code: 'salto_office_mode';
|
|
51907
|
+
} | {
|
|
51908
|
+
message: string;
|
|
51909
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51910
|
+
warning_code: 'salto_privacy_mode';
|
|
51080
51911
|
}>;
|
|
51081
51912
|
/** Date and time at which the device object was created. */
|
|
51082
51913
|
created_at: string;
|
|
@@ -54123,7 +54954,64 @@ interface Routes {
|
|
|
54123
54954
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
54124
54955
|
warnings: Array<{
|
|
54125
54956
|
message: string;
|
|
54126
|
-
|
|
54957
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54958
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
54959
|
+
} | {
|
|
54960
|
+
message: string;
|
|
54961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54962
|
+
warning_code: 'many_active_backup_codes';
|
|
54963
|
+
} | {
|
|
54964
|
+
message: string;
|
|
54965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54966
|
+
warning_code: 'salto_unknown_device_type';
|
|
54967
|
+
} | {
|
|
54968
|
+
message: string;
|
|
54969
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54970
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
54971
|
+
} | {
|
|
54972
|
+
message: string;
|
|
54973
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54974
|
+
warning_code: 'functional_offline_device';
|
|
54975
|
+
} | {
|
|
54976
|
+
message: string;
|
|
54977
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54978
|
+
warning_code: 'third_party_integration_detected';
|
|
54979
|
+
} | {
|
|
54980
|
+
message: string;
|
|
54981
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54982
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
54983
|
+
} | {
|
|
54984
|
+
message: string;
|
|
54985
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54986
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
54987
|
+
} | {
|
|
54988
|
+
message: string;
|
|
54989
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54990
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
54991
|
+
} | {
|
|
54992
|
+
message: string;
|
|
54993
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54994
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
54995
|
+
} | {
|
|
54996
|
+
message: string;
|
|
54997
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54998
|
+
warning_code: 'device_communication_degraded';
|
|
54999
|
+
} | {
|
|
55000
|
+
message: string;
|
|
55001
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55002
|
+
warning_code: 'scheduled_maintenance_window';
|
|
55003
|
+
} | {
|
|
55004
|
+
message: string;
|
|
55005
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55006
|
+
warning_code: 'device_has_flaky_connection';
|
|
55007
|
+
} | {
|
|
55008
|
+
message: string;
|
|
55009
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55010
|
+
warning_code: 'salto_office_mode';
|
|
55011
|
+
} | {
|
|
55012
|
+
message: string;
|
|
55013
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55014
|
+
warning_code: 'salto_privacy_mode';
|
|
54127
55015
|
}>;
|
|
54128
55016
|
/** Date and time at which the device object was created. */
|
|
54129
55017
|
created_at: string;
|
|
@@ -54705,7 +55593,64 @@ interface Routes {
|
|
|
54705
55593
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
54706
55594
|
warnings: Array<{
|
|
54707
55595
|
message: string;
|
|
54708
|
-
|
|
55596
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55597
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
55598
|
+
} | {
|
|
55599
|
+
message: string;
|
|
55600
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55601
|
+
warning_code: 'many_active_backup_codes';
|
|
55602
|
+
} | {
|
|
55603
|
+
message: string;
|
|
55604
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55605
|
+
warning_code: 'salto_unknown_device_type';
|
|
55606
|
+
} | {
|
|
55607
|
+
message: string;
|
|
55608
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55609
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
55610
|
+
} | {
|
|
55611
|
+
message: string;
|
|
55612
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55613
|
+
warning_code: 'functional_offline_device';
|
|
55614
|
+
} | {
|
|
55615
|
+
message: string;
|
|
55616
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55617
|
+
warning_code: 'third_party_integration_detected';
|
|
55618
|
+
} | {
|
|
55619
|
+
message: string;
|
|
55620
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55621
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
55622
|
+
} | {
|
|
55623
|
+
message: string;
|
|
55624
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55625
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
55626
|
+
} | {
|
|
55627
|
+
message: string;
|
|
55628
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55629
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
55630
|
+
} | {
|
|
55631
|
+
message: string;
|
|
55632
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55633
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
55634
|
+
} | {
|
|
55635
|
+
message: string;
|
|
55636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55637
|
+
warning_code: 'device_communication_degraded';
|
|
55638
|
+
} | {
|
|
55639
|
+
message: string;
|
|
55640
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55641
|
+
warning_code: 'scheduled_maintenance_window';
|
|
55642
|
+
} | {
|
|
55643
|
+
message: string;
|
|
55644
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55645
|
+
warning_code: 'device_has_flaky_connection';
|
|
55646
|
+
} | {
|
|
55647
|
+
message: string;
|
|
55648
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55649
|
+
warning_code: 'salto_office_mode';
|
|
55650
|
+
} | {
|
|
55651
|
+
message: string;
|
|
55652
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55653
|
+
warning_code: 'salto_privacy_mode';
|
|
54709
55654
|
}>;
|
|
54710
55655
|
/** Date and time at which the device object was created. */
|
|
54711
55656
|
created_at: string;
|
|
@@ -55323,7 +56268,64 @@ interface Routes {
|
|
|
55323
56268
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
55324
56269
|
warnings: Array<{
|
|
55325
56270
|
message: string;
|
|
55326
|
-
|
|
56271
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56272
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
56273
|
+
} | {
|
|
56274
|
+
message: string;
|
|
56275
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56276
|
+
warning_code: 'many_active_backup_codes';
|
|
56277
|
+
} | {
|
|
56278
|
+
message: string;
|
|
56279
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56280
|
+
warning_code: 'salto_unknown_device_type';
|
|
56281
|
+
} | {
|
|
56282
|
+
message: string;
|
|
56283
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56284
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
56285
|
+
} | {
|
|
56286
|
+
message: string;
|
|
56287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56288
|
+
warning_code: 'functional_offline_device';
|
|
56289
|
+
} | {
|
|
56290
|
+
message: string;
|
|
56291
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56292
|
+
warning_code: 'third_party_integration_detected';
|
|
56293
|
+
} | {
|
|
56294
|
+
message: string;
|
|
56295
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56296
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
56297
|
+
} | {
|
|
56298
|
+
message: string;
|
|
56299
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56300
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
56301
|
+
} | {
|
|
56302
|
+
message: string;
|
|
56303
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56304
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
56305
|
+
} | {
|
|
56306
|
+
message: string;
|
|
56307
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56308
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
56309
|
+
} | {
|
|
56310
|
+
message: string;
|
|
56311
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56312
|
+
warning_code: 'device_communication_degraded';
|
|
56313
|
+
} | {
|
|
56314
|
+
message: string;
|
|
56315
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56316
|
+
warning_code: 'scheduled_maintenance_window';
|
|
56317
|
+
} | {
|
|
56318
|
+
message: string;
|
|
56319
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56320
|
+
warning_code: 'device_has_flaky_connection';
|
|
56321
|
+
} | {
|
|
56322
|
+
message: string;
|
|
56323
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56324
|
+
warning_code: 'salto_office_mode';
|
|
56325
|
+
} | {
|
|
56326
|
+
message: string;
|
|
56327
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56328
|
+
warning_code: 'salto_privacy_mode';
|
|
55327
56329
|
}>;
|
|
55328
56330
|
/** Date and time at which the device object was created. */
|
|
55329
56331
|
created_at: string;
|
|
@@ -55904,7 +56906,64 @@ interface Routes {
|
|
|
55904
56906
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
55905
56907
|
warnings: Array<{
|
|
55906
56908
|
message: string;
|
|
55907
|
-
|
|
56909
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56910
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
56911
|
+
} | {
|
|
56912
|
+
message: string;
|
|
56913
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56914
|
+
warning_code: 'many_active_backup_codes';
|
|
56915
|
+
} | {
|
|
56916
|
+
message: string;
|
|
56917
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56918
|
+
warning_code: 'salto_unknown_device_type';
|
|
56919
|
+
} | {
|
|
56920
|
+
message: string;
|
|
56921
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56922
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
56923
|
+
} | {
|
|
56924
|
+
message: string;
|
|
56925
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56926
|
+
warning_code: 'functional_offline_device';
|
|
56927
|
+
} | {
|
|
56928
|
+
message: string;
|
|
56929
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56930
|
+
warning_code: 'third_party_integration_detected';
|
|
56931
|
+
} | {
|
|
56932
|
+
message: string;
|
|
56933
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56934
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
56935
|
+
} | {
|
|
56936
|
+
message: string;
|
|
56937
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56938
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
56939
|
+
} | {
|
|
56940
|
+
message: string;
|
|
56941
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56942
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
56943
|
+
} | {
|
|
56944
|
+
message: string;
|
|
56945
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56946
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
56947
|
+
} | {
|
|
56948
|
+
message: string;
|
|
56949
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56950
|
+
warning_code: 'device_communication_degraded';
|
|
56951
|
+
} | {
|
|
56952
|
+
message: string;
|
|
56953
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56954
|
+
warning_code: 'scheduled_maintenance_window';
|
|
56955
|
+
} | {
|
|
56956
|
+
message: string;
|
|
56957
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56958
|
+
warning_code: 'device_has_flaky_connection';
|
|
56959
|
+
} | {
|
|
56960
|
+
message: string;
|
|
56961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56962
|
+
warning_code: 'salto_office_mode';
|
|
56963
|
+
} | {
|
|
56964
|
+
message: string;
|
|
56965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56966
|
+
warning_code: 'salto_privacy_mode';
|
|
55908
56967
|
}>;
|
|
55909
56968
|
/** Date and time at which the device object was created. */
|
|
55910
56969
|
created_at: string;
|
|
@@ -56049,7 +57108,7 @@ interface Routes {
|
|
|
56049
57108
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
56050
57109
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
56051
57110
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56052
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
57111
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
56053
57112
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
56054
57113
|
external_type_display_name?: string | undefined;
|
|
56055
57114
|
/** Date and time at which the credential was created. */
|
|
@@ -56149,7 +57208,7 @@ interface Routes {
|
|
|
56149
57208
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
56150
57209
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
56151
57210
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56152
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
57211
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
56153
57212
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
56154
57213
|
external_type_display_name?: string | undefined;
|
|
56155
57214
|
/** Date and time at which the credential was created. */
|
|
@@ -56286,7 +57345,7 @@ interface Routes {
|
|
|
56286
57345
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
56287
57346
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
56288
57347
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56289
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
57348
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
56290
57349
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
56291
57350
|
external_type_display_name?: string | undefined;
|
|
56292
57351
|
/** Date and time at which the credential was created. */
|
|
@@ -56386,7 +57445,7 @@ interface Routes {
|
|
|
56386
57445
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
56387
57446
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
56388
57447
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56389
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
57448
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
56390
57449
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
56391
57450
|
external_type_display_name?: string | undefined;
|
|
56392
57451
|
/** Date and time at which the credential was created. */
|
|
@@ -56883,7 +57942,7 @@ interface Routes {
|
|
|
56883
57942
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
56884
57943
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
56885
57944
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56886
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
57945
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
56887
57946
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
56888
57947
|
external_type_display_name?: string | undefined;
|
|
56889
57948
|
/** Date and time at which the credential was created. */
|
|
@@ -56983,7 +58042,7 @@ interface Routes {
|
|
|
56983
58042
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
56984
58043
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
56985
58044
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56986
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
58045
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
56987
58046
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
56988
58047
|
external_type_display_name?: string | undefined;
|
|
56989
58048
|
/** Date and time at which the credential was created. */
|
|
@@ -57120,7 +58179,7 @@ interface Routes {
|
|
|
57120
58179
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
57121
58180
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
57122
58181
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
57123
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
58182
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
57124
58183
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
57125
58184
|
external_type_display_name?: string | undefined;
|
|
57126
58185
|
/** Date and time at which the credential was created. */
|
|
@@ -57220,7 +58279,7 @@ interface Routes {
|
|
|
57220
58279
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
57221
58280
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
57222
58281
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
57223
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
58282
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
57224
58283
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
57225
58284
|
external_type_display_name?: string | undefined;
|
|
57226
58285
|
/** Date and time at which the credential was created. */
|
|
@@ -58225,7 +59284,64 @@ interface Routes {
|
|
|
58225
59284
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
58226
59285
|
warnings: Array<{
|
|
58227
59286
|
message: string;
|
|
58228
|
-
|
|
59287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59288
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
59289
|
+
} | {
|
|
59290
|
+
message: string;
|
|
59291
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59292
|
+
warning_code: 'many_active_backup_codes';
|
|
59293
|
+
} | {
|
|
59294
|
+
message: string;
|
|
59295
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59296
|
+
warning_code: 'salto_unknown_device_type';
|
|
59297
|
+
} | {
|
|
59298
|
+
message: string;
|
|
59299
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59300
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
59301
|
+
} | {
|
|
59302
|
+
message: string;
|
|
59303
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59304
|
+
warning_code: 'functional_offline_device';
|
|
59305
|
+
} | {
|
|
59306
|
+
message: string;
|
|
59307
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59308
|
+
warning_code: 'third_party_integration_detected';
|
|
59309
|
+
} | {
|
|
59310
|
+
message: string;
|
|
59311
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59312
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
59313
|
+
} | {
|
|
59314
|
+
message: string;
|
|
59315
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59316
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
59317
|
+
} | {
|
|
59318
|
+
message: string;
|
|
59319
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59320
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
59321
|
+
} | {
|
|
59322
|
+
message: string;
|
|
59323
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59324
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
59325
|
+
} | {
|
|
59326
|
+
message: string;
|
|
59327
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59328
|
+
warning_code: 'device_communication_degraded';
|
|
59329
|
+
} | {
|
|
59330
|
+
message: string;
|
|
59331
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59332
|
+
warning_code: 'scheduled_maintenance_window';
|
|
59333
|
+
} | {
|
|
59334
|
+
message: string;
|
|
59335
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59336
|
+
warning_code: 'device_has_flaky_connection';
|
|
59337
|
+
} | {
|
|
59338
|
+
message: string;
|
|
59339
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59340
|
+
warning_code: 'salto_office_mode';
|
|
59341
|
+
} | {
|
|
59342
|
+
message: string;
|
|
59343
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59344
|
+
warning_code: 'salto_privacy_mode';
|
|
58229
59345
|
}>;
|
|
58230
59346
|
/** Date and time at which the device object was created. */
|
|
58231
59347
|
created_at: string;
|
|
@@ -58806,7 +59922,64 @@ interface Routes {
|
|
|
58806
59922
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
58807
59923
|
warnings: Array<{
|
|
58808
59924
|
message: string;
|
|
58809
|
-
|
|
59925
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59926
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
59927
|
+
} | {
|
|
59928
|
+
message: string;
|
|
59929
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59930
|
+
warning_code: 'many_active_backup_codes';
|
|
59931
|
+
} | {
|
|
59932
|
+
message: string;
|
|
59933
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59934
|
+
warning_code: 'salto_unknown_device_type';
|
|
59935
|
+
} | {
|
|
59936
|
+
message: string;
|
|
59937
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59938
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
59939
|
+
} | {
|
|
59940
|
+
message: string;
|
|
59941
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59942
|
+
warning_code: 'functional_offline_device';
|
|
59943
|
+
} | {
|
|
59944
|
+
message: string;
|
|
59945
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59946
|
+
warning_code: 'third_party_integration_detected';
|
|
59947
|
+
} | {
|
|
59948
|
+
message: string;
|
|
59949
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59950
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
59951
|
+
} | {
|
|
59952
|
+
message: string;
|
|
59953
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59954
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
59955
|
+
} | {
|
|
59956
|
+
message: string;
|
|
59957
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59958
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
59959
|
+
} | {
|
|
59960
|
+
message: string;
|
|
59961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59962
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
59963
|
+
} | {
|
|
59964
|
+
message: string;
|
|
59965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59966
|
+
warning_code: 'device_communication_degraded';
|
|
59967
|
+
} | {
|
|
59968
|
+
message: string;
|
|
59969
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59970
|
+
warning_code: 'scheduled_maintenance_window';
|
|
59971
|
+
} | {
|
|
59972
|
+
message: string;
|
|
59973
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59974
|
+
warning_code: 'device_has_flaky_connection';
|
|
59975
|
+
} | {
|
|
59976
|
+
message: string;
|
|
59977
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59978
|
+
warning_code: 'salto_office_mode';
|
|
59979
|
+
} | {
|
|
59980
|
+
message: string;
|
|
59981
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59982
|
+
warning_code: 'salto_privacy_mode';
|
|
58810
59983
|
}>;
|
|
58811
59984
|
/** Date and time at which the device object was created. */
|
|
58812
59985
|
created_at: string;
|
|
@@ -58956,7 +60129,7 @@ interface Routes {
|
|
|
58956
60129
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
58957
60130
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
58958
60131
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
58959
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
60132
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
58960
60133
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
58961
60134
|
external_type_display_name?: string | undefined;
|
|
58962
60135
|
/** Date and time at which the credential was created. */
|
|
@@ -59056,7 +60229,7 @@ interface Routes {
|
|
|
59056
60229
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
59057
60230
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
59058
60231
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
59059
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
60232
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
59060
60233
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
59061
60234
|
external_type_display_name?: string | undefined;
|
|
59062
60235
|
/** Date and time at which the credential was created. */
|
|
@@ -59193,7 +60366,7 @@ interface Routes {
|
|
|
59193
60366
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
59194
60367
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
59195
60368
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
59196
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
60369
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
59197
60370
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
59198
60371
|
external_type_display_name?: string | undefined;
|
|
59199
60372
|
/** Date and time at which the credential was created. */
|
|
@@ -59293,7 +60466,7 @@ interface Routes {
|
|
|
59293
60466
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
59294
60467
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
59295
60468
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
59296
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
60469
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
59297
60470
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
59298
60471
|
external_type_display_name?: string | undefined;
|
|
59299
60472
|
/** Date and time at which the credential was created. */
|
|
@@ -59801,7 +60974,7 @@ interface Routes {
|
|
|
59801
60974
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
59802
60975
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
59803
60976
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
59804
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
60977
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
59805
60978
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
59806
60979
|
external_type_display_name?: string | undefined;
|
|
59807
60980
|
/** Date and time at which the credential was created. */
|
|
@@ -59901,7 +61074,7 @@ interface Routes {
|
|
|
59901
61074
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
59902
61075
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
59903
61076
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
59904
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
61077
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
59905
61078
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
59906
61079
|
external_type_display_name?: string | undefined;
|
|
59907
61080
|
/** Date and time at which the credential was created. */
|
|
@@ -60038,7 +61211,7 @@ interface Routes {
|
|
|
60038
61211
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60039
61212
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60040
61213
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60041
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
61214
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60042
61215
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60043
61216
|
external_type_display_name?: string | undefined;
|
|
60044
61217
|
/** Date and time at which the credential was created. */
|
|
@@ -60138,7 +61311,7 @@ interface Routes {
|
|
|
60138
61311
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60139
61312
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60140
61313
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60141
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
61314
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60142
61315
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60143
61316
|
external_type_display_name?: string | undefined;
|
|
60144
61317
|
/** Date and time at which the credential was created. */
|
|
@@ -60685,7 +61858,7 @@ interface Routes {
|
|
|
60685
61858
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60686
61859
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60687
61860
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60688
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
61861
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60689
61862
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60690
61863
|
external_type_display_name?: string | undefined;
|
|
60691
61864
|
/** Date and time at which the credential was created. */
|
|
@@ -60785,7 +61958,7 @@ interface Routes {
|
|
|
60785
61958
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60786
61959
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60787
61960
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60788
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
61961
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60789
61962
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60790
61963
|
external_type_display_name?: string | undefined;
|
|
60791
61964
|
/** Date and time at which the credential was created. */
|
|
@@ -60922,7 +62095,7 @@ interface Routes {
|
|
|
60922
62095
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60923
62096
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60924
62097
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60925
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
62098
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60926
62099
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60927
62100
|
external_type_display_name?: string | undefined;
|
|
60928
62101
|
/** Date and time at which the credential was created. */
|
|
@@ -61022,7 +62195,7 @@ interface Routes {
|
|
|
61022
62195
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
61023
62196
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
61024
62197
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
61025
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
62198
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
61026
62199
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
61027
62200
|
external_type_display_name?: string | undefined;
|
|
61028
62201
|
/** Date and time at which the credential was created. */
|
|
@@ -61530,7 +62703,64 @@ interface Routes {
|
|
|
61530
62703
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
61531
62704
|
warnings: Array<{
|
|
61532
62705
|
message: string;
|
|
61533
|
-
|
|
62706
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62707
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
62708
|
+
} | {
|
|
62709
|
+
message: string;
|
|
62710
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62711
|
+
warning_code: 'many_active_backup_codes';
|
|
62712
|
+
} | {
|
|
62713
|
+
message: string;
|
|
62714
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62715
|
+
warning_code: 'salto_unknown_device_type';
|
|
62716
|
+
} | {
|
|
62717
|
+
message: string;
|
|
62718
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62719
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
62720
|
+
} | {
|
|
62721
|
+
message: string;
|
|
62722
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62723
|
+
warning_code: 'functional_offline_device';
|
|
62724
|
+
} | {
|
|
62725
|
+
message: string;
|
|
62726
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62727
|
+
warning_code: 'third_party_integration_detected';
|
|
62728
|
+
} | {
|
|
62729
|
+
message: string;
|
|
62730
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62731
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
62732
|
+
} | {
|
|
62733
|
+
message: string;
|
|
62734
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62735
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
62736
|
+
} | {
|
|
62737
|
+
message: string;
|
|
62738
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62739
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
62740
|
+
} | {
|
|
62741
|
+
message: string;
|
|
62742
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62743
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
62744
|
+
} | {
|
|
62745
|
+
message: string;
|
|
62746
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62747
|
+
warning_code: 'device_communication_degraded';
|
|
62748
|
+
} | {
|
|
62749
|
+
message: string;
|
|
62750
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62751
|
+
warning_code: 'scheduled_maintenance_window';
|
|
62752
|
+
} | {
|
|
62753
|
+
message: string;
|
|
62754
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62755
|
+
warning_code: 'device_has_flaky_connection';
|
|
62756
|
+
} | {
|
|
62757
|
+
message: string;
|
|
62758
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62759
|
+
warning_code: 'salto_office_mode';
|
|
62760
|
+
} | {
|
|
62761
|
+
message: string;
|
|
62762
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62763
|
+
warning_code: 'salto_privacy_mode';
|
|
61534
62764
|
}>;
|
|
61535
62765
|
/** Date and time at which the device object was created. */
|
|
61536
62766
|
created_at: string;
|
|
@@ -61679,7 +62909,64 @@ interface Routes {
|
|
|
61679
62909
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
61680
62910
|
warnings: Array<{
|
|
61681
62911
|
message: string;
|
|
61682
|
-
|
|
62912
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62913
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
62914
|
+
} | {
|
|
62915
|
+
message: string;
|
|
62916
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62917
|
+
warning_code: 'many_active_backup_codes';
|
|
62918
|
+
} | {
|
|
62919
|
+
message: string;
|
|
62920
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62921
|
+
warning_code: 'salto_unknown_device_type';
|
|
62922
|
+
} | {
|
|
62923
|
+
message: string;
|
|
62924
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62925
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
62926
|
+
} | {
|
|
62927
|
+
message: string;
|
|
62928
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62929
|
+
warning_code: 'functional_offline_device';
|
|
62930
|
+
} | {
|
|
62931
|
+
message: string;
|
|
62932
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62933
|
+
warning_code: 'third_party_integration_detected';
|
|
62934
|
+
} | {
|
|
62935
|
+
message: string;
|
|
62936
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62937
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
62938
|
+
} | {
|
|
62939
|
+
message: string;
|
|
62940
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62941
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
62942
|
+
} | {
|
|
62943
|
+
message: string;
|
|
62944
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62945
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
62946
|
+
} | {
|
|
62947
|
+
message: string;
|
|
62948
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62949
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
62950
|
+
} | {
|
|
62951
|
+
message: string;
|
|
62952
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62953
|
+
warning_code: 'device_communication_degraded';
|
|
62954
|
+
} | {
|
|
62955
|
+
message: string;
|
|
62956
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62957
|
+
warning_code: 'scheduled_maintenance_window';
|
|
62958
|
+
} | {
|
|
62959
|
+
message: string;
|
|
62960
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62961
|
+
warning_code: 'device_has_flaky_connection';
|
|
62962
|
+
} | {
|
|
62963
|
+
message: string;
|
|
62964
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62965
|
+
warning_code: 'salto_office_mode';
|
|
62966
|
+
} | {
|
|
62967
|
+
message: string;
|
|
62968
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62969
|
+
warning_code: 'salto_privacy_mode';
|
|
61683
62970
|
}>;
|
|
61684
62971
|
/** Date and time at which the device object was created. */
|
|
61685
62972
|
created_at: string;
|
|
@@ -61826,7 +63113,7 @@ interface Routes {
|
|
|
61826
63113
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
61827
63114
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
61828
63115
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
61829
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
63116
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
61830
63117
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
61831
63118
|
external_type_display_name?: string | undefined;
|
|
61832
63119
|
/** Date and time at which the credential was created. */
|
|
@@ -61926,7 +63213,7 @@ interface Routes {
|
|
|
61926
63213
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
61927
63214
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
61928
63215
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
61929
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
63216
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
61930
63217
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
61931
63218
|
external_type_display_name?: string | undefined;
|
|
61932
63219
|
/** Date and time at which the credential was created. */
|
|
@@ -62063,7 +63350,7 @@ interface Routes {
|
|
|
62063
63350
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
62064
63351
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
62065
63352
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62066
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
63353
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
62067
63354
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
62068
63355
|
external_type_display_name?: string | undefined;
|
|
62069
63356
|
/** Date and time at which the credential was created. */
|
|
@@ -62163,7 +63450,7 @@ interface Routes {
|
|
|
62163
63450
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
62164
63451
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
62165
63452
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62166
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
63453
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
62167
63454
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
62168
63455
|
external_type_display_name?: string | undefined;
|
|
62169
63456
|
/** Date and time at which the credential was created. */
|
|
@@ -62666,7 +63953,7 @@ interface Routes {
|
|
|
62666
63953
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
62667
63954
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
62668
63955
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62669
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
63956
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
62670
63957
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
62671
63958
|
external_type_display_name?: string | undefined;
|
|
62672
63959
|
/** Date and time at which the credential was created. */
|
|
@@ -62766,7 +64053,7 @@ interface Routes {
|
|
|
62766
64053
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
62767
64054
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
62768
64055
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62769
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
64056
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
62770
64057
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
62771
64058
|
external_type_display_name?: string | undefined;
|
|
62772
64059
|
/** Date and time at which the credential was created. */
|
|
@@ -62903,7 +64190,7 @@ interface Routes {
|
|
|
62903
64190
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
62904
64191
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
62905
64192
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62906
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
64193
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
62907
64194
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
62908
64195
|
external_type_display_name?: string | undefined;
|
|
62909
64196
|
/** Date and time at which the credential was created. */
|
|
@@ -63003,7 +64290,7 @@ interface Routes {
|
|
|
63003
64290
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
63004
64291
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
63005
64292
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63006
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
64293
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
63007
64294
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
63008
64295
|
external_type_display_name?: string | undefined;
|
|
63009
64296
|
/** Date and time at which the credential was created. */
|
|
@@ -63997,7 +65284,64 @@ interface Routes {
|
|
|
63997
65284
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
63998
65285
|
warnings: Array<{
|
|
63999
65286
|
message: string;
|
|
64000
|
-
|
|
65287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65288
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
65289
|
+
} | {
|
|
65290
|
+
message: string;
|
|
65291
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65292
|
+
warning_code: 'many_active_backup_codes';
|
|
65293
|
+
} | {
|
|
65294
|
+
message: string;
|
|
65295
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65296
|
+
warning_code: 'salto_unknown_device_type';
|
|
65297
|
+
} | {
|
|
65298
|
+
message: string;
|
|
65299
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65300
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
65301
|
+
} | {
|
|
65302
|
+
message: string;
|
|
65303
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65304
|
+
warning_code: 'functional_offline_device';
|
|
65305
|
+
} | {
|
|
65306
|
+
message: string;
|
|
65307
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65308
|
+
warning_code: 'third_party_integration_detected';
|
|
65309
|
+
} | {
|
|
65310
|
+
message: string;
|
|
65311
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65312
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
65313
|
+
} | {
|
|
65314
|
+
message: string;
|
|
65315
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65316
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
65317
|
+
} | {
|
|
65318
|
+
message: string;
|
|
65319
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65320
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
65321
|
+
} | {
|
|
65322
|
+
message: string;
|
|
65323
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65324
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
65325
|
+
} | {
|
|
65326
|
+
message: string;
|
|
65327
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65328
|
+
warning_code: 'device_communication_degraded';
|
|
65329
|
+
} | {
|
|
65330
|
+
message: string;
|
|
65331
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65332
|
+
warning_code: 'scheduled_maintenance_window';
|
|
65333
|
+
} | {
|
|
65334
|
+
message: string;
|
|
65335
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65336
|
+
warning_code: 'device_has_flaky_connection';
|
|
65337
|
+
} | {
|
|
65338
|
+
message: string;
|
|
65339
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65340
|
+
warning_code: 'salto_office_mode';
|
|
65341
|
+
} | {
|
|
65342
|
+
message: string;
|
|
65343
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65344
|
+
warning_code: 'salto_privacy_mode';
|
|
64001
65345
|
}>;
|
|
64002
65346
|
/** Date and time at which the device object was created. */
|
|
64003
65347
|
created_at: string;
|
|
@@ -64148,7 +65492,7 @@ interface Routes {
|
|
|
64148
65492
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64149
65493
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64150
65494
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64151
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
65495
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64152
65496
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64153
65497
|
external_type_display_name?: string | undefined;
|
|
64154
65498
|
/** Date and time at which the credential was created. */
|
|
@@ -64248,7 +65592,7 @@ interface Routes {
|
|
|
64248
65592
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64249
65593
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64250
65594
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64251
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
65595
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64252
65596
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64253
65597
|
external_type_display_name?: string | undefined;
|
|
64254
65598
|
/** Date and time at which the credential was created. */
|
|
@@ -64385,7 +65729,7 @@ interface Routes {
|
|
|
64385
65729
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64386
65730
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64387
65731
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64388
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
65732
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64389
65733
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64390
65734
|
external_type_display_name?: string | undefined;
|
|
64391
65735
|
/** Date and time at which the credential was created. */
|
|
@@ -64485,7 +65829,7 @@ interface Routes {
|
|
|
64485
65829
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64486
65830
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64487
65831
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64488
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
65832
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64489
65833
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64490
65834
|
external_type_display_name?: string | undefined;
|
|
64491
65835
|
/** Date and time at which the credential was created. */
|
|
@@ -64992,7 +66336,7 @@ interface Routes {
|
|
|
64992
66336
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64993
66337
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64994
66338
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64995
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
66339
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64996
66340
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64997
66341
|
external_type_display_name?: string | undefined;
|
|
64998
66342
|
/** Date and time at which the credential was created. */
|
|
@@ -65092,7 +66436,7 @@ interface Routes {
|
|
|
65092
66436
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
65093
66437
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
65094
66438
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65095
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
66439
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
65096
66440
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
65097
66441
|
external_type_display_name?: string | undefined;
|
|
65098
66442
|
/** Date and time at which the credential was created. */
|
|
@@ -65229,7 +66573,7 @@ interface Routes {
|
|
|
65229
66573
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
65230
66574
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
65231
66575
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65232
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
66576
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
65233
66577
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
65234
66578
|
external_type_display_name?: string | undefined;
|
|
65235
66579
|
/** Date and time at which the credential was created. */
|
|
@@ -65329,7 +66673,7 @@ interface Routes {
|
|
|
65329
66673
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
65330
66674
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
65331
66675
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65332
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
66676
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
65333
66677
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
65334
66678
|
external_type_display_name?: string | undefined;
|
|
65335
66679
|
/** Date and time at which the credential was created. */
|
|
@@ -66299,7 +67643,64 @@ interface Routes {
|
|
|
66299
67643
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
66300
67644
|
warnings: Array<{
|
|
66301
67645
|
message: string;
|
|
66302
|
-
|
|
67646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67647
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
67648
|
+
} | {
|
|
67649
|
+
message: string;
|
|
67650
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67651
|
+
warning_code: 'many_active_backup_codes';
|
|
67652
|
+
} | {
|
|
67653
|
+
message: string;
|
|
67654
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67655
|
+
warning_code: 'salto_unknown_device_type';
|
|
67656
|
+
} | {
|
|
67657
|
+
message: string;
|
|
67658
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67659
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
67660
|
+
} | {
|
|
67661
|
+
message: string;
|
|
67662
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67663
|
+
warning_code: 'functional_offline_device';
|
|
67664
|
+
} | {
|
|
67665
|
+
message: string;
|
|
67666
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67667
|
+
warning_code: 'third_party_integration_detected';
|
|
67668
|
+
} | {
|
|
67669
|
+
message: string;
|
|
67670
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67671
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
67672
|
+
} | {
|
|
67673
|
+
message: string;
|
|
67674
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67675
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
67676
|
+
} | {
|
|
67677
|
+
message: string;
|
|
67678
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67679
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
67680
|
+
} | {
|
|
67681
|
+
message: string;
|
|
67682
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67683
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
67684
|
+
} | {
|
|
67685
|
+
message: string;
|
|
67686
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67687
|
+
warning_code: 'device_communication_degraded';
|
|
67688
|
+
} | {
|
|
67689
|
+
message: string;
|
|
67690
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67691
|
+
warning_code: 'scheduled_maintenance_window';
|
|
67692
|
+
} | {
|
|
67693
|
+
message: string;
|
|
67694
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67695
|
+
warning_code: 'device_has_flaky_connection';
|
|
67696
|
+
} | {
|
|
67697
|
+
message: string;
|
|
67698
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67699
|
+
warning_code: 'salto_office_mode';
|
|
67700
|
+
} | {
|
|
67701
|
+
message: string;
|
|
67702
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67703
|
+
warning_code: 'salto_privacy_mode';
|
|
66303
67704
|
}>;
|
|
66304
67705
|
/** Date and time at which the device object was created. */
|
|
66305
67706
|
created_at: string;
|
|
@@ -66880,7 +68281,64 @@ interface Routes {
|
|
|
66880
68281
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
66881
68282
|
warnings: Array<{
|
|
66882
68283
|
message: string;
|
|
66883
|
-
|
|
68284
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68285
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
68286
|
+
} | {
|
|
68287
|
+
message: string;
|
|
68288
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68289
|
+
warning_code: 'many_active_backup_codes';
|
|
68290
|
+
} | {
|
|
68291
|
+
message: string;
|
|
68292
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68293
|
+
warning_code: 'salto_unknown_device_type';
|
|
68294
|
+
} | {
|
|
68295
|
+
message: string;
|
|
68296
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68297
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
68298
|
+
} | {
|
|
68299
|
+
message: string;
|
|
68300
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68301
|
+
warning_code: 'functional_offline_device';
|
|
68302
|
+
} | {
|
|
68303
|
+
message: string;
|
|
68304
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68305
|
+
warning_code: 'third_party_integration_detected';
|
|
68306
|
+
} | {
|
|
68307
|
+
message: string;
|
|
68308
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68309
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
68310
|
+
} | {
|
|
68311
|
+
message: string;
|
|
68312
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68313
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
68314
|
+
} | {
|
|
68315
|
+
message: string;
|
|
68316
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68317
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
68318
|
+
} | {
|
|
68319
|
+
message: string;
|
|
68320
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68321
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
68322
|
+
} | {
|
|
68323
|
+
message: string;
|
|
68324
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68325
|
+
warning_code: 'device_communication_degraded';
|
|
68326
|
+
} | {
|
|
68327
|
+
message: string;
|
|
68328
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68329
|
+
warning_code: 'scheduled_maintenance_window';
|
|
68330
|
+
} | {
|
|
68331
|
+
message: string;
|
|
68332
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68333
|
+
warning_code: 'device_has_flaky_connection';
|
|
68334
|
+
} | {
|
|
68335
|
+
message: string;
|
|
68336
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68337
|
+
warning_code: 'salto_office_mode';
|
|
68338
|
+
} | {
|
|
68339
|
+
message: string;
|
|
68340
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68341
|
+
warning_code: 'salto_privacy_mode';
|
|
66884
68342
|
}>;
|
|
66885
68343
|
/** Date and time at which the device object was created. */
|
|
66886
68344
|
created_at: string;
|
|
@@ -67027,7 +68485,7 @@ interface Routes {
|
|
|
67027
68485
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
67028
68486
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
67029
68487
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67030
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
68488
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67031
68489
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
67032
68490
|
external_type_display_name?: string | undefined;
|
|
67033
68491
|
/** Date and time at which the credential was created. */
|
|
@@ -67127,7 +68585,7 @@ interface Routes {
|
|
|
67127
68585
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
67128
68586
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
67129
68587
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67130
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
68588
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67131
68589
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
67132
68590
|
external_type_display_name?: string | undefined;
|
|
67133
68591
|
/** Date and time at which the credential was created. */
|
|
@@ -67264,7 +68722,7 @@ interface Routes {
|
|
|
67264
68722
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
67265
68723
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
67266
68724
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67267
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
68725
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67268
68726
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
67269
68727
|
external_type_display_name?: string | undefined;
|
|
67270
68728
|
/** Date and time at which the credential was created. */
|
|
@@ -67364,7 +68822,7 @@ interface Routes {
|
|
|
67364
68822
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
67365
68823
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
67366
68824
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67367
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
68825
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67368
68826
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
67369
68827
|
external_type_display_name?: string | undefined;
|
|
67370
68828
|
/** Date and time at which the credential was created. */
|
|
@@ -68047,7 +69505,7 @@ interface Routes {
|
|
|
68047
69505
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68048
69506
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68049
69507
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68050
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
69508
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
68051
69509
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68052
69510
|
external_type_display_name?: string | undefined;
|
|
68053
69511
|
/** Date and time at which the credential was created. */
|
|
@@ -68147,7 +69605,7 @@ interface Routes {
|
|
|
68147
69605
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68148
69606
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68149
69607
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68150
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
69608
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
68151
69609
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68152
69610
|
external_type_display_name?: string | undefined;
|
|
68153
69611
|
/** Date and time at which the credential was created. */
|
|
@@ -68284,7 +69742,7 @@ interface Routes {
|
|
|
68284
69742
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68285
69743
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68286
69744
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68287
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
69745
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
68288
69746
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68289
69747
|
external_type_display_name?: string | undefined;
|
|
68290
69748
|
/** Date and time at which the credential was created. */
|
|
@@ -68384,7 +69842,7 @@ interface Routes {
|
|
|
68384
69842
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68385
69843
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68386
69844
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68387
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
69845
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
68388
69846
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68389
69847
|
external_type_display_name?: string | undefined;
|
|
68390
69848
|
/** Date and time at which the credential was created. */
|
|
@@ -68910,7 +70368,7 @@ interface Routes {
|
|
|
68910
70368
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68911
70369
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68912
70370
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68913
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
70371
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
68914
70372
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68915
70373
|
external_type_display_name?: string | undefined;
|
|
68916
70374
|
/** Date and time at which the credential was created. */
|
|
@@ -69010,7 +70468,7 @@ interface Routes {
|
|
|
69010
70468
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
69011
70469
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
69012
70470
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
69013
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
70471
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
69014
70472
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
69015
70473
|
external_type_display_name?: string | undefined;
|
|
69016
70474
|
/** Date and time at which the credential was created. */
|
|
@@ -69147,7 +70605,7 @@ interface Routes {
|
|
|
69147
70605
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
69148
70606
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
69149
70607
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
69150
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
70608
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
69151
70609
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
69152
70610
|
external_type_display_name?: string | undefined;
|
|
69153
70611
|
/** Date and time at which the credential was created. */
|
|
@@ -69247,7 +70705,7 @@ interface Routes {
|
|
|
69247
70705
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
69248
70706
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
69249
70707
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
69250
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
70708
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
69251
70709
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
69252
70710
|
external_type_display_name?: string | undefined;
|
|
69253
70711
|
/** Date and time at which the credential was created. */
|
|
@@ -70472,7 +71930,64 @@ interface Routes {
|
|
|
70472
71930
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
70473
71931
|
warnings: Array<{
|
|
70474
71932
|
message: string;
|
|
70475
|
-
|
|
71933
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71934
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
71935
|
+
} | {
|
|
71936
|
+
message: string;
|
|
71937
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71938
|
+
warning_code: 'many_active_backup_codes';
|
|
71939
|
+
} | {
|
|
71940
|
+
message: string;
|
|
71941
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71942
|
+
warning_code: 'salto_unknown_device_type';
|
|
71943
|
+
} | {
|
|
71944
|
+
message: string;
|
|
71945
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71946
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
71947
|
+
} | {
|
|
71948
|
+
message: string;
|
|
71949
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71950
|
+
warning_code: 'functional_offline_device';
|
|
71951
|
+
} | {
|
|
71952
|
+
message: string;
|
|
71953
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71954
|
+
warning_code: 'third_party_integration_detected';
|
|
71955
|
+
} | {
|
|
71956
|
+
message: string;
|
|
71957
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71958
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
71959
|
+
} | {
|
|
71960
|
+
message: string;
|
|
71961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71962
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
71963
|
+
} | {
|
|
71964
|
+
message: string;
|
|
71965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71966
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
71967
|
+
} | {
|
|
71968
|
+
message: string;
|
|
71969
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71970
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
71971
|
+
} | {
|
|
71972
|
+
message: string;
|
|
71973
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71974
|
+
warning_code: 'device_communication_degraded';
|
|
71975
|
+
} | {
|
|
71976
|
+
message: string;
|
|
71977
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71978
|
+
warning_code: 'scheduled_maintenance_window';
|
|
71979
|
+
} | {
|
|
71980
|
+
message: string;
|
|
71981
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71982
|
+
warning_code: 'device_has_flaky_connection';
|
|
71983
|
+
} | {
|
|
71984
|
+
message: string;
|
|
71985
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71986
|
+
warning_code: 'salto_office_mode';
|
|
71987
|
+
} | {
|
|
71988
|
+
message: string;
|
|
71989
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71990
|
+
warning_code: 'salto_privacy_mode';
|
|
70476
71991
|
}>;
|
|
70477
71992
|
/** Date and time at which the device object was created. */
|
|
70478
71993
|
created_at: string;
|
|
@@ -71055,7 +72570,64 @@ interface Routes {
|
|
|
71055
72570
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
71056
72571
|
warnings: Array<{
|
|
71057
72572
|
message: string;
|
|
71058
|
-
|
|
72573
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72574
|
+
warning_code: 'partial_backup_access_code_pool';
|
|
72575
|
+
} | {
|
|
72576
|
+
message: string;
|
|
72577
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72578
|
+
warning_code: 'many_active_backup_codes';
|
|
72579
|
+
} | {
|
|
72580
|
+
message: string;
|
|
72581
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72582
|
+
warning_code: 'salto_unknown_device_type';
|
|
72583
|
+
} | {
|
|
72584
|
+
message: string;
|
|
72585
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72586
|
+
warning_code: 'wyze_device_missing_gateway';
|
|
72587
|
+
} | {
|
|
72588
|
+
message: string;
|
|
72589
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72590
|
+
warning_code: 'functional_offline_device';
|
|
72591
|
+
} | {
|
|
72592
|
+
message: string;
|
|
72593
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72594
|
+
warning_code: 'third_party_integration_detected';
|
|
72595
|
+
} | {
|
|
72596
|
+
message: string;
|
|
72597
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72598
|
+
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
72599
|
+
} | {
|
|
72600
|
+
message: string;
|
|
72601
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72602
|
+
warning_code: 'ttlock_lock_gateway_unlocking_not_enabled';
|
|
72603
|
+
} | {
|
|
72604
|
+
message: string;
|
|
72605
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72606
|
+
warning_code: 'ttlock_weak_gateway_signal';
|
|
72607
|
+
} | {
|
|
72608
|
+
message: string;
|
|
72609
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72610
|
+
warning_code: 'temperature_threshold_exceeded';
|
|
72611
|
+
} | {
|
|
72612
|
+
message: string;
|
|
72613
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72614
|
+
warning_code: 'device_communication_degraded';
|
|
72615
|
+
} | {
|
|
72616
|
+
message: string;
|
|
72617
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72618
|
+
warning_code: 'scheduled_maintenance_window';
|
|
72619
|
+
} | {
|
|
72620
|
+
message: string;
|
|
72621
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72622
|
+
warning_code: 'device_has_flaky_connection';
|
|
72623
|
+
} | {
|
|
72624
|
+
message: string;
|
|
72625
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72626
|
+
warning_code: 'salto_office_mode';
|
|
72627
|
+
} | {
|
|
72628
|
+
message: string;
|
|
72629
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72630
|
+
warning_code: 'salto_privacy_mode';
|
|
71059
72631
|
}>;
|
|
71060
72632
|
/** Date and time at which the device object was created. */
|
|
71061
72633
|
created_at: string;
|
|
@@ -71625,7 +73197,7 @@ interface Routes {
|
|
|
71625
73197
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71626
73198
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71627
73199
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71628
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
73200
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
71629
73201
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71630
73202
|
external_type_display_name?: string | undefined;
|
|
71631
73203
|
/** Date and time at which the credential was created. */
|
|
@@ -71725,7 +73297,7 @@ interface Routes {
|
|
|
71725
73297
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71726
73298
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71727
73299
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71728
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
73300
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
71729
73301
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71730
73302
|
external_type_display_name?: string | undefined;
|
|
71731
73303
|
/** Date and time at which the credential was created. */
|
|
@@ -71862,7 +73434,7 @@ interface Routes {
|
|
|
71862
73434
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71863
73435
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71864
73436
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71865
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
73437
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
71866
73438
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71867
73439
|
external_type_display_name?: string | undefined;
|
|
71868
73440
|
/** Date and time at which the credential was created. */
|
|
@@ -71962,7 +73534,7 @@ interface Routes {
|
|
|
71962
73534
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71963
73535
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71964
73536
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71965
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
73537
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
71966
73538
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71967
73539
|
external_type_display_name?: string | undefined;
|
|
71968
73540
|
/** Date and time at which the credential was created. */
|