@seamapi/types 1.768.1 → 1.769.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 +106 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +744 -0
- package/dist/index.cjs +106 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +60 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +22 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js +22 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +84 -0
- package/lib/seam/connect/openapi.js +64 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +600 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +34 -0
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +34 -0
- package/src/lib/seam/connect/openapi.ts +76 -0
- package/src/lib/seam/connect/route-types.ts +720 -0
|
@@ -486,6 +486,16 @@ export type Routes = {
|
|
|
486
486
|
type: 'encoder_not_online';
|
|
487
487
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
488
488
|
message: string;
|
|
489
|
+
} | {
|
|
490
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
491
|
+
type: 'encoder_timeout_error';
|
|
492
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
493
|
+
message: string;
|
|
494
|
+
} | {
|
|
495
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
496
|
+
type: 'bridge_disconnected';
|
|
497
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
498
|
+
message: string;
|
|
489
499
|
};
|
|
490
500
|
} | {
|
|
491
501
|
/** ID of the action attempt. */
|
|
@@ -805,6 +815,16 @@ export type Routes = {
|
|
|
805
815
|
type: 'encoder_not_online';
|
|
806
816
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
807
817
|
message: string;
|
|
818
|
+
} | {
|
|
819
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
820
|
+
type: 'encoder_timeout_error';
|
|
821
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
822
|
+
message: string;
|
|
823
|
+
} | {
|
|
824
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
825
|
+
type: 'bridge_disconnected';
|
|
826
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
827
|
+
message: string;
|
|
808
828
|
};
|
|
809
829
|
} | {
|
|
810
830
|
/** ID of the action attempt. */
|
|
@@ -2864,6 +2884,16 @@ export type Routes = {
|
|
|
2864
2884
|
type: 'encoder_not_online';
|
|
2865
2885
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2866
2886
|
message: string;
|
|
2887
|
+
} | {
|
|
2888
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
2889
|
+
type: 'encoder_timeout_error';
|
|
2890
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2891
|
+
message: string;
|
|
2892
|
+
} | {
|
|
2893
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
2894
|
+
type: 'bridge_disconnected';
|
|
2895
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2896
|
+
message: string;
|
|
2867
2897
|
};
|
|
2868
2898
|
} | {
|
|
2869
2899
|
/** ID of the action attempt. */
|
|
@@ -3183,6 +3213,16 @@ export type Routes = {
|
|
|
3183
3213
|
type: 'encoder_not_online';
|
|
3184
3214
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3185
3215
|
message: string;
|
|
3216
|
+
} | {
|
|
3217
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
3218
|
+
type: 'encoder_timeout_error';
|
|
3219
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3220
|
+
message: string;
|
|
3221
|
+
} | {
|
|
3222
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
3223
|
+
type: 'bridge_disconnected';
|
|
3224
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3225
|
+
message: string;
|
|
3186
3226
|
};
|
|
3187
3227
|
} | {
|
|
3188
3228
|
/** ID of the action attempt. */
|
|
@@ -6937,6 +6977,16 @@ export type Routes = {
|
|
|
6937
6977
|
type: 'encoder_not_online';
|
|
6938
6978
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6939
6979
|
message: string;
|
|
6980
|
+
} | {
|
|
6981
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
6982
|
+
type: 'encoder_timeout_error';
|
|
6983
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6984
|
+
message: string;
|
|
6985
|
+
} | {
|
|
6986
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
6987
|
+
type: 'bridge_disconnected';
|
|
6988
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6989
|
+
message: string;
|
|
6940
6990
|
};
|
|
6941
6991
|
} | {
|
|
6942
6992
|
/** ID of the action attempt. */
|
|
@@ -7256,6 +7306,16 @@ export type Routes = {
|
|
|
7256
7306
|
type: 'encoder_not_online';
|
|
7257
7307
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7258
7308
|
message: string;
|
|
7309
|
+
} | {
|
|
7310
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
7311
|
+
type: 'encoder_timeout_error';
|
|
7312
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7313
|
+
message: string;
|
|
7314
|
+
} | {
|
|
7315
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
7316
|
+
type: 'bridge_disconnected';
|
|
7317
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7318
|
+
message: string;
|
|
7259
7319
|
};
|
|
7260
7320
|
} | {
|
|
7261
7321
|
/** ID of the action attempt. */
|
|
@@ -9351,6 +9411,16 @@ export type Routes = {
|
|
|
9351
9411
|
type: 'encoder_not_online';
|
|
9352
9412
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9353
9413
|
message: string;
|
|
9414
|
+
} | {
|
|
9415
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
9416
|
+
type: 'encoder_timeout_error';
|
|
9417
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9418
|
+
message: string;
|
|
9419
|
+
} | {
|
|
9420
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
9421
|
+
type: 'bridge_disconnected';
|
|
9422
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9423
|
+
message: string;
|
|
9354
9424
|
};
|
|
9355
9425
|
} | {
|
|
9356
9426
|
/** ID of the action attempt. */
|
|
@@ -9670,6 +9740,16 @@ export type Routes = {
|
|
|
9670
9740
|
type: 'encoder_not_online';
|
|
9671
9741
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9672
9742
|
message: string;
|
|
9743
|
+
} | {
|
|
9744
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
9745
|
+
type: 'encoder_timeout_error';
|
|
9746
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9747
|
+
message: string;
|
|
9748
|
+
} | {
|
|
9749
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
9750
|
+
type: 'bridge_disconnected';
|
|
9751
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9752
|
+
message: string;
|
|
9673
9753
|
};
|
|
9674
9754
|
} | {
|
|
9675
9755
|
/** ID of the action attempt. */
|
|
@@ -13946,6 +14026,16 @@ export type Routes = {
|
|
|
13946
14026
|
type: 'encoder_not_online';
|
|
13947
14027
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13948
14028
|
message: string;
|
|
14029
|
+
} | {
|
|
14030
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
14031
|
+
type: 'encoder_timeout_error';
|
|
14032
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14033
|
+
message: string;
|
|
14034
|
+
} | {
|
|
14035
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
14036
|
+
type: 'bridge_disconnected';
|
|
14037
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14038
|
+
message: string;
|
|
13949
14039
|
};
|
|
13950
14040
|
} | {
|
|
13951
14041
|
/** ID of the action attempt. */
|
|
@@ -14265,6 +14355,16 @@ export type Routes = {
|
|
|
14265
14355
|
type: 'encoder_not_online';
|
|
14266
14356
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14267
14357
|
message: string;
|
|
14358
|
+
} | {
|
|
14359
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
14360
|
+
type: 'encoder_timeout_error';
|
|
14361
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14362
|
+
message: string;
|
|
14363
|
+
} | {
|
|
14364
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
14365
|
+
type: 'bridge_disconnected';
|
|
14366
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14367
|
+
message: string;
|
|
14268
14368
|
};
|
|
14269
14369
|
} | {
|
|
14270
14370
|
/** ID of the action attempt. */
|
|
@@ -20500,6 +20600,16 @@ export type Routes = {
|
|
|
20500
20600
|
type: 'encoder_not_online';
|
|
20501
20601
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20502
20602
|
message: string;
|
|
20603
|
+
} | {
|
|
20604
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
20605
|
+
type: 'encoder_timeout_error';
|
|
20606
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20607
|
+
message: string;
|
|
20608
|
+
} | {
|
|
20609
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
20610
|
+
type: 'bridge_disconnected';
|
|
20611
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20612
|
+
message: string;
|
|
20503
20613
|
};
|
|
20504
20614
|
} | {
|
|
20505
20615
|
/** ID of the action attempt. */
|
|
@@ -20819,6 +20929,16 @@ export type Routes = {
|
|
|
20819
20929
|
type: 'encoder_not_online';
|
|
20820
20930
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20821
20931
|
message: string;
|
|
20932
|
+
} | {
|
|
20933
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
20934
|
+
type: 'encoder_timeout_error';
|
|
20935
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20936
|
+
message: string;
|
|
20937
|
+
} | {
|
|
20938
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
20939
|
+
type: 'bridge_disconnected';
|
|
20940
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20941
|
+
message: string;
|
|
20822
20942
|
};
|
|
20823
20943
|
} | {
|
|
20824
20944
|
/** ID of the action attempt. */
|
|
@@ -21918,6 +22038,16 @@ export type Routes = {
|
|
|
21918
22038
|
type: 'encoder_not_online';
|
|
21919
22039
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21920
22040
|
message: string;
|
|
22041
|
+
} | {
|
|
22042
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
22043
|
+
type: 'encoder_timeout_error';
|
|
22044
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22045
|
+
message: string;
|
|
22046
|
+
} | {
|
|
22047
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
22048
|
+
type: 'bridge_disconnected';
|
|
22049
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22050
|
+
message: string;
|
|
21921
22051
|
};
|
|
21922
22052
|
} | {
|
|
21923
22053
|
/** ID of the action attempt. */
|
|
@@ -22237,6 +22367,16 @@ export type Routes = {
|
|
|
22237
22367
|
type: 'encoder_not_online';
|
|
22238
22368
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22239
22369
|
message: string;
|
|
22370
|
+
} | {
|
|
22371
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
22372
|
+
type: 'encoder_timeout_error';
|
|
22373
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22374
|
+
message: string;
|
|
22375
|
+
} | {
|
|
22376
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
22377
|
+
type: 'bridge_disconnected';
|
|
22378
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22379
|
+
message: string;
|
|
22240
22380
|
};
|
|
22241
22381
|
} | {
|
|
22242
22382
|
/** ID of the action attempt. */
|
|
@@ -23798,6 +23938,16 @@ export type Routes = {
|
|
|
23798
23938
|
type: 'encoder_not_online';
|
|
23799
23939
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23800
23940
|
message: string;
|
|
23941
|
+
} | {
|
|
23942
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
23943
|
+
type: 'encoder_timeout_error';
|
|
23944
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23945
|
+
message: string;
|
|
23946
|
+
} | {
|
|
23947
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
23948
|
+
type: 'bridge_disconnected';
|
|
23949
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23950
|
+
message: string;
|
|
23801
23951
|
};
|
|
23802
23952
|
} | {
|
|
23803
23953
|
/** ID of the action attempt. */
|
|
@@ -24117,6 +24267,16 @@ export type Routes = {
|
|
|
24117
24267
|
type: 'encoder_not_online';
|
|
24118
24268
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24119
24269
|
message: string;
|
|
24270
|
+
} | {
|
|
24271
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
24272
|
+
type: 'encoder_timeout_error';
|
|
24273
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24274
|
+
message: string;
|
|
24275
|
+
} | {
|
|
24276
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
24277
|
+
type: 'bridge_disconnected';
|
|
24278
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24279
|
+
message: string;
|
|
24120
24280
|
};
|
|
24121
24281
|
} | {
|
|
24122
24282
|
/** ID of the action attempt. */
|
|
@@ -27145,6 +27305,16 @@ export type Routes = {
|
|
|
27145
27305
|
type: 'encoder_not_online';
|
|
27146
27306
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27147
27307
|
message: string;
|
|
27308
|
+
} | {
|
|
27309
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
27310
|
+
type: 'encoder_timeout_error';
|
|
27311
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27312
|
+
message: string;
|
|
27313
|
+
} | {
|
|
27314
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
27315
|
+
type: 'bridge_disconnected';
|
|
27316
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27317
|
+
message: string;
|
|
27148
27318
|
};
|
|
27149
27319
|
} | {
|
|
27150
27320
|
/** ID of the action attempt. */
|
|
@@ -27464,6 +27634,16 @@ export type Routes = {
|
|
|
27464
27634
|
type: 'encoder_not_online';
|
|
27465
27635
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27466
27636
|
message: string;
|
|
27637
|
+
} | {
|
|
27638
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
27639
|
+
type: 'encoder_timeout_error';
|
|
27640
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27641
|
+
message: string;
|
|
27642
|
+
} | {
|
|
27643
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
27644
|
+
type: 'bridge_disconnected';
|
|
27645
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27646
|
+
message: string;
|
|
27467
27647
|
};
|
|
27468
27648
|
} | {
|
|
27469
27649
|
/** ID of the action attempt. */
|
|
@@ -28456,6 +28636,16 @@ export type Routes = {
|
|
|
28456
28636
|
type: 'encoder_not_online';
|
|
28457
28637
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28458
28638
|
message: string;
|
|
28639
|
+
} | {
|
|
28640
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
28641
|
+
type: 'encoder_timeout_error';
|
|
28642
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28643
|
+
message: string;
|
|
28644
|
+
} | {
|
|
28645
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
28646
|
+
type: 'bridge_disconnected';
|
|
28647
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28648
|
+
message: string;
|
|
28459
28649
|
};
|
|
28460
28650
|
} | {
|
|
28461
28651
|
/** ID of the action attempt. */
|
|
@@ -28775,6 +28965,16 @@ export type Routes = {
|
|
|
28775
28965
|
type: 'encoder_not_online';
|
|
28776
28966
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28777
28967
|
message: string;
|
|
28968
|
+
} | {
|
|
28969
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
28970
|
+
type: 'encoder_timeout_error';
|
|
28971
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28972
|
+
message: string;
|
|
28973
|
+
} | {
|
|
28974
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
28975
|
+
type: 'bridge_disconnected';
|
|
28976
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28977
|
+
message: string;
|
|
28778
28978
|
};
|
|
28779
28979
|
} | {
|
|
28780
28980
|
/** ID of the action attempt. */
|
|
@@ -41288,6 +41488,16 @@ export type Routes = {
|
|
|
41288
41488
|
type: 'encoder_not_online';
|
|
41289
41489
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41290
41490
|
message: string;
|
|
41491
|
+
} | {
|
|
41492
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
41493
|
+
type: 'encoder_timeout_error';
|
|
41494
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41495
|
+
message: string;
|
|
41496
|
+
} | {
|
|
41497
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
41498
|
+
type: 'bridge_disconnected';
|
|
41499
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41500
|
+
message: string;
|
|
41291
41501
|
};
|
|
41292
41502
|
} | {
|
|
41293
41503
|
/** ID of the action attempt. */
|
|
@@ -41607,6 +41817,16 @@ export type Routes = {
|
|
|
41607
41817
|
type: 'encoder_not_online';
|
|
41608
41818
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41609
41819
|
message: string;
|
|
41820
|
+
} | {
|
|
41821
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
41822
|
+
type: 'encoder_timeout_error';
|
|
41823
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41824
|
+
message: string;
|
|
41825
|
+
} | {
|
|
41826
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
41827
|
+
type: 'bridge_disconnected';
|
|
41828
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41829
|
+
message: string;
|
|
41610
41830
|
};
|
|
41611
41831
|
} | {
|
|
41612
41832
|
/** ID of the action attempt. */
|
|
@@ -47945,6 +48165,16 @@ export type Routes = {
|
|
|
47945
48165
|
type: 'encoder_not_online';
|
|
47946
48166
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47947
48167
|
message: string;
|
|
48168
|
+
} | {
|
|
48169
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
48170
|
+
type: 'encoder_timeout_error';
|
|
48171
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48172
|
+
message: string;
|
|
48173
|
+
} | {
|
|
48174
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
48175
|
+
type: 'bridge_disconnected';
|
|
48176
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48177
|
+
message: string;
|
|
47948
48178
|
};
|
|
47949
48179
|
} | {
|
|
47950
48180
|
/** ID of the action attempt. */
|
|
@@ -48264,6 +48494,16 @@ export type Routes = {
|
|
|
48264
48494
|
type: 'encoder_not_online';
|
|
48265
48495
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48266
48496
|
message: string;
|
|
48497
|
+
} | {
|
|
48498
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
48499
|
+
type: 'encoder_timeout_error';
|
|
48500
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48501
|
+
message: string;
|
|
48502
|
+
} | {
|
|
48503
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
48504
|
+
type: 'bridge_disconnected';
|
|
48505
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48506
|
+
message: string;
|
|
48267
48507
|
};
|
|
48268
48508
|
} | {
|
|
48269
48509
|
/** ID of the action attempt. */
|
|
@@ -49257,6 +49497,16 @@ export type Routes = {
|
|
|
49257
49497
|
type: 'encoder_not_online';
|
|
49258
49498
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49259
49499
|
message: string;
|
|
49500
|
+
} | {
|
|
49501
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
49502
|
+
type: 'encoder_timeout_error';
|
|
49503
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49504
|
+
message: string;
|
|
49505
|
+
} | {
|
|
49506
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
49507
|
+
type: 'bridge_disconnected';
|
|
49508
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49509
|
+
message: string;
|
|
49260
49510
|
};
|
|
49261
49511
|
} | {
|
|
49262
49512
|
/** ID of the action attempt. */
|
|
@@ -49576,6 +49826,16 @@ export type Routes = {
|
|
|
49576
49826
|
type: 'encoder_not_online';
|
|
49577
49827
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49578
49828
|
message: string;
|
|
49829
|
+
} | {
|
|
49830
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
49831
|
+
type: 'encoder_timeout_error';
|
|
49832
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49833
|
+
message: string;
|
|
49834
|
+
} | {
|
|
49835
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
49836
|
+
type: 'bridge_disconnected';
|
|
49837
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49838
|
+
message: string;
|
|
49579
49839
|
};
|
|
49580
49840
|
} | {
|
|
49581
49841
|
/** ID of the action attempt. */
|
|
@@ -50567,6 +50827,16 @@ export type Routes = {
|
|
|
50567
50827
|
type: 'encoder_not_online';
|
|
50568
50828
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50569
50829
|
message: string;
|
|
50830
|
+
} | {
|
|
50831
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
50832
|
+
type: 'encoder_timeout_error';
|
|
50833
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50834
|
+
message: string;
|
|
50835
|
+
} | {
|
|
50836
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
50837
|
+
type: 'bridge_disconnected';
|
|
50838
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50839
|
+
message: string;
|
|
50570
50840
|
};
|
|
50571
50841
|
} | {
|
|
50572
50842
|
/** ID of the action attempt. */
|
|
@@ -50886,6 +51156,16 @@ export type Routes = {
|
|
|
50886
51156
|
type: 'encoder_not_online';
|
|
50887
51157
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50888
51158
|
message: string;
|
|
51159
|
+
} | {
|
|
51160
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
51161
|
+
type: 'encoder_timeout_error';
|
|
51162
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51163
|
+
message: string;
|
|
51164
|
+
} | {
|
|
51165
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
51166
|
+
type: 'bridge_disconnected';
|
|
51167
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51168
|
+
message: string;
|
|
50889
51169
|
};
|
|
50890
51170
|
} | {
|
|
50891
51171
|
/** ID of the action attempt. */
|
|
@@ -51879,6 +52159,16 @@ export type Routes = {
|
|
|
51879
52159
|
type: 'encoder_not_online';
|
|
51880
52160
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51881
52161
|
message: string;
|
|
52162
|
+
} | {
|
|
52163
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
52164
|
+
type: 'encoder_timeout_error';
|
|
52165
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52166
|
+
message: string;
|
|
52167
|
+
} | {
|
|
52168
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
52169
|
+
type: 'bridge_disconnected';
|
|
52170
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52171
|
+
message: string;
|
|
51882
52172
|
};
|
|
51883
52173
|
} | {
|
|
51884
52174
|
/** ID of the action attempt. */
|
|
@@ -52198,6 +52488,16 @@ export type Routes = {
|
|
|
52198
52488
|
type: 'encoder_not_online';
|
|
52199
52489
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52200
52490
|
message: string;
|
|
52491
|
+
} | {
|
|
52492
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
52493
|
+
type: 'encoder_timeout_error';
|
|
52494
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52495
|
+
message: string;
|
|
52496
|
+
} | {
|
|
52497
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
52498
|
+
type: 'bridge_disconnected';
|
|
52499
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52500
|
+
message: string;
|
|
52201
52501
|
};
|
|
52202
52502
|
} | {
|
|
52203
52503
|
/** ID of the action attempt. */
|
|
@@ -55890,6 +56190,16 @@ export type Routes = {
|
|
|
55890
56190
|
type: 'encoder_not_online';
|
|
55891
56191
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55892
56192
|
message: string;
|
|
56193
|
+
} | {
|
|
56194
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
56195
|
+
type: 'encoder_timeout_error';
|
|
56196
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56197
|
+
message: string;
|
|
56198
|
+
} | {
|
|
56199
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
56200
|
+
type: 'bridge_disconnected';
|
|
56201
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56202
|
+
message: string;
|
|
55893
56203
|
};
|
|
55894
56204
|
} | {
|
|
55895
56205
|
/** ID of the action attempt. */
|
|
@@ -56209,6 +56519,16 @@ export type Routes = {
|
|
|
56209
56519
|
type: 'encoder_not_online';
|
|
56210
56520
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56211
56521
|
message: string;
|
|
56522
|
+
} | {
|
|
56523
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
56524
|
+
type: 'encoder_timeout_error';
|
|
56525
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56526
|
+
message: string;
|
|
56527
|
+
} | {
|
|
56528
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
56529
|
+
type: 'bridge_disconnected';
|
|
56530
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56531
|
+
message: string;
|
|
56212
56532
|
};
|
|
56213
56533
|
} | {
|
|
56214
56534
|
/** ID of the action attempt. */
|
|
@@ -57221,6 +57541,16 @@ export type Routes = {
|
|
|
57221
57541
|
type: 'encoder_not_online';
|
|
57222
57542
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57223
57543
|
message: string;
|
|
57544
|
+
} | {
|
|
57545
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
57546
|
+
type: 'encoder_timeout_error';
|
|
57547
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57548
|
+
message: string;
|
|
57549
|
+
} | {
|
|
57550
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
57551
|
+
type: 'bridge_disconnected';
|
|
57552
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57553
|
+
message: string;
|
|
57224
57554
|
};
|
|
57225
57555
|
} | {
|
|
57226
57556
|
/** ID of the action attempt. */
|
|
@@ -57540,6 +57870,16 @@ export type Routes = {
|
|
|
57540
57870
|
type: 'encoder_not_online';
|
|
57541
57871
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57542
57872
|
message: string;
|
|
57873
|
+
} | {
|
|
57874
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
57875
|
+
type: 'encoder_timeout_error';
|
|
57876
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57877
|
+
message: string;
|
|
57878
|
+
} | {
|
|
57879
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
57880
|
+
type: 'bridge_disconnected';
|
|
57881
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57882
|
+
message: string;
|
|
57543
57883
|
};
|
|
57544
57884
|
} | {
|
|
57545
57885
|
/** ID of the action attempt. */
|
|
@@ -58608,6 +58948,16 @@ export type Routes = {
|
|
|
58608
58948
|
type: 'encoder_not_online';
|
|
58609
58949
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58610
58950
|
message: string;
|
|
58951
|
+
} | {
|
|
58952
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
58953
|
+
type: 'encoder_timeout_error';
|
|
58954
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58955
|
+
message: string;
|
|
58956
|
+
} | {
|
|
58957
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
58958
|
+
type: 'bridge_disconnected';
|
|
58959
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58960
|
+
message: string;
|
|
58611
58961
|
};
|
|
58612
58962
|
} | {
|
|
58613
58963
|
/** ID of the action attempt. */
|
|
@@ -58927,6 +59277,16 @@ export type Routes = {
|
|
|
58927
59277
|
type: 'encoder_not_online';
|
|
58928
59278
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58929
59279
|
message: string;
|
|
59280
|
+
} | {
|
|
59281
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
59282
|
+
type: 'encoder_timeout_error';
|
|
59283
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59284
|
+
message: string;
|
|
59285
|
+
} | {
|
|
59286
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
59287
|
+
type: 'bridge_disconnected';
|
|
59288
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59289
|
+
message: string;
|
|
58930
59290
|
};
|
|
58931
59291
|
} | {
|
|
58932
59292
|
/** ID of the action attempt. */
|
|
@@ -60889,6 +61249,16 @@ export type Routes = {
|
|
|
60889
61249
|
type: 'encoder_not_online';
|
|
60890
61250
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
60891
61251
|
message: string;
|
|
61252
|
+
} | {
|
|
61253
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
61254
|
+
type: 'encoder_timeout_error';
|
|
61255
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61256
|
+
message: string;
|
|
61257
|
+
} | {
|
|
61258
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
61259
|
+
type: 'bridge_disconnected';
|
|
61260
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61261
|
+
message: string;
|
|
60892
61262
|
};
|
|
60893
61263
|
} | {
|
|
60894
61264
|
/** ID of the action attempt. */
|
|
@@ -61208,6 +61578,16 @@ export type Routes = {
|
|
|
61208
61578
|
type: 'encoder_not_online';
|
|
61209
61579
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61210
61580
|
message: string;
|
|
61581
|
+
} | {
|
|
61582
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
61583
|
+
type: 'encoder_timeout_error';
|
|
61584
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61585
|
+
message: string;
|
|
61586
|
+
} | {
|
|
61587
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
61588
|
+
type: 'bridge_disconnected';
|
|
61589
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61590
|
+
message: string;
|
|
61211
61591
|
};
|
|
61212
61592
|
} | {
|
|
61213
61593
|
/** ID of the action attempt. */
|
|
@@ -69392,6 +69772,16 @@ export type Routes = {
|
|
|
69392
69772
|
type: 'encoder_not_online';
|
|
69393
69773
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69394
69774
|
message: string;
|
|
69775
|
+
} | {
|
|
69776
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
69777
|
+
type: 'encoder_timeout_error';
|
|
69778
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69779
|
+
message: string;
|
|
69780
|
+
} | {
|
|
69781
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
69782
|
+
type: 'bridge_disconnected';
|
|
69783
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69784
|
+
message: string;
|
|
69395
69785
|
};
|
|
69396
69786
|
} | {
|
|
69397
69787
|
/** ID of the action attempt. */
|
|
@@ -69711,6 +70101,16 @@ export type Routes = {
|
|
|
69711
70101
|
type: 'encoder_not_online';
|
|
69712
70102
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69713
70103
|
message: string;
|
|
70104
|
+
} | {
|
|
70105
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
70106
|
+
type: 'encoder_timeout_error';
|
|
70107
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70108
|
+
message: string;
|
|
70109
|
+
} | {
|
|
70110
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
70111
|
+
type: 'bridge_disconnected';
|
|
70112
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70113
|
+
message: string;
|
|
69714
70114
|
};
|
|
69715
70115
|
} | {
|
|
69716
70116
|
/** ID of the action attempt. */
|
|
@@ -70708,6 +71108,16 @@ export type Routes = {
|
|
|
70708
71108
|
type: 'encoder_not_online';
|
|
70709
71109
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70710
71110
|
message: string;
|
|
71111
|
+
} | {
|
|
71112
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
71113
|
+
type: 'encoder_timeout_error';
|
|
71114
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71115
|
+
message: string;
|
|
71116
|
+
} | {
|
|
71117
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
71118
|
+
type: 'bridge_disconnected';
|
|
71119
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71120
|
+
message: string;
|
|
70711
71121
|
};
|
|
70712
71122
|
} | {
|
|
70713
71123
|
/** ID of the action attempt. */
|
|
@@ -71027,6 +71437,16 @@ export type Routes = {
|
|
|
71027
71437
|
type: 'encoder_not_online';
|
|
71028
71438
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71029
71439
|
message: string;
|
|
71440
|
+
} | {
|
|
71441
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
71442
|
+
type: 'encoder_timeout_error';
|
|
71443
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71444
|
+
message: string;
|
|
71445
|
+
} | {
|
|
71446
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
71447
|
+
type: 'bridge_disconnected';
|
|
71448
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71449
|
+
message: string;
|
|
71030
71450
|
};
|
|
71031
71451
|
} | {
|
|
71032
71452
|
/** ID of the action attempt. */
|
|
@@ -72130,6 +72550,16 @@ export type Routes = {
|
|
|
72130
72550
|
type: 'encoder_not_online';
|
|
72131
72551
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72132
72552
|
message: string;
|
|
72553
|
+
} | {
|
|
72554
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
72555
|
+
type: 'encoder_timeout_error';
|
|
72556
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72557
|
+
message: string;
|
|
72558
|
+
} | {
|
|
72559
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
72560
|
+
type: 'bridge_disconnected';
|
|
72561
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72562
|
+
message: string;
|
|
72133
72563
|
};
|
|
72134
72564
|
} | {
|
|
72135
72565
|
/** ID of the action attempt. */
|
|
@@ -72449,6 +72879,16 @@ export type Routes = {
|
|
|
72449
72879
|
type: 'encoder_not_online';
|
|
72450
72880
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72451
72881
|
message: string;
|
|
72882
|
+
} | {
|
|
72883
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
72884
|
+
type: 'encoder_timeout_error';
|
|
72885
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72886
|
+
message: string;
|
|
72887
|
+
} | {
|
|
72888
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
72889
|
+
type: 'bridge_disconnected';
|
|
72890
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72891
|
+
message: string;
|
|
72452
72892
|
};
|
|
72453
72893
|
} | {
|
|
72454
72894
|
/** ID of the action attempt. */
|
|
@@ -74797,6 +75237,16 @@ export type Routes = {
|
|
|
74797
75237
|
type: 'encoder_not_online';
|
|
74798
75238
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74799
75239
|
message: string;
|
|
75240
|
+
} | {
|
|
75241
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
75242
|
+
type: 'encoder_timeout_error';
|
|
75243
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75244
|
+
message: string;
|
|
75245
|
+
} | {
|
|
75246
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
75247
|
+
type: 'bridge_disconnected';
|
|
75248
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75249
|
+
message: string;
|
|
74800
75250
|
};
|
|
74801
75251
|
} | {
|
|
74802
75252
|
/** ID of the action attempt. */
|
|
@@ -75116,6 +75566,16 @@ export type Routes = {
|
|
|
75116
75566
|
type: 'encoder_not_online';
|
|
75117
75567
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75118
75568
|
message: string;
|
|
75569
|
+
} | {
|
|
75570
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
75571
|
+
type: 'encoder_timeout_error';
|
|
75572
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75573
|
+
message: string;
|
|
75574
|
+
} | {
|
|
75575
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
75576
|
+
type: 'bridge_disconnected';
|
|
75577
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75578
|
+
message: string;
|
|
75119
75579
|
};
|
|
75120
75580
|
} | {
|
|
75121
75581
|
/** ID of the action attempt. */
|
|
@@ -76117,6 +76577,16 @@ export type Routes = {
|
|
|
76117
76577
|
type: 'encoder_not_online';
|
|
76118
76578
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76119
76579
|
message: string;
|
|
76580
|
+
} | {
|
|
76581
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
76582
|
+
type: 'encoder_timeout_error';
|
|
76583
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76584
|
+
message: string;
|
|
76585
|
+
} | {
|
|
76586
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
76587
|
+
type: 'bridge_disconnected';
|
|
76588
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76589
|
+
message: string;
|
|
76120
76590
|
};
|
|
76121
76591
|
} | {
|
|
76122
76592
|
/** ID of the action attempt. */
|
|
@@ -76436,6 +76906,16 @@ export type Routes = {
|
|
|
76436
76906
|
type: 'encoder_not_online';
|
|
76437
76907
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76438
76908
|
message: string;
|
|
76909
|
+
} | {
|
|
76910
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
76911
|
+
type: 'encoder_timeout_error';
|
|
76912
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76913
|
+
message: string;
|
|
76914
|
+
} | {
|
|
76915
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
76916
|
+
type: 'bridge_disconnected';
|
|
76917
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76918
|
+
message: string;
|
|
76439
76919
|
};
|
|
76440
76920
|
} | {
|
|
76441
76921
|
/** ID of the action attempt. */
|
|
@@ -80118,6 +80598,16 @@ export type Routes = {
|
|
|
80118
80598
|
type: 'encoder_not_online';
|
|
80119
80599
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80120
80600
|
message: string;
|
|
80601
|
+
} | {
|
|
80602
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
80603
|
+
type: 'encoder_timeout_error';
|
|
80604
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80605
|
+
message: string;
|
|
80606
|
+
} | {
|
|
80607
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
80608
|
+
type: 'bridge_disconnected';
|
|
80609
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80610
|
+
message: string;
|
|
80121
80611
|
};
|
|
80122
80612
|
} | {
|
|
80123
80613
|
/** ID of the action attempt. */
|
|
@@ -80437,6 +80927,16 @@ export type Routes = {
|
|
|
80437
80927
|
type: 'encoder_not_online';
|
|
80438
80928
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80439
80929
|
message: string;
|
|
80930
|
+
} | {
|
|
80931
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
80932
|
+
type: 'encoder_timeout_error';
|
|
80933
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80934
|
+
message: string;
|
|
80935
|
+
} | {
|
|
80936
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
80937
|
+
type: 'bridge_disconnected';
|
|
80938
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80939
|
+
message: string;
|
|
80440
80940
|
};
|
|
80441
80941
|
} | {
|
|
80442
80942
|
/** ID of the action attempt. */
|
|
@@ -81633,6 +82133,16 @@ export type Routes = {
|
|
|
81633
82133
|
type: 'encoder_not_online';
|
|
81634
82134
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81635
82135
|
message: string;
|
|
82136
|
+
} | {
|
|
82137
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
82138
|
+
type: 'encoder_timeout_error';
|
|
82139
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82140
|
+
message: string;
|
|
82141
|
+
} | {
|
|
82142
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
82143
|
+
type: 'bridge_disconnected';
|
|
82144
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82145
|
+
message: string;
|
|
81636
82146
|
};
|
|
81637
82147
|
} | {
|
|
81638
82148
|
/** ID of the action attempt. */
|
|
@@ -81952,6 +82462,16 @@ export type Routes = {
|
|
|
81952
82462
|
type: 'encoder_not_online';
|
|
81953
82463
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81954
82464
|
message: string;
|
|
82465
|
+
} | {
|
|
82466
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
82467
|
+
type: 'encoder_timeout_error';
|
|
82468
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82469
|
+
message: string;
|
|
82470
|
+
} | {
|
|
82471
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
82472
|
+
type: 'bridge_disconnected';
|
|
82473
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82474
|
+
message: string;
|
|
81955
82475
|
};
|
|
81956
82476
|
} | {
|
|
81957
82477
|
/** ID of the action attempt. */
|
|
@@ -82976,6 +83496,16 @@ export type Routes = {
|
|
|
82976
83496
|
type: 'encoder_not_online';
|
|
82977
83497
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82978
83498
|
message: string;
|
|
83499
|
+
} | {
|
|
83500
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
83501
|
+
type: 'encoder_timeout_error';
|
|
83502
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83503
|
+
message: string;
|
|
83504
|
+
} | {
|
|
83505
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
83506
|
+
type: 'bridge_disconnected';
|
|
83507
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83508
|
+
message: string;
|
|
82979
83509
|
};
|
|
82980
83510
|
} | {
|
|
82981
83511
|
/** ID of the action attempt. */
|
|
@@ -83295,6 +83825,16 @@ export type Routes = {
|
|
|
83295
83825
|
type: 'encoder_not_online';
|
|
83296
83826
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83297
83827
|
message: string;
|
|
83828
|
+
} | {
|
|
83829
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
83830
|
+
type: 'encoder_timeout_error';
|
|
83831
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83832
|
+
message: string;
|
|
83833
|
+
} | {
|
|
83834
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
83835
|
+
type: 'bridge_disconnected';
|
|
83836
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83837
|
+
message: string;
|
|
83298
83838
|
};
|
|
83299
83839
|
} | {
|
|
83300
83840
|
/** ID of the action attempt. */
|
|
@@ -84431,6 +84971,16 @@ export type Routes = {
|
|
|
84431
84971
|
type: 'encoder_not_online';
|
|
84432
84972
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84433
84973
|
message: string;
|
|
84974
|
+
} | {
|
|
84975
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
84976
|
+
type: 'encoder_timeout_error';
|
|
84977
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84978
|
+
message: string;
|
|
84979
|
+
} | {
|
|
84980
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
84981
|
+
type: 'bridge_disconnected';
|
|
84982
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84983
|
+
message: string;
|
|
84434
84984
|
};
|
|
84435
84985
|
} | {
|
|
84436
84986
|
/** ID of the action attempt. */
|
|
@@ -84750,6 +85300,16 @@ export type Routes = {
|
|
|
84750
85300
|
type: 'encoder_not_online';
|
|
84751
85301
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84752
85302
|
message: string;
|
|
85303
|
+
} | {
|
|
85304
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
85305
|
+
type: 'encoder_timeout_error';
|
|
85306
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85307
|
+
message: string;
|
|
85308
|
+
} | {
|
|
85309
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
85310
|
+
type: 'bridge_disconnected';
|
|
85311
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85312
|
+
message: string;
|
|
84753
85313
|
};
|
|
84754
85314
|
} | {
|
|
84755
85315
|
/** ID of the action attempt. */
|
|
@@ -91884,6 +92444,16 @@ export type Routes = {
|
|
|
91884
92444
|
type: 'encoder_not_online';
|
|
91885
92445
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
91886
92446
|
message: string;
|
|
92447
|
+
} | {
|
|
92448
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
92449
|
+
type: 'encoder_timeout_error';
|
|
92450
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92451
|
+
message: string;
|
|
92452
|
+
} | {
|
|
92453
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
92454
|
+
type: 'bridge_disconnected';
|
|
92455
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92456
|
+
message: string;
|
|
91887
92457
|
};
|
|
91888
92458
|
} | {
|
|
91889
92459
|
/** ID of the action attempt. */
|
|
@@ -92203,6 +92773,16 @@ export type Routes = {
|
|
|
92203
92773
|
type: 'encoder_not_online';
|
|
92204
92774
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92205
92775
|
message: string;
|
|
92776
|
+
} | {
|
|
92777
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
92778
|
+
type: 'encoder_timeout_error';
|
|
92779
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92780
|
+
message: string;
|
|
92781
|
+
} | {
|
|
92782
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
92783
|
+
type: 'bridge_disconnected';
|
|
92784
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92785
|
+
message: string;
|
|
92206
92786
|
};
|
|
92207
92787
|
} | {
|
|
92208
92788
|
/** ID of the action attempt. */
|
|
@@ -98725,6 +99305,16 @@ export type Routes = {
|
|
|
98725
99305
|
type: 'encoder_not_online';
|
|
98726
99306
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98727
99307
|
message: string;
|
|
99308
|
+
} | {
|
|
99309
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
99310
|
+
type: 'encoder_timeout_error';
|
|
99311
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99312
|
+
message: string;
|
|
99313
|
+
} | {
|
|
99314
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
99315
|
+
type: 'bridge_disconnected';
|
|
99316
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99317
|
+
message: string;
|
|
98728
99318
|
};
|
|
98729
99319
|
} | {
|
|
98730
99320
|
/** ID of the action attempt. */
|
|
@@ -99044,6 +99634,16 @@ export type Routes = {
|
|
|
99044
99634
|
type: 'encoder_not_online';
|
|
99045
99635
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99046
99636
|
message: string;
|
|
99637
|
+
} | {
|
|
99638
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
99639
|
+
type: 'encoder_timeout_error';
|
|
99640
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99641
|
+
message: string;
|
|
99642
|
+
} | {
|
|
99643
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
99644
|
+
type: 'bridge_disconnected';
|
|
99645
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99646
|
+
message: string;
|
|
99047
99647
|
};
|
|
99048
99648
|
} | {
|
|
99049
99649
|
/** ID of the action attempt. */
|