@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
|
@@ -25716,6 +25716,22 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25716
25716
|
}>, z.ZodObject<{
|
|
25717
25717
|
created_at: z.ZodString;
|
|
25718
25718
|
message: z.ZodString;
|
|
25719
|
+
} & {
|
|
25720
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
25721
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25722
|
+
}, "strip", z.ZodTypeAny, {
|
|
25723
|
+
message: string;
|
|
25724
|
+
created_at: string;
|
|
25725
|
+
mutation_code: "deferring_creation";
|
|
25726
|
+
scheduled_at?: string | null | undefined;
|
|
25727
|
+
}, {
|
|
25728
|
+
message: string;
|
|
25729
|
+
created_at: string;
|
|
25730
|
+
mutation_code: "deferring_creation";
|
|
25731
|
+
scheduled_at?: string | null | undefined;
|
|
25732
|
+
}>, z.ZodObject<{
|
|
25733
|
+
created_at: z.ZodString;
|
|
25734
|
+
message: z.ZodString;
|
|
25719
25735
|
} & {
|
|
25720
25736
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
25721
25737
|
from: z.ZodObject<{
|
|
@@ -25984,6 +26000,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25984
26000
|
message: string;
|
|
25985
26001
|
created_at: string;
|
|
25986
26002
|
mutation_code: "deleting";
|
|
26003
|
+
} | {
|
|
26004
|
+
message: string;
|
|
26005
|
+
created_at: string;
|
|
26006
|
+
mutation_code: "deferring_creation";
|
|
26007
|
+
scheduled_at?: string | null | undefined;
|
|
25987
26008
|
} | {
|
|
25988
26009
|
message: string;
|
|
25989
26010
|
created_at: string;
|
|
@@ -26106,6 +26127,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26106
26127
|
message: string;
|
|
26107
26128
|
created_at: string;
|
|
26108
26129
|
mutation_code: "deleting";
|
|
26130
|
+
} | {
|
|
26131
|
+
message: string;
|
|
26132
|
+
created_at: string;
|
|
26133
|
+
mutation_code: "deferring_creation";
|
|
26134
|
+
scheduled_at?: string | null | undefined;
|
|
26109
26135
|
} | {
|
|
26110
26136
|
message: string;
|
|
26111
26137
|
created_at: string;
|
|
@@ -30928,6 +30954,22 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
30928
30954
|
}>, z.ZodObject<{
|
|
30929
30955
|
created_at: z.ZodString;
|
|
30930
30956
|
message: z.ZodString;
|
|
30957
|
+
} & {
|
|
30958
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
30959
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30960
|
+
}, "strip", z.ZodTypeAny, {
|
|
30961
|
+
message: string;
|
|
30962
|
+
created_at: string;
|
|
30963
|
+
mutation_code: "deferring_creation";
|
|
30964
|
+
scheduled_at?: string | null | undefined;
|
|
30965
|
+
}, {
|
|
30966
|
+
message: string;
|
|
30967
|
+
created_at: string;
|
|
30968
|
+
mutation_code: "deferring_creation";
|
|
30969
|
+
scheduled_at?: string | null | undefined;
|
|
30970
|
+
}>, z.ZodObject<{
|
|
30971
|
+
created_at: z.ZodString;
|
|
30972
|
+
message: z.ZodString;
|
|
30931
30973
|
} & {
|
|
30932
30974
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
30933
30975
|
from: z.ZodObject<{
|
|
@@ -31196,6 +31238,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31196
31238
|
message: string;
|
|
31197
31239
|
created_at: string;
|
|
31198
31240
|
mutation_code: "deleting";
|
|
31241
|
+
} | {
|
|
31242
|
+
message: string;
|
|
31243
|
+
created_at: string;
|
|
31244
|
+
mutation_code: "deferring_creation";
|
|
31245
|
+
scheduled_at?: string | null | undefined;
|
|
31199
31246
|
} | {
|
|
31200
31247
|
message: string;
|
|
31201
31248
|
created_at: string;
|
|
@@ -31318,6 +31365,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31318
31365
|
message: string;
|
|
31319
31366
|
created_at: string;
|
|
31320
31367
|
mutation_code: "deleting";
|
|
31368
|
+
} | {
|
|
31369
|
+
message: string;
|
|
31370
|
+
created_at: string;
|
|
31371
|
+
mutation_code: "deferring_creation";
|
|
31372
|
+
scheduled_at?: string | null | undefined;
|
|
31321
31373
|
} | {
|
|
31322
31374
|
message: string;
|
|
31323
31375
|
created_at: string;
|
|
@@ -38982,6 +39034,22 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
38982
39034
|
error_code: "kwikset_insufficient_permissions";
|
|
38983
39035
|
is_access_code_error: true;
|
|
38984
39036
|
created_at?: string | undefined;
|
|
39037
|
+
}>, z.ZodObject<{
|
|
39038
|
+
message: z.ZodString;
|
|
39039
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
39040
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
39041
|
+
} & {
|
|
39042
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
39043
|
+
}, "strip", z.ZodTypeAny, {
|
|
39044
|
+
message: string;
|
|
39045
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
39046
|
+
is_access_code_error: true;
|
|
39047
|
+
created_at?: string | undefined;
|
|
39048
|
+
}, {
|
|
39049
|
+
message: string;
|
|
39050
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
39051
|
+
is_access_code_error: true;
|
|
39052
|
+
created_at?: string | undefined;
|
|
38985
39053
|
}>, ...(z.ZodObject<{
|
|
38986
39054
|
created_at: z.ZodString;
|
|
38987
39055
|
message: z.ZodString;
|
|
@@ -39716,6 +39784,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
39716
39784
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
39717
39785
|
is_access_code_error: true;
|
|
39718
39786
|
created_at?: string | undefined;
|
|
39787
|
+
} | {
|
|
39788
|
+
message: string;
|
|
39789
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
39790
|
+
is_access_code_error: true;
|
|
39791
|
+
created_at?: string | undefined;
|
|
39719
39792
|
})[];
|
|
39720
39793
|
warnings: ({
|
|
39721
39794
|
message: string;
|
|
@@ -40010,6 +40083,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40010
40083
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
40011
40084
|
is_access_code_error: true;
|
|
40012
40085
|
created_at?: string | undefined;
|
|
40086
|
+
} | {
|
|
40087
|
+
message: string;
|
|
40088
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
40089
|
+
is_access_code_error: true;
|
|
40090
|
+
created_at?: string | undefined;
|
|
40013
40091
|
})[];
|
|
40014
40092
|
warnings: ({
|
|
40015
40093
|
message: string;
|
|
@@ -40483,6 +40561,22 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40483
40561
|
error_code: "kwikset_insufficient_permissions";
|
|
40484
40562
|
is_access_code_error: true;
|
|
40485
40563
|
created_at?: string | undefined;
|
|
40564
|
+
}>, z.ZodObject<{
|
|
40565
|
+
message: z.ZodString;
|
|
40566
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
40567
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
40568
|
+
} & {
|
|
40569
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
40570
|
+
}, "strip", z.ZodTypeAny, {
|
|
40571
|
+
message: string;
|
|
40572
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
40573
|
+
is_access_code_error: true;
|
|
40574
|
+
created_at?: string | undefined;
|
|
40575
|
+
}, {
|
|
40576
|
+
message: string;
|
|
40577
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
40578
|
+
is_access_code_error: true;
|
|
40579
|
+
created_at?: string | undefined;
|
|
40486
40580
|
}>, ...(z.ZodObject<{
|
|
40487
40581
|
created_at: z.ZodString;
|
|
40488
40582
|
message: z.ZodString;
|
|
@@ -41211,6 +41305,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41211
41305
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
41212
41306
|
is_access_code_error: true;
|
|
41213
41307
|
created_at?: string | undefined;
|
|
41308
|
+
} | {
|
|
41309
|
+
message: string;
|
|
41310
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
41311
|
+
is_access_code_error: true;
|
|
41312
|
+
created_at?: string | undefined;
|
|
41214
41313
|
})[];
|
|
41215
41314
|
warnings: ({
|
|
41216
41315
|
message: string;
|
|
@@ -41496,6 +41595,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41496
41595
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
41497
41596
|
is_access_code_error: true;
|
|
41498
41597
|
created_at?: string | undefined;
|
|
41598
|
+
} | {
|
|
41599
|
+
message: string;
|
|
41600
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
41601
|
+
is_access_code_error: true;
|
|
41602
|
+
created_at?: string | undefined;
|
|
41499
41603
|
})[];
|
|
41500
41604
|
warnings: ({
|
|
41501
41605
|
message: string;
|
|
@@ -42796,6 +42900,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42796
42900
|
message: string;
|
|
42797
42901
|
created_at: string;
|
|
42798
42902
|
mutation_code: "deleting";
|
|
42903
|
+
} | {
|
|
42904
|
+
message: string;
|
|
42905
|
+
created_at: string;
|
|
42906
|
+
mutation_code: "deferring_creation";
|
|
42907
|
+
scheduled_at?: string | null | undefined;
|
|
42799
42908
|
} | {
|
|
42800
42909
|
message: string;
|
|
42801
42910
|
created_at: string;
|
|
@@ -43804,6 +43913,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
43804
43913
|
message: string;
|
|
43805
43914
|
created_at: string;
|
|
43806
43915
|
mutation_code: "deleting";
|
|
43916
|
+
} | {
|
|
43917
|
+
message: string;
|
|
43918
|
+
created_at: string;
|
|
43919
|
+
mutation_code: "deferring_creation";
|
|
43920
|
+
scheduled_at?: string | null | undefined;
|
|
43807
43921
|
} | {
|
|
43808
43922
|
message: string;
|
|
43809
43923
|
created_at: string;
|
|
@@ -45286,6 +45400,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45286
45400
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
45287
45401
|
is_access_code_error: true;
|
|
45288
45402
|
created_at?: string | undefined;
|
|
45403
|
+
} | {
|
|
45404
|
+
message: string;
|
|
45405
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
45406
|
+
is_access_code_error: true;
|
|
45407
|
+
created_at?: string | undefined;
|
|
45289
45408
|
})[];
|
|
45290
45409
|
warnings: ({
|
|
45291
45410
|
message: string;
|
|
@@ -45581,6 +45700,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45581
45700
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
45582
45701
|
is_access_code_error: true;
|
|
45583
45702
|
created_at?: string | undefined;
|
|
45703
|
+
} | {
|
|
45704
|
+
message: string;
|
|
45705
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
45706
|
+
is_access_code_error: true;
|
|
45707
|
+
created_at?: string | undefined;
|
|
45584
45708
|
})[];
|
|
45585
45709
|
warnings: ({
|
|
45586
45710
|
message: string;
|
|
@@ -46776,6 +46900,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46776
46900
|
message: string;
|
|
46777
46901
|
created_at: string;
|
|
46778
46902
|
mutation_code: "deleting";
|
|
46903
|
+
} | {
|
|
46904
|
+
message: string;
|
|
46905
|
+
created_at: string;
|
|
46906
|
+
mutation_code: "deferring_creation";
|
|
46907
|
+
scheduled_at?: string | null | undefined;
|
|
46779
46908
|
} | {
|
|
46780
46909
|
message: string;
|
|
46781
46910
|
created_at: string;
|
|
@@ -47784,6 +47913,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
47784
47913
|
message: string;
|
|
47785
47914
|
created_at: string;
|
|
47786
47915
|
mutation_code: "deleting";
|
|
47916
|
+
} | {
|
|
47917
|
+
message: string;
|
|
47918
|
+
created_at: string;
|
|
47919
|
+
mutation_code: "deferring_creation";
|
|
47920
|
+
scheduled_at?: string | null | undefined;
|
|
47787
47921
|
} | {
|
|
47788
47922
|
message: string;
|
|
47789
47923
|
created_at: string;
|
|
@@ -49266,6 +49400,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
49266
49400
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
49267
49401
|
is_access_code_error: true;
|
|
49268
49402
|
created_at?: string | undefined;
|
|
49403
|
+
} | {
|
|
49404
|
+
message: string;
|
|
49405
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
49406
|
+
is_access_code_error: true;
|
|
49407
|
+
created_at?: string | undefined;
|
|
49269
49408
|
})[];
|
|
49270
49409
|
warnings: ({
|
|
49271
49410
|
message: string;
|
|
@@ -49561,6 +49700,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
49561
49700
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
49562
49701
|
is_access_code_error: true;
|
|
49563
49702
|
created_at?: string | undefined;
|
|
49703
|
+
} | {
|
|
49704
|
+
message: string;
|
|
49705
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
49706
|
+
is_access_code_error: true;
|
|
49707
|
+
created_at?: string | undefined;
|
|
49564
49708
|
})[];
|
|
49565
49709
|
warnings: ({
|
|
49566
49710
|
message: string;
|
|
@@ -54811,6 +54955,22 @@ export declare const batch: z.ZodObject<{
|
|
|
54811
54955
|
}>, z.ZodObject<{
|
|
54812
54956
|
created_at: z.ZodString;
|
|
54813
54957
|
message: z.ZodString;
|
|
54958
|
+
} & {
|
|
54959
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
54960
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
54961
|
+
}, "strip", z.ZodTypeAny, {
|
|
54962
|
+
message: string;
|
|
54963
|
+
created_at: string;
|
|
54964
|
+
mutation_code: "deferring_creation";
|
|
54965
|
+
scheduled_at?: string | null | undefined;
|
|
54966
|
+
}, {
|
|
54967
|
+
message: string;
|
|
54968
|
+
created_at: string;
|
|
54969
|
+
mutation_code: "deferring_creation";
|
|
54970
|
+
scheduled_at?: string | null | undefined;
|
|
54971
|
+
}>, z.ZodObject<{
|
|
54972
|
+
created_at: z.ZodString;
|
|
54973
|
+
message: z.ZodString;
|
|
54814
54974
|
} & {
|
|
54815
54975
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
54816
54976
|
from: z.ZodObject<{
|
|
@@ -55079,6 +55239,11 @@ export declare const batch: z.ZodObject<{
|
|
|
55079
55239
|
message: string;
|
|
55080
55240
|
created_at: string;
|
|
55081
55241
|
mutation_code: "deleting";
|
|
55242
|
+
} | {
|
|
55243
|
+
message: string;
|
|
55244
|
+
created_at: string;
|
|
55245
|
+
mutation_code: "deferring_creation";
|
|
55246
|
+
scheduled_at?: string | null | undefined;
|
|
55082
55247
|
} | {
|
|
55083
55248
|
message: string;
|
|
55084
55249
|
created_at: string;
|
|
@@ -55201,6 +55366,11 @@ export declare const batch: z.ZodObject<{
|
|
|
55201
55366
|
message: string;
|
|
55202
55367
|
created_at: string;
|
|
55203
55368
|
mutation_code: "deleting";
|
|
55369
|
+
} | {
|
|
55370
|
+
message: string;
|
|
55371
|
+
created_at: string;
|
|
55372
|
+
mutation_code: "deferring_creation";
|
|
55373
|
+
scheduled_at?: string | null | undefined;
|
|
55204
55374
|
} | {
|
|
55205
55375
|
message: string;
|
|
55206
55376
|
created_at: string;
|
|
@@ -60023,6 +60193,22 @@ export declare const batch: z.ZodObject<{
|
|
|
60023
60193
|
}>, z.ZodObject<{
|
|
60024
60194
|
created_at: z.ZodString;
|
|
60025
60195
|
message: z.ZodString;
|
|
60196
|
+
} & {
|
|
60197
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
60198
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
60199
|
+
}, "strip", z.ZodTypeAny, {
|
|
60200
|
+
message: string;
|
|
60201
|
+
created_at: string;
|
|
60202
|
+
mutation_code: "deferring_creation";
|
|
60203
|
+
scheduled_at?: string | null | undefined;
|
|
60204
|
+
}, {
|
|
60205
|
+
message: string;
|
|
60206
|
+
created_at: string;
|
|
60207
|
+
mutation_code: "deferring_creation";
|
|
60208
|
+
scheduled_at?: string | null | undefined;
|
|
60209
|
+
}>, z.ZodObject<{
|
|
60210
|
+
created_at: z.ZodString;
|
|
60211
|
+
message: z.ZodString;
|
|
60026
60212
|
} & {
|
|
60027
60213
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
60028
60214
|
from: z.ZodObject<{
|
|
@@ -60291,6 +60477,11 @@ export declare const batch: z.ZodObject<{
|
|
|
60291
60477
|
message: string;
|
|
60292
60478
|
created_at: string;
|
|
60293
60479
|
mutation_code: "deleting";
|
|
60480
|
+
} | {
|
|
60481
|
+
message: string;
|
|
60482
|
+
created_at: string;
|
|
60483
|
+
mutation_code: "deferring_creation";
|
|
60484
|
+
scheduled_at?: string | null | undefined;
|
|
60294
60485
|
} | {
|
|
60295
60486
|
message: string;
|
|
60296
60487
|
created_at: string;
|
|
@@ -60413,6 +60604,11 @@ export declare const batch: z.ZodObject<{
|
|
|
60413
60604
|
message: string;
|
|
60414
60605
|
created_at: string;
|
|
60415
60606
|
mutation_code: "deleting";
|
|
60607
|
+
} | {
|
|
60608
|
+
message: string;
|
|
60609
|
+
created_at: string;
|
|
60610
|
+
mutation_code: "deferring_creation";
|
|
60611
|
+
scheduled_at?: string | null | undefined;
|
|
60416
60612
|
} | {
|
|
60417
60613
|
message: string;
|
|
60418
60614
|
created_at: string;
|
|
@@ -67705,6 +67901,22 @@ export declare const batch: z.ZodObject<{
|
|
|
67705
67901
|
error_code: "kwikset_insufficient_permissions";
|
|
67706
67902
|
is_access_code_error: true;
|
|
67707
67903
|
created_at?: string | undefined;
|
|
67904
|
+
}>, z.ZodObject<{
|
|
67905
|
+
message: z.ZodString;
|
|
67906
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
67907
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
67908
|
+
} & {
|
|
67909
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
67910
|
+
}, "strip", z.ZodTypeAny, {
|
|
67911
|
+
message: string;
|
|
67912
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
67913
|
+
is_access_code_error: true;
|
|
67914
|
+
created_at?: string | undefined;
|
|
67915
|
+
}, {
|
|
67916
|
+
message: string;
|
|
67917
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
67918
|
+
is_access_code_error: true;
|
|
67919
|
+
created_at?: string | undefined;
|
|
67708
67920
|
}>, ...(z.ZodObject<{
|
|
67709
67921
|
created_at: z.ZodString;
|
|
67710
67922
|
message: z.ZodString;
|
|
@@ -68439,6 +68651,11 @@ export declare const batch: z.ZodObject<{
|
|
|
68439
68651
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
68440
68652
|
is_access_code_error: true;
|
|
68441
68653
|
created_at?: string | undefined;
|
|
68654
|
+
} | {
|
|
68655
|
+
message: string;
|
|
68656
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
68657
|
+
is_access_code_error: true;
|
|
68658
|
+
created_at?: string | undefined;
|
|
68442
68659
|
})[];
|
|
68443
68660
|
warnings: ({
|
|
68444
68661
|
message: string;
|
|
@@ -68733,6 +68950,11 @@ export declare const batch: z.ZodObject<{
|
|
|
68733
68950
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
68734
68951
|
is_access_code_error: true;
|
|
68735
68952
|
created_at?: string | undefined;
|
|
68953
|
+
} | {
|
|
68954
|
+
message: string;
|
|
68955
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
68956
|
+
is_access_code_error: true;
|
|
68957
|
+
created_at?: string | undefined;
|
|
68736
68958
|
})[];
|
|
68737
68959
|
warnings: ({
|
|
68738
68960
|
message: string;
|
|
@@ -69206,6 +69428,22 @@ export declare const batch: z.ZodObject<{
|
|
|
69206
69428
|
error_code: "kwikset_insufficient_permissions";
|
|
69207
69429
|
is_access_code_error: true;
|
|
69208
69430
|
created_at?: string | undefined;
|
|
69431
|
+
}>, z.ZodObject<{
|
|
69432
|
+
message: z.ZodString;
|
|
69433
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
69434
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
69435
|
+
} & {
|
|
69436
|
+
error_code: z.ZodLiteral<"keynest_unsupported_third_party_locker">;
|
|
69437
|
+
}, "strip", z.ZodTypeAny, {
|
|
69438
|
+
message: string;
|
|
69439
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
69440
|
+
is_access_code_error: true;
|
|
69441
|
+
created_at?: string | undefined;
|
|
69442
|
+
}, {
|
|
69443
|
+
message: string;
|
|
69444
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
69445
|
+
is_access_code_error: true;
|
|
69446
|
+
created_at?: string | undefined;
|
|
69209
69447
|
}>, ...(z.ZodObject<{
|
|
69210
69448
|
created_at: z.ZodString;
|
|
69211
69449
|
message: z.ZodString;
|
|
@@ -69934,6 +70172,11 @@ export declare const batch: z.ZodObject<{
|
|
|
69934
70172
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
69935
70173
|
is_access_code_error: true;
|
|
69936
70174
|
created_at?: string | undefined;
|
|
70175
|
+
} | {
|
|
70176
|
+
message: string;
|
|
70177
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
70178
|
+
is_access_code_error: true;
|
|
70179
|
+
created_at?: string | undefined;
|
|
69937
70180
|
})[];
|
|
69938
70181
|
warnings: ({
|
|
69939
70182
|
message: string;
|
|
@@ -70219,6 +70462,11 @@ export declare const batch: z.ZodObject<{
|
|
|
70219
70462
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
70220
70463
|
is_access_code_error: true;
|
|
70221
70464
|
created_at?: string | undefined;
|
|
70465
|
+
} | {
|
|
70466
|
+
message: string;
|
|
70467
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
70468
|
+
is_access_code_error: true;
|
|
70469
|
+
created_at?: string | undefined;
|
|
70222
70470
|
})[];
|
|
70223
70471
|
warnings: ({
|
|
70224
70472
|
message: string;
|
|
@@ -71450,6 +71698,11 @@ export declare const batch: z.ZodObject<{
|
|
|
71450
71698
|
message: string;
|
|
71451
71699
|
created_at: string;
|
|
71452
71700
|
mutation_code: "deleting";
|
|
71701
|
+
} | {
|
|
71702
|
+
message: string;
|
|
71703
|
+
created_at: string;
|
|
71704
|
+
mutation_code: "deferring_creation";
|
|
71705
|
+
scheduled_at?: string | null | undefined;
|
|
71453
71706
|
} | {
|
|
71454
71707
|
message: string;
|
|
71455
71708
|
created_at: string;
|
|
@@ -72458,6 +72711,11 @@ export declare const batch: z.ZodObject<{
|
|
|
72458
72711
|
message: string;
|
|
72459
72712
|
created_at: string;
|
|
72460
72713
|
mutation_code: "deleting";
|
|
72714
|
+
} | {
|
|
72715
|
+
message: string;
|
|
72716
|
+
created_at: string;
|
|
72717
|
+
mutation_code: "deferring_creation";
|
|
72718
|
+
scheduled_at?: string | null | undefined;
|
|
72461
72719
|
} | {
|
|
72462
72720
|
message: string;
|
|
72463
72721
|
created_at: string;
|
|
@@ -73940,6 +74198,11 @@ export declare const batch: z.ZodObject<{
|
|
|
73940
74198
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
73941
74199
|
is_access_code_error: true;
|
|
73942
74200
|
created_at?: string | undefined;
|
|
74201
|
+
} | {
|
|
74202
|
+
message: string;
|
|
74203
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
74204
|
+
is_access_code_error: true;
|
|
74205
|
+
created_at?: string | undefined;
|
|
73943
74206
|
})[];
|
|
73944
74207
|
warnings: ({
|
|
73945
74208
|
message: string;
|
|
@@ -74235,6 +74498,11 @@ export declare const batch: z.ZodObject<{
|
|
|
74235
74498
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
74236
74499
|
is_access_code_error: true;
|
|
74237
74500
|
created_at?: string | undefined;
|
|
74501
|
+
} | {
|
|
74502
|
+
message: string;
|
|
74503
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
74504
|
+
is_access_code_error: true;
|
|
74505
|
+
created_at?: string | undefined;
|
|
74238
74506
|
})[];
|
|
74239
74507
|
warnings: ({
|
|
74240
74508
|
message: string;
|
|
@@ -75361,6 +75629,11 @@ export declare const batch: z.ZodObject<{
|
|
|
75361
75629
|
message: string;
|
|
75362
75630
|
created_at: string;
|
|
75363
75631
|
mutation_code: "deleting";
|
|
75632
|
+
} | {
|
|
75633
|
+
message: string;
|
|
75634
|
+
created_at: string;
|
|
75635
|
+
mutation_code: "deferring_creation";
|
|
75636
|
+
scheduled_at?: string | null | undefined;
|
|
75364
75637
|
} | {
|
|
75365
75638
|
message: string;
|
|
75366
75639
|
created_at: string;
|
|
@@ -76369,6 +76642,11 @@ export declare const batch: z.ZodObject<{
|
|
|
76369
76642
|
message: string;
|
|
76370
76643
|
created_at: string;
|
|
76371
76644
|
mutation_code: "deleting";
|
|
76645
|
+
} | {
|
|
76646
|
+
message: string;
|
|
76647
|
+
created_at: string;
|
|
76648
|
+
mutation_code: "deferring_creation";
|
|
76649
|
+
scheduled_at?: string | null | undefined;
|
|
76372
76650
|
} | {
|
|
76373
76651
|
message: string;
|
|
76374
76652
|
created_at: string;
|
|
@@ -77851,6 +78129,11 @@ export declare const batch: z.ZodObject<{
|
|
|
77851
78129
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
77852
78130
|
is_access_code_error: true;
|
|
77853
78131
|
created_at?: string | undefined;
|
|
78132
|
+
} | {
|
|
78133
|
+
message: string;
|
|
78134
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
78135
|
+
is_access_code_error: true;
|
|
78136
|
+
created_at?: string | undefined;
|
|
77854
78137
|
})[];
|
|
77855
78138
|
warnings: ({
|
|
77856
78139
|
message: string;
|
|
@@ -78146,6 +78429,11 @@ export declare const batch: z.ZodObject<{
|
|
|
78146
78429
|
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
78147
78430
|
is_access_code_error: true;
|
|
78148
78431
|
created_at?: string | undefined;
|
|
78432
|
+
} | {
|
|
78433
|
+
message: string;
|
|
78434
|
+
error_code: "keynest_unsupported_third_party_locker";
|
|
78435
|
+
is_access_code_error: true;
|
|
78436
|
+
created_at?: string | undefined;
|
|
78149
78437
|
})[];
|
|
78150
78438
|
warnings: ({
|
|
78151
78439
|
message: string;
|
|
@@ -1761,6 +1761,35 @@ declare const _default: {
|
|
|
1761
1761
|
enum: string[];
|
|
1762
1762
|
type: string;
|
|
1763
1763
|
};
|
|
1764
|
+
scheduled_at?: never;
|
|
1765
|
+
from?: never;
|
|
1766
|
+
to?: never;
|
|
1767
|
+
};
|
|
1768
|
+
required: string[];
|
|
1769
|
+
type: string;
|
|
1770
|
+
} | {
|
|
1771
|
+
description: string;
|
|
1772
|
+
properties: {
|
|
1773
|
+
created_at: {
|
|
1774
|
+
description: string;
|
|
1775
|
+
format: string;
|
|
1776
|
+
type: string;
|
|
1777
|
+
};
|
|
1778
|
+
message: {
|
|
1779
|
+
description: string;
|
|
1780
|
+
type: string;
|
|
1781
|
+
};
|
|
1782
|
+
mutation_code: {
|
|
1783
|
+
description: string;
|
|
1784
|
+
enum: string[];
|
|
1785
|
+
type: string;
|
|
1786
|
+
};
|
|
1787
|
+
scheduled_at: {
|
|
1788
|
+
description: string;
|
|
1789
|
+
format: string;
|
|
1790
|
+
nullable: boolean;
|
|
1791
|
+
type: string;
|
|
1792
|
+
};
|
|
1764
1793
|
from?: never;
|
|
1765
1794
|
to?: never;
|
|
1766
1795
|
};
|
|
@@ -1836,6 +1865,7 @@ declare const _default: {
|
|
|
1836
1865
|
type: string;
|
|
1837
1866
|
required?: never;
|
|
1838
1867
|
};
|
|
1868
|
+
scheduled_at?: never;
|
|
1839
1869
|
};
|
|
1840
1870
|
required: string[];
|
|
1841
1871
|
type: string;
|
|
@@ -1905,6 +1935,7 @@ declare const _default: {
|
|
|
1905
1935
|
required: string[];
|
|
1906
1936
|
type: string;
|
|
1907
1937
|
};
|
|
1938
|
+
scheduled_at?: never;
|
|
1908
1939
|
};
|
|
1909
1940
|
required: string[];
|
|
1910
1941
|
type: string;
|
|
@@ -1957,6 +1988,7 @@ declare const _default: {
|
|
|
1957
1988
|
required: string[];
|
|
1958
1989
|
type: string;
|
|
1959
1990
|
};
|
|
1991
|
+
scheduled_at?: never;
|
|
1960
1992
|
};
|
|
1961
1993
|
required: string[];
|
|
1962
1994
|
type: string;
|
|
@@ -2015,6 +2047,7 @@ declare const _default: {
|
|
|
2015
2047
|
required: string[];
|
|
2016
2048
|
type: string;
|
|
2017
2049
|
};
|
|
2050
|
+
scheduled_at?: never;
|
|
2018
2051
|
};
|
|
2019
2052
|
required: string[];
|
|
2020
2053
|
type: string;
|
|
@@ -13204,6 +13237,35 @@ declare const _default: {
|
|
|
13204
13237
|
enum: string[];
|
|
13205
13238
|
type: string;
|
|
13206
13239
|
};
|
|
13240
|
+
scheduled_at?: never;
|
|
13241
|
+
from?: never;
|
|
13242
|
+
to?: never;
|
|
13243
|
+
};
|
|
13244
|
+
required: string[];
|
|
13245
|
+
type: string;
|
|
13246
|
+
} | {
|
|
13247
|
+
description: string;
|
|
13248
|
+
properties: {
|
|
13249
|
+
created_at: {
|
|
13250
|
+
description: string;
|
|
13251
|
+
format: string;
|
|
13252
|
+
type: string;
|
|
13253
|
+
};
|
|
13254
|
+
message: {
|
|
13255
|
+
description: string;
|
|
13256
|
+
type: string;
|
|
13257
|
+
};
|
|
13258
|
+
mutation_code: {
|
|
13259
|
+
description: string;
|
|
13260
|
+
enum: string[];
|
|
13261
|
+
type: string;
|
|
13262
|
+
};
|
|
13263
|
+
scheduled_at: {
|
|
13264
|
+
description: string;
|
|
13265
|
+
format: string;
|
|
13266
|
+
nullable: boolean;
|
|
13267
|
+
type: string;
|
|
13268
|
+
};
|
|
13207
13269
|
from?: never;
|
|
13208
13270
|
to?: never;
|
|
13209
13271
|
};
|
|
@@ -13279,6 +13341,7 @@ declare const _default: {
|
|
|
13279
13341
|
type: string;
|
|
13280
13342
|
required?: never;
|
|
13281
13343
|
};
|
|
13344
|
+
scheduled_at?: never;
|
|
13282
13345
|
};
|
|
13283
13346
|
required: string[];
|
|
13284
13347
|
type: string;
|
|
@@ -13348,6 +13411,7 @@ declare const _default: {
|
|
|
13348
13411
|
required: string[];
|
|
13349
13412
|
type: string;
|
|
13350
13413
|
};
|
|
13414
|
+
scheduled_at?: never;
|
|
13351
13415
|
};
|
|
13352
13416
|
required: string[];
|
|
13353
13417
|
type: string;
|
|
@@ -13400,6 +13464,7 @@ declare const _default: {
|
|
|
13400
13464
|
required: string[];
|
|
13401
13465
|
type: string;
|
|
13402
13466
|
};
|
|
13467
|
+
scheduled_at?: never;
|
|
13403
13468
|
};
|
|
13404
13469
|
required: string[];
|
|
13405
13470
|
type: string;
|
|
@@ -13458,6 +13523,7 @@ declare const _default: {
|
|
|
13458
13523
|
required: string[];
|
|
13459
13524
|
type: string;
|
|
13460
13525
|
};
|
|
13526
|
+
scheduled_at?: never;
|
|
13461
13527
|
};
|
|
13462
13528
|
required: string[];
|
|
13463
13529
|
type: string;
|