@seamapi/types 1.891.0 → 1.893.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 +191 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +660 -2
- package/dist/index.cjs +191 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +162 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +20 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -2
- package/lib/seam/connect/models/devices/device-provider.js +3 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +50 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +8 -8
- package/lib/seam/connect/models/user-identities/user-identity.js +1 -3
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +168 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +451 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +26 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +1 -3
- package/src/lib/seam/connect/openapi.ts +202 -0
- package/src/lib/seam/connect/route-types.ts +494 -0
|
@@ -2365,6 +2365,25 @@ export declare const access_code: z.ZodObject<{
|
|
|
2365
2365
|
};
|
|
2366
2366
|
is_connected_account_error?: boolean | undefined;
|
|
2367
2367
|
is_bridge_error?: boolean | undefined;
|
|
2368
|
+
}> | z.ZodObject<{
|
|
2369
|
+
created_at: z.ZodString;
|
|
2370
|
+
message: z.ZodString;
|
|
2371
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
2372
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
2373
|
+
} & {
|
|
2374
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
2375
|
+
}, "strip", z.ZodTypeAny, {
|
|
2376
|
+
message: string;
|
|
2377
|
+
created_at: string;
|
|
2378
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2379
|
+
is_connected_account_error?: boolean | undefined;
|
|
2380
|
+
is_bridge_error?: boolean | undefined;
|
|
2381
|
+
}, {
|
|
2382
|
+
message: string;
|
|
2383
|
+
created_at: string;
|
|
2384
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2385
|
+
is_connected_account_error?: boolean | undefined;
|
|
2386
|
+
is_bridge_error?: boolean | undefined;
|
|
2368
2387
|
}> | z.ZodObject<{
|
|
2369
2388
|
message: z.ZodString;
|
|
2370
2389
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -3086,6 +3105,12 @@ export declare const access_code: z.ZodObject<{
|
|
|
3086
3105
|
};
|
|
3087
3106
|
is_connected_account_error?: boolean | undefined;
|
|
3088
3107
|
is_bridge_error?: boolean | undefined;
|
|
3108
|
+
} | {
|
|
3109
|
+
message: string;
|
|
3110
|
+
created_at: string;
|
|
3111
|
+
error_code: "dormakaba_sites_disconnected";
|
|
3112
|
+
is_connected_account_error?: boolean | undefined;
|
|
3113
|
+
is_bridge_error?: boolean | undefined;
|
|
3089
3114
|
} | {
|
|
3090
3115
|
message: string;
|
|
3091
3116
|
created_at: string;
|
|
@@ -3460,6 +3485,12 @@ export declare const access_code: z.ZodObject<{
|
|
|
3460
3485
|
};
|
|
3461
3486
|
is_connected_account_error?: boolean | undefined;
|
|
3462
3487
|
is_bridge_error?: boolean | undefined;
|
|
3488
|
+
} | {
|
|
3489
|
+
message: string;
|
|
3490
|
+
created_at: string;
|
|
3491
|
+
error_code: "dormakaba_sites_disconnected";
|
|
3492
|
+
is_connected_account_error?: boolean | undefined;
|
|
3493
|
+
is_bridge_error?: boolean | undefined;
|
|
3463
3494
|
} | {
|
|
3464
3495
|
message: string;
|
|
3465
3496
|
created_at: string;
|
|
@@ -513,6 +513,25 @@ export declare const unmanaged_access_code: z.ZodObject<{
|
|
|
513
513
|
};
|
|
514
514
|
is_connected_account_error?: boolean | undefined;
|
|
515
515
|
is_bridge_error?: boolean | undefined;
|
|
516
|
+
}> | z.ZodObject<{
|
|
517
|
+
created_at: z.ZodString;
|
|
518
|
+
message: z.ZodString;
|
|
519
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
520
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
521
|
+
} & {
|
|
522
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
523
|
+
}, "strip", z.ZodTypeAny, {
|
|
524
|
+
message: string;
|
|
525
|
+
created_at: string;
|
|
526
|
+
error_code: "dormakaba_sites_disconnected";
|
|
527
|
+
is_connected_account_error?: boolean | undefined;
|
|
528
|
+
is_bridge_error?: boolean | undefined;
|
|
529
|
+
}, {
|
|
530
|
+
message: string;
|
|
531
|
+
created_at: string;
|
|
532
|
+
error_code: "dormakaba_sites_disconnected";
|
|
533
|
+
is_connected_account_error?: boolean | undefined;
|
|
534
|
+
is_bridge_error?: boolean | undefined;
|
|
516
535
|
}> | z.ZodObject<{
|
|
517
536
|
message: z.ZodString;
|
|
518
537
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -1060,6 +1079,12 @@ export declare const unmanaged_access_code: z.ZodObject<{
|
|
|
1060
1079
|
};
|
|
1061
1080
|
is_connected_account_error?: boolean | undefined;
|
|
1062
1081
|
is_bridge_error?: boolean | undefined;
|
|
1082
|
+
} | {
|
|
1083
|
+
message: string;
|
|
1084
|
+
created_at: string;
|
|
1085
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1086
|
+
is_connected_account_error?: boolean | undefined;
|
|
1087
|
+
is_bridge_error?: boolean | undefined;
|
|
1063
1088
|
} | {
|
|
1064
1089
|
message: string;
|
|
1065
1090
|
created_at: string;
|
|
@@ -1381,6 +1406,12 @@ export declare const unmanaged_access_code: z.ZodObject<{
|
|
|
1381
1406
|
};
|
|
1382
1407
|
is_connected_account_error?: boolean | undefined;
|
|
1383
1408
|
is_bridge_error?: boolean | undefined;
|
|
1409
|
+
} | {
|
|
1410
|
+
message: string;
|
|
1411
|
+
created_at: string;
|
|
1412
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1413
|
+
is_connected_account_error?: boolean | undefined;
|
|
1414
|
+
is_bridge_error?: boolean | undefined;
|
|
1384
1415
|
} | {
|
|
1385
1416
|
message: string;
|
|
1386
1417
|
created_at: string;
|
|
@@ -107,6 +107,26 @@ export declare const salto_ks_subscription_limit_exceeded: z.ZodObject<{
|
|
|
107
107
|
is_connected_account_error?: boolean | undefined;
|
|
108
108
|
is_bridge_error?: boolean | undefined;
|
|
109
109
|
}>;
|
|
110
|
+
export declare const dormakaba_sites_disconnected: z.ZodObject<{
|
|
111
|
+
created_at: z.ZodString;
|
|
112
|
+
message: z.ZodString;
|
|
113
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
114
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
115
|
+
} & {
|
|
116
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
117
|
+
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
message: string;
|
|
119
|
+
created_at: string;
|
|
120
|
+
error_code: "dormakaba_sites_disconnected";
|
|
121
|
+
is_connected_account_error?: boolean | undefined;
|
|
122
|
+
is_bridge_error?: boolean | undefined;
|
|
123
|
+
}, {
|
|
124
|
+
message: string;
|
|
125
|
+
created_at: string;
|
|
126
|
+
error_code: "dormakaba_sites_disconnected";
|
|
127
|
+
is_connected_account_error?: boolean | undefined;
|
|
128
|
+
is_bridge_error?: boolean | undefined;
|
|
129
|
+
}>;
|
|
110
130
|
export declare const connected_account_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
111
131
|
created_at: z.ZodString;
|
|
112
132
|
message: z.ZodString;
|
|
@@ -212,6 +232,25 @@ export declare const connected_account_error: z.ZodDiscriminatedUnion<"error_cod
|
|
|
212
232
|
};
|
|
213
233
|
is_connected_account_error?: boolean | undefined;
|
|
214
234
|
is_bridge_error?: boolean | undefined;
|
|
235
|
+
}>, z.ZodObject<{
|
|
236
|
+
created_at: z.ZodString;
|
|
237
|
+
message: z.ZodString;
|
|
238
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
239
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
240
|
+
} & {
|
|
241
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
242
|
+
}, "strip", z.ZodTypeAny, {
|
|
243
|
+
message: string;
|
|
244
|
+
created_at: string;
|
|
245
|
+
error_code: "dormakaba_sites_disconnected";
|
|
246
|
+
is_connected_account_error?: boolean | undefined;
|
|
247
|
+
is_bridge_error?: boolean | undefined;
|
|
248
|
+
}, {
|
|
249
|
+
message: string;
|
|
250
|
+
created_at: string;
|
|
251
|
+
error_code: "dormakaba_sites_disconnected";
|
|
252
|
+
is_connected_account_error?: boolean | undefined;
|
|
253
|
+
is_bridge_error?: boolean | undefined;
|
|
215
254
|
}>]>;
|
|
216
255
|
export type ConnectedAccountError = z.infer<typeof connected_account_error>;
|
|
217
256
|
export type ConnectedAccountWarning = z.infer<typeof connected_account_warning>;
|
|
@@ -324,6 +363,26 @@ export declare const connected_account_error_map: z.ZodObject<{
|
|
|
324
363
|
is_connected_account_error?: boolean | undefined;
|
|
325
364
|
is_bridge_error?: boolean | undefined;
|
|
326
365
|
}>>>;
|
|
366
|
+
dormakaba_sites_disconnected: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
367
|
+
created_at: z.ZodString;
|
|
368
|
+
message: z.ZodString;
|
|
369
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
370
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
371
|
+
} & {
|
|
372
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
373
|
+
}, "strip", z.ZodTypeAny, {
|
|
374
|
+
message: string;
|
|
375
|
+
created_at: string;
|
|
376
|
+
error_code: "dormakaba_sites_disconnected";
|
|
377
|
+
is_connected_account_error?: boolean | undefined;
|
|
378
|
+
is_bridge_error?: boolean | undefined;
|
|
379
|
+
}, {
|
|
380
|
+
message: string;
|
|
381
|
+
created_at: string;
|
|
382
|
+
error_code: "dormakaba_sites_disconnected";
|
|
383
|
+
is_connected_account_error?: boolean | undefined;
|
|
384
|
+
is_bridge_error?: boolean | undefined;
|
|
385
|
+
}>>>;
|
|
327
386
|
}, "strip", z.ZodTypeAny, {
|
|
328
387
|
account_disconnected?: {
|
|
329
388
|
message: string;
|
|
@@ -354,6 +413,13 @@ export declare const connected_account_error_map: z.ZodObject<{
|
|
|
354
413
|
is_connected_account_error?: boolean | undefined;
|
|
355
414
|
is_bridge_error?: boolean | undefined;
|
|
356
415
|
} | null | undefined;
|
|
416
|
+
dormakaba_sites_disconnected?: {
|
|
417
|
+
message: string;
|
|
418
|
+
created_at: string;
|
|
419
|
+
error_code: "dormakaba_sites_disconnected";
|
|
420
|
+
is_connected_account_error?: boolean | undefined;
|
|
421
|
+
is_bridge_error?: boolean | undefined;
|
|
422
|
+
} | null | undefined;
|
|
357
423
|
}, {
|
|
358
424
|
account_disconnected?: {
|
|
359
425
|
message: string;
|
|
@@ -384,6 +450,13 @@ export declare const connected_account_error_map: z.ZodObject<{
|
|
|
384
450
|
is_connected_account_error?: boolean | undefined;
|
|
385
451
|
is_bridge_error?: boolean | undefined;
|
|
386
452
|
} | null | undefined;
|
|
453
|
+
dormakaba_sites_disconnected?: {
|
|
454
|
+
message: string;
|
|
455
|
+
created_at: string;
|
|
456
|
+
error_code: "dormakaba_sites_disconnected";
|
|
457
|
+
is_connected_account_error?: boolean | undefined;
|
|
458
|
+
is_bridge_error?: boolean | undefined;
|
|
459
|
+
} | null | undefined;
|
|
387
460
|
}>;
|
|
388
461
|
export type ConnectedAccountErrorMap = z.infer<typeof connected_account_error_map>;
|
|
389
462
|
export declare const unknown_issue_with_connected_account: z.ZodObject<{
|
|
@@ -539,6 +612,19 @@ declare const connected_account_warning: z.ZodDiscriminatedUnion<"warning_code",
|
|
|
539
612
|
message: string;
|
|
540
613
|
created_at: string;
|
|
541
614
|
warning_code: "setup_required";
|
|
615
|
+
}>, z.ZodObject<{
|
|
616
|
+
created_at: z.ZodString;
|
|
617
|
+
message: z.ZodString;
|
|
618
|
+
} & {
|
|
619
|
+
warning_code: z.ZodLiteral<"dormakaba_sites_unapproved">;
|
|
620
|
+
}, "strip", z.ZodTypeAny, {
|
|
621
|
+
message: string;
|
|
622
|
+
created_at: string;
|
|
623
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
624
|
+
}, {
|
|
625
|
+
message: string;
|
|
626
|
+
created_at: string;
|
|
627
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
542
628
|
}>]>;
|
|
543
629
|
export declare const connected_account_warning_map: z.ZodObject<{
|
|
544
630
|
scheduled_maintenance_window: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -687,6 +773,20 @@ export declare const connected_account_warning_map: z.ZodObject<{
|
|
|
687
773
|
created_at: string;
|
|
688
774
|
warning_code: "setup_required";
|
|
689
775
|
}>>>;
|
|
776
|
+
dormakaba_sites_unapproved: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
777
|
+
created_at: z.ZodString;
|
|
778
|
+
message: z.ZodString;
|
|
779
|
+
} & {
|
|
780
|
+
warning_code: z.ZodLiteral<"dormakaba_sites_unapproved">;
|
|
781
|
+
}, "strip", z.ZodTypeAny, {
|
|
782
|
+
message: string;
|
|
783
|
+
created_at: string;
|
|
784
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
785
|
+
}, {
|
|
786
|
+
message: string;
|
|
787
|
+
created_at: string;
|
|
788
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
789
|
+
}>>>;
|
|
690
790
|
}, "strip", z.ZodTypeAny, {
|
|
691
791
|
scheduled_maintenance_window?: {
|
|
692
792
|
message: string;
|
|
@@ -731,6 +831,11 @@ export declare const connected_account_warning_map: z.ZodObject<{
|
|
|
731
831
|
created_at: string;
|
|
732
832
|
warning_code: "setup_required";
|
|
733
833
|
} | null | undefined;
|
|
834
|
+
dormakaba_sites_unapproved?: {
|
|
835
|
+
message: string;
|
|
836
|
+
created_at: string;
|
|
837
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
838
|
+
} | null | undefined;
|
|
734
839
|
}, {
|
|
735
840
|
scheduled_maintenance_window?: {
|
|
736
841
|
message: string;
|
|
@@ -775,6 +880,11 @@ export declare const connected_account_warning_map: z.ZodObject<{
|
|
|
775
880
|
created_at: string;
|
|
776
881
|
warning_code: "setup_required";
|
|
777
882
|
} | null | undefined;
|
|
883
|
+
dormakaba_sites_unapproved?: {
|
|
884
|
+
message: string;
|
|
885
|
+
created_at: string;
|
|
886
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
887
|
+
} | null | undefined;
|
|
778
888
|
}>;
|
|
779
889
|
export type ConnectedAccountWarningMap = z.infer<typeof connected_account_warning_map>;
|
|
780
890
|
export declare const connected_account: z.ZodObject<{
|
|
@@ -908,6 +1018,25 @@ export declare const connected_account: z.ZodObject<{
|
|
|
908
1018
|
};
|
|
909
1019
|
is_connected_account_error?: boolean | undefined;
|
|
910
1020
|
is_bridge_error?: boolean | undefined;
|
|
1021
|
+
}>, z.ZodObject<{
|
|
1022
|
+
created_at: z.ZodString;
|
|
1023
|
+
message: z.ZodString;
|
|
1024
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
1025
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
1026
|
+
} & {
|
|
1027
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
1028
|
+
}, "strip", z.ZodTypeAny, {
|
|
1029
|
+
message: string;
|
|
1030
|
+
created_at: string;
|
|
1031
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1032
|
+
is_connected_account_error?: boolean | undefined;
|
|
1033
|
+
is_bridge_error?: boolean | undefined;
|
|
1034
|
+
}, {
|
|
1035
|
+
message: string;
|
|
1036
|
+
created_at: string;
|
|
1037
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1038
|
+
is_connected_account_error?: boolean | undefined;
|
|
1039
|
+
is_bridge_error?: boolean | undefined;
|
|
911
1040
|
}>]>, "many">;
|
|
912
1041
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
913
1042
|
created_at: z.ZodString;
|
|
@@ -1048,6 +1177,19 @@ export declare const connected_account: z.ZodObject<{
|
|
|
1048
1177
|
message: string;
|
|
1049
1178
|
created_at: string;
|
|
1050
1179
|
warning_code: "setup_required";
|
|
1180
|
+
}>, z.ZodObject<{
|
|
1181
|
+
created_at: z.ZodString;
|
|
1182
|
+
message: z.ZodString;
|
|
1183
|
+
} & {
|
|
1184
|
+
warning_code: z.ZodLiteral<"dormakaba_sites_unapproved">;
|
|
1185
|
+
}, "strip", z.ZodTypeAny, {
|
|
1186
|
+
message: string;
|
|
1187
|
+
created_at: string;
|
|
1188
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
1189
|
+
}, {
|
|
1190
|
+
message: string;
|
|
1191
|
+
created_at: string;
|
|
1192
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
1051
1193
|
}>]>, "many">;
|
|
1052
1194
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
1053
1195
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
@@ -1086,6 +1228,12 @@ export declare const connected_account: z.ZodObject<{
|
|
|
1086
1228
|
};
|
|
1087
1229
|
is_connected_account_error?: boolean | undefined;
|
|
1088
1230
|
is_bridge_error?: boolean | undefined;
|
|
1231
|
+
} | {
|
|
1232
|
+
message: string;
|
|
1233
|
+
created_at: string;
|
|
1234
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1235
|
+
is_connected_account_error?: boolean | undefined;
|
|
1236
|
+
is_bridge_error?: boolean | undefined;
|
|
1089
1237
|
})[];
|
|
1090
1238
|
connected_account_id: string;
|
|
1091
1239
|
account_type_display_name: string;
|
|
@@ -1125,6 +1273,10 @@ export declare const connected_account: z.ZodObject<{
|
|
|
1125
1273
|
message: string;
|
|
1126
1274
|
created_at: string;
|
|
1127
1275
|
warning_code: "setup_required";
|
|
1276
|
+
} | {
|
|
1277
|
+
message: string;
|
|
1278
|
+
created_at: string;
|
|
1279
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
1128
1280
|
})[];
|
|
1129
1281
|
custom_metadata: Record<string, string | boolean>;
|
|
1130
1282
|
automatically_manage_new_devices: boolean;
|
|
@@ -1173,6 +1325,12 @@ export declare const connected_account: z.ZodObject<{
|
|
|
1173
1325
|
};
|
|
1174
1326
|
is_connected_account_error?: boolean | undefined;
|
|
1175
1327
|
is_bridge_error?: boolean | undefined;
|
|
1328
|
+
} | {
|
|
1329
|
+
message: string;
|
|
1330
|
+
created_at: string;
|
|
1331
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1332
|
+
is_connected_account_error?: boolean | undefined;
|
|
1333
|
+
is_bridge_error?: boolean | undefined;
|
|
1176
1334
|
})[];
|
|
1177
1335
|
connected_account_id: string;
|
|
1178
1336
|
account_type_display_name: string;
|
|
@@ -1212,6 +1370,10 @@ export declare const connected_account: z.ZodObject<{
|
|
|
1212
1370
|
message: string;
|
|
1213
1371
|
created_at: string;
|
|
1214
1372
|
warning_code: "setup_required";
|
|
1373
|
+
} | {
|
|
1374
|
+
message: string;
|
|
1375
|
+
created_at: string;
|
|
1376
|
+
warning_code: "dormakaba_sites_unapproved";
|
|
1215
1377
|
})[];
|
|
1216
1378
|
custom_metadata: Record<string, string | boolean>;
|
|
1217
1379
|
automatically_manage_new_devices: boolean;
|
|
@@ -76,10 +76,18 @@ export const salto_ks_subscription_limit_exceeded = common_connected_account_err
|
|
|
76
76
|
.describe('Salto KS metadata associated with the connected account that has an error.'),
|
|
77
77
|
})
|
|
78
78
|
.describe('Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.');
|
|
79
|
+
export const dormakaba_sites_disconnected = common_connected_account_error
|
|
80
|
+
.extend({
|
|
81
|
+
error_code: z
|
|
82
|
+
.literal('dormakaba_sites_disconnected')
|
|
83
|
+
.describe(error_code_description),
|
|
84
|
+
})
|
|
85
|
+
.describe('Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.');
|
|
79
86
|
export const connected_account_error = z.discriminatedUnion('error_code', [
|
|
80
87
|
account_disconnected,
|
|
81
88
|
bridge_disconnected,
|
|
82
89
|
salto_ks_subscription_limit_exceeded,
|
|
90
|
+
dormakaba_sites_disconnected,
|
|
83
91
|
]);
|
|
84
92
|
export const connected_account_error_map = z.object({
|
|
85
93
|
account_disconnected: account_disconnected.nullable().optional(),
|
|
@@ -87,6 +95,9 @@ export const connected_account_error_map = z.object({
|
|
|
87
95
|
salto_ks_subscription_limit_exceeded: salto_ks_subscription_limit_exceeded
|
|
88
96
|
.nullable()
|
|
89
97
|
.optional(),
|
|
98
|
+
dormakaba_sites_disconnected: dormakaba_sites_disconnected
|
|
99
|
+
.nullable()
|
|
100
|
+
.optional(),
|
|
90
101
|
});
|
|
91
102
|
export const unknown_issue_with_connected_account = common_connected_account_warning
|
|
92
103
|
.extend({
|
|
@@ -161,6 +172,13 @@ const setup_required = common_connected_account_warning
|
|
|
161
172
|
.describe(warning_code_description),
|
|
162
173
|
})
|
|
163
174
|
.describe('Indicates that the connected account requires additional setup before it can be fully operational. Follow the instructions in the warning message to complete the setup.');
|
|
175
|
+
const dormakaba_sites_unapproved = common_connected_account_warning
|
|
176
|
+
.extend({
|
|
177
|
+
warning_code: z
|
|
178
|
+
.literal('dormakaba_sites_unapproved')
|
|
179
|
+
.describe(warning_code_description),
|
|
180
|
+
})
|
|
181
|
+
.describe('Indicates that one or more dormakaba sites associated with the connected account are not approved. Contact support@getseam.com to finish setting up your account.');
|
|
164
182
|
const connected_account_warning = z
|
|
165
183
|
.discriminatedUnion('warning_code', [
|
|
166
184
|
scheduled_maintenance_window,
|
|
@@ -170,6 +188,7 @@ const connected_account_warning = z
|
|
|
170
188
|
being_deleted,
|
|
171
189
|
provider_service_unavailable,
|
|
172
190
|
setup_required,
|
|
191
|
+
dormakaba_sites_unapproved,
|
|
173
192
|
])
|
|
174
193
|
.describe('Warning associated with the connected account.');
|
|
175
194
|
export const connected_account_warning_map = z.object({
|
|
@@ -188,6 +207,7 @@ export const connected_account_warning_map = z.object({
|
|
|
188
207
|
.nullable()
|
|
189
208
|
.optional(),
|
|
190
209
|
setup_required: setup_required.nullable().optional(),
|
|
210
|
+
dormakaba_sites_unapproved: dormakaba_sites_unapproved.nullable().optional(),
|
|
191
211
|
});
|
|
192
212
|
export const connected_account = z.object({
|
|
193
213
|
connected_account_id: z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connected-account.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/connected-accounts/connected-account.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAA;AAE/D,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;IACH,0BAA0B,EAAE,CAAC;SAC1B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,+EAA+E,CAChF;IACH,eAAe,EAAE,CAAC;SACf,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,8GAA8G,CAC/G;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,wBAAwB,GAC5B,sGAAsG,CAAA;AAExG,MAAM,gCAAgC,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,8BAA8B;KAC/D,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,sBAAsB,CAAC;SAC/B,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACD,QAAQ,CAAC,6CAA6C,CAAC,CAAA;AAE1D,MAAM,CAAC,MAAM,mBAAmB,GAAG,8BAA8B;KAC9D,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,qBAAqB,CAAC;SAC9B,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACD,QAAQ,CACP,kbAAkb,CACnb,CAAA;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAC/C,8BAA8B;KAC3B,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,sCAAsC,CAAC;SAC/C,QAAQ,CAAC,sBAAsB,CAAC;IACnC,iBAAiB,EAAE,CAAC;SACjB,MAAM,CAAC;QACN,KAAK,EAAE,CAAC;aACL,KAAK,CACJ,CAAC;aACE,MAAM,CAAC;YACN,OAAO,EAAE,CAAC;iBACP,MAAM,EAAE;iBACR,QAAQ,CACP,6EAA6E,CAC9E;YACH,SAAS,EAAE,CAAC;iBACT,MAAM,EAAE;iBACR,QAAQ,CACP,+EAA+E,CAChF;YACH,0BAA0B,EAAE,CAAC;iBAC1B,MAAM,EAAE;iBACR,GAAG,EAAE;iBACL,GAAG,CAAC,CAAC,CAAC;iBACN,QAAQ,CACP,0GAA0G,CAC3G;YACH,4BAA4B,EAAE,CAAC;iBAC5B,MAAM,EAAE;iBACR,GAAG,EAAE;iBACL,GAAG,CAAC,CAAC,CAAC;iBACN,QAAQ,CACP,4GAA4G,CAC7G;SACJ,CAAC;aACD,QAAQ,CACP,qEAAqE,CACtE,CACJ;aACA,QAAQ,CACP,sEAAsE,CACvE;KACJ,CAAC;SACD,QAAQ,CACP,4EAA4E,CAC7E;CACJ,CAAC;KACD,QAAQ,CACP,yLAAyL,CAC1L,CAAA;AAEL,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,kBAAkB,CAAC,YAAY,EAAE;IACxE,oBAAoB;IACpB,mBAAmB;IACnB,oCAAoC;
|
|
1
|
+
{"version":3,"file":"connected-account.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/connected-accounts/connected-account.ts"],"names":[],"mappings":"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"}
|
|
@@ -51,6 +51,7 @@ export declare const DEVICE_PROVIDERS: {
|
|
|
51
51
|
readonly KEYINCODE: "keyincode";
|
|
52
52
|
readonly DORMAKABA_AMBIANCE: "dormakaba_ambiance";
|
|
53
53
|
readonly ULTRALOQ: "ultraloq";
|
|
54
|
+
readonly DUSAW: "dusaw";
|
|
54
55
|
readonly SIFELY: "sifely";
|
|
55
56
|
readonly RING: "ring";
|
|
56
57
|
readonly ICAL: "ical";
|
|
@@ -67,8 +68,8 @@ export declare const ALL_DEVICE_PROVIDERS: [
|
|
|
67
68
|
];
|
|
68
69
|
export type ProviderCategory = keyof typeof PROVIDER_CATEGORY_MAP;
|
|
69
70
|
export declare const PROVIDER_CATEGORY_MAP: {
|
|
70
|
-
readonly stable: readonly ["august", "brivo", "schlage", "smartthings", "yale", "nuki", "salto_ks", "salto_space", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "lockly", "wyze", "nest", "tedee", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "dormakaba_ambiance", "latch", "akiles", "sensi", "assa_abloy_vostio", "avigilon_alta", "keynest", "hotek", "ultraloq", "dormakaba_oracode", "ring", "first_alert", "korelock", "keyincode", "sifely", "omnitec"];
|
|
71
|
-
readonly consumer_smartlocks: readonly ["akiles", "august", "schlage", "yale", "smartthings", "nuki", "ttlock", "kwikset", "igloohome", "wyze", "lockly", "tedee", "ultraloq", "dormakaba_oracode", "korelock", "keyincode", "sifely"];
|
|
71
|
+
readonly stable: readonly ["august", "brivo", "schlage", "smartthings", "yale", "nuki", "salto_ks", "salto_space", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "lockly", "wyze", "nest", "tedee", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "dormakaba_ambiance", "latch", "akiles", "sensi", "assa_abloy_vostio", "avigilon_alta", "keynest", "hotek", "ultraloq", "dormakaba_oracode", "ring", "first_alert", "korelock", "keyincode", "sifely", "omnitec", "dusaw"];
|
|
72
|
+
readonly consumer_smartlocks: readonly ["akiles", "august", "schlage", "yale", "smartthings", "nuki", "ttlock", "kwikset", "igloohome", "wyze", "lockly", "tedee", "ultraloq", "dormakaba_oracode", "korelock", "dusaw", "keyincode", "sifely"];
|
|
72
73
|
readonly beta: readonly [];
|
|
73
74
|
readonly thermostats: readonly ["ecobee", "nest", "sensi", "honeywell_resideo", "first_alert"];
|
|
74
75
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
@@ -51,6 +51,7 @@ export const DEVICE_PROVIDERS = {
|
|
|
51
51
|
KEYINCODE: 'keyincode',
|
|
52
52
|
DORMAKABA_AMBIANCE: 'dormakaba_ambiance',
|
|
53
53
|
ULTRALOQ: 'ultraloq',
|
|
54
|
+
DUSAW: 'dusaw',
|
|
54
55
|
SIFELY: 'sifely',
|
|
55
56
|
RING: 'ring',
|
|
56
57
|
ICAL: 'ical',
|
|
@@ -101,6 +102,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
101
102
|
'keyincode',
|
|
102
103
|
'sifely',
|
|
103
104
|
'omnitec',
|
|
105
|
+
'dusaw',
|
|
104
106
|
],
|
|
105
107
|
consumer_smartlocks: [
|
|
106
108
|
'akiles',
|
|
@@ -118,6 +120,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
118
120
|
'ultraloq',
|
|
119
121
|
'dormakaba_oracode',
|
|
120
122
|
'korelock',
|
|
123
|
+
'dusaw',
|
|
121
124
|
'keyincode',
|
|
122
125
|
'sifely',
|
|
123
126
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,OAAO;IACd,mBAAmB,EAAE,qBAAqB;IAC1C,aAAa,EAAE,eAAe;IAC9B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,YAAY,EAAE,cAAc;IAC5B,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,QAAQ;IAChB,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mBAAmB;IACtC,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,6BAA6B,EAAE,+BAA+B;IAC9D,KAAK,EAAE,OAAO;IACd,iBAAiB,EAAE,mBAAmB;IACtC,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,mBAAmB;IAC3B,oCAAoC,EAAE,sCAAsC;IAC5E,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,kBAAkB,EAAE,oBAAoB;IACxC,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,iBAAiB,EAAE,mBAAmB;IACtC,OAAO,EAAE,SAAS;CACV,CAAA;AAKV,MAAM,CAAC,MAAM,oBAAoB,GAG7B,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAQ,CAAA;AAI1C,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,MAAM,EAAE;QACN,QAAQ;QACR,OAAO;QACP,SAAS;QACT,aAAa;QACb,MAAM;QACN,MAAM;QACN,UAAU;QACV,aAAa;QACb,OAAO;QACP,OAAO;QACP,SAAS;QACT,QAAQ;QACR,YAAY;QACZ,WAAW;QACX,QAAQ;QACR,QAAQ;QACR,MAAM;QACN,MAAM;QACN,OAAO;QACP,mBAAmB;QACnB,YAAY;QACZ,+BAA+B;QAC/B,oBAAoB;QACpB,OAAO;QACP,QAAQ;QACR,OAAO;QACP,mBAAmB;QACnB,eAAe;QACf,SAAS;QACT,OAAO;QACP,UAAU;QACV,mBAAmB;QACnB,MAAM;QACN,aAAa;QACb,UAAU;QACV,WAAW;QACX,QAAQ;QACR,SAAS;
|
|
1
|
+
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -2016,6 +2016,25 @@ export declare const device_and_connected_account_error_options: (z.ZodObject<{
|
|
|
2016
2016
|
};
|
|
2017
2017
|
is_connected_account_error?: boolean | undefined;
|
|
2018
2018
|
is_bridge_error?: boolean | undefined;
|
|
2019
|
+
}> | z.ZodObject<{
|
|
2020
|
+
created_at: z.ZodString;
|
|
2021
|
+
message: z.ZodString;
|
|
2022
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
2023
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
2024
|
+
} & {
|
|
2025
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
2026
|
+
}, "strip", z.ZodTypeAny, {
|
|
2027
|
+
message: string;
|
|
2028
|
+
created_at: string;
|
|
2029
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2030
|
+
is_connected_account_error?: boolean | undefined;
|
|
2031
|
+
is_bridge_error?: boolean | undefined;
|
|
2032
|
+
}, {
|
|
2033
|
+
message: string;
|
|
2034
|
+
created_at: string;
|
|
2035
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2036
|
+
is_connected_account_error?: boolean | undefined;
|
|
2037
|
+
is_bridge_error?: boolean | undefined;
|
|
2019
2038
|
}> | z.ZodObject<{
|
|
2020
2039
|
message: z.ZodString;
|
|
2021
2040
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -4998,6 +5017,25 @@ export declare const device: z.ZodObject<{
|
|
|
4998
5017
|
};
|
|
4999
5018
|
is_connected_account_error?: boolean | undefined;
|
|
5000
5019
|
is_bridge_error?: boolean | undefined;
|
|
5020
|
+
}> | z.ZodObject<{
|
|
5021
|
+
created_at: z.ZodString;
|
|
5022
|
+
message: z.ZodString;
|
|
5023
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
5024
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
5025
|
+
} & {
|
|
5026
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
5027
|
+
}, "strip", z.ZodTypeAny, {
|
|
5028
|
+
message: string;
|
|
5029
|
+
created_at: string;
|
|
5030
|
+
error_code: "dormakaba_sites_disconnected";
|
|
5031
|
+
is_connected_account_error?: boolean | undefined;
|
|
5032
|
+
is_bridge_error?: boolean | undefined;
|
|
5033
|
+
}, {
|
|
5034
|
+
message: string;
|
|
5035
|
+
created_at: string;
|
|
5036
|
+
error_code: "dormakaba_sites_disconnected";
|
|
5037
|
+
is_connected_account_error?: boolean | undefined;
|
|
5038
|
+
is_bridge_error?: boolean | undefined;
|
|
5001
5039
|
}>)[]]>, "many">;
|
|
5002
5040
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
5003
5041
|
message: z.ZodString;
|
|
@@ -5428,6 +5466,12 @@ export declare const device: z.ZodObject<{
|
|
|
5428
5466
|
};
|
|
5429
5467
|
is_connected_account_error?: boolean | undefined;
|
|
5430
5468
|
is_bridge_error?: boolean | undefined;
|
|
5469
|
+
} | {
|
|
5470
|
+
message: string;
|
|
5471
|
+
created_at: string;
|
|
5472
|
+
error_code: "dormakaba_sites_disconnected";
|
|
5473
|
+
is_connected_account_error?: boolean | undefined;
|
|
5474
|
+
is_bridge_error?: boolean | undefined;
|
|
5431
5475
|
} | {
|
|
5432
5476
|
message: string;
|
|
5433
5477
|
created_at: string;
|
|
@@ -6171,6 +6215,12 @@ export declare const device: z.ZodObject<{
|
|
|
6171
6215
|
};
|
|
6172
6216
|
is_connected_account_error?: boolean | undefined;
|
|
6173
6217
|
is_bridge_error?: boolean | undefined;
|
|
6218
|
+
} | {
|
|
6219
|
+
message: string;
|
|
6220
|
+
created_at: string;
|
|
6221
|
+
error_code: "dormakaba_sites_disconnected";
|
|
6222
|
+
is_connected_account_error?: boolean | undefined;
|
|
6223
|
+
is_bridge_error?: boolean | undefined;
|
|
6174
6224
|
} | {
|
|
6175
6225
|
message: string;
|
|
6176
6226
|
created_at: string;
|
|
@@ -2750,6 +2750,25 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
2750
2750
|
};
|
|
2751
2751
|
is_connected_account_error?: boolean | undefined;
|
|
2752
2752
|
is_bridge_error?: boolean | undefined;
|
|
2753
|
+
}> | z.ZodObject<{
|
|
2754
|
+
created_at: z.ZodString;
|
|
2755
|
+
message: z.ZodString;
|
|
2756
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
2757
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
2758
|
+
} & {
|
|
2759
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
2760
|
+
}, "strip", z.ZodTypeAny, {
|
|
2761
|
+
message: string;
|
|
2762
|
+
created_at: string;
|
|
2763
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2764
|
+
is_connected_account_error?: boolean | undefined;
|
|
2765
|
+
is_bridge_error?: boolean | undefined;
|
|
2766
|
+
}, {
|
|
2767
|
+
message: string;
|
|
2768
|
+
created_at: string;
|
|
2769
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2770
|
+
is_connected_account_error?: boolean | undefined;
|
|
2771
|
+
is_bridge_error?: boolean | undefined;
|
|
2753
2772
|
}>)[]]>, "many">;
|
|
2754
2773
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
2755
2774
|
message: z.ZodString;
|
|
@@ -3336,6 +3355,12 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
3336
3355
|
};
|
|
3337
3356
|
is_connected_account_error?: boolean | undefined;
|
|
3338
3357
|
is_bridge_error?: boolean | undefined;
|
|
3358
|
+
} | {
|
|
3359
|
+
message: string;
|
|
3360
|
+
created_at: string;
|
|
3361
|
+
error_code: "dormakaba_sites_disconnected";
|
|
3362
|
+
is_connected_account_error?: boolean | undefined;
|
|
3363
|
+
is_bridge_error?: boolean | undefined;
|
|
3339
3364
|
} | {
|
|
3340
3365
|
message: string;
|
|
3341
3366
|
created_at: string;
|
|
@@ -3605,6 +3630,12 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
3605
3630
|
};
|
|
3606
3631
|
is_connected_account_error?: boolean | undefined;
|
|
3607
3632
|
is_bridge_error?: boolean | undefined;
|
|
3633
|
+
} | {
|
|
3634
|
+
message: string;
|
|
3635
|
+
created_at: string;
|
|
3636
|
+
error_code: "dormakaba_sites_disconnected";
|
|
3637
|
+
is_connected_account_error?: boolean | undefined;
|
|
3638
|
+
is_bridge_error?: boolean | undefined;
|
|
3608
3639
|
} | {
|
|
3609
3640
|
message: string;
|
|
3610
3641
|
created_at: string;
|