@seamapi/types 1.871.0 → 1.872.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 +301 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +668 -0
- package/dist/index.cjs +301 -28
- 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/batch.d.ts +202 -0
- package/lib/seam/connect/openapi.js +186 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +275 -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/openapi.ts +218 -0
- package/src/lib/seam/connect/route-types.ts +308 -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";
|
|
@@ -36733,6 +36924,22 @@ declare const batch: z.ZodObject<{
|
|
|
36733
36924
|
message: z.ZodString;
|
|
36734
36925
|
is_access_code_error: z.ZodLiteral<true>;
|
|
36735
36926
|
created_at: z.ZodOptional<z.ZodString>;
|
|
36927
|
+
} & {
|
|
36928
|
+
error_code: z.ZodLiteral<"provider_issue">;
|
|
36929
|
+
}, "strip", z.ZodTypeAny, {
|
|
36930
|
+
message: string;
|
|
36931
|
+
error_code: "provider_issue";
|
|
36932
|
+
is_access_code_error: true;
|
|
36933
|
+
created_at?: string | undefined;
|
|
36934
|
+
}, {
|
|
36935
|
+
message: string;
|
|
36936
|
+
error_code: "provider_issue";
|
|
36937
|
+
is_access_code_error: true;
|
|
36938
|
+
created_at?: string | undefined;
|
|
36939
|
+
}>, z.ZodObject<{
|
|
36940
|
+
message: z.ZodString;
|
|
36941
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
36942
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
36736
36943
|
} & {
|
|
36737
36944
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
36738
36945
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -36989,6 +37196,22 @@ declare const batch: z.ZodObject<{
|
|
|
36989
37196
|
message: z.ZodString;
|
|
36990
37197
|
is_access_code_error: z.ZodLiteral<true>;
|
|
36991
37198
|
created_at: z.ZodOptional<z.ZodString>;
|
|
37199
|
+
} & {
|
|
37200
|
+
error_code: z.ZodLiteral<"access_code_inactive">;
|
|
37201
|
+
}, "strip", z.ZodTypeAny, {
|
|
37202
|
+
message: string;
|
|
37203
|
+
error_code: "access_code_inactive";
|
|
37204
|
+
is_access_code_error: true;
|
|
37205
|
+
created_at?: string | undefined;
|
|
37206
|
+
}, {
|
|
37207
|
+
message: string;
|
|
37208
|
+
error_code: "access_code_inactive";
|
|
37209
|
+
is_access_code_error: true;
|
|
37210
|
+
created_at?: string | undefined;
|
|
37211
|
+
}>, z.ZodObject<{
|
|
37212
|
+
message: z.ZodString;
|
|
37213
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
37214
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
36992
37215
|
} & {
|
|
36993
37216
|
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
36994
37217
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37436,6 +37659,19 @@ declare const batch: z.ZodObject<{
|
|
|
37436
37659
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
37437
37660
|
message: z.ZodString;
|
|
37438
37661
|
created_at: z.ZodOptional<z.ZodString>;
|
|
37662
|
+
} & {
|
|
37663
|
+
warning_code: z.ZodLiteral<"provider_issue">;
|
|
37664
|
+
}, "strip", z.ZodTypeAny, {
|
|
37665
|
+
message: string;
|
|
37666
|
+
warning_code: "provider_issue";
|
|
37667
|
+
created_at?: string | undefined;
|
|
37668
|
+
}, {
|
|
37669
|
+
message: string;
|
|
37670
|
+
warning_code: "provider_issue";
|
|
37671
|
+
created_at?: string | undefined;
|
|
37672
|
+
}>, z.ZodObject<{
|
|
37673
|
+
message: z.ZodString;
|
|
37674
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
37439
37675
|
} & {
|
|
37440
37676
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
37441
37677
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37982,6 +38218,11 @@ declare const batch: z.ZodObject<{
|
|
|
37982
38218
|
created_at: string;
|
|
37983
38219
|
error_code: "lockly_missing_wifi_bridge";
|
|
37984
38220
|
is_device_error: true;
|
|
38221
|
+
} | {
|
|
38222
|
+
message: string;
|
|
38223
|
+
error_code: "provider_issue";
|
|
38224
|
+
is_access_code_error: true;
|
|
38225
|
+
created_at?: string | undefined;
|
|
37985
38226
|
} | {
|
|
37986
38227
|
message: string;
|
|
37987
38228
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -38065,6 +38306,11 @@ declare const batch: z.ZodObject<{
|
|
|
38065
38306
|
error_code: "august_lock_missing_keypad";
|
|
38066
38307
|
is_access_code_error: true;
|
|
38067
38308
|
created_at?: string | undefined;
|
|
38309
|
+
} | {
|
|
38310
|
+
message: string;
|
|
38311
|
+
error_code: "access_code_inactive";
|
|
38312
|
+
is_access_code_error: true;
|
|
38313
|
+
created_at?: string | undefined;
|
|
38068
38314
|
} | {
|
|
38069
38315
|
message: string;
|
|
38070
38316
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -38118,6 +38364,10 @@ declare const batch: z.ZodObject<{
|
|
|
38118
38364
|
message: string;
|
|
38119
38365
|
warning_code: "schlage_detected_duplicate";
|
|
38120
38366
|
created_at?: string | undefined;
|
|
38367
|
+
} | {
|
|
38368
|
+
message: string;
|
|
38369
|
+
warning_code: "provider_issue";
|
|
38370
|
+
created_at?: string | undefined;
|
|
38121
38371
|
} | {
|
|
38122
38372
|
message: string;
|
|
38123
38373
|
warning_code: "schlage_creation_outage";
|
|
@@ -38342,6 +38592,11 @@ declare const batch: z.ZodObject<{
|
|
|
38342
38592
|
created_at: string;
|
|
38343
38593
|
error_code: "lockly_missing_wifi_bridge";
|
|
38344
38594
|
is_device_error: true;
|
|
38595
|
+
} | {
|
|
38596
|
+
message: string;
|
|
38597
|
+
error_code: "provider_issue";
|
|
38598
|
+
is_access_code_error: true;
|
|
38599
|
+
created_at?: string | undefined;
|
|
38345
38600
|
} | {
|
|
38346
38601
|
message: string;
|
|
38347
38602
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -38425,6 +38680,11 @@ declare const batch: z.ZodObject<{
|
|
|
38425
38680
|
error_code: "august_lock_missing_keypad";
|
|
38426
38681
|
is_access_code_error: true;
|
|
38427
38682
|
created_at?: string | undefined;
|
|
38683
|
+
} | {
|
|
38684
|
+
message: string;
|
|
38685
|
+
error_code: "access_code_inactive";
|
|
38686
|
+
is_access_code_error: true;
|
|
38687
|
+
created_at?: string | undefined;
|
|
38428
38688
|
} | {
|
|
38429
38689
|
message: string;
|
|
38430
38690
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -38478,6 +38738,10 @@ declare const batch: z.ZodObject<{
|
|
|
38478
38738
|
message: string;
|
|
38479
38739
|
warning_code: "schlage_detected_duplicate";
|
|
38480
38740
|
created_at?: string | undefined;
|
|
38741
|
+
} | {
|
|
38742
|
+
message: string;
|
|
38743
|
+
warning_code: "provider_issue";
|
|
38744
|
+
created_at?: string | undefined;
|
|
38481
38745
|
} | {
|
|
38482
38746
|
message: string;
|
|
38483
38747
|
warning_code: "schlage_creation_outage";
|
|
@@ -38610,6 +38874,22 @@ declare const batch: z.ZodObject<{
|
|
|
38610
38874
|
message: z.ZodString;
|
|
38611
38875
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38612
38876
|
created_at: z.ZodOptional<z.ZodString>;
|
|
38877
|
+
} & {
|
|
38878
|
+
error_code: z.ZodLiteral<"provider_issue">;
|
|
38879
|
+
}, "strip", z.ZodTypeAny, {
|
|
38880
|
+
message: string;
|
|
38881
|
+
error_code: "provider_issue";
|
|
38882
|
+
is_access_code_error: true;
|
|
38883
|
+
created_at?: string | undefined;
|
|
38884
|
+
}, {
|
|
38885
|
+
message: string;
|
|
38886
|
+
error_code: "provider_issue";
|
|
38887
|
+
is_access_code_error: true;
|
|
38888
|
+
created_at?: string | undefined;
|
|
38889
|
+
}>, z.ZodObject<{
|
|
38890
|
+
message: z.ZodString;
|
|
38891
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
38892
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38613
38893
|
} & {
|
|
38614
38894
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
38615
38895
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -38866,6 +39146,22 @@ declare const batch: z.ZodObject<{
|
|
|
38866
39146
|
message: z.ZodString;
|
|
38867
39147
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38868
39148
|
created_at: z.ZodOptional<z.ZodString>;
|
|
39149
|
+
} & {
|
|
39150
|
+
error_code: z.ZodLiteral<"access_code_inactive">;
|
|
39151
|
+
}, "strip", z.ZodTypeAny, {
|
|
39152
|
+
message: string;
|
|
39153
|
+
error_code: "access_code_inactive";
|
|
39154
|
+
is_access_code_error: true;
|
|
39155
|
+
created_at?: string | undefined;
|
|
39156
|
+
}, {
|
|
39157
|
+
message: string;
|
|
39158
|
+
error_code: "access_code_inactive";
|
|
39159
|
+
is_access_code_error: true;
|
|
39160
|
+
created_at?: string | undefined;
|
|
39161
|
+
}>, z.ZodObject<{
|
|
39162
|
+
message: z.ZodString;
|
|
39163
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
39164
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38869
39165
|
} & {
|
|
38870
39166
|
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
38871
39167
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39313,6 +39609,19 @@ declare const batch: z.ZodObject<{
|
|
|
39313
39609
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
39314
39610
|
message: z.ZodString;
|
|
39315
39611
|
created_at: z.ZodOptional<z.ZodString>;
|
|
39612
|
+
} & {
|
|
39613
|
+
warning_code: z.ZodLiteral<"provider_issue">;
|
|
39614
|
+
}, "strip", z.ZodTypeAny, {
|
|
39615
|
+
message: string;
|
|
39616
|
+
warning_code: "provider_issue";
|
|
39617
|
+
created_at?: string | undefined;
|
|
39618
|
+
}, {
|
|
39619
|
+
message: string;
|
|
39620
|
+
warning_code: "provider_issue";
|
|
39621
|
+
created_at?: string | undefined;
|
|
39622
|
+
}>, z.ZodObject<{
|
|
39623
|
+
message: z.ZodString;
|
|
39624
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
39316
39625
|
} & {
|
|
39317
39626
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
39318
39627
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39685,6 +39994,11 @@ declare const batch: z.ZodObject<{
|
|
|
39685
39994
|
created_at: string;
|
|
39686
39995
|
error_code: "lockly_missing_wifi_bridge";
|
|
39687
39996
|
is_device_error: true;
|
|
39997
|
+
} | {
|
|
39998
|
+
message: string;
|
|
39999
|
+
error_code: "provider_issue";
|
|
40000
|
+
is_access_code_error: true;
|
|
40001
|
+
created_at?: string | undefined;
|
|
39688
40002
|
} | {
|
|
39689
40003
|
message: string;
|
|
39690
40004
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -39768,6 +40082,11 @@ declare const batch: z.ZodObject<{
|
|
|
39768
40082
|
error_code: "august_lock_missing_keypad";
|
|
39769
40083
|
is_access_code_error: true;
|
|
39770
40084
|
created_at?: string | undefined;
|
|
40085
|
+
} | {
|
|
40086
|
+
message: string;
|
|
40087
|
+
error_code: "access_code_inactive";
|
|
40088
|
+
is_access_code_error: true;
|
|
40089
|
+
created_at?: string | undefined;
|
|
39771
40090
|
} | {
|
|
39772
40091
|
message: string;
|
|
39773
40092
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -39821,6 +40140,10 @@ declare const batch: z.ZodObject<{
|
|
|
39821
40140
|
message: string;
|
|
39822
40141
|
warning_code: "schlage_detected_duplicate";
|
|
39823
40142
|
created_at?: string | undefined;
|
|
40143
|
+
} | {
|
|
40144
|
+
message: string;
|
|
40145
|
+
warning_code: "provider_issue";
|
|
40146
|
+
created_at?: string | undefined;
|
|
39824
40147
|
} | {
|
|
39825
40148
|
message: string;
|
|
39826
40149
|
warning_code: "schlage_creation_outage";
|
|
@@ -39992,6 +40315,11 @@ declare const batch: z.ZodObject<{
|
|
|
39992
40315
|
created_at: string;
|
|
39993
40316
|
error_code: "lockly_missing_wifi_bridge";
|
|
39994
40317
|
is_device_error: true;
|
|
40318
|
+
} | {
|
|
40319
|
+
message: string;
|
|
40320
|
+
error_code: "provider_issue";
|
|
40321
|
+
is_access_code_error: true;
|
|
40322
|
+
created_at?: string | undefined;
|
|
39995
40323
|
} | {
|
|
39996
40324
|
message: string;
|
|
39997
40325
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -40075,6 +40403,11 @@ declare const batch: z.ZodObject<{
|
|
|
40075
40403
|
error_code: "august_lock_missing_keypad";
|
|
40076
40404
|
is_access_code_error: true;
|
|
40077
40405
|
created_at?: string | undefined;
|
|
40406
|
+
} | {
|
|
40407
|
+
message: string;
|
|
40408
|
+
error_code: "access_code_inactive";
|
|
40409
|
+
is_access_code_error: true;
|
|
40410
|
+
created_at?: string | undefined;
|
|
40078
40411
|
} | {
|
|
40079
40412
|
message: string;
|
|
40080
40413
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -40128,6 +40461,10 @@ declare const batch: z.ZodObject<{
|
|
|
40128
40461
|
message: string;
|
|
40129
40462
|
warning_code: "schlage_detected_duplicate";
|
|
40130
40463
|
created_at?: string | undefined;
|
|
40464
|
+
} | {
|
|
40465
|
+
message: string;
|
|
40466
|
+
warning_code: "provider_issue";
|
|
40467
|
+
created_at?: string | undefined;
|
|
40131
40468
|
} | {
|
|
40132
40469
|
message: string;
|
|
40133
40470
|
warning_code: "schlage_creation_outage";
|
|
@@ -44902,6 +45239,11 @@ declare const batch: z.ZodObject<{
|
|
|
44902
45239
|
created_at: string;
|
|
44903
45240
|
error_code: "lockly_missing_wifi_bridge";
|
|
44904
45241
|
is_device_error: true;
|
|
45242
|
+
} | {
|
|
45243
|
+
message: string;
|
|
45244
|
+
error_code: "provider_issue";
|
|
45245
|
+
is_access_code_error: true;
|
|
45246
|
+
created_at?: string | undefined;
|
|
44905
45247
|
} | {
|
|
44906
45248
|
message: string;
|
|
44907
45249
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -44985,6 +45327,11 @@ declare const batch: z.ZodObject<{
|
|
|
44985
45327
|
error_code: "august_lock_missing_keypad";
|
|
44986
45328
|
is_access_code_error: true;
|
|
44987
45329
|
created_at?: string | undefined;
|
|
45330
|
+
} | {
|
|
45331
|
+
message: string;
|
|
45332
|
+
error_code: "access_code_inactive";
|
|
45333
|
+
is_access_code_error: true;
|
|
45334
|
+
created_at?: string | undefined;
|
|
44988
45335
|
} | {
|
|
44989
45336
|
message: string;
|
|
44990
45337
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -45038,6 +45385,10 @@ declare const batch: z.ZodObject<{
|
|
|
45038
45385
|
message: string;
|
|
45039
45386
|
warning_code: "schlage_detected_duplicate";
|
|
45040
45387
|
created_at?: string | undefined;
|
|
45388
|
+
} | {
|
|
45389
|
+
message: string;
|
|
45390
|
+
warning_code: "provider_issue";
|
|
45391
|
+
created_at?: string | undefined;
|
|
45041
45392
|
} | {
|
|
45042
45393
|
message: string;
|
|
45043
45394
|
warning_code: "schlage_creation_outage";
|
|
@@ -45263,6 +45614,11 @@ declare const batch: z.ZodObject<{
|
|
|
45263
45614
|
created_at: string;
|
|
45264
45615
|
error_code: "lockly_missing_wifi_bridge";
|
|
45265
45616
|
is_device_error: true;
|
|
45617
|
+
} | {
|
|
45618
|
+
message: string;
|
|
45619
|
+
error_code: "provider_issue";
|
|
45620
|
+
is_access_code_error: true;
|
|
45621
|
+
created_at?: string | undefined;
|
|
45266
45622
|
} | {
|
|
45267
45623
|
message: string;
|
|
45268
45624
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -45346,6 +45702,11 @@ declare const batch: z.ZodObject<{
|
|
|
45346
45702
|
error_code: "august_lock_missing_keypad";
|
|
45347
45703
|
is_access_code_error: true;
|
|
45348
45704
|
created_at?: string | undefined;
|
|
45705
|
+
} | {
|
|
45706
|
+
message: string;
|
|
45707
|
+
error_code: "access_code_inactive";
|
|
45708
|
+
is_access_code_error: true;
|
|
45709
|
+
created_at?: string | undefined;
|
|
45349
45710
|
} | {
|
|
45350
45711
|
message: string;
|
|
45351
45712
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -45399,6 +45760,10 @@ declare const batch: z.ZodObject<{
|
|
|
45399
45760
|
message: string;
|
|
45400
45761
|
warning_code: "schlage_detected_duplicate";
|
|
45401
45762
|
created_at?: string | undefined;
|
|
45763
|
+
} | {
|
|
45764
|
+
message: string;
|
|
45765
|
+
warning_code: "provider_issue";
|
|
45766
|
+
created_at?: string | undefined;
|
|
45402
45767
|
} | {
|
|
45403
45768
|
message: string;
|
|
45404
45769
|
warning_code: "schlage_creation_outage";
|
|
@@ -50046,6 +50411,11 @@ declare const batch: z.ZodObject<{
|
|
|
50046
50411
|
created_at: string;
|
|
50047
50412
|
error_code: "lockly_missing_wifi_bridge";
|
|
50048
50413
|
is_device_error: true;
|
|
50414
|
+
} | {
|
|
50415
|
+
message: string;
|
|
50416
|
+
error_code: "provider_issue";
|
|
50417
|
+
is_access_code_error: true;
|
|
50418
|
+
created_at?: string | undefined;
|
|
50049
50419
|
} | {
|
|
50050
50420
|
message: string;
|
|
50051
50421
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -50129,6 +50499,11 @@ declare const batch: z.ZodObject<{
|
|
|
50129
50499
|
error_code: "august_lock_missing_keypad";
|
|
50130
50500
|
is_access_code_error: true;
|
|
50131
50501
|
created_at?: string | undefined;
|
|
50502
|
+
} | {
|
|
50503
|
+
message: string;
|
|
50504
|
+
error_code: "access_code_inactive";
|
|
50505
|
+
is_access_code_error: true;
|
|
50506
|
+
created_at?: string | undefined;
|
|
50132
50507
|
} | {
|
|
50133
50508
|
message: string;
|
|
50134
50509
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -50182,6 +50557,10 @@ declare const batch: z.ZodObject<{
|
|
|
50182
50557
|
message: string;
|
|
50183
50558
|
warning_code: "schlage_detected_duplicate";
|
|
50184
50559
|
created_at?: string | undefined;
|
|
50560
|
+
} | {
|
|
50561
|
+
message: string;
|
|
50562
|
+
warning_code: "provider_issue";
|
|
50563
|
+
created_at?: string | undefined;
|
|
50185
50564
|
} | {
|
|
50186
50565
|
message: string;
|
|
50187
50566
|
warning_code: "schlage_creation_outage";
|
|
@@ -50407,6 +50786,11 @@ declare const batch: z.ZodObject<{
|
|
|
50407
50786
|
created_at: string;
|
|
50408
50787
|
error_code: "lockly_missing_wifi_bridge";
|
|
50409
50788
|
is_device_error: true;
|
|
50789
|
+
} | {
|
|
50790
|
+
message: string;
|
|
50791
|
+
error_code: "provider_issue";
|
|
50792
|
+
is_access_code_error: true;
|
|
50793
|
+
created_at?: string | undefined;
|
|
50410
50794
|
} | {
|
|
50411
50795
|
message: string;
|
|
50412
50796
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -50490,6 +50874,11 @@ declare const batch: z.ZodObject<{
|
|
|
50490
50874
|
error_code: "august_lock_missing_keypad";
|
|
50491
50875
|
is_access_code_error: true;
|
|
50492
50876
|
created_at?: string | undefined;
|
|
50877
|
+
} | {
|
|
50878
|
+
message: string;
|
|
50879
|
+
error_code: "access_code_inactive";
|
|
50880
|
+
is_access_code_error: true;
|
|
50881
|
+
created_at?: string | undefined;
|
|
50493
50882
|
} | {
|
|
50494
50883
|
message: string;
|
|
50495
50884
|
error_code: "salto_ks_user_not_subscribed";
|
|
@@ -50543,6 +50932,10 @@ declare const batch: z.ZodObject<{
|
|
|
50543
50932
|
message: string;
|
|
50544
50933
|
warning_code: "schlage_detected_duplicate";
|
|
50545
50934
|
created_at?: string | undefined;
|
|
50935
|
+
} | {
|
|
50936
|
+
message: string;
|
|
50937
|
+
warning_code: "provider_issue";
|
|
50938
|
+
created_at?: string | undefined;
|
|
50546
50939
|
} | {
|
|
50547
50940
|
message: string;
|
|
50548
50941
|
warning_code: "schlage_creation_outage";
|
|
@@ -67870,6 +68263,15 @@ type Routes = {
|
|
|
67870
68263
|
created_at: string;
|
|
67871
68264
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
67872
68265
|
errors: ({
|
|
68266
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68267
|
+
message: string;
|
|
68268
|
+
/** Indicates that this is an access code error. */
|
|
68269
|
+
is_access_code_error: true;
|
|
68270
|
+
/** Date and time at which Seam created the error. */
|
|
68271
|
+
created_at?: string | undefined;
|
|
68272
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68273
|
+
error_code: 'provider_issue';
|
|
68274
|
+
} | {
|
|
67873
68275
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67874
68276
|
message: string;
|
|
67875
68277
|
/** Indicates that this is an access code error. */
|
|
@@ -68010,6 +68412,15 @@ type Routes = {
|
|
|
68010
68412
|
created_at?: string | undefined;
|
|
68011
68413
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68012
68414
|
error_code: 'august_lock_temporarily_offline';
|
|
68415
|
+
} | {
|
|
68416
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68417
|
+
message: string;
|
|
68418
|
+
/** Indicates that this is an access code error. */
|
|
68419
|
+
is_access_code_error: true;
|
|
68420
|
+
/** Date and time at which Seam created the error. */
|
|
68421
|
+
created_at?: string | undefined;
|
|
68422
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68423
|
+
error_code: 'access_code_inactive';
|
|
68013
68424
|
} | {
|
|
68014
68425
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68015
68426
|
message: string;
|
|
@@ -68217,6 +68628,13 @@ type Routes = {
|
|
|
68217
68628
|
})[];
|
|
68218
68629
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
68219
68630
|
warnings: ({
|
|
68631
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68632
|
+
message: string;
|
|
68633
|
+
/** Date and time at which Seam created the warning. */
|
|
68634
|
+
created_at?: string | undefined;
|
|
68635
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68636
|
+
warning_code: 'provider_issue';
|
|
68637
|
+
} | {
|
|
68220
68638
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68221
68639
|
message: string;
|
|
68222
68640
|
/** Date and time at which Seam created the warning. */
|
|
@@ -68524,6 +68942,15 @@ type Routes = {
|
|
|
68524
68942
|
created_at: string;
|
|
68525
68943
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
68526
68944
|
errors: ({
|
|
68945
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68946
|
+
message: string;
|
|
68947
|
+
/** Indicates that this is an access code error. */
|
|
68948
|
+
is_access_code_error: true;
|
|
68949
|
+
/** Date and time at which Seam created the error. */
|
|
68950
|
+
created_at?: string | undefined;
|
|
68951
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68952
|
+
error_code: 'provider_issue';
|
|
68953
|
+
} | {
|
|
68527
68954
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68528
68955
|
message: string;
|
|
68529
68956
|
/** Indicates that this is an access code error. */
|
|
@@ -68664,6 +69091,15 @@ type Routes = {
|
|
|
68664
69091
|
created_at?: string | undefined;
|
|
68665
69092
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68666
69093
|
error_code: 'august_lock_temporarily_offline';
|
|
69094
|
+
} | {
|
|
69095
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69096
|
+
message: string;
|
|
69097
|
+
/** Indicates that this is an access code error. */
|
|
69098
|
+
is_access_code_error: true;
|
|
69099
|
+
/** Date and time at which Seam created the error. */
|
|
69100
|
+
created_at?: string | undefined;
|
|
69101
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
69102
|
+
error_code: 'access_code_inactive';
|
|
68667
69103
|
} | {
|
|
68668
69104
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68669
69105
|
message: string;
|
|
@@ -68871,6 +69307,13 @@ type Routes = {
|
|
|
68871
69307
|
})[];
|
|
68872
69308
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
68873
69309
|
warnings: ({
|
|
69310
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69311
|
+
message: string;
|
|
69312
|
+
/** Date and time at which Seam created the warning. */
|
|
69313
|
+
created_at?: string | undefined;
|
|
69314
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69315
|
+
warning_code: 'provider_issue';
|
|
69316
|
+
} | {
|
|
68874
69317
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68875
69318
|
message: string;
|
|
68876
69319
|
/** Date and time at which Seam created the warning. */
|
|
@@ -70698,6 +71141,15 @@ type Routes = {
|
|
|
70698
71141
|
created_at: string;
|
|
70699
71142
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
70700
71143
|
errors: ({
|
|
71144
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71145
|
+
message: string;
|
|
71146
|
+
/** Indicates that this is an access code error. */
|
|
71147
|
+
is_access_code_error: true;
|
|
71148
|
+
/** Date and time at which Seam created the error. */
|
|
71149
|
+
created_at?: string | undefined;
|
|
71150
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71151
|
+
error_code: 'provider_issue';
|
|
71152
|
+
} | {
|
|
70701
71153
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70702
71154
|
message: string;
|
|
70703
71155
|
/** Indicates that this is an access code error. */
|
|
@@ -70838,6 +71290,15 @@ type Routes = {
|
|
|
70838
71290
|
created_at?: string | undefined;
|
|
70839
71291
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70840
71292
|
error_code: 'august_lock_temporarily_offline';
|
|
71293
|
+
} | {
|
|
71294
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71295
|
+
message: string;
|
|
71296
|
+
/** Indicates that this is an access code error. */
|
|
71297
|
+
is_access_code_error: true;
|
|
71298
|
+
/** Date and time at which Seam created the error. */
|
|
71299
|
+
created_at?: string | undefined;
|
|
71300
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71301
|
+
error_code: 'access_code_inactive';
|
|
70841
71302
|
} | {
|
|
70842
71303
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70843
71304
|
message: string;
|
|
@@ -71045,6 +71506,13 @@ type Routes = {
|
|
|
71045
71506
|
})[];
|
|
71046
71507
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
71047
71508
|
warnings: ({
|
|
71509
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71510
|
+
message: string;
|
|
71511
|
+
/** Date and time at which Seam created the warning. */
|
|
71512
|
+
created_at?: string | undefined;
|
|
71513
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71514
|
+
warning_code: 'provider_issue';
|
|
71515
|
+
} | {
|
|
71048
71516
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71049
71517
|
message: string;
|
|
71050
71518
|
/** Date and time at which Seam created the warning. */
|
|
@@ -71398,6 +71866,15 @@ type Routes = {
|
|
|
71398
71866
|
created_at: string;
|
|
71399
71867
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
71400
71868
|
errors: ({
|
|
71869
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71870
|
+
message: string;
|
|
71871
|
+
/** Indicates that this is an access code error. */
|
|
71872
|
+
is_access_code_error: true;
|
|
71873
|
+
/** Date and time at which Seam created the error. */
|
|
71874
|
+
created_at?: string | undefined;
|
|
71875
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71876
|
+
error_code: 'provider_issue';
|
|
71877
|
+
} | {
|
|
71401
71878
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71402
71879
|
message: string;
|
|
71403
71880
|
/** Indicates that this is an access code error. */
|
|
@@ -71538,6 +72015,15 @@ type Routes = {
|
|
|
71538
72015
|
created_at?: string | undefined;
|
|
71539
72016
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71540
72017
|
error_code: 'august_lock_temporarily_offline';
|
|
72018
|
+
} | {
|
|
72019
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72020
|
+
message: string;
|
|
72021
|
+
/** Indicates that this is an access code error. */
|
|
72022
|
+
is_access_code_error: true;
|
|
72023
|
+
/** Date and time at which Seam created the error. */
|
|
72024
|
+
created_at?: string | undefined;
|
|
72025
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72026
|
+
error_code: 'access_code_inactive';
|
|
71541
72027
|
} | {
|
|
71542
72028
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71543
72029
|
message: string;
|
|
@@ -71745,6 +72231,13 @@ type Routes = {
|
|
|
71745
72231
|
})[];
|
|
71746
72232
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
71747
72233
|
warnings: ({
|
|
72234
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72235
|
+
message: string;
|
|
72236
|
+
/** Date and time at which Seam created the warning. */
|
|
72237
|
+
created_at?: string | undefined;
|
|
72238
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72239
|
+
warning_code: 'provider_issue';
|
|
72240
|
+
} | {
|
|
71748
72241
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71749
72242
|
message: string;
|
|
71750
72243
|
/** Date and time at which Seam created the warning. */
|
|
@@ -72041,6 +72534,15 @@ type Routes = {
|
|
|
72041
72534
|
created_at: string;
|
|
72042
72535
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
72043
72536
|
errors: ({
|
|
72537
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72538
|
+
message: string;
|
|
72539
|
+
/** Indicates that this is an access code error. */
|
|
72540
|
+
is_access_code_error: true;
|
|
72541
|
+
/** Date and time at which Seam created the error. */
|
|
72542
|
+
created_at?: string | undefined;
|
|
72543
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72544
|
+
error_code: 'provider_issue';
|
|
72545
|
+
} | {
|
|
72044
72546
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72045
72547
|
message: string;
|
|
72046
72548
|
/** Indicates that this is an access code error. */
|
|
@@ -72181,6 +72683,15 @@ type Routes = {
|
|
|
72181
72683
|
created_at?: string | undefined;
|
|
72182
72684
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72183
72685
|
error_code: 'august_lock_temporarily_offline';
|
|
72686
|
+
} | {
|
|
72687
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72688
|
+
message: string;
|
|
72689
|
+
/** Indicates that this is an access code error. */
|
|
72690
|
+
is_access_code_error: true;
|
|
72691
|
+
/** Date and time at which Seam created the error. */
|
|
72692
|
+
created_at?: string | undefined;
|
|
72693
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72694
|
+
error_code: 'access_code_inactive';
|
|
72184
72695
|
} | {
|
|
72185
72696
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72186
72697
|
message: string;
|
|
@@ -72388,6 +72899,13 @@ type Routes = {
|
|
|
72388
72899
|
})[];
|
|
72389
72900
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
72390
72901
|
warnings: ({
|
|
72902
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72903
|
+
message: string;
|
|
72904
|
+
/** Date and time at which Seam created the warning. */
|
|
72905
|
+
created_at?: string | undefined;
|
|
72906
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72907
|
+
warning_code: 'provider_issue';
|
|
72908
|
+
} | {
|
|
72391
72909
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72392
72910
|
message: string;
|
|
72393
72911
|
/** Date and time at which Seam created the warning. */
|
|
@@ -72661,6 +73179,15 @@ type Routes = {
|
|
|
72661
73179
|
created_at: string;
|
|
72662
73180
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
72663
73181
|
errors: ({
|
|
73182
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73183
|
+
message: string;
|
|
73184
|
+
/** Indicates that this is an access code error. */
|
|
73185
|
+
is_access_code_error: true;
|
|
73186
|
+
/** Date and time at which Seam created the error. */
|
|
73187
|
+
created_at?: string | undefined;
|
|
73188
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73189
|
+
error_code: 'provider_issue';
|
|
73190
|
+
} | {
|
|
72664
73191
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72665
73192
|
message: string;
|
|
72666
73193
|
/** Indicates that this is an access code error. */
|
|
@@ -72801,6 +73328,15 @@ type Routes = {
|
|
|
72801
73328
|
created_at?: string | undefined;
|
|
72802
73329
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72803
73330
|
error_code: 'august_lock_temporarily_offline';
|
|
73331
|
+
} | {
|
|
73332
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73333
|
+
message: string;
|
|
73334
|
+
/** Indicates that this is an access code error. */
|
|
73335
|
+
is_access_code_error: true;
|
|
73336
|
+
/** Date and time at which Seam created the error. */
|
|
73337
|
+
created_at?: string | undefined;
|
|
73338
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73339
|
+
error_code: 'access_code_inactive';
|
|
72804
73340
|
} | {
|
|
72805
73341
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72806
73342
|
message: string;
|
|
@@ -73008,6 +73544,13 @@ type Routes = {
|
|
|
73008
73544
|
})[];
|
|
73009
73545
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
73010
73546
|
warnings: ({
|
|
73547
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73548
|
+
message: string;
|
|
73549
|
+
/** Date and time at which Seam created the warning. */
|
|
73550
|
+
created_at?: string | undefined;
|
|
73551
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73552
|
+
warning_code: 'provider_issue';
|
|
73553
|
+
} | {
|
|
73011
73554
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73012
73555
|
message: string;
|
|
73013
73556
|
/** Date and time at which Seam created the warning. */
|
|
@@ -73316,6 +73859,15 @@ type Routes = {
|
|
|
73316
73859
|
created_at: string;
|
|
73317
73860
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
73318
73861
|
errors: ({
|
|
73862
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73863
|
+
message: string;
|
|
73864
|
+
/** Indicates that this is an access code error. */
|
|
73865
|
+
is_access_code_error: true;
|
|
73866
|
+
/** Date and time at which Seam created the error. */
|
|
73867
|
+
created_at?: string | undefined;
|
|
73868
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73869
|
+
error_code: 'provider_issue';
|
|
73870
|
+
} | {
|
|
73319
73871
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73320
73872
|
message: string;
|
|
73321
73873
|
/** Indicates that this is an access code error. */
|
|
@@ -73456,6 +74008,15 @@ type Routes = {
|
|
|
73456
74008
|
created_at?: string | undefined;
|
|
73457
74009
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73458
74010
|
error_code: 'august_lock_temporarily_offline';
|
|
74011
|
+
} | {
|
|
74012
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74013
|
+
message: string;
|
|
74014
|
+
/** Indicates that this is an access code error. */
|
|
74015
|
+
is_access_code_error: true;
|
|
74016
|
+
/** Date and time at which Seam created the error. */
|
|
74017
|
+
created_at?: string | undefined;
|
|
74018
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74019
|
+
error_code: 'access_code_inactive';
|
|
73459
74020
|
} | {
|
|
73460
74021
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73461
74022
|
message: string;
|
|
@@ -73663,6 +74224,13 @@ type Routes = {
|
|
|
73663
74224
|
})[];
|
|
73664
74225
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
73665
74226
|
warnings: ({
|
|
74227
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74228
|
+
message: string;
|
|
74229
|
+
/** Date and time at which Seam created the warning. */
|
|
74230
|
+
created_at?: string | undefined;
|
|
74231
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74232
|
+
warning_code: 'provider_issue';
|
|
74233
|
+
} | {
|
|
73666
74234
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73667
74235
|
message: string;
|
|
73668
74236
|
/** Date and time at which Seam created the warning. */
|
|
@@ -75401,6 +75969,15 @@ type Routes = {
|
|
|
75401
75969
|
created_at: string;
|
|
75402
75970
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
75403
75971
|
errors: ({
|
|
75972
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75973
|
+
message: string;
|
|
75974
|
+
/** Indicates that this is an access code error. */
|
|
75975
|
+
is_access_code_error: true;
|
|
75976
|
+
/** Date and time at which Seam created the error. */
|
|
75977
|
+
created_at?: string | undefined;
|
|
75978
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75979
|
+
error_code: 'provider_issue';
|
|
75980
|
+
} | {
|
|
75404
75981
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75405
75982
|
message: string;
|
|
75406
75983
|
/** Indicates that this is an access code error. */
|
|
@@ -75541,6 +76118,15 @@ type Routes = {
|
|
|
75541
76118
|
created_at?: string | undefined;
|
|
75542
76119
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75543
76120
|
error_code: 'august_lock_temporarily_offline';
|
|
76121
|
+
} | {
|
|
76122
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76123
|
+
message: string;
|
|
76124
|
+
/** Indicates that this is an access code error. */
|
|
76125
|
+
is_access_code_error: true;
|
|
76126
|
+
/** Date and time at which Seam created the error. */
|
|
76127
|
+
created_at?: string | undefined;
|
|
76128
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76129
|
+
error_code: 'access_code_inactive';
|
|
75544
76130
|
} | {
|
|
75545
76131
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75546
76132
|
message: string;
|
|
@@ -75748,6 +76334,13 @@ type Routes = {
|
|
|
75748
76334
|
})[];
|
|
75749
76335
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
75750
76336
|
warnings: ({
|
|
76337
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76338
|
+
message: string;
|
|
76339
|
+
/** Date and time at which Seam created the warning. */
|
|
76340
|
+
created_at?: string | undefined;
|
|
76341
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76342
|
+
warning_code: 'provider_issue';
|
|
76343
|
+
} | {
|
|
75751
76344
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75752
76345
|
message: string;
|
|
75753
76346
|
/** Date and time at which Seam created the warning. */
|
|
@@ -75942,6 +76535,15 @@ type Routes = {
|
|
|
75942
76535
|
created_at: string;
|
|
75943
76536
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
75944
76537
|
errors: ({
|
|
76538
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76539
|
+
message: string;
|
|
76540
|
+
/** Indicates that this is an access code error. */
|
|
76541
|
+
is_access_code_error: true;
|
|
76542
|
+
/** Date and time at which Seam created the error. */
|
|
76543
|
+
created_at?: string | undefined;
|
|
76544
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76545
|
+
error_code: 'provider_issue';
|
|
76546
|
+
} | {
|
|
75945
76547
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75946
76548
|
message: string;
|
|
75947
76549
|
/** Indicates that this is an access code error. */
|
|
@@ -76082,6 +76684,15 @@ type Routes = {
|
|
|
76082
76684
|
created_at?: string | undefined;
|
|
76083
76685
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76084
76686
|
error_code: 'august_lock_temporarily_offline';
|
|
76687
|
+
} | {
|
|
76688
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76689
|
+
message: string;
|
|
76690
|
+
/** Indicates that this is an access code error. */
|
|
76691
|
+
is_access_code_error: true;
|
|
76692
|
+
/** Date and time at which Seam created the error. */
|
|
76693
|
+
created_at?: string | undefined;
|
|
76694
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76695
|
+
error_code: 'access_code_inactive';
|
|
76085
76696
|
} | {
|
|
76086
76697
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76087
76698
|
message: string;
|
|
@@ -76289,6 +76900,13 @@ type Routes = {
|
|
|
76289
76900
|
})[];
|
|
76290
76901
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
76291
76902
|
warnings: ({
|
|
76903
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76904
|
+
message: string;
|
|
76905
|
+
/** Date and time at which Seam created the warning. */
|
|
76906
|
+
created_at?: string | undefined;
|
|
76907
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76908
|
+
warning_code: 'provider_issue';
|
|
76909
|
+
} | {
|
|
76292
76910
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76293
76911
|
message: string;
|
|
76294
76912
|
/** Date and time at which Seam created the warning. */
|
|
@@ -173877,6 +174495,15 @@ type Routes = {
|
|
|
173877
174495
|
created_at: string;
|
|
173878
174496
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
173879
174497
|
errors: ({
|
|
174498
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174499
|
+
message: string;
|
|
174500
|
+
/** Indicates that this is an access code error. */
|
|
174501
|
+
is_access_code_error: true;
|
|
174502
|
+
/** Date and time at which Seam created the error. */
|
|
174503
|
+
created_at?: string | undefined;
|
|
174504
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174505
|
+
error_code: 'provider_issue';
|
|
174506
|
+
} | {
|
|
173880
174507
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
173881
174508
|
message: string;
|
|
173882
174509
|
/** Indicates that this is an access code error. */
|
|
@@ -174017,6 +174644,15 @@ type Routes = {
|
|
|
174017
174644
|
created_at?: string | undefined;
|
|
174018
174645
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174019
174646
|
error_code: 'august_lock_temporarily_offline';
|
|
174647
|
+
} | {
|
|
174648
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174649
|
+
message: string;
|
|
174650
|
+
/** Indicates that this is an access code error. */
|
|
174651
|
+
is_access_code_error: true;
|
|
174652
|
+
/** Date and time at which Seam created the error. */
|
|
174653
|
+
created_at?: string | undefined;
|
|
174654
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174655
|
+
error_code: 'access_code_inactive';
|
|
174020
174656
|
} | {
|
|
174021
174657
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174022
174658
|
message: string;
|
|
@@ -174224,6 +174860,13 @@ type Routes = {
|
|
|
174224
174860
|
})[];
|
|
174225
174861
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
174226
174862
|
warnings: ({
|
|
174863
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174864
|
+
message: string;
|
|
174865
|
+
/** Date and time at which Seam created the warning. */
|
|
174866
|
+
created_at?: string | undefined;
|
|
174867
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
174868
|
+
warning_code: 'provider_issue';
|
|
174869
|
+
} | {
|
|
174227
174870
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174228
174871
|
message: string;
|
|
174229
174872
|
/** Date and time at which Seam created the warning. */
|
|
@@ -174402,6 +175045,15 @@ type Routes = {
|
|
|
174402
175045
|
created_at: string;
|
|
174403
175046
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
174404
175047
|
errors: ({
|
|
175048
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175049
|
+
message: string;
|
|
175050
|
+
/** Indicates that this is an access code error. */
|
|
175051
|
+
is_access_code_error: true;
|
|
175052
|
+
/** Date and time at which Seam created the error. */
|
|
175053
|
+
created_at?: string | undefined;
|
|
175054
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
175055
|
+
error_code: 'provider_issue';
|
|
175056
|
+
} | {
|
|
174405
175057
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174406
175058
|
message: string;
|
|
174407
175059
|
/** Indicates that this is an access code error. */
|
|
@@ -174542,6 +175194,15 @@ type Routes = {
|
|
|
174542
175194
|
created_at?: string | undefined;
|
|
174543
175195
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174544
175196
|
error_code: 'august_lock_temporarily_offline';
|
|
175197
|
+
} | {
|
|
175198
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175199
|
+
message: string;
|
|
175200
|
+
/** Indicates that this is an access code error. */
|
|
175201
|
+
is_access_code_error: true;
|
|
175202
|
+
/** Date and time at which Seam created the error. */
|
|
175203
|
+
created_at?: string | undefined;
|
|
175204
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
175205
|
+
error_code: 'access_code_inactive';
|
|
174545
175206
|
} | {
|
|
174546
175207
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174547
175208
|
message: string;
|
|
@@ -174749,6 +175410,13 @@ type Routes = {
|
|
|
174749
175410
|
})[];
|
|
174750
175411
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
174751
175412
|
warnings: ({
|
|
175413
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
175414
|
+
message: string;
|
|
175415
|
+
/** Date and time at which Seam created the warning. */
|
|
175416
|
+
created_at?: string | undefined;
|
|
175417
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175418
|
+
warning_code: 'provider_issue';
|
|
175419
|
+
} | {
|
|
174752
175420
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174753
175421
|
message: string;
|
|
174754
175422
|
/** Date and time at which Seam created the warning. */
|