@seamapi/types 1.922.0 → 1.923.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 +247 -156
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +484 -341
- package/dist/index.cjs +247 -156
- 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/devices/device.d.ts +103 -0
- package/lib/seam/connect/models/devices/device.js +55 -16
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/openapi.js +178 -122
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -341
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device.ts +69 -33
- package/src/lib/seam/connect/openapi.ts +202 -148
- package/src/lib/seam/connect/route-types.ts +372 -372
package/dist/connect.d.cts
CHANGED
|
@@ -919,6 +919,25 @@ declare const access_code: z.ZodObject<{
|
|
|
919
919
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
920
920
|
is_connected_account_error: true;
|
|
921
921
|
is_device_error: false;
|
|
922
|
+
}> | z.ZodObject<{
|
|
923
|
+
message: z.ZodString;
|
|
924
|
+
created_at: z.ZodString;
|
|
925
|
+
} & {
|
|
926
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
927
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
928
|
+
is_device_error: z.ZodLiteral<false>;
|
|
929
|
+
}, "strip", z.ZodTypeAny, {
|
|
930
|
+
message: string;
|
|
931
|
+
created_at: string;
|
|
932
|
+
error_code: "dormakaba_sites_disconnected";
|
|
933
|
+
is_connected_account_error: true;
|
|
934
|
+
is_device_error: false;
|
|
935
|
+
}, {
|
|
936
|
+
message: string;
|
|
937
|
+
created_at: string;
|
|
938
|
+
error_code: "dormakaba_sites_disconnected";
|
|
939
|
+
is_connected_account_error: true;
|
|
940
|
+
is_device_error: false;
|
|
922
941
|
}> | z.ZodObject<{
|
|
923
942
|
message: z.ZodString;
|
|
924
943
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -1478,6 +1497,12 @@ declare const access_code: z.ZodObject<{
|
|
|
1478
1497
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
1479
1498
|
is_connected_account_error: true;
|
|
1480
1499
|
is_device_error: false;
|
|
1500
|
+
} | {
|
|
1501
|
+
message: string;
|
|
1502
|
+
created_at: string;
|
|
1503
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1504
|
+
is_connected_account_error: true;
|
|
1505
|
+
is_device_error: false;
|
|
1481
1506
|
} | {
|
|
1482
1507
|
message: string;
|
|
1483
1508
|
created_at: string;
|
|
@@ -1783,6 +1808,12 @@ declare const access_code: z.ZodObject<{
|
|
|
1783
1808
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
1784
1809
|
is_connected_account_error: true;
|
|
1785
1810
|
is_device_error: false;
|
|
1811
|
+
} | {
|
|
1812
|
+
message: string;
|
|
1813
|
+
created_at: string;
|
|
1814
|
+
error_code: "dormakaba_sites_disconnected";
|
|
1815
|
+
is_connected_account_error: true;
|
|
1816
|
+
is_device_error: false;
|
|
1786
1817
|
} | {
|
|
1787
1818
|
message: string;
|
|
1788
1819
|
created_at: string;
|
|
@@ -2511,6 +2542,25 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2511
2542
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
2512
2543
|
is_connected_account_error: true;
|
|
2513
2544
|
is_device_error: false;
|
|
2545
|
+
}> | z.ZodObject<{
|
|
2546
|
+
message: z.ZodString;
|
|
2547
|
+
created_at: z.ZodString;
|
|
2548
|
+
} & {
|
|
2549
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
2550
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
2551
|
+
is_device_error: z.ZodLiteral<false>;
|
|
2552
|
+
}, "strip", z.ZodTypeAny, {
|
|
2553
|
+
message: string;
|
|
2554
|
+
created_at: string;
|
|
2555
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2556
|
+
is_connected_account_error: true;
|
|
2557
|
+
is_device_error: false;
|
|
2558
|
+
}, {
|
|
2559
|
+
message: string;
|
|
2560
|
+
created_at: string;
|
|
2561
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2562
|
+
is_connected_account_error: true;
|
|
2563
|
+
is_device_error: false;
|
|
2514
2564
|
}> | z.ZodObject<{
|
|
2515
2565
|
message: z.ZodString;
|
|
2516
2566
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -2896,6 +2946,12 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2896
2946
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
2897
2947
|
is_connected_account_error: true;
|
|
2898
2948
|
is_device_error: false;
|
|
2949
|
+
} | {
|
|
2950
|
+
message: string;
|
|
2951
|
+
created_at: string;
|
|
2952
|
+
error_code: "dormakaba_sites_disconnected";
|
|
2953
|
+
is_connected_account_error: true;
|
|
2954
|
+
is_device_error: false;
|
|
2899
2955
|
} | {
|
|
2900
2956
|
message: string;
|
|
2901
2957
|
created_at: string;
|
|
@@ -3148,6 +3204,12 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3148
3204
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
3149
3205
|
is_connected_account_error: true;
|
|
3150
3206
|
is_device_error: false;
|
|
3207
|
+
} | {
|
|
3208
|
+
message: string;
|
|
3209
|
+
created_at: string;
|
|
3210
|
+
error_code: "dormakaba_sites_disconnected";
|
|
3211
|
+
is_connected_account_error: true;
|
|
3212
|
+
is_device_error: false;
|
|
3151
3213
|
} | {
|
|
3152
3214
|
message: string;
|
|
3153
3215
|
created_at: string;
|
|
@@ -14392,6 +14454,25 @@ declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
|
14392
14454
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
14393
14455
|
is_connected_account_error: true;
|
|
14394
14456
|
is_device_error: false;
|
|
14457
|
+
}>, z.ZodObject<{
|
|
14458
|
+
message: z.ZodString;
|
|
14459
|
+
created_at: z.ZodString;
|
|
14460
|
+
} & {
|
|
14461
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
14462
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
14463
|
+
is_device_error: z.ZodLiteral<false>;
|
|
14464
|
+
}, "strip", z.ZodTypeAny, {
|
|
14465
|
+
message: string;
|
|
14466
|
+
created_at: string;
|
|
14467
|
+
error_code: "dormakaba_sites_disconnected";
|
|
14468
|
+
is_connected_account_error: true;
|
|
14469
|
+
is_device_error: false;
|
|
14470
|
+
}, {
|
|
14471
|
+
message: string;
|
|
14472
|
+
created_at: string;
|
|
14473
|
+
error_code: "dormakaba_sites_disconnected";
|
|
14474
|
+
is_connected_account_error: true;
|
|
14475
|
+
is_device_error: false;
|
|
14395
14476
|
}>, z.ZodObject<{
|
|
14396
14477
|
message: z.ZodString;
|
|
14397
14478
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -17386,6 +17467,25 @@ declare const device: z.ZodObject<{
|
|
|
17386
17467
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
17387
17468
|
is_connected_account_error: true;
|
|
17388
17469
|
is_device_error: false;
|
|
17470
|
+
}>, z.ZodObject<{
|
|
17471
|
+
message: z.ZodString;
|
|
17472
|
+
created_at: z.ZodString;
|
|
17473
|
+
} & {
|
|
17474
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
17475
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
17476
|
+
is_device_error: z.ZodLiteral<false>;
|
|
17477
|
+
}, "strip", z.ZodTypeAny, {
|
|
17478
|
+
message: string;
|
|
17479
|
+
created_at: string;
|
|
17480
|
+
error_code: "dormakaba_sites_disconnected";
|
|
17481
|
+
is_connected_account_error: true;
|
|
17482
|
+
is_device_error: false;
|
|
17483
|
+
}, {
|
|
17484
|
+
message: string;
|
|
17485
|
+
created_at: string;
|
|
17486
|
+
error_code: "dormakaba_sites_disconnected";
|
|
17487
|
+
is_connected_account_error: true;
|
|
17488
|
+
is_device_error: false;
|
|
17389
17489
|
}>, z.ZodObject<{
|
|
17390
17490
|
message: z.ZodString;
|
|
17391
17491
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -18185,6 +18285,12 @@ declare const device: z.ZodObject<{
|
|
|
18185
18285
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
18186
18286
|
is_connected_account_error: true;
|
|
18187
18287
|
is_device_error: false;
|
|
18288
|
+
} | {
|
|
18289
|
+
message: string;
|
|
18290
|
+
created_at: string;
|
|
18291
|
+
error_code: "dormakaba_sites_disconnected";
|
|
18292
|
+
is_connected_account_error: true;
|
|
18293
|
+
is_device_error: false;
|
|
18188
18294
|
} | {
|
|
18189
18295
|
message: string;
|
|
18190
18296
|
created_at: string;
|
|
@@ -18934,6 +19040,12 @@ declare const device: z.ZodObject<{
|
|
|
18934
19040
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
18935
19041
|
is_connected_account_error: true;
|
|
18936
19042
|
is_device_error: false;
|
|
19043
|
+
} | {
|
|
19044
|
+
message: string;
|
|
19045
|
+
created_at: string;
|
|
19046
|
+
error_code: "dormakaba_sites_disconnected";
|
|
19047
|
+
is_connected_account_error: true;
|
|
19048
|
+
is_device_error: false;
|
|
18937
19049
|
} | {
|
|
18938
19050
|
message: string;
|
|
18939
19051
|
created_at: string;
|
|
@@ -22198,6 +22310,25 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22198
22310
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
22199
22311
|
is_connected_account_error: true;
|
|
22200
22312
|
is_device_error: false;
|
|
22313
|
+
}>, z.ZodObject<{
|
|
22314
|
+
message: z.ZodString;
|
|
22315
|
+
created_at: z.ZodString;
|
|
22316
|
+
} & {
|
|
22317
|
+
error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
|
|
22318
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
22319
|
+
is_device_error: z.ZodLiteral<false>;
|
|
22320
|
+
}, "strip", z.ZodTypeAny, {
|
|
22321
|
+
message: string;
|
|
22322
|
+
created_at: string;
|
|
22323
|
+
error_code: "dormakaba_sites_disconnected";
|
|
22324
|
+
is_connected_account_error: true;
|
|
22325
|
+
is_device_error: false;
|
|
22326
|
+
}, {
|
|
22327
|
+
message: string;
|
|
22328
|
+
created_at: string;
|
|
22329
|
+
error_code: "dormakaba_sites_disconnected";
|
|
22330
|
+
is_connected_account_error: true;
|
|
22331
|
+
is_device_error: false;
|
|
22201
22332
|
}>, z.ZodObject<{
|
|
22202
22333
|
message: z.ZodString;
|
|
22203
22334
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -23153,6 +23284,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23153
23284
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
23154
23285
|
is_connected_account_error: true;
|
|
23155
23286
|
is_device_error: false;
|
|
23287
|
+
} | {
|
|
23288
|
+
message: string;
|
|
23289
|
+
created_at: string;
|
|
23290
|
+
error_code: "dormakaba_sites_disconnected";
|
|
23291
|
+
is_connected_account_error: true;
|
|
23292
|
+
is_device_error: false;
|
|
23156
23293
|
} | {
|
|
23157
23294
|
message: string;
|
|
23158
23295
|
created_at: string;
|
|
@@ -23428,6 +23565,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23428
23565
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
23429
23566
|
is_connected_account_error: true;
|
|
23430
23567
|
is_device_error: false;
|
|
23568
|
+
} | {
|
|
23569
|
+
message: string;
|
|
23570
|
+
created_at: string;
|
|
23571
|
+
error_code: "dormakaba_sites_disconnected";
|
|
23572
|
+
is_connected_account_error: true;
|
|
23573
|
+
is_device_error: false;
|
|
23431
23574
|
} | {
|
|
23432
23575
|
message: string;
|
|
23433
23576
|
created_at: string;
|
|
@@ -31368,6 +31511,17 @@ type Routes = {
|
|
|
31368
31511
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
31369
31512
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
31370
31513
|
is_connected_account_error: true;
|
|
31514
|
+
} | {
|
|
31515
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31516
|
+
message: string;
|
|
31517
|
+
/** Indicates that the error is not a device error. */
|
|
31518
|
+
is_device_error: false;
|
|
31519
|
+
/** Date and time at which Seam created the error. */
|
|
31520
|
+
created_at: string;
|
|
31521
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31522
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
31523
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
31524
|
+
is_connected_account_error: true;
|
|
31371
31525
|
} | {
|
|
31372
31526
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31373
31527
|
message: string;
|
|
@@ -31487,17 +31641,6 @@ type Routes = {
|
|
|
31487
31641
|
is_bridge_error?: boolean | undefined;
|
|
31488
31642
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31489
31643
|
error_code: 'bridge_disconnected';
|
|
31490
|
-
} | {
|
|
31491
|
-
/** Date and time at which Seam created the error. */
|
|
31492
|
-
created_at: string;
|
|
31493
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31494
|
-
message: string;
|
|
31495
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
31496
|
-
is_connected_account_error?: boolean | undefined;
|
|
31497
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
31498
|
-
is_bridge_error?: boolean | undefined;
|
|
31499
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31500
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
31501
31644
|
})[];
|
|
31502
31645
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
31503
31646
|
warnings: ({
|
|
@@ -31924,6 +32067,17 @@ type Routes = {
|
|
|
31924
32067
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
31925
32068
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
31926
32069
|
is_connected_account_error: true;
|
|
32070
|
+
} | {
|
|
32071
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32072
|
+
message: string;
|
|
32073
|
+
/** Indicates that the error is not a device error. */
|
|
32074
|
+
is_device_error: false;
|
|
32075
|
+
/** Date and time at which Seam created the error. */
|
|
32076
|
+
created_at: string;
|
|
32077
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32078
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
32079
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
32080
|
+
is_connected_account_error: true;
|
|
31927
32081
|
} | {
|
|
31928
32082
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31929
32083
|
message: string;
|
|
@@ -32043,17 +32197,6 @@ type Routes = {
|
|
|
32043
32197
|
is_bridge_error?: boolean | undefined;
|
|
32044
32198
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32045
32199
|
error_code: 'bridge_disconnected';
|
|
32046
|
-
} | {
|
|
32047
|
-
/** Date and time at which Seam created the error. */
|
|
32048
|
-
created_at: string;
|
|
32049
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32050
|
-
message: string;
|
|
32051
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
32052
|
-
is_connected_account_error?: boolean | undefined;
|
|
32053
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
32054
|
-
is_bridge_error?: boolean | undefined;
|
|
32055
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32056
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
32057
32200
|
})[];
|
|
32058
32201
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
32059
32202
|
warnings: ({
|
|
@@ -34168,6 +34311,17 @@ type Routes = {
|
|
|
34168
34311
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
34169
34312
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
34170
34313
|
is_connected_account_error: true;
|
|
34314
|
+
} | {
|
|
34315
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34316
|
+
message: string;
|
|
34317
|
+
/** Indicates that the error is not a device error. */
|
|
34318
|
+
is_device_error: false;
|
|
34319
|
+
/** Date and time at which Seam created the error. */
|
|
34320
|
+
created_at: string;
|
|
34321
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34322
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
34323
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
34324
|
+
is_connected_account_error: true;
|
|
34171
34325
|
} | {
|
|
34172
34326
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34173
34327
|
message: string;
|
|
@@ -34287,17 +34441,6 @@ type Routes = {
|
|
|
34287
34441
|
is_bridge_error?: boolean | undefined;
|
|
34288
34442
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34289
34443
|
error_code: 'bridge_disconnected';
|
|
34290
|
-
} | {
|
|
34291
|
-
/** Date and time at which Seam created the error. */
|
|
34292
|
-
created_at: string;
|
|
34293
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34294
|
-
message: string;
|
|
34295
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
34296
|
-
is_connected_account_error?: boolean | undefined;
|
|
34297
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
34298
|
-
is_bridge_error?: boolean | undefined;
|
|
34299
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34300
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
34301
34444
|
})[];
|
|
34302
34445
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
34303
34446
|
warnings: ({
|
|
@@ -34770,6 +34913,17 @@ type Routes = {
|
|
|
34770
34913
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
34771
34914
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
34772
34915
|
is_connected_account_error: true;
|
|
34916
|
+
} | {
|
|
34917
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34918
|
+
message: string;
|
|
34919
|
+
/** Indicates that the error is not a device error. */
|
|
34920
|
+
is_device_error: false;
|
|
34921
|
+
/** Date and time at which Seam created the error. */
|
|
34922
|
+
created_at: string;
|
|
34923
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34924
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
34925
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
34926
|
+
is_connected_account_error: true;
|
|
34773
34927
|
} | {
|
|
34774
34928
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34775
34929
|
message: string;
|
|
@@ -34889,17 +35043,6 @@ type Routes = {
|
|
|
34889
35043
|
is_bridge_error?: boolean | undefined;
|
|
34890
35044
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34891
35045
|
error_code: 'bridge_disconnected';
|
|
34892
|
-
} | {
|
|
34893
|
-
/** Date and time at which Seam created the error. */
|
|
34894
|
-
created_at: string;
|
|
34895
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34896
|
-
message: string;
|
|
34897
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
34898
|
-
is_connected_account_error?: boolean | undefined;
|
|
34899
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
34900
|
-
is_bridge_error?: boolean | undefined;
|
|
34901
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34902
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
34903
35046
|
})[];
|
|
34904
35047
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
34905
35048
|
warnings: ({
|
|
@@ -35317,6 +35460,17 @@ type Routes = {
|
|
|
35317
35460
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
35318
35461
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
35319
35462
|
is_connected_account_error: true;
|
|
35463
|
+
} | {
|
|
35464
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35465
|
+
message: string;
|
|
35466
|
+
/** Indicates that the error is not a device error. */
|
|
35467
|
+
is_device_error: false;
|
|
35468
|
+
/** Date and time at which Seam created the error. */
|
|
35469
|
+
created_at: string;
|
|
35470
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35471
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
35472
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
35473
|
+
is_connected_account_error: true;
|
|
35320
35474
|
} | {
|
|
35321
35475
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35322
35476
|
message: string;
|
|
@@ -35436,17 +35590,6 @@ type Routes = {
|
|
|
35436
35590
|
is_bridge_error?: boolean | undefined;
|
|
35437
35591
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35438
35592
|
error_code: 'bridge_disconnected';
|
|
35439
|
-
} | {
|
|
35440
|
-
/** Date and time at which Seam created the error. */
|
|
35441
|
-
created_at: string;
|
|
35442
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35443
|
-
message: string;
|
|
35444
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
35445
|
-
is_connected_account_error?: boolean | undefined;
|
|
35446
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
35447
|
-
is_bridge_error?: boolean | undefined;
|
|
35448
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35449
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
35450
35593
|
})[];
|
|
35451
35594
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
35452
35595
|
warnings: ({
|
|
@@ -35841,6 +35984,17 @@ type Routes = {
|
|
|
35841
35984
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
35842
35985
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
35843
35986
|
is_connected_account_error: true;
|
|
35987
|
+
} | {
|
|
35988
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35989
|
+
message: string;
|
|
35990
|
+
/** Indicates that the error is not a device error. */
|
|
35991
|
+
is_device_error: false;
|
|
35992
|
+
/** Date and time at which Seam created the error. */
|
|
35993
|
+
created_at: string;
|
|
35994
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35995
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
35996
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
35997
|
+
is_connected_account_error: true;
|
|
35844
35998
|
} | {
|
|
35845
35999
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35846
36000
|
message: string;
|
|
@@ -35960,17 +36114,6 @@ type Routes = {
|
|
|
35960
36114
|
is_bridge_error?: boolean | undefined;
|
|
35961
36115
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35962
36116
|
error_code: 'bridge_disconnected';
|
|
35963
|
-
} | {
|
|
35964
|
-
/** Date and time at which Seam created the error. */
|
|
35965
|
-
created_at: string;
|
|
35966
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35967
|
-
message: string;
|
|
35968
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
35969
|
-
is_connected_account_error?: boolean | undefined;
|
|
35970
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
35971
|
-
is_bridge_error?: boolean | undefined;
|
|
35972
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35973
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
35974
36117
|
})[];
|
|
35975
36118
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
35976
36119
|
warnings: ({
|
|
@@ -36398,6 +36541,17 @@ type Routes = {
|
|
|
36398
36541
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
36399
36542
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
36400
36543
|
is_connected_account_error: true;
|
|
36544
|
+
} | {
|
|
36545
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36546
|
+
message: string;
|
|
36547
|
+
/** Indicates that the error is not a device error. */
|
|
36548
|
+
is_device_error: false;
|
|
36549
|
+
/** Date and time at which Seam created the error. */
|
|
36550
|
+
created_at: string;
|
|
36551
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36552
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
36553
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
36554
|
+
is_connected_account_error: true;
|
|
36401
36555
|
} | {
|
|
36402
36556
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36403
36557
|
message: string;
|
|
@@ -36517,17 +36671,6 @@ type Routes = {
|
|
|
36517
36671
|
is_bridge_error?: boolean | undefined;
|
|
36518
36672
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36519
36673
|
error_code: 'bridge_disconnected';
|
|
36520
|
-
} | {
|
|
36521
|
-
/** Date and time at which Seam created the error. */
|
|
36522
|
-
created_at: string;
|
|
36523
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36524
|
-
message: string;
|
|
36525
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
36526
|
-
is_connected_account_error?: boolean | undefined;
|
|
36527
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
36528
|
-
is_bridge_error?: boolean | undefined;
|
|
36529
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36530
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
36531
36674
|
})[];
|
|
36532
36675
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
36533
36676
|
warnings: ({
|
|
@@ -38551,6 +38694,17 @@ type Routes = {
|
|
|
38551
38694
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
38552
38695
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
38553
38696
|
is_connected_account_error: true;
|
|
38697
|
+
} | {
|
|
38698
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38699
|
+
message: string;
|
|
38700
|
+
/** Indicates that the error is not a device error. */
|
|
38701
|
+
is_device_error: false;
|
|
38702
|
+
/** Date and time at which Seam created the error. */
|
|
38703
|
+
created_at: string;
|
|
38704
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38705
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
38706
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
38707
|
+
is_connected_account_error: true;
|
|
38554
38708
|
} | {
|
|
38555
38709
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38556
38710
|
message: string;
|
|
@@ -38670,17 +38824,6 @@ type Routes = {
|
|
|
38670
38824
|
is_bridge_error?: boolean | undefined;
|
|
38671
38825
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38672
38826
|
error_code: 'bridge_disconnected';
|
|
38673
|
-
} | {
|
|
38674
|
-
/** Date and time at which Seam created the error. */
|
|
38675
|
-
created_at: string;
|
|
38676
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38677
|
-
message: string;
|
|
38678
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
38679
|
-
is_connected_account_error?: boolean | undefined;
|
|
38680
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
38681
|
-
is_bridge_error?: boolean | undefined;
|
|
38682
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38683
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
38684
38827
|
})[];
|
|
38685
38828
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
38686
38829
|
warnings: ({
|
|
@@ -38994,6 +39137,17 @@ type Routes = {
|
|
|
38994
39137
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
38995
39138
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
38996
39139
|
is_connected_account_error: true;
|
|
39140
|
+
} | {
|
|
39141
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39142
|
+
message: string;
|
|
39143
|
+
/** Indicates that the error is not a device error. */
|
|
39144
|
+
is_device_error: false;
|
|
39145
|
+
/** Date and time at which Seam created the error. */
|
|
39146
|
+
created_at: string;
|
|
39147
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39148
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
39149
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
39150
|
+
is_connected_account_error: true;
|
|
38997
39151
|
} | {
|
|
38998
39152
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38999
39153
|
message: string;
|
|
@@ -39113,17 +39267,6 @@ type Routes = {
|
|
|
39113
39267
|
is_bridge_error?: boolean | undefined;
|
|
39114
39268
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39115
39269
|
error_code: 'bridge_disconnected';
|
|
39116
|
-
} | {
|
|
39117
|
-
/** Date and time at which Seam created the error. */
|
|
39118
|
-
created_at: string;
|
|
39119
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39120
|
-
message: string;
|
|
39121
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
39122
|
-
is_connected_account_error?: boolean | undefined;
|
|
39123
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
39124
|
-
is_bridge_error?: boolean | undefined;
|
|
39125
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39126
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
39127
39270
|
})[];
|
|
39128
39271
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
39129
39272
|
warnings: ({
|
|
@@ -42555,6 +42698,17 @@ type Routes = {
|
|
|
42555
42698
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
42556
42699
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
42557
42700
|
is_connected_account_error: true;
|
|
42701
|
+
} | {
|
|
42702
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
42703
|
+
message: string;
|
|
42704
|
+
/** Indicates that the error is not a device error. */
|
|
42705
|
+
is_device_error: false;
|
|
42706
|
+
/** Date and time at which Seam created the error. */
|
|
42707
|
+
created_at: string;
|
|
42708
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42709
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
42710
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
42711
|
+
is_connected_account_error: true;
|
|
42558
42712
|
} | {
|
|
42559
42713
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
42560
42714
|
message: string;
|
|
@@ -42674,17 +42828,6 @@ type Routes = {
|
|
|
42674
42828
|
is_bridge_error?: boolean | undefined;
|
|
42675
42829
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42676
42830
|
error_code: 'bridge_disconnected';
|
|
42677
|
-
} | {
|
|
42678
|
-
/** Date and time at which Seam created the error. */
|
|
42679
|
-
created_at: string;
|
|
42680
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
42681
|
-
message: string;
|
|
42682
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
42683
|
-
is_connected_account_error?: boolean | undefined;
|
|
42684
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
42685
|
-
is_bridge_error?: boolean | undefined;
|
|
42686
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42687
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
42688
42831
|
})[];
|
|
42689
42832
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
42690
42833
|
warnings: ({
|
|
@@ -49203,6 +49346,17 @@ type Routes = {
|
|
|
49203
49346
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
49204
49347
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
49205
49348
|
is_connected_account_error: true;
|
|
49349
|
+
} | {
|
|
49350
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49351
|
+
message: string;
|
|
49352
|
+
/** Indicates that the error is not a device error. */
|
|
49353
|
+
is_device_error: false;
|
|
49354
|
+
/** Date and time at which Seam created the error. */
|
|
49355
|
+
created_at: string;
|
|
49356
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49357
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
49358
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
49359
|
+
is_connected_account_error: true;
|
|
49206
49360
|
} | {
|
|
49207
49361
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49208
49362
|
message: string;
|
|
@@ -49322,17 +49476,6 @@ type Routes = {
|
|
|
49322
49476
|
is_bridge_error?: boolean | undefined;
|
|
49323
49477
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49324
49478
|
error_code: 'bridge_disconnected';
|
|
49325
|
-
} | {
|
|
49326
|
-
/** Date and time at which Seam created the error. */
|
|
49327
|
-
created_at: string;
|
|
49328
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49329
|
-
message: string;
|
|
49330
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
49331
|
-
is_connected_account_error?: boolean | undefined;
|
|
49332
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
49333
|
-
is_bridge_error?: boolean | undefined;
|
|
49334
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49335
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
49336
49479
|
})[];
|
|
49337
49480
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
49338
49481
|
warnings: ({
|
|
@@ -71623,6 +71766,17 @@ type Routes = {
|
|
|
71623
71766
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
71624
71767
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
71625
71768
|
is_connected_account_error: true;
|
|
71769
|
+
} | {
|
|
71770
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71771
|
+
message: string;
|
|
71772
|
+
/** Indicates that the error is not a device error. */
|
|
71773
|
+
is_device_error: false;
|
|
71774
|
+
/** Date and time at which Seam created the error. */
|
|
71775
|
+
created_at: string;
|
|
71776
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71777
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
71778
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
71779
|
+
is_connected_account_error: true;
|
|
71626
71780
|
} | {
|
|
71627
71781
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71628
71782
|
message: string;
|
|
@@ -71742,17 +71896,6 @@ type Routes = {
|
|
|
71742
71896
|
is_bridge_error?: boolean | undefined;
|
|
71743
71897
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71744
71898
|
error_code: 'bridge_disconnected';
|
|
71745
|
-
} | {
|
|
71746
|
-
/** Date and time at which Seam created the error. */
|
|
71747
|
-
created_at: string;
|
|
71748
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71749
|
-
message: string;
|
|
71750
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
71751
|
-
is_connected_account_error?: boolean | undefined;
|
|
71752
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
71753
|
-
is_bridge_error?: boolean | undefined;
|
|
71754
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71755
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
71756
71899
|
})[];
|
|
71757
71900
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
71758
71901
|
warnings: ({
|
|
@@ -73065,6 +73208,17 @@ type Routes = {
|
|
|
73065
73208
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
73066
73209
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
73067
73210
|
is_connected_account_error: true;
|
|
73211
|
+
} | {
|
|
73212
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73213
|
+
message: string;
|
|
73214
|
+
/** Indicates that the error is not a device error. */
|
|
73215
|
+
is_device_error: false;
|
|
73216
|
+
/** Date and time at which Seam created the error. */
|
|
73217
|
+
created_at: string;
|
|
73218
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73219
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
73220
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
73221
|
+
is_connected_account_error: true;
|
|
73068
73222
|
} | {
|
|
73069
73223
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73070
73224
|
message: string;
|
|
@@ -73184,17 +73338,6 @@ type Routes = {
|
|
|
73184
73338
|
is_bridge_error?: boolean | undefined;
|
|
73185
73339
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73186
73340
|
error_code: 'bridge_disconnected';
|
|
73187
|
-
} | {
|
|
73188
|
-
/** Date and time at which Seam created the error. */
|
|
73189
|
-
created_at: string;
|
|
73190
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73191
|
-
message: string;
|
|
73192
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
73193
|
-
is_connected_account_error?: boolean | undefined;
|
|
73194
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
73195
|
-
is_bridge_error?: boolean | undefined;
|
|
73196
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73197
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
73198
73341
|
})[];
|
|
73199
73342
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
73200
73343
|
warnings: ({
|
|
@@ -73700,6 +73843,17 @@ type Routes = {
|
|
|
73700
73843
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
73701
73844
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
73702
73845
|
is_connected_account_error: true;
|
|
73846
|
+
} | {
|
|
73847
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73848
|
+
message: string;
|
|
73849
|
+
/** Indicates that the error is not a device error. */
|
|
73850
|
+
is_device_error: false;
|
|
73851
|
+
/** Date and time at which Seam created the error. */
|
|
73852
|
+
created_at: string;
|
|
73853
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73854
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
73855
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
73856
|
+
is_connected_account_error: true;
|
|
73703
73857
|
} | {
|
|
73704
73858
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73705
73859
|
message: string;
|
|
@@ -73819,17 +73973,6 @@ type Routes = {
|
|
|
73819
73973
|
is_bridge_error?: boolean | undefined;
|
|
73820
73974
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73821
73975
|
error_code: 'bridge_disconnected';
|
|
73822
|
-
} | {
|
|
73823
|
-
/** Date and time at which Seam created the error. */
|
|
73824
|
-
created_at: string;
|
|
73825
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73826
|
-
message: string;
|
|
73827
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
73828
|
-
is_connected_account_error?: boolean | undefined;
|
|
73829
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
73830
|
-
is_bridge_error?: boolean | undefined;
|
|
73831
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73832
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
73833
73976
|
})[];
|
|
73834
73977
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
73835
73978
|
warnings: ({
|
|
@@ -74237,6 +74380,17 @@ type Routes = {
|
|
|
74237
74380
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
74238
74381
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
74239
74382
|
is_connected_account_error: true;
|
|
74383
|
+
} | {
|
|
74384
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74385
|
+
message: string;
|
|
74386
|
+
/** Indicates that the error is not a device error. */
|
|
74387
|
+
is_device_error: false;
|
|
74388
|
+
/** Date and time at which Seam created the error. */
|
|
74389
|
+
created_at: string;
|
|
74390
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74391
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
74392
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
74393
|
+
is_connected_account_error: true;
|
|
74240
74394
|
} | {
|
|
74241
74395
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74242
74396
|
message: string;
|
|
@@ -74356,17 +74510,6 @@ type Routes = {
|
|
|
74356
74510
|
is_bridge_error?: boolean | undefined;
|
|
74357
74511
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74358
74512
|
error_code: 'bridge_disconnected';
|
|
74359
|
-
} | {
|
|
74360
|
-
/** Date and time at which Seam created the error. */
|
|
74361
|
-
created_at: string;
|
|
74362
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74363
|
-
message: string;
|
|
74364
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
74365
|
-
is_connected_account_error?: boolean | undefined;
|
|
74366
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
74367
|
-
is_bridge_error?: boolean | undefined;
|
|
74368
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74369
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
74370
74513
|
})[];
|
|
74371
74514
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
74372
74515
|
warnings: ({
|
|
@@ -83558,6 +83701,17 @@ type Routes = {
|
|
|
83558
83701
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
83559
83702
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
83560
83703
|
is_connected_account_error: true;
|
|
83704
|
+
} | {
|
|
83705
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83706
|
+
message: string;
|
|
83707
|
+
/** Indicates that the error is not a device error. */
|
|
83708
|
+
is_device_error: false;
|
|
83709
|
+
/** Date and time at which Seam created the error. */
|
|
83710
|
+
created_at: string;
|
|
83711
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83712
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
83713
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
83714
|
+
is_connected_account_error: true;
|
|
83561
83715
|
} | {
|
|
83562
83716
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83563
83717
|
message: string;
|
|
@@ -83677,17 +83831,6 @@ type Routes = {
|
|
|
83677
83831
|
is_bridge_error?: boolean | undefined;
|
|
83678
83832
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83679
83833
|
error_code: 'bridge_disconnected';
|
|
83680
|
-
} | {
|
|
83681
|
-
/** Date and time at which Seam created the error. */
|
|
83682
|
-
created_at: string;
|
|
83683
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83684
|
-
message: string;
|
|
83685
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
83686
|
-
is_connected_account_error?: boolean | undefined;
|
|
83687
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
83688
|
-
is_bridge_error?: boolean | undefined;
|
|
83689
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83690
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
83691
83834
|
})[];
|
|
83692
83835
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
83693
83836
|
warnings: ({
|
|
@@ -84950,6 +85093,17 @@ type Routes = {
|
|
|
84950
85093
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
84951
85094
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
84952
85095
|
is_connected_account_error: true;
|
|
85096
|
+
} | {
|
|
85097
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85098
|
+
message: string;
|
|
85099
|
+
/** Indicates that the error is not a device error. */
|
|
85100
|
+
is_device_error: false;
|
|
85101
|
+
/** Date and time at which Seam created the error. */
|
|
85102
|
+
created_at: string;
|
|
85103
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85104
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
85105
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
85106
|
+
is_connected_account_error: true;
|
|
84953
85107
|
} | {
|
|
84954
85108
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84955
85109
|
message: string;
|
|
@@ -85069,17 +85223,6 @@ type Routes = {
|
|
|
85069
85223
|
is_bridge_error?: boolean | undefined;
|
|
85070
85224
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85071
85225
|
error_code: 'bridge_disconnected';
|
|
85072
|
-
} | {
|
|
85073
|
-
/** Date and time at which Seam created the error. */
|
|
85074
|
-
created_at: string;
|
|
85075
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85076
|
-
message: string;
|
|
85077
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
85078
|
-
is_connected_account_error?: boolean | undefined;
|
|
85079
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
85080
|
-
is_bridge_error?: boolean | undefined;
|
|
85081
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85082
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
85083
85226
|
})[];
|
|
85084
85227
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
85085
85228
|
warnings: ({
|
|
@@ -86392,6 +86535,17 @@ type Routes = {
|
|
|
86392
86535
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
86393
86536
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
86394
86537
|
is_connected_account_error: true;
|
|
86538
|
+
} | {
|
|
86539
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86540
|
+
message: string;
|
|
86541
|
+
/** Indicates that the error is not a device error. */
|
|
86542
|
+
is_device_error: false;
|
|
86543
|
+
/** Date and time at which Seam created the error. */
|
|
86544
|
+
created_at: string;
|
|
86545
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86546
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
86547
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
86548
|
+
is_connected_account_error: true;
|
|
86395
86549
|
} | {
|
|
86396
86550
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86397
86551
|
message: string;
|
|
@@ -86511,17 +86665,6 @@ type Routes = {
|
|
|
86511
86665
|
is_bridge_error?: boolean | undefined;
|
|
86512
86666
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86513
86667
|
error_code: 'bridge_disconnected';
|
|
86514
|
-
} | {
|
|
86515
|
-
/** Date and time at which Seam created the error. */
|
|
86516
|
-
created_at: string;
|
|
86517
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86518
|
-
message: string;
|
|
86519
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
86520
|
-
is_connected_account_error?: boolean | undefined;
|
|
86521
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
86522
|
-
is_bridge_error?: boolean | undefined;
|
|
86523
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86524
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
86525
86668
|
})[];
|
|
86526
86669
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
86527
86670
|
warnings: ({
|
|
@@ -87783,6 +87926,17 @@ type Routes = {
|
|
|
87783
87926
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
87784
87927
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
87785
87928
|
is_connected_account_error: true;
|
|
87929
|
+
} | {
|
|
87930
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87931
|
+
message: string;
|
|
87932
|
+
/** Indicates that the error is not a device error. */
|
|
87933
|
+
is_device_error: false;
|
|
87934
|
+
/** Date and time at which Seam created the error. */
|
|
87935
|
+
created_at: string;
|
|
87936
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87937
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
87938
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
87939
|
+
is_connected_account_error: true;
|
|
87786
87940
|
} | {
|
|
87787
87941
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87788
87942
|
message: string;
|
|
@@ -87902,17 +88056,6 @@ type Routes = {
|
|
|
87902
88056
|
is_bridge_error?: boolean | undefined;
|
|
87903
88057
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87904
88058
|
error_code: 'bridge_disconnected';
|
|
87905
|
-
} | {
|
|
87906
|
-
/** Date and time at which Seam created the error. */
|
|
87907
|
-
created_at: string;
|
|
87908
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87909
|
-
message: string;
|
|
87910
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
87911
|
-
is_connected_account_error?: boolean | undefined;
|
|
87912
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
87913
|
-
is_bridge_error?: boolean | undefined;
|
|
87914
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87915
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
87916
88059
|
})[];
|
|
87917
88060
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
87918
88061
|
warnings: ({
|
|
@@ -95951,6 +96094,17 @@ type Routes = {
|
|
|
95951
96094
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
95952
96095
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
95953
96096
|
is_connected_account_error: true;
|
|
96097
|
+
} | {
|
|
96098
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96099
|
+
message: string;
|
|
96100
|
+
/** Indicates that the error is not a device error. */
|
|
96101
|
+
is_device_error: false;
|
|
96102
|
+
/** Date and time at which Seam created the error. */
|
|
96103
|
+
created_at: string;
|
|
96104
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
96105
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
96106
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
96107
|
+
is_connected_account_error: true;
|
|
95954
96108
|
} | {
|
|
95955
96109
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95956
96110
|
message: string;
|
|
@@ -96070,17 +96224,6 @@ type Routes = {
|
|
|
96070
96224
|
is_bridge_error?: boolean | undefined;
|
|
96071
96225
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
96072
96226
|
error_code: 'bridge_disconnected';
|
|
96073
|
-
} | {
|
|
96074
|
-
/** Date and time at which Seam created the error. */
|
|
96075
|
-
created_at: string;
|
|
96076
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96077
|
-
message: string;
|
|
96078
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
96079
|
-
is_connected_account_error?: boolean | undefined;
|
|
96080
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
96081
|
-
is_bridge_error?: boolean | undefined;
|
|
96082
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
96083
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
96084
96227
|
})[];
|
|
96085
96228
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
96086
96229
|
warnings: ({
|
|
@@ -97342,6 +97485,17 @@ type Routes = {
|
|
|
97342
97485
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
97343
97486
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
97344
97487
|
is_connected_account_error: true;
|
|
97488
|
+
} | {
|
|
97489
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97490
|
+
message: string;
|
|
97491
|
+
/** Indicates that the error is not a device error. */
|
|
97492
|
+
is_device_error: false;
|
|
97493
|
+
/** Date and time at which Seam created the error. */
|
|
97494
|
+
created_at: string;
|
|
97495
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97496
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
97497
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
97498
|
+
is_connected_account_error: true;
|
|
97345
97499
|
} | {
|
|
97346
97500
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97347
97501
|
message: string;
|
|
@@ -97461,17 +97615,6 @@ type Routes = {
|
|
|
97461
97615
|
is_bridge_error?: boolean | undefined;
|
|
97462
97616
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97463
97617
|
error_code: 'bridge_disconnected';
|
|
97464
|
-
} | {
|
|
97465
|
-
/** Date and time at which Seam created the error. */
|
|
97466
|
-
created_at: string;
|
|
97467
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97468
|
-
message: string;
|
|
97469
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
97470
|
-
is_connected_account_error?: boolean | undefined;
|
|
97471
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
97472
|
-
is_bridge_error?: boolean | undefined;
|
|
97473
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97474
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
97475
97618
|
})[];
|
|
97476
97619
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
97477
97620
|
warnings: ({
|
|
@@ -112794,6 +112937,17 @@ type Routes = {
|
|
|
112794
112937
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
112795
112938
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
112796
112939
|
is_connected_account_error: true;
|
|
112940
|
+
} | {
|
|
112941
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112942
|
+
message: string;
|
|
112943
|
+
/** Indicates that the error is not a device error. */
|
|
112944
|
+
is_device_error: false;
|
|
112945
|
+
/** Date and time at which Seam created the error. */
|
|
112946
|
+
created_at: string;
|
|
112947
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112948
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
112949
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
112950
|
+
is_connected_account_error: true;
|
|
112797
112951
|
} | {
|
|
112798
112952
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112799
112953
|
message: string;
|
|
@@ -112913,17 +113067,6 @@ type Routes = {
|
|
|
112913
113067
|
is_bridge_error?: boolean | undefined;
|
|
112914
113068
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112915
113069
|
error_code: 'bridge_disconnected';
|
|
112916
|
-
} | {
|
|
112917
|
-
/** Date and time at which Seam created the error. */
|
|
112918
|
-
created_at: string;
|
|
112919
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112920
|
-
message: string;
|
|
112921
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
112922
|
-
is_connected_account_error?: boolean | undefined;
|
|
112923
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
112924
|
-
is_bridge_error?: boolean | undefined;
|
|
112925
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112926
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
112927
113070
|
})[];
|
|
112928
113071
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
112929
113072
|
warnings: ({
|
|
@@ -120193,6 +120336,17 @@ type Routes = {
|
|
|
120193
120336
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
120194
120337
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
120195
120338
|
is_connected_account_error: true;
|
|
120339
|
+
} | {
|
|
120340
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120341
|
+
message: string;
|
|
120342
|
+
/** Indicates that the error is not a device error. */
|
|
120343
|
+
is_device_error: false;
|
|
120344
|
+
/** Date and time at which Seam created the error. */
|
|
120345
|
+
created_at: string;
|
|
120346
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
120347
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
120348
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
120349
|
+
is_connected_account_error: true;
|
|
120196
120350
|
} | {
|
|
120197
120351
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120198
120352
|
message: string;
|
|
@@ -120312,17 +120466,6 @@ type Routes = {
|
|
|
120312
120466
|
is_bridge_error?: boolean | undefined;
|
|
120313
120467
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
120314
120468
|
error_code: 'bridge_disconnected';
|
|
120315
|
-
} | {
|
|
120316
|
-
/** Date and time at which Seam created the error. */
|
|
120317
|
-
created_at: string;
|
|
120318
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120319
|
-
message: string;
|
|
120320
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
120321
|
-
is_connected_account_error?: boolean | undefined;
|
|
120322
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
120323
|
-
is_bridge_error?: boolean | undefined;
|
|
120324
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
120325
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
120326
120469
|
})[];
|
|
120327
120470
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
120328
120471
|
warnings: ({
|
|
@@ -125011,6 +125154,17 @@ type Routes = {
|
|
|
125011
125154
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
125012
125155
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
125013
125156
|
is_connected_account_error: true;
|
|
125157
|
+
} | {
|
|
125158
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
125159
|
+
message: string;
|
|
125160
|
+
/** Indicates that the error is not a device error. */
|
|
125161
|
+
is_device_error: false;
|
|
125162
|
+
/** Date and time at which Seam created the error. */
|
|
125163
|
+
created_at: string;
|
|
125164
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125165
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
125166
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
125167
|
+
is_connected_account_error: true;
|
|
125014
125168
|
} | {
|
|
125015
125169
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
125016
125170
|
message: string;
|
|
@@ -125130,17 +125284,6 @@ type Routes = {
|
|
|
125130
125284
|
is_bridge_error?: boolean | undefined;
|
|
125131
125285
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125132
125286
|
error_code: 'bridge_disconnected';
|
|
125133
|
-
} | {
|
|
125134
|
-
/** Date and time at which Seam created the error. */
|
|
125135
|
-
created_at: string;
|
|
125136
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
125137
|
-
message: string;
|
|
125138
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
125139
|
-
is_connected_account_error?: boolean | undefined;
|
|
125140
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
125141
|
-
is_bridge_error?: boolean | undefined;
|
|
125142
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125143
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
125144
125287
|
})[];
|
|
125145
125288
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
125146
125289
|
warnings: ({
|
|
@@ -126402,6 +126545,17 @@ type Routes = {
|
|
|
126402
126545
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
126403
126546
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
126404
126547
|
is_connected_account_error: true;
|
|
126548
|
+
} | {
|
|
126549
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
126550
|
+
message: string;
|
|
126551
|
+
/** Indicates that the error is not a device error. */
|
|
126552
|
+
is_device_error: false;
|
|
126553
|
+
/** Date and time at which Seam created the error. */
|
|
126554
|
+
created_at: string;
|
|
126555
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
126556
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
126557
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
126558
|
+
is_connected_account_error: true;
|
|
126405
126559
|
} | {
|
|
126406
126560
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
126407
126561
|
message: string;
|
|
@@ -126521,17 +126675,6 @@ type Routes = {
|
|
|
126521
126675
|
is_bridge_error?: boolean | undefined;
|
|
126522
126676
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
126523
126677
|
error_code: 'bridge_disconnected';
|
|
126524
|
-
} | {
|
|
126525
|
-
/** Date and time at which Seam created the error. */
|
|
126526
|
-
created_at: string;
|
|
126527
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
126528
|
-
message: string;
|
|
126529
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
126530
|
-
is_connected_account_error?: boolean | undefined;
|
|
126531
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
126532
|
-
is_bridge_error?: boolean | undefined;
|
|
126533
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
126534
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
126535
126678
|
})[];
|
|
126536
126679
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
126537
126680
|
warnings: ({
|
|
@@ -135509,6 +135652,17 @@ type Routes = {
|
|
|
135509
135652
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
135510
135653
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
135511
135654
|
is_connected_account_error: true;
|
|
135655
|
+
} | {
|
|
135656
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135657
|
+
message: string;
|
|
135658
|
+
/** Indicates that the error is not a device error. */
|
|
135659
|
+
is_device_error: false;
|
|
135660
|
+
/** Date and time at which Seam created the error. */
|
|
135661
|
+
created_at: string;
|
|
135662
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135663
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
135664
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
135665
|
+
is_connected_account_error: true;
|
|
135512
135666
|
} | {
|
|
135513
135667
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135514
135668
|
message: string;
|
|
@@ -135628,17 +135782,6 @@ type Routes = {
|
|
|
135628
135782
|
is_bridge_error?: boolean | undefined;
|
|
135629
135783
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135630
135784
|
error_code: 'bridge_disconnected';
|
|
135631
|
-
} | {
|
|
135632
|
-
/** Date and time at which Seam created the error. */
|
|
135633
|
-
created_at: string;
|
|
135634
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135635
|
-
message: string;
|
|
135636
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
135637
|
-
is_connected_account_error?: boolean | undefined;
|
|
135638
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
135639
|
-
is_bridge_error?: boolean | undefined;
|
|
135640
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135641
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
135642
135785
|
})[];
|
|
135643
135786
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
135644
135787
|
warnings: ({
|
|
@@ -136902,6 +137045,17 @@ type Routes = {
|
|
|
136902
137045
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
136903
137046
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
136904
137047
|
is_connected_account_error: true;
|
|
137048
|
+
} | {
|
|
137049
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137050
|
+
message: string;
|
|
137051
|
+
/** Indicates that the error is not a device error. */
|
|
137052
|
+
is_device_error: false;
|
|
137053
|
+
/** Date and time at which Seam created the error. */
|
|
137054
|
+
created_at: string;
|
|
137055
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137056
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
137057
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
137058
|
+
is_connected_account_error: true;
|
|
136905
137059
|
} | {
|
|
136906
137060
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136907
137061
|
message: string;
|
|
@@ -137021,17 +137175,6 @@ type Routes = {
|
|
|
137021
137175
|
is_bridge_error?: boolean | undefined;
|
|
137022
137176
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137023
137177
|
error_code: 'bridge_disconnected';
|
|
137024
|
-
} | {
|
|
137025
|
-
/** Date and time at which Seam created the error. */
|
|
137026
|
-
created_at: string;
|
|
137027
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137028
|
-
message: string;
|
|
137029
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
137030
|
-
is_connected_account_error?: boolean | undefined;
|
|
137031
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
137032
|
-
is_bridge_error?: boolean | undefined;
|
|
137033
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137034
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
137035
137178
|
})[];
|
|
137036
137179
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
137037
137180
|
warnings: ({
|
|
@@ -139550,6 +139693,17 @@ type Routes = {
|
|
|
139550
139693
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
139551
139694
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
139552
139695
|
is_connected_account_error: true;
|
|
139696
|
+
} | {
|
|
139697
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
139698
|
+
message: string;
|
|
139699
|
+
/** Indicates that the error is not a device error. */
|
|
139700
|
+
is_device_error: false;
|
|
139701
|
+
/** Date and time at which Seam created the error. */
|
|
139702
|
+
created_at: string;
|
|
139703
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139704
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
139705
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
139706
|
+
is_connected_account_error: true;
|
|
139553
139707
|
} | {
|
|
139554
139708
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
139555
139709
|
message: string;
|
|
@@ -139669,17 +139823,6 @@ type Routes = {
|
|
|
139669
139823
|
is_bridge_error?: boolean | undefined;
|
|
139670
139824
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139671
139825
|
error_code: 'bridge_disconnected';
|
|
139672
|
-
} | {
|
|
139673
|
-
/** Date and time at which Seam created the error. */
|
|
139674
|
-
created_at: string;
|
|
139675
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
139676
|
-
message: string;
|
|
139677
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
139678
|
-
is_connected_account_error?: boolean | undefined;
|
|
139679
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
139680
|
-
is_bridge_error?: boolean | undefined;
|
|
139681
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139682
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
139683
139826
|
})[];
|
|
139684
139827
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
139685
139828
|
warnings: ({
|
|
@@ -142852,6 +142995,17 @@ type Routes = {
|
|
|
142852
142995
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
142853
142996
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
142854
142997
|
is_connected_account_error: true;
|
|
142998
|
+
} | {
|
|
142999
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
143000
|
+
message: string;
|
|
143001
|
+
/** Indicates that the error is not a device error. */
|
|
143002
|
+
is_device_error: false;
|
|
143003
|
+
/** Date and time at which Seam created the error. */
|
|
143004
|
+
created_at: string;
|
|
143005
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
143006
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
143007
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
143008
|
+
is_connected_account_error: true;
|
|
142855
143009
|
} | {
|
|
142856
143010
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142857
143011
|
message: string;
|
|
@@ -142971,17 +143125,6 @@ type Routes = {
|
|
|
142971
143125
|
is_bridge_error?: boolean | undefined;
|
|
142972
143126
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142973
143127
|
error_code: 'bridge_disconnected';
|
|
142974
|
-
} | {
|
|
142975
|
-
/** Date and time at which Seam created the error. */
|
|
142976
|
-
created_at: string;
|
|
142977
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142978
|
-
message: string;
|
|
142979
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
142980
|
-
is_connected_account_error?: boolean | undefined;
|
|
142981
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
142982
|
-
is_bridge_error?: boolean | undefined;
|
|
142983
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142984
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
142985
143128
|
})[];
|
|
142986
143129
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
142987
143130
|
warnings: ({
|
|
@@ -147274,6 +147417,17 @@ type Routes = {
|
|
|
147274
147417
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
147275
147418
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
147276
147419
|
is_connected_account_error: true;
|
|
147420
|
+
} | {
|
|
147421
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147422
|
+
message: string;
|
|
147423
|
+
/** Indicates that the error is not a device error. */
|
|
147424
|
+
is_device_error: false;
|
|
147425
|
+
/** Date and time at which Seam created the error. */
|
|
147426
|
+
created_at: string;
|
|
147427
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147428
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
147429
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
147430
|
+
is_connected_account_error: true;
|
|
147277
147431
|
} | {
|
|
147278
147432
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147279
147433
|
message: string;
|
|
@@ -147393,17 +147547,6 @@ type Routes = {
|
|
|
147393
147547
|
is_bridge_error?: boolean | undefined;
|
|
147394
147548
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147395
147549
|
error_code: 'bridge_disconnected';
|
|
147396
|
-
} | {
|
|
147397
|
-
/** Date and time at which Seam created the error. */
|
|
147398
|
-
created_at: string;
|
|
147399
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147400
|
-
message: string;
|
|
147401
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
147402
|
-
is_connected_account_error?: boolean | undefined;
|
|
147403
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
147404
|
-
is_bridge_error?: boolean | undefined;
|
|
147405
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147406
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
147407
147550
|
})[];
|
|
147408
147551
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
147409
147552
|
warnings: ({
|
|
@@ -147701,6 +147844,17 @@ type Routes = {
|
|
|
147701
147844
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
147702
147845
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
147703
147846
|
is_connected_account_error: true;
|
|
147847
|
+
} | {
|
|
147848
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147849
|
+
message: string;
|
|
147850
|
+
/** Indicates that the error is not a device error. */
|
|
147851
|
+
is_device_error: false;
|
|
147852
|
+
/** Date and time at which Seam created the error. */
|
|
147853
|
+
created_at: string;
|
|
147854
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147855
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
147856
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
147857
|
+
is_connected_account_error: true;
|
|
147704
147858
|
} | {
|
|
147705
147859
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147706
147860
|
message: string;
|
|
@@ -147820,17 +147974,6 @@ type Routes = {
|
|
|
147820
147974
|
is_bridge_error?: boolean | undefined;
|
|
147821
147975
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147822
147976
|
error_code: 'bridge_disconnected';
|
|
147823
|
-
} | {
|
|
147824
|
-
/** Date and time at which Seam created the error. */
|
|
147825
|
-
created_at: string;
|
|
147826
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147827
|
-
message: string;
|
|
147828
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
147829
|
-
is_connected_account_error?: boolean | undefined;
|
|
147830
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
147831
|
-
is_bridge_error?: boolean | undefined;
|
|
147832
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147833
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
147834
147977
|
})[];
|
|
147835
147978
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
147836
147979
|
warnings: ({
|