@seamapi/types 1.871.0 → 1.873.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 +367 -30
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +825 -0
- package/dist/index.cjs +367 -30
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +210 -10
- package/lib/seam/connect/models/access-codes/managed-access-code.js +85 -10
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +73 -0
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +48 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +13 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +236 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +98 -0
- package/lib/seam/connect/openapi.js +240 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +374 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +110 -10
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +282 -0
- package/src/lib/seam/connect/route-types.ts +418 -0
package/dist/connect.d.cts
CHANGED
|
@@ -4,6 +4,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
4
4
|
message: z.ZodString;
|
|
5
5
|
is_access_code_error: z.ZodLiteral<true>;
|
|
6
6
|
created_at: z.ZodOptional<z.ZodString>;
|
|
7
|
+
} & {
|
|
8
|
+
error_code: z.ZodLiteral<"provider_issue">;
|
|
9
|
+
}, "strip", z.ZodTypeAny, {
|
|
10
|
+
message: string;
|
|
11
|
+
error_code: "provider_issue";
|
|
12
|
+
is_access_code_error: true;
|
|
13
|
+
created_at?: string | undefined;
|
|
14
|
+
}, {
|
|
15
|
+
message: string;
|
|
16
|
+
error_code: "provider_issue";
|
|
17
|
+
is_access_code_error: true;
|
|
18
|
+
created_at?: string | undefined;
|
|
19
|
+
}>, z.ZodObject<{
|
|
20
|
+
message: z.ZodString;
|
|
21
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
22
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
7
23
|
} & {
|
|
8
24
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
9
25
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -260,6 +276,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
260
276
|
message: z.ZodString;
|
|
261
277
|
is_access_code_error: z.ZodLiteral<true>;
|
|
262
278
|
created_at: z.ZodOptional<z.ZodString>;
|
|
279
|
+
} & {
|
|
280
|
+
error_code: z.ZodLiteral<"access_code_inactive">;
|
|
281
|
+
}, "strip", z.ZodTypeAny, {
|
|
282
|
+
message: string;
|
|
283
|
+
error_code: "access_code_inactive";
|
|
284
|
+
is_access_code_error: true;
|
|
285
|
+
created_at?: string | undefined;
|
|
286
|
+
}, {
|
|
287
|
+
message: string;
|
|
288
|
+
error_code: "access_code_inactive";
|
|
289
|
+
is_access_code_error: true;
|
|
290
|
+
created_at?: string | undefined;
|
|
291
|
+
}>, z.ZodObject<{
|
|
292
|
+
message: z.ZodString;
|
|
293
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
294
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
263
295
|
} & {
|
|
264
296
|
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
265
297
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -373,6 +405,19 @@ type AccessCodeError = z.infer<typeof access_code_error>;
|
|
|
373
405
|
declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
374
406
|
message: z.ZodString;
|
|
375
407
|
created_at: z.ZodOptional<z.ZodString>;
|
|
408
|
+
} & {
|
|
409
|
+
warning_code: z.ZodLiteral<"provider_issue">;
|
|
410
|
+
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
message: string;
|
|
412
|
+
warning_code: "provider_issue";
|
|
413
|
+
created_at?: string | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
message: string;
|
|
416
|
+
warning_code: "provider_issue";
|
|
417
|
+
created_at?: string | undefined;
|
|
418
|
+
}>, z.ZodObject<{
|
|
419
|
+
message: z.ZodString;
|
|
420
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
376
421
|
} & {
|
|
377
422
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
378
423
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -621,6 +666,22 @@ declare const access_code: z.ZodObject<{
|
|
|
621
666
|
message: z.ZodString;
|
|
622
667
|
is_access_code_error: z.ZodLiteral<true>;
|
|
623
668
|
created_at: z.ZodOptional<z.ZodString>;
|
|
669
|
+
} & {
|
|
670
|
+
error_code: z.ZodLiteral<"provider_issue">;
|
|
671
|
+
}, "strip", z.ZodTypeAny, {
|
|
672
|
+
message: string;
|
|
673
|
+
error_code: "provider_issue";
|
|
674
|
+
is_access_code_error: true;
|
|
675
|
+
created_at?: string | undefined;
|
|
676
|
+
}, {
|
|
677
|
+
message: string;
|
|
678
|
+
error_code: "provider_issue";
|
|
679
|
+
is_access_code_error: true;
|
|
680
|
+
created_at?: string | undefined;
|
|
681
|
+
}>, z.ZodObject<{
|
|
682
|
+
message: z.ZodString;
|
|
683
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
684
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
624
685
|
} & {
|
|
625
686
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
626
687
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -877,6 +938,22 @@ declare const access_code: z.ZodObject<{
|
|
|
877
938
|
message: z.ZodString;
|
|
878
939
|
is_access_code_error: z.ZodLiteral<true>;
|
|
879
940
|
created_at: z.ZodOptional<z.ZodString>;
|
|
941
|
+
} & {
|
|
942
|
+
error_code: z.ZodLiteral<"access_code_inactive">;
|
|
943
|
+
}, "strip", z.ZodTypeAny, {
|
|
944
|
+
message: string;
|
|
945
|
+
error_code: "access_code_inactive";
|
|
946
|
+
is_access_code_error: true;
|
|
947
|
+
created_at?: string | undefined;
|
|
948
|
+
}, {
|
|
949
|
+
message: string;
|
|
950
|
+
error_code: "access_code_inactive";
|
|
951
|
+
is_access_code_error: true;
|
|
952
|
+
created_at?: string | undefined;
|
|
953
|
+
}>, z.ZodObject<{
|
|
954
|
+
message: z.ZodString;
|
|
955
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
956
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
880
957
|
} & {
|
|
881
958
|
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
882
959
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1324,6 +1401,19 @@ declare const access_code: z.ZodObject<{
|
|
|
1324
1401
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
1325
1402
|
message: z.ZodString;
|
|
1326
1403
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1404
|
+
} & {
|
|
1405
|
+
warning_code: z.ZodLiteral<"provider_issue">;
|
|
1406
|
+
}, "strip", z.ZodTypeAny, {
|
|
1407
|
+
message: string;
|
|
1408
|
+
warning_code: "provider_issue";
|
|
1409
|
+
created_at?: string | undefined;
|
|
1410
|
+
}, {
|
|
1411
|
+
message: string;
|
|
1412
|
+
warning_code: "provider_issue";
|
|
1413
|
+
created_at?: string | undefined;
|
|
1414
|
+
}>, z.ZodObject<{
|
|
1415
|
+
message: z.ZodString;
|
|
1416
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1327
1417
|
} & {
|
|
1328
1418
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
1329
1419
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1870,6 +1960,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1870
1960
|
created_at: string;
|
|
1871
1961
|
error_code: "lockly_missing_wifi_bridge";
|
|
1872
1962
|
is_device_error: true;
|
|
1963
|
+
} | {
|
|
1964
|
+
message: string;
|
|
1965
|
+
error_code: "provider_issue";
|
|
1966
|
+
is_access_code_error: true;
|
|
1967
|
+
created_at?: string | undefined;
|
|
1873
1968
|
} | {
|
|
1874
1969
|
message: string;
|
|
1875
1970
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -1953,6 +2048,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1953
2048
|
error_code: "august_lock_missing_keypad";
|
|
1954
2049
|
is_access_code_error: true;
|
|
1955
2050
|
created_at?: string | undefined;
|
|
2051
|
+
} | {
|
|
2052
|
+
message: string;
|
|
2053
|
+
error_code: "access_code_inactive";
|
|
2054
|
+
is_access_code_error: true;
|
|
2055
|
+
created_at?: string | undefined;
|
|
1956
2056
|
} | {
|
|
1957
2057
|
message: string;
|
|
1958
2058
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -2006,6 +2106,10 @@ declare const access_code: z.ZodObject<{
|
|
|
2006
2106
|
message: string;
|
|
2007
2107
|
warning_code: "schlage_detected_duplicate";
|
|
2008
2108
|
created_at?: string | undefined;
|
|
2109
|
+
} | {
|
|
2110
|
+
message: string;
|
|
2111
|
+
warning_code: "provider_issue";
|
|
2112
|
+
created_at?: string | undefined;
|
|
2009
2113
|
} | {
|
|
2010
2114
|
message: string;
|
|
2011
2115
|
warning_code: "schlage_creation_outage";
|
|
@@ -2230,6 +2334,11 @@ declare const access_code: z.ZodObject<{
|
|
|
2230
2334
|
created_at: string;
|
|
2231
2335
|
error_code: "lockly_missing_wifi_bridge";
|
|
2232
2336
|
is_device_error: true;
|
|
2337
|
+
} | {
|
|
2338
|
+
message: string;
|
|
2339
|
+
error_code: "provider_issue";
|
|
2340
|
+
is_access_code_error: true;
|
|
2341
|
+
created_at?: string | undefined;
|
|
2233
2342
|
} | {
|
|
2234
2343
|
message: string;
|
|
2235
2344
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -2313,6 +2422,11 @@ declare const access_code: z.ZodObject<{
|
|
|
2313
2422
|
error_code: "august_lock_missing_keypad";
|
|
2314
2423
|
is_access_code_error: true;
|
|
2315
2424
|
created_at?: string | undefined;
|
|
2425
|
+
} | {
|
|
2426
|
+
message: string;
|
|
2427
|
+
error_code: "access_code_inactive";
|
|
2428
|
+
is_access_code_error: true;
|
|
2429
|
+
created_at?: string | undefined;
|
|
2316
2430
|
} | {
|
|
2317
2431
|
message: string;
|
|
2318
2432
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -2366,6 +2480,10 @@ declare const access_code: z.ZodObject<{
|
|
|
2366
2480
|
message: string;
|
|
2367
2481
|
warning_code: "schlage_detected_duplicate";
|
|
2368
2482
|
created_at?: string | undefined;
|
|
2483
|
+
} | {
|
|
2484
|
+
message: string;
|
|
2485
|
+
warning_code: "provider_issue";
|
|
2486
|
+
created_at?: string | undefined;
|
|
2369
2487
|
} | {
|
|
2370
2488
|
message: string;
|
|
2371
2489
|
warning_code: "schlage_creation_outage";
|
|
@@ -2500,6 +2618,22 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2500
2618
|
message: z.ZodString;
|
|
2501
2619
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2502
2620
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2621
|
+
} & {
|
|
2622
|
+
error_code: z.ZodLiteral<"provider_issue">;
|
|
2623
|
+
}, "strip", z.ZodTypeAny, {
|
|
2624
|
+
message: string;
|
|
2625
|
+
error_code: "provider_issue";
|
|
2626
|
+
is_access_code_error: true;
|
|
2627
|
+
created_at?: string | undefined;
|
|
2628
|
+
}, {
|
|
2629
|
+
message: string;
|
|
2630
|
+
error_code: "provider_issue";
|
|
2631
|
+
is_access_code_error: true;
|
|
2632
|
+
created_at?: string | undefined;
|
|
2633
|
+
}>, z.ZodObject<{
|
|
2634
|
+
message: z.ZodString;
|
|
2635
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2636
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2503
2637
|
} & {
|
|
2504
2638
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
2505
2639
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2756,6 +2890,22 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2756
2890
|
message: z.ZodString;
|
|
2757
2891
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2758
2892
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2893
|
+
} & {
|
|
2894
|
+
error_code: z.ZodLiteral<"access_code_inactive">;
|
|
2895
|
+
}, "strip", z.ZodTypeAny, {
|
|
2896
|
+
message: string;
|
|
2897
|
+
error_code: "access_code_inactive";
|
|
2898
|
+
is_access_code_error: true;
|
|
2899
|
+
created_at?: string | undefined;
|
|
2900
|
+
}, {
|
|
2901
|
+
message: string;
|
|
2902
|
+
error_code: "access_code_inactive";
|
|
2903
|
+
is_access_code_error: true;
|
|
2904
|
+
created_at?: string | undefined;
|
|
2905
|
+
}>, z.ZodObject<{
|
|
2906
|
+
message: z.ZodString;
|
|
2907
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2908
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2759
2909
|
} & {
|
|
2760
2910
|
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
2761
2911
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3203,6 +3353,19 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3203
3353
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
3204
3354
|
message: z.ZodString;
|
|
3205
3355
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3356
|
+
} & {
|
|
3357
|
+
warning_code: z.ZodLiteral<"provider_issue">;
|
|
3358
|
+
}, "strip", z.ZodTypeAny, {
|
|
3359
|
+
message: string;
|
|
3360
|
+
warning_code: "provider_issue";
|
|
3361
|
+
created_at?: string | undefined;
|
|
3362
|
+
}, {
|
|
3363
|
+
message: string;
|
|
3364
|
+
warning_code: "provider_issue";
|
|
3365
|
+
created_at?: string | undefined;
|
|
3366
|
+
}>, z.ZodObject<{
|
|
3367
|
+
message: z.ZodString;
|
|
3368
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3206
3369
|
} & {
|
|
3207
3370
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
3208
3371
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3575,6 +3738,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3575
3738
|
created_at: string;
|
|
3576
3739
|
error_code: "lockly_missing_wifi_bridge";
|
|
3577
3740
|
is_device_error: true;
|
|
3741
|
+
} | {
|
|
3742
|
+
message: string;
|
|
3743
|
+
error_code: "provider_issue";
|
|
3744
|
+
is_access_code_error: true;
|
|
3745
|
+
created_at?: string | undefined;
|
|
3578
3746
|
} | {
|
|
3579
3747
|
message: string;
|
|
3580
3748
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -3658,6 +3826,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3658
3826
|
error_code: "august_lock_missing_keypad";
|
|
3659
3827
|
is_access_code_error: true;
|
|
3660
3828
|
created_at?: string | undefined;
|
|
3829
|
+
} | {
|
|
3830
|
+
message: string;
|
|
3831
|
+
error_code: "access_code_inactive";
|
|
3832
|
+
is_access_code_error: true;
|
|
3833
|
+
created_at?: string | undefined;
|
|
3661
3834
|
} | {
|
|
3662
3835
|
message: string;
|
|
3663
3836
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -3711,6 +3884,10 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3711
3884
|
message: string;
|
|
3712
3885
|
warning_code: "schlage_detected_duplicate";
|
|
3713
3886
|
created_at?: string | undefined;
|
|
3887
|
+
} | {
|
|
3888
|
+
message: string;
|
|
3889
|
+
warning_code: "provider_issue";
|
|
3890
|
+
created_at?: string | undefined;
|
|
3714
3891
|
} | {
|
|
3715
3892
|
message: string;
|
|
3716
3893
|
warning_code: "schlage_creation_outage";
|
|
@@ -3882,6 +4059,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3882
4059
|
created_at: string;
|
|
3883
4060
|
error_code: "lockly_missing_wifi_bridge";
|
|
3884
4061
|
is_device_error: true;
|
|
4062
|
+
} | {
|
|
4063
|
+
message: string;
|
|
4064
|
+
error_code: "provider_issue";
|
|
4065
|
+
is_access_code_error: true;
|
|
4066
|
+
created_at?: string | undefined;
|
|
3885
4067
|
} | {
|
|
3886
4068
|
message: string;
|
|
3887
4069
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -3965,6 +4147,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3965
4147
|
error_code: "august_lock_missing_keypad";
|
|
3966
4148
|
is_access_code_error: true;
|
|
3967
4149
|
created_at?: string | undefined;
|
|
4150
|
+
} | {
|
|
4151
|
+
message: string;
|
|
4152
|
+
error_code: "access_code_inactive";
|
|
4153
|
+
is_access_code_error: true;
|
|
4154
|
+
created_at?: string | undefined;
|
|
3968
4155
|
} | {
|
|
3969
4156
|
message: string;
|
|
3970
4157
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -4018,6 +4205,10 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
4018
4205
|
message: string;
|
|
4019
4206
|
warning_code: "schlage_detected_duplicate";
|
|
4020
4207
|
created_at?: string | undefined;
|
|
4208
|
+
} | {
|
|
4209
|
+
message: string;
|
|
4210
|
+
warning_code: "provider_issue";
|
|
4211
|
+
created_at?: string | undefined;
|
|
4021
4212
|
} | {
|
|
4022
4213
|
message: string;
|
|
4023
4214
|
warning_code: "schlage_creation_outage";
|
|
@@ -6560,6 +6751,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6560
6751
|
message: string;
|
|
6561
6752
|
created_at: string;
|
|
6562
6753
|
warning_code: "entrance_setup_required";
|
|
6754
|
+
}>, z.ZodObject<{
|
|
6755
|
+
created_at: z.ZodString;
|
|
6756
|
+
message: z.ZodString;
|
|
6757
|
+
} & {
|
|
6758
|
+
warning_code: z.ZodLiteral<"salto_ks_privacy_mode">;
|
|
6759
|
+
}, "strip", z.ZodTypeAny, {
|
|
6760
|
+
message: string;
|
|
6761
|
+
created_at: string;
|
|
6762
|
+
warning_code: "salto_ks_privacy_mode";
|
|
6763
|
+
}, {
|
|
6764
|
+
message: string;
|
|
6765
|
+
created_at: string;
|
|
6766
|
+
warning_code: "salto_ks_privacy_mode";
|
|
6563
6767
|
}>]>, "many">;
|
|
6564
6768
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
6565
6769
|
accessibility_type: z.ZodString;
|
|
@@ -6739,6 +6943,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6739
6943
|
zone_name: string;
|
|
6740
6944
|
entry_relays_total_count: number;
|
|
6741
6945
|
}>>;
|
|
6946
|
+
is_locked: z.ZodOptional<z.ZodBoolean>;
|
|
6742
6947
|
} & {
|
|
6743
6948
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
6744
6949
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6765,6 +6970,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6765
6970
|
message: string;
|
|
6766
6971
|
created_at: string;
|
|
6767
6972
|
warning_code: "entrance_setup_required";
|
|
6973
|
+
} | {
|
|
6974
|
+
message: string;
|
|
6975
|
+
created_at: string;
|
|
6976
|
+
warning_code: "salto_ks_privacy_mode";
|
|
6768
6977
|
})[];
|
|
6769
6978
|
space_ids: string[];
|
|
6770
6979
|
acs_entrance_id: string;
|
|
@@ -6838,6 +7047,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6838
7047
|
dormakaba_ambiance_metadata?: {
|
|
6839
7048
|
access_point_name: string;
|
|
6840
7049
|
} | undefined;
|
|
7050
|
+
is_locked?: boolean | undefined;
|
|
6841
7051
|
}, {
|
|
6842
7052
|
display_name: string;
|
|
6843
7053
|
created_at: string;
|
|
@@ -6858,6 +7068,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6858
7068
|
message: string;
|
|
6859
7069
|
created_at: string;
|
|
6860
7070
|
warning_code: "entrance_setup_required";
|
|
7071
|
+
} | {
|
|
7072
|
+
message: string;
|
|
7073
|
+
created_at: string;
|
|
7074
|
+
warning_code: "salto_ks_privacy_mode";
|
|
6861
7075
|
})[];
|
|
6862
7076
|
space_ids: string[];
|
|
6863
7077
|
acs_entrance_id: string;
|
|
@@ -6931,6 +7145,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6931
7145
|
dormakaba_ambiance_metadata?: {
|
|
6932
7146
|
access_point_name: string;
|
|
6933
7147
|
} | undefined;
|
|
7148
|
+
is_locked?: boolean | undefined;
|
|
6934
7149
|
}>;
|
|
6935
7150
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
6936
7151
|
|
|
@@ -18693,6 +18908,19 @@ declare const batch: z.ZodObject<{
|
|
|
18693
18908
|
message: string;
|
|
18694
18909
|
created_at: string;
|
|
18695
18910
|
warning_code: "entrance_setup_required";
|
|
18911
|
+
}>, z.ZodObject<{
|
|
18912
|
+
created_at: z.ZodString;
|
|
18913
|
+
message: z.ZodString;
|
|
18914
|
+
} & {
|
|
18915
|
+
warning_code: z.ZodLiteral<"salto_ks_privacy_mode">;
|
|
18916
|
+
}, "strip", z.ZodTypeAny, {
|
|
18917
|
+
message: string;
|
|
18918
|
+
created_at: string;
|
|
18919
|
+
warning_code: "salto_ks_privacy_mode";
|
|
18920
|
+
}, {
|
|
18921
|
+
message: string;
|
|
18922
|
+
created_at: string;
|
|
18923
|
+
warning_code: "salto_ks_privacy_mode";
|
|
18696
18924
|
}>]>, "many">;
|
|
18697
18925
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
18698
18926
|
accessibility_type: z.ZodString;
|
|
@@ -18872,6 +19100,7 @@ declare const batch: z.ZodObject<{
|
|
|
18872
19100
|
zone_name: string;
|
|
18873
19101
|
entry_relays_total_count: number;
|
|
18874
19102
|
}>>;
|
|
19103
|
+
is_locked: z.ZodOptional<z.ZodBoolean>;
|
|
18875
19104
|
} & {
|
|
18876
19105
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
18877
19106
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18898,6 +19127,10 @@ declare const batch: z.ZodObject<{
|
|
|
18898
19127
|
message: string;
|
|
18899
19128
|
created_at: string;
|
|
18900
19129
|
warning_code: "entrance_setup_required";
|
|
19130
|
+
} | {
|
|
19131
|
+
message: string;
|
|
19132
|
+
created_at: string;
|
|
19133
|
+
warning_code: "salto_ks_privacy_mode";
|
|
18901
19134
|
})[];
|
|
18902
19135
|
space_ids: string[];
|
|
18903
19136
|
acs_entrance_id: string;
|
|
@@ -18971,6 +19204,7 @@ declare const batch: z.ZodObject<{
|
|
|
18971
19204
|
dormakaba_ambiance_metadata?: {
|
|
18972
19205
|
access_point_name: string;
|
|
18973
19206
|
} | undefined;
|
|
19207
|
+
is_locked?: boolean | undefined;
|
|
18974
19208
|
}, {
|
|
18975
19209
|
display_name: string;
|
|
18976
19210
|
created_at: string;
|
|
@@ -18991,6 +19225,10 @@ declare const batch: z.ZodObject<{
|
|
|
18991
19225
|
message: string;
|
|
18992
19226
|
created_at: string;
|
|
18993
19227
|
warning_code: "entrance_setup_required";
|
|
19228
|
+
} | {
|
|
19229
|
+
message: string;
|
|
19230
|
+
created_at: string;
|
|
19231
|
+
warning_code: "salto_ks_privacy_mode";
|
|
18994
19232
|
})[];
|
|
18995
19233
|
space_ids: string[];
|
|
18996
19234
|
acs_entrance_id: string;
|
|
@@ -19064,6 +19302,7 @@ declare const batch: z.ZodObject<{
|
|
|
19064
19302
|
dormakaba_ambiance_metadata?: {
|
|
19065
19303
|
access_point_name: string;
|
|
19066
19304
|
} | undefined;
|
|
19305
|
+
is_locked?: boolean | undefined;
|
|
19067
19306
|
}>, "many">>;
|
|
19068
19307
|
acs_systems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19069
19308
|
default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -36733,6 +36972,22 @@ declare const batch: z.ZodObject<{
|
|
|
36733
36972
|
message: z.ZodString;
|
|
36734
36973
|
is_access_code_error: z.ZodLiteral<true>;
|
|
36735
36974
|
created_at: z.ZodOptional<z.ZodString>;
|
|
36975
|
+
} & {
|
|
36976
|
+
error_code: z.ZodLiteral<"provider_issue">;
|
|
36977
|
+
}, "strip", z.ZodTypeAny, {
|
|
36978
|
+
message: string;
|
|
36979
|
+
error_code: "provider_issue";
|
|
36980
|
+
is_access_code_error: true;
|
|
36981
|
+
created_at?: string | undefined;
|
|
36982
|
+
}, {
|
|
36983
|
+
message: string;
|
|
36984
|
+
error_code: "provider_issue";
|
|
36985
|
+
is_access_code_error: true;
|
|
36986
|
+
created_at?: string | undefined;
|
|
36987
|
+
}>, z.ZodObject<{
|
|
36988
|
+
message: z.ZodString;
|
|
36989
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
36990
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
36736
36991
|
} & {
|
|
36737
36992
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
36738
36993
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -36989,6 +37244,22 @@ declare const batch: z.ZodObject<{
|
|
|
36989
37244
|
message: z.ZodString;
|
|
36990
37245
|
is_access_code_error: z.ZodLiteral<true>;
|
|
36991
37246
|
created_at: z.ZodOptional<z.ZodString>;
|
|
37247
|
+
} & {
|
|
37248
|
+
error_code: z.ZodLiteral<"access_code_inactive">;
|
|
37249
|
+
}, "strip", z.ZodTypeAny, {
|
|
37250
|
+
message: string;
|
|
37251
|
+
error_code: "access_code_inactive";
|
|
37252
|
+
is_access_code_error: true;
|
|
37253
|
+
created_at?: string | undefined;
|
|
37254
|
+
}, {
|
|
37255
|
+
message: string;
|
|
37256
|
+
error_code: "access_code_inactive";
|
|
37257
|
+
is_access_code_error: true;
|
|
37258
|
+
created_at?: string | undefined;
|
|
37259
|
+
}>, z.ZodObject<{
|
|
37260
|
+
message: z.ZodString;
|
|
37261
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
37262
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
36992
37263
|
} & {
|
|
36993
37264
|
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
36994
37265
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37436,6 +37707,19 @@ declare const batch: z.ZodObject<{
|
|
|
37436
37707
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
37437
37708
|
message: z.ZodString;
|
|
37438
37709
|
created_at: z.ZodOptional<z.ZodString>;
|
|
37710
|
+
} & {
|
|
37711
|
+
warning_code: z.ZodLiteral<"provider_issue">;
|
|
37712
|
+
}, "strip", z.ZodTypeAny, {
|
|
37713
|
+
message: string;
|
|
37714
|
+
warning_code: "provider_issue";
|
|
37715
|
+
created_at?: string | undefined;
|
|
37716
|
+
}, {
|
|
37717
|
+
message: string;
|
|
37718
|
+
warning_code: "provider_issue";
|
|
37719
|
+
created_at?: string | undefined;
|
|
37720
|
+
}>, z.ZodObject<{
|
|
37721
|
+
message: z.ZodString;
|
|
37722
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
37439
37723
|
} & {
|
|
37440
37724
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
37441
37725
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37982,6 +38266,11 @@ declare const batch: z.ZodObject<{
|
|
|
37982
38266
|
created_at: string;
|
|
37983
38267
|
error_code: "lockly_missing_wifi_bridge";
|
|
37984
38268
|
is_device_error: true;
|
|
38269
|
+
} | {
|
|
38270
|
+
message: string;
|
|
38271
|
+
error_code: "provider_issue";
|
|
38272
|
+
is_access_code_error: true;
|
|
38273
|
+
created_at?: string | undefined;
|
|
37985
38274
|
} | {
|
|
37986
38275
|
message: string;
|
|
37987
38276
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -38065,6 +38354,11 @@ declare const batch: z.ZodObject<{
|
|
|
38065
38354
|
error_code: "august_lock_missing_keypad";
|
|
38066
38355
|
is_access_code_error: true;
|
|
38067
38356
|
created_at?: string | undefined;
|
|
38357
|
+
} | {
|
|
38358
|
+
message: string;
|
|
38359
|
+
error_code: "access_code_inactive";
|
|
38360
|
+
is_access_code_error: true;
|
|
38361
|
+
created_at?: string | undefined;
|
|
38068
38362
|
} | {
|
|
38069
38363
|
message: string;
|
|
38070
38364
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -38118,6 +38412,10 @@ declare const batch: z.ZodObject<{
|
|
|
38118
38412
|
message: string;
|
|
38119
38413
|
warning_code: "schlage_detected_duplicate";
|
|
38120
38414
|
created_at?: string | undefined;
|
|
38415
|
+
} | {
|
|
38416
|
+
message: string;
|
|
38417
|
+
warning_code: "provider_issue";
|
|
38418
|
+
created_at?: string | undefined;
|
|
38121
38419
|
} | {
|
|
38122
38420
|
message: string;
|
|
38123
38421
|
warning_code: "schlage_creation_outage";
|
|
@@ -38342,6 +38640,11 @@ declare const batch: z.ZodObject<{
|
|
|
38342
38640
|
created_at: string;
|
|
38343
38641
|
error_code: "lockly_missing_wifi_bridge";
|
|
38344
38642
|
is_device_error: true;
|
|
38643
|
+
} | {
|
|
38644
|
+
message: string;
|
|
38645
|
+
error_code: "provider_issue";
|
|
38646
|
+
is_access_code_error: true;
|
|
38647
|
+
created_at?: string | undefined;
|
|
38345
38648
|
} | {
|
|
38346
38649
|
message: string;
|
|
38347
38650
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -38425,6 +38728,11 @@ declare const batch: z.ZodObject<{
|
|
|
38425
38728
|
error_code: "august_lock_missing_keypad";
|
|
38426
38729
|
is_access_code_error: true;
|
|
38427
38730
|
created_at?: string | undefined;
|
|
38731
|
+
} | {
|
|
38732
|
+
message: string;
|
|
38733
|
+
error_code: "access_code_inactive";
|
|
38734
|
+
is_access_code_error: true;
|
|
38735
|
+
created_at?: string | undefined;
|
|
38428
38736
|
} | {
|
|
38429
38737
|
message: string;
|
|
38430
38738
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -38478,6 +38786,10 @@ declare const batch: z.ZodObject<{
|
|
|
38478
38786
|
message: string;
|
|
38479
38787
|
warning_code: "schlage_detected_duplicate";
|
|
38480
38788
|
created_at?: string | undefined;
|
|
38789
|
+
} | {
|
|
38790
|
+
message: string;
|
|
38791
|
+
warning_code: "provider_issue";
|
|
38792
|
+
created_at?: string | undefined;
|
|
38481
38793
|
} | {
|
|
38482
38794
|
message: string;
|
|
38483
38795
|
warning_code: "schlage_creation_outage";
|
|
@@ -38610,6 +38922,22 @@ declare const batch: z.ZodObject<{
|
|
|
38610
38922
|
message: z.ZodString;
|
|
38611
38923
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38612
38924
|
created_at: z.ZodOptional<z.ZodString>;
|
|
38925
|
+
} & {
|
|
38926
|
+
error_code: z.ZodLiteral<"provider_issue">;
|
|
38927
|
+
}, "strip", z.ZodTypeAny, {
|
|
38928
|
+
message: string;
|
|
38929
|
+
error_code: "provider_issue";
|
|
38930
|
+
is_access_code_error: true;
|
|
38931
|
+
created_at?: string | undefined;
|
|
38932
|
+
}, {
|
|
38933
|
+
message: string;
|
|
38934
|
+
error_code: "provider_issue";
|
|
38935
|
+
is_access_code_error: true;
|
|
38936
|
+
created_at?: string | undefined;
|
|
38937
|
+
}>, z.ZodObject<{
|
|
38938
|
+
message: z.ZodString;
|
|
38939
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
38940
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38613
38941
|
} & {
|
|
38614
38942
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
38615
38943
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -38866,6 +39194,22 @@ declare const batch: z.ZodObject<{
|
|
|
38866
39194
|
message: z.ZodString;
|
|
38867
39195
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38868
39196
|
created_at: z.ZodOptional<z.ZodString>;
|
|
39197
|
+
} & {
|
|
39198
|
+
error_code: z.ZodLiteral<"access_code_inactive">;
|
|
39199
|
+
}, "strip", z.ZodTypeAny, {
|
|
39200
|
+
message: string;
|
|
39201
|
+
error_code: "access_code_inactive";
|
|
39202
|
+
is_access_code_error: true;
|
|
39203
|
+
created_at?: string | undefined;
|
|
39204
|
+
}, {
|
|
39205
|
+
message: string;
|
|
39206
|
+
error_code: "access_code_inactive";
|
|
39207
|
+
is_access_code_error: true;
|
|
39208
|
+
created_at?: string | undefined;
|
|
39209
|
+
}>, z.ZodObject<{
|
|
39210
|
+
message: z.ZodString;
|
|
39211
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
39212
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38869
39213
|
} & {
|
|
38870
39214
|
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
38871
39215
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39313,6 +39657,19 @@ declare const batch: z.ZodObject<{
|
|
|
39313
39657
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
39314
39658
|
message: z.ZodString;
|
|
39315
39659
|
created_at: z.ZodOptional<z.ZodString>;
|
|
39660
|
+
} & {
|
|
39661
|
+
warning_code: z.ZodLiteral<"provider_issue">;
|
|
39662
|
+
}, "strip", z.ZodTypeAny, {
|
|
39663
|
+
message: string;
|
|
39664
|
+
warning_code: "provider_issue";
|
|
39665
|
+
created_at?: string | undefined;
|
|
39666
|
+
}, {
|
|
39667
|
+
message: string;
|
|
39668
|
+
warning_code: "provider_issue";
|
|
39669
|
+
created_at?: string | undefined;
|
|
39670
|
+
}>, z.ZodObject<{
|
|
39671
|
+
message: z.ZodString;
|
|
39672
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
39316
39673
|
} & {
|
|
39317
39674
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
39318
39675
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39685,6 +40042,11 @@ declare const batch: z.ZodObject<{
|
|
|
39685
40042
|
created_at: string;
|
|
39686
40043
|
error_code: "lockly_missing_wifi_bridge";
|
|
39687
40044
|
is_device_error: true;
|
|
40045
|
+
} | {
|
|
40046
|
+
message: string;
|
|
40047
|
+
error_code: "provider_issue";
|
|
40048
|
+
is_access_code_error: true;
|
|
40049
|
+
created_at?: string | undefined;
|
|
39688
40050
|
} | {
|
|
39689
40051
|
message: string;
|
|
39690
40052
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -39768,6 +40130,11 @@ declare const batch: z.ZodObject<{
|
|
|
39768
40130
|
error_code: "august_lock_missing_keypad";
|
|
39769
40131
|
is_access_code_error: true;
|
|
39770
40132
|
created_at?: string | undefined;
|
|
40133
|
+
} | {
|
|
40134
|
+
message: string;
|
|
40135
|
+
error_code: "access_code_inactive";
|
|
40136
|
+
is_access_code_error: true;
|
|
40137
|
+
created_at?: string | undefined;
|
|
39771
40138
|
} | {
|
|
39772
40139
|
message: string;
|
|
39773
40140
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -39821,6 +40188,10 @@ declare const batch: z.ZodObject<{
|
|
|
39821
40188
|
message: string;
|
|
39822
40189
|
warning_code: "schlage_detected_duplicate";
|
|
39823
40190
|
created_at?: string | undefined;
|
|
40191
|
+
} | {
|
|
40192
|
+
message: string;
|
|
40193
|
+
warning_code: "provider_issue";
|
|
40194
|
+
created_at?: string | undefined;
|
|
39824
40195
|
} | {
|
|
39825
40196
|
message: string;
|
|
39826
40197
|
warning_code: "schlage_creation_outage";
|
|
@@ -39992,6 +40363,11 @@ declare const batch: z.ZodObject<{
|
|
|
39992
40363
|
created_at: string;
|
|
39993
40364
|
error_code: "lockly_missing_wifi_bridge";
|
|
39994
40365
|
is_device_error: true;
|
|
40366
|
+
} | {
|
|
40367
|
+
message: string;
|
|
40368
|
+
error_code: "provider_issue";
|
|
40369
|
+
is_access_code_error: true;
|
|
40370
|
+
created_at?: string | undefined;
|
|
39995
40371
|
} | {
|
|
39996
40372
|
message: string;
|
|
39997
40373
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -40075,6 +40451,11 @@ declare const batch: z.ZodObject<{
|
|
|
40075
40451
|
error_code: "august_lock_missing_keypad";
|
|
40076
40452
|
is_access_code_error: true;
|
|
40077
40453
|
created_at?: string | undefined;
|
|
40454
|
+
} | {
|
|
40455
|
+
message: string;
|
|
40456
|
+
error_code: "access_code_inactive";
|
|
40457
|
+
is_access_code_error: true;
|
|
40458
|
+
created_at?: string | undefined;
|
|
40078
40459
|
} | {
|
|
40079
40460
|
message: string;
|
|
40080
40461
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -40128,6 +40509,10 @@ declare const batch: z.ZodObject<{
|
|
|
40128
40509
|
message: string;
|
|
40129
40510
|
warning_code: "schlage_detected_duplicate";
|
|
40130
40511
|
created_at?: string | undefined;
|
|
40512
|
+
} | {
|
|
40513
|
+
message: string;
|
|
40514
|
+
warning_code: "provider_issue";
|
|
40515
|
+
created_at?: string | undefined;
|
|
40131
40516
|
} | {
|
|
40132
40517
|
message: string;
|
|
40133
40518
|
warning_code: "schlage_creation_outage";
|
|
@@ -41275,6 +41660,10 @@ declare const batch: z.ZodObject<{
|
|
|
41275
41660
|
message: string;
|
|
41276
41661
|
created_at: string;
|
|
41277
41662
|
warning_code: "entrance_setup_required";
|
|
41663
|
+
} | {
|
|
41664
|
+
message: string;
|
|
41665
|
+
created_at: string;
|
|
41666
|
+
warning_code: "salto_ks_privacy_mode";
|
|
41278
41667
|
})[];
|
|
41279
41668
|
space_ids: string[];
|
|
41280
41669
|
acs_entrance_id: string;
|
|
@@ -41348,6 +41737,7 @@ declare const batch: z.ZodObject<{
|
|
|
41348
41737
|
dormakaba_ambiance_metadata?: {
|
|
41349
41738
|
access_point_name: string;
|
|
41350
41739
|
} | undefined;
|
|
41740
|
+
is_locked?: boolean | undefined;
|
|
41351
41741
|
}[] | undefined;
|
|
41352
41742
|
acs_systems?: {
|
|
41353
41743
|
name: string;
|
|
@@ -44902,6 +45292,11 @@ declare const batch: z.ZodObject<{
|
|
|
44902
45292
|
created_at: string;
|
|
44903
45293
|
error_code: "lockly_missing_wifi_bridge";
|
|
44904
45294
|
is_device_error: true;
|
|
45295
|
+
} | {
|
|
45296
|
+
message: string;
|
|
45297
|
+
error_code: "provider_issue";
|
|
45298
|
+
is_access_code_error: true;
|
|
45299
|
+
created_at?: string | undefined;
|
|
44905
45300
|
} | {
|
|
44906
45301
|
message: string;
|
|
44907
45302
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -44985,6 +45380,11 @@ declare const batch: z.ZodObject<{
|
|
|
44985
45380
|
error_code: "august_lock_missing_keypad";
|
|
44986
45381
|
is_access_code_error: true;
|
|
44987
45382
|
created_at?: string | undefined;
|
|
45383
|
+
} | {
|
|
45384
|
+
message: string;
|
|
45385
|
+
error_code: "access_code_inactive";
|
|
45386
|
+
is_access_code_error: true;
|
|
45387
|
+
created_at?: string | undefined;
|
|
44988
45388
|
} | {
|
|
44989
45389
|
message: string;
|
|
44990
45390
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -45038,6 +45438,10 @@ declare const batch: z.ZodObject<{
|
|
|
45038
45438
|
message: string;
|
|
45039
45439
|
warning_code: "schlage_detected_duplicate";
|
|
45040
45440
|
created_at?: string | undefined;
|
|
45441
|
+
} | {
|
|
45442
|
+
message: string;
|
|
45443
|
+
warning_code: "provider_issue";
|
|
45444
|
+
created_at?: string | undefined;
|
|
45041
45445
|
} | {
|
|
45042
45446
|
message: string;
|
|
45043
45447
|
warning_code: "schlage_creation_outage";
|
|
@@ -45263,6 +45667,11 @@ declare const batch: z.ZodObject<{
|
|
|
45263
45667
|
created_at: string;
|
|
45264
45668
|
error_code: "lockly_missing_wifi_bridge";
|
|
45265
45669
|
is_device_error: true;
|
|
45670
|
+
} | {
|
|
45671
|
+
message: string;
|
|
45672
|
+
error_code: "provider_issue";
|
|
45673
|
+
is_access_code_error: true;
|
|
45674
|
+
created_at?: string | undefined;
|
|
45266
45675
|
} | {
|
|
45267
45676
|
message: string;
|
|
45268
45677
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -45346,6 +45755,11 @@ declare const batch: z.ZodObject<{
|
|
|
45346
45755
|
error_code: "august_lock_missing_keypad";
|
|
45347
45756
|
is_access_code_error: true;
|
|
45348
45757
|
created_at?: string | undefined;
|
|
45758
|
+
} | {
|
|
45759
|
+
message: string;
|
|
45760
|
+
error_code: "access_code_inactive";
|
|
45761
|
+
is_access_code_error: true;
|
|
45762
|
+
created_at?: string | undefined;
|
|
45349
45763
|
} | {
|
|
45350
45764
|
message: string;
|
|
45351
45765
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -45399,6 +45813,10 @@ declare const batch: z.ZodObject<{
|
|
|
45399
45813
|
message: string;
|
|
45400
45814
|
warning_code: "schlage_detected_duplicate";
|
|
45401
45815
|
created_at?: string | undefined;
|
|
45816
|
+
} | {
|
|
45817
|
+
message: string;
|
|
45818
|
+
warning_code: "provider_issue";
|
|
45819
|
+
created_at?: string | undefined;
|
|
45402
45820
|
} | {
|
|
45403
45821
|
message: string;
|
|
45404
45822
|
warning_code: "schlage_creation_outage";
|
|
@@ -46419,6 +46837,10 @@ declare const batch: z.ZodObject<{
|
|
|
46419
46837
|
message: string;
|
|
46420
46838
|
created_at: string;
|
|
46421
46839
|
warning_code: "entrance_setup_required";
|
|
46840
|
+
} | {
|
|
46841
|
+
message: string;
|
|
46842
|
+
created_at: string;
|
|
46843
|
+
warning_code: "salto_ks_privacy_mode";
|
|
46422
46844
|
})[];
|
|
46423
46845
|
space_ids: string[];
|
|
46424
46846
|
acs_entrance_id: string;
|
|
@@ -46492,6 +46914,7 @@ declare const batch: z.ZodObject<{
|
|
|
46492
46914
|
dormakaba_ambiance_metadata?: {
|
|
46493
46915
|
access_point_name: string;
|
|
46494
46916
|
} | undefined;
|
|
46917
|
+
is_locked?: boolean | undefined;
|
|
46495
46918
|
}[] | undefined;
|
|
46496
46919
|
acs_systems?: {
|
|
46497
46920
|
name: string;
|
|
@@ -50046,6 +50469,11 @@ declare const batch: z.ZodObject<{
|
|
|
50046
50469
|
created_at: string;
|
|
50047
50470
|
error_code: "lockly_missing_wifi_bridge";
|
|
50048
50471
|
is_device_error: true;
|
|
50472
|
+
} | {
|
|
50473
|
+
message: string;
|
|
50474
|
+
error_code: "provider_issue";
|
|
50475
|
+
is_access_code_error: true;
|
|
50476
|
+
created_at?: string | undefined;
|
|
50049
50477
|
} | {
|
|
50050
50478
|
message: string;
|
|
50051
50479
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -50129,6 +50557,11 @@ declare const batch: z.ZodObject<{
|
|
|
50129
50557
|
error_code: "august_lock_missing_keypad";
|
|
50130
50558
|
is_access_code_error: true;
|
|
50131
50559
|
created_at?: string | undefined;
|
|
50560
|
+
} | {
|
|
50561
|
+
message: string;
|
|
50562
|
+
error_code: "access_code_inactive";
|
|
50563
|
+
is_access_code_error: true;
|
|
50564
|
+
created_at?: string | undefined;
|
|
50132
50565
|
} | {
|
|
50133
50566
|
message: string;
|
|
50134
50567
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -50182,6 +50615,10 @@ declare const batch: z.ZodObject<{
|
|
|
50182
50615
|
message: string;
|
|
50183
50616
|
warning_code: "schlage_detected_duplicate";
|
|
50184
50617
|
created_at?: string | undefined;
|
|
50618
|
+
} | {
|
|
50619
|
+
message: string;
|
|
50620
|
+
warning_code: "provider_issue";
|
|
50621
|
+
created_at?: string | undefined;
|
|
50185
50622
|
} | {
|
|
50186
50623
|
message: string;
|
|
50187
50624
|
warning_code: "schlage_creation_outage";
|
|
@@ -50407,6 +50844,11 @@ declare const batch: z.ZodObject<{
|
|
|
50407
50844
|
created_at: string;
|
|
50408
50845
|
error_code: "lockly_missing_wifi_bridge";
|
|
50409
50846
|
is_device_error: true;
|
|
50847
|
+
} | {
|
|
50848
|
+
message: string;
|
|
50849
|
+
error_code: "provider_issue";
|
|
50850
|
+
is_access_code_error: true;
|
|
50851
|
+
created_at?: string | undefined;
|
|
50410
50852
|
} | {
|
|
50411
50853
|
message: string;
|
|
50412
50854
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -50490,6 +50932,11 @@ declare const batch: z.ZodObject<{
|
|
|
50490
50932
|
error_code: "august_lock_missing_keypad";
|
|
50491
50933
|
is_access_code_error: true;
|
|
50492
50934
|
created_at?: string | undefined;
|
|
50935
|
+
} | {
|
|
50936
|
+
message: string;
|
|
50937
|
+
error_code: "access_code_inactive";
|
|
50938
|
+
is_access_code_error: true;
|
|
50939
|
+
created_at?: string | undefined;
|
|
50493
50940
|
} | {
|
|
50494
50941
|
message: string;
|
|
50495
50942
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -50543,6 +50990,10 @@ declare const batch: z.ZodObject<{
|
|
|
50543
50990
|
message: string;
|
|
50544
50991
|
warning_code: "schlage_detected_duplicate";
|
|
50545
50992
|
created_at?: string | undefined;
|
|
50993
|
+
} | {
|
|
50994
|
+
message: string;
|
|
50995
|
+
warning_code: "provider_issue";
|
|
50996
|
+
created_at?: string | undefined;
|
|
50546
50997
|
} | {
|
|
50547
50998
|
message: string;
|
|
50548
50999
|
warning_code: "schlage_creation_outage";
|
|
@@ -67870,6 +68321,15 @@ type Routes = {
|
|
|
67870
68321
|
created_at: string;
|
|
67871
68322
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
67872
68323
|
errors: ({
|
|
68324
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68325
|
+
message: string;
|
|
68326
|
+
/** Indicates that this is an access code error. */
|
|
68327
|
+
is_access_code_error: true;
|
|
68328
|
+
/** Date and time at which Seam created the error. */
|
|
68329
|
+
created_at?: string | undefined;
|
|
68330
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68331
|
+
error_code: 'provider_issue';
|
|
68332
|
+
} | {
|
|
67873
68333
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67874
68334
|
message: string;
|
|
67875
68335
|
/** Indicates that this is an access code error. */
|
|
@@ -68010,6 +68470,15 @@ type Routes = {
|
|
|
68010
68470
|
created_at?: string | undefined;
|
|
68011
68471
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68012
68472
|
error_code: 'august_lock_temporarily_offline';
|
|
68473
|
+
} | {
|
|
68474
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68475
|
+
message: string;
|
|
68476
|
+
/** Indicates that this is an access code error. */
|
|
68477
|
+
is_access_code_error: true;
|
|
68478
|
+
/** Date and time at which Seam created the error. */
|
|
68479
|
+
created_at?: string | undefined;
|
|
68480
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68481
|
+
error_code: 'access_code_inactive';
|
|
68013
68482
|
} | {
|
|
68014
68483
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68015
68484
|
message: string;
|
|
@@ -68217,6 +68686,13 @@ type Routes = {
|
|
|
68217
68686
|
})[];
|
|
68218
68687
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
68219
68688
|
warnings: ({
|
|
68689
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68690
|
+
message: string;
|
|
68691
|
+
/** Date and time at which Seam created the warning. */
|
|
68692
|
+
created_at?: string | undefined;
|
|
68693
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68694
|
+
warning_code: 'provider_issue';
|
|
68695
|
+
} | {
|
|
68220
68696
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68221
68697
|
message: string;
|
|
68222
68698
|
/** Date and time at which Seam created the warning. */
|
|
@@ -68524,6 +69000,15 @@ type Routes = {
|
|
|
68524
69000
|
created_at: string;
|
|
68525
69001
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
68526
69002
|
errors: ({
|
|
69003
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69004
|
+
message: string;
|
|
69005
|
+
/** Indicates that this is an access code error. */
|
|
69006
|
+
is_access_code_error: true;
|
|
69007
|
+
/** Date and time at which Seam created the error. */
|
|
69008
|
+
created_at?: string | undefined;
|
|
69009
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
69010
|
+
error_code: 'provider_issue';
|
|
69011
|
+
} | {
|
|
68527
69012
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68528
69013
|
message: string;
|
|
68529
69014
|
/** Indicates that this is an access code error. */
|
|
@@ -68664,6 +69149,15 @@ type Routes = {
|
|
|
68664
69149
|
created_at?: string | undefined;
|
|
68665
69150
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68666
69151
|
error_code: 'august_lock_temporarily_offline';
|
|
69152
|
+
} | {
|
|
69153
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69154
|
+
message: string;
|
|
69155
|
+
/** Indicates that this is an access code error. */
|
|
69156
|
+
is_access_code_error: true;
|
|
69157
|
+
/** Date and time at which Seam created the error. */
|
|
69158
|
+
created_at?: string | undefined;
|
|
69159
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
69160
|
+
error_code: 'access_code_inactive';
|
|
68667
69161
|
} | {
|
|
68668
69162
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68669
69163
|
message: string;
|
|
@@ -68871,6 +69365,13 @@ type Routes = {
|
|
|
68871
69365
|
})[];
|
|
68872
69366
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
68873
69367
|
warnings: ({
|
|
69368
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69369
|
+
message: string;
|
|
69370
|
+
/** Date and time at which Seam created the warning. */
|
|
69371
|
+
created_at?: string | undefined;
|
|
69372
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69373
|
+
warning_code: 'provider_issue';
|
|
69374
|
+
} | {
|
|
68874
69375
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68875
69376
|
message: string;
|
|
68876
69377
|
/** Date and time at which Seam created the warning. */
|
|
@@ -70698,6 +71199,15 @@ type Routes = {
|
|
|
70698
71199
|
created_at: string;
|
|
70699
71200
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
70700
71201
|
errors: ({
|
|
71202
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71203
|
+
message: string;
|
|
71204
|
+
/** Indicates that this is an access code error. */
|
|
71205
|
+
is_access_code_error: true;
|
|
71206
|
+
/** Date and time at which Seam created the error. */
|
|
71207
|
+
created_at?: string | undefined;
|
|
71208
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71209
|
+
error_code: 'provider_issue';
|
|
71210
|
+
} | {
|
|
70701
71211
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70702
71212
|
message: string;
|
|
70703
71213
|
/** Indicates that this is an access code error. */
|
|
@@ -70838,6 +71348,15 @@ type Routes = {
|
|
|
70838
71348
|
created_at?: string | undefined;
|
|
70839
71349
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70840
71350
|
error_code: 'august_lock_temporarily_offline';
|
|
71351
|
+
} | {
|
|
71352
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71353
|
+
message: string;
|
|
71354
|
+
/** Indicates that this is an access code error. */
|
|
71355
|
+
is_access_code_error: true;
|
|
71356
|
+
/** Date and time at which Seam created the error. */
|
|
71357
|
+
created_at?: string | undefined;
|
|
71358
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71359
|
+
error_code: 'access_code_inactive';
|
|
70841
71360
|
} | {
|
|
70842
71361
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70843
71362
|
message: string;
|
|
@@ -71045,6 +71564,13 @@ type Routes = {
|
|
|
71045
71564
|
})[];
|
|
71046
71565
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
71047
71566
|
warnings: ({
|
|
71567
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71568
|
+
message: string;
|
|
71569
|
+
/** Date and time at which Seam created the warning. */
|
|
71570
|
+
created_at?: string | undefined;
|
|
71571
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71572
|
+
warning_code: 'provider_issue';
|
|
71573
|
+
} | {
|
|
71048
71574
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71049
71575
|
message: string;
|
|
71050
71576
|
/** Date and time at which Seam created the warning. */
|
|
@@ -71398,6 +71924,15 @@ type Routes = {
|
|
|
71398
71924
|
created_at: string;
|
|
71399
71925
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
71400
71926
|
errors: ({
|
|
71927
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71928
|
+
message: string;
|
|
71929
|
+
/** Indicates that this is an access code error. */
|
|
71930
|
+
is_access_code_error: true;
|
|
71931
|
+
/** Date and time at which Seam created the error. */
|
|
71932
|
+
created_at?: string | undefined;
|
|
71933
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71934
|
+
error_code: 'provider_issue';
|
|
71935
|
+
} | {
|
|
71401
71936
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71402
71937
|
message: string;
|
|
71403
71938
|
/** Indicates that this is an access code error. */
|
|
@@ -71538,6 +72073,15 @@ type Routes = {
|
|
|
71538
72073
|
created_at?: string | undefined;
|
|
71539
72074
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71540
72075
|
error_code: 'august_lock_temporarily_offline';
|
|
72076
|
+
} | {
|
|
72077
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72078
|
+
message: string;
|
|
72079
|
+
/** Indicates that this is an access code error. */
|
|
72080
|
+
is_access_code_error: true;
|
|
72081
|
+
/** Date and time at which Seam created the error. */
|
|
72082
|
+
created_at?: string | undefined;
|
|
72083
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72084
|
+
error_code: 'access_code_inactive';
|
|
71541
72085
|
} | {
|
|
71542
72086
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71543
72087
|
message: string;
|
|
@@ -71745,6 +72289,13 @@ type Routes = {
|
|
|
71745
72289
|
})[];
|
|
71746
72290
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
71747
72291
|
warnings: ({
|
|
72292
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72293
|
+
message: string;
|
|
72294
|
+
/** Date and time at which Seam created the warning. */
|
|
72295
|
+
created_at?: string | undefined;
|
|
72296
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72297
|
+
warning_code: 'provider_issue';
|
|
72298
|
+
} | {
|
|
71748
72299
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71749
72300
|
message: string;
|
|
71750
72301
|
/** Date and time at which Seam created the warning. */
|
|
@@ -72041,6 +72592,15 @@ type Routes = {
|
|
|
72041
72592
|
created_at: string;
|
|
72042
72593
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
72043
72594
|
errors: ({
|
|
72595
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72596
|
+
message: string;
|
|
72597
|
+
/** Indicates that this is an access code error. */
|
|
72598
|
+
is_access_code_error: true;
|
|
72599
|
+
/** Date and time at which Seam created the error. */
|
|
72600
|
+
created_at?: string | undefined;
|
|
72601
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72602
|
+
error_code: 'provider_issue';
|
|
72603
|
+
} | {
|
|
72044
72604
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72045
72605
|
message: string;
|
|
72046
72606
|
/** Indicates that this is an access code error. */
|
|
@@ -72181,6 +72741,15 @@ type Routes = {
|
|
|
72181
72741
|
created_at?: string | undefined;
|
|
72182
72742
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72183
72743
|
error_code: 'august_lock_temporarily_offline';
|
|
72744
|
+
} | {
|
|
72745
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72746
|
+
message: string;
|
|
72747
|
+
/** Indicates that this is an access code error. */
|
|
72748
|
+
is_access_code_error: true;
|
|
72749
|
+
/** Date and time at which Seam created the error. */
|
|
72750
|
+
created_at?: string | undefined;
|
|
72751
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72752
|
+
error_code: 'access_code_inactive';
|
|
72184
72753
|
} | {
|
|
72185
72754
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72186
72755
|
message: string;
|
|
@@ -72388,6 +72957,13 @@ type Routes = {
|
|
|
72388
72957
|
})[];
|
|
72389
72958
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
72390
72959
|
warnings: ({
|
|
72960
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72961
|
+
message: string;
|
|
72962
|
+
/** Date and time at which Seam created the warning. */
|
|
72963
|
+
created_at?: string | undefined;
|
|
72964
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72965
|
+
warning_code: 'provider_issue';
|
|
72966
|
+
} | {
|
|
72391
72967
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72392
72968
|
message: string;
|
|
72393
72969
|
/** Date and time at which Seam created the warning. */
|
|
@@ -72661,6 +73237,15 @@ type Routes = {
|
|
|
72661
73237
|
created_at: string;
|
|
72662
73238
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
72663
73239
|
errors: ({
|
|
73240
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73241
|
+
message: string;
|
|
73242
|
+
/** Indicates that this is an access code error. */
|
|
73243
|
+
is_access_code_error: true;
|
|
73244
|
+
/** Date and time at which Seam created the error. */
|
|
73245
|
+
created_at?: string | undefined;
|
|
73246
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73247
|
+
error_code: 'provider_issue';
|
|
73248
|
+
} | {
|
|
72664
73249
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72665
73250
|
message: string;
|
|
72666
73251
|
/** Indicates that this is an access code error. */
|
|
@@ -72801,6 +73386,15 @@ type Routes = {
|
|
|
72801
73386
|
created_at?: string | undefined;
|
|
72802
73387
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72803
73388
|
error_code: 'august_lock_temporarily_offline';
|
|
73389
|
+
} | {
|
|
73390
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73391
|
+
message: string;
|
|
73392
|
+
/** Indicates that this is an access code error. */
|
|
73393
|
+
is_access_code_error: true;
|
|
73394
|
+
/** Date and time at which Seam created the error. */
|
|
73395
|
+
created_at?: string | undefined;
|
|
73396
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73397
|
+
error_code: 'access_code_inactive';
|
|
72804
73398
|
} | {
|
|
72805
73399
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72806
73400
|
message: string;
|
|
@@ -73008,6 +73602,13 @@ type Routes = {
|
|
|
73008
73602
|
})[];
|
|
73009
73603
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
73010
73604
|
warnings: ({
|
|
73605
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73606
|
+
message: string;
|
|
73607
|
+
/** Date and time at which Seam created the warning. */
|
|
73608
|
+
created_at?: string | undefined;
|
|
73609
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73610
|
+
warning_code: 'provider_issue';
|
|
73611
|
+
} | {
|
|
73011
73612
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73012
73613
|
message: string;
|
|
73013
73614
|
/** Date and time at which Seam created the warning. */
|
|
@@ -73316,6 +73917,15 @@ type Routes = {
|
|
|
73316
73917
|
created_at: string;
|
|
73317
73918
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
73318
73919
|
errors: ({
|
|
73920
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73921
|
+
message: string;
|
|
73922
|
+
/** Indicates that this is an access code error. */
|
|
73923
|
+
is_access_code_error: true;
|
|
73924
|
+
/** Date and time at which Seam created the error. */
|
|
73925
|
+
created_at?: string | undefined;
|
|
73926
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73927
|
+
error_code: 'provider_issue';
|
|
73928
|
+
} | {
|
|
73319
73929
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73320
73930
|
message: string;
|
|
73321
73931
|
/** Indicates that this is an access code error. */
|
|
@@ -73456,6 +74066,15 @@ type Routes = {
|
|
|
73456
74066
|
created_at?: string | undefined;
|
|
73457
74067
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73458
74068
|
error_code: 'august_lock_temporarily_offline';
|
|
74069
|
+
} | {
|
|
74070
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74071
|
+
message: string;
|
|
74072
|
+
/** Indicates that this is an access code error. */
|
|
74073
|
+
is_access_code_error: true;
|
|
74074
|
+
/** Date and time at which Seam created the error. */
|
|
74075
|
+
created_at?: string | undefined;
|
|
74076
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74077
|
+
error_code: 'access_code_inactive';
|
|
73459
74078
|
} | {
|
|
73460
74079
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73461
74080
|
message: string;
|
|
@@ -73663,6 +74282,13 @@ type Routes = {
|
|
|
73663
74282
|
})[];
|
|
73664
74283
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
73665
74284
|
warnings: ({
|
|
74285
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74286
|
+
message: string;
|
|
74287
|
+
/** Date and time at which Seam created the warning. */
|
|
74288
|
+
created_at?: string | undefined;
|
|
74289
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74290
|
+
warning_code: 'provider_issue';
|
|
74291
|
+
} | {
|
|
73666
74292
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73667
74293
|
message: string;
|
|
73668
74294
|
/** Date and time at which Seam created the warning. */
|
|
@@ -75401,6 +76027,15 @@ type Routes = {
|
|
|
75401
76027
|
created_at: string;
|
|
75402
76028
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
75403
76029
|
errors: ({
|
|
76030
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76031
|
+
message: string;
|
|
76032
|
+
/** Indicates that this is an access code error. */
|
|
76033
|
+
is_access_code_error: true;
|
|
76034
|
+
/** Date and time at which Seam created the error. */
|
|
76035
|
+
created_at?: string | undefined;
|
|
76036
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76037
|
+
error_code: 'provider_issue';
|
|
76038
|
+
} | {
|
|
75404
76039
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75405
76040
|
message: string;
|
|
75406
76041
|
/** Indicates that this is an access code error. */
|
|
@@ -75541,6 +76176,15 @@ type Routes = {
|
|
|
75541
76176
|
created_at?: string | undefined;
|
|
75542
76177
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75543
76178
|
error_code: 'august_lock_temporarily_offline';
|
|
76179
|
+
} | {
|
|
76180
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76181
|
+
message: string;
|
|
76182
|
+
/** Indicates that this is an access code error. */
|
|
76183
|
+
is_access_code_error: true;
|
|
76184
|
+
/** Date and time at which Seam created the error. */
|
|
76185
|
+
created_at?: string | undefined;
|
|
76186
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76187
|
+
error_code: 'access_code_inactive';
|
|
75544
76188
|
} | {
|
|
75545
76189
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75546
76190
|
message: string;
|
|
@@ -75748,6 +76392,13 @@ type Routes = {
|
|
|
75748
76392
|
})[];
|
|
75749
76393
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
75750
76394
|
warnings: ({
|
|
76395
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76396
|
+
message: string;
|
|
76397
|
+
/** Date and time at which Seam created the warning. */
|
|
76398
|
+
created_at?: string | undefined;
|
|
76399
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76400
|
+
warning_code: 'provider_issue';
|
|
76401
|
+
} | {
|
|
75751
76402
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75752
76403
|
message: string;
|
|
75753
76404
|
/** Date and time at which Seam created the warning. */
|
|
@@ -75942,6 +76593,15 @@ type Routes = {
|
|
|
75942
76593
|
created_at: string;
|
|
75943
76594
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
75944
76595
|
errors: ({
|
|
76596
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76597
|
+
message: string;
|
|
76598
|
+
/** Indicates that this is an access code error. */
|
|
76599
|
+
is_access_code_error: true;
|
|
76600
|
+
/** Date and time at which Seam created the error. */
|
|
76601
|
+
created_at?: string | undefined;
|
|
76602
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76603
|
+
error_code: 'provider_issue';
|
|
76604
|
+
} | {
|
|
75945
76605
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75946
76606
|
message: string;
|
|
75947
76607
|
/** Indicates that this is an access code error. */
|
|
@@ -76082,6 +76742,15 @@ type Routes = {
|
|
|
76082
76742
|
created_at?: string | undefined;
|
|
76083
76743
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76084
76744
|
error_code: 'august_lock_temporarily_offline';
|
|
76745
|
+
} | {
|
|
76746
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76747
|
+
message: string;
|
|
76748
|
+
/** Indicates that this is an access code error. */
|
|
76749
|
+
is_access_code_error: true;
|
|
76750
|
+
/** Date and time at which Seam created the error. */
|
|
76751
|
+
created_at?: string | undefined;
|
|
76752
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76753
|
+
error_code: 'access_code_inactive';
|
|
76085
76754
|
} | {
|
|
76086
76755
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76087
76756
|
message: string;
|
|
@@ -76289,6 +76958,13 @@ type Routes = {
|
|
|
76289
76958
|
})[];
|
|
76290
76959
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
76291
76960
|
warnings: ({
|
|
76961
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76962
|
+
message: string;
|
|
76963
|
+
/** Date and time at which Seam created the warning. */
|
|
76964
|
+
created_at?: string | undefined;
|
|
76965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76966
|
+
warning_code: 'provider_issue';
|
|
76967
|
+
} | {
|
|
76292
76968
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76293
76969
|
message: string;
|
|
76294
76970
|
/** Date and time at which Seam created the warning. */
|
|
@@ -79953,6 +80629,13 @@ type Routes = {
|
|
|
79953
80629
|
message: string;
|
|
79954
80630
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79955
80631
|
warning_code: 'entrance_setup_required';
|
|
80632
|
+
} | {
|
|
80633
|
+
/** Date and time at which Seam created the warning. */
|
|
80634
|
+
created_at: string;
|
|
80635
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
80636
|
+
message: string;
|
|
80637
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80638
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
79956
80639
|
})[];
|
|
79957
80640
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
79958
80641
|
latch_metadata?: {
|
|
@@ -80071,6 +80754,8 @@ type Routes = {
|
|
|
80071
80754
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
80072
80755
|
entry_relays_total_count: number;
|
|
80073
80756
|
} | undefined;
|
|
80757
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
80758
|
+
is_locked?: boolean | undefined;
|
|
80074
80759
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
80075
80760
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
80076
80761
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -84639,6 +85324,13 @@ type Routes = {
|
|
|
84639
85324
|
message: string;
|
|
84640
85325
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84641
85326
|
warning_code: 'entrance_setup_required';
|
|
85327
|
+
} | {
|
|
85328
|
+
/** Date and time at which Seam created the warning. */
|
|
85329
|
+
created_at: string;
|
|
85330
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85331
|
+
message: string;
|
|
85332
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85333
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
84642
85334
|
})[];
|
|
84643
85335
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84644
85336
|
latch_metadata?: {
|
|
@@ -84757,6 +85449,8 @@ type Routes = {
|
|
|
84757
85449
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
84758
85450
|
entry_relays_total_count: number;
|
|
84759
85451
|
} | undefined;
|
|
85452
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
85453
|
+
is_locked?: boolean | undefined;
|
|
84760
85454
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
84761
85455
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
84762
85456
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -86073,6 +86767,13 @@ type Routes = {
|
|
|
86073
86767
|
message: string;
|
|
86074
86768
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86075
86769
|
warning_code: 'entrance_setup_required';
|
|
86770
|
+
} | {
|
|
86771
|
+
/** Date and time at which Seam created the warning. */
|
|
86772
|
+
created_at: string;
|
|
86773
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86774
|
+
message: string;
|
|
86775
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86776
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
86076
86777
|
})[];
|
|
86077
86778
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
86078
86779
|
latch_metadata?: {
|
|
@@ -86191,6 +86892,8 @@ type Routes = {
|
|
|
86191
86892
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
86192
86893
|
entry_relays_total_count: number;
|
|
86193
86894
|
} | undefined;
|
|
86895
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
86896
|
+
is_locked?: boolean | undefined;
|
|
86194
86897
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
86195
86898
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
86196
86899
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -87808,6 +88511,13 @@ type Routes = {
|
|
|
87808
88511
|
message: string;
|
|
87809
88512
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87810
88513
|
warning_code: 'entrance_setup_required';
|
|
88514
|
+
} | {
|
|
88515
|
+
/** Date and time at which Seam created the warning. */
|
|
88516
|
+
created_at: string;
|
|
88517
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88518
|
+
message: string;
|
|
88519
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88520
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
87811
88521
|
})[];
|
|
87812
88522
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
87813
88523
|
latch_metadata?: {
|
|
@@ -87926,6 +88636,8 @@ type Routes = {
|
|
|
87926
88636
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
87927
88637
|
entry_relays_total_count: number;
|
|
87928
88638
|
} | undefined;
|
|
88639
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
88640
|
+
is_locked?: boolean | undefined;
|
|
87929
88641
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
87930
88642
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
87931
88643
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -93360,6 +94072,13 @@ type Routes = {
|
|
|
93360
94072
|
message: string;
|
|
93361
94073
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
93362
94074
|
warning_code: 'entrance_setup_required';
|
|
94075
|
+
} | {
|
|
94076
|
+
/** Date and time at which Seam created the warning. */
|
|
94077
|
+
created_at: string;
|
|
94078
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94079
|
+
message: string;
|
|
94080
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94081
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
93363
94082
|
})[];
|
|
93364
94083
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
93365
94084
|
latch_metadata?: {
|
|
@@ -93478,6 +94197,8 @@ type Routes = {
|
|
|
93478
94197
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
93479
94198
|
entry_relays_total_count: number;
|
|
93480
94199
|
} | undefined;
|
|
94200
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
94201
|
+
is_locked?: boolean | undefined;
|
|
93481
94202
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
93482
94203
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
93483
94204
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -93581,6 +94302,13 @@ type Routes = {
|
|
|
93581
94302
|
message: string;
|
|
93582
94303
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
93583
94304
|
warning_code: 'entrance_setup_required';
|
|
94305
|
+
} | {
|
|
94306
|
+
/** Date and time at which Seam created the warning. */
|
|
94307
|
+
created_at: string;
|
|
94308
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94309
|
+
message: string;
|
|
94310
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94311
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
93584
94312
|
})[];
|
|
93585
94313
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
93586
94314
|
latch_metadata?: {
|
|
@@ -93699,6 +94427,8 @@ type Routes = {
|
|
|
93699
94427
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
93700
94428
|
entry_relays_total_count: number;
|
|
93701
94429
|
} | undefined;
|
|
94430
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
94431
|
+
is_locked?: boolean | undefined;
|
|
93702
94432
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
93703
94433
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
93704
94434
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -96791,6 +97521,13 @@ type Routes = {
|
|
|
96791
97521
|
message: string;
|
|
96792
97522
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96793
97523
|
warning_code: 'entrance_setup_required';
|
|
97524
|
+
} | {
|
|
97525
|
+
/** Date and time at which Seam created the warning. */
|
|
97526
|
+
created_at: string;
|
|
97527
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97528
|
+
message: string;
|
|
97529
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97530
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
96794
97531
|
})[];
|
|
96795
97532
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
96796
97533
|
latch_metadata?: {
|
|
@@ -96909,6 +97646,8 @@ type Routes = {
|
|
|
96909
97646
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
96910
97647
|
entry_relays_total_count: number;
|
|
96911
97648
|
} | undefined;
|
|
97649
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
97650
|
+
is_locked?: boolean | undefined;
|
|
96912
97651
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
96913
97652
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
96914
97653
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -140539,6 +141278,13 @@ type Routes = {
|
|
|
140539
141278
|
message: string;
|
|
140540
141279
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
140541
141280
|
warning_code: 'entrance_setup_required';
|
|
141281
|
+
} | {
|
|
141282
|
+
/** Date and time at which Seam created the warning. */
|
|
141283
|
+
created_at: string;
|
|
141284
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141285
|
+
message: string;
|
|
141286
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141287
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
140542
141288
|
})[];
|
|
140543
141289
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
140544
141290
|
latch_metadata?: {
|
|
@@ -140657,6 +141403,8 @@ type Routes = {
|
|
|
140657
141403
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
140658
141404
|
entry_relays_total_count: number;
|
|
140659
141405
|
} | undefined;
|
|
141406
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
141407
|
+
is_locked?: boolean | undefined;
|
|
140660
141408
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
140661
141409
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
140662
141410
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -142393,6 +143141,13 @@ type Routes = {
|
|
|
142393
143141
|
message: string;
|
|
142394
143142
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142395
143143
|
warning_code: 'entrance_setup_required';
|
|
143144
|
+
} | {
|
|
143145
|
+
/** Date and time at which Seam created the warning. */
|
|
143146
|
+
created_at: string;
|
|
143147
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
143148
|
+
message: string;
|
|
143149
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
143150
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
142396
143151
|
})[];
|
|
142397
143152
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
142398
143153
|
latch_metadata?: {
|
|
@@ -142511,6 +143266,8 @@ type Routes = {
|
|
|
142511
143266
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
142512
143267
|
entry_relays_total_count: number;
|
|
142513
143268
|
} | undefined;
|
|
143269
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
143270
|
+
is_locked?: boolean | undefined;
|
|
142514
143271
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
142515
143272
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
142516
143273
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -164678,6 +165435,13 @@ type Routes = {
|
|
|
164678
165435
|
message: string;
|
|
164679
165436
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
164680
165437
|
warning_code: 'entrance_setup_required';
|
|
165438
|
+
} | {
|
|
165439
|
+
/** Date and time at which Seam created the warning. */
|
|
165440
|
+
created_at: string;
|
|
165441
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
165442
|
+
message: string;
|
|
165443
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
165444
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
164681
165445
|
})[];
|
|
164682
165446
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
164683
165447
|
latch_metadata?: {
|
|
@@ -164796,6 +165560,8 @@ type Routes = {
|
|
|
164796
165560
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
164797
165561
|
entry_relays_total_count: number;
|
|
164798
165562
|
} | undefined;
|
|
165563
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
165564
|
+
is_locked?: boolean | undefined;
|
|
164799
165565
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
164800
165566
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
164801
165567
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -167199,6 +167965,13 @@ type Routes = {
|
|
|
167199
167965
|
message: string;
|
|
167200
167966
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167201
167967
|
warning_code: 'entrance_setup_required';
|
|
167968
|
+
} | {
|
|
167969
|
+
/** Date and time at which Seam created the warning. */
|
|
167970
|
+
created_at: string;
|
|
167971
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
167972
|
+
message: string;
|
|
167973
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167974
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
167202
167975
|
})[];
|
|
167203
167976
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
167204
167977
|
latch_metadata?: {
|
|
@@ -167317,6 +168090,8 @@ type Routes = {
|
|
|
167317
168090
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
167318
168091
|
entry_relays_total_count: number;
|
|
167319
168092
|
} | undefined;
|
|
168093
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
168094
|
+
is_locked?: boolean | undefined;
|
|
167320
168095
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
167321
168096
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
167322
168097
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -173877,6 +174652,15 @@ type Routes = {
|
|
|
173877
174652
|
created_at: string;
|
|
173878
174653
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
173879
174654
|
errors: ({
|
|
174655
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174656
|
+
message: string;
|
|
174657
|
+
/** Indicates that this is an access code error. */
|
|
174658
|
+
is_access_code_error: true;
|
|
174659
|
+
/** Date and time at which Seam created the error. */
|
|
174660
|
+
created_at?: string | undefined;
|
|
174661
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174662
|
+
error_code: 'provider_issue';
|
|
174663
|
+
} | {
|
|
173880
174664
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
173881
174665
|
message: string;
|
|
173882
174666
|
/** Indicates that this is an access code error. */
|
|
@@ -174017,6 +174801,15 @@ type Routes = {
|
|
|
174017
174801
|
created_at?: string | undefined;
|
|
174018
174802
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174019
174803
|
error_code: 'august_lock_temporarily_offline';
|
|
174804
|
+
} | {
|
|
174805
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174806
|
+
message: string;
|
|
174807
|
+
/** Indicates that this is an access code error. */
|
|
174808
|
+
is_access_code_error: true;
|
|
174809
|
+
/** Date and time at which Seam created the error. */
|
|
174810
|
+
created_at?: string | undefined;
|
|
174811
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174812
|
+
error_code: 'access_code_inactive';
|
|
174020
174813
|
} | {
|
|
174021
174814
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174022
174815
|
message: string;
|
|
@@ -174224,6 +175017,13 @@ type Routes = {
|
|
|
174224
175017
|
})[];
|
|
174225
175018
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
174226
175019
|
warnings: ({
|
|
175020
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
175021
|
+
message: string;
|
|
175022
|
+
/** Date and time at which Seam created the warning. */
|
|
175023
|
+
created_at?: string | undefined;
|
|
175024
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175025
|
+
warning_code: 'provider_issue';
|
|
175026
|
+
} | {
|
|
174227
175027
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174228
175028
|
message: string;
|
|
174229
175029
|
/** Date and time at which Seam created the warning. */
|
|
@@ -174402,6 +175202,15 @@ type Routes = {
|
|
|
174402
175202
|
created_at: string;
|
|
174403
175203
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
174404
175204
|
errors: ({
|
|
175205
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175206
|
+
message: string;
|
|
175207
|
+
/** Indicates that this is an access code error. */
|
|
175208
|
+
is_access_code_error: true;
|
|
175209
|
+
/** Date and time at which Seam created the error. */
|
|
175210
|
+
created_at?: string | undefined;
|
|
175211
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
175212
|
+
error_code: 'provider_issue';
|
|
175213
|
+
} | {
|
|
174405
175214
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174406
175215
|
message: string;
|
|
174407
175216
|
/** Indicates that this is an access code error. */
|
|
@@ -174542,6 +175351,15 @@ type Routes = {
|
|
|
174542
175351
|
created_at?: string | undefined;
|
|
174543
175352
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174544
175353
|
error_code: 'august_lock_temporarily_offline';
|
|
175354
|
+
} | {
|
|
175355
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175356
|
+
message: string;
|
|
175357
|
+
/** Indicates that this is an access code error. */
|
|
175358
|
+
is_access_code_error: true;
|
|
175359
|
+
/** Date and time at which Seam created the error. */
|
|
175360
|
+
created_at?: string | undefined;
|
|
175361
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
175362
|
+
error_code: 'access_code_inactive';
|
|
174545
175363
|
} | {
|
|
174546
175364
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174547
175365
|
message: string;
|
|
@@ -174749,6 +175567,13 @@ type Routes = {
|
|
|
174749
175567
|
})[];
|
|
174750
175568
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
174751
175569
|
warnings: ({
|
|
175570
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
175571
|
+
message: string;
|
|
175572
|
+
/** Date and time at which Seam created the warning. */
|
|
175573
|
+
created_at?: string | undefined;
|
|
175574
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175575
|
+
warning_code: 'provider_issue';
|
|
175576
|
+
} | {
|
|
174752
175577
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174753
175578
|
message: string;
|
|
174754
175579
|
/** Date and time at which Seam created the warning. */
|