@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
|
@@ -581,7 +581,7 @@ export type Routes = {
|
|
|
581
581
|
}
|
|
582
582
|
| {
|
|
583
583
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
584
|
-
type: '
|
|
584
|
+
type: 'encoder_communication_timeout'
|
|
585
585
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
586
586
|
message: string
|
|
587
587
|
}
|
|
@@ -981,7 +981,7 @@ export type Routes = {
|
|
|
981
981
|
}
|
|
982
982
|
| {
|
|
983
983
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
984
|
-
type: '
|
|
984
|
+
type: 'encoder_communication_timeout'
|
|
985
985
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
986
986
|
message: string
|
|
987
987
|
}
|
|
@@ -991,6 +991,12 @@ export type Routes = {
|
|
|
991
991
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
992
992
|
message: string
|
|
993
993
|
}
|
|
994
|
+
| {
|
|
995
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
996
|
+
type: 'encoding_interrupted'
|
|
997
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
998
|
+
message: string
|
|
999
|
+
}
|
|
994
1000
|
}
|
|
995
1001
|
| {
|
|
996
1002
|
/** ID of the action attempt. */
|
|
@@ -3301,7 +3307,7 @@ export type Routes = {
|
|
|
3301
3307
|
}
|
|
3302
3308
|
| {
|
|
3303
3309
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
3304
|
-
type: '
|
|
3310
|
+
type: 'encoder_communication_timeout'
|
|
3305
3311
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3306
3312
|
message: string
|
|
3307
3313
|
}
|
|
@@ -3701,7 +3707,7 @@ export type Routes = {
|
|
|
3701
3707
|
}
|
|
3702
3708
|
| {
|
|
3703
3709
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
3704
|
-
type: '
|
|
3710
|
+
type: 'encoder_communication_timeout'
|
|
3705
3711
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3706
3712
|
message: string
|
|
3707
3713
|
}
|
|
@@ -3711,6 +3717,12 @@ export type Routes = {
|
|
|
3711
3717
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3712
3718
|
message: string
|
|
3713
3719
|
}
|
|
3720
|
+
| {
|
|
3721
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
3722
|
+
type: 'encoding_interrupted'
|
|
3723
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3724
|
+
message: string
|
|
3725
|
+
}
|
|
3714
3726
|
}
|
|
3715
3727
|
| {
|
|
3716
3728
|
/** ID of the action attempt. */
|
|
@@ -7925,7 +7937,7 @@ export type Routes = {
|
|
|
7925
7937
|
}
|
|
7926
7938
|
| {
|
|
7927
7939
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
7928
|
-
type: '
|
|
7940
|
+
type: 'encoder_communication_timeout'
|
|
7929
7941
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7930
7942
|
message: string
|
|
7931
7943
|
}
|
|
@@ -8325,7 +8337,7 @@ export type Routes = {
|
|
|
8325
8337
|
}
|
|
8326
8338
|
| {
|
|
8327
8339
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
8328
|
-
type: '
|
|
8340
|
+
type: 'encoder_communication_timeout'
|
|
8329
8341
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8330
8342
|
message: string
|
|
8331
8343
|
}
|
|
@@ -8335,6 +8347,12 @@ export type Routes = {
|
|
|
8335
8347
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8336
8348
|
message: string
|
|
8337
8349
|
}
|
|
8350
|
+
| {
|
|
8351
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
8352
|
+
type: 'encoding_interrupted'
|
|
8353
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8354
|
+
message: string
|
|
8355
|
+
}
|
|
8338
8356
|
}
|
|
8339
8357
|
| {
|
|
8340
8358
|
/** ID of the action attempt. */
|
|
@@ -10681,7 +10699,7 @@ export type Routes = {
|
|
|
10681
10699
|
}
|
|
10682
10700
|
| {
|
|
10683
10701
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
10684
|
-
type: '
|
|
10702
|
+
type: 'encoder_communication_timeout'
|
|
10685
10703
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10686
10704
|
message: string
|
|
10687
10705
|
}
|
|
@@ -11081,7 +11099,7 @@ export type Routes = {
|
|
|
11081
11099
|
}
|
|
11082
11100
|
| {
|
|
11083
11101
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
11084
|
-
type: '
|
|
11102
|
+
type: 'encoder_communication_timeout'
|
|
11085
11103
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11086
11104
|
message: string
|
|
11087
11105
|
}
|
|
@@ -11091,6 +11109,12 @@ export type Routes = {
|
|
|
11091
11109
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11092
11110
|
message: string
|
|
11093
11111
|
}
|
|
11112
|
+
| {
|
|
11113
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
11114
|
+
type: 'encoding_interrupted'
|
|
11115
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11116
|
+
message: string
|
|
11117
|
+
}
|
|
11094
11118
|
}
|
|
11095
11119
|
| {
|
|
11096
11120
|
/** ID of the action attempt. */
|
|
@@ -16101,7 +16125,7 @@ export type Routes = {
|
|
|
16101
16125
|
}
|
|
16102
16126
|
| {
|
|
16103
16127
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
16104
|
-
type: '
|
|
16128
|
+
type: 'encoder_communication_timeout'
|
|
16105
16129
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16106
16130
|
message: string
|
|
16107
16131
|
}
|
|
@@ -16501,7 +16525,7 @@ export type Routes = {
|
|
|
16501
16525
|
}
|
|
16502
16526
|
| {
|
|
16503
16527
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
16504
|
-
type: '
|
|
16528
|
+
type: 'encoder_communication_timeout'
|
|
16505
16529
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16506
16530
|
message: string
|
|
16507
16531
|
}
|
|
@@ -16511,6 +16535,12 @@ export type Routes = {
|
|
|
16511
16535
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16512
16536
|
message: string
|
|
16513
16537
|
}
|
|
16538
|
+
| {
|
|
16539
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
16540
|
+
type: 'encoding_interrupted'
|
|
16541
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16542
|
+
message: string
|
|
16543
|
+
}
|
|
16514
16544
|
}
|
|
16515
16545
|
| {
|
|
16516
16546
|
/** ID of the action attempt. */
|
|
@@ -23872,7 +23902,7 @@ export type Routes = {
|
|
|
23872
23902
|
}
|
|
23873
23903
|
| {
|
|
23874
23904
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
23875
|
-
type: '
|
|
23905
|
+
type: 'encoder_communication_timeout'
|
|
23876
23906
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23877
23907
|
message: string
|
|
23878
23908
|
}
|
|
@@ -24272,7 +24302,7 @@ export type Routes = {
|
|
|
24272
24302
|
}
|
|
24273
24303
|
| {
|
|
24274
24304
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
24275
|
-
type: '
|
|
24305
|
+
type: 'encoder_communication_timeout'
|
|
24276
24306
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24277
24307
|
message: string
|
|
24278
24308
|
}
|
|
@@ -24282,6 +24312,12 @@ export type Routes = {
|
|
|
24282
24312
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24283
24313
|
message: string
|
|
24284
24314
|
}
|
|
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
|
|
24320
|
+
}
|
|
24285
24321
|
}
|
|
24286
24322
|
| {
|
|
24287
24323
|
/** ID of the action attempt. */
|
|
@@ -25524,7 +25560,7 @@ export type Routes = {
|
|
|
25524
25560
|
}
|
|
25525
25561
|
| {
|
|
25526
25562
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
25527
|
-
type: '
|
|
25563
|
+
type: 'encoder_communication_timeout'
|
|
25528
25564
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25529
25565
|
message: string
|
|
25530
25566
|
}
|
|
@@ -25924,7 +25960,7 @@ export type Routes = {
|
|
|
25924
25960
|
}
|
|
25925
25961
|
| {
|
|
25926
25962
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
25927
|
-
type: '
|
|
25963
|
+
type: 'encoder_communication_timeout'
|
|
25928
25964
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25929
25965
|
message: string
|
|
25930
25966
|
}
|
|
@@ -25934,6 +25970,12 @@ export type Routes = {
|
|
|
25934
25970
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25935
25971
|
message: string
|
|
25936
25972
|
}
|
|
25973
|
+
| {
|
|
25974
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
25975
|
+
type: 'encoding_interrupted'
|
|
25976
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25977
|
+
message: string
|
|
25978
|
+
}
|
|
25937
25979
|
}
|
|
25938
25980
|
| {
|
|
25939
25981
|
/** ID of the action attempt. */
|
|
@@ -26529,7 +26571,7 @@ export type Routes = {
|
|
|
26529
26571
|
/** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
|
|
26530
26572
|
acs_encoder_id: string
|
|
26531
26573
|
/** Code of the error to simulate. */
|
|
26532
|
-
error_code?: 'no_credential_on_encoder'
|
|
26574
|
+
error_code?: 'no_credential_on_encoder' | 'encoding_interrupted'
|
|
26533
26575
|
}
|
|
26534
26576
|
| {
|
|
26535
26577
|
/** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
|
|
@@ -27730,7 +27772,7 @@ export type Routes = {
|
|
|
27730
27772
|
}
|
|
27731
27773
|
| {
|
|
27732
27774
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
27733
|
-
type: '
|
|
27775
|
+
type: 'encoder_communication_timeout'
|
|
27734
27776
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27735
27777
|
message: string
|
|
27736
27778
|
}
|
|
@@ -28130,7 +28172,7 @@ export type Routes = {
|
|
|
28130
28172
|
}
|
|
28131
28173
|
| {
|
|
28132
28174
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
28133
|
-
type: '
|
|
28175
|
+
type: 'encoder_communication_timeout'
|
|
28134
28176
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28135
28177
|
message: string
|
|
28136
28178
|
}
|
|
@@ -28140,6 +28182,12 @@ export type Routes = {
|
|
|
28140
28182
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28141
28183
|
message: string
|
|
28142
28184
|
}
|
|
28185
|
+
| {
|
|
28186
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
28187
|
+
type: 'encoding_interrupted'
|
|
28188
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28189
|
+
message: string
|
|
28190
|
+
}
|
|
28143
28191
|
}
|
|
28144
28192
|
| {
|
|
28145
28193
|
/** ID of the action attempt. */
|
|
@@ -31676,7 +31724,7 @@ export type Routes = {
|
|
|
31676
31724
|
}
|
|
31677
31725
|
| {
|
|
31678
31726
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
31679
|
-
type: '
|
|
31727
|
+
type: 'encoder_communication_timeout'
|
|
31680
31728
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31681
31729
|
message: string
|
|
31682
31730
|
}
|
|
@@ -32076,7 +32124,7 @@ export type Routes = {
|
|
|
32076
32124
|
}
|
|
32077
32125
|
| {
|
|
32078
32126
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
32079
|
-
type: '
|
|
32127
|
+
type: 'encoder_communication_timeout'
|
|
32080
32128
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32081
32129
|
message: string
|
|
32082
32130
|
}
|
|
@@ -32086,6 +32134,12 @@ export type Routes = {
|
|
|
32086
32134
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32087
32135
|
message: string
|
|
32088
32136
|
}
|
|
32137
|
+
| {
|
|
32138
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
32139
|
+
type: 'encoding_interrupted'
|
|
32140
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32141
|
+
message: string
|
|
32142
|
+
}
|
|
32089
32143
|
}
|
|
32090
32144
|
| {
|
|
32091
32145
|
/** ID of the action attempt. */
|
|
@@ -33217,7 +33271,7 @@ export type Routes = {
|
|
|
33217
33271
|
}
|
|
33218
33272
|
| {
|
|
33219
33273
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
33220
|
-
type: '
|
|
33274
|
+
type: 'encoder_communication_timeout'
|
|
33221
33275
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33222
33276
|
message: string
|
|
33223
33277
|
}
|
|
@@ -33617,7 +33671,7 @@ export type Routes = {
|
|
|
33617
33671
|
}
|
|
33618
33672
|
| {
|
|
33619
33673
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
33620
|
-
type: '
|
|
33674
|
+
type: 'encoder_communication_timeout'
|
|
33621
33675
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33622
33676
|
message: string
|
|
33623
33677
|
}
|
|
@@ -33627,6 +33681,12 @@ export type Routes = {
|
|
|
33627
33681
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33628
33682
|
message: string
|
|
33629
33683
|
}
|
|
33684
|
+
| {
|
|
33685
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
33686
|
+
type: 'encoding_interrupted'
|
|
33687
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33688
|
+
message: string
|
|
33689
|
+
}
|
|
33630
33690
|
}
|
|
33631
33691
|
| {
|
|
33632
33692
|
/** ID of the action attempt. */
|
|
@@ -49191,7 +49251,7 @@ export type Routes = {
|
|
|
49191
49251
|
}
|
|
49192
49252
|
| {
|
|
49193
49253
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
49194
|
-
type: '
|
|
49254
|
+
type: 'encoder_communication_timeout'
|
|
49195
49255
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49196
49256
|
message: string
|
|
49197
49257
|
}
|
|
@@ -49591,7 +49651,7 @@ export type Routes = {
|
|
|
49591
49651
|
}
|
|
49592
49652
|
| {
|
|
49593
49653
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
49594
|
-
type: '
|
|
49654
|
+
type: 'encoder_communication_timeout'
|
|
49595
49655
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49596
49656
|
message: string
|
|
49597
49657
|
}
|
|
@@ -49601,6 +49661,12 @@ export type Routes = {
|
|
|
49601
49661
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49602
49662
|
message: string
|
|
49603
49663
|
}
|
|
49664
|
+
| {
|
|
49665
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
49666
|
+
type: 'encoding_interrupted'
|
|
49667
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49668
|
+
message: string
|
|
49669
|
+
}
|
|
49604
49670
|
}
|
|
49605
49671
|
| {
|
|
49606
49672
|
/** ID of the action attempt. */
|
|
@@ -57510,7 +57576,7 @@ export type Routes = {
|
|
|
57510
57576
|
}
|
|
57511
57577
|
| {
|
|
57512
57578
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
57513
|
-
type: '
|
|
57579
|
+
type: 'encoder_communication_timeout'
|
|
57514
57580
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57515
57581
|
message: string
|
|
57516
57582
|
}
|
|
@@ -57910,7 +57976,7 @@ export type Routes = {
|
|
|
57910
57976
|
}
|
|
57911
57977
|
| {
|
|
57912
57978
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
57913
|
-
type: '
|
|
57979
|
+
type: 'encoder_communication_timeout'
|
|
57914
57980
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57915
57981
|
message: string
|
|
57916
57982
|
}
|
|
@@ -57920,6 +57986,12 @@ export type Routes = {
|
|
|
57920
57986
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57921
57987
|
message: string
|
|
57922
57988
|
}
|
|
57989
|
+
| {
|
|
57990
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
57991
|
+
type: 'encoding_interrupted'
|
|
57992
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57993
|
+
message: string
|
|
57994
|
+
}
|
|
57923
57995
|
}
|
|
57924
57996
|
| {
|
|
57925
57997
|
/** ID of the action attempt. */
|
|
@@ -59052,7 +59124,7 @@ export type Routes = {
|
|
|
59052
59124
|
}
|
|
59053
59125
|
| {
|
|
59054
59126
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
59055
|
-
type: '
|
|
59127
|
+
type: 'encoder_communication_timeout'
|
|
59056
59128
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59057
59129
|
message: string
|
|
59058
59130
|
}
|
|
@@ -59452,7 +59524,7 @@ export type Routes = {
|
|
|
59452
59524
|
}
|
|
59453
59525
|
| {
|
|
59454
59526
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
59455
|
-
type: '
|
|
59527
|
+
type: 'encoder_communication_timeout'
|
|
59456
59528
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59457
59529
|
message: string
|
|
59458
59530
|
}
|
|
@@ -59462,6 +59534,12 @@ export type Routes = {
|
|
|
59462
59534
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59463
59535
|
message: string
|
|
59464
59536
|
}
|
|
59537
|
+
| {
|
|
59538
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
59539
|
+
type: 'encoding_interrupted'
|
|
59540
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59541
|
+
message: string
|
|
59542
|
+
}
|
|
59465
59543
|
}
|
|
59466
59544
|
| {
|
|
59467
59545
|
/** ID of the action attempt. */
|
|
@@ -60592,7 +60670,7 @@ export type Routes = {
|
|
|
60592
60670
|
}
|
|
60593
60671
|
| {
|
|
60594
60672
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
60595
|
-
type: '
|
|
60673
|
+
type: 'encoder_communication_timeout'
|
|
60596
60674
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
60597
60675
|
message: string
|
|
60598
60676
|
}
|
|
@@ -60992,7 +61070,7 @@ export type Routes = {
|
|
|
60992
61070
|
}
|
|
60993
61071
|
| {
|
|
60994
61072
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
60995
|
-
type: '
|
|
61073
|
+
type: 'encoder_communication_timeout'
|
|
60996
61074
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
60997
61075
|
message: string
|
|
60998
61076
|
}
|
|
@@ -61002,6 +61080,12 @@ export type Routes = {
|
|
|
61002
61080
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61003
61081
|
message: string
|
|
61004
61082
|
}
|
|
61083
|
+
| {
|
|
61084
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
61085
|
+
type: 'encoding_interrupted'
|
|
61086
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61087
|
+
message: string
|
|
61088
|
+
}
|
|
61005
61089
|
}
|
|
61006
61090
|
| {
|
|
61007
61091
|
/** ID of the action attempt. */
|
|
@@ -62134,7 +62218,7 @@ export type Routes = {
|
|
|
62134
62218
|
}
|
|
62135
62219
|
| {
|
|
62136
62220
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
62137
|
-
type: '
|
|
62221
|
+
type: 'encoder_communication_timeout'
|
|
62138
62222
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62139
62223
|
message: string
|
|
62140
62224
|
}
|
|
@@ -62534,7 +62618,7 @@ export type Routes = {
|
|
|
62534
62618
|
}
|
|
62535
62619
|
| {
|
|
62536
62620
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
62537
|
-
type: '
|
|
62621
|
+
type: 'encoder_communication_timeout'
|
|
62538
62622
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62539
62623
|
message: string
|
|
62540
62624
|
}
|
|
@@ -62544,6 +62628,12 @@ export type Routes = {
|
|
|
62544
62628
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62545
62629
|
message: string
|
|
62546
62630
|
}
|
|
62631
|
+
| {
|
|
62632
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
62633
|
+
type: 'encoding_interrupted'
|
|
62634
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62635
|
+
message: string
|
|
62636
|
+
}
|
|
62547
62637
|
}
|
|
62548
62638
|
| {
|
|
62549
62639
|
/** ID of the action attempt. */
|
|
@@ -67069,7 +67159,7 @@ export type Routes = {
|
|
|
67069
67159
|
}
|
|
67070
67160
|
| {
|
|
67071
67161
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
67072
|
-
type: '
|
|
67162
|
+
type: 'encoder_communication_timeout'
|
|
67073
67163
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67074
67164
|
message: string
|
|
67075
67165
|
}
|
|
@@ -67469,7 +67559,7 @@ export type Routes = {
|
|
|
67469
67559
|
}
|
|
67470
67560
|
| {
|
|
67471
67561
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
67472
|
-
type: '
|
|
67562
|
+
type: 'encoder_communication_timeout'
|
|
67473
67563
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67474
67564
|
message: string
|
|
67475
67565
|
}
|
|
@@ -67479,6 +67569,12 @@ export type Routes = {
|
|
|
67479
67569
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67480
67570
|
message: string
|
|
67481
67571
|
}
|
|
67572
|
+
| {
|
|
67573
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
67574
|
+
type: 'encoding_interrupted'
|
|
67575
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67576
|
+
message: string
|
|
67577
|
+
}
|
|
67482
67578
|
}
|
|
67483
67579
|
| {
|
|
67484
67580
|
/** ID of the action attempt. */
|
|
@@ -68630,7 +68726,7 @@ export type Routes = {
|
|
|
68630
68726
|
}
|
|
68631
68727
|
| {
|
|
68632
68728
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
68633
|
-
type: '
|
|
68729
|
+
type: 'encoder_communication_timeout'
|
|
68634
68730
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68635
68731
|
message: string
|
|
68636
68732
|
}
|
|
@@ -69030,7 +69126,7 @@ export type Routes = {
|
|
|
69030
69126
|
}
|
|
69031
69127
|
| {
|
|
69032
69128
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
69033
|
-
type: '
|
|
69129
|
+
type: 'encoder_communication_timeout'
|
|
69034
69130
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69035
69131
|
message: string
|
|
69036
69132
|
}
|
|
@@ -69040,6 +69136,12 @@ export type Routes = {
|
|
|
69040
69136
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69041
69137
|
message: string
|
|
69042
69138
|
}
|
|
69139
|
+
| {
|
|
69140
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
69141
|
+
type: 'encoding_interrupted'
|
|
69142
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69143
|
+
message: string
|
|
69144
|
+
}
|
|
69043
69145
|
}
|
|
69044
69146
|
| {
|
|
69045
69147
|
/** ID of the action attempt. */
|
|
@@ -70247,7 +70349,7 @@ export type Routes = {
|
|
|
70247
70349
|
}
|
|
70248
70350
|
| {
|
|
70249
70351
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
70250
|
-
type: '
|
|
70352
|
+
type: 'encoder_communication_timeout'
|
|
70251
70353
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70252
70354
|
message: string
|
|
70253
70355
|
}
|
|
@@ -70647,7 +70749,7 @@ export type Routes = {
|
|
|
70647
70749
|
}
|
|
70648
70750
|
| {
|
|
70649
70751
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
70650
|
-
type: '
|
|
70752
|
+
type: 'encoder_communication_timeout'
|
|
70651
70753
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70652
70754
|
message: string
|
|
70653
70755
|
}
|
|
@@ -70657,6 +70759,12 @@ export type Routes = {
|
|
|
70657
70759
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70658
70760
|
message: string
|
|
70659
70761
|
}
|
|
70762
|
+
| {
|
|
70763
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
70764
|
+
type: 'encoding_interrupted'
|
|
70765
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70766
|
+
message: string
|
|
70767
|
+
}
|
|
70660
70768
|
}
|
|
70661
70769
|
| {
|
|
70662
70770
|
/** ID of the action attempt. */
|
|
@@ -72824,7 +72932,7 @@ export type Routes = {
|
|
|
72824
72932
|
}
|
|
72825
72933
|
| {
|
|
72826
72934
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
72827
|
-
type: '
|
|
72935
|
+
type: 'encoder_communication_timeout'
|
|
72828
72936
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72829
72937
|
message: string
|
|
72830
72938
|
}
|
|
@@ -73224,7 +73332,7 @@ export type Routes = {
|
|
|
73224
73332
|
}
|
|
73225
73333
|
| {
|
|
73226
73334
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
73227
|
-
type: '
|
|
73335
|
+
type: 'encoder_communication_timeout'
|
|
73228
73336
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73229
73337
|
message: string
|
|
73230
73338
|
}
|
|
@@ -73234,6 +73342,12 @@ export type Routes = {
|
|
|
73234
73342
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73235
73343
|
message: string
|
|
73236
73344
|
}
|
|
73345
|
+
| {
|
|
73346
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
73347
|
+
type: 'encoding_interrupted'
|
|
73348
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73349
|
+
message: string
|
|
73350
|
+
}
|
|
73237
73351
|
}
|
|
73238
73352
|
| {
|
|
73239
73353
|
/** ID of the action attempt. */
|
|
@@ -78196,6 +78310,170 @@ export type Routes = {
|
|
|
78196
78310
|
}
|
|
78197
78311
|
maxDuration: undefined
|
|
78198
78312
|
}
|
|
78313
|
+
'/seam/customer/v1/portals/update': {
|
|
78314
|
+
route: '/seam/customer/v1/portals/update'
|
|
78315
|
+
method: 'PATCH' | 'POST'
|
|
78316
|
+
queryParams: {}
|
|
78317
|
+
jsonBody: {
|
|
78318
|
+
/** ID of the customer portal to update. */
|
|
78319
|
+
customer_portal_id: string
|
|
78320
|
+
/** Partial portal configuration to merge with the existing configuration. */
|
|
78321
|
+
portal_configuration: {
|
|
78322
|
+
features?:
|
|
78323
|
+
| {
|
|
78324
|
+
/** Configuration for the connect accounts feature. */
|
|
78325
|
+
connect?: {
|
|
78326
|
+
/** Whether to exclude this feature from the portal. */
|
|
78327
|
+
exclude?: boolean
|
|
78328
|
+
/** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
|
|
78329
|
+
accepted_providers?: string[] | undefined
|
|
78330
|
+
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
78331
|
+
excluded_providers?: string[] | undefined
|
|
78332
|
+
}
|
|
78333
|
+
/** Configuration for the manage feature. */
|
|
78334
|
+
manage?: {
|
|
78335
|
+
/** Whether to exclude this feature from the portal. */
|
|
78336
|
+
exclude?: boolean
|
|
78337
|
+
/** Indicates whether the customer can manage reservations for their properties. */
|
|
78338
|
+
exclude_reservation_management?: boolean
|
|
78339
|
+
/** Indicates whether to exclude technical details from reservation views. */
|
|
78340
|
+
exclude_reservation_technical_details?: boolean
|
|
78341
|
+
/** Indicates whether the customer can manage staff for their properties. */
|
|
78342
|
+
exclude_staff_management?: boolean
|
|
78343
|
+
/** Configuration for event type filtering in the manage feature. */
|
|
78344
|
+
events?:
|
|
78345
|
+
| {
|
|
78346
|
+
/** 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. */
|
|
78347
|
+
allowed_events?: string[] | undefined
|
|
78348
|
+
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
78349
|
+
default_events?: string[] | undefined
|
|
78350
|
+
}
|
|
78351
|
+
| undefined
|
|
78352
|
+
}
|
|
78353
|
+
/** Configuration for the manage devices feature.
|
|
78354
|
+
---
|
|
78355
|
+
deprecated: Use `manage` instead.
|
|
78356
|
+
--- */
|
|
78357
|
+
manage_devices?: {
|
|
78358
|
+
/** Whether to exclude this feature from the portal. */
|
|
78359
|
+
exclude?: boolean
|
|
78360
|
+
}
|
|
78361
|
+
/** Configuration for the organize feature. */
|
|
78362
|
+
organize?: {
|
|
78363
|
+
/** Whether to exclude this feature from the portal. */
|
|
78364
|
+
exclude?: boolean
|
|
78365
|
+
}
|
|
78366
|
+
/** Configuration for the configure feature. */
|
|
78367
|
+
configure?: {
|
|
78368
|
+
/** Whether to exclude this feature from the portal. */
|
|
78369
|
+
exclude?: boolean
|
|
78370
|
+
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
78371
|
+
allow_access_automation_rule_customization?: boolean
|
|
78372
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
78373
|
+
allow_climate_automation_rule_customization?: boolean
|
|
78374
|
+
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
78375
|
+
allow_instant_key_customization?: boolean
|
|
78376
|
+
}
|
|
78377
|
+
}
|
|
78378
|
+
| undefined
|
|
78379
|
+
/** Whether the portal is embedded in another application. */
|
|
78380
|
+
is_embedded?: boolean | undefined
|
|
78381
|
+
/** Configuration for the landing page when the portal loads. */
|
|
78382
|
+
landing_page?:
|
|
78383
|
+
| (
|
|
78384
|
+
| {
|
|
78385
|
+
manage?:
|
|
78386
|
+
| (
|
|
78387
|
+
| (
|
|
78388
|
+
| {
|
|
78389
|
+
space_key: string
|
|
78390
|
+
}
|
|
78391
|
+
| {
|
|
78392
|
+
property_key: string
|
|
78393
|
+
}
|
|
78394
|
+
| {
|
|
78395
|
+
room_key: string
|
|
78396
|
+
}
|
|
78397
|
+
| {
|
|
78398
|
+
common_area_key: string
|
|
78399
|
+
}
|
|
78400
|
+
| {
|
|
78401
|
+
unit_key: string
|
|
78402
|
+
}
|
|
78403
|
+
| {
|
|
78404
|
+
facility_key: string
|
|
78405
|
+
}
|
|
78406
|
+
| {
|
|
78407
|
+
building_key: string
|
|
78408
|
+
}
|
|
78409
|
+
| {
|
|
78410
|
+
listing_key: string
|
|
78411
|
+
}
|
|
78412
|
+
| {
|
|
78413
|
+
property_listing_key: string
|
|
78414
|
+
}
|
|
78415
|
+
| {
|
|
78416
|
+
site_key: string
|
|
78417
|
+
}
|
|
78418
|
+
)
|
|
78419
|
+
| (
|
|
78420
|
+
| {
|
|
78421
|
+
reservation_key: string
|
|
78422
|
+
}
|
|
78423
|
+
| {
|
|
78424
|
+
booking_key: string
|
|
78425
|
+
}
|
|
78426
|
+
| {
|
|
78427
|
+
access_grant_key: string
|
|
78428
|
+
}
|
|
78429
|
+
)
|
|
78430
|
+
)
|
|
78431
|
+
| undefined
|
|
78432
|
+
}
|
|
78433
|
+
| undefined
|
|
78434
|
+
)
|
|
78435
|
+
| undefined
|
|
78436
|
+
/** The locale to use for the portal. */
|
|
78437
|
+
locale?:
|
|
78438
|
+
| (('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined)
|
|
78439
|
+
| undefined
|
|
78440
|
+
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
78441
|
+
exclude_locale_picker?: boolean | undefined
|
|
78442
|
+
/** The ID of the customization profile to use for the portal. */
|
|
78443
|
+
customization_profile_id?: (string | undefined) | undefined
|
|
78444
|
+
/** Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata. */
|
|
78445
|
+
customer_resources_filters?:
|
|
78446
|
+
| (
|
|
78447
|
+
| {
|
|
78448
|
+
/** The custom_metadata field name to filter on. */
|
|
78449
|
+
field: string
|
|
78450
|
+
/** The comparison operation. Currently only '=' is supported. */
|
|
78451
|
+
operation: '='
|
|
78452
|
+
/** The value to compare against. */
|
|
78453
|
+
value: string | boolean
|
|
78454
|
+
}[]
|
|
78455
|
+
| undefined
|
|
78456
|
+
)
|
|
78457
|
+
| undefined
|
|
78458
|
+
/** Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links. */
|
|
78459
|
+
navigation_mode?: ('full' | 'restricted') | undefined
|
|
78460
|
+
/** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
|
|
78461
|
+
deep_link?:
|
|
78462
|
+
| (
|
|
78463
|
+
| {
|
|
78464
|
+
resource_type: 'reservation' | 'space'
|
|
78465
|
+
resource_key: string
|
|
78466
|
+
}
|
|
78467
|
+
| undefined
|
|
78468
|
+
)
|
|
78469
|
+
| undefined
|
|
78470
|
+
}
|
|
78471
|
+
}
|
|
78472
|
+
commonParams: {}
|
|
78473
|
+
formData: {}
|
|
78474
|
+
jsonResponse: {}
|
|
78475
|
+
maxDuration: undefined
|
|
78476
|
+
}
|
|
78199
78477
|
'/seam/customer/v1/reservations/get': {
|
|
78200
78478
|
route: '/seam/customer/v1/reservations/get'
|
|
78201
78479
|
method: 'GET' | 'POST'
|
|
@@ -82938,7 +83216,7 @@ export type Routes = {
|
|
|
82938
83216
|
}
|
|
82939
83217
|
| {
|
|
82940
83218
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
82941
|
-
type: '
|
|
83219
|
+
type: 'encoder_communication_timeout'
|
|
82942
83220
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82943
83221
|
message: string
|
|
82944
83222
|
}
|
|
@@ -83338,7 +83616,7 @@ export type Routes = {
|
|
|
83338
83616
|
}
|
|
83339
83617
|
| {
|
|
83340
83618
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
83341
|
-
type: '
|
|
83619
|
+
type: 'encoder_communication_timeout'
|
|
83342
83620
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83343
83621
|
message: string
|
|
83344
83622
|
}
|
|
@@ -83348,6 +83626,12 @@ export type Routes = {
|
|
|
83348
83626
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83349
83627
|
message: string
|
|
83350
83628
|
}
|
|
83629
|
+
| {
|
|
83630
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
83631
|
+
type: 'encoding_interrupted'
|
|
83632
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83633
|
+
message: string
|
|
83634
|
+
}
|
|
83351
83635
|
}
|
|
83352
83636
|
| {
|
|
83353
83637
|
/** ID of the action attempt. */
|
|
@@ -84484,7 +84768,7 @@ export type Routes = {
|
|
|
84484
84768
|
}
|
|
84485
84769
|
| {
|
|
84486
84770
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
84487
|
-
type: '
|
|
84771
|
+
type: 'encoder_communication_timeout'
|
|
84488
84772
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84489
84773
|
message: string
|
|
84490
84774
|
}
|
|
@@ -84884,7 +85168,7 @@ export type Routes = {
|
|
|
84884
85168
|
}
|
|
84885
85169
|
| {
|
|
84886
85170
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
84887
|
-
type: '
|
|
85171
|
+
type: 'encoder_communication_timeout'
|
|
84888
85172
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84889
85173
|
message: string
|
|
84890
85174
|
}
|
|
@@ -84894,6 +85178,12 @@ export type Routes = {
|
|
|
84894
85178
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84895
85179
|
message: string
|
|
84896
85180
|
}
|
|
85181
|
+
| {
|
|
85182
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
85183
|
+
type: 'encoding_interrupted'
|
|
85184
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85185
|
+
message: string
|
|
85186
|
+
}
|
|
84897
85187
|
}
|
|
84898
85188
|
| {
|
|
84899
85189
|
/** ID of the action attempt. */
|
|
@@ -86142,7 +86432,7 @@ export type Routes = {
|
|
|
86142
86432
|
}
|
|
86143
86433
|
| {
|
|
86144
86434
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
86145
|
-
type: '
|
|
86435
|
+
type: 'encoder_communication_timeout'
|
|
86146
86436
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86147
86437
|
message: string
|
|
86148
86438
|
}
|
|
@@ -86542,7 +86832,7 @@ export type Routes = {
|
|
|
86542
86832
|
}
|
|
86543
86833
|
| {
|
|
86544
86834
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
86545
|
-
type: '
|
|
86835
|
+
type: 'encoder_communication_timeout'
|
|
86546
86836
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86547
86837
|
message: string
|
|
86548
86838
|
}
|
|
@@ -86552,6 +86842,12 @@ export type Routes = {
|
|
|
86552
86842
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86553
86843
|
message: string
|
|
86554
86844
|
}
|
|
86845
|
+
| {
|
|
86846
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
86847
|
+
type: 'encoding_interrupted'
|
|
86848
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86849
|
+
message: string
|
|
86850
|
+
}
|
|
86555
86851
|
}
|
|
86556
86852
|
| {
|
|
86557
86853
|
/** ID of the action attempt. */
|
|
@@ -89362,7 +89658,7 @@ export type Routes = {
|
|
|
89362
89658
|
}
|
|
89363
89659
|
| {
|
|
89364
89660
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
89365
|
-
type: '
|
|
89661
|
+
type: 'encoder_communication_timeout'
|
|
89366
89662
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89367
89663
|
message: string
|
|
89368
89664
|
}
|
|
@@ -89762,7 +90058,7 @@ export type Routes = {
|
|
|
89762
90058
|
}
|
|
89763
90059
|
| {
|
|
89764
90060
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
89765
|
-
type: '
|
|
90061
|
+
type: 'encoder_communication_timeout'
|
|
89766
90062
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89767
90063
|
message: string
|
|
89768
90064
|
}
|
|
@@ -89772,6 +90068,12 @@ export type Routes = {
|
|
|
89772
90068
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89773
90069
|
message: string
|
|
89774
90070
|
}
|
|
90071
|
+
| {
|
|
90072
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
90073
|
+
type: 'encoding_interrupted'
|
|
90074
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90075
|
+
message: string
|
|
90076
|
+
}
|
|
89775
90077
|
}
|
|
89776
90078
|
| {
|
|
89777
90079
|
/** ID of the action attempt. */
|
|
@@ -90912,7 +91214,7 @@ export type Routes = {
|
|
|
90912
91214
|
}
|
|
90913
91215
|
| {
|
|
90914
91216
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
90915
|
-
type: '
|
|
91217
|
+
type: 'encoder_communication_timeout'
|
|
90916
91218
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90917
91219
|
message: string
|
|
90918
91220
|
}
|
|
@@ -91312,7 +91614,7 @@ export type Routes = {
|
|
|
91312
91614
|
}
|
|
91313
91615
|
| {
|
|
91314
91616
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
91315
|
-
type: '
|
|
91617
|
+
type: 'encoder_communication_timeout'
|
|
91316
91618
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
91317
91619
|
message: string
|
|
91318
91620
|
}
|
|
@@ -91322,6 +91624,12 @@ export type Routes = {
|
|
|
91322
91624
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
91323
91625
|
message: string
|
|
91324
91626
|
}
|
|
91627
|
+
| {
|
|
91628
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
91629
|
+
type: 'encoding_interrupted'
|
|
91630
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
91631
|
+
message: string
|
|
91632
|
+
}
|
|
91325
91633
|
}
|
|
91326
91634
|
| {
|
|
91327
91635
|
/** ID of the action attempt. */
|
|
@@ -95864,7 +96172,7 @@ export type Routes = {
|
|
|
95864
96172
|
}
|
|
95865
96173
|
| {
|
|
95866
96174
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
95867
|
-
type: '
|
|
96175
|
+
type: 'encoder_communication_timeout'
|
|
95868
96176
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95869
96177
|
message: string
|
|
95870
96178
|
}
|
|
@@ -96264,7 +96572,7 @@ export type Routes = {
|
|
|
96264
96572
|
}
|
|
96265
96573
|
| {
|
|
96266
96574
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
96267
|
-
type: '
|
|
96575
|
+
type: 'encoder_communication_timeout'
|
|
96268
96576
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96269
96577
|
message: string
|
|
96270
96578
|
}
|
|
@@ -96274,6 +96582,12 @@ export type Routes = {
|
|
|
96274
96582
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96275
96583
|
message: string
|
|
96276
96584
|
}
|
|
96585
|
+
| {
|
|
96586
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
96587
|
+
type: 'encoding_interrupted'
|
|
96588
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96589
|
+
message: string
|
|
96590
|
+
}
|
|
96277
96591
|
}
|
|
96278
96592
|
| {
|
|
96279
96593
|
/** ID of the action attempt. */
|
|
@@ -97609,7 +97923,7 @@ export type Routes = {
|
|
|
97609
97923
|
}
|
|
97610
97924
|
| {
|
|
97611
97925
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
97612
|
-
type: '
|
|
97926
|
+
type: 'encoder_communication_timeout'
|
|
97613
97927
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97614
97928
|
message: string
|
|
97615
97929
|
}
|
|
@@ -98009,7 +98323,7 @@ export type Routes = {
|
|
|
98009
98323
|
}
|
|
98010
98324
|
| {
|
|
98011
98325
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
98012
|
-
type: '
|
|
98326
|
+
type: 'encoder_communication_timeout'
|
|
98013
98327
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98014
98328
|
message: string
|
|
98015
98329
|
}
|
|
@@ -98019,6 +98333,12 @@ export type Routes = {
|
|
|
98019
98333
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98020
98334
|
message: string
|
|
98021
98335
|
}
|
|
98336
|
+
| {
|
|
98337
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
98338
|
+
type: 'encoding_interrupted'
|
|
98339
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98340
|
+
message: string
|
|
98341
|
+
}
|
|
98022
98342
|
}
|
|
98023
98343
|
| {
|
|
98024
98344
|
/** ID of the action attempt. */
|
|
@@ -99187,7 +99507,7 @@ export type Routes = {
|
|
|
99187
99507
|
}
|
|
99188
99508
|
| {
|
|
99189
99509
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
99190
|
-
type: '
|
|
99510
|
+
type: 'encoder_communication_timeout'
|
|
99191
99511
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99192
99512
|
message: string
|
|
99193
99513
|
}
|
|
@@ -99587,7 +99907,7 @@ export type Routes = {
|
|
|
99587
99907
|
}
|
|
99588
99908
|
| {
|
|
99589
99909
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
99590
|
-
type: '
|
|
99910
|
+
type: 'encoder_communication_timeout'
|
|
99591
99911
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99592
99912
|
message: string
|
|
99593
99913
|
}
|
|
@@ -99597,6 +99917,12 @@ export type Routes = {
|
|
|
99597
99917
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99598
99918
|
message: string
|
|
99599
99919
|
}
|
|
99920
|
+
| {
|
|
99921
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
99922
|
+
type: 'encoding_interrupted'
|
|
99923
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99924
|
+
message: string
|
|
99925
|
+
}
|
|
99600
99926
|
}
|
|
99601
99927
|
| {
|
|
99602
99928
|
/** ID of the action attempt. */
|
|
@@ -100882,7 +101208,7 @@ export type Routes = {
|
|
|
100882
101208
|
}
|
|
100883
101209
|
| {
|
|
100884
101210
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
100885
|
-
type: '
|
|
101211
|
+
type: 'encoder_communication_timeout'
|
|
100886
101212
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
100887
101213
|
message: string
|
|
100888
101214
|
}
|
|
@@ -101282,7 +101608,7 @@ export type Routes = {
|
|
|
101282
101608
|
}
|
|
101283
101609
|
| {
|
|
101284
101610
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
101285
|
-
type: '
|
|
101611
|
+
type: 'encoder_communication_timeout'
|
|
101286
101612
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101287
101613
|
message: string
|
|
101288
101614
|
}
|
|
@@ -101292,6 +101618,12 @@ export type Routes = {
|
|
|
101292
101618
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101293
101619
|
message: string
|
|
101294
101620
|
}
|
|
101621
|
+
| {
|
|
101622
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
101623
|
+
type: 'encoding_interrupted'
|
|
101624
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101625
|
+
message: string
|
|
101626
|
+
}
|
|
101295
101627
|
}
|
|
101296
101628
|
| {
|
|
101297
101629
|
/** ID of the action attempt. */
|
|
@@ -109874,7 +110206,7 @@ export type Routes = {
|
|
|
109874
110206
|
}
|
|
109875
110207
|
| {
|
|
109876
110208
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
109877
|
-
type: '
|
|
110209
|
+
type: 'encoder_communication_timeout'
|
|
109878
110210
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
109879
110211
|
message: string
|
|
109880
110212
|
}
|
|
@@ -110286,7 +110618,7 @@ export type Routes = {
|
|
|
110286
110618
|
}
|
|
110287
110619
|
| {
|
|
110288
110620
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
110289
|
-
type: '
|
|
110621
|
+
type: 'encoder_communication_timeout'
|
|
110290
110622
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110291
110623
|
message: string
|
|
110292
110624
|
}
|
|
@@ -110296,6 +110628,12 @@ export type Routes = {
|
|
|
110296
110628
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110297
110629
|
message: string
|
|
110298
110630
|
}
|
|
110631
|
+
| {
|
|
110632
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
110633
|
+
type: 'encoding_interrupted'
|
|
110634
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110635
|
+
message: string
|
|
110636
|
+
}
|
|
110299
110637
|
}
|
|
110300
110638
|
| {
|
|
110301
110639
|
/** ID of the action attempt. */
|
|
@@ -117747,7 +118085,7 @@ export type Routes = {
|
|
|
117747
118085
|
}
|
|
117748
118086
|
| {
|
|
117749
118087
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
117750
|
-
type: '
|
|
118088
|
+
type: 'encoder_communication_timeout'
|
|
117751
118089
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117752
118090
|
message: string
|
|
117753
118091
|
}
|
|
@@ -118147,7 +118485,7 @@ export type Routes = {
|
|
|
118147
118485
|
}
|
|
118148
118486
|
| {
|
|
118149
118487
|
/** Error type to indicate that communication with the encoder timed out. */
|
|
118150
|
-
type: '
|
|
118488
|
+
type: 'encoder_communication_timeout'
|
|
118151
118489
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118152
118490
|
message: string
|
|
118153
118491
|
}
|
|
@@ -118157,6 +118495,12 @@ export type Routes = {
|
|
|
118157
118495
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118158
118496
|
message: string
|
|
118159
118497
|
}
|
|
118498
|
+
| {
|
|
118499
|
+
/** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
|
|
118500
|
+
type: 'encoding_interrupted'
|
|
118501
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118502
|
+
message: string
|
|
118503
|
+
}
|
|
118160
118504
|
}
|
|
118161
118505
|
| {
|
|
118162
118506
|
/** ID of the action attempt. */
|