@seamapi/types 1.869.0 → 1.871.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 +283 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1075 -0
- package/dist/index.cjs +283 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +333 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +61 -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 +123 -0
- package/lib/seam/connect/models/batch.d.ts +330 -0
- package/lib/seam/connect/openapi.js +222 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +418 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +80 -3
- package/src/lib/seam/connect/openapi.ts +256 -0
- package/src/lib/seam/connect/route-types.ts +484 -0
|
@@ -23475,6 +23475,22 @@ export declare const batch: z.ZodObject<{
|
|
|
23475
23475
|
message: z.ZodString;
|
|
23476
23476
|
is_access_code_error: z.ZodLiteral<true>;
|
|
23477
23477
|
created_at: z.ZodOptional<z.ZodString>;
|
|
23478
|
+
} & {
|
|
23479
|
+
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
23480
|
+
}, "strip", z.ZodTypeAny, {
|
|
23481
|
+
message: string;
|
|
23482
|
+
error_code: "access_code_state_unconfirmed";
|
|
23483
|
+
is_access_code_error: true;
|
|
23484
|
+
created_at?: string | undefined;
|
|
23485
|
+
}, {
|
|
23486
|
+
message: string;
|
|
23487
|
+
error_code: "access_code_state_unconfirmed";
|
|
23488
|
+
is_access_code_error: true;
|
|
23489
|
+
created_at?: string | undefined;
|
|
23490
|
+
}>, z.ZodObject<{
|
|
23491
|
+
message: z.ZodString;
|
|
23492
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
23493
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
23478
23494
|
} & {
|
|
23479
23495
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
23480
23496
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23509,16 +23525,42 @@ export declare const batch: z.ZodObject<{
|
|
|
23509
23525
|
created_at: z.ZodOptional<z.ZodString>;
|
|
23510
23526
|
} & {
|
|
23511
23527
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
23528
|
+
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
23529
|
+
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23530
|
+
field: z.ZodString;
|
|
23531
|
+
from: z.ZodNullable<z.ZodString>;
|
|
23532
|
+
to: z.ZodNullable<z.ZodString>;
|
|
23533
|
+
}, "strip", z.ZodTypeAny, {
|
|
23534
|
+
from: string | null;
|
|
23535
|
+
to: string | null;
|
|
23536
|
+
field: string;
|
|
23537
|
+
}, {
|
|
23538
|
+
from: string | null;
|
|
23539
|
+
to: string | null;
|
|
23540
|
+
field: string;
|
|
23541
|
+
}>, "many">>;
|
|
23512
23542
|
}, "strip", z.ZodTypeAny, {
|
|
23513
23543
|
message: string;
|
|
23514
23544
|
error_code: "code_modified_external_to_seam";
|
|
23515
23545
|
is_access_code_error: true;
|
|
23516
23546
|
created_at?: string | undefined;
|
|
23547
|
+
change_type?: "modified" | "removed" | undefined;
|
|
23548
|
+
modified_fields?: {
|
|
23549
|
+
from: string | null;
|
|
23550
|
+
to: string | null;
|
|
23551
|
+
field: string;
|
|
23552
|
+
}[] | undefined;
|
|
23517
23553
|
}, {
|
|
23518
23554
|
message: string;
|
|
23519
23555
|
error_code: "code_modified_external_to_seam";
|
|
23520
23556
|
is_access_code_error: true;
|
|
23521
23557
|
created_at?: string | undefined;
|
|
23558
|
+
change_type?: "modified" | "removed" | undefined;
|
|
23559
|
+
modified_fields?: {
|
|
23560
|
+
from: string | null;
|
|
23561
|
+
to: string | null;
|
|
23562
|
+
field: string;
|
|
23563
|
+
}[] | undefined;
|
|
23522
23564
|
}>, z.ZodObject<{
|
|
23523
23565
|
message: z.ZodString;
|
|
23524
23566
|
is_access_code_error: z.ZodLiteral<true>;
|
|
@@ -24072,14 +24114,40 @@ export declare const batch: z.ZodObject<{
|
|
|
24072
24114
|
created_at: z.ZodOptional<z.ZodString>;
|
|
24073
24115
|
} & {
|
|
24074
24116
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
24117
|
+
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
24118
|
+
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24119
|
+
field: z.ZodString;
|
|
24120
|
+
from: z.ZodNullable<z.ZodString>;
|
|
24121
|
+
to: z.ZodNullable<z.ZodString>;
|
|
24122
|
+
}, "strip", z.ZodTypeAny, {
|
|
24123
|
+
from: string | null;
|
|
24124
|
+
to: string | null;
|
|
24125
|
+
field: string;
|
|
24126
|
+
}, {
|
|
24127
|
+
from: string | null;
|
|
24128
|
+
to: string | null;
|
|
24129
|
+
field: string;
|
|
24130
|
+
}>, "many">>;
|
|
24075
24131
|
}, "strip", z.ZodTypeAny, {
|
|
24076
24132
|
message: string;
|
|
24077
24133
|
warning_code: "code_modified_external_to_seam";
|
|
24078
24134
|
created_at?: string | undefined;
|
|
24135
|
+
change_type?: "modified" | "removed" | undefined;
|
|
24136
|
+
modified_fields?: {
|
|
24137
|
+
from: string | null;
|
|
24138
|
+
to: string | null;
|
|
24139
|
+
field: string;
|
|
24140
|
+
}[] | undefined;
|
|
24079
24141
|
}, {
|
|
24080
24142
|
message: string;
|
|
24081
24143
|
warning_code: "code_modified_external_to_seam";
|
|
24082
24144
|
created_at?: string | undefined;
|
|
24145
|
+
change_type?: "modified" | "removed" | undefined;
|
|
24146
|
+
modified_fields?: {
|
|
24147
|
+
from: string | null;
|
|
24148
|
+
to: string | null;
|
|
24149
|
+
field: string;
|
|
24150
|
+
}[] | undefined;
|
|
24083
24151
|
}>, z.ZodObject<{
|
|
24084
24152
|
message: z.ZodString;
|
|
24085
24153
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -24174,6 +24242,19 @@ export declare const batch: z.ZodObject<{
|
|
|
24174
24242
|
}>, z.ZodObject<{
|
|
24175
24243
|
message: z.ZodString;
|
|
24176
24244
|
created_at: z.ZodOptional<z.ZodString>;
|
|
24245
|
+
} & {
|
|
24246
|
+
warning_code: z.ZodLiteral<"access_code_inactive">;
|
|
24247
|
+
}, "strip", z.ZodTypeAny, {
|
|
24248
|
+
message: string;
|
|
24249
|
+
warning_code: "access_code_inactive";
|
|
24250
|
+
created_at?: string | undefined;
|
|
24251
|
+
}, {
|
|
24252
|
+
message: string;
|
|
24253
|
+
warning_code: "access_code_inactive";
|
|
24254
|
+
created_at?: string | undefined;
|
|
24255
|
+
}>, z.ZodObject<{
|
|
24256
|
+
message: z.ZodString;
|
|
24257
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
24177
24258
|
} & {
|
|
24178
24259
|
warning_code: z.ZodLiteral<"ultraloq_access_code_disabled">;
|
|
24179
24260
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24540,6 +24621,12 @@ export declare const batch: z.ZodObject<{
|
|
|
24540
24621
|
error_code: "code_modified_external_to_seam";
|
|
24541
24622
|
is_access_code_error: true;
|
|
24542
24623
|
created_at?: string | undefined;
|
|
24624
|
+
change_type?: "modified" | "removed" | undefined;
|
|
24625
|
+
modified_fields?: {
|
|
24626
|
+
from: string | null;
|
|
24627
|
+
to: string | null;
|
|
24628
|
+
field: string;
|
|
24629
|
+
}[] | undefined;
|
|
24543
24630
|
} | {
|
|
24544
24631
|
message: string;
|
|
24545
24632
|
error_code: "failed_to_set_on_device";
|
|
@@ -24567,6 +24654,11 @@ export declare const batch: z.ZodObject<{
|
|
|
24567
24654
|
error_code: "no_space_for_access_code_on_device";
|
|
24568
24655
|
is_access_code_error: true;
|
|
24569
24656
|
created_at?: string | undefined;
|
|
24657
|
+
} | {
|
|
24658
|
+
message: string;
|
|
24659
|
+
error_code: "access_code_state_unconfirmed";
|
|
24660
|
+
is_access_code_error: true;
|
|
24661
|
+
created_at?: string | undefined;
|
|
24570
24662
|
} | {
|
|
24571
24663
|
message: string;
|
|
24572
24664
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -24640,6 +24732,12 @@ export declare const batch: z.ZodObject<{
|
|
|
24640
24732
|
message: string;
|
|
24641
24733
|
warning_code: "code_modified_external_to_seam";
|
|
24642
24734
|
created_at?: string | undefined;
|
|
24735
|
+
change_type?: "modified" | "removed" | undefined;
|
|
24736
|
+
modified_fields?: {
|
|
24737
|
+
from: string | null;
|
|
24738
|
+
to: string | null;
|
|
24739
|
+
field: string;
|
|
24740
|
+
}[] | undefined;
|
|
24643
24741
|
} | {
|
|
24644
24742
|
message: string;
|
|
24645
24743
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -24676,6 +24774,10 @@ export declare const batch: z.ZodObject<{
|
|
|
24676
24774
|
message: string;
|
|
24677
24775
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
24678
24776
|
created_at?: string | undefined;
|
|
24777
|
+
} | {
|
|
24778
|
+
message: string;
|
|
24779
|
+
warning_code: "access_code_inactive";
|
|
24780
|
+
created_at?: string | undefined;
|
|
24679
24781
|
} | {
|
|
24680
24782
|
message: string;
|
|
24681
24783
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -24879,6 +24981,12 @@ export declare const batch: z.ZodObject<{
|
|
|
24879
24981
|
error_code: "code_modified_external_to_seam";
|
|
24880
24982
|
is_access_code_error: true;
|
|
24881
24983
|
created_at?: string | undefined;
|
|
24984
|
+
change_type?: "modified" | "removed" | undefined;
|
|
24985
|
+
modified_fields?: {
|
|
24986
|
+
from: string | null;
|
|
24987
|
+
to: string | null;
|
|
24988
|
+
field: string;
|
|
24989
|
+
}[] | undefined;
|
|
24882
24990
|
} | {
|
|
24883
24991
|
message: string;
|
|
24884
24992
|
error_code: "failed_to_set_on_device";
|
|
@@ -24906,6 +25014,11 @@ export declare const batch: z.ZodObject<{
|
|
|
24906
25014
|
error_code: "no_space_for_access_code_on_device";
|
|
24907
25015
|
is_access_code_error: true;
|
|
24908
25016
|
created_at?: string | undefined;
|
|
25017
|
+
} | {
|
|
25018
|
+
message: string;
|
|
25019
|
+
error_code: "access_code_state_unconfirmed";
|
|
25020
|
+
is_access_code_error: true;
|
|
25021
|
+
created_at?: string | undefined;
|
|
24909
25022
|
} | {
|
|
24910
25023
|
message: string;
|
|
24911
25024
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -24979,6 +25092,12 @@ export declare const batch: z.ZodObject<{
|
|
|
24979
25092
|
message: string;
|
|
24980
25093
|
warning_code: "code_modified_external_to_seam";
|
|
24981
25094
|
created_at?: string | undefined;
|
|
25095
|
+
change_type?: "modified" | "removed" | undefined;
|
|
25096
|
+
modified_fields?: {
|
|
25097
|
+
from: string | null;
|
|
25098
|
+
to: string | null;
|
|
25099
|
+
field: string;
|
|
25100
|
+
}[] | undefined;
|
|
24982
25101
|
} | {
|
|
24983
25102
|
message: string;
|
|
24984
25103
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -25015,6 +25134,10 @@ export declare const batch: z.ZodObject<{
|
|
|
25015
25134
|
message: string;
|
|
25016
25135
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
25017
25136
|
created_at?: string | undefined;
|
|
25137
|
+
} | {
|
|
25138
|
+
message: string;
|
|
25139
|
+
warning_code: "access_code_inactive";
|
|
25140
|
+
created_at?: string | undefined;
|
|
25018
25141
|
} | {
|
|
25019
25142
|
message: string;
|
|
25020
25143
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -25229,6 +25352,22 @@ export declare const batch: z.ZodObject<{
|
|
|
25229
25352
|
message: z.ZodString;
|
|
25230
25353
|
is_access_code_error: z.ZodLiteral<true>;
|
|
25231
25354
|
created_at: z.ZodOptional<z.ZodString>;
|
|
25355
|
+
} & {
|
|
25356
|
+
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
25357
|
+
}, "strip", z.ZodTypeAny, {
|
|
25358
|
+
message: string;
|
|
25359
|
+
error_code: "access_code_state_unconfirmed";
|
|
25360
|
+
is_access_code_error: true;
|
|
25361
|
+
created_at?: string | undefined;
|
|
25362
|
+
}, {
|
|
25363
|
+
message: string;
|
|
25364
|
+
error_code: "access_code_state_unconfirmed";
|
|
25365
|
+
is_access_code_error: true;
|
|
25366
|
+
created_at?: string | undefined;
|
|
25367
|
+
}>, z.ZodObject<{
|
|
25368
|
+
message: z.ZodString;
|
|
25369
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
25370
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
25232
25371
|
} & {
|
|
25233
25372
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
25234
25373
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25263,16 +25402,42 @@ export declare const batch: z.ZodObject<{
|
|
|
25263
25402
|
created_at: z.ZodOptional<z.ZodString>;
|
|
25264
25403
|
} & {
|
|
25265
25404
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
25405
|
+
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
25406
|
+
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25407
|
+
field: z.ZodString;
|
|
25408
|
+
from: z.ZodNullable<z.ZodString>;
|
|
25409
|
+
to: z.ZodNullable<z.ZodString>;
|
|
25410
|
+
}, "strip", z.ZodTypeAny, {
|
|
25411
|
+
from: string | null;
|
|
25412
|
+
to: string | null;
|
|
25413
|
+
field: string;
|
|
25414
|
+
}, {
|
|
25415
|
+
from: string | null;
|
|
25416
|
+
to: string | null;
|
|
25417
|
+
field: string;
|
|
25418
|
+
}>, "many">>;
|
|
25266
25419
|
}, "strip", z.ZodTypeAny, {
|
|
25267
25420
|
message: string;
|
|
25268
25421
|
error_code: "code_modified_external_to_seam";
|
|
25269
25422
|
is_access_code_error: true;
|
|
25270
25423
|
created_at?: string | undefined;
|
|
25424
|
+
change_type?: "modified" | "removed" | undefined;
|
|
25425
|
+
modified_fields?: {
|
|
25426
|
+
from: string | null;
|
|
25427
|
+
to: string | null;
|
|
25428
|
+
field: string;
|
|
25429
|
+
}[] | undefined;
|
|
25271
25430
|
}, {
|
|
25272
25431
|
message: string;
|
|
25273
25432
|
error_code: "code_modified_external_to_seam";
|
|
25274
25433
|
is_access_code_error: true;
|
|
25275
25434
|
created_at?: string | undefined;
|
|
25435
|
+
change_type?: "modified" | "removed" | undefined;
|
|
25436
|
+
modified_fields?: {
|
|
25437
|
+
from: string | null;
|
|
25438
|
+
to: string | null;
|
|
25439
|
+
field: string;
|
|
25440
|
+
}[] | undefined;
|
|
25276
25441
|
}>, z.ZodObject<{
|
|
25277
25442
|
message: z.ZodString;
|
|
25278
25443
|
is_access_code_error: z.ZodLiteral<true>;
|
|
@@ -25826,14 +25991,40 @@ export declare const batch: z.ZodObject<{
|
|
|
25826
25991
|
created_at: z.ZodOptional<z.ZodString>;
|
|
25827
25992
|
} & {
|
|
25828
25993
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
25994
|
+
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
25995
|
+
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25996
|
+
field: z.ZodString;
|
|
25997
|
+
from: z.ZodNullable<z.ZodString>;
|
|
25998
|
+
to: z.ZodNullable<z.ZodString>;
|
|
25999
|
+
}, "strip", z.ZodTypeAny, {
|
|
26000
|
+
from: string | null;
|
|
26001
|
+
to: string | null;
|
|
26002
|
+
field: string;
|
|
26003
|
+
}, {
|
|
26004
|
+
from: string | null;
|
|
26005
|
+
to: string | null;
|
|
26006
|
+
field: string;
|
|
26007
|
+
}>, "many">>;
|
|
25829
26008
|
}, "strip", z.ZodTypeAny, {
|
|
25830
26009
|
message: string;
|
|
25831
26010
|
warning_code: "code_modified_external_to_seam";
|
|
25832
26011
|
created_at?: string | undefined;
|
|
26012
|
+
change_type?: "modified" | "removed" | undefined;
|
|
26013
|
+
modified_fields?: {
|
|
26014
|
+
from: string | null;
|
|
26015
|
+
to: string | null;
|
|
26016
|
+
field: string;
|
|
26017
|
+
}[] | undefined;
|
|
25833
26018
|
}, {
|
|
25834
26019
|
message: string;
|
|
25835
26020
|
warning_code: "code_modified_external_to_seam";
|
|
25836
26021
|
created_at?: string | undefined;
|
|
26022
|
+
change_type?: "modified" | "removed" | undefined;
|
|
26023
|
+
modified_fields?: {
|
|
26024
|
+
from: string | null;
|
|
26025
|
+
to: string | null;
|
|
26026
|
+
field: string;
|
|
26027
|
+
}[] | undefined;
|
|
25837
26028
|
}>, z.ZodObject<{
|
|
25838
26029
|
message: z.ZodString;
|
|
25839
26030
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -25928,6 +26119,19 @@ export declare const batch: z.ZodObject<{
|
|
|
25928
26119
|
}>, z.ZodObject<{
|
|
25929
26120
|
message: z.ZodString;
|
|
25930
26121
|
created_at: z.ZodOptional<z.ZodString>;
|
|
26122
|
+
} & {
|
|
26123
|
+
warning_code: z.ZodLiteral<"access_code_inactive">;
|
|
26124
|
+
}, "strip", z.ZodTypeAny, {
|
|
26125
|
+
message: string;
|
|
26126
|
+
warning_code: "access_code_inactive";
|
|
26127
|
+
created_at?: string | undefined;
|
|
26128
|
+
}, {
|
|
26129
|
+
message: string;
|
|
26130
|
+
warning_code: "access_code_inactive";
|
|
26131
|
+
created_at?: string | undefined;
|
|
26132
|
+
}>, z.ZodObject<{
|
|
26133
|
+
message: z.ZodString;
|
|
26134
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
25931
26135
|
} & {
|
|
25932
26136
|
warning_code: z.ZodLiteral<"ultraloq_access_code_disabled">;
|
|
25933
26137
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26120,6 +26324,12 @@ export declare const batch: z.ZodObject<{
|
|
|
26120
26324
|
error_code: "code_modified_external_to_seam";
|
|
26121
26325
|
is_access_code_error: true;
|
|
26122
26326
|
created_at?: string | undefined;
|
|
26327
|
+
change_type?: "modified" | "removed" | undefined;
|
|
26328
|
+
modified_fields?: {
|
|
26329
|
+
from: string | null;
|
|
26330
|
+
to: string | null;
|
|
26331
|
+
field: string;
|
|
26332
|
+
}[] | undefined;
|
|
26123
26333
|
} | {
|
|
26124
26334
|
message: string;
|
|
26125
26335
|
error_code: "failed_to_set_on_device";
|
|
@@ -26147,6 +26357,11 @@ export declare const batch: z.ZodObject<{
|
|
|
26147
26357
|
error_code: "no_space_for_access_code_on_device";
|
|
26148
26358
|
is_access_code_error: true;
|
|
26149
26359
|
created_at?: string | undefined;
|
|
26360
|
+
} | {
|
|
26361
|
+
message: string;
|
|
26362
|
+
error_code: "access_code_state_unconfirmed";
|
|
26363
|
+
is_access_code_error: true;
|
|
26364
|
+
created_at?: string | undefined;
|
|
26150
26365
|
} | {
|
|
26151
26366
|
message: string;
|
|
26152
26367
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -26220,6 +26435,12 @@ export declare const batch: z.ZodObject<{
|
|
|
26220
26435
|
message: string;
|
|
26221
26436
|
warning_code: "code_modified_external_to_seam";
|
|
26222
26437
|
created_at?: string | undefined;
|
|
26438
|
+
change_type?: "modified" | "removed" | undefined;
|
|
26439
|
+
modified_fields?: {
|
|
26440
|
+
from: string | null;
|
|
26441
|
+
to: string | null;
|
|
26442
|
+
field: string;
|
|
26443
|
+
}[] | undefined;
|
|
26223
26444
|
} | {
|
|
26224
26445
|
message: string;
|
|
26225
26446
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -26256,6 +26477,10 @@ export declare const batch: z.ZodObject<{
|
|
|
26256
26477
|
message: string;
|
|
26257
26478
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
26258
26479
|
created_at?: string | undefined;
|
|
26480
|
+
} | {
|
|
26481
|
+
message: string;
|
|
26482
|
+
warning_code: "access_code_inactive";
|
|
26483
|
+
created_at?: string | undefined;
|
|
26259
26484
|
} | {
|
|
26260
26485
|
message: string;
|
|
26261
26486
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -26406,6 +26631,12 @@ export declare const batch: z.ZodObject<{
|
|
|
26406
26631
|
error_code: "code_modified_external_to_seam";
|
|
26407
26632
|
is_access_code_error: true;
|
|
26408
26633
|
created_at?: string | undefined;
|
|
26634
|
+
change_type?: "modified" | "removed" | undefined;
|
|
26635
|
+
modified_fields?: {
|
|
26636
|
+
from: string | null;
|
|
26637
|
+
to: string | null;
|
|
26638
|
+
field: string;
|
|
26639
|
+
}[] | undefined;
|
|
26409
26640
|
} | {
|
|
26410
26641
|
message: string;
|
|
26411
26642
|
error_code: "failed_to_set_on_device";
|
|
@@ -26433,6 +26664,11 @@ export declare const batch: z.ZodObject<{
|
|
|
26433
26664
|
error_code: "no_space_for_access_code_on_device";
|
|
26434
26665
|
is_access_code_error: true;
|
|
26435
26666
|
created_at?: string | undefined;
|
|
26667
|
+
} | {
|
|
26668
|
+
message: string;
|
|
26669
|
+
error_code: "access_code_state_unconfirmed";
|
|
26670
|
+
is_access_code_error: true;
|
|
26671
|
+
created_at?: string | undefined;
|
|
26436
26672
|
} | {
|
|
26437
26673
|
message: string;
|
|
26438
26674
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -26506,6 +26742,12 @@ export declare const batch: z.ZodObject<{
|
|
|
26506
26742
|
message: string;
|
|
26507
26743
|
warning_code: "code_modified_external_to_seam";
|
|
26508
26744
|
created_at?: string | undefined;
|
|
26745
|
+
change_type?: "modified" | "removed" | undefined;
|
|
26746
|
+
modified_fields?: {
|
|
26747
|
+
from: string | null;
|
|
26748
|
+
to: string | null;
|
|
26749
|
+
field: string;
|
|
26750
|
+
}[] | undefined;
|
|
26509
26751
|
} | {
|
|
26510
26752
|
message: string;
|
|
26511
26753
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -26542,6 +26784,10 @@ export declare const batch: z.ZodObject<{
|
|
|
26542
26784
|
message: string;
|
|
26543
26785
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
26544
26786
|
created_at?: string | undefined;
|
|
26787
|
+
} | {
|
|
26788
|
+
message: string;
|
|
26789
|
+
warning_code: "access_code_inactive";
|
|
26790
|
+
created_at?: string | undefined;
|
|
26545
26791
|
} | {
|
|
26546
26792
|
message: string;
|
|
26547
26793
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -31295,6 +31541,12 @@ export declare const batch: z.ZodObject<{
|
|
|
31295
31541
|
error_code: "code_modified_external_to_seam";
|
|
31296
31542
|
is_access_code_error: true;
|
|
31297
31543
|
created_at?: string | undefined;
|
|
31544
|
+
change_type?: "modified" | "removed" | undefined;
|
|
31545
|
+
modified_fields?: {
|
|
31546
|
+
from: string | null;
|
|
31547
|
+
to: string | null;
|
|
31548
|
+
field: string;
|
|
31549
|
+
}[] | undefined;
|
|
31298
31550
|
} | {
|
|
31299
31551
|
message: string;
|
|
31300
31552
|
error_code: "failed_to_set_on_device";
|
|
@@ -31322,6 +31574,11 @@ export declare const batch: z.ZodObject<{
|
|
|
31322
31574
|
error_code: "no_space_for_access_code_on_device";
|
|
31323
31575
|
is_access_code_error: true;
|
|
31324
31576
|
created_at?: string | undefined;
|
|
31577
|
+
} | {
|
|
31578
|
+
message: string;
|
|
31579
|
+
error_code: "access_code_state_unconfirmed";
|
|
31580
|
+
is_access_code_error: true;
|
|
31581
|
+
created_at?: string | undefined;
|
|
31325
31582
|
} | {
|
|
31326
31583
|
message: string;
|
|
31327
31584
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -31395,6 +31652,12 @@ export declare const batch: z.ZodObject<{
|
|
|
31395
31652
|
message: string;
|
|
31396
31653
|
warning_code: "code_modified_external_to_seam";
|
|
31397
31654
|
created_at?: string | undefined;
|
|
31655
|
+
change_type?: "modified" | "removed" | undefined;
|
|
31656
|
+
modified_fields?: {
|
|
31657
|
+
from: string | null;
|
|
31658
|
+
to: string | null;
|
|
31659
|
+
field: string;
|
|
31660
|
+
}[] | undefined;
|
|
31398
31661
|
} | {
|
|
31399
31662
|
message: string;
|
|
31400
31663
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -31431,6 +31694,10 @@ export declare const batch: z.ZodObject<{
|
|
|
31431
31694
|
message: string;
|
|
31432
31695
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
31433
31696
|
created_at?: string | undefined;
|
|
31697
|
+
} | {
|
|
31698
|
+
message: string;
|
|
31699
|
+
warning_code: "access_code_inactive";
|
|
31700
|
+
created_at?: string | undefined;
|
|
31434
31701
|
} | {
|
|
31435
31702
|
message: string;
|
|
31436
31703
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -31635,6 +31902,12 @@ export declare const batch: z.ZodObject<{
|
|
|
31635
31902
|
error_code: "code_modified_external_to_seam";
|
|
31636
31903
|
is_access_code_error: true;
|
|
31637
31904
|
created_at?: string | undefined;
|
|
31905
|
+
change_type?: "modified" | "removed" | undefined;
|
|
31906
|
+
modified_fields?: {
|
|
31907
|
+
from: string | null;
|
|
31908
|
+
to: string | null;
|
|
31909
|
+
field: string;
|
|
31910
|
+
}[] | undefined;
|
|
31638
31911
|
} | {
|
|
31639
31912
|
message: string;
|
|
31640
31913
|
error_code: "failed_to_set_on_device";
|
|
@@ -31662,6 +31935,11 @@ export declare const batch: z.ZodObject<{
|
|
|
31662
31935
|
error_code: "no_space_for_access_code_on_device";
|
|
31663
31936
|
is_access_code_error: true;
|
|
31664
31937
|
created_at?: string | undefined;
|
|
31938
|
+
} | {
|
|
31939
|
+
message: string;
|
|
31940
|
+
error_code: "access_code_state_unconfirmed";
|
|
31941
|
+
is_access_code_error: true;
|
|
31942
|
+
created_at?: string | undefined;
|
|
31665
31943
|
} | {
|
|
31666
31944
|
message: string;
|
|
31667
31945
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -31735,6 +32013,12 @@ export declare const batch: z.ZodObject<{
|
|
|
31735
32013
|
message: string;
|
|
31736
32014
|
warning_code: "code_modified_external_to_seam";
|
|
31737
32015
|
created_at?: string | undefined;
|
|
32016
|
+
change_type?: "modified" | "removed" | undefined;
|
|
32017
|
+
modified_fields?: {
|
|
32018
|
+
from: string | null;
|
|
32019
|
+
to: string | null;
|
|
32020
|
+
field: string;
|
|
32021
|
+
}[] | undefined;
|
|
31738
32022
|
} | {
|
|
31739
32023
|
message: string;
|
|
31740
32024
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -31771,6 +32055,10 @@ export declare const batch: z.ZodObject<{
|
|
|
31771
32055
|
message: string;
|
|
31772
32056
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
31773
32057
|
created_at?: string | undefined;
|
|
32058
|
+
} | {
|
|
32059
|
+
message: string;
|
|
32060
|
+
warning_code: "access_code_inactive";
|
|
32061
|
+
created_at?: string | undefined;
|
|
31774
32062
|
} | {
|
|
31775
32063
|
message: string;
|
|
31776
32064
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -36397,6 +36685,12 @@ export declare const batch: z.ZodObject<{
|
|
|
36397
36685
|
error_code: "code_modified_external_to_seam";
|
|
36398
36686
|
is_access_code_error: true;
|
|
36399
36687
|
created_at?: string | undefined;
|
|
36688
|
+
change_type?: "modified" | "removed" | undefined;
|
|
36689
|
+
modified_fields?: {
|
|
36690
|
+
from: string | null;
|
|
36691
|
+
to: string | null;
|
|
36692
|
+
field: string;
|
|
36693
|
+
}[] | undefined;
|
|
36400
36694
|
} | {
|
|
36401
36695
|
message: string;
|
|
36402
36696
|
error_code: "failed_to_set_on_device";
|
|
@@ -36424,6 +36718,11 @@ export declare const batch: z.ZodObject<{
|
|
|
36424
36718
|
error_code: "no_space_for_access_code_on_device";
|
|
36425
36719
|
is_access_code_error: true;
|
|
36426
36720
|
created_at?: string | undefined;
|
|
36721
|
+
} | {
|
|
36722
|
+
message: string;
|
|
36723
|
+
error_code: "access_code_state_unconfirmed";
|
|
36724
|
+
is_access_code_error: true;
|
|
36725
|
+
created_at?: string | undefined;
|
|
36427
36726
|
} | {
|
|
36428
36727
|
message: string;
|
|
36429
36728
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -36497,6 +36796,12 @@ export declare const batch: z.ZodObject<{
|
|
|
36497
36796
|
message: string;
|
|
36498
36797
|
warning_code: "code_modified_external_to_seam";
|
|
36499
36798
|
created_at?: string | undefined;
|
|
36799
|
+
change_type?: "modified" | "removed" | undefined;
|
|
36800
|
+
modified_fields?: {
|
|
36801
|
+
from: string | null;
|
|
36802
|
+
to: string | null;
|
|
36803
|
+
field: string;
|
|
36804
|
+
}[] | undefined;
|
|
36500
36805
|
} | {
|
|
36501
36806
|
message: string;
|
|
36502
36807
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -36533,6 +36838,10 @@ export declare const batch: z.ZodObject<{
|
|
|
36533
36838
|
message: string;
|
|
36534
36839
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
36535
36840
|
created_at?: string | undefined;
|
|
36841
|
+
} | {
|
|
36842
|
+
message: string;
|
|
36843
|
+
warning_code: "access_code_inactive";
|
|
36844
|
+
created_at?: string | undefined;
|
|
36536
36845
|
} | {
|
|
36537
36846
|
message: string;
|
|
36538
36847
|
warning_code: "ultraloq_access_code_disabled";
|
|
@@ -36737,6 +37046,12 @@ export declare const batch: z.ZodObject<{
|
|
|
36737
37046
|
error_code: "code_modified_external_to_seam";
|
|
36738
37047
|
is_access_code_error: true;
|
|
36739
37048
|
created_at?: string | undefined;
|
|
37049
|
+
change_type?: "modified" | "removed" | undefined;
|
|
37050
|
+
modified_fields?: {
|
|
37051
|
+
from: string | null;
|
|
37052
|
+
to: string | null;
|
|
37053
|
+
field: string;
|
|
37054
|
+
}[] | undefined;
|
|
36740
37055
|
} | {
|
|
36741
37056
|
message: string;
|
|
36742
37057
|
error_code: "failed_to_set_on_device";
|
|
@@ -36764,6 +37079,11 @@ export declare const batch: z.ZodObject<{
|
|
|
36764
37079
|
error_code: "no_space_for_access_code_on_device";
|
|
36765
37080
|
is_access_code_error: true;
|
|
36766
37081
|
created_at?: string | undefined;
|
|
37082
|
+
} | {
|
|
37083
|
+
message: string;
|
|
37084
|
+
error_code: "access_code_state_unconfirmed";
|
|
37085
|
+
is_access_code_error: true;
|
|
37086
|
+
created_at?: string | undefined;
|
|
36767
37087
|
} | {
|
|
36768
37088
|
message: string;
|
|
36769
37089
|
error_code: "kwikset_unable_to_confirm_code";
|
|
@@ -36837,6 +37157,12 @@ export declare const batch: z.ZodObject<{
|
|
|
36837
37157
|
message: string;
|
|
36838
37158
|
warning_code: "code_modified_external_to_seam";
|
|
36839
37159
|
created_at?: string | undefined;
|
|
37160
|
+
change_type?: "modified" | "removed" | undefined;
|
|
37161
|
+
modified_fields?: {
|
|
37162
|
+
from: string | null;
|
|
37163
|
+
to: string | null;
|
|
37164
|
+
field: string;
|
|
37165
|
+
}[] | undefined;
|
|
36840
37166
|
} | {
|
|
36841
37167
|
message: string;
|
|
36842
37168
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -36873,6 +37199,10 @@ export declare const batch: z.ZodObject<{
|
|
|
36873
37199
|
message: string;
|
|
36874
37200
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
36875
37201
|
created_at?: string | undefined;
|
|
37202
|
+
} | {
|
|
37203
|
+
message: string;
|
|
37204
|
+
warning_code: "access_code_inactive";
|
|
37205
|
+
created_at?: string | undefined;
|
|
36876
37206
|
} | {
|
|
36877
37207
|
message: string;
|
|
36878
37208
|
warning_code: "ultraloq_access_code_disabled";
|