@seamapi/types 1.816.0 → 1.818.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 +54 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +460 -207
- package/dist/index.cjs +54 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +0 -1
- 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/batch.d.ts +100 -42
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +12 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/openapi.js +44 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +275 -135
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +0 -1
- package/src/lib/seam/connect/models/devices/device.ts +14 -0
- package/src/lib/seam/connect/openapi.ts +52 -7
- package/src/lib/seam/connect/route-types.ts +160 -135
|
@@ -3130,6 +3130,19 @@ export declare const batch: z.ZodObject<{
|
|
|
3130
3130
|
}>, z.ZodObject<{
|
|
3131
3131
|
message: z.ZodString;
|
|
3132
3132
|
created_at: z.ZodString;
|
|
3133
|
+
} & {
|
|
3134
|
+
warning_code: z.ZodLiteral<"salto_ks_lock_access_code_support_removed">;
|
|
3135
|
+
}, "strip", z.ZodTypeAny, {
|
|
3136
|
+
message: string;
|
|
3137
|
+
created_at: string;
|
|
3138
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
3139
|
+
}, {
|
|
3140
|
+
message: string;
|
|
3141
|
+
created_at: string;
|
|
3142
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
3143
|
+
}>, z.ZodObject<{
|
|
3144
|
+
message: z.ZodString;
|
|
3145
|
+
created_at: z.ZodString;
|
|
3133
3146
|
} & {
|
|
3134
3147
|
warning_code: z.ZodLiteral<"unknown_issue_with_phone">;
|
|
3135
3148
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3429,6 +3442,10 @@ export declare const batch: z.ZodObject<{
|
|
|
3429
3442
|
message: string;
|
|
3430
3443
|
created_at: string;
|
|
3431
3444
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
3445
|
+
} | {
|
|
3446
|
+
message: string;
|
|
3447
|
+
created_at: string;
|
|
3448
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
3432
3449
|
} | {
|
|
3433
3450
|
message: string;
|
|
3434
3451
|
created_at: string;
|
|
@@ -4152,6 +4169,10 @@ export declare const batch: z.ZodObject<{
|
|
|
4152
4169
|
message: string;
|
|
4153
4170
|
created_at: string;
|
|
4154
4171
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
4172
|
+
} | {
|
|
4173
|
+
message: string;
|
|
4174
|
+
created_at: string;
|
|
4175
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
4155
4176
|
} | {
|
|
4156
4177
|
message: string;
|
|
4157
4178
|
created_at: string;
|
|
@@ -6996,7 +7017,7 @@ export declare const batch: z.ZodObject<{
|
|
|
6996
7017
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
6997
7018
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6998
7019
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
6999
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
7020
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
7000
7021
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7001
7022
|
created_at: z.ZodString;
|
|
7002
7023
|
workspace_id: z.ZodString;
|
|
@@ -7210,7 +7231,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7210
7231
|
issued_at?: string | null | undefined;
|
|
7211
7232
|
is_issued?: boolean | undefined;
|
|
7212
7233
|
acs_user_id?: string | undefined;
|
|
7213
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
7234
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7214
7235
|
external_type_display_name?: string | undefined;
|
|
7215
7236
|
acs_credential_pool_id?: string | undefined;
|
|
7216
7237
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7282,7 +7303,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7282
7303
|
issued_at?: string | null | undefined;
|
|
7283
7304
|
is_issued?: boolean | undefined;
|
|
7284
7305
|
acs_user_id?: string | undefined;
|
|
7285
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
7306
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7286
7307
|
external_type_display_name?: string | undefined;
|
|
7287
7308
|
acs_credential_pool_id?: string | undefined;
|
|
7288
7309
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7306,7 +7327,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7306
7327
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
7307
7328
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7308
7329
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
7309
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
7330
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
7310
7331
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7311
7332
|
created_at: z.ZodString;
|
|
7312
7333
|
workspace_id: z.ZodString;
|
|
@@ -7520,7 +7541,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7520
7541
|
issued_at?: string | null | undefined;
|
|
7521
7542
|
is_issued?: boolean | undefined;
|
|
7522
7543
|
acs_user_id?: string | undefined;
|
|
7523
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
7544
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7524
7545
|
external_type_display_name?: string | undefined;
|
|
7525
7546
|
acs_credential_pool_id?: string | undefined;
|
|
7526
7547
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7592,7 +7613,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7592
7613
|
issued_at?: string | null | undefined;
|
|
7593
7614
|
is_issued?: boolean | undefined;
|
|
7594
7615
|
acs_user_id?: string | undefined;
|
|
7595
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
7616
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7596
7617
|
external_type_display_name?: string | undefined;
|
|
7597
7618
|
acs_credential_pool_id?: string | undefined;
|
|
7598
7619
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7901,7 +7922,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7901
7922
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
7902
7923
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7903
7924
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
7904
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
7925
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
7905
7926
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7906
7927
|
created_at: z.ZodString;
|
|
7907
7928
|
workspace_id: z.ZodString;
|
|
@@ -8115,7 +8136,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8115
8136
|
issued_at?: string | null | undefined;
|
|
8116
8137
|
is_issued?: boolean | undefined;
|
|
8117
8138
|
acs_user_id?: string | undefined;
|
|
8118
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8139
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8119
8140
|
external_type_display_name?: string | undefined;
|
|
8120
8141
|
acs_credential_pool_id?: string | undefined;
|
|
8121
8142
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8187,7 +8208,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8187
8208
|
issued_at?: string | null | undefined;
|
|
8188
8209
|
is_issued?: boolean | undefined;
|
|
8189
8210
|
acs_user_id?: string | undefined;
|
|
8190
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8211
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8191
8212
|
external_type_display_name?: string | undefined;
|
|
8192
8213
|
acs_credential_pool_id?: string | undefined;
|
|
8193
8214
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8210,7 +8231,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8210
8231
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
8211
8232
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8212
8233
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
8213
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
8234
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
8214
8235
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
8215
8236
|
created_at: z.ZodString;
|
|
8216
8237
|
workspace_id: z.ZodString;
|
|
@@ -8424,7 +8445,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8424
8445
|
issued_at?: string | null | undefined;
|
|
8425
8446
|
is_issued?: boolean | undefined;
|
|
8426
8447
|
acs_user_id?: string | undefined;
|
|
8427
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8448
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8428
8449
|
external_type_display_name?: string | undefined;
|
|
8429
8450
|
acs_credential_pool_id?: string | undefined;
|
|
8430
8451
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8496,7 +8517,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8496
8517
|
issued_at?: string | null | undefined;
|
|
8497
8518
|
is_issued?: boolean | undefined;
|
|
8498
8519
|
acs_user_id?: string | undefined;
|
|
8499
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8520
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8500
8521
|
external_type_display_name?: string | undefined;
|
|
8501
8522
|
acs_credential_pool_id?: string | undefined;
|
|
8502
8523
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8605,7 +8626,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8605
8626
|
issued_at?: string | null | undefined;
|
|
8606
8627
|
is_issued?: boolean | undefined;
|
|
8607
8628
|
acs_user_id?: string | undefined;
|
|
8608
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8629
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8609
8630
|
external_type_display_name?: string | undefined;
|
|
8610
8631
|
acs_credential_pool_id?: string | undefined;
|
|
8611
8632
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8677,7 +8698,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8677
8698
|
issued_at?: string | null | undefined;
|
|
8678
8699
|
is_issued?: boolean | undefined;
|
|
8679
8700
|
acs_user_id?: string | undefined;
|
|
8680
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8701
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8681
8702
|
external_type_display_name?: string | undefined;
|
|
8682
8703
|
acs_credential_pool_id?: string | undefined;
|
|
8683
8704
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8776,7 +8797,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8776
8797
|
issued_at?: string | null | undefined;
|
|
8777
8798
|
is_issued?: boolean | undefined;
|
|
8778
8799
|
acs_user_id?: string | undefined;
|
|
8779
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8800
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8780
8801
|
external_type_display_name?: string | undefined;
|
|
8781
8802
|
acs_credential_pool_id?: string | undefined;
|
|
8782
8803
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8848,7 +8869,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8848
8869
|
issued_at?: string | null | undefined;
|
|
8849
8870
|
is_issued?: boolean | undefined;
|
|
8850
8871
|
acs_user_id?: string | undefined;
|
|
8851
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8872
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8852
8873
|
external_type_display_name?: string | undefined;
|
|
8853
8874
|
acs_credential_pool_id?: string | undefined;
|
|
8854
8875
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8952,7 +8973,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8952
8973
|
issued_at?: string | null | undefined;
|
|
8953
8974
|
is_issued?: boolean | undefined;
|
|
8954
8975
|
acs_user_id?: string | undefined;
|
|
8955
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
8976
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8956
8977
|
external_type_display_name?: string | undefined;
|
|
8957
8978
|
acs_credential_pool_id?: string | undefined;
|
|
8958
8979
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9024,7 +9045,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9024
9045
|
issued_at?: string | null | undefined;
|
|
9025
9046
|
is_issued?: boolean | undefined;
|
|
9026
9047
|
acs_user_id?: string | undefined;
|
|
9027
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
9048
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9028
9049
|
external_type_display_name?: string | undefined;
|
|
9029
9050
|
acs_credential_pool_id?: string | undefined;
|
|
9030
9051
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9129,7 +9150,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9129
9150
|
issued_at?: string | null | undefined;
|
|
9130
9151
|
is_issued?: boolean | undefined;
|
|
9131
9152
|
acs_user_id?: string | undefined;
|
|
9132
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
9153
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9133
9154
|
external_type_display_name?: string | undefined;
|
|
9134
9155
|
acs_credential_pool_id?: string | undefined;
|
|
9135
9156
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9201,7 +9222,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9201
9222
|
issued_at?: string | null | undefined;
|
|
9202
9223
|
is_issued?: boolean | undefined;
|
|
9203
9224
|
acs_user_id?: string | undefined;
|
|
9204
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
9225
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9205
9226
|
external_type_display_name?: string | undefined;
|
|
9206
9227
|
acs_credential_pool_id?: string | undefined;
|
|
9207
9228
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9364,7 +9385,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9364
9385
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9365
9386
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9366
9387
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9367
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
9388
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9368
9389
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9369
9390
|
created_at: z.ZodString;
|
|
9370
9391
|
workspace_id: z.ZodString;
|
|
@@ -9578,7 +9599,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9578
9599
|
issued_at?: string | null | undefined;
|
|
9579
9600
|
is_issued?: boolean | undefined;
|
|
9580
9601
|
acs_user_id?: string | undefined;
|
|
9581
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
9602
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9582
9603
|
external_type_display_name?: string | undefined;
|
|
9583
9604
|
acs_credential_pool_id?: string | undefined;
|
|
9584
9605
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9650,7 +9671,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9650
9671
|
issued_at?: string | null | undefined;
|
|
9651
9672
|
is_issued?: boolean | undefined;
|
|
9652
9673
|
acs_user_id?: string | undefined;
|
|
9653
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
9674
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9654
9675
|
external_type_display_name?: string | undefined;
|
|
9655
9676
|
acs_credential_pool_id?: string | undefined;
|
|
9656
9677
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9673,7 +9694,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9673
9694
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9674
9695
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9675
9696
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9676
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
9697
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9677
9698
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9678
9699
|
created_at: z.ZodString;
|
|
9679
9700
|
workspace_id: z.ZodString;
|
|
@@ -9887,7 +9908,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9887
9908
|
issued_at?: string | null | undefined;
|
|
9888
9909
|
is_issued?: boolean | undefined;
|
|
9889
9910
|
acs_user_id?: string | undefined;
|
|
9890
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
9911
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9891
9912
|
external_type_display_name?: string | undefined;
|
|
9892
9913
|
acs_credential_pool_id?: string | undefined;
|
|
9893
9914
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9959,7 +9980,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9959
9980
|
issued_at?: string | null | undefined;
|
|
9960
9981
|
is_issued?: boolean | undefined;
|
|
9961
9982
|
acs_user_id?: string | undefined;
|
|
9962
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
9983
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9963
9984
|
external_type_display_name?: string | undefined;
|
|
9964
9985
|
acs_credential_pool_id?: string | undefined;
|
|
9965
9986
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10036,7 +10057,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10036
10057
|
issued_at?: string | null | undefined;
|
|
10037
10058
|
is_issued?: boolean | undefined;
|
|
10038
10059
|
acs_user_id?: string | undefined;
|
|
10039
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
10060
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10040
10061
|
external_type_display_name?: string | undefined;
|
|
10041
10062
|
acs_credential_pool_id?: string | undefined;
|
|
10042
10063
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10108,7 +10129,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10108
10129
|
issued_at?: string | null | undefined;
|
|
10109
10130
|
is_issued?: boolean | undefined;
|
|
10110
10131
|
acs_user_id?: string | undefined;
|
|
10111
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
10132
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10112
10133
|
external_type_display_name?: string | undefined;
|
|
10113
10134
|
acs_credential_pool_id?: string | undefined;
|
|
10114
10135
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10186,7 +10207,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10186
10207
|
issued_at?: string | null | undefined;
|
|
10187
10208
|
is_issued?: boolean | undefined;
|
|
10188
10209
|
acs_user_id?: string | undefined;
|
|
10189
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
10210
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10190
10211
|
external_type_display_name?: string | undefined;
|
|
10191
10212
|
acs_credential_pool_id?: string | undefined;
|
|
10192
10213
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10258,7 +10279,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10258
10279
|
issued_at?: string | null | undefined;
|
|
10259
10280
|
is_issued?: boolean | undefined;
|
|
10260
10281
|
acs_user_id?: string | undefined;
|
|
10261
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
10282
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10262
10283
|
external_type_display_name?: string | undefined;
|
|
10263
10284
|
acs_credential_pool_id?: string | undefined;
|
|
10264
10285
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -15716,6 +15737,19 @@ export declare const batch: z.ZodObject<{
|
|
|
15716
15737
|
}>, z.ZodObject<{
|
|
15717
15738
|
message: z.ZodString;
|
|
15718
15739
|
created_at: z.ZodString;
|
|
15740
|
+
} & {
|
|
15741
|
+
warning_code: z.ZodLiteral<"salto_ks_lock_access_code_support_removed">;
|
|
15742
|
+
}, "strip", z.ZodTypeAny, {
|
|
15743
|
+
message: string;
|
|
15744
|
+
created_at: string;
|
|
15745
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
15746
|
+
}, {
|
|
15747
|
+
message: string;
|
|
15748
|
+
created_at: string;
|
|
15749
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
15750
|
+
}>, z.ZodObject<{
|
|
15751
|
+
message: z.ZodString;
|
|
15752
|
+
created_at: z.ZodString;
|
|
15719
15753
|
} & {
|
|
15720
15754
|
warning_code: z.ZodLiteral<"unknown_issue_with_phone">;
|
|
15721
15755
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16171,6 +16205,10 @@ export declare const batch: z.ZodObject<{
|
|
|
16171
16205
|
message: string;
|
|
16172
16206
|
created_at: string;
|
|
16173
16207
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
16208
|
+
} | {
|
|
16209
|
+
message: string;
|
|
16210
|
+
created_at: string;
|
|
16211
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
16174
16212
|
} | {
|
|
16175
16213
|
message: string;
|
|
16176
16214
|
created_at: string;
|
|
@@ -16428,6 +16466,10 @@ export declare const batch: z.ZodObject<{
|
|
|
16428
16466
|
message: string;
|
|
16429
16467
|
created_at: string;
|
|
16430
16468
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
16469
|
+
} | {
|
|
16470
|
+
message: string;
|
|
16471
|
+
created_at: string;
|
|
16472
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
16431
16473
|
} | {
|
|
16432
16474
|
message: string;
|
|
16433
16475
|
created_at: string;
|
|
@@ -26068,6 +26110,10 @@ export declare const batch: z.ZodObject<{
|
|
|
26068
26110
|
message: string;
|
|
26069
26111
|
created_at: string;
|
|
26070
26112
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
26113
|
+
} | {
|
|
26114
|
+
message: string;
|
|
26115
|
+
created_at: string;
|
|
26116
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
26071
26117
|
} | {
|
|
26072
26118
|
message: string;
|
|
26073
26119
|
created_at: string;
|
|
@@ -27188,7 +27234,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27188
27234
|
issued_at?: string | null | undefined;
|
|
27189
27235
|
is_issued?: boolean | undefined;
|
|
27190
27236
|
acs_user_id?: string | undefined;
|
|
27191
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
27237
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27192
27238
|
external_type_display_name?: string | undefined;
|
|
27193
27239
|
acs_credential_pool_id?: string | undefined;
|
|
27194
27240
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27261,7 +27307,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27261
27307
|
issued_at?: string | null | undefined;
|
|
27262
27308
|
is_issued?: boolean | undefined;
|
|
27263
27309
|
acs_user_id?: string | undefined;
|
|
27264
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
27310
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27265
27311
|
external_type_display_name?: string | undefined;
|
|
27266
27312
|
acs_credential_pool_id?: string | undefined;
|
|
27267
27313
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27541,7 +27587,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27541
27587
|
issued_at?: string | null | undefined;
|
|
27542
27588
|
is_issued?: boolean | undefined;
|
|
27543
27589
|
acs_user_id?: string | undefined;
|
|
27544
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
27590
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27545
27591
|
external_type_display_name?: string | undefined;
|
|
27546
27592
|
acs_credential_pool_id?: string | undefined;
|
|
27547
27593
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27613,7 +27659,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27613
27659
|
issued_at?: string | null | undefined;
|
|
27614
27660
|
is_issued?: boolean | undefined;
|
|
27615
27661
|
acs_user_id?: string | undefined;
|
|
27616
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
27662
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27617
27663
|
external_type_display_name?: string | undefined;
|
|
27618
27664
|
acs_credential_pool_id?: string | undefined;
|
|
27619
27665
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27824,7 +27870,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27824
27870
|
issued_at?: string | null | undefined;
|
|
27825
27871
|
is_issued?: boolean | undefined;
|
|
27826
27872
|
acs_user_id?: string | undefined;
|
|
27827
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
27873
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27828
27874
|
external_type_display_name?: string | undefined;
|
|
27829
27875
|
acs_credential_pool_id?: string | undefined;
|
|
27830
27876
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27896,7 +27942,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27896
27942
|
issued_at?: string | null | undefined;
|
|
27897
27943
|
is_issued?: boolean | undefined;
|
|
27898
27944
|
acs_user_id?: string | undefined;
|
|
27899
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
27945
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27900
27946
|
external_type_display_name?: string | undefined;
|
|
27901
27947
|
acs_credential_pool_id?: string | undefined;
|
|
27902
27948
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -28408,6 +28454,10 @@ export declare const batch: z.ZodObject<{
|
|
|
28408
28454
|
message: string;
|
|
28409
28455
|
created_at: string;
|
|
28410
28456
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
28457
|
+
} | {
|
|
28458
|
+
message: string;
|
|
28459
|
+
created_at: string;
|
|
28460
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
28411
28461
|
} | {
|
|
28412
28462
|
message: string;
|
|
28413
28463
|
created_at: string;
|
|
@@ -31018,6 +31068,10 @@ export declare const batch: z.ZodObject<{
|
|
|
31018
31068
|
message: string;
|
|
31019
31069
|
created_at: string;
|
|
31020
31070
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
31071
|
+
} | {
|
|
31072
|
+
message: string;
|
|
31073
|
+
created_at: string;
|
|
31074
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
31021
31075
|
} | {
|
|
31022
31076
|
message: string;
|
|
31023
31077
|
created_at: string;
|
|
@@ -32138,7 +32192,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32138
32192
|
issued_at?: string | null | undefined;
|
|
32139
32193
|
is_issued?: boolean | undefined;
|
|
32140
32194
|
acs_user_id?: string | undefined;
|
|
32141
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
32195
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
32142
32196
|
external_type_display_name?: string | undefined;
|
|
32143
32197
|
acs_credential_pool_id?: string | undefined;
|
|
32144
32198
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32211,7 +32265,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32211
32265
|
issued_at?: string | null | undefined;
|
|
32212
32266
|
is_issued?: boolean | undefined;
|
|
32213
32267
|
acs_user_id?: string | undefined;
|
|
32214
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
32268
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
32215
32269
|
external_type_display_name?: string | undefined;
|
|
32216
32270
|
acs_credential_pool_id?: string | undefined;
|
|
32217
32271
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32491,7 +32545,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32491
32545
|
issued_at?: string | null | undefined;
|
|
32492
32546
|
is_issued?: boolean | undefined;
|
|
32493
32547
|
acs_user_id?: string | undefined;
|
|
32494
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
32548
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
32495
32549
|
external_type_display_name?: string | undefined;
|
|
32496
32550
|
acs_credential_pool_id?: string | undefined;
|
|
32497
32551
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32563,7 +32617,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32563
32617
|
issued_at?: string | null | undefined;
|
|
32564
32618
|
is_issued?: boolean | undefined;
|
|
32565
32619
|
acs_user_id?: string | undefined;
|
|
32566
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
32620
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
32567
32621
|
external_type_display_name?: string | undefined;
|
|
32568
32622
|
acs_credential_pool_id?: string | undefined;
|
|
32569
32623
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32774,7 +32828,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32774
32828
|
issued_at?: string | null | undefined;
|
|
32775
32829
|
is_issued?: boolean | undefined;
|
|
32776
32830
|
acs_user_id?: string | undefined;
|
|
32777
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
32831
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
32778
32832
|
external_type_display_name?: string | undefined;
|
|
32779
32833
|
acs_credential_pool_id?: string | undefined;
|
|
32780
32834
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32846,7 +32900,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32846
32900
|
issued_at?: string | null | undefined;
|
|
32847
32901
|
is_issued?: boolean | undefined;
|
|
32848
32902
|
acs_user_id?: string | undefined;
|
|
32849
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
32903
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
32850
32904
|
external_type_display_name?: string | undefined;
|
|
32851
32905
|
acs_credential_pool_id?: string | undefined;
|
|
32852
32906
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -33358,6 +33412,10 @@ export declare const batch: z.ZodObject<{
|
|
|
33358
33412
|
message: string;
|
|
33359
33413
|
created_at: string;
|
|
33360
33414
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
33415
|
+
} | {
|
|
33416
|
+
message: string;
|
|
33417
|
+
created_at: string;
|
|
33418
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
33361
33419
|
} | {
|
|
33362
33420
|
message: string;
|
|
33363
33421
|
created_at: string;
|
|
@@ -917,6 +917,19 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
917
917
|
}>, z.ZodObject<{
|
|
918
918
|
message: z.ZodString;
|
|
919
919
|
created_at: z.ZodString;
|
|
920
|
+
} & {
|
|
921
|
+
warning_code: z.ZodLiteral<"salto_ks_lock_access_code_support_removed">;
|
|
922
|
+
}, "strip", z.ZodTypeAny, {
|
|
923
|
+
message: string;
|
|
924
|
+
created_at: string;
|
|
925
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
926
|
+
}, {
|
|
927
|
+
message: string;
|
|
928
|
+
created_at: string;
|
|
929
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
930
|
+
}>, z.ZodObject<{
|
|
931
|
+
message: z.ZodString;
|
|
932
|
+
created_at: z.ZodString;
|
|
920
933
|
} & {
|
|
921
934
|
warning_code: z.ZodLiteral<"unknown_issue_with_phone">;
|
|
922
935
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1243,6 +1256,20 @@ export declare const device_warning_map: z.ZodObject<{
|
|
|
1243
1256
|
created_at: string;
|
|
1244
1257
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
1245
1258
|
}>>>;
|
|
1259
|
+
salto_ks_lock_access_code_support_removed: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1260
|
+
message: z.ZodString;
|
|
1261
|
+
created_at: z.ZodString;
|
|
1262
|
+
} & {
|
|
1263
|
+
warning_code: z.ZodLiteral<"salto_ks_lock_access_code_support_removed">;
|
|
1264
|
+
}, "strip", z.ZodTypeAny, {
|
|
1265
|
+
message: string;
|
|
1266
|
+
created_at: string;
|
|
1267
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
1268
|
+
}, {
|
|
1269
|
+
message: string;
|
|
1270
|
+
created_at: string;
|
|
1271
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
1272
|
+
}>>>;
|
|
1246
1273
|
unknown_issue_with_phone: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1247
1274
|
message: z.ZodString;
|
|
1248
1275
|
created_at: z.ZodString;
|
|
@@ -1406,6 +1433,11 @@ export declare const device_warning_map: z.ZodObject<{
|
|
|
1406
1433
|
created_at: string;
|
|
1407
1434
|
warning_code: "salto_ks_privacy_mode";
|
|
1408
1435
|
} | null | undefined;
|
|
1436
|
+
salto_ks_lock_access_code_support_removed?: {
|
|
1437
|
+
message: string;
|
|
1438
|
+
created_at: string;
|
|
1439
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
1440
|
+
} | null | undefined;
|
|
1409
1441
|
wyze_device_missing_gateway?: {
|
|
1410
1442
|
message: string;
|
|
1411
1443
|
created_at: string;
|
|
@@ -1526,6 +1558,11 @@ export declare const device_warning_map: z.ZodObject<{
|
|
|
1526
1558
|
created_at: string;
|
|
1527
1559
|
warning_code: "salto_ks_privacy_mode";
|
|
1528
1560
|
} | null | undefined;
|
|
1561
|
+
salto_ks_lock_access_code_support_removed?: {
|
|
1562
|
+
message: string;
|
|
1563
|
+
created_at: string;
|
|
1564
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
1565
|
+
} | null | undefined;
|
|
1529
1566
|
wyze_device_missing_gateway?: {
|
|
1530
1567
|
message: string;
|
|
1531
1568
|
created_at: string;
|
|
@@ -5035,6 +5072,19 @@ export declare const device: z.ZodObject<{
|
|
|
5035
5072
|
}>, z.ZodObject<{
|
|
5036
5073
|
message: z.ZodString;
|
|
5037
5074
|
created_at: z.ZodString;
|
|
5075
|
+
} & {
|
|
5076
|
+
warning_code: z.ZodLiteral<"salto_ks_lock_access_code_support_removed">;
|
|
5077
|
+
}, "strip", z.ZodTypeAny, {
|
|
5078
|
+
message: string;
|
|
5079
|
+
created_at: string;
|
|
5080
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
5081
|
+
}, {
|
|
5082
|
+
message: string;
|
|
5083
|
+
created_at: string;
|
|
5084
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
5085
|
+
}>, z.ZodObject<{
|
|
5086
|
+
message: z.ZodString;
|
|
5087
|
+
created_at: z.ZodString;
|
|
5038
5088
|
} & {
|
|
5039
5089
|
warning_code: z.ZodLiteral<"unknown_issue_with_phone">;
|
|
5040
5090
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5334,6 +5384,10 @@ export declare const device: z.ZodObject<{
|
|
|
5334
5384
|
message: string;
|
|
5335
5385
|
created_at: string;
|
|
5336
5386
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
5387
|
+
} | {
|
|
5388
|
+
message: string;
|
|
5389
|
+
created_at: string;
|
|
5390
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
5337
5391
|
} | {
|
|
5338
5392
|
message: string;
|
|
5339
5393
|
created_at: string;
|
|
@@ -6057,6 +6111,10 @@ export declare const device: z.ZodObject<{
|
|
|
6057
6111
|
message: string;
|
|
6058
6112
|
created_at: string;
|
|
6059
6113
|
warning_code: "salto_ks_subscription_limit_almost_reached";
|
|
6114
|
+
} | {
|
|
6115
|
+
message: string;
|
|
6116
|
+
created_at: string;
|
|
6117
|
+
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
6060
6118
|
} | {
|
|
6061
6119
|
message: string;
|
|
6062
6120
|
created_at: string;
|