@seamapi/types 1.869.0 → 1.870.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 +146 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +429 -0
- package/dist/index.cjs +146 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +129 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +38 -3
- 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 +47 -0
- package/lib/seam/connect/models/batch.d.ts +130 -0
- package/lib/seam/connect/openapi.js +106 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +176 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +46 -3
- package/src/lib/seam/connect/openapi.ts +128 -0
- package/src/lib/seam/connect/route-types.ts +198 -0
package/dist/connect.d.cts
CHANGED
|
@@ -122,6 +122,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
122
122
|
message: z.ZodString;
|
|
123
123
|
is_access_code_error: z.ZodLiteral<true>;
|
|
124
124
|
created_at: z.ZodOptional<z.ZodString>;
|
|
125
|
+
} & {
|
|
126
|
+
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
127
|
+
}, "strip", z.ZodTypeAny, {
|
|
128
|
+
message: string;
|
|
129
|
+
error_code: "access_code_state_unconfirmed";
|
|
130
|
+
is_access_code_error: true;
|
|
131
|
+
created_at?: string | undefined;
|
|
132
|
+
}, {
|
|
133
|
+
message: string;
|
|
134
|
+
error_code: "access_code_state_unconfirmed";
|
|
135
|
+
is_access_code_error: true;
|
|
136
|
+
created_at?: string | undefined;
|
|
137
|
+
}>, z.ZodObject<{
|
|
138
|
+
message: z.ZodString;
|
|
139
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
140
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
125
141
|
} & {
|
|
126
142
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
127
143
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -487,6 +503,19 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
487
503
|
}>, z.ZodObject<{
|
|
488
504
|
message: z.ZodString;
|
|
489
505
|
created_at: z.ZodOptional<z.ZodString>;
|
|
506
|
+
} & {
|
|
507
|
+
warning_code: z.ZodLiteral<"access_code_inactive">;
|
|
508
|
+
}, "strip", z.ZodTypeAny, {
|
|
509
|
+
message: string;
|
|
510
|
+
warning_code: "access_code_inactive";
|
|
511
|
+
created_at?: string | undefined;
|
|
512
|
+
}, {
|
|
513
|
+
message: string;
|
|
514
|
+
warning_code: "access_code_inactive";
|
|
515
|
+
created_at?: string | undefined;
|
|
516
|
+
}>, z.ZodObject<{
|
|
517
|
+
message: z.ZodString;
|
|
518
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
490
519
|
} & {
|
|
491
520
|
warning_code: z.ZodLiteral<"ultraloq_access_code_disabled">;
|
|
492
521
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -658,6 +687,22 @@ declare const access_code: z.ZodObject<{
|
|
|
658
687
|
message: z.ZodString;
|
|
659
688
|
is_access_code_error: z.ZodLiteral<true>;
|
|
660
689
|
created_at: z.ZodOptional<z.ZodString>;
|
|
690
|
+
} & {
|
|
691
|
+
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
692
|
+
}, "strip", z.ZodTypeAny, {
|
|
693
|
+
message: string;
|
|
694
|
+
error_code: "access_code_state_unconfirmed";
|
|
695
|
+
is_access_code_error: true;
|
|
696
|
+
created_at?: string | undefined;
|
|
697
|
+
}, {
|
|
698
|
+
message: string;
|
|
699
|
+
error_code: "access_code_state_unconfirmed";
|
|
700
|
+
is_access_code_error: true;
|
|
701
|
+
created_at?: string | undefined;
|
|
702
|
+
}>, z.ZodObject<{
|
|
703
|
+
message: z.ZodString;
|
|
704
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
705
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
661
706
|
} & {
|
|
662
707
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
663
708
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1357,6 +1402,19 @@ declare const access_code: z.ZodObject<{
|
|
|
1357
1402
|
}>, z.ZodObject<{
|
|
1358
1403
|
message: z.ZodString;
|
|
1359
1404
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1405
|
+
} & {
|
|
1406
|
+
warning_code: z.ZodLiteral<"access_code_inactive">;
|
|
1407
|
+
}, "strip", z.ZodTypeAny, {
|
|
1408
|
+
message: string;
|
|
1409
|
+
warning_code: "access_code_inactive";
|
|
1410
|
+
created_at?: string | undefined;
|
|
1411
|
+
}, {
|
|
1412
|
+
message: string;
|
|
1413
|
+
warning_code: "access_code_inactive";
|
|
1414
|
+
created_at?: string | undefined;
|
|
1415
|
+
}>, z.ZodObject<{
|
|
1416
|
+
message: z.ZodString;
|
|
1417
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1360
1418
|
} & {
|
|
1361
1419
|
warning_code: z.ZodLiteral<"ultraloq_access_code_disabled">;
|
|
1362
1420
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1750,6 +1808,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1750
1808
|
error_code: "no_space_for_access_code_on_device";
|
|
1751
1809
|
is_access_code_error: true;
|
|
1752
1810
|
created_at?: string | undefined;
|
|
1811
|
+
} | {
|
|
1812
|
+
message: string;
|
|
1813
|
+
error_code: "access_code_state_unconfirmed";
|
|
1814
|
+
is_access_code_error: true;
|
|
1815
|
+
created_at?: string | undefined;
|
|
1753
1816
|
} | {
|
|
1754
1817
|
message: string;
|
|
1755
1818
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -1859,6 +1922,10 @@ declare const access_code: z.ZodObject<{
|
|
|
1859
1922
|
message: string;
|
|
1860
1923
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1861
1924
|
created_at?: string | undefined;
|
|
1925
|
+
} | {
|
|
1926
|
+
message: string;
|
|
1927
|
+
warning_code: "access_code_inactive";
|
|
1928
|
+
created_at?: string | undefined;
|
|
1862
1929
|
} | {
|
|
1863
1930
|
message: string;
|
|
1864
1931
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -2089,6 +2156,11 @@ declare const access_code: z.ZodObject<{
|
|
|
2089
2156
|
error_code: "no_space_for_access_code_on_device";
|
|
2090
2157
|
is_access_code_error: true;
|
|
2091
2158
|
created_at?: string | undefined;
|
|
2159
|
+
} | {
|
|
2160
|
+
message: string;
|
|
2161
|
+
error_code: "access_code_state_unconfirmed";
|
|
2162
|
+
is_access_code_error: true;
|
|
2163
|
+
created_at?: string | undefined;
|
|
2092
2164
|
} | {
|
|
2093
2165
|
message: string;
|
|
2094
2166
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -2198,6 +2270,10 @@ declare const access_code: z.ZodObject<{
|
|
|
2198
2270
|
message: string;
|
|
2199
2271
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2200
2272
|
created_at?: string | undefined;
|
|
2273
|
+
} | {
|
|
2274
|
+
message: string;
|
|
2275
|
+
warning_code: "access_code_inactive";
|
|
2276
|
+
created_at?: string | undefined;
|
|
2201
2277
|
} | {
|
|
2202
2278
|
message: string;
|
|
2203
2279
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -2414,6 +2490,22 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2414
2490
|
message: z.ZodString;
|
|
2415
2491
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2416
2492
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2493
|
+
} & {
|
|
2494
|
+
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
2495
|
+
}, "strip", z.ZodTypeAny, {
|
|
2496
|
+
message: string;
|
|
2497
|
+
error_code: "access_code_state_unconfirmed";
|
|
2498
|
+
is_access_code_error: true;
|
|
2499
|
+
created_at?: string | undefined;
|
|
2500
|
+
}, {
|
|
2501
|
+
message: string;
|
|
2502
|
+
error_code: "access_code_state_unconfirmed";
|
|
2503
|
+
is_access_code_error: true;
|
|
2504
|
+
created_at?: string | undefined;
|
|
2505
|
+
}>, z.ZodObject<{
|
|
2506
|
+
message: z.ZodString;
|
|
2507
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2508
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2417
2509
|
} & {
|
|
2418
2510
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
2419
2511
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3113,6 +3205,19 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3113
3205
|
}>, z.ZodObject<{
|
|
3114
3206
|
message: z.ZodString;
|
|
3115
3207
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3208
|
+
} & {
|
|
3209
|
+
warning_code: z.ZodLiteral<"access_code_inactive">;
|
|
3210
|
+
}, "strip", z.ZodTypeAny, {
|
|
3211
|
+
message: string;
|
|
3212
|
+
warning_code: "access_code_inactive";
|
|
3213
|
+
created_at?: string | undefined;
|
|
3214
|
+
}, {
|
|
3215
|
+
message: string;
|
|
3216
|
+
warning_code: "access_code_inactive";
|
|
3217
|
+
created_at?: string | undefined;
|
|
3218
|
+
}>, z.ZodObject<{
|
|
3219
|
+
message: z.ZodString;
|
|
3220
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3116
3221
|
} & {
|
|
3117
3222
|
warning_code: z.ZodLiteral<"ultraloq_access_code_disabled">;
|
|
3118
3223
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3332,6 +3437,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3332
3437
|
error_code: "no_space_for_access_code_on_device";
|
|
3333
3438
|
is_access_code_error: true;
|
|
3334
3439
|
created_at?: string | undefined;
|
|
3440
|
+
} | {
|
|
3441
|
+
message: string;
|
|
3442
|
+
error_code: "access_code_state_unconfirmed";
|
|
3443
|
+
is_access_code_error: true;
|
|
3444
|
+
created_at?: string | undefined;
|
|
3335
3445
|
} | {
|
|
3336
3446
|
message: string;
|
|
3337
3447
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -3441,6 +3551,10 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3441
3551
|
message: string;
|
|
3442
3552
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
3443
3553
|
created_at?: string | undefined;
|
|
3554
|
+
} | {
|
|
3555
|
+
message: string;
|
|
3556
|
+
warning_code: "access_code_inactive";
|
|
3557
|
+
created_at?: string | undefined;
|
|
3444
3558
|
} | {
|
|
3445
3559
|
message: string;
|
|
3446
3560
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -3618,6 +3732,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3618
3732
|
error_code: "no_space_for_access_code_on_device";
|
|
3619
3733
|
is_access_code_error: true;
|
|
3620
3734
|
created_at?: string | undefined;
|
|
3735
|
+
} | {
|
|
3736
|
+
message: string;
|
|
3737
|
+
error_code: "access_code_state_unconfirmed";
|
|
3738
|
+
is_access_code_error: true;
|
|
3739
|
+
created_at?: string | undefined;
|
|
3621
3740
|
} | {
|
|
3622
3741
|
message: string;
|
|
3623
3742
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -3727,6 +3846,10 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3727
3846
|
message: string;
|
|
3728
3847
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
3729
3848
|
created_at?: string | undefined;
|
|
3849
|
+
} | {
|
|
3850
|
+
message: string;
|
|
3851
|
+
warning_code: "access_code_inactive";
|
|
3852
|
+
created_at?: string | undefined;
|
|
3730
3853
|
} | {
|
|
3731
3854
|
message: string;
|
|
3732
3855
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -36524,6 +36647,22 @@ declare const batch: z.ZodObject<{
|
|
|
36524
36647
|
message: z.ZodString;
|
|
36525
36648
|
is_access_code_error: z.ZodLiteral<true>;
|
|
36526
36649
|
created_at: z.ZodOptional<z.ZodString>;
|
|
36650
|
+
} & {
|
|
36651
|
+
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
36652
|
+
}, "strip", z.ZodTypeAny, {
|
|
36653
|
+
message: string;
|
|
36654
|
+
error_code: "access_code_state_unconfirmed";
|
|
36655
|
+
is_access_code_error: true;
|
|
36656
|
+
created_at?: string | undefined;
|
|
36657
|
+
}, {
|
|
36658
|
+
message: string;
|
|
36659
|
+
error_code: "access_code_state_unconfirmed";
|
|
36660
|
+
is_access_code_error: true;
|
|
36661
|
+
created_at?: string | undefined;
|
|
36662
|
+
}>, z.ZodObject<{
|
|
36663
|
+
message: z.ZodString;
|
|
36664
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
36665
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
36527
36666
|
} & {
|
|
36528
36667
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
36529
36668
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37223,6 +37362,19 @@ declare const batch: z.ZodObject<{
|
|
|
37223
37362
|
}>, z.ZodObject<{
|
|
37224
37363
|
message: z.ZodString;
|
|
37225
37364
|
created_at: z.ZodOptional<z.ZodString>;
|
|
37365
|
+
} & {
|
|
37366
|
+
warning_code: z.ZodLiteral<"access_code_inactive">;
|
|
37367
|
+
}, "strip", z.ZodTypeAny, {
|
|
37368
|
+
message: string;
|
|
37369
|
+
warning_code: "access_code_inactive";
|
|
37370
|
+
created_at?: string | undefined;
|
|
37371
|
+
}, {
|
|
37372
|
+
message: string;
|
|
37373
|
+
warning_code: "access_code_inactive";
|
|
37374
|
+
created_at?: string | undefined;
|
|
37375
|
+
}>, z.ZodObject<{
|
|
37376
|
+
message: z.ZodString;
|
|
37377
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
37226
37378
|
} & {
|
|
37227
37379
|
warning_code: z.ZodLiteral<"ultraloq_access_code_disabled">;
|
|
37228
37380
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37616,6 +37768,11 @@ declare const batch: z.ZodObject<{
|
|
|
37616
37768
|
error_code: "no_space_for_access_code_on_device";
|
|
37617
37769
|
is_access_code_error: true;
|
|
37618
37770
|
created_at?: string | undefined;
|
|
37771
|
+
} | {
|
|
37772
|
+
message: string;
|
|
37773
|
+
error_code: "access_code_state_unconfirmed";
|
|
37774
|
+
is_access_code_error: true;
|
|
37775
|
+
created_at?: string | undefined;
|
|
37619
37776
|
} | {
|
|
37620
37777
|
message: string;
|
|
37621
37778
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -37725,6 +37882,10 @@ declare const batch: z.ZodObject<{
|
|
|
37725
37882
|
message: string;
|
|
37726
37883
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
37727
37884
|
created_at?: string | undefined;
|
|
37885
|
+
} | {
|
|
37886
|
+
message: string;
|
|
37887
|
+
warning_code: "access_code_inactive";
|
|
37888
|
+
created_at?: string | undefined;
|
|
37728
37889
|
} | {
|
|
37729
37890
|
message: string;
|
|
37730
37891
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -37955,6 +38116,11 @@ declare const batch: z.ZodObject<{
|
|
|
37955
38116
|
error_code: "no_space_for_access_code_on_device";
|
|
37956
38117
|
is_access_code_error: true;
|
|
37957
38118
|
created_at?: string | undefined;
|
|
38119
|
+
} | {
|
|
38120
|
+
message: string;
|
|
38121
|
+
error_code: "access_code_state_unconfirmed";
|
|
38122
|
+
is_access_code_error: true;
|
|
38123
|
+
created_at?: string | undefined;
|
|
37958
38124
|
} | {
|
|
37959
38125
|
message: string;
|
|
37960
38126
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -38064,6 +38230,10 @@ declare const batch: z.ZodObject<{
|
|
|
38064
38230
|
message: string;
|
|
38065
38231
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
38066
38232
|
created_at?: string | undefined;
|
|
38233
|
+
} | {
|
|
38234
|
+
message: string;
|
|
38235
|
+
warning_code: "access_code_inactive";
|
|
38236
|
+
created_at?: string | undefined;
|
|
38067
38237
|
} | {
|
|
38068
38238
|
message: string;
|
|
38069
38239
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -38278,6 +38448,22 @@ declare const batch: z.ZodObject<{
|
|
|
38278
38448
|
message: z.ZodString;
|
|
38279
38449
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38280
38450
|
created_at: z.ZodOptional<z.ZodString>;
|
|
38451
|
+
} & {
|
|
38452
|
+
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
38453
|
+
}, "strip", z.ZodTypeAny, {
|
|
38454
|
+
message: string;
|
|
38455
|
+
error_code: "access_code_state_unconfirmed";
|
|
38456
|
+
is_access_code_error: true;
|
|
38457
|
+
created_at?: string | undefined;
|
|
38458
|
+
}, {
|
|
38459
|
+
message: string;
|
|
38460
|
+
error_code: "access_code_state_unconfirmed";
|
|
38461
|
+
is_access_code_error: true;
|
|
38462
|
+
created_at?: string | undefined;
|
|
38463
|
+
}>, z.ZodObject<{
|
|
38464
|
+
message: z.ZodString;
|
|
38465
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
38466
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38281
38467
|
} & {
|
|
38282
38468
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
38283
38469
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -38977,6 +39163,19 @@ declare const batch: z.ZodObject<{
|
|
|
38977
39163
|
}>, z.ZodObject<{
|
|
38978
39164
|
message: z.ZodString;
|
|
38979
39165
|
created_at: z.ZodOptional<z.ZodString>;
|
|
39166
|
+
} & {
|
|
39167
|
+
warning_code: z.ZodLiteral<"access_code_inactive">;
|
|
39168
|
+
}, "strip", z.ZodTypeAny, {
|
|
39169
|
+
message: string;
|
|
39170
|
+
warning_code: "access_code_inactive";
|
|
39171
|
+
created_at?: string | undefined;
|
|
39172
|
+
}, {
|
|
39173
|
+
message: string;
|
|
39174
|
+
warning_code: "access_code_inactive";
|
|
39175
|
+
created_at?: string | undefined;
|
|
39176
|
+
}>, z.ZodObject<{
|
|
39177
|
+
message: z.ZodString;
|
|
39178
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38980
39179
|
} & {
|
|
38981
39180
|
warning_code: z.ZodLiteral<"ultraloq_access_code_disabled">;
|
|
38982
39181
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39196,6 +39395,11 @@ declare const batch: z.ZodObject<{
|
|
|
39196
39395
|
error_code: "no_space_for_access_code_on_device";
|
|
39197
39396
|
is_access_code_error: true;
|
|
39198
39397
|
created_at?: string | undefined;
|
|
39398
|
+
} | {
|
|
39399
|
+
message: string;
|
|
39400
|
+
error_code: "access_code_state_unconfirmed";
|
|
39401
|
+
is_access_code_error: true;
|
|
39402
|
+
created_at?: string | undefined;
|
|
39199
39403
|
} | {
|
|
39200
39404
|
message: string;
|
|
39201
39405
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -39305,6 +39509,10 @@ declare const batch: z.ZodObject<{
|
|
|
39305
39509
|
message: string;
|
|
39306
39510
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
39307
39511
|
created_at?: string | undefined;
|
|
39512
|
+
} | {
|
|
39513
|
+
message: string;
|
|
39514
|
+
warning_code: "access_code_inactive";
|
|
39515
|
+
created_at?: string | undefined;
|
|
39308
39516
|
} | {
|
|
39309
39517
|
message: string;
|
|
39310
39518
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -39482,6 +39690,11 @@ declare const batch: z.ZodObject<{
|
|
|
39482
39690
|
error_code: "no_space_for_access_code_on_device";
|
|
39483
39691
|
is_access_code_error: true;
|
|
39484
39692
|
created_at?: string | undefined;
|
|
39693
|
+
} | {
|
|
39694
|
+
message: string;
|
|
39695
|
+
error_code: "access_code_state_unconfirmed";
|
|
39696
|
+
is_access_code_error: true;
|
|
39697
|
+
created_at?: string | undefined;
|
|
39485
39698
|
} | {
|
|
39486
39699
|
message: string;
|
|
39487
39700
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -39591,6 +39804,10 @@ declare const batch: z.ZodObject<{
|
|
|
39591
39804
|
message: string;
|
|
39592
39805
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
39593
39806
|
created_at?: string | undefined;
|
|
39807
|
+
} | {
|
|
39808
|
+
message: string;
|
|
39809
|
+
warning_code: "access_code_inactive";
|
|
39810
|
+
created_at?: string | undefined;
|
|
39594
39811
|
} | {
|
|
39595
39812
|
message: string;
|
|
39596
39813
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -44371,6 +44588,11 @@ declare const batch: z.ZodObject<{
|
|
|
44371
44588
|
error_code: "no_space_for_access_code_on_device";
|
|
44372
44589
|
is_access_code_error: true;
|
|
44373
44590
|
created_at?: string | undefined;
|
|
44591
|
+
} | {
|
|
44592
|
+
message: string;
|
|
44593
|
+
error_code: "access_code_state_unconfirmed";
|
|
44594
|
+
is_access_code_error: true;
|
|
44595
|
+
created_at?: string | undefined;
|
|
44374
44596
|
} | {
|
|
44375
44597
|
message: string;
|
|
44376
44598
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -44480,6 +44702,10 @@ declare const batch: z.ZodObject<{
|
|
|
44480
44702
|
message: string;
|
|
44481
44703
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
44482
44704
|
created_at?: string | undefined;
|
|
44705
|
+
} | {
|
|
44706
|
+
message: string;
|
|
44707
|
+
warning_code: "access_code_inactive";
|
|
44708
|
+
created_at?: string | undefined;
|
|
44483
44709
|
} | {
|
|
44484
44710
|
message: string;
|
|
44485
44711
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -44711,6 +44937,11 @@ declare const batch: z.ZodObject<{
|
|
|
44711
44937
|
error_code: "no_space_for_access_code_on_device";
|
|
44712
44938
|
is_access_code_error: true;
|
|
44713
44939
|
created_at?: string | undefined;
|
|
44940
|
+
} | {
|
|
44941
|
+
message: string;
|
|
44942
|
+
error_code: "access_code_state_unconfirmed";
|
|
44943
|
+
is_access_code_error: true;
|
|
44944
|
+
created_at?: string | undefined;
|
|
44714
44945
|
} | {
|
|
44715
44946
|
message: string;
|
|
44716
44947
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -44820,6 +45051,10 @@ declare const batch: z.ZodObject<{
|
|
|
44820
45051
|
message: string;
|
|
44821
45052
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
44822
45053
|
created_at?: string | undefined;
|
|
45054
|
+
} | {
|
|
45055
|
+
message: string;
|
|
45056
|
+
warning_code: "access_code_inactive";
|
|
45057
|
+
created_at?: string | undefined;
|
|
44823
45058
|
} | {
|
|
44824
45059
|
message: string;
|
|
44825
45060
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -49473,6 +49708,11 @@ declare const batch: z.ZodObject<{
|
|
|
49473
49708
|
error_code: "no_space_for_access_code_on_device";
|
|
49474
49709
|
is_access_code_error: true;
|
|
49475
49710
|
created_at?: string | undefined;
|
|
49711
|
+
} | {
|
|
49712
|
+
message: string;
|
|
49713
|
+
error_code: "access_code_state_unconfirmed";
|
|
49714
|
+
is_access_code_error: true;
|
|
49715
|
+
created_at?: string | undefined;
|
|
49476
49716
|
} | {
|
|
49477
49717
|
message: string;
|
|
49478
49718
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -49582,6 +49822,10 @@ declare const batch: z.ZodObject<{
|
|
|
49582
49822
|
message: string;
|
|
49583
49823
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
49584
49824
|
created_at?: string | undefined;
|
|
49825
|
+
} | {
|
|
49826
|
+
message: string;
|
|
49827
|
+
warning_code: "access_code_inactive";
|
|
49828
|
+
created_at?: string | undefined;
|
|
49585
49829
|
} | {
|
|
49586
49830
|
message: string;
|
|
49587
49831
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -49813,6 +50057,11 @@ declare const batch: z.ZodObject<{
|
|
|
49813
50057
|
error_code: "no_space_for_access_code_on_device";
|
|
49814
50058
|
is_access_code_error: true;
|
|
49815
50059
|
created_at?: string | undefined;
|
|
50060
|
+
} | {
|
|
50061
|
+
message: string;
|
|
50062
|
+
error_code: "access_code_state_unconfirmed";
|
|
50063
|
+
is_access_code_error: true;
|
|
50064
|
+
created_at?: string | undefined;
|
|
49816
50065
|
} | {
|
|
49817
50066
|
message: string;
|
|
49818
50067
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -49922,6 +50171,10 @@ declare const batch: z.ZodObject<{
|
|
|
49922
50171
|
message: string;
|
|
49923
50172
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
49924
50173
|
created_at?: string | undefined;
|
|
50174
|
+
} | {
|
|
50175
|
+
message: string;
|
|
50176
|
+
warning_code: "access_code_inactive";
|
|
50177
|
+
created_at?: string | undefined;
|
|
49925
50178
|
} | {
|
|
49926
50179
|
message: string;
|
|
49927
50180
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -67279,6 +67532,15 @@ type Routes = {
|
|
|
67279
67532
|
created_at?: string | undefined;
|
|
67280
67533
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67281
67534
|
error_code: 'no_space_for_access_code_on_device';
|
|
67535
|
+
} | {
|
|
67536
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67537
|
+
message: string;
|
|
67538
|
+
/** Indicates that this is an access code error. */
|
|
67539
|
+
is_access_code_error: true;
|
|
67540
|
+
/** Date and time at which Seam created the error. */
|
|
67541
|
+
created_at?: string | undefined;
|
|
67542
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67543
|
+
error_code: 'access_code_state_unconfirmed';
|
|
67282
67544
|
} | {
|
|
67283
67545
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67284
67546
|
message: string;
|
|
@@ -67623,6 +67885,13 @@ type Routes = {
|
|
|
67623
67885
|
created_at?: string | undefined;
|
|
67624
67886
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67625
67887
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
67888
|
+
} | {
|
|
67889
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67890
|
+
message: string;
|
|
67891
|
+
/** Date and time at which Seam created the warning. */
|
|
67892
|
+
created_at?: string | undefined;
|
|
67893
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67894
|
+
warning_code: 'access_code_inactive';
|
|
67626
67895
|
} | {
|
|
67627
67896
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67628
67897
|
message: string;
|
|
@@ -67895,6 +68164,15 @@ type Routes = {
|
|
|
67895
68164
|
created_at?: string | undefined;
|
|
67896
68165
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67897
68166
|
error_code: 'no_space_for_access_code_on_device';
|
|
68167
|
+
} | {
|
|
68168
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68169
|
+
message: string;
|
|
68170
|
+
/** Indicates that this is an access code error. */
|
|
68171
|
+
is_access_code_error: true;
|
|
68172
|
+
/** Date and time at which Seam created the error. */
|
|
68173
|
+
created_at?: string | undefined;
|
|
68174
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68175
|
+
error_code: 'access_code_state_unconfirmed';
|
|
67898
68176
|
} | {
|
|
67899
68177
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67900
68178
|
message: string;
|
|
@@ -68239,6 +68517,13 @@ type Routes = {
|
|
|
68239
68517
|
created_at?: string | undefined;
|
|
68240
68518
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68241
68519
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
68520
|
+
} | {
|
|
68521
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68522
|
+
message: string;
|
|
68523
|
+
/** Date and time at which Seam created the warning. */
|
|
68524
|
+
created_at?: string | undefined;
|
|
68525
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68526
|
+
warning_code: 'access_code_inactive';
|
|
68242
68527
|
} | {
|
|
68243
68528
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68244
68529
|
message: string;
|
|
@@ -70031,6 +70316,15 @@ type Routes = {
|
|
|
70031
70316
|
created_at?: string | undefined;
|
|
70032
70317
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70033
70318
|
error_code: 'no_space_for_access_code_on_device';
|
|
70319
|
+
} | {
|
|
70320
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70321
|
+
message: string;
|
|
70322
|
+
/** Indicates that this is an access code error. */
|
|
70323
|
+
is_access_code_error: true;
|
|
70324
|
+
/** Date and time at which Seam created the error. */
|
|
70325
|
+
created_at?: string | undefined;
|
|
70326
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70327
|
+
error_code: 'access_code_state_unconfirmed';
|
|
70034
70328
|
} | {
|
|
70035
70329
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70036
70330
|
message: string;
|
|
@@ -70375,6 +70669,13 @@ type Routes = {
|
|
|
70375
70669
|
created_at?: string | undefined;
|
|
70376
70670
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70377
70671
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
70672
|
+
} | {
|
|
70673
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
70674
|
+
message: string;
|
|
70675
|
+
/** Date and time at which Seam created the warning. */
|
|
70676
|
+
created_at?: string | undefined;
|
|
70677
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70678
|
+
warning_code: 'access_code_inactive';
|
|
70378
70679
|
} | {
|
|
70379
70680
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
70380
70681
|
message: string;
|
|
@@ -70693,6 +70994,15 @@ type Routes = {
|
|
|
70693
70994
|
created_at?: string | undefined;
|
|
70694
70995
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70695
70996
|
error_code: 'no_space_for_access_code_on_device';
|
|
70997
|
+
} | {
|
|
70998
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70999
|
+
message: string;
|
|
71000
|
+
/** Indicates that this is an access code error. */
|
|
71001
|
+
is_access_code_error: true;
|
|
71002
|
+
/** Date and time at which Seam created the error. */
|
|
71003
|
+
created_at?: string | undefined;
|
|
71004
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71005
|
+
error_code: 'access_code_state_unconfirmed';
|
|
70696
71006
|
} | {
|
|
70697
71007
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70698
71008
|
message: string;
|
|
@@ -71037,6 +71347,13 @@ type Routes = {
|
|
|
71037
71347
|
created_at?: string | undefined;
|
|
71038
71348
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71039
71349
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
71350
|
+
} | {
|
|
71351
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71352
|
+
message: string;
|
|
71353
|
+
/** Date and time at which Seam created the warning. */
|
|
71354
|
+
created_at?: string | undefined;
|
|
71355
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71356
|
+
warning_code: 'access_code_inactive';
|
|
71040
71357
|
} | {
|
|
71041
71358
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71042
71359
|
message: string;
|
|
@@ -71298,6 +71615,15 @@ type Routes = {
|
|
|
71298
71615
|
created_at?: string | undefined;
|
|
71299
71616
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71300
71617
|
error_code: 'no_space_for_access_code_on_device';
|
|
71618
|
+
} | {
|
|
71619
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71620
|
+
message: string;
|
|
71621
|
+
/** Indicates that this is an access code error. */
|
|
71622
|
+
is_access_code_error: true;
|
|
71623
|
+
/** Date and time at which Seam created the error. */
|
|
71624
|
+
created_at?: string | undefined;
|
|
71625
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71626
|
+
error_code: 'access_code_state_unconfirmed';
|
|
71301
71627
|
} | {
|
|
71302
71628
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71303
71629
|
message: string;
|
|
@@ -71642,6 +71968,13 @@ type Routes = {
|
|
|
71642
71968
|
created_at?: string | undefined;
|
|
71643
71969
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71644
71970
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
71971
|
+
} | {
|
|
71972
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71973
|
+
message: string;
|
|
71974
|
+
/** Date and time at which Seam created the warning. */
|
|
71975
|
+
created_at?: string | undefined;
|
|
71976
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71977
|
+
warning_code: 'access_code_inactive';
|
|
71645
71978
|
} | {
|
|
71646
71979
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71647
71980
|
message: string;
|
|
@@ -71880,6 +72213,15 @@ type Routes = {
|
|
|
71880
72213
|
created_at?: string | undefined;
|
|
71881
72214
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71882
72215
|
error_code: 'no_space_for_access_code_on_device';
|
|
72216
|
+
} | {
|
|
72217
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72218
|
+
message: string;
|
|
72219
|
+
/** Indicates that this is an access code error. */
|
|
72220
|
+
is_access_code_error: true;
|
|
72221
|
+
/** Date and time at which Seam created the error. */
|
|
72222
|
+
created_at?: string | undefined;
|
|
72223
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72224
|
+
error_code: 'access_code_state_unconfirmed';
|
|
71883
72225
|
} | {
|
|
71884
72226
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71885
72227
|
message: string;
|
|
@@ -72224,6 +72566,13 @@ type Routes = {
|
|
|
72224
72566
|
created_at?: string | undefined;
|
|
72225
72567
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72226
72568
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
72569
|
+
} | {
|
|
72570
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72571
|
+
message: string;
|
|
72572
|
+
/** Date and time at which Seam created the warning. */
|
|
72573
|
+
created_at?: string | undefined;
|
|
72574
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72575
|
+
warning_code: 'access_code_inactive';
|
|
72227
72576
|
} | {
|
|
72228
72577
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72229
72578
|
message: string;
|
|
@@ -72497,6 +72846,15 @@ type Routes = {
|
|
|
72497
72846
|
created_at?: string | undefined;
|
|
72498
72847
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72499
72848
|
error_code: 'no_space_for_access_code_on_device';
|
|
72849
|
+
} | {
|
|
72850
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72851
|
+
message: string;
|
|
72852
|
+
/** Indicates that this is an access code error. */
|
|
72853
|
+
is_access_code_error: true;
|
|
72854
|
+
/** Date and time at which Seam created the error. */
|
|
72855
|
+
created_at?: string | undefined;
|
|
72856
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72857
|
+
error_code: 'access_code_state_unconfirmed';
|
|
72500
72858
|
} | {
|
|
72501
72859
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72502
72860
|
message: string;
|
|
@@ -72841,6 +73199,13 @@ type Routes = {
|
|
|
72841
73199
|
created_at?: string | undefined;
|
|
72842
73200
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72843
73201
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
73202
|
+
} | {
|
|
73203
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73204
|
+
message: string;
|
|
73205
|
+
/** Date and time at which Seam created the warning. */
|
|
73206
|
+
created_at?: string | undefined;
|
|
73207
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73208
|
+
warning_code: 'access_code_inactive';
|
|
72844
73209
|
} | {
|
|
72845
73210
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72846
73211
|
message: string;
|
|
@@ -74544,6 +74909,15 @@ type Routes = {
|
|
|
74544
74909
|
created_at?: string | undefined;
|
|
74545
74910
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74546
74911
|
error_code: 'no_space_for_access_code_on_device';
|
|
74912
|
+
} | {
|
|
74913
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74914
|
+
message: string;
|
|
74915
|
+
/** Indicates that this is an access code error. */
|
|
74916
|
+
is_access_code_error: true;
|
|
74917
|
+
/** Date and time at which Seam created the error. */
|
|
74918
|
+
created_at?: string | undefined;
|
|
74919
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74920
|
+
error_code: 'access_code_state_unconfirmed';
|
|
74547
74921
|
} | {
|
|
74548
74922
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74549
74923
|
message: string;
|
|
@@ -74888,6 +75262,13 @@ type Routes = {
|
|
|
74888
75262
|
created_at?: string | undefined;
|
|
74889
75263
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74890
75264
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
75265
|
+
} | {
|
|
75266
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75267
|
+
message: string;
|
|
75268
|
+
/** Date and time at which Seam created the warning. */
|
|
75269
|
+
created_at?: string | undefined;
|
|
75270
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75271
|
+
warning_code: 'access_code_inactive';
|
|
74891
75272
|
} | {
|
|
74892
75273
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74893
75274
|
message: string;
|
|
@@ -75047,6 +75428,15 @@ type Routes = {
|
|
|
75047
75428
|
created_at?: string | undefined;
|
|
75048
75429
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75049
75430
|
error_code: 'no_space_for_access_code_on_device';
|
|
75431
|
+
} | {
|
|
75432
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75433
|
+
message: string;
|
|
75434
|
+
/** Indicates that this is an access code error. */
|
|
75435
|
+
is_access_code_error: true;
|
|
75436
|
+
/** Date and time at which Seam created the error. */
|
|
75437
|
+
created_at?: string | undefined;
|
|
75438
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75439
|
+
error_code: 'access_code_state_unconfirmed';
|
|
75050
75440
|
} | {
|
|
75051
75441
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75052
75442
|
message: string;
|
|
@@ -75391,6 +75781,13 @@ type Routes = {
|
|
|
75391
75781
|
created_at?: string | undefined;
|
|
75392
75782
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75393
75783
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
75784
|
+
} | {
|
|
75785
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75786
|
+
message: string;
|
|
75787
|
+
/** Date and time at which Seam created the warning. */
|
|
75788
|
+
created_at?: string | undefined;
|
|
75789
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75790
|
+
warning_code: 'access_code_inactive';
|
|
75394
75791
|
} | {
|
|
75395
75792
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75396
75793
|
message: string;
|
|
@@ -172944,6 +173341,15 @@ type Routes = {
|
|
|
172944
173341
|
created_at?: string | undefined;
|
|
172945
173342
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
172946
173343
|
error_code: 'no_space_for_access_code_on_device';
|
|
173344
|
+
} | {
|
|
173345
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
173346
|
+
message: string;
|
|
173347
|
+
/** Indicates that this is an access code error. */
|
|
173348
|
+
is_access_code_error: true;
|
|
173349
|
+
/** Date and time at which Seam created the error. */
|
|
173350
|
+
created_at?: string | undefined;
|
|
173351
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
173352
|
+
error_code: 'access_code_state_unconfirmed';
|
|
172947
173353
|
} | {
|
|
172948
173354
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
172949
173355
|
message: string;
|
|
@@ -173288,6 +173694,13 @@ type Routes = {
|
|
|
173288
173694
|
created_at?: string | undefined;
|
|
173289
173695
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
173290
173696
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
173697
|
+
} | {
|
|
173698
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
173699
|
+
message: string;
|
|
173700
|
+
/** Date and time at which Seam created the warning. */
|
|
173701
|
+
created_at?: string | undefined;
|
|
173702
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
173703
|
+
warning_code: 'access_code_inactive';
|
|
173291
173704
|
} | {
|
|
173292
173705
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
173293
173706
|
message: string;
|
|
@@ -173431,6 +173844,15 @@ type Routes = {
|
|
|
173431
173844
|
created_at?: string | undefined;
|
|
173432
173845
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
173433
173846
|
error_code: 'no_space_for_access_code_on_device';
|
|
173847
|
+
} | {
|
|
173848
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
173849
|
+
message: string;
|
|
173850
|
+
/** Indicates that this is an access code error. */
|
|
173851
|
+
is_access_code_error: true;
|
|
173852
|
+
/** Date and time at which Seam created the error. */
|
|
173853
|
+
created_at?: string | undefined;
|
|
173854
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
173855
|
+
error_code: 'access_code_state_unconfirmed';
|
|
173434
173856
|
} | {
|
|
173435
173857
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
173436
173858
|
message: string;
|
|
@@ -173775,6 +174197,13 @@ type Routes = {
|
|
|
173775
174197
|
created_at?: string | undefined;
|
|
173776
174198
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
173777
174199
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
174200
|
+
} | {
|
|
174201
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174202
|
+
message: string;
|
|
174203
|
+
/** Date and time at which Seam created the warning. */
|
|
174204
|
+
created_at?: string | undefined;
|
|
174205
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
174206
|
+
warning_code: 'access_code_inactive';
|
|
173778
174207
|
} | {
|
|
173779
174208
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
173780
174209
|
message: string;
|