@seamapi/types 1.770.0 → 1.772.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 +732 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1346 -85
- package/dist/index.cjs +732 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +25 -10
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -5
- package/lib/seam/connect/models/action-attempts/encode-credential.js +14 -3
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +5 -5
- package/lib/seam/connect/models/action-attempts/scan-credential.js +3 -3
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +35 -14
- package/lib/seam/connect/openapi.d.ts +952 -0
- package/lib/seam/connect/openapi.js +714 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +334 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +21 -3
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +3 -3
- package/src/lib/seam/connect/openapi.ts +781 -3
- package/src/lib/seam/connect/route-types.ts +405 -61
|
@@ -488,7 +488,7 @@ export type Routes = {
|
|
|
488
488
|
message: string;
|
|
489
489
|
} | {
|
|
490
490
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
491
|
-
type: '
|
|
491
|
+
type: 'encoder_communication_timeout';
|
|
492
492
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
493
493
|
message: string;
|
|
494
494
|
} | {
|
|
@@ -817,7 +817,7 @@ export type Routes = {
|
|
|
817
817
|
message: string;
|
|
818
818
|
} | {
|
|
819
819
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
820
|
-
type: '
|
|
820
|
+
type: 'encoder_communication_timeout';
|
|
821
821
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
822
822
|
message: string;
|
|
823
823
|
} | {
|
|
@@ -825,6 +825,11 @@ export type Routes = {
|
|
|
825
825
|
type: 'bridge_disconnected';
|
|
826
826
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
827
827
|
message: string;
|
|
828
|
+
} | {
|
|
829
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
830
|
+
type: 'encoding_interrupted';
|
|
831
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
832
|
+
message: string;
|
|
828
833
|
};
|
|
829
834
|
} | {
|
|
830
835
|
/** ID of the action attempt. */
|
|
@@ -2886,7 +2891,7 @@ export type Routes = {
|
|
|
2886
2891
|
message: string;
|
|
2887
2892
|
} | {
|
|
2888
2893
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
2889
|
-
type: '
|
|
2894
|
+
type: 'encoder_communication_timeout';
|
|
2890
2895
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2891
2896
|
message: string;
|
|
2892
2897
|
} | {
|
|
@@ -3215,7 +3220,7 @@ export type Routes = {
|
|
|
3215
3220
|
message: string;
|
|
3216
3221
|
} | {
|
|
3217
3222
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
3218
|
-
type: '
|
|
3223
|
+
type: 'encoder_communication_timeout';
|
|
3219
3224
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3220
3225
|
message: string;
|
|
3221
3226
|
} | {
|
|
@@ -3223,6 +3228,11 @@ export type Routes = {
|
|
|
3223
3228
|
type: 'bridge_disconnected';
|
|
3224
3229
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3225
3230
|
message: string;
|
|
3231
|
+
} | {
|
|
3232
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
3233
|
+
type: 'encoding_interrupted';
|
|
3234
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3235
|
+
message: string;
|
|
3226
3236
|
};
|
|
3227
3237
|
} | {
|
|
3228
3238
|
/** ID of the action attempt. */
|
|
@@ -6979,7 +6989,7 @@ export type Routes = {
|
|
|
6979
6989
|
message: string;
|
|
6980
6990
|
} | {
|
|
6981
6991
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
6982
|
-
type: '
|
|
6992
|
+
type: 'encoder_communication_timeout';
|
|
6983
6993
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6984
6994
|
message: string;
|
|
6985
6995
|
} | {
|
|
@@ -7308,7 +7318,7 @@ export type Routes = {
|
|
|
7308
7318
|
message: string;
|
|
7309
7319
|
} | {
|
|
7310
7320
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
7311
|
-
type: '
|
|
7321
|
+
type: 'encoder_communication_timeout';
|
|
7312
7322
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7313
7323
|
message: string;
|
|
7314
7324
|
} | {
|
|
@@ -7316,6 +7326,11 @@ export type Routes = {
|
|
|
7316
7326
|
type: 'bridge_disconnected';
|
|
7317
7327
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7318
7328
|
message: string;
|
|
7329
|
+
} | {
|
|
7330
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
7331
|
+
type: 'encoding_interrupted';
|
|
7332
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7333
|
+
message: string;
|
|
7319
7334
|
};
|
|
7320
7335
|
} | {
|
|
7321
7336
|
/** ID of the action attempt. */
|
|
@@ -9413,7 +9428,7 @@ export type Routes = {
|
|
|
9413
9428
|
message: string;
|
|
9414
9429
|
} | {
|
|
9415
9430
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
9416
|
-
type: '
|
|
9431
|
+
type: 'encoder_communication_timeout';
|
|
9417
9432
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9418
9433
|
message: string;
|
|
9419
9434
|
} | {
|
|
@@ -9742,7 +9757,7 @@ export type Routes = {
|
|
|
9742
9757
|
message: string;
|
|
9743
9758
|
} | {
|
|
9744
9759
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
9745
|
-
type: '
|
|
9760
|
+
type: 'encoder_communication_timeout';
|
|
9746
9761
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9747
9762
|
message: string;
|
|
9748
9763
|
} | {
|
|
@@ -9750,6 +9765,11 @@ export type Routes = {
|
|
|
9750
9765
|
type: 'bridge_disconnected';
|
|
9751
9766
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9752
9767
|
message: string;
|
|
9768
|
+
} | {
|
|
9769
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
9770
|
+
type: 'encoding_interrupted';
|
|
9771
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9772
|
+
message: string;
|
|
9753
9773
|
};
|
|
9754
9774
|
} | {
|
|
9755
9775
|
/** ID of the action attempt. */
|
|
@@ -14028,7 +14048,7 @@ export type Routes = {
|
|
|
14028
14048
|
message: string;
|
|
14029
14049
|
} | {
|
|
14030
14050
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
14031
|
-
type: '
|
|
14051
|
+
type: 'encoder_communication_timeout';
|
|
14032
14052
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14033
14053
|
message: string;
|
|
14034
14054
|
} | {
|
|
@@ -14357,7 +14377,7 @@ export type Routes = {
|
|
|
14357
14377
|
message: string;
|
|
14358
14378
|
} | {
|
|
14359
14379
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
14360
|
-
type: '
|
|
14380
|
+
type: 'encoder_communication_timeout';
|
|
14361
14381
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14362
14382
|
message: string;
|
|
14363
14383
|
} | {
|
|
@@ -14365,6 +14385,11 @@ export type Routes = {
|
|
|
14365
14385
|
type: 'bridge_disconnected';
|
|
14366
14386
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14367
14387
|
message: string;
|
|
14388
|
+
} | {
|
|
14389
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
14390
|
+
type: 'encoding_interrupted';
|
|
14391
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14392
|
+
message: string;
|
|
14368
14393
|
};
|
|
14369
14394
|
} | {
|
|
14370
14395
|
/** ID of the action attempt. */
|
|
@@ -20602,7 +20627,7 @@ export type Routes = {
|
|
|
20602
20627
|
message: string;
|
|
20603
20628
|
} | {
|
|
20604
20629
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
20605
|
-
type: '
|
|
20630
|
+
type: 'encoder_communication_timeout';
|
|
20606
20631
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20607
20632
|
message: string;
|
|
20608
20633
|
} | {
|
|
@@ -20931,7 +20956,7 @@ export type Routes = {
|
|
|
20931
20956
|
message: string;
|
|
20932
20957
|
} | {
|
|
20933
20958
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
20934
|
-
type: '
|
|
20959
|
+
type: 'encoder_communication_timeout';
|
|
20935
20960
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20936
20961
|
message: string;
|
|
20937
20962
|
} | {
|
|
@@ -20939,6 +20964,11 @@ export type Routes = {
|
|
|
20939
20964
|
type: 'bridge_disconnected';
|
|
20940
20965
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20941
20966
|
message: string;
|
|
20967
|
+
} | {
|
|
20968
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
20969
|
+
type: 'encoding_interrupted';
|
|
20970
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20971
|
+
message: string;
|
|
20942
20972
|
};
|
|
20943
20973
|
} | {
|
|
20944
20974
|
/** ID of the action attempt. */
|
|
@@ -22040,7 +22070,7 @@ export type Routes = {
|
|
|
22040
22070
|
message: string;
|
|
22041
22071
|
} | {
|
|
22042
22072
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
22043
|
-
type: '
|
|
22073
|
+
type: 'encoder_communication_timeout';
|
|
22044
22074
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22045
22075
|
message: string;
|
|
22046
22076
|
} | {
|
|
@@ -22369,7 +22399,7 @@ export type Routes = {
|
|
|
22369
22399
|
message: string;
|
|
22370
22400
|
} | {
|
|
22371
22401
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
22372
|
-
type: '
|
|
22402
|
+
type: 'encoder_communication_timeout';
|
|
22373
22403
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22374
22404
|
message: string;
|
|
22375
22405
|
} | {
|
|
@@ -22377,6 +22407,11 @@ export type Routes = {
|
|
|
22377
22407
|
type: 'bridge_disconnected';
|
|
22378
22408
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22379
22409
|
message: string;
|
|
22410
|
+
} | {
|
|
22411
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
22412
|
+
type: 'encoding_interrupted';
|
|
22413
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22414
|
+
message: string;
|
|
22380
22415
|
};
|
|
22381
22416
|
} | {
|
|
22382
22417
|
/** ID of the action attempt. */
|
|
@@ -22927,7 +22962,7 @@ export type Routes = {
|
|
|
22927
22962
|
/** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
|
|
22928
22963
|
acs_encoder_id: string;
|
|
22929
22964
|
/** Code of the error to simulate. */
|
|
22930
|
-
error_code?: 'no_credential_on_encoder';
|
|
22965
|
+
error_code?: 'no_credential_on_encoder' | 'encoding_interrupted';
|
|
22931
22966
|
} | {
|
|
22932
22967
|
/** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
|
|
22933
22968
|
acs_encoder_id: string;
|
|
@@ -23940,7 +23975,7 @@ export type Routes = {
|
|
|
23940
23975
|
message: string;
|
|
23941
23976
|
} | {
|
|
23942
23977
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
23943
|
-
type: '
|
|
23978
|
+
type: 'encoder_communication_timeout';
|
|
23944
23979
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23945
23980
|
message: string;
|
|
23946
23981
|
} | {
|
|
@@ -24269,7 +24304,7 @@ export type Routes = {
|
|
|
24269
24304
|
message: string;
|
|
24270
24305
|
} | {
|
|
24271
24306
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
24272
|
-
type: '
|
|
24307
|
+
type: 'encoder_communication_timeout';
|
|
24273
24308
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24274
24309
|
message: string;
|
|
24275
24310
|
} | {
|
|
@@ -24277,6 +24312,11 @@ export type Routes = {
|
|
|
24277
24312
|
type: 'bridge_disconnected';
|
|
24278
24313
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24279
24314
|
message: string;
|
|
24315
|
+
} | {
|
|
24316
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
24317
|
+
type: 'encoding_interrupted';
|
|
24318
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24319
|
+
message: string;
|
|
24280
24320
|
};
|
|
24281
24321
|
} | {
|
|
24282
24322
|
/** ID of the action attempt. */
|
|
@@ -27307,7 +27347,7 @@ export type Routes = {
|
|
|
27307
27347
|
message: string;
|
|
27308
27348
|
} | {
|
|
27309
27349
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
27310
|
-
type: '
|
|
27350
|
+
type: 'encoder_communication_timeout';
|
|
27311
27351
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27312
27352
|
message: string;
|
|
27313
27353
|
} | {
|
|
@@ -27636,7 +27676,7 @@ export type Routes = {
|
|
|
27636
27676
|
message: string;
|
|
27637
27677
|
} | {
|
|
27638
27678
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
27639
|
-
type: '
|
|
27679
|
+
type: 'encoder_communication_timeout';
|
|
27640
27680
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27641
27681
|
message: string;
|
|
27642
27682
|
} | {
|
|
@@ -27644,6 +27684,11 @@ export type Routes = {
|
|
|
27644
27684
|
type: 'bridge_disconnected';
|
|
27645
27685
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27646
27686
|
message: string;
|
|
27687
|
+
} | {
|
|
27688
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
27689
|
+
type: 'encoding_interrupted';
|
|
27690
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27691
|
+
message: string;
|
|
27647
27692
|
};
|
|
27648
27693
|
} | {
|
|
27649
27694
|
/** ID of the action attempt. */
|
|
@@ -28638,7 +28683,7 @@ export type Routes = {
|
|
|
28638
28683
|
message: string;
|
|
28639
28684
|
} | {
|
|
28640
28685
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
28641
|
-
type: '
|
|
28686
|
+
type: 'encoder_communication_timeout';
|
|
28642
28687
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28643
28688
|
message: string;
|
|
28644
28689
|
} | {
|
|
@@ -28967,7 +29012,7 @@ export type Routes = {
|
|
|
28967
29012
|
message: string;
|
|
28968
29013
|
} | {
|
|
28969
29014
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
28970
|
-
type: '
|
|
29015
|
+
type: 'encoder_communication_timeout';
|
|
28971
29016
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28972
29017
|
message: string;
|
|
28973
29018
|
} | {
|
|
@@ -28975,6 +29020,11 @@ export type Routes = {
|
|
|
28975
29020
|
type: 'bridge_disconnected';
|
|
28976
29021
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28977
29022
|
message: string;
|
|
29023
|
+
} | {
|
|
29024
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
29025
|
+
type: 'encoding_interrupted';
|
|
29026
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29027
|
+
message: string;
|
|
28978
29028
|
};
|
|
28979
29029
|
} | {
|
|
28980
29030
|
/** ID of the action attempt. */
|
|
@@ -41490,7 +41540,7 @@ export type Routes = {
|
|
|
41490
41540
|
message: string;
|
|
41491
41541
|
} | {
|
|
41492
41542
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
41493
|
-
type: '
|
|
41543
|
+
type: 'encoder_communication_timeout';
|
|
41494
41544
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41495
41545
|
message: string;
|
|
41496
41546
|
} | {
|
|
@@ -41819,7 +41869,7 @@ export type Routes = {
|
|
|
41819
41869
|
message: string;
|
|
41820
41870
|
} | {
|
|
41821
41871
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
41822
|
-
type: '
|
|
41872
|
+
type: 'encoder_communication_timeout';
|
|
41823
41873
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41824
41874
|
message: string;
|
|
41825
41875
|
} | {
|
|
@@ -41827,6 +41877,11 @@ export type Routes = {
|
|
|
41827
41877
|
type: 'bridge_disconnected';
|
|
41828
41878
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41829
41879
|
message: string;
|
|
41880
|
+
} | {
|
|
41881
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
41882
|
+
type: 'encoding_interrupted';
|
|
41883
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41884
|
+
message: string;
|
|
41830
41885
|
};
|
|
41831
41886
|
} | {
|
|
41832
41887
|
/** ID of the action attempt. */
|
|
@@ -48167,7 +48222,7 @@ export type Routes = {
|
|
|
48167
48222
|
message: string;
|
|
48168
48223
|
} | {
|
|
48169
48224
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
48170
|
-
type: '
|
|
48225
|
+
type: 'encoder_communication_timeout';
|
|
48171
48226
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48172
48227
|
message: string;
|
|
48173
48228
|
} | {
|
|
@@ -48496,7 +48551,7 @@ export type Routes = {
|
|
|
48496
48551
|
message: string;
|
|
48497
48552
|
} | {
|
|
48498
48553
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
48499
|
-
type: '
|
|
48554
|
+
type: 'encoder_communication_timeout';
|
|
48500
48555
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48501
48556
|
message: string;
|
|
48502
48557
|
} | {
|
|
@@ -48504,6 +48559,11 @@ export type Routes = {
|
|
|
48504
48559
|
type: 'bridge_disconnected';
|
|
48505
48560
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48506
48561
|
message: string;
|
|
48562
|
+
} | {
|
|
48563
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
48564
|
+
type: 'encoding_interrupted';
|
|
48565
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48566
|
+
message: string;
|
|
48507
48567
|
};
|
|
48508
48568
|
} | {
|
|
48509
48569
|
/** ID of the action attempt. */
|
|
@@ -49499,7 +49559,7 @@ export type Routes = {
|
|
|
49499
49559
|
message: string;
|
|
49500
49560
|
} | {
|
|
49501
49561
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
49502
|
-
type: '
|
|
49562
|
+
type: 'encoder_communication_timeout';
|
|
49503
49563
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49504
49564
|
message: string;
|
|
49505
49565
|
} | {
|
|
@@ -49828,7 +49888,7 @@ export type Routes = {
|
|
|
49828
49888
|
message: string;
|
|
49829
49889
|
} | {
|
|
49830
49890
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
49831
|
-
type: '
|
|
49891
|
+
type: 'encoder_communication_timeout';
|
|
49832
49892
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49833
49893
|
message: string;
|
|
49834
49894
|
} | {
|
|
@@ -49836,6 +49896,11 @@ export type Routes = {
|
|
|
49836
49896
|
type: 'bridge_disconnected';
|
|
49837
49897
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49838
49898
|
message: string;
|
|
49899
|
+
} | {
|
|
49900
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
49901
|
+
type: 'encoding_interrupted';
|
|
49902
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49903
|
+
message: string;
|
|
49839
49904
|
};
|
|
49840
49905
|
} | {
|
|
49841
49906
|
/** ID of the action attempt. */
|
|
@@ -50829,7 +50894,7 @@ export type Routes = {
|
|
|
50829
50894
|
message: string;
|
|
50830
50895
|
} | {
|
|
50831
50896
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
50832
|
-
type: '
|
|
50897
|
+
type: 'encoder_communication_timeout';
|
|
50833
50898
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50834
50899
|
message: string;
|
|
50835
50900
|
} | {
|
|
@@ -51158,7 +51223,7 @@ export type Routes = {
|
|
|
51158
51223
|
message: string;
|
|
51159
51224
|
} | {
|
|
51160
51225
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
51161
|
-
type: '
|
|
51226
|
+
type: 'encoder_communication_timeout';
|
|
51162
51227
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51163
51228
|
message: string;
|
|
51164
51229
|
} | {
|
|
@@ -51166,6 +51231,11 @@ export type Routes = {
|
|
|
51166
51231
|
type: 'bridge_disconnected';
|
|
51167
51232
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51168
51233
|
message: string;
|
|
51234
|
+
} | {
|
|
51235
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
51236
|
+
type: 'encoding_interrupted';
|
|
51237
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51238
|
+
message: string;
|
|
51169
51239
|
};
|
|
51170
51240
|
} | {
|
|
51171
51241
|
/** ID of the action attempt. */
|
|
@@ -52161,7 +52231,7 @@ export type Routes = {
|
|
|
52161
52231
|
message: string;
|
|
52162
52232
|
} | {
|
|
52163
52233
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
52164
|
-
type: '
|
|
52234
|
+
type: 'encoder_communication_timeout';
|
|
52165
52235
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52166
52236
|
message: string;
|
|
52167
52237
|
} | {
|
|
@@ -52490,7 +52560,7 @@ export type Routes = {
|
|
|
52490
52560
|
message: string;
|
|
52491
52561
|
} | {
|
|
52492
52562
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
52493
|
-
type: '
|
|
52563
|
+
type: 'encoder_communication_timeout';
|
|
52494
52564
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52495
52565
|
message: string;
|
|
52496
52566
|
} | {
|
|
@@ -52498,6 +52568,11 @@ export type Routes = {
|
|
|
52498
52568
|
type: 'bridge_disconnected';
|
|
52499
52569
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52500
52570
|
message: string;
|
|
52571
|
+
} | {
|
|
52572
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
52573
|
+
type: 'encoding_interrupted';
|
|
52574
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52575
|
+
message: string;
|
|
52501
52576
|
};
|
|
52502
52577
|
} | {
|
|
52503
52578
|
/** ID of the action attempt. */
|
|
@@ -56192,7 +56267,7 @@ export type Routes = {
|
|
|
56192
56267
|
message: string;
|
|
56193
56268
|
} | {
|
|
56194
56269
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
56195
|
-
type: '
|
|
56270
|
+
type: 'encoder_communication_timeout';
|
|
56196
56271
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56197
56272
|
message: string;
|
|
56198
56273
|
} | {
|
|
@@ -56521,7 +56596,7 @@ export type Routes = {
|
|
|
56521
56596
|
message: string;
|
|
56522
56597
|
} | {
|
|
56523
56598
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
56524
|
-
type: '
|
|
56599
|
+
type: 'encoder_communication_timeout';
|
|
56525
56600
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56526
56601
|
message: string;
|
|
56527
56602
|
} | {
|
|
@@ -56529,6 +56604,11 @@ export type Routes = {
|
|
|
56529
56604
|
type: 'bridge_disconnected';
|
|
56530
56605
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56531
56606
|
message: string;
|
|
56607
|
+
} | {
|
|
56608
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
56609
|
+
type: 'encoding_interrupted';
|
|
56610
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56611
|
+
message: string;
|
|
56532
56612
|
};
|
|
56533
56613
|
} | {
|
|
56534
56614
|
/** ID of the action attempt. */
|
|
@@ -57543,7 +57623,7 @@ export type Routes = {
|
|
|
57543
57623
|
message: string;
|
|
57544
57624
|
} | {
|
|
57545
57625
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
57546
|
-
type: '
|
|
57626
|
+
type: 'encoder_communication_timeout';
|
|
57547
57627
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57548
57628
|
message: string;
|
|
57549
57629
|
} | {
|
|
@@ -57872,7 +57952,7 @@ export type Routes = {
|
|
|
57872
57952
|
message: string;
|
|
57873
57953
|
} | {
|
|
57874
57954
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
57875
|
-
type: '
|
|
57955
|
+
type: 'encoder_communication_timeout';
|
|
57876
57956
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57877
57957
|
message: string;
|
|
57878
57958
|
} | {
|
|
@@ -57880,6 +57960,11 @@ export type Routes = {
|
|
|
57880
57960
|
type: 'bridge_disconnected';
|
|
57881
57961
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57882
57962
|
message: string;
|
|
57963
|
+
} | {
|
|
57964
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
57965
|
+
type: 'encoding_interrupted';
|
|
57966
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57967
|
+
message: string;
|
|
57883
57968
|
};
|
|
57884
57969
|
} | {
|
|
57885
57970
|
/** ID of the action attempt. */
|
|
@@ -58950,7 +59035,7 @@ export type Routes = {
|
|
|
58950
59035
|
message: string;
|
|
58951
59036
|
} | {
|
|
58952
59037
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
58953
|
-
type: '
|
|
59038
|
+
type: 'encoder_communication_timeout';
|
|
58954
59039
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58955
59040
|
message: string;
|
|
58956
59041
|
} | {
|
|
@@ -59279,7 +59364,7 @@ export type Routes = {
|
|
|
59279
59364
|
message: string;
|
|
59280
59365
|
} | {
|
|
59281
59366
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
59282
|
-
type: '
|
|
59367
|
+
type: 'encoder_communication_timeout';
|
|
59283
59368
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59284
59369
|
message: string;
|
|
59285
59370
|
} | {
|
|
@@ -59287,6 +59372,11 @@ export type Routes = {
|
|
|
59287
59372
|
type: 'bridge_disconnected';
|
|
59288
59373
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59289
59374
|
message: string;
|
|
59375
|
+
} | {
|
|
59376
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
59377
|
+
type: 'encoding_interrupted';
|
|
59378
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59379
|
+
message: string;
|
|
59290
59380
|
};
|
|
59291
59381
|
} | {
|
|
59292
59382
|
/** ID of the action attempt. */
|
|
@@ -61251,7 +61341,7 @@ export type Routes = {
|
|
|
61251
61341
|
message: string;
|
|
61252
61342
|
} | {
|
|
61253
61343
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
61254
|
-
type: '
|
|
61344
|
+
type: 'encoder_communication_timeout';
|
|
61255
61345
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61256
61346
|
message: string;
|
|
61257
61347
|
} | {
|
|
@@ -61580,7 +61670,7 @@ export type Routes = {
|
|
|
61580
61670
|
message: string;
|
|
61581
61671
|
} | {
|
|
61582
61672
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
61583
|
-
type: '
|
|
61673
|
+
type: 'encoder_communication_timeout';
|
|
61584
61674
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61585
61675
|
message: string;
|
|
61586
61676
|
} | {
|
|
@@ -61588,6 +61678,11 @@ export type Routes = {
|
|
|
61588
61678
|
type: 'bridge_disconnected';
|
|
61589
61679
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61590
61680
|
message: string;
|
|
61681
|
+
} | {
|
|
61682
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
61683
|
+
type: 'encoding_interrupted';
|
|
61684
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61685
|
+
message: string;
|
|
61591
61686
|
};
|
|
61592
61687
|
} | {
|
|
61593
61688
|
/** ID of the action attempt. */
|
|
@@ -65757,6 +65852,129 @@ export type Routes = {
|
|
|
65757
65852
|
};
|
|
65758
65853
|
maxDuration: undefined;
|
|
65759
65854
|
};
|
|
65855
|
+
'/seam/customer/v1/portals/update': {
|
|
65856
|
+
route: '/seam/customer/v1/portals/update';
|
|
65857
|
+
method: 'PATCH' | 'POST';
|
|
65858
|
+
queryParams: {};
|
|
65859
|
+
jsonBody: {
|
|
65860
|
+
/** ID of the customer portal to update. */
|
|
65861
|
+
customer_portal_id: string;
|
|
65862
|
+
/** Partial portal configuration to merge with the existing configuration. */
|
|
65863
|
+
portal_configuration: {
|
|
65864
|
+
features?: {
|
|
65865
|
+
/** Configuration for the connect accounts feature. */
|
|
65866
|
+
connect?: {
|
|
65867
|
+
/** Whether to exclude this feature from the portal. */
|
|
65868
|
+
exclude?: boolean;
|
|
65869
|
+
/** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
|
|
65870
|
+
accepted_providers?: string[] | undefined;
|
|
65871
|
+
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
65872
|
+
excluded_providers?: string[] | undefined;
|
|
65873
|
+
};
|
|
65874
|
+
/** Configuration for the manage feature. */
|
|
65875
|
+
manage?: {
|
|
65876
|
+
/** Whether to exclude this feature from the portal. */
|
|
65877
|
+
exclude?: boolean;
|
|
65878
|
+
/** Indicates whether the customer can manage reservations for their properties. */
|
|
65879
|
+
exclude_reservation_management?: boolean;
|
|
65880
|
+
/** Indicates whether to exclude technical details from reservation views. */
|
|
65881
|
+
exclude_reservation_technical_details?: boolean;
|
|
65882
|
+
/** Indicates whether the customer can manage staff for their properties. */
|
|
65883
|
+
exclude_staff_management?: boolean;
|
|
65884
|
+
/** Configuration for event type filtering in the manage feature. */
|
|
65885
|
+
events?: {
|
|
65886
|
+
/** List of event types to show in the events filter. When set, only these event types will be available. Leave empty to show all events. */
|
|
65887
|
+
allowed_events?: string[] | undefined;
|
|
65888
|
+
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
65889
|
+
default_events?: string[] | undefined;
|
|
65890
|
+
} | undefined;
|
|
65891
|
+
};
|
|
65892
|
+
/** Configuration for the manage devices feature.
|
|
65893
|
+
---
|
|
65894
|
+
deprecated: Use `manage` instead.
|
|
65895
|
+
--- */
|
|
65896
|
+
manage_devices?: {
|
|
65897
|
+
/** Whether to exclude this feature from the portal. */
|
|
65898
|
+
exclude?: boolean;
|
|
65899
|
+
};
|
|
65900
|
+
/** Configuration for the organize feature. */
|
|
65901
|
+
organize?: {
|
|
65902
|
+
/** Whether to exclude this feature from the portal. */
|
|
65903
|
+
exclude?: boolean;
|
|
65904
|
+
};
|
|
65905
|
+
/** Configuration for the configure feature. */
|
|
65906
|
+
configure?: {
|
|
65907
|
+
/** Whether to exclude this feature from the portal. */
|
|
65908
|
+
exclude?: boolean;
|
|
65909
|
+
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
65910
|
+
allow_access_automation_rule_customization?: boolean;
|
|
65911
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
65912
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
65913
|
+
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
65914
|
+
allow_instant_key_customization?: boolean;
|
|
65915
|
+
};
|
|
65916
|
+
} | undefined;
|
|
65917
|
+
/** Whether the portal is embedded in another application. */
|
|
65918
|
+
is_embedded?: boolean | undefined;
|
|
65919
|
+
/** Configuration for the landing page when the portal loads. */
|
|
65920
|
+
landing_page?: ({
|
|
65921
|
+
manage?: (({
|
|
65922
|
+
space_key: string;
|
|
65923
|
+
} | {
|
|
65924
|
+
property_key: string;
|
|
65925
|
+
} | {
|
|
65926
|
+
room_key: string;
|
|
65927
|
+
} | {
|
|
65928
|
+
common_area_key: string;
|
|
65929
|
+
} | {
|
|
65930
|
+
unit_key: string;
|
|
65931
|
+
} | {
|
|
65932
|
+
facility_key: string;
|
|
65933
|
+
} | {
|
|
65934
|
+
building_key: string;
|
|
65935
|
+
} | {
|
|
65936
|
+
listing_key: string;
|
|
65937
|
+
} | {
|
|
65938
|
+
property_listing_key: string;
|
|
65939
|
+
} | {
|
|
65940
|
+
site_key: string;
|
|
65941
|
+
}) | ({
|
|
65942
|
+
reservation_key: string;
|
|
65943
|
+
} | {
|
|
65944
|
+
booking_key: string;
|
|
65945
|
+
} | {
|
|
65946
|
+
access_grant_key: string;
|
|
65947
|
+
})) | undefined;
|
|
65948
|
+
} | undefined) | undefined;
|
|
65949
|
+
/** The locale to use for the portal. */
|
|
65950
|
+
locale?: (('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined) | undefined;
|
|
65951
|
+
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
65952
|
+
exclude_locale_picker?: boolean | undefined;
|
|
65953
|
+
/** The ID of the customization profile to use for the portal. */
|
|
65954
|
+
customization_profile_id?: (string | undefined) | undefined;
|
|
65955
|
+
/** Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata. */
|
|
65956
|
+
customer_resources_filters?: ({
|
|
65957
|
+
/** The custom_metadata field name to filter on. */
|
|
65958
|
+
field: string;
|
|
65959
|
+
/** The comparison operation. Currently only '=' is supported. */
|
|
65960
|
+
operation: '=';
|
|
65961
|
+
/** The value to compare against. */
|
|
65962
|
+
value: string | boolean;
|
|
65963
|
+
}[] | undefined) | undefined;
|
|
65964
|
+
/** Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links. */
|
|
65965
|
+
navigation_mode?: ('full' | 'restricted') | undefined;
|
|
65966
|
+
/** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
|
|
65967
|
+
deep_link?: ({
|
|
65968
|
+
resource_type: 'reservation' | 'space';
|
|
65969
|
+
resource_key: string;
|
|
65970
|
+
} | undefined) | undefined;
|
|
65971
|
+
};
|
|
65972
|
+
};
|
|
65973
|
+
commonParams: {};
|
|
65974
|
+
formData: {};
|
|
65975
|
+
jsonResponse: {};
|
|
65976
|
+
maxDuration: undefined;
|
|
65977
|
+
};
|
|
65760
65978
|
'/seam/customer/v1/reservations/get': {
|
|
65761
65979
|
route: '/seam/customer/v1/reservations/get';
|
|
65762
65980
|
method: 'GET' | 'POST';
|
|
@@ -69774,7 +69992,7 @@ export type Routes = {
|
|
|
69774
69992
|
message: string;
|
|
69775
69993
|
} | {
|
|
69776
69994
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
69777
|
-
type: '
|
|
69995
|
+
type: 'encoder_communication_timeout';
|
|
69778
69996
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69779
69997
|
message: string;
|
|
69780
69998
|
} | {
|
|
@@ -70103,7 +70321,7 @@ export type Routes = {
|
|
|
70103
70321
|
message: string;
|
|
70104
70322
|
} | {
|
|
70105
70323
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
70106
|
-
type: '
|
|
70324
|
+
type: 'encoder_communication_timeout';
|
|
70107
70325
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70108
70326
|
message: string;
|
|
70109
70327
|
} | {
|
|
@@ -70111,6 +70329,11 @@ export type Routes = {
|
|
|
70111
70329
|
type: 'bridge_disconnected';
|
|
70112
70330
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70113
70331
|
message: string;
|
|
70332
|
+
} | {
|
|
70333
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
70334
|
+
type: 'encoding_interrupted';
|
|
70335
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70336
|
+
message: string;
|
|
70114
70337
|
};
|
|
70115
70338
|
} | {
|
|
70116
70339
|
/** ID of the action attempt. */
|
|
@@ -71110,7 +71333,7 @@ export type Routes = {
|
|
|
71110
71333
|
message: string;
|
|
71111
71334
|
} | {
|
|
71112
71335
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
71113
|
-
type: '
|
|
71336
|
+
type: 'encoder_communication_timeout';
|
|
71114
71337
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71115
71338
|
message: string;
|
|
71116
71339
|
} | {
|
|
@@ -71439,7 +71662,7 @@ export type Routes = {
|
|
|
71439
71662
|
message: string;
|
|
71440
71663
|
} | {
|
|
71441
71664
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
71442
|
-
type: '
|
|
71665
|
+
type: 'encoder_communication_timeout';
|
|
71443
71666
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71444
71667
|
message: string;
|
|
71445
71668
|
} | {
|
|
@@ -71447,6 +71670,11 @@ export type Routes = {
|
|
|
71447
71670
|
type: 'bridge_disconnected';
|
|
71448
71671
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71449
71672
|
message: string;
|
|
71673
|
+
} | {
|
|
71674
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
71675
|
+
type: 'encoding_interrupted';
|
|
71676
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71677
|
+
message: string;
|
|
71450
71678
|
};
|
|
71451
71679
|
} | {
|
|
71452
71680
|
/** ID of the action attempt. */
|
|
@@ -72552,7 +72780,7 @@ export type Routes = {
|
|
|
72552
72780
|
message: string;
|
|
72553
72781
|
} | {
|
|
72554
72782
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
72555
|
-
type: '
|
|
72783
|
+
type: 'encoder_communication_timeout';
|
|
72556
72784
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72557
72785
|
message: string;
|
|
72558
72786
|
} | {
|
|
@@ -72881,7 +73109,7 @@ export type Routes = {
|
|
|
72881
73109
|
message: string;
|
|
72882
73110
|
} | {
|
|
72883
73111
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
72884
|
-
type: '
|
|
73112
|
+
type: 'encoder_communication_timeout';
|
|
72885
73113
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72886
73114
|
message: string;
|
|
72887
73115
|
} | {
|
|
@@ -72889,6 +73117,11 @@ export type Routes = {
|
|
|
72889
73117
|
type: 'bridge_disconnected';
|
|
72890
73118
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72891
73119
|
message: string;
|
|
73120
|
+
} | {
|
|
73121
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
73122
|
+
type: 'encoding_interrupted';
|
|
73123
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73124
|
+
message: string;
|
|
72892
73125
|
};
|
|
72893
73126
|
} | {
|
|
72894
73127
|
/** ID of the action attempt. */
|
|
@@ -75239,7 +75472,7 @@ export type Routes = {
|
|
|
75239
75472
|
message: string;
|
|
75240
75473
|
} | {
|
|
75241
75474
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
75242
|
-
type: '
|
|
75475
|
+
type: 'encoder_communication_timeout';
|
|
75243
75476
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75244
75477
|
message: string;
|
|
75245
75478
|
} | {
|
|
@@ -75568,7 +75801,7 @@ export type Routes = {
|
|
|
75568
75801
|
message: string;
|
|
75569
75802
|
} | {
|
|
75570
75803
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
75571
|
-
type: '
|
|
75804
|
+
type: 'encoder_communication_timeout';
|
|
75572
75805
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75573
75806
|
message: string;
|
|
75574
75807
|
} | {
|
|
@@ -75576,6 +75809,11 @@ export type Routes = {
|
|
|
75576
75809
|
type: 'bridge_disconnected';
|
|
75577
75810
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75578
75811
|
message: string;
|
|
75812
|
+
} | {
|
|
75813
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
75814
|
+
type: 'encoding_interrupted';
|
|
75815
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75816
|
+
message: string;
|
|
75579
75817
|
};
|
|
75580
75818
|
} | {
|
|
75581
75819
|
/** ID of the action attempt. */
|
|
@@ -76579,7 +76817,7 @@ export type Routes = {
|
|
|
76579
76817
|
message: string;
|
|
76580
76818
|
} | {
|
|
76581
76819
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
76582
|
-
type: '
|
|
76820
|
+
type: 'encoder_communication_timeout';
|
|
76583
76821
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76584
76822
|
message: string;
|
|
76585
76823
|
} | {
|
|
@@ -76908,7 +77146,7 @@ export type Routes = {
|
|
|
76908
77146
|
message: string;
|
|
76909
77147
|
} | {
|
|
76910
77148
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
76911
|
-
type: '
|
|
77149
|
+
type: 'encoder_communication_timeout';
|
|
76912
77150
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76913
77151
|
message: string;
|
|
76914
77152
|
} | {
|
|
@@ -76916,6 +77154,11 @@ export type Routes = {
|
|
|
76916
77154
|
type: 'bridge_disconnected';
|
|
76917
77155
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76918
77156
|
message: string;
|
|
77157
|
+
} | {
|
|
77158
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
77159
|
+
type: 'encoding_interrupted';
|
|
77160
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77161
|
+
message: string;
|
|
76919
77162
|
};
|
|
76920
77163
|
} | {
|
|
76921
77164
|
/** ID of the action attempt. */
|
|
@@ -80600,7 +80843,7 @@ export type Routes = {
|
|
|
80600
80843
|
message: string;
|
|
80601
80844
|
} | {
|
|
80602
80845
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
80603
|
-
type: '
|
|
80846
|
+
type: 'encoder_communication_timeout';
|
|
80604
80847
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80605
80848
|
message: string;
|
|
80606
80849
|
} | {
|
|
@@ -80929,7 +81172,7 @@ export type Routes = {
|
|
|
80929
81172
|
message: string;
|
|
80930
81173
|
} | {
|
|
80931
81174
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
80932
|
-
type: '
|
|
81175
|
+
type: 'encoder_communication_timeout';
|
|
80933
81176
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80934
81177
|
message: string;
|
|
80935
81178
|
} | {
|
|
@@ -80937,6 +81180,11 @@ export type Routes = {
|
|
|
80937
81180
|
type: 'bridge_disconnected';
|
|
80938
81181
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80939
81182
|
message: string;
|
|
81183
|
+
} | {
|
|
81184
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
81185
|
+
type: 'encoding_interrupted';
|
|
81186
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81187
|
+
message: string;
|
|
80940
81188
|
};
|
|
80941
81189
|
} | {
|
|
80942
81190
|
/** ID of the action attempt. */
|
|
@@ -82135,7 +82383,7 @@ export type Routes = {
|
|
|
82135
82383
|
message: string;
|
|
82136
82384
|
} | {
|
|
82137
82385
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
82138
|
-
type: '
|
|
82386
|
+
type: 'encoder_communication_timeout';
|
|
82139
82387
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82140
82388
|
message: string;
|
|
82141
82389
|
} | {
|
|
@@ -82464,7 +82712,7 @@ export type Routes = {
|
|
|
82464
82712
|
message: string;
|
|
82465
82713
|
} | {
|
|
82466
82714
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
82467
|
-
type: '
|
|
82715
|
+
type: 'encoder_communication_timeout';
|
|
82468
82716
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82469
82717
|
message: string;
|
|
82470
82718
|
} | {
|
|
@@ -82472,6 +82720,11 @@ export type Routes = {
|
|
|
82472
82720
|
type: 'bridge_disconnected';
|
|
82473
82721
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82474
82722
|
message: string;
|
|
82723
|
+
} | {
|
|
82724
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
82725
|
+
type: 'encoding_interrupted';
|
|
82726
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82727
|
+
message: string;
|
|
82475
82728
|
};
|
|
82476
82729
|
} | {
|
|
82477
82730
|
/** ID of the action attempt. */
|
|
@@ -83498,7 +83751,7 @@ export type Routes = {
|
|
|
83498
83751
|
message: string;
|
|
83499
83752
|
} | {
|
|
83500
83753
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
83501
|
-
type: '
|
|
83754
|
+
type: 'encoder_communication_timeout';
|
|
83502
83755
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83503
83756
|
message: string;
|
|
83504
83757
|
} | {
|
|
@@ -83827,7 +84080,7 @@ export type Routes = {
|
|
|
83827
84080
|
message: string;
|
|
83828
84081
|
} | {
|
|
83829
84082
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
83830
|
-
type: '
|
|
84083
|
+
type: 'encoder_communication_timeout';
|
|
83831
84084
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83832
84085
|
message: string;
|
|
83833
84086
|
} | {
|
|
@@ -83835,6 +84088,11 @@ export type Routes = {
|
|
|
83835
84088
|
type: 'bridge_disconnected';
|
|
83836
84089
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83837
84090
|
message: string;
|
|
84091
|
+
} | {
|
|
84092
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
84093
|
+
type: 'encoding_interrupted';
|
|
84094
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84095
|
+
message: string;
|
|
83838
84096
|
};
|
|
83839
84097
|
} | {
|
|
83840
84098
|
/** ID of the action attempt. */
|
|
@@ -84973,7 +85231,7 @@ export type Routes = {
|
|
|
84973
85231
|
message: string;
|
|
84974
85232
|
} | {
|
|
84975
85233
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
84976
|
-
type: '
|
|
85234
|
+
type: 'encoder_communication_timeout';
|
|
84977
85235
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84978
85236
|
message: string;
|
|
84979
85237
|
} | {
|
|
@@ -85302,7 +85560,7 @@ export type Routes = {
|
|
|
85302
85560
|
message: string;
|
|
85303
85561
|
} | {
|
|
85304
85562
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
85305
|
-
type: '
|
|
85563
|
+
type: 'encoder_communication_timeout';
|
|
85306
85564
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85307
85565
|
message: string;
|
|
85308
85566
|
} | {
|
|
@@ -85310,6 +85568,11 @@ export type Routes = {
|
|
|
85310
85568
|
type: 'bridge_disconnected';
|
|
85311
85569
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85312
85570
|
message: string;
|
|
85571
|
+
} | {
|
|
85572
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
85573
|
+
type: 'encoding_interrupted';
|
|
85574
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85575
|
+
message: string;
|
|
85313
85576
|
};
|
|
85314
85577
|
} | {
|
|
85315
85578
|
/** ID of the action attempt. */
|
|
@@ -92446,7 +92709,7 @@ export type Routes = {
|
|
|
92446
92709
|
message: string;
|
|
92447
92710
|
} | {
|
|
92448
92711
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
92449
|
-
type: '
|
|
92712
|
+
type: 'encoder_communication_timeout';
|
|
92450
92713
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92451
92714
|
message: string;
|
|
92452
92715
|
} | {
|
|
@@ -92775,7 +93038,7 @@ export type Routes = {
|
|
|
92775
93038
|
message: string;
|
|
92776
93039
|
} | {
|
|
92777
93040
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
92778
|
-
type: '
|
|
93041
|
+
type: 'encoder_communication_timeout';
|
|
92779
93042
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92780
93043
|
message: string;
|
|
92781
93044
|
} | {
|
|
@@ -92783,6 +93046,11 @@ export type Routes = {
|
|
|
92783
93046
|
type: 'bridge_disconnected';
|
|
92784
93047
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92785
93048
|
message: string;
|
|
93049
|
+
} | {
|
|
93050
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
93051
|
+
type: 'encoding_interrupted';
|
|
93052
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
93053
|
+
message: string;
|
|
92786
93054
|
};
|
|
92787
93055
|
} | {
|
|
92788
93056
|
/** ID of the action attempt. */
|
|
@@ -99307,7 +99575,7 @@ export type Routes = {
|
|
|
99307
99575
|
message: string;
|
|
99308
99576
|
} | {
|
|
99309
99577
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
99310
|
-
type: '
|
|
99578
|
+
type: 'encoder_communication_timeout';
|
|
99311
99579
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99312
99580
|
message: string;
|
|
99313
99581
|
} | {
|
|
@@ -99636,7 +99904,7 @@ export type Routes = {
|
|
|
99636
99904
|
message: string;
|
|
99637
99905
|
} | {
|
|
99638
99906
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
99639
|
-
type: '
|
|
99907
|
+
type: 'encoder_communication_timeout';
|
|
99640
99908
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99641
99909
|
message: string;
|
|
99642
99910
|
} | {
|
|
@@ -99644,6 +99912,11 @@ export type Routes = {
|
|
|
99644
99912
|
type: 'bridge_disconnected';
|
|
99645
99913
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99646
99914
|
message: string;
|
|
99915
|
+
} | {
|
|
99916
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
99917
|
+
type: 'encoding_interrupted';
|
|
99918
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99919
|
+
message: string;
|
|
99647
99920
|
};
|
|
99648
99921
|
} | {
|
|
99649
99922
|
/** ID of the action attempt. */
|