@seamapi/types 1.611.0 → 1.613.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 +123 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +546 -0
- package/dist/index.cjs +123 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +71 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +11 -0
- 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 +26 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +52 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +15 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +288 -0
- package/lib/seam/connect/openapi.d.ts +66 -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 +216 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -0
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +20 -0
- package/src/lib/seam/connect/openapi.ts +122 -0
- package/src/lib/seam/connect/route-types.ts +240 -0
package/dist/connect.d.cts
CHANGED
|
@@ -400,6 +400,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
400
400
|
error_code: "kwikset_insufficient_permissions";
|
|
401
401
|
is_access_code_error: true;
|
|
402
402
|
created_at?: string | undefined;
|
|
403
|
+
}>, z.ZodObject<{
|
|
404
|
+
message: z.ZodString;
|
|
405
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
406
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
407
|
+
} & {
|
|
408
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
409
|
+
}, "strip", z.ZodTypeAny, {
|
|
410
|
+
message: string;
|
|
411
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
412
|
+
is_access_code_error: true;
|
|
413
|
+
created_at?: string | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
message: string;
|
|
416
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
417
|
+
is_access_code_error: true;
|
|
418
|
+
created_at?: string | undefined;
|
|
403
419
|
}>]>;
|
|
404
420
|
type AccessCodeError = z.infer<typeof access_code_error>;
|
|
405
421
|
declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
@@ -971,6 +987,22 @@ declare const access_code: z.ZodObject<{
|
|
|
971
987
|
error_code: "kwikset_insufficient_permissions";
|
|
972
988
|
is_access_code_error: true;
|
|
973
989
|
created_at?: string | undefined;
|
|
990
|
+
}>, z.ZodObject<{
|
|
991
|
+
message: z.ZodString;
|
|
992
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
993
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
994
|
+
} & {
|
|
995
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
996
|
+
}, "strip", z.ZodTypeAny, {
|
|
997
|
+
message: string;
|
|
998
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
999
|
+
is_access_code_error: true;
|
|
1000
|
+
created_at?: string | undefined;
|
|
1001
|
+
}, {
|
|
1002
|
+
message: string;
|
|
1003
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
1004
|
+
is_access_code_error: true;
|
|
1005
|
+
created_at?: string | undefined;
|
|
974
1006
|
}>, ...(z.ZodObject<{
|
|
975
1007
|
created_at: z.ZodString;
|
|
976
1008
|
message: z.ZodString;
|
|
@@ -1705,6 +1737,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1705
1737
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1706
1738
|
is_access_code_error: true;
|
|
1707
1739
|
created_at?: string | undefined;
|
|
1740
|
+
} | {
|
|
1741
|
+
message: string;
|
|
1742
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
1743
|
+
is_access_code_error: true;
|
|
1744
|
+
created_at?: string | undefined;
|
|
1708
1745
|
})[];
|
|
1709
1746
|
warnings: ({
|
|
1710
1747
|
message: string;
|
|
@@ -1999,6 +2036,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1999
2036
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
2000
2037
|
is_access_code_error: true;
|
|
2001
2038
|
created_at?: string | undefined;
|
|
2039
|
+
} | {
|
|
2040
|
+
message: string;
|
|
2041
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
2042
|
+
is_access_code_error: true;
|
|
2043
|
+
created_at?: string | undefined;
|
|
2002
2044
|
})[];
|
|
2003
2045
|
warnings: ({
|
|
2004
2046
|
message: string;
|
|
@@ -2474,6 +2516,22 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2474
2516
|
error_code: "kwikset_insufficient_permissions";
|
|
2475
2517
|
is_access_code_error: true;
|
|
2476
2518
|
created_at?: string | undefined;
|
|
2519
|
+
}>, z.ZodObject<{
|
|
2520
|
+
message: z.ZodString;
|
|
2521
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2522
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2523
|
+
} & {
|
|
2524
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
2525
|
+
}, "strip", z.ZodTypeAny, {
|
|
2526
|
+
message: string;
|
|
2527
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
2528
|
+
is_access_code_error: true;
|
|
2529
|
+
created_at?: string | undefined;
|
|
2530
|
+
}, {
|
|
2531
|
+
message: string;
|
|
2532
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
2533
|
+
is_access_code_error: true;
|
|
2534
|
+
created_at?: string | undefined;
|
|
2477
2535
|
}>, ...(z.ZodObject<{
|
|
2478
2536
|
created_at: z.ZodString;
|
|
2479
2537
|
message: z.ZodString;
|
|
@@ -3202,6 +3260,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3202
3260
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
3203
3261
|
is_access_code_error: true;
|
|
3204
3262
|
created_at?: string | undefined;
|
|
3263
|
+
} | {
|
|
3264
|
+
message: string;
|
|
3265
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
3266
|
+
is_access_code_error: true;
|
|
3267
|
+
created_at?: string | undefined;
|
|
3205
3268
|
})[];
|
|
3206
3269
|
warnings: ({
|
|
3207
3270
|
message: string;
|
|
@@ -3487,6 +3550,11 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3487
3550
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
3488
3551
|
is_access_code_error: true;
|
|
3489
3552
|
created_at?: string | undefined;
|
|
3553
|
+
} | {
|
|
3554
|
+
message: string;
|
|
3555
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
3556
|
+
is_access_code_error: true;
|
|
3557
|
+
created_at?: string | undefined;
|
|
3490
3558
|
})[];
|
|
3491
3559
|
warnings: ({
|
|
3492
3560
|
message: string;
|
|
@@ -5298,6 +5366,22 @@ declare const acs_user: z.ZodObject<{
|
|
|
5298
5366
|
}>, z.ZodObject<{
|
|
5299
5367
|
created_at: z.ZodString;
|
|
5300
5368
|
message: z.ZodString;
|
|
5369
|
+
} & {
|
|
5370
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
5371
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5372
|
+
}, "strip", z.ZodTypeAny, {
|
|
5373
|
+
message: string;
|
|
5374
|
+
created_at: string;
|
|
5375
|
+
mutation_code: "deferring_creation";
|
|
5376
|
+
scheduled_at?: string | null | undefined;
|
|
5377
|
+
}, {
|
|
5378
|
+
message: string;
|
|
5379
|
+
created_at: string;
|
|
5380
|
+
mutation_code: "deferring_creation";
|
|
5381
|
+
scheduled_at?: string | null | undefined;
|
|
5382
|
+
}>, z.ZodObject<{
|
|
5383
|
+
created_at: z.ZodString;
|
|
5384
|
+
message: z.ZodString;
|
|
5301
5385
|
} & {
|
|
5302
5386
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
5303
5387
|
from: z.ZodObject<{
|
|
@@ -5566,6 +5650,11 @@ declare const acs_user: z.ZodObject<{
|
|
|
5566
5650
|
message: string;
|
|
5567
5651
|
created_at: string;
|
|
5568
5652
|
mutation_code: "deleting";
|
|
5653
|
+
} | {
|
|
5654
|
+
message: string;
|
|
5655
|
+
created_at: string;
|
|
5656
|
+
mutation_code: "deferring_creation";
|
|
5657
|
+
scheduled_at?: string | null | undefined;
|
|
5569
5658
|
} | {
|
|
5570
5659
|
message: string;
|
|
5571
5660
|
created_at: string;
|
|
@@ -5688,6 +5777,11 @@ declare const acs_user: z.ZodObject<{
|
|
|
5688
5777
|
message: string;
|
|
5689
5778
|
created_at: string;
|
|
5690
5779
|
mutation_code: "deleting";
|
|
5780
|
+
} | {
|
|
5781
|
+
message: string;
|
|
5782
|
+
created_at: string;
|
|
5783
|
+
mutation_code: "deferring_creation";
|
|
5784
|
+
scheduled_at?: string | null | undefined;
|
|
5691
5785
|
} | {
|
|
5692
5786
|
message: string;
|
|
5693
5787
|
created_at: string;
|
|
@@ -5921,6 +6015,22 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
5921
6015
|
}>, z.ZodObject<{
|
|
5922
6016
|
created_at: z.ZodString;
|
|
5923
6017
|
message: z.ZodString;
|
|
6018
|
+
} & {
|
|
6019
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
6020
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6021
|
+
}, "strip", z.ZodTypeAny, {
|
|
6022
|
+
message: string;
|
|
6023
|
+
created_at: string;
|
|
6024
|
+
mutation_code: "deferring_creation";
|
|
6025
|
+
scheduled_at?: string | null | undefined;
|
|
6026
|
+
}, {
|
|
6027
|
+
message: string;
|
|
6028
|
+
created_at: string;
|
|
6029
|
+
mutation_code: "deferring_creation";
|
|
6030
|
+
scheduled_at?: string | null | undefined;
|
|
6031
|
+
}>, z.ZodObject<{
|
|
6032
|
+
created_at: z.ZodString;
|
|
6033
|
+
message: z.ZodString;
|
|
5924
6034
|
} & {
|
|
5925
6035
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
5926
6036
|
from: z.ZodObject<{
|
|
@@ -6189,6 +6299,11 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6189
6299
|
message: string;
|
|
6190
6300
|
created_at: string;
|
|
6191
6301
|
mutation_code: "deleting";
|
|
6302
|
+
} | {
|
|
6303
|
+
message: string;
|
|
6304
|
+
created_at: string;
|
|
6305
|
+
mutation_code: "deferring_creation";
|
|
6306
|
+
scheduled_at?: string | null | undefined;
|
|
6192
6307
|
} | {
|
|
6193
6308
|
message: string;
|
|
6194
6309
|
created_at: string;
|
|
@@ -6311,6 +6426,11 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6311
6426
|
message: string;
|
|
6312
6427
|
created_at: string;
|
|
6313
6428
|
mutation_code: "deleting";
|
|
6429
|
+
} | {
|
|
6430
|
+
message: string;
|
|
6431
|
+
created_at: string;
|
|
6432
|
+
mutation_code: "deferring_creation";
|
|
6433
|
+
scheduled_at?: string | null | undefined;
|
|
6314
6434
|
} | {
|
|
6315
6435
|
message: string;
|
|
6316
6436
|
created_at: string;
|
|
@@ -15387,6 +15507,22 @@ declare const batch: z.ZodObject<{
|
|
|
15387
15507
|
}>, z.ZodObject<{
|
|
15388
15508
|
created_at: z.ZodString;
|
|
15389
15509
|
message: z.ZodString;
|
|
15510
|
+
} & {
|
|
15511
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
15512
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15513
|
+
}, "strip", z.ZodTypeAny, {
|
|
15514
|
+
message: string;
|
|
15515
|
+
created_at: string;
|
|
15516
|
+
mutation_code: "deferring_creation";
|
|
15517
|
+
scheduled_at?: string | null | undefined;
|
|
15518
|
+
}, {
|
|
15519
|
+
message: string;
|
|
15520
|
+
created_at: string;
|
|
15521
|
+
mutation_code: "deferring_creation";
|
|
15522
|
+
scheduled_at?: string | null | undefined;
|
|
15523
|
+
}>, z.ZodObject<{
|
|
15524
|
+
created_at: z.ZodString;
|
|
15525
|
+
message: z.ZodString;
|
|
15390
15526
|
} & {
|
|
15391
15527
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
15392
15528
|
from: z.ZodObject<{
|
|
@@ -15655,6 +15791,11 @@ declare const batch: z.ZodObject<{
|
|
|
15655
15791
|
message: string;
|
|
15656
15792
|
created_at: string;
|
|
15657
15793
|
mutation_code: "deleting";
|
|
15794
|
+
} | {
|
|
15795
|
+
message: string;
|
|
15796
|
+
created_at: string;
|
|
15797
|
+
mutation_code: "deferring_creation";
|
|
15798
|
+
scheduled_at?: string | null | undefined;
|
|
15658
15799
|
} | {
|
|
15659
15800
|
message: string;
|
|
15660
15801
|
created_at: string;
|
|
@@ -15777,6 +15918,11 @@ declare const batch: z.ZodObject<{
|
|
|
15777
15918
|
message: string;
|
|
15778
15919
|
created_at: string;
|
|
15779
15920
|
mutation_code: "deleting";
|
|
15921
|
+
} | {
|
|
15922
|
+
message: string;
|
|
15923
|
+
created_at: string;
|
|
15924
|
+
mutation_code: "deferring_creation";
|
|
15925
|
+
scheduled_at?: string | null | undefined;
|
|
15780
15926
|
} | {
|
|
15781
15927
|
message: string;
|
|
15782
15928
|
created_at: string;
|
|
@@ -20599,6 +20745,22 @@ declare const batch: z.ZodObject<{
|
|
|
20599
20745
|
}>, z.ZodObject<{
|
|
20600
20746
|
created_at: z.ZodString;
|
|
20601
20747
|
message: z.ZodString;
|
|
20748
|
+
} & {
|
|
20749
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
20750
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20751
|
+
}, "strip", z.ZodTypeAny, {
|
|
20752
|
+
message: string;
|
|
20753
|
+
created_at: string;
|
|
20754
|
+
mutation_code: "deferring_creation";
|
|
20755
|
+
scheduled_at?: string | null | undefined;
|
|
20756
|
+
}, {
|
|
20757
|
+
message: string;
|
|
20758
|
+
created_at: string;
|
|
20759
|
+
mutation_code: "deferring_creation";
|
|
20760
|
+
scheduled_at?: string | null | undefined;
|
|
20761
|
+
}>, z.ZodObject<{
|
|
20762
|
+
created_at: z.ZodString;
|
|
20763
|
+
message: z.ZodString;
|
|
20602
20764
|
} & {
|
|
20603
20765
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
20604
20766
|
from: z.ZodObject<{
|
|
@@ -20867,6 +21029,11 @@ declare const batch: z.ZodObject<{
|
|
|
20867
21029
|
message: string;
|
|
20868
21030
|
created_at: string;
|
|
20869
21031
|
mutation_code: "deleting";
|
|
21032
|
+
} | {
|
|
21033
|
+
message: string;
|
|
21034
|
+
created_at: string;
|
|
21035
|
+
mutation_code: "deferring_creation";
|
|
21036
|
+
scheduled_at?: string | null | undefined;
|
|
20870
21037
|
} | {
|
|
20871
21038
|
message: string;
|
|
20872
21039
|
created_at: string;
|
|
@@ -20989,6 +21156,11 @@ declare const batch: z.ZodObject<{
|
|
|
20989
21156
|
message: string;
|
|
20990
21157
|
created_at: string;
|
|
20991
21158
|
mutation_code: "deleting";
|
|
21159
|
+
} | {
|
|
21160
|
+
message: string;
|
|
21161
|
+
created_at: string;
|
|
21162
|
+
mutation_code: "deferring_creation";
|
|
21163
|
+
scheduled_at?: string | null | undefined;
|
|
20992
21164
|
} | {
|
|
20993
21165
|
message: string;
|
|
20994
21166
|
created_at: string;
|
|
@@ -28281,6 +28453,22 @@ declare const batch: z.ZodObject<{
|
|
|
28281
28453
|
error_code: "kwikset_insufficient_permissions";
|
|
28282
28454
|
is_access_code_error: true;
|
|
28283
28455
|
created_at?: string | undefined;
|
|
28456
|
+
}>, z.ZodObject<{
|
|
28457
|
+
message: z.ZodString;
|
|
28458
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
28459
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
28460
|
+
} & {
|
|
28461
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
28462
|
+
}, "strip", z.ZodTypeAny, {
|
|
28463
|
+
message: string;
|
|
28464
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
28465
|
+
is_access_code_error: true;
|
|
28466
|
+
created_at?: string | undefined;
|
|
28467
|
+
}, {
|
|
28468
|
+
message: string;
|
|
28469
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
28470
|
+
is_access_code_error: true;
|
|
28471
|
+
created_at?: string | undefined;
|
|
28284
28472
|
}>, ...(z.ZodObject<{
|
|
28285
28473
|
created_at: z.ZodString;
|
|
28286
28474
|
message: z.ZodString;
|
|
@@ -29015,6 +29203,11 @@ declare const batch: z.ZodObject<{
|
|
|
29015
29203
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
29016
29204
|
is_access_code_error: true;
|
|
29017
29205
|
created_at?: string | undefined;
|
|
29206
|
+
} | {
|
|
29207
|
+
message: string;
|
|
29208
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
29209
|
+
is_access_code_error: true;
|
|
29210
|
+
created_at?: string | undefined;
|
|
29018
29211
|
})[];
|
|
29019
29212
|
warnings: ({
|
|
29020
29213
|
message: string;
|
|
@@ -29309,6 +29502,11 @@ declare const batch: z.ZodObject<{
|
|
|
29309
29502
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
29310
29503
|
is_access_code_error: true;
|
|
29311
29504
|
created_at?: string | undefined;
|
|
29505
|
+
} | {
|
|
29506
|
+
message: string;
|
|
29507
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
29508
|
+
is_access_code_error: true;
|
|
29509
|
+
created_at?: string | undefined;
|
|
29312
29510
|
})[];
|
|
29313
29511
|
warnings: ({
|
|
29314
29512
|
message: string;
|
|
@@ -29782,6 +29980,22 @@ declare const batch: z.ZodObject<{
|
|
|
29782
29980
|
error_code: "kwikset_insufficient_permissions";
|
|
29783
29981
|
is_access_code_error: true;
|
|
29784
29982
|
created_at?: string | undefined;
|
|
29983
|
+
}>, z.ZodObject<{
|
|
29984
|
+
message: z.ZodString;
|
|
29985
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
29986
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
29987
|
+
} & {
|
|
29988
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
29989
|
+
}, "strip", z.ZodTypeAny, {
|
|
29990
|
+
message: string;
|
|
29991
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
29992
|
+
is_access_code_error: true;
|
|
29993
|
+
created_at?: string | undefined;
|
|
29994
|
+
}, {
|
|
29995
|
+
message: string;
|
|
29996
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
29997
|
+
is_access_code_error: true;
|
|
29998
|
+
created_at?: string | undefined;
|
|
29785
29999
|
}>, ...(z.ZodObject<{
|
|
29786
30000
|
created_at: z.ZodString;
|
|
29787
30001
|
message: z.ZodString;
|
|
@@ -30510,6 +30724,11 @@ declare const batch: z.ZodObject<{
|
|
|
30510
30724
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
30511
30725
|
is_access_code_error: true;
|
|
30512
30726
|
created_at?: string | undefined;
|
|
30727
|
+
} | {
|
|
30728
|
+
message: string;
|
|
30729
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
30730
|
+
is_access_code_error: true;
|
|
30731
|
+
created_at?: string | undefined;
|
|
30513
30732
|
})[];
|
|
30514
30733
|
warnings: ({
|
|
30515
30734
|
message: string;
|
|
@@ -30795,6 +31014,11 @@ declare const batch: z.ZodObject<{
|
|
|
30795
31014
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
30796
31015
|
is_access_code_error: true;
|
|
30797
31016
|
created_at?: string | undefined;
|
|
31017
|
+
} | {
|
|
31018
|
+
message: string;
|
|
31019
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
31020
|
+
is_access_code_error: true;
|
|
31021
|
+
created_at?: string | undefined;
|
|
30798
31022
|
})[];
|
|
30799
31023
|
warnings: ({
|
|
30800
31024
|
message: string;
|
|
@@ -32026,6 +32250,11 @@ declare const batch: z.ZodObject<{
|
|
|
32026
32250
|
message: string;
|
|
32027
32251
|
created_at: string;
|
|
32028
32252
|
mutation_code: "deleting";
|
|
32253
|
+
} | {
|
|
32254
|
+
message: string;
|
|
32255
|
+
created_at: string;
|
|
32256
|
+
mutation_code: "deferring_creation";
|
|
32257
|
+
scheduled_at?: string | null | undefined;
|
|
32029
32258
|
} | {
|
|
32030
32259
|
message: string;
|
|
32031
32260
|
created_at: string;
|
|
@@ -33034,6 +33263,11 @@ declare const batch: z.ZodObject<{
|
|
|
33034
33263
|
message: string;
|
|
33035
33264
|
created_at: string;
|
|
33036
33265
|
mutation_code: "deleting";
|
|
33266
|
+
} | {
|
|
33267
|
+
message: string;
|
|
33268
|
+
created_at: string;
|
|
33269
|
+
mutation_code: "deferring_creation";
|
|
33270
|
+
scheduled_at?: string | null | undefined;
|
|
33037
33271
|
} | {
|
|
33038
33272
|
message: string;
|
|
33039
33273
|
created_at: string;
|
|
@@ -34516,6 +34750,11 @@ declare const batch: z.ZodObject<{
|
|
|
34516
34750
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
34517
34751
|
is_access_code_error: true;
|
|
34518
34752
|
created_at?: string | undefined;
|
|
34753
|
+
} | {
|
|
34754
|
+
message: string;
|
|
34755
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
34756
|
+
is_access_code_error: true;
|
|
34757
|
+
created_at?: string | undefined;
|
|
34519
34758
|
})[];
|
|
34520
34759
|
warnings: ({
|
|
34521
34760
|
message: string;
|
|
@@ -34811,6 +35050,11 @@ declare const batch: z.ZodObject<{
|
|
|
34811
35050
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
34812
35051
|
is_access_code_error: true;
|
|
34813
35052
|
created_at?: string | undefined;
|
|
35053
|
+
} | {
|
|
35054
|
+
message: string;
|
|
35055
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
35056
|
+
is_access_code_error: true;
|
|
35057
|
+
created_at?: string | undefined;
|
|
34814
35058
|
})[];
|
|
34815
35059
|
warnings: ({
|
|
34816
35060
|
message: string;
|
|
@@ -35937,6 +36181,11 @@ declare const batch: z.ZodObject<{
|
|
|
35937
36181
|
message: string;
|
|
35938
36182
|
created_at: string;
|
|
35939
36183
|
mutation_code: "deleting";
|
|
36184
|
+
} | {
|
|
36185
|
+
message: string;
|
|
36186
|
+
created_at: string;
|
|
36187
|
+
mutation_code: "deferring_creation";
|
|
36188
|
+
scheduled_at?: string | null | undefined;
|
|
35940
36189
|
} | {
|
|
35941
36190
|
message: string;
|
|
35942
36191
|
created_at: string;
|
|
@@ -36945,6 +37194,11 @@ declare const batch: z.ZodObject<{
|
|
|
36945
37194
|
message: string;
|
|
36946
37195
|
created_at: string;
|
|
36947
37196
|
mutation_code: "deleting";
|
|
37197
|
+
} | {
|
|
37198
|
+
message: string;
|
|
37199
|
+
created_at: string;
|
|
37200
|
+
mutation_code: "deferring_creation";
|
|
37201
|
+
scheduled_at?: string | null | undefined;
|
|
36948
37202
|
} | {
|
|
36949
37203
|
message: string;
|
|
36950
37204
|
created_at: string;
|
|
@@ -38427,6 +38681,11 @@ declare const batch: z.ZodObject<{
|
|
|
38427
38681
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
38428
38682
|
is_access_code_error: true;
|
|
38429
38683
|
created_at?: string | undefined;
|
|
38684
|
+
} | {
|
|
38685
|
+
message: string;
|
|
38686
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
38687
|
+
is_access_code_error: true;
|
|
38688
|
+
created_at?: string | undefined;
|
|
38430
38689
|
})[];
|
|
38431
38690
|
warnings: ({
|
|
38432
38691
|
message: string;
|
|
@@ -38722,6 +38981,11 @@ declare const batch: z.ZodObject<{
|
|
|
38722
38981
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
38723
38982
|
is_access_code_error: true;
|
|
38724
38983
|
created_at?: string | undefined;
|
|
38984
|
+
} | {
|
|
38985
|
+
message: string;
|
|
38986
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
38987
|
+
is_access_code_error: true;
|
|
38988
|
+
created_at?: string | undefined;
|
|
38725
38989
|
})[];
|
|
38726
38990
|
warnings: ({
|
|
38727
38991
|
message: string;
|
|
@@ -53287,6 +53551,35 @@ declare const _default: {
|
|
|
53287
53551
|
enum: string[];
|
|
53288
53552
|
type: string;
|
|
53289
53553
|
};
|
|
53554
|
+
scheduled_at?: never;
|
|
53555
|
+
from?: never;
|
|
53556
|
+
to?: never;
|
|
53557
|
+
};
|
|
53558
|
+
required: string[];
|
|
53559
|
+
type: string;
|
|
53560
|
+
} | {
|
|
53561
|
+
description: string;
|
|
53562
|
+
properties: {
|
|
53563
|
+
created_at: {
|
|
53564
|
+
description: string;
|
|
53565
|
+
format: string;
|
|
53566
|
+
type: string;
|
|
53567
|
+
};
|
|
53568
|
+
message: {
|
|
53569
|
+
description: string;
|
|
53570
|
+
type: string;
|
|
53571
|
+
};
|
|
53572
|
+
mutation_code: {
|
|
53573
|
+
description: string;
|
|
53574
|
+
enum: string[];
|
|
53575
|
+
type: string;
|
|
53576
|
+
};
|
|
53577
|
+
scheduled_at: {
|
|
53578
|
+
description: string;
|
|
53579
|
+
format: string;
|
|
53580
|
+
nullable: boolean;
|
|
53581
|
+
type: string;
|
|
53582
|
+
};
|
|
53290
53583
|
from?: never;
|
|
53291
53584
|
to?: never;
|
|
53292
53585
|
};
|
|
@@ -53362,6 +53655,7 @@ declare const _default: {
|
|
|
53362
53655
|
type: string;
|
|
53363
53656
|
required?: never;
|
|
53364
53657
|
};
|
|
53658
|
+
scheduled_at?: never;
|
|
53365
53659
|
};
|
|
53366
53660
|
required: string[];
|
|
53367
53661
|
type: string;
|
|
@@ -53431,6 +53725,7 @@ declare const _default: {
|
|
|
53431
53725
|
required: string[];
|
|
53432
53726
|
type: string;
|
|
53433
53727
|
};
|
|
53728
|
+
scheduled_at?: never;
|
|
53434
53729
|
};
|
|
53435
53730
|
required: string[];
|
|
53436
53731
|
type: string;
|
|
@@ -53483,6 +53778,7 @@ declare const _default: {
|
|
|
53483
53778
|
required: string[];
|
|
53484
53779
|
type: string;
|
|
53485
53780
|
};
|
|
53781
|
+
scheduled_at?: never;
|
|
53486
53782
|
};
|
|
53487
53783
|
required: string[];
|
|
53488
53784
|
type: string;
|
|
@@ -53541,6 +53837,7 @@ declare const _default: {
|
|
|
53541
53837
|
required: string[];
|
|
53542
53838
|
type: string;
|
|
53543
53839
|
};
|
|
53840
|
+
scheduled_at?: never;
|
|
53544
53841
|
};
|
|
53545
53842
|
required: string[];
|
|
53546
53843
|
type: string;
|
|
@@ -64730,6 +65027,35 @@ declare const _default: {
|
|
|
64730
65027
|
enum: string[];
|
|
64731
65028
|
type: string;
|
|
64732
65029
|
};
|
|
65030
|
+
scheduled_at?: never;
|
|
65031
|
+
from?: never;
|
|
65032
|
+
to?: never;
|
|
65033
|
+
};
|
|
65034
|
+
required: string[];
|
|
65035
|
+
type: string;
|
|
65036
|
+
} | {
|
|
65037
|
+
description: string;
|
|
65038
|
+
properties: {
|
|
65039
|
+
created_at: {
|
|
65040
|
+
description: string;
|
|
65041
|
+
format: string;
|
|
65042
|
+
type: string;
|
|
65043
|
+
};
|
|
65044
|
+
message: {
|
|
65045
|
+
description: string;
|
|
65046
|
+
type: string;
|
|
65047
|
+
};
|
|
65048
|
+
mutation_code: {
|
|
65049
|
+
description: string;
|
|
65050
|
+
enum: string[];
|
|
65051
|
+
type: string;
|
|
65052
|
+
};
|
|
65053
|
+
scheduled_at: {
|
|
65054
|
+
description: string;
|
|
65055
|
+
format: string;
|
|
65056
|
+
nullable: boolean;
|
|
65057
|
+
type: string;
|
|
65058
|
+
};
|
|
64733
65059
|
from?: never;
|
|
64734
65060
|
to?: never;
|
|
64735
65061
|
};
|
|
@@ -64805,6 +65131,7 @@ declare const _default: {
|
|
|
64805
65131
|
type: string;
|
|
64806
65132
|
required?: never;
|
|
64807
65133
|
};
|
|
65134
|
+
scheduled_at?: never;
|
|
64808
65135
|
};
|
|
64809
65136
|
required: string[];
|
|
64810
65137
|
type: string;
|
|
@@ -64874,6 +65201,7 @@ declare const _default: {
|
|
|
64874
65201
|
required: string[];
|
|
64875
65202
|
type: string;
|
|
64876
65203
|
};
|
|
65204
|
+
scheduled_at?: never;
|
|
64877
65205
|
};
|
|
64878
65206
|
required: string[];
|
|
64879
65207
|
type: string;
|
|
@@ -64926,6 +65254,7 @@ declare const _default: {
|
|
|
64926
65254
|
required: string[];
|
|
64927
65255
|
type: string;
|
|
64928
65256
|
};
|
|
65257
|
+
scheduled_at?: never;
|
|
64929
65258
|
};
|
|
64930
65259
|
required: string[];
|
|
64931
65260
|
type: string;
|
|
@@ -64984,6 +65313,7 @@ declare const _default: {
|
|
|
64984
65313
|
required: string[];
|
|
64985
65314
|
type: string;
|
|
64986
65315
|
};
|
|
65316
|
+
scheduled_at?: never;
|
|
64987
65317
|
};
|
|
64988
65318
|
required: string[];
|
|
64989
65319
|
type: string;
|
|
@@ -110409,6 +110739,15 @@ type Routes = {
|
|
|
110409
110739
|
created_at?: string | undefined;
|
|
110410
110740
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110411
110741
|
error_code: 'kwikset_insufficient_permissions';
|
|
110742
|
+
} | {
|
|
110743
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110744
|
+
message: string;
|
|
110745
|
+
/** Indicates that this is an access code error. */
|
|
110746
|
+
is_access_code_error: true;
|
|
110747
|
+
/** Date and time at which Seam created the error. */
|
|
110748
|
+
created_at?: string | undefined;
|
|
110749
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110750
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
110412
110751
|
} | {
|
|
110413
110752
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110414
110753
|
message: string;
|
|
@@ -110954,6 +111293,15 @@ type Routes = {
|
|
|
110954
111293
|
created_at?: string | undefined;
|
|
110955
111294
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110956
111295
|
error_code: 'kwikset_insufficient_permissions';
|
|
111296
|
+
} | {
|
|
111297
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111298
|
+
message: string;
|
|
111299
|
+
/** Indicates that this is an access code error. */
|
|
111300
|
+
is_access_code_error: true;
|
|
111301
|
+
/** Date and time at which Seam created the error. */
|
|
111302
|
+
created_at?: string | undefined;
|
|
111303
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
111304
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
110957
111305
|
} | {
|
|
110958
111306
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110959
111307
|
message: string;
|
|
@@ -112763,6 +113111,15 @@ type Routes = {
|
|
|
112763
113111
|
created_at?: string | undefined;
|
|
112764
113112
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112765
113113
|
error_code: 'kwikset_insufficient_permissions';
|
|
113114
|
+
} | {
|
|
113115
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113116
|
+
message: string;
|
|
113117
|
+
/** Indicates that this is an access code error. */
|
|
113118
|
+
is_access_code_error: true;
|
|
113119
|
+
/** Date and time at which Seam created the error. */
|
|
113120
|
+
created_at?: string | undefined;
|
|
113121
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113122
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
112766
113123
|
} | {
|
|
112767
113124
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112768
113125
|
message: string;
|
|
@@ -113282,6 +113639,15 @@ type Routes = {
|
|
|
113282
113639
|
created_at?: string | undefined;
|
|
113283
113640
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113284
113641
|
error_code: 'kwikset_insufficient_permissions';
|
|
113642
|
+
} | {
|
|
113643
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113644
|
+
message: string;
|
|
113645
|
+
/** Indicates that this is an access code error. */
|
|
113646
|
+
is_access_code_error: true;
|
|
113647
|
+
/** Date and time at which Seam created the error. */
|
|
113648
|
+
created_at?: string | undefined;
|
|
113649
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113650
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
113285
113651
|
} | {
|
|
113286
113652
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113287
113653
|
message: string;
|
|
@@ -113807,6 +114173,15 @@ type Routes = {
|
|
|
113807
114173
|
created_at?: string | undefined;
|
|
113808
114174
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113809
114175
|
error_code: 'kwikset_insufficient_permissions';
|
|
114176
|
+
} | {
|
|
114177
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114178
|
+
message: string;
|
|
114179
|
+
/** Indicates that this is an access code error. */
|
|
114180
|
+
is_access_code_error: true;
|
|
114181
|
+
/** Date and time at which Seam created the error. */
|
|
114182
|
+
created_at?: string | undefined;
|
|
114183
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114184
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
113810
114185
|
} | {
|
|
113811
114186
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113812
114187
|
message: string;
|
|
@@ -114310,6 +114685,15 @@ type Routes = {
|
|
|
114310
114685
|
created_at?: string | undefined;
|
|
114311
114686
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114312
114687
|
error_code: 'kwikset_insufficient_permissions';
|
|
114688
|
+
} | {
|
|
114689
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114690
|
+
message: string;
|
|
114691
|
+
/** Indicates that this is an access code error. */
|
|
114692
|
+
is_access_code_error: true;
|
|
114693
|
+
/** Date and time at which Seam created the error. */
|
|
114694
|
+
created_at?: string | undefined;
|
|
114695
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114696
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
114313
114697
|
} | {
|
|
114314
114698
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114315
114699
|
message: string;
|
|
@@ -114846,6 +115230,15 @@ type Routes = {
|
|
|
114846
115230
|
created_at?: string | undefined;
|
|
114847
115231
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114848
115232
|
error_code: 'kwikset_insufficient_permissions';
|
|
115233
|
+
} | {
|
|
115234
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115235
|
+
message: string;
|
|
115236
|
+
/** Indicates that this is an access code error. */
|
|
115237
|
+
is_access_code_error: true;
|
|
115238
|
+
/** Date and time at which Seam created the error. */
|
|
115239
|
+
created_at?: string | undefined;
|
|
115240
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115241
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
114849
115242
|
} | {
|
|
114850
115243
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114851
115244
|
message: string;
|
|
@@ -116642,6 +117035,15 @@ type Routes = {
|
|
|
116642
117035
|
created_at?: string | undefined;
|
|
116643
117036
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116644
117037
|
error_code: 'kwikset_insufficient_permissions';
|
|
117038
|
+
} | {
|
|
117039
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117040
|
+
message: string;
|
|
117041
|
+
/** Indicates that this is an access code error. */
|
|
117042
|
+
is_access_code_error: true;
|
|
117043
|
+
/** Date and time at which Seam created the error. */
|
|
117044
|
+
created_at?: string | undefined;
|
|
117045
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117046
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
116645
117047
|
} | {
|
|
116646
117048
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
116647
117049
|
message: string;
|
|
@@ -117139,6 +117541,15 @@ type Routes = {
|
|
|
117139
117541
|
created_at?: string | undefined;
|
|
117140
117542
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117141
117543
|
error_code: 'kwikset_insufficient_permissions';
|
|
117544
|
+
} | {
|
|
117545
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117546
|
+
message: string;
|
|
117547
|
+
/** Indicates that this is an access code error. */
|
|
117548
|
+
is_access_code_error: true;
|
|
117549
|
+
/** Date and time at which Seam created the error. */
|
|
117550
|
+
created_at?: string | undefined;
|
|
117551
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117552
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
117142
117553
|
} | {
|
|
117143
117554
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117144
117555
|
message: string;
|
|
@@ -123988,6 +124399,15 @@ type Routes = {
|
|
|
123988
124399
|
message: string;
|
|
123989
124400
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
123990
124401
|
mutation_code: 'deleting';
|
|
124402
|
+
} | {
|
|
124403
|
+
/** Date and time at which the mutation was created. */
|
|
124404
|
+
created_at: string;
|
|
124405
|
+
/** Detailed description of the mutation. */
|
|
124406
|
+
message: string;
|
|
124407
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
124408
|
+
mutation_code: 'deferring_creation';
|
|
124409
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
124410
|
+
scheduled_at?: (string | undefined) | null;
|
|
123991
124411
|
} | {
|
|
123992
124412
|
/** Date and time at which the mutation was created. */
|
|
123993
124413
|
created_at: string;
|
|
@@ -125793,6 +126213,15 @@ type Routes = {
|
|
|
125793
126213
|
message: string;
|
|
125794
126214
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
125795
126215
|
mutation_code: 'deleting';
|
|
126216
|
+
} | {
|
|
126217
|
+
/** Date and time at which the mutation was created. */
|
|
126218
|
+
created_at: string;
|
|
126219
|
+
/** Detailed description of the mutation. */
|
|
126220
|
+
message: string;
|
|
126221
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
126222
|
+
mutation_code: 'deferring_creation';
|
|
126223
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
126224
|
+
scheduled_at?: (string | undefined) | null;
|
|
125796
126225
|
} | {
|
|
125797
126226
|
/** Date and time at which the mutation was created. */
|
|
125798
126227
|
created_at: string;
|
|
@@ -128616,6 +129045,15 @@ type Routes = {
|
|
|
128616
129045
|
created_at?: string | undefined;
|
|
128617
129046
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128618
129047
|
error_code: 'kwikset_insufficient_permissions';
|
|
129048
|
+
} | {
|
|
129049
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129050
|
+
message: string;
|
|
129051
|
+
/** Indicates that this is an access code error. */
|
|
129052
|
+
is_access_code_error: true;
|
|
129053
|
+
/** Date and time at which Seam created the error. */
|
|
129054
|
+
created_at?: string | undefined;
|
|
129055
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129056
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
128619
129057
|
} | {
|
|
128620
129058
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128621
129059
|
message: string;
|
|
@@ -129106,6 +129544,15 @@ type Routes = {
|
|
|
129106
129544
|
created_at?: string | undefined;
|
|
129107
129545
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129108
129546
|
error_code: 'kwikset_insufficient_permissions';
|
|
129547
|
+
} | {
|
|
129548
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129549
|
+
message: string;
|
|
129550
|
+
/** Indicates that this is an access code error. */
|
|
129551
|
+
is_access_code_error: true;
|
|
129552
|
+
/** Date and time at which Seam created the error. */
|
|
129553
|
+
created_at?: string | undefined;
|
|
129554
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129555
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
129109
129556
|
} | {
|
|
129110
129557
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129111
129558
|
message: string;
|
|
@@ -129942,6 +130389,15 @@ type Routes = {
|
|
|
129942
130389
|
message: string;
|
|
129943
130390
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
129944
130391
|
mutation_code: 'deleting';
|
|
130392
|
+
} | {
|
|
130393
|
+
/** Date and time at which the mutation was created. */
|
|
130394
|
+
created_at: string;
|
|
130395
|
+
/** Detailed description of the mutation. */
|
|
130396
|
+
message: string;
|
|
130397
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
130398
|
+
mutation_code: 'deferring_creation';
|
|
130399
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
130400
|
+
scheduled_at?: (string | undefined) | null;
|
|
129945
130401
|
} | {
|
|
129946
130402
|
/** Date and time at which the mutation was created. */
|
|
129947
130403
|
created_at: string;
|
|
@@ -135575,6 +136031,15 @@ type Routes = {
|
|
|
135575
136031
|
message: string;
|
|
135576
136032
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
135577
136033
|
mutation_code: 'deleting';
|
|
136034
|
+
} | {
|
|
136035
|
+
/** Date and time at which the mutation was created. */
|
|
136036
|
+
created_at: string;
|
|
136037
|
+
/** Detailed description of the mutation. */
|
|
136038
|
+
message: string;
|
|
136039
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
136040
|
+
mutation_code: 'deferring_creation';
|
|
136041
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
136042
|
+
scheduled_at?: (string | undefined) | null;
|
|
135578
136043
|
} | {
|
|
135579
136044
|
/** Date and time at which the mutation was created. */
|
|
135580
136045
|
created_at: string;
|
|
@@ -135821,6 +136286,15 @@ type Routes = {
|
|
|
135821
136286
|
message: string;
|
|
135822
136287
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
135823
136288
|
mutation_code: 'deleting';
|
|
136289
|
+
} | {
|
|
136290
|
+
/** Date and time at which the mutation was created. */
|
|
136291
|
+
created_at: string;
|
|
136292
|
+
/** Detailed description of the mutation. */
|
|
136293
|
+
message: string;
|
|
136294
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
136295
|
+
mutation_code: 'deferring_creation';
|
|
136296
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
136297
|
+
scheduled_at?: (string | undefined) | null;
|
|
135824
136298
|
} | {
|
|
135825
136299
|
/** Date and time at which the mutation was created. */
|
|
135826
136300
|
created_at: string;
|
|
@@ -136056,6 +136530,15 @@ type Routes = {
|
|
|
136056
136530
|
message: string;
|
|
136057
136531
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
136058
136532
|
mutation_code: 'deleting';
|
|
136533
|
+
} | {
|
|
136534
|
+
/** Date and time at which the mutation was created. */
|
|
136535
|
+
created_at: string;
|
|
136536
|
+
/** Detailed description of the mutation. */
|
|
136537
|
+
message: string;
|
|
136538
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
136539
|
+
mutation_code: 'deferring_creation';
|
|
136540
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
136541
|
+
scheduled_at?: (string | undefined) | null;
|
|
136059
136542
|
} | {
|
|
136060
136543
|
/** Date and time at which the mutation was created. */
|
|
136061
136544
|
created_at: string;
|
|
@@ -136473,6 +136956,15 @@ type Routes = {
|
|
|
136473
136956
|
message: string;
|
|
136474
136957
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
136475
136958
|
mutation_code: 'deleting';
|
|
136959
|
+
} | {
|
|
136960
|
+
/** Date and time at which the mutation was created. */
|
|
136961
|
+
created_at: string;
|
|
136962
|
+
/** Detailed description of the mutation. */
|
|
136963
|
+
message: string;
|
|
136964
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
136965
|
+
mutation_code: 'deferring_creation';
|
|
136966
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
136967
|
+
scheduled_at?: (string | undefined) | null;
|
|
136476
136968
|
} | {
|
|
136477
136969
|
/** Date and time at which the mutation was created. */
|
|
136478
136970
|
created_at: string;
|
|
@@ -136702,6 +137194,15 @@ type Routes = {
|
|
|
136702
137194
|
message: string;
|
|
136703
137195
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
136704
137196
|
mutation_code: 'deleting';
|
|
137197
|
+
} | {
|
|
137198
|
+
/** Date and time at which the mutation was created. */
|
|
137199
|
+
created_at: string;
|
|
137200
|
+
/** Detailed description of the mutation. */
|
|
137201
|
+
message: string;
|
|
137202
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
137203
|
+
mutation_code: 'deferring_creation';
|
|
137204
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
137205
|
+
scheduled_at?: (string | undefined) | null;
|
|
136705
137206
|
} | {
|
|
136706
137207
|
/** Date and time at which the mutation was created. */
|
|
136707
137208
|
created_at: string;
|
|
@@ -189448,6 +189949,15 @@ type Routes = {
|
|
|
189448
189949
|
message: string;
|
|
189449
189950
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
189450
189951
|
mutation_code: 'deleting';
|
|
189952
|
+
} | {
|
|
189953
|
+
/** Date and time at which the mutation was created. */
|
|
189954
|
+
created_at: string;
|
|
189955
|
+
/** Detailed description of the mutation. */
|
|
189956
|
+
message: string;
|
|
189957
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
189958
|
+
mutation_code: 'deferring_creation';
|
|
189959
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
189960
|
+
scheduled_at?: (string | undefined) | null;
|
|
189451
189961
|
} | {
|
|
189452
189962
|
/** Date and time at which the mutation was created. */
|
|
189453
189963
|
created_at: string;
|
|
@@ -191680,6 +192190,15 @@ type Routes = {
|
|
|
191680
192190
|
message: string;
|
|
191681
192191
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
191682
192192
|
mutation_code: 'deleting';
|
|
192193
|
+
} | {
|
|
192194
|
+
/** Date and time at which the mutation was created. */
|
|
192195
|
+
created_at: string;
|
|
192196
|
+
/** Detailed description of the mutation. */
|
|
192197
|
+
message: string;
|
|
192198
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
192199
|
+
mutation_code: 'deferring_creation';
|
|
192200
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
192201
|
+
scheduled_at?: (string | undefined) | null;
|
|
191683
192202
|
} | {
|
|
191684
192203
|
/** Date and time at which the mutation was created. */
|
|
191685
192204
|
created_at: string;
|
|
@@ -193485,6 +194004,15 @@ type Routes = {
|
|
|
193485
194004
|
message: string;
|
|
193486
194005
|
/** Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system. */
|
|
193487
194006
|
mutation_code: 'deleting';
|
|
194007
|
+
} | {
|
|
194008
|
+
/** Date and time at which the mutation was created. */
|
|
194009
|
+
created_at: string;
|
|
194010
|
+
/** Detailed description of the mutation. */
|
|
194011
|
+
message: string;
|
|
194012
|
+
/** Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time. */
|
|
194013
|
+
mutation_code: 'deferring_creation';
|
|
194014
|
+
/** Optional: When the user creation is scheduled to occur. */
|
|
194015
|
+
scheduled_at?: (string | undefined) | null;
|
|
193488
194016
|
} | {
|
|
193489
194017
|
/** Date and time at which the mutation was created. */
|
|
193490
194018
|
created_at: string;
|
|
@@ -196308,6 +196836,15 @@ type Routes = {
|
|
|
196308
196836
|
created_at?: string | undefined;
|
|
196309
196837
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
196310
196838
|
error_code: 'kwikset_insufficient_permissions';
|
|
196839
|
+
} | {
|
|
196840
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
196841
|
+
message: string;
|
|
196842
|
+
/** Indicates that this is an access code error. */
|
|
196843
|
+
is_access_code_error: true;
|
|
196844
|
+
/** Date and time at which Seam created the error. */
|
|
196845
|
+
created_at?: string | undefined;
|
|
196846
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
196847
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
196311
196848
|
} | {
|
|
196312
196849
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
196313
196850
|
message: string;
|
|
@@ -196798,6 +197335,15 @@ type Routes = {
|
|
|
196798
197335
|
created_at?: string | undefined;
|
|
196799
197336
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
196800
197337
|
error_code: 'kwikset_insufficient_permissions';
|
|
197338
|
+
} | {
|
|
197339
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
197340
|
+
message: string;
|
|
197341
|
+
/** Indicates that this is an access code error. */
|
|
197342
|
+
is_access_code_error: true;
|
|
197343
|
+
/** Date and time at which Seam created the error. */
|
|
197344
|
+
created_at?: string | undefined;
|
|
197345
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
197346
|
+
error_code: 'keynest_unsupported_third_party_locker';
|
|
196801
197347
|
} | {
|
|
196802
197348
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
196803
197349
|
message: string;
|