@seamapi/types 1.264.0 → 1.264.1
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 +74 -41
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +506 -336
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +64 -39
- package/lib/seam/connect/models/action-attempts/deprecated.d.ts +61 -21
- package/lib/seam/connect/models/action-attempts/deprecated.js +13 -5
- package/lib/seam/connect/models/action-attempts/deprecated.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/encode-card.d.ts +3 -18
- package/lib/seam/connect/models/action-attempts/encode-card.js +1 -12
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/index.d.ts +1 -0
- package/lib/seam/connect/models/action-attempts/index.js +1 -0
- package/lib/seam/connect/models/action-attempts/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +69 -36
- package/lib/seam/connect/openapi.js +57 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +320 -260
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/deprecated.ts +13 -5
- package/src/lib/seam/connect/models/action-attempts/encode-card.ts +1 -12
- package/src/lib/seam/connect/models/action-attempts/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +57 -33
- package/src/lib/seam/connect/route-types.ts +320 -260
- package/src/lib/seam/connect/schemas.ts +3 -0
|
@@ -218,12 +218,7 @@ export interface Routes {
|
|
|
218
218
|
status: 'success';
|
|
219
219
|
error: null;
|
|
220
220
|
action_type: 'ENCODE_CARD';
|
|
221
|
-
result: {
|
|
222
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
223
|
-
acs_credential_id: string | null;
|
|
224
|
-
/** A number or string that physically identifies this card. */
|
|
225
|
-
card_number: string | null;
|
|
226
|
-
};
|
|
221
|
+
result: {};
|
|
227
222
|
} | {
|
|
228
223
|
/** The ID of the action attempt. */
|
|
229
224
|
action_attempt_id: string;
|
|
@@ -415,7 +410,7 @@ export interface Routes {
|
|
|
415
410
|
status: 'success';
|
|
416
411
|
error: null;
|
|
417
412
|
action_type: 'SYNC_ACCESS_CODES';
|
|
418
|
-
result
|
|
413
|
+
result: {};
|
|
419
414
|
} | {
|
|
420
415
|
/** The ID of the action attempt. */
|
|
421
416
|
action_attempt_id: string;
|
|
@@ -439,7 +434,9 @@ export interface Routes {
|
|
|
439
434
|
status: 'success';
|
|
440
435
|
error: null;
|
|
441
436
|
action_type: 'CREATE_ACCESS_CODE';
|
|
442
|
-
result
|
|
437
|
+
result: {
|
|
438
|
+
access_code?: any;
|
|
439
|
+
};
|
|
443
440
|
} | {
|
|
444
441
|
/** The ID of the action attempt. */
|
|
445
442
|
action_attempt_id: string;
|
|
@@ -463,7 +460,7 @@ export interface Routes {
|
|
|
463
460
|
status: 'success';
|
|
464
461
|
error: null;
|
|
465
462
|
action_type: 'DELETE_ACCESS_CODE';
|
|
466
|
-
result
|
|
463
|
+
result: {};
|
|
467
464
|
} | {
|
|
468
465
|
/** The ID of the action attempt. */
|
|
469
466
|
action_attempt_id: string;
|
|
@@ -487,7 +484,9 @@ export interface Routes {
|
|
|
487
484
|
status: 'success';
|
|
488
485
|
error: null;
|
|
489
486
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
490
|
-
result
|
|
487
|
+
result: {
|
|
488
|
+
access_code?: any;
|
|
489
|
+
};
|
|
491
490
|
} | {
|
|
492
491
|
/** The ID of the action attempt. */
|
|
493
492
|
action_attempt_id: string;
|
|
@@ -511,7 +510,9 @@ export interface Routes {
|
|
|
511
510
|
status: 'success';
|
|
512
511
|
error: null;
|
|
513
512
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
514
|
-
result
|
|
513
|
+
result: {
|
|
514
|
+
noise_threshold?: any;
|
|
515
|
+
};
|
|
515
516
|
} | {
|
|
516
517
|
/** The ID of the action attempt. */
|
|
517
518
|
action_attempt_id: string;
|
|
@@ -535,7 +536,7 @@ export interface Routes {
|
|
|
535
536
|
status: 'success';
|
|
536
537
|
error: null;
|
|
537
538
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
538
|
-
result
|
|
539
|
+
result: {};
|
|
539
540
|
} | {
|
|
540
541
|
/** The ID of the action attempt. */
|
|
541
542
|
action_attempt_id: string;
|
|
@@ -559,7 +560,9 @@ export interface Routes {
|
|
|
559
560
|
status: 'success';
|
|
560
561
|
error: null;
|
|
561
562
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
562
|
-
result
|
|
563
|
+
result: {
|
|
564
|
+
noise_threshold?: any;
|
|
565
|
+
};
|
|
563
566
|
} | {
|
|
564
567
|
/** The ID of the action attempt. */
|
|
565
568
|
action_attempt_id: string;
|
|
@@ -927,12 +930,7 @@ export interface Routes {
|
|
|
927
930
|
status: 'success';
|
|
928
931
|
error: null;
|
|
929
932
|
action_type: 'ENCODE_CARD';
|
|
930
|
-
result: {
|
|
931
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
932
|
-
acs_credential_id: string | null;
|
|
933
|
-
/** A number or string that physically identifies this card. */
|
|
934
|
-
card_number: string | null;
|
|
935
|
-
};
|
|
933
|
+
result: {};
|
|
936
934
|
} | {
|
|
937
935
|
/** The ID of the action attempt. */
|
|
938
936
|
action_attempt_id: string;
|
|
@@ -1124,7 +1122,7 @@ export interface Routes {
|
|
|
1124
1122
|
status: 'success';
|
|
1125
1123
|
error: null;
|
|
1126
1124
|
action_type: 'SYNC_ACCESS_CODES';
|
|
1127
|
-
result
|
|
1125
|
+
result: {};
|
|
1128
1126
|
} | {
|
|
1129
1127
|
/** The ID of the action attempt. */
|
|
1130
1128
|
action_attempt_id: string;
|
|
@@ -1148,7 +1146,9 @@ export interface Routes {
|
|
|
1148
1146
|
status: 'success';
|
|
1149
1147
|
error: null;
|
|
1150
1148
|
action_type: 'CREATE_ACCESS_CODE';
|
|
1151
|
-
result
|
|
1149
|
+
result: {
|
|
1150
|
+
access_code?: any;
|
|
1151
|
+
};
|
|
1152
1152
|
} | {
|
|
1153
1153
|
/** The ID of the action attempt. */
|
|
1154
1154
|
action_attempt_id: string;
|
|
@@ -1172,7 +1172,7 @@ export interface Routes {
|
|
|
1172
1172
|
status: 'success';
|
|
1173
1173
|
error: null;
|
|
1174
1174
|
action_type: 'DELETE_ACCESS_CODE';
|
|
1175
|
-
result
|
|
1175
|
+
result: {};
|
|
1176
1176
|
} | {
|
|
1177
1177
|
/** The ID of the action attempt. */
|
|
1178
1178
|
action_attempt_id: string;
|
|
@@ -1196,7 +1196,9 @@ export interface Routes {
|
|
|
1196
1196
|
status: 'success';
|
|
1197
1197
|
error: null;
|
|
1198
1198
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
1199
|
-
result
|
|
1199
|
+
result: {
|
|
1200
|
+
access_code?: any;
|
|
1201
|
+
};
|
|
1200
1202
|
} | {
|
|
1201
1203
|
/** The ID of the action attempt. */
|
|
1202
1204
|
action_attempt_id: string;
|
|
@@ -1220,7 +1222,9 @@ export interface Routes {
|
|
|
1220
1222
|
status: 'success';
|
|
1221
1223
|
error: null;
|
|
1222
1224
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
1223
|
-
result
|
|
1225
|
+
result: {
|
|
1226
|
+
noise_threshold?: any;
|
|
1227
|
+
};
|
|
1224
1228
|
} | {
|
|
1225
1229
|
/** The ID of the action attempt. */
|
|
1226
1230
|
action_attempt_id: string;
|
|
@@ -1244,7 +1248,7 @@ export interface Routes {
|
|
|
1244
1248
|
status: 'success';
|
|
1245
1249
|
error: null;
|
|
1246
1250
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
1247
|
-
result
|
|
1251
|
+
result: {};
|
|
1248
1252
|
} | {
|
|
1249
1253
|
/** The ID of the action attempt. */
|
|
1250
1254
|
action_attempt_id: string;
|
|
@@ -1268,7 +1272,9 @@ export interface Routes {
|
|
|
1268
1272
|
status: 'success';
|
|
1269
1273
|
error: null;
|
|
1270
1274
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
1271
|
-
result
|
|
1275
|
+
result: {
|
|
1276
|
+
noise_threshold?: any;
|
|
1277
|
+
};
|
|
1272
1278
|
} | {
|
|
1273
1279
|
/** The ID of the action attempt. */
|
|
1274
1280
|
action_attempt_id: string;
|
|
@@ -1793,12 +1799,7 @@ export interface Routes {
|
|
|
1793
1799
|
status: 'success';
|
|
1794
1800
|
error: null;
|
|
1795
1801
|
action_type: 'ENCODE_CARD';
|
|
1796
|
-
result: {
|
|
1797
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
1798
|
-
acs_credential_id: string | null;
|
|
1799
|
-
/** A number or string that physically identifies this card. */
|
|
1800
|
-
card_number: string | null;
|
|
1801
|
-
};
|
|
1802
|
+
result: {};
|
|
1802
1803
|
} | {
|
|
1803
1804
|
/** The ID of the action attempt. */
|
|
1804
1805
|
action_attempt_id: string;
|
|
@@ -1990,7 +1991,7 @@ export interface Routes {
|
|
|
1990
1991
|
status: 'success';
|
|
1991
1992
|
error: null;
|
|
1992
1993
|
action_type: 'SYNC_ACCESS_CODES';
|
|
1993
|
-
result
|
|
1994
|
+
result: {};
|
|
1994
1995
|
} | {
|
|
1995
1996
|
/** The ID of the action attempt. */
|
|
1996
1997
|
action_attempt_id: string;
|
|
@@ -2014,7 +2015,9 @@ export interface Routes {
|
|
|
2014
2015
|
status: 'success';
|
|
2015
2016
|
error: null;
|
|
2016
2017
|
action_type: 'CREATE_ACCESS_CODE';
|
|
2017
|
-
result
|
|
2018
|
+
result: {
|
|
2019
|
+
access_code?: any;
|
|
2020
|
+
};
|
|
2018
2021
|
} | {
|
|
2019
2022
|
/** The ID of the action attempt. */
|
|
2020
2023
|
action_attempt_id: string;
|
|
@@ -2038,7 +2041,7 @@ export interface Routes {
|
|
|
2038
2041
|
status: 'success';
|
|
2039
2042
|
error: null;
|
|
2040
2043
|
action_type: 'DELETE_ACCESS_CODE';
|
|
2041
|
-
result
|
|
2044
|
+
result: {};
|
|
2042
2045
|
} | {
|
|
2043
2046
|
/** The ID of the action attempt. */
|
|
2044
2047
|
action_attempt_id: string;
|
|
@@ -2062,7 +2065,9 @@ export interface Routes {
|
|
|
2062
2065
|
status: 'success';
|
|
2063
2066
|
error: null;
|
|
2064
2067
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
2065
|
-
result
|
|
2068
|
+
result: {
|
|
2069
|
+
access_code?: any;
|
|
2070
|
+
};
|
|
2066
2071
|
} | {
|
|
2067
2072
|
/** The ID of the action attempt. */
|
|
2068
2073
|
action_attempt_id: string;
|
|
@@ -2086,7 +2091,9 @@ export interface Routes {
|
|
|
2086
2091
|
status: 'success';
|
|
2087
2092
|
error: null;
|
|
2088
2093
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
2089
|
-
result
|
|
2094
|
+
result: {
|
|
2095
|
+
noise_threshold?: any;
|
|
2096
|
+
};
|
|
2090
2097
|
} | {
|
|
2091
2098
|
/** The ID of the action attempt. */
|
|
2092
2099
|
action_attempt_id: string;
|
|
@@ -2110,7 +2117,7 @@ export interface Routes {
|
|
|
2110
2117
|
status: 'success';
|
|
2111
2118
|
error: null;
|
|
2112
2119
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
2113
|
-
result
|
|
2120
|
+
result: {};
|
|
2114
2121
|
} | {
|
|
2115
2122
|
/** The ID of the action attempt. */
|
|
2116
2123
|
action_attempt_id: string;
|
|
@@ -2134,7 +2141,9 @@ export interface Routes {
|
|
|
2134
2141
|
status: 'success';
|
|
2135
2142
|
error: null;
|
|
2136
2143
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
2137
|
-
result
|
|
2144
|
+
result: {
|
|
2145
|
+
noise_threshold?: any;
|
|
2146
|
+
};
|
|
2138
2147
|
} | {
|
|
2139
2148
|
/** The ID of the action attempt. */
|
|
2140
2149
|
action_attempt_id: string;
|
|
@@ -2489,12 +2498,7 @@ export interface Routes {
|
|
|
2489
2498
|
status: 'success';
|
|
2490
2499
|
error: null;
|
|
2491
2500
|
action_type: 'ENCODE_CARD';
|
|
2492
|
-
result: {
|
|
2493
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
2494
|
-
acs_credential_id: string | null;
|
|
2495
|
-
/** A number or string that physically identifies this card. */
|
|
2496
|
-
card_number: string | null;
|
|
2497
|
-
};
|
|
2501
|
+
result: {};
|
|
2498
2502
|
} | {
|
|
2499
2503
|
/** The ID of the action attempt. */
|
|
2500
2504
|
action_attempt_id: string;
|
|
@@ -2686,7 +2690,7 @@ export interface Routes {
|
|
|
2686
2690
|
status: 'success';
|
|
2687
2691
|
error: null;
|
|
2688
2692
|
action_type: 'SYNC_ACCESS_CODES';
|
|
2689
|
-
result
|
|
2693
|
+
result: {};
|
|
2690
2694
|
} | {
|
|
2691
2695
|
/** The ID of the action attempt. */
|
|
2692
2696
|
action_attempt_id: string;
|
|
@@ -2710,7 +2714,9 @@ export interface Routes {
|
|
|
2710
2714
|
status: 'success';
|
|
2711
2715
|
error: null;
|
|
2712
2716
|
action_type: 'CREATE_ACCESS_CODE';
|
|
2713
|
-
result
|
|
2717
|
+
result: {
|
|
2718
|
+
access_code?: any;
|
|
2719
|
+
};
|
|
2714
2720
|
} | {
|
|
2715
2721
|
/** The ID of the action attempt. */
|
|
2716
2722
|
action_attempt_id: string;
|
|
@@ -2734,7 +2740,7 @@ export interface Routes {
|
|
|
2734
2740
|
status: 'success';
|
|
2735
2741
|
error: null;
|
|
2736
2742
|
action_type: 'DELETE_ACCESS_CODE';
|
|
2737
|
-
result
|
|
2743
|
+
result: {};
|
|
2738
2744
|
} | {
|
|
2739
2745
|
/** The ID of the action attempt. */
|
|
2740
2746
|
action_attempt_id: string;
|
|
@@ -2758,7 +2764,9 @@ export interface Routes {
|
|
|
2758
2764
|
status: 'success';
|
|
2759
2765
|
error: null;
|
|
2760
2766
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
2761
|
-
result
|
|
2767
|
+
result: {
|
|
2768
|
+
access_code?: any;
|
|
2769
|
+
};
|
|
2762
2770
|
} | {
|
|
2763
2771
|
/** The ID of the action attempt. */
|
|
2764
2772
|
action_attempt_id: string;
|
|
@@ -2782,7 +2790,9 @@ export interface Routes {
|
|
|
2782
2790
|
status: 'success';
|
|
2783
2791
|
error: null;
|
|
2784
2792
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
2785
|
-
result
|
|
2793
|
+
result: {
|
|
2794
|
+
noise_threshold?: any;
|
|
2795
|
+
};
|
|
2786
2796
|
} | {
|
|
2787
2797
|
/** The ID of the action attempt. */
|
|
2788
2798
|
action_attempt_id: string;
|
|
@@ -2806,7 +2816,7 @@ export interface Routes {
|
|
|
2806
2816
|
status: 'success';
|
|
2807
2817
|
error: null;
|
|
2808
2818
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
2809
|
-
result
|
|
2819
|
+
result: {};
|
|
2810
2820
|
} | {
|
|
2811
2821
|
/** The ID of the action attempt. */
|
|
2812
2822
|
action_attempt_id: string;
|
|
@@ -2830,7 +2840,9 @@ export interface Routes {
|
|
|
2830
2840
|
status: 'success';
|
|
2831
2841
|
error: null;
|
|
2832
2842
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
2833
|
-
result
|
|
2843
|
+
result: {
|
|
2844
|
+
noise_threshold?: any;
|
|
2845
|
+
};
|
|
2834
2846
|
} | {
|
|
2835
2847
|
/** The ID of the action attempt. */
|
|
2836
2848
|
action_attempt_id: string;
|
|
@@ -3929,12 +3941,7 @@ export interface Routes {
|
|
|
3929
3941
|
status: 'success';
|
|
3930
3942
|
error: null;
|
|
3931
3943
|
action_type: 'ENCODE_CARD';
|
|
3932
|
-
result: {
|
|
3933
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
3934
|
-
acs_credential_id: string | null;
|
|
3935
|
-
/** A number or string that physically identifies this card. */
|
|
3936
|
-
card_number: string | null;
|
|
3937
|
-
};
|
|
3944
|
+
result: {};
|
|
3938
3945
|
} | {
|
|
3939
3946
|
/** The ID of the action attempt. */
|
|
3940
3947
|
action_attempt_id: string;
|
|
@@ -4126,7 +4133,7 @@ export interface Routes {
|
|
|
4126
4133
|
status: 'success';
|
|
4127
4134
|
error: null;
|
|
4128
4135
|
action_type: 'SYNC_ACCESS_CODES';
|
|
4129
|
-
result
|
|
4136
|
+
result: {};
|
|
4130
4137
|
} | {
|
|
4131
4138
|
/** The ID of the action attempt. */
|
|
4132
4139
|
action_attempt_id: string;
|
|
@@ -4150,7 +4157,9 @@ export interface Routes {
|
|
|
4150
4157
|
status: 'success';
|
|
4151
4158
|
error: null;
|
|
4152
4159
|
action_type: 'CREATE_ACCESS_CODE';
|
|
4153
|
-
result
|
|
4160
|
+
result: {
|
|
4161
|
+
access_code?: any;
|
|
4162
|
+
};
|
|
4154
4163
|
} | {
|
|
4155
4164
|
/** The ID of the action attempt. */
|
|
4156
4165
|
action_attempt_id: string;
|
|
@@ -4174,7 +4183,7 @@ export interface Routes {
|
|
|
4174
4183
|
status: 'success';
|
|
4175
4184
|
error: null;
|
|
4176
4185
|
action_type: 'DELETE_ACCESS_CODE';
|
|
4177
|
-
result
|
|
4186
|
+
result: {};
|
|
4178
4187
|
} | {
|
|
4179
4188
|
/** The ID of the action attempt. */
|
|
4180
4189
|
action_attempt_id: string;
|
|
@@ -4198,7 +4207,9 @@ export interface Routes {
|
|
|
4198
4207
|
status: 'success';
|
|
4199
4208
|
error: null;
|
|
4200
4209
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
4201
|
-
result
|
|
4210
|
+
result: {
|
|
4211
|
+
access_code?: any;
|
|
4212
|
+
};
|
|
4202
4213
|
} | {
|
|
4203
4214
|
/** The ID of the action attempt. */
|
|
4204
4215
|
action_attempt_id: string;
|
|
@@ -4222,7 +4233,9 @@ export interface Routes {
|
|
|
4222
4233
|
status: 'success';
|
|
4223
4234
|
error: null;
|
|
4224
4235
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
4225
|
-
result
|
|
4236
|
+
result: {
|
|
4237
|
+
noise_threshold?: any;
|
|
4238
|
+
};
|
|
4226
4239
|
} | {
|
|
4227
4240
|
/** The ID of the action attempt. */
|
|
4228
4241
|
action_attempt_id: string;
|
|
@@ -4246,7 +4259,7 @@ export interface Routes {
|
|
|
4246
4259
|
status: 'success';
|
|
4247
4260
|
error: null;
|
|
4248
4261
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
4249
|
-
result
|
|
4262
|
+
result: {};
|
|
4250
4263
|
} | {
|
|
4251
4264
|
/** The ID of the action attempt. */
|
|
4252
4265
|
action_attempt_id: string;
|
|
@@ -4270,7 +4283,9 @@ export interface Routes {
|
|
|
4270
4283
|
status: 'success';
|
|
4271
4284
|
error: null;
|
|
4272
4285
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
4273
|
-
result
|
|
4286
|
+
result: {
|
|
4287
|
+
noise_threshold?: any;
|
|
4288
|
+
};
|
|
4274
4289
|
} | {
|
|
4275
4290
|
/** The ID of the action attempt. */
|
|
4276
4291
|
action_attempt_id: string;
|
|
@@ -4950,12 +4965,7 @@ export interface Routes {
|
|
|
4950
4965
|
status: 'success';
|
|
4951
4966
|
error: null;
|
|
4952
4967
|
action_type: 'ENCODE_CARD';
|
|
4953
|
-
result: {
|
|
4954
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
4955
|
-
acs_credential_id: string | null;
|
|
4956
|
-
/** A number or string that physically identifies this card. */
|
|
4957
|
-
card_number: string | null;
|
|
4958
|
-
};
|
|
4968
|
+
result: {};
|
|
4959
4969
|
} | {
|
|
4960
4970
|
/** The ID of the action attempt. */
|
|
4961
4971
|
action_attempt_id: string;
|
|
@@ -5147,7 +5157,7 @@ export interface Routes {
|
|
|
5147
5157
|
status: 'success';
|
|
5148
5158
|
error: null;
|
|
5149
5159
|
action_type: 'SYNC_ACCESS_CODES';
|
|
5150
|
-
result
|
|
5160
|
+
result: {};
|
|
5151
5161
|
} | {
|
|
5152
5162
|
/** The ID of the action attempt. */
|
|
5153
5163
|
action_attempt_id: string;
|
|
@@ -5171,7 +5181,9 @@ export interface Routes {
|
|
|
5171
5181
|
status: 'success';
|
|
5172
5182
|
error: null;
|
|
5173
5183
|
action_type: 'CREATE_ACCESS_CODE';
|
|
5174
|
-
result
|
|
5184
|
+
result: {
|
|
5185
|
+
access_code?: any;
|
|
5186
|
+
};
|
|
5175
5187
|
} | {
|
|
5176
5188
|
/** The ID of the action attempt. */
|
|
5177
5189
|
action_attempt_id: string;
|
|
@@ -5195,7 +5207,7 @@ export interface Routes {
|
|
|
5195
5207
|
status: 'success';
|
|
5196
5208
|
error: null;
|
|
5197
5209
|
action_type: 'DELETE_ACCESS_CODE';
|
|
5198
|
-
result
|
|
5210
|
+
result: {};
|
|
5199
5211
|
} | {
|
|
5200
5212
|
/** The ID of the action attempt. */
|
|
5201
5213
|
action_attempt_id: string;
|
|
@@ -5219,7 +5231,9 @@ export interface Routes {
|
|
|
5219
5231
|
status: 'success';
|
|
5220
5232
|
error: null;
|
|
5221
5233
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
5222
|
-
result
|
|
5234
|
+
result: {
|
|
5235
|
+
access_code?: any;
|
|
5236
|
+
};
|
|
5223
5237
|
} | {
|
|
5224
5238
|
/** The ID of the action attempt. */
|
|
5225
5239
|
action_attempt_id: string;
|
|
@@ -5243,7 +5257,9 @@ export interface Routes {
|
|
|
5243
5257
|
status: 'success';
|
|
5244
5258
|
error: null;
|
|
5245
5259
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
5246
|
-
result
|
|
5260
|
+
result: {
|
|
5261
|
+
noise_threshold?: any;
|
|
5262
|
+
};
|
|
5247
5263
|
} | {
|
|
5248
5264
|
/** The ID of the action attempt. */
|
|
5249
5265
|
action_attempt_id: string;
|
|
@@ -5267,7 +5283,7 @@ export interface Routes {
|
|
|
5267
5283
|
status: 'success';
|
|
5268
5284
|
error: null;
|
|
5269
5285
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
5270
|
-
result
|
|
5286
|
+
result: {};
|
|
5271
5287
|
} | {
|
|
5272
5288
|
/** The ID of the action attempt. */
|
|
5273
5289
|
action_attempt_id: string;
|
|
@@ -5291,7 +5307,9 @@ export interface Routes {
|
|
|
5291
5307
|
status: 'success';
|
|
5292
5308
|
error: null;
|
|
5293
5309
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
5294
|
-
result
|
|
5310
|
+
result: {
|
|
5311
|
+
noise_threshold?: any;
|
|
5312
|
+
};
|
|
5295
5313
|
} | {
|
|
5296
5314
|
/** The ID of the action attempt. */
|
|
5297
5315
|
action_attempt_id: string;
|
|
@@ -6666,12 +6684,7 @@ export interface Routes {
|
|
|
6666
6684
|
status: 'success';
|
|
6667
6685
|
error: null;
|
|
6668
6686
|
action_type: 'ENCODE_CARD';
|
|
6669
|
-
result: {
|
|
6670
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
6671
|
-
acs_credential_id: string | null;
|
|
6672
|
-
/** A number or string that physically identifies this card. */
|
|
6673
|
-
card_number: string | null;
|
|
6674
|
-
};
|
|
6687
|
+
result: {};
|
|
6675
6688
|
} | {
|
|
6676
6689
|
/** The ID of the action attempt. */
|
|
6677
6690
|
action_attempt_id: string;
|
|
@@ -6863,7 +6876,7 @@ export interface Routes {
|
|
|
6863
6876
|
status: 'success';
|
|
6864
6877
|
error: null;
|
|
6865
6878
|
action_type: 'SYNC_ACCESS_CODES';
|
|
6866
|
-
result
|
|
6879
|
+
result: {};
|
|
6867
6880
|
} | {
|
|
6868
6881
|
/** The ID of the action attempt. */
|
|
6869
6882
|
action_attempt_id: string;
|
|
@@ -6887,7 +6900,9 @@ export interface Routes {
|
|
|
6887
6900
|
status: 'success';
|
|
6888
6901
|
error: null;
|
|
6889
6902
|
action_type: 'CREATE_ACCESS_CODE';
|
|
6890
|
-
result
|
|
6903
|
+
result: {
|
|
6904
|
+
access_code?: any;
|
|
6905
|
+
};
|
|
6891
6906
|
} | {
|
|
6892
6907
|
/** The ID of the action attempt. */
|
|
6893
6908
|
action_attempt_id: string;
|
|
@@ -6911,7 +6926,7 @@ export interface Routes {
|
|
|
6911
6926
|
status: 'success';
|
|
6912
6927
|
error: null;
|
|
6913
6928
|
action_type: 'DELETE_ACCESS_CODE';
|
|
6914
|
-
result
|
|
6929
|
+
result: {};
|
|
6915
6930
|
} | {
|
|
6916
6931
|
/** The ID of the action attempt. */
|
|
6917
6932
|
action_attempt_id: string;
|
|
@@ -6935,7 +6950,9 @@ export interface Routes {
|
|
|
6935
6950
|
status: 'success';
|
|
6936
6951
|
error: null;
|
|
6937
6952
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
6938
|
-
result
|
|
6953
|
+
result: {
|
|
6954
|
+
access_code?: any;
|
|
6955
|
+
};
|
|
6939
6956
|
} | {
|
|
6940
6957
|
/** The ID of the action attempt. */
|
|
6941
6958
|
action_attempt_id: string;
|
|
@@ -6959,7 +6976,9 @@ export interface Routes {
|
|
|
6959
6976
|
status: 'success';
|
|
6960
6977
|
error: null;
|
|
6961
6978
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
6962
|
-
result
|
|
6979
|
+
result: {
|
|
6980
|
+
noise_threshold?: any;
|
|
6981
|
+
};
|
|
6963
6982
|
} | {
|
|
6964
6983
|
/** The ID of the action attempt. */
|
|
6965
6984
|
action_attempt_id: string;
|
|
@@ -6983,7 +7002,7 @@ export interface Routes {
|
|
|
6983
7002
|
status: 'success';
|
|
6984
7003
|
error: null;
|
|
6985
7004
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
6986
|
-
result
|
|
7005
|
+
result: {};
|
|
6987
7006
|
} | {
|
|
6988
7007
|
/** The ID of the action attempt. */
|
|
6989
7008
|
action_attempt_id: string;
|
|
@@ -7007,7 +7026,9 @@ export interface Routes {
|
|
|
7007
7026
|
status: 'success';
|
|
7008
7027
|
error: null;
|
|
7009
7028
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7010
|
-
result
|
|
7029
|
+
result: {
|
|
7030
|
+
noise_threshold?: any;
|
|
7031
|
+
};
|
|
7011
7032
|
} | {
|
|
7012
7033
|
/** The ID of the action attempt. */
|
|
7013
7034
|
action_attempt_id: string;
|
|
@@ -7224,12 +7245,7 @@ export interface Routes {
|
|
|
7224
7245
|
status: 'success';
|
|
7225
7246
|
error: null;
|
|
7226
7247
|
action_type: 'ENCODE_CARD';
|
|
7227
|
-
result: {
|
|
7228
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
7229
|
-
acs_credential_id: string | null;
|
|
7230
|
-
/** A number or string that physically identifies this card. */
|
|
7231
|
-
card_number: string | null;
|
|
7232
|
-
};
|
|
7248
|
+
result: {};
|
|
7233
7249
|
} | {
|
|
7234
7250
|
/** The ID of the action attempt. */
|
|
7235
7251
|
action_attempt_id: string;
|
|
@@ -7421,7 +7437,7 @@ export interface Routes {
|
|
|
7421
7437
|
status: 'success';
|
|
7422
7438
|
error: null;
|
|
7423
7439
|
action_type: 'SYNC_ACCESS_CODES';
|
|
7424
|
-
result
|
|
7440
|
+
result: {};
|
|
7425
7441
|
} | {
|
|
7426
7442
|
/** The ID of the action attempt. */
|
|
7427
7443
|
action_attempt_id: string;
|
|
@@ -7445,7 +7461,9 @@ export interface Routes {
|
|
|
7445
7461
|
status: 'success';
|
|
7446
7462
|
error: null;
|
|
7447
7463
|
action_type: 'CREATE_ACCESS_CODE';
|
|
7448
|
-
result
|
|
7464
|
+
result: {
|
|
7465
|
+
access_code?: any;
|
|
7466
|
+
};
|
|
7449
7467
|
} | {
|
|
7450
7468
|
/** The ID of the action attempt. */
|
|
7451
7469
|
action_attempt_id: string;
|
|
@@ -7469,7 +7487,7 @@ export interface Routes {
|
|
|
7469
7487
|
status: 'success';
|
|
7470
7488
|
error: null;
|
|
7471
7489
|
action_type: 'DELETE_ACCESS_CODE';
|
|
7472
|
-
result
|
|
7490
|
+
result: {};
|
|
7473
7491
|
} | {
|
|
7474
7492
|
/** The ID of the action attempt. */
|
|
7475
7493
|
action_attempt_id: string;
|
|
@@ -7493,7 +7511,9 @@ export interface Routes {
|
|
|
7493
7511
|
status: 'success';
|
|
7494
7512
|
error: null;
|
|
7495
7513
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
7496
|
-
result
|
|
7514
|
+
result: {
|
|
7515
|
+
access_code?: any;
|
|
7516
|
+
};
|
|
7497
7517
|
} | {
|
|
7498
7518
|
/** The ID of the action attempt. */
|
|
7499
7519
|
action_attempt_id: string;
|
|
@@ -7517,7 +7537,9 @@ export interface Routes {
|
|
|
7517
7537
|
status: 'success';
|
|
7518
7538
|
error: null;
|
|
7519
7539
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7520
|
-
result
|
|
7540
|
+
result: {
|
|
7541
|
+
noise_threshold?: any;
|
|
7542
|
+
};
|
|
7521
7543
|
} | {
|
|
7522
7544
|
/** The ID of the action attempt. */
|
|
7523
7545
|
action_attempt_id: string;
|
|
@@ -7541,7 +7563,7 @@ export interface Routes {
|
|
|
7541
7563
|
status: 'success';
|
|
7542
7564
|
error: null;
|
|
7543
7565
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7544
|
-
result
|
|
7566
|
+
result: {};
|
|
7545
7567
|
} | {
|
|
7546
7568
|
/** The ID of the action attempt. */
|
|
7547
7569
|
action_attempt_id: string;
|
|
@@ -7565,7 +7587,9 @@ export interface Routes {
|
|
|
7565
7587
|
status: 'success';
|
|
7566
7588
|
error: null;
|
|
7567
7589
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7568
|
-
result
|
|
7590
|
+
result: {
|
|
7591
|
+
noise_threshold?: any;
|
|
7592
|
+
};
|
|
7569
7593
|
} | {
|
|
7570
7594
|
/** The ID of the action attempt. */
|
|
7571
7595
|
action_attempt_id: string;
|
|
@@ -11328,12 +11352,7 @@ export interface Routes {
|
|
|
11328
11352
|
status: 'success';
|
|
11329
11353
|
error: null;
|
|
11330
11354
|
action_type: 'ENCODE_CARD';
|
|
11331
|
-
result: {
|
|
11332
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
11333
|
-
acs_credential_id: string | null;
|
|
11334
|
-
/** A number or string that physically identifies this card. */
|
|
11335
|
-
card_number: string | null;
|
|
11336
|
-
};
|
|
11355
|
+
result: {};
|
|
11337
11356
|
} | {
|
|
11338
11357
|
/** The ID of the action attempt. */
|
|
11339
11358
|
action_attempt_id: string;
|
|
@@ -11525,7 +11544,7 @@ export interface Routes {
|
|
|
11525
11544
|
status: 'success';
|
|
11526
11545
|
error: null;
|
|
11527
11546
|
action_type: 'SYNC_ACCESS_CODES';
|
|
11528
|
-
result
|
|
11547
|
+
result: {};
|
|
11529
11548
|
} | {
|
|
11530
11549
|
/** The ID of the action attempt. */
|
|
11531
11550
|
action_attempt_id: string;
|
|
@@ -11549,7 +11568,9 @@ export interface Routes {
|
|
|
11549
11568
|
status: 'success';
|
|
11550
11569
|
error: null;
|
|
11551
11570
|
action_type: 'CREATE_ACCESS_CODE';
|
|
11552
|
-
result
|
|
11571
|
+
result: {
|
|
11572
|
+
access_code?: any;
|
|
11573
|
+
};
|
|
11553
11574
|
} | {
|
|
11554
11575
|
/** The ID of the action attempt. */
|
|
11555
11576
|
action_attempt_id: string;
|
|
@@ -11573,7 +11594,7 @@ export interface Routes {
|
|
|
11573
11594
|
status: 'success';
|
|
11574
11595
|
error: null;
|
|
11575
11596
|
action_type: 'DELETE_ACCESS_CODE';
|
|
11576
|
-
result
|
|
11597
|
+
result: {};
|
|
11577
11598
|
} | {
|
|
11578
11599
|
/** The ID of the action attempt. */
|
|
11579
11600
|
action_attempt_id: string;
|
|
@@ -11597,7 +11618,9 @@ export interface Routes {
|
|
|
11597
11618
|
status: 'success';
|
|
11598
11619
|
error: null;
|
|
11599
11620
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
11600
|
-
result
|
|
11621
|
+
result: {
|
|
11622
|
+
access_code?: any;
|
|
11623
|
+
};
|
|
11601
11624
|
} | {
|
|
11602
11625
|
/** The ID of the action attempt. */
|
|
11603
11626
|
action_attempt_id: string;
|
|
@@ -11621,7 +11644,9 @@ export interface Routes {
|
|
|
11621
11644
|
status: 'success';
|
|
11622
11645
|
error: null;
|
|
11623
11646
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
11624
|
-
result
|
|
11647
|
+
result: {
|
|
11648
|
+
noise_threshold?: any;
|
|
11649
|
+
};
|
|
11625
11650
|
} | {
|
|
11626
11651
|
/** The ID of the action attempt. */
|
|
11627
11652
|
action_attempt_id: string;
|
|
@@ -11645,7 +11670,7 @@ export interface Routes {
|
|
|
11645
11670
|
status: 'success';
|
|
11646
11671
|
error: null;
|
|
11647
11672
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
11648
|
-
result
|
|
11673
|
+
result: {};
|
|
11649
11674
|
} | {
|
|
11650
11675
|
/** The ID of the action attempt. */
|
|
11651
11676
|
action_attempt_id: string;
|
|
@@ -11669,7 +11694,9 @@ export interface Routes {
|
|
|
11669
11694
|
status: 'success';
|
|
11670
11695
|
error: null;
|
|
11671
11696
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
11672
|
-
result
|
|
11697
|
+
result: {
|
|
11698
|
+
noise_threshold?: any;
|
|
11699
|
+
};
|
|
11673
11700
|
} | {
|
|
11674
11701
|
/** The ID of the action attempt. */
|
|
11675
11702
|
action_attempt_id: string;
|
|
@@ -11887,12 +11914,7 @@ export interface Routes {
|
|
|
11887
11914
|
status: 'success';
|
|
11888
11915
|
error: null;
|
|
11889
11916
|
action_type: 'ENCODE_CARD';
|
|
11890
|
-
result: {
|
|
11891
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
11892
|
-
acs_credential_id: string | null;
|
|
11893
|
-
/** A number or string that physically identifies this card. */
|
|
11894
|
-
card_number: string | null;
|
|
11895
|
-
};
|
|
11917
|
+
result: {};
|
|
11896
11918
|
} | {
|
|
11897
11919
|
/** The ID of the action attempt. */
|
|
11898
11920
|
action_attempt_id: string;
|
|
@@ -12084,7 +12106,7 @@ export interface Routes {
|
|
|
12084
12106
|
status: 'success';
|
|
12085
12107
|
error: null;
|
|
12086
12108
|
action_type: 'SYNC_ACCESS_CODES';
|
|
12087
|
-
result
|
|
12109
|
+
result: {};
|
|
12088
12110
|
} | {
|
|
12089
12111
|
/** The ID of the action attempt. */
|
|
12090
12112
|
action_attempt_id: string;
|
|
@@ -12108,7 +12130,9 @@ export interface Routes {
|
|
|
12108
12130
|
status: 'success';
|
|
12109
12131
|
error: null;
|
|
12110
12132
|
action_type: 'CREATE_ACCESS_CODE';
|
|
12111
|
-
result
|
|
12133
|
+
result: {
|
|
12134
|
+
access_code?: any;
|
|
12135
|
+
};
|
|
12112
12136
|
} | {
|
|
12113
12137
|
/** The ID of the action attempt. */
|
|
12114
12138
|
action_attempt_id: string;
|
|
@@ -12132,7 +12156,7 @@ export interface Routes {
|
|
|
12132
12156
|
status: 'success';
|
|
12133
12157
|
error: null;
|
|
12134
12158
|
action_type: 'DELETE_ACCESS_CODE';
|
|
12135
|
-
result
|
|
12159
|
+
result: {};
|
|
12136
12160
|
} | {
|
|
12137
12161
|
/** The ID of the action attempt. */
|
|
12138
12162
|
action_attempt_id: string;
|
|
@@ -12156,7 +12180,9 @@ export interface Routes {
|
|
|
12156
12180
|
status: 'success';
|
|
12157
12181
|
error: null;
|
|
12158
12182
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
12159
|
-
result
|
|
12183
|
+
result: {
|
|
12184
|
+
access_code?: any;
|
|
12185
|
+
};
|
|
12160
12186
|
} | {
|
|
12161
12187
|
/** The ID of the action attempt. */
|
|
12162
12188
|
action_attempt_id: string;
|
|
@@ -12180,7 +12206,9 @@ export interface Routes {
|
|
|
12180
12206
|
status: 'success';
|
|
12181
12207
|
error: null;
|
|
12182
12208
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
12183
|
-
result
|
|
12209
|
+
result: {
|
|
12210
|
+
noise_threshold?: any;
|
|
12211
|
+
};
|
|
12184
12212
|
} | {
|
|
12185
12213
|
/** The ID of the action attempt. */
|
|
12186
12214
|
action_attempt_id: string;
|
|
@@ -12204,7 +12232,7 @@ export interface Routes {
|
|
|
12204
12232
|
status: 'success';
|
|
12205
12233
|
error: null;
|
|
12206
12234
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
12207
|
-
result
|
|
12235
|
+
result: {};
|
|
12208
12236
|
} | {
|
|
12209
12237
|
/** The ID of the action attempt. */
|
|
12210
12238
|
action_attempt_id: string;
|
|
@@ -12228,7 +12256,9 @@ export interface Routes {
|
|
|
12228
12256
|
status: 'success';
|
|
12229
12257
|
error: null;
|
|
12230
12258
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
12231
|
-
result
|
|
12259
|
+
result: {
|
|
12260
|
+
noise_threshold?: any;
|
|
12261
|
+
};
|
|
12232
12262
|
} | {
|
|
12233
12263
|
/** The ID of the action attempt. */
|
|
12234
12264
|
action_attempt_id: string;
|
|
@@ -13388,12 +13418,7 @@ export interface Routes {
|
|
|
13388
13418
|
status: 'success';
|
|
13389
13419
|
error: null;
|
|
13390
13420
|
action_type: 'ENCODE_CARD';
|
|
13391
|
-
result: {
|
|
13392
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
13393
|
-
acs_credential_id: string | null;
|
|
13394
|
-
/** A number or string that physically identifies this card. */
|
|
13395
|
-
card_number: string | null;
|
|
13396
|
-
};
|
|
13421
|
+
result: {};
|
|
13397
13422
|
} | {
|
|
13398
13423
|
/** The ID of the action attempt. */
|
|
13399
13424
|
action_attempt_id: string;
|
|
@@ -13585,7 +13610,7 @@ export interface Routes {
|
|
|
13585
13610
|
status: 'success';
|
|
13586
13611
|
error: null;
|
|
13587
13612
|
action_type: 'SYNC_ACCESS_CODES';
|
|
13588
|
-
result
|
|
13613
|
+
result: {};
|
|
13589
13614
|
} | {
|
|
13590
13615
|
/** The ID of the action attempt. */
|
|
13591
13616
|
action_attempt_id: string;
|
|
@@ -13609,7 +13634,9 @@ export interface Routes {
|
|
|
13609
13634
|
status: 'success';
|
|
13610
13635
|
error: null;
|
|
13611
13636
|
action_type: 'CREATE_ACCESS_CODE';
|
|
13612
|
-
result
|
|
13637
|
+
result: {
|
|
13638
|
+
access_code?: any;
|
|
13639
|
+
};
|
|
13613
13640
|
} | {
|
|
13614
13641
|
/** The ID of the action attempt. */
|
|
13615
13642
|
action_attempt_id: string;
|
|
@@ -13633,7 +13660,7 @@ export interface Routes {
|
|
|
13633
13660
|
status: 'success';
|
|
13634
13661
|
error: null;
|
|
13635
13662
|
action_type: 'DELETE_ACCESS_CODE';
|
|
13636
|
-
result
|
|
13663
|
+
result: {};
|
|
13637
13664
|
} | {
|
|
13638
13665
|
/** The ID of the action attempt. */
|
|
13639
13666
|
action_attempt_id: string;
|
|
@@ -13657,7 +13684,9 @@ export interface Routes {
|
|
|
13657
13684
|
status: 'success';
|
|
13658
13685
|
error: null;
|
|
13659
13686
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
13660
|
-
result
|
|
13687
|
+
result: {
|
|
13688
|
+
access_code?: any;
|
|
13689
|
+
};
|
|
13661
13690
|
} | {
|
|
13662
13691
|
/** The ID of the action attempt. */
|
|
13663
13692
|
action_attempt_id: string;
|
|
@@ -13681,7 +13710,9 @@ export interface Routes {
|
|
|
13681
13710
|
status: 'success';
|
|
13682
13711
|
error: null;
|
|
13683
13712
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
13684
|
-
result
|
|
13713
|
+
result: {
|
|
13714
|
+
noise_threshold?: any;
|
|
13715
|
+
};
|
|
13685
13716
|
} | {
|
|
13686
13717
|
/** The ID of the action attempt. */
|
|
13687
13718
|
action_attempt_id: string;
|
|
@@ -13705,7 +13736,7 @@ export interface Routes {
|
|
|
13705
13736
|
status: 'success';
|
|
13706
13737
|
error: null;
|
|
13707
13738
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
13708
|
-
result
|
|
13739
|
+
result: {};
|
|
13709
13740
|
} | {
|
|
13710
13741
|
/** The ID of the action attempt. */
|
|
13711
13742
|
action_attempt_id: string;
|
|
@@ -13729,7 +13760,9 @@ export interface Routes {
|
|
|
13729
13760
|
status: 'success';
|
|
13730
13761
|
error: null;
|
|
13731
13762
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
13732
|
-
result
|
|
13763
|
+
result: {
|
|
13764
|
+
noise_threshold?: any;
|
|
13765
|
+
};
|
|
13733
13766
|
} | {
|
|
13734
13767
|
/** The ID of the action attempt. */
|
|
13735
13768
|
action_attempt_id: string;
|
|
@@ -13957,12 +13990,7 @@ export interface Routes {
|
|
|
13957
13990
|
status: 'success';
|
|
13958
13991
|
error: null;
|
|
13959
13992
|
action_type: 'ENCODE_CARD';
|
|
13960
|
-
result: {
|
|
13961
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
13962
|
-
acs_credential_id: string | null;
|
|
13963
|
-
/** A number or string that physically identifies this card. */
|
|
13964
|
-
card_number: string | null;
|
|
13965
|
-
};
|
|
13993
|
+
result: {};
|
|
13966
13994
|
} | {
|
|
13967
13995
|
/** The ID of the action attempt. */
|
|
13968
13996
|
action_attempt_id: string;
|
|
@@ -14154,7 +14182,7 @@ export interface Routes {
|
|
|
14154
14182
|
status: 'success';
|
|
14155
14183
|
error: null;
|
|
14156
14184
|
action_type: 'SYNC_ACCESS_CODES';
|
|
14157
|
-
result
|
|
14185
|
+
result: {};
|
|
14158
14186
|
} | {
|
|
14159
14187
|
/** The ID of the action attempt. */
|
|
14160
14188
|
action_attempt_id: string;
|
|
@@ -14178,7 +14206,9 @@ export interface Routes {
|
|
|
14178
14206
|
status: 'success';
|
|
14179
14207
|
error: null;
|
|
14180
14208
|
action_type: 'CREATE_ACCESS_CODE';
|
|
14181
|
-
result
|
|
14209
|
+
result: {
|
|
14210
|
+
access_code?: any;
|
|
14211
|
+
};
|
|
14182
14212
|
} | {
|
|
14183
14213
|
/** The ID of the action attempt. */
|
|
14184
14214
|
action_attempt_id: string;
|
|
@@ -14202,7 +14232,7 @@ export interface Routes {
|
|
|
14202
14232
|
status: 'success';
|
|
14203
14233
|
error: null;
|
|
14204
14234
|
action_type: 'DELETE_ACCESS_CODE';
|
|
14205
|
-
result
|
|
14235
|
+
result: {};
|
|
14206
14236
|
} | {
|
|
14207
14237
|
/** The ID of the action attempt. */
|
|
14208
14238
|
action_attempt_id: string;
|
|
@@ -14226,7 +14256,9 @@ export interface Routes {
|
|
|
14226
14256
|
status: 'success';
|
|
14227
14257
|
error: null;
|
|
14228
14258
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
14229
|
-
result
|
|
14259
|
+
result: {
|
|
14260
|
+
access_code?: any;
|
|
14261
|
+
};
|
|
14230
14262
|
} | {
|
|
14231
14263
|
/** The ID of the action attempt. */
|
|
14232
14264
|
action_attempt_id: string;
|
|
@@ -14250,7 +14282,9 @@ export interface Routes {
|
|
|
14250
14282
|
status: 'success';
|
|
14251
14283
|
error: null;
|
|
14252
14284
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
14253
|
-
result
|
|
14285
|
+
result: {
|
|
14286
|
+
noise_threshold?: any;
|
|
14287
|
+
};
|
|
14254
14288
|
} | {
|
|
14255
14289
|
/** The ID of the action attempt. */
|
|
14256
14290
|
action_attempt_id: string;
|
|
@@ -14274,7 +14308,7 @@ export interface Routes {
|
|
|
14274
14308
|
status: 'success';
|
|
14275
14309
|
error: null;
|
|
14276
14310
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
14277
|
-
result
|
|
14311
|
+
result: {};
|
|
14278
14312
|
} | {
|
|
14279
14313
|
/** The ID of the action attempt. */
|
|
14280
14314
|
action_attempt_id: string;
|
|
@@ -14298,7 +14332,9 @@ export interface Routes {
|
|
|
14298
14332
|
status: 'success';
|
|
14299
14333
|
error: null;
|
|
14300
14334
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
14301
|
-
result
|
|
14335
|
+
result: {
|
|
14336
|
+
noise_threshold?: any;
|
|
14337
|
+
};
|
|
14302
14338
|
} | {
|
|
14303
14339
|
/** The ID of the action attempt. */
|
|
14304
14340
|
action_attempt_id: string;
|
|
@@ -14565,12 +14601,7 @@ export interface Routes {
|
|
|
14565
14601
|
status: 'success';
|
|
14566
14602
|
error: null;
|
|
14567
14603
|
action_type: 'ENCODE_CARD';
|
|
14568
|
-
result: {
|
|
14569
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
14570
|
-
acs_credential_id: string | null;
|
|
14571
|
-
/** A number or string that physically identifies this card. */
|
|
14572
|
-
card_number: string | null;
|
|
14573
|
-
};
|
|
14604
|
+
result: {};
|
|
14574
14605
|
} | {
|
|
14575
14606
|
/** The ID of the action attempt. */
|
|
14576
14607
|
action_attempt_id: string;
|
|
@@ -14762,7 +14793,7 @@ export interface Routes {
|
|
|
14762
14793
|
status: 'success';
|
|
14763
14794
|
error: null;
|
|
14764
14795
|
action_type: 'SYNC_ACCESS_CODES';
|
|
14765
|
-
result
|
|
14796
|
+
result: {};
|
|
14766
14797
|
} | {
|
|
14767
14798
|
/** The ID of the action attempt. */
|
|
14768
14799
|
action_attempt_id: string;
|
|
@@ -14786,7 +14817,9 @@ export interface Routes {
|
|
|
14786
14817
|
status: 'success';
|
|
14787
14818
|
error: null;
|
|
14788
14819
|
action_type: 'CREATE_ACCESS_CODE';
|
|
14789
|
-
result
|
|
14820
|
+
result: {
|
|
14821
|
+
access_code?: any;
|
|
14822
|
+
};
|
|
14790
14823
|
} | {
|
|
14791
14824
|
/** The ID of the action attempt. */
|
|
14792
14825
|
action_attempt_id: string;
|
|
@@ -14810,7 +14843,7 @@ export interface Routes {
|
|
|
14810
14843
|
status: 'success';
|
|
14811
14844
|
error: null;
|
|
14812
14845
|
action_type: 'DELETE_ACCESS_CODE';
|
|
14813
|
-
result
|
|
14846
|
+
result: {};
|
|
14814
14847
|
} | {
|
|
14815
14848
|
/** The ID of the action attempt. */
|
|
14816
14849
|
action_attempt_id: string;
|
|
@@ -14834,7 +14867,9 @@ export interface Routes {
|
|
|
14834
14867
|
status: 'success';
|
|
14835
14868
|
error: null;
|
|
14836
14869
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
14837
|
-
result
|
|
14870
|
+
result: {
|
|
14871
|
+
access_code?: any;
|
|
14872
|
+
};
|
|
14838
14873
|
} | {
|
|
14839
14874
|
/** The ID of the action attempt. */
|
|
14840
14875
|
action_attempt_id: string;
|
|
@@ -14858,7 +14893,9 @@ export interface Routes {
|
|
|
14858
14893
|
status: 'success';
|
|
14859
14894
|
error: null;
|
|
14860
14895
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
14861
|
-
result
|
|
14896
|
+
result: {
|
|
14897
|
+
noise_threshold?: any;
|
|
14898
|
+
};
|
|
14862
14899
|
} | {
|
|
14863
14900
|
/** The ID of the action attempt. */
|
|
14864
14901
|
action_attempt_id: string;
|
|
@@ -14882,7 +14919,7 @@ export interface Routes {
|
|
|
14882
14919
|
status: 'success';
|
|
14883
14920
|
error: null;
|
|
14884
14921
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
14885
|
-
result
|
|
14922
|
+
result: {};
|
|
14886
14923
|
} | {
|
|
14887
14924
|
/** The ID of the action attempt. */
|
|
14888
14925
|
action_attempt_id: string;
|
|
@@ -14906,7 +14943,9 @@ export interface Routes {
|
|
|
14906
14943
|
status: 'success';
|
|
14907
14944
|
error: null;
|
|
14908
14945
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
14909
|
-
result
|
|
14946
|
+
result: {
|
|
14947
|
+
noise_threshold?: any;
|
|
14948
|
+
};
|
|
14910
14949
|
} | {
|
|
14911
14950
|
/** The ID of the action attempt. */
|
|
14912
14951
|
action_attempt_id: string;
|
|
@@ -15306,12 +15345,7 @@ export interface Routes {
|
|
|
15306
15345
|
status: 'success';
|
|
15307
15346
|
error: null;
|
|
15308
15347
|
action_type: 'ENCODE_CARD';
|
|
15309
|
-
result: {
|
|
15310
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
15311
|
-
acs_credential_id: string | null;
|
|
15312
|
-
/** A number or string that physically identifies this card. */
|
|
15313
|
-
card_number: string | null;
|
|
15314
|
-
};
|
|
15348
|
+
result: {};
|
|
15315
15349
|
} | {
|
|
15316
15350
|
/** The ID of the action attempt. */
|
|
15317
15351
|
action_attempt_id: string;
|
|
@@ -15503,7 +15537,7 @@ export interface Routes {
|
|
|
15503
15537
|
status: 'success';
|
|
15504
15538
|
error: null;
|
|
15505
15539
|
action_type: 'SYNC_ACCESS_CODES';
|
|
15506
|
-
result
|
|
15540
|
+
result: {};
|
|
15507
15541
|
} | {
|
|
15508
15542
|
/** The ID of the action attempt. */
|
|
15509
15543
|
action_attempt_id: string;
|
|
@@ -15527,7 +15561,9 @@ export interface Routes {
|
|
|
15527
15561
|
status: 'success';
|
|
15528
15562
|
error: null;
|
|
15529
15563
|
action_type: 'CREATE_ACCESS_CODE';
|
|
15530
|
-
result
|
|
15564
|
+
result: {
|
|
15565
|
+
access_code?: any;
|
|
15566
|
+
};
|
|
15531
15567
|
} | {
|
|
15532
15568
|
/** The ID of the action attempt. */
|
|
15533
15569
|
action_attempt_id: string;
|
|
@@ -15551,7 +15587,7 @@ export interface Routes {
|
|
|
15551
15587
|
status: 'success';
|
|
15552
15588
|
error: null;
|
|
15553
15589
|
action_type: 'DELETE_ACCESS_CODE';
|
|
15554
|
-
result
|
|
15590
|
+
result: {};
|
|
15555
15591
|
} | {
|
|
15556
15592
|
/** The ID of the action attempt. */
|
|
15557
15593
|
action_attempt_id: string;
|
|
@@ -15575,7 +15611,9 @@ export interface Routes {
|
|
|
15575
15611
|
status: 'success';
|
|
15576
15612
|
error: null;
|
|
15577
15613
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
15578
|
-
result
|
|
15614
|
+
result: {
|
|
15615
|
+
access_code?: any;
|
|
15616
|
+
};
|
|
15579
15617
|
} | {
|
|
15580
15618
|
/** The ID of the action attempt. */
|
|
15581
15619
|
action_attempt_id: string;
|
|
@@ -15599,7 +15637,9 @@ export interface Routes {
|
|
|
15599
15637
|
status: 'success';
|
|
15600
15638
|
error: null;
|
|
15601
15639
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
15602
|
-
result
|
|
15640
|
+
result: {
|
|
15641
|
+
noise_threshold?: any;
|
|
15642
|
+
};
|
|
15603
15643
|
} | {
|
|
15604
15644
|
/** The ID of the action attempt. */
|
|
15605
15645
|
action_attempt_id: string;
|
|
@@ -15623,7 +15663,7 @@ export interface Routes {
|
|
|
15623
15663
|
status: 'success';
|
|
15624
15664
|
error: null;
|
|
15625
15665
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
15626
|
-
result
|
|
15666
|
+
result: {};
|
|
15627
15667
|
} | {
|
|
15628
15668
|
/** The ID of the action attempt. */
|
|
15629
15669
|
action_attempt_id: string;
|
|
@@ -15647,7 +15687,9 @@ export interface Routes {
|
|
|
15647
15687
|
status: 'success';
|
|
15648
15688
|
error: null;
|
|
15649
15689
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
15650
|
-
result
|
|
15690
|
+
result: {
|
|
15691
|
+
noise_threshold?: any;
|
|
15692
|
+
};
|
|
15651
15693
|
} | {
|
|
15652
15694
|
/** The ID of the action attempt. */
|
|
15653
15695
|
action_attempt_id: string;
|
|
@@ -15867,12 +15909,7 @@ export interface Routes {
|
|
|
15867
15909
|
status: 'success';
|
|
15868
15910
|
error: null;
|
|
15869
15911
|
action_type: 'ENCODE_CARD';
|
|
15870
|
-
result: {
|
|
15871
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
15872
|
-
acs_credential_id: string | null;
|
|
15873
|
-
/** A number or string that physically identifies this card. */
|
|
15874
|
-
card_number: string | null;
|
|
15875
|
-
};
|
|
15912
|
+
result: {};
|
|
15876
15913
|
} | {
|
|
15877
15914
|
/** The ID of the action attempt. */
|
|
15878
15915
|
action_attempt_id: string;
|
|
@@ -16064,7 +16101,7 @@ export interface Routes {
|
|
|
16064
16101
|
status: 'success';
|
|
16065
16102
|
error: null;
|
|
16066
16103
|
action_type: 'SYNC_ACCESS_CODES';
|
|
16067
|
-
result
|
|
16104
|
+
result: {};
|
|
16068
16105
|
} | {
|
|
16069
16106
|
/** The ID of the action attempt. */
|
|
16070
16107
|
action_attempt_id: string;
|
|
@@ -16088,7 +16125,9 @@ export interface Routes {
|
|
|
16088
16125
|
status: 'success';
|
|
16089
16126
|
error: null;
|
|
16090
16127
|
action_type: 'CREATE_ACCESS_CODE';
|
|
16091
|
-
result
|
|
16128
|
+
result: {
|
|
16129
|
+
access_code?: any;
|
|
16130
|
+
};
|
|
16092
16131
|
} | {
|
|
16093
16132
|
/** The ID of the action attempt. */
|
|
16094
16133
|
action_attempt_id: string;
|
|
@@ -16112,7 +16151,7 @@ export interface Routes {
|
|
|
16112
16151
|
status: 'success';
|
|
16113
16152
|
error: null;
|
|
16114
16153
|
action_type: 'DELETE_ACCESS_CODE';
|
|
16115
|
-
result
|
|
16154
|
+
result: {};
|
|
16116
16155
|
} | {
|
|
16117
16156
|
/** The ID of the action attempt. */
|
|
16118
16157
|
action_attempt_id: string;
|
|
@@ -16136,7 +16175,9 @@ export interface Routes {
|
|
|
16136
16175
|
status: 'success';
|
|
16137
16176
|
error: null;
|
|
16138
16177
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
16139
|
-
result
|
|
16178
|
+
result: {
|
|
16179
|
+
access_code?: any;
|
|
16180
|
+
};
|
|
16140
16181
|
} | {
|
|
16141
16182
|
/** The ID of the action attempt. */
|
|
16142
16183
|
action_attempt_id: string;
|
|
@@ -16160,7 +16201,9 @@ export interface Routes {
|
|
|
16160
16201
|
status: 'success';
|
|
16161
16202
|
error: null;
|
|
16162
16203
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
16163
|
-
result
|
|
16204
|
+
result: {
|
|
16205
|
+
noise_threshold?: any;
|
|
16206
|
+
};
|
|
16164
16207
|
} | {
|
|
16165
16208
|
/** The ID of the action attempt. */
|
|
16166
16209
|
action_attempt_id: string;
|
|
@@ -16184,7 +16227,7 @@ export interface Routes {
|
|
|
16184
16227
|
status: 'success';
|
|
16185
16228
|
error: null;
|
|
16186
16229
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
16187
|
-
result
|
|
16230
|
+
result: {};
|
|
16188
16231
|
} | {
|
|
16189
16232
|
/** The ID of the action attempt. */
|
|
16190
16233
|
action_attempt_id: string;
|
|
@@ -16208,7 +16251,9 @@ export interface Routes {
|
|
|
16208
16251
|
status: 'success';
|
|
16209
16252
|
error: null;
|
|
16210
16253
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
16211
|
-
result
|
|
16254
|
+
result: {
|
|
16255
|
+
noise_threshold?: any;
|
|
16256
|
+
};
|
|
16212
16257
|
} | {
|
|
16213
16258
|
/** The ID of the action attempt. */
|
|
16214
16259
|
action_attempt_id: string;
|
|
@@ -16912,12 +16957,7 @@ export interface Routes {
|
|
|
16912
16957
|
status: 'success';
|
|
16913
16958
|
error: null;
|
|
16914
16959
|
action_type: 'ENCODE_CARD';
|
|
16915
|
-
result: {
|
|
16916
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
16917
|
-
acs_credential_id: string | null;
|
|
16918
|
-
/** A number or string that physically identifies this card. */
|
|
16919
|
-
card_number: string | null;
|
|
16920
|
-
};
|
|
16960
|
+
result: {};
|
|
16921
16961
|
} | {
|
|
16922
16962
|
/** The ID of the action attempt. */
|
|
16923
16963
|
action_attempt_id: string;
|
|
@@ -17109,7 +17149,7 @@ export interface Routes {
|
|
|
17109
17149
|
status: 'success';
|
|
17110
17150
|
error: null;
|
|
17111
17151
|
action_type: 'SYNC_ACCESS_CODES';
|
|
17112
|
-
result
|
|
17152
|
+
result: {};
|
|
17113
17153
|
} | {
|
|
17114
17154
|
/** The ID of the action attempt. */
|
|
17115
17155
|
action_attempt_id: string;
|
|
@@ -17133,7 +17173,9 @@ export interface Routes {
|
|
|
17133
17173
|
status: 'success';
|
|
17134
17174
|
error: null;
|
|
17135
17175
|
action_type: 'CREATE_ACCESS_CODE';
|
|
17136
|
-
result
|
|
17176
|
+
result: {
|
|
17177
|
+
access_code?: any;
|
|
17178
|
+
};
|
|
17137
17179
|
} | {
|
|
17138
17180
|
/** The ID of the action attempt. */
|
|
17139
17181
|
action_attempt_id: string;
|
|
@@ -17157,7 +17199,7 @@ export interface Routes {
|
|
|
17157
17199
|
status: 'success';
|
|
17158
17200
|
error: null;
|
|
17159
17201
|
action_type: 'DELETE_ACCESS_CODE';
|
|
17160
|
-
result
|
|
17202
|
+
result: {};
|
|
17161
17203
|
} | {
|
|
17162
17204
|
/** The ID of the action attempt. */
|
|
17163
17205
|
action_attempt_id: string;
|
|
@@ -17181,7 +17223,9 @@ export interface Routes {
|
|
|
17181
17223
|
status: 'success';
|
|
17182
17224
|
error: null;
|
|
17183
17225
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
17184
|
-
result
|
|
17226
|
+
result: {
|
|
17227
|
+
access_code?: any;
|
|
17228
|
+
};
|
|
17185
17229
|
} | {
|
|
17186
17230
|
/** The ID of the action attempt. */
|
|
17187
17231
|
action_attempt_id: string;
|
|
@@ -17205,7 +17249,9 @@ export interface Routes {
|
|
|
17205
17249
|
status: 'success';
|
|
17206
17250
|
error: null;
|
|
17207
17251
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
17208
|
-
result
|
|
17252
|
+
result: {
|
|
17253
|
+
noise_threshold?: any;
|
|
17254
|
+
};
|
|
17209
17255
|
} | {
|
|
17210
17256
|
/** The ID of the action attempt. */
|
|
17211
17257
|
action_attempt_id: string;
|
|
@@ -17229,7 +17275,7 @@ export interface Routes {
|
|
|
17229
17275
|
status: 'success';
|
|
17230
17276
|
error: null;
|
|
17231
17277
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
17232
|
-
result
|
|
17278
|
+
result: {};
|
|
17233
17279
|
} | {
|
|
17234
17280
|
/** The ID of the action attempt. */
|
|
17235
17281
|
action_attempt_id: string;
|
|
@@ -17253,7 +17299,9 @@ export interface Routes {
|
|
|
17253
17299
|
status: 'success';
|
|
17254
17300
|
error: null;
|
|
17255
17301
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
17256
|
-
result
|
|
17302
|
+
result: {
|
|
17303
|
+
noise_threshold?: any;
|
|
17304
|
+
};
|
|
17257
17305
|
} | {
|
|
17258
17306
|
/** The ID of the action attempt. */
|
|
17259
17307
|
action_attempt_id: string;
|
|
@@ -17475,12 +17523,7 @@ export interface Routes {
|
|
|
17475
17523
|
status: 'success';
|
|
17476
17524
|
error: null;
|
|
17477
17525
|
action_type: 'ENCODE_CARD';
|
|
17478
|
-
result: {
|
|
17479
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
17480
|
-
acs_credential_id: string | null;
|
|
17481
|
-
/** A number or string that physically identifies this card. */
|
|
17482
|
-
card_number: string | null;
|
|
17483
|
-
};
|
|
17526
|
+
result: {};
|
|
17484
17527
|
} | {
|
|
17485
17528
|
/** The ID of the action attempt. */
|
|
17486
17529
|
action_attempt_id: string;
|
|
@@ -17672,7 +17715,7 @@ export interface Routes {
|
|
|
17672
17715
|
status: 'success';
|
|
17673
17716
|
error: null;
|
|
17674
17717
|
action_type: 'SYNC_ACCESS_CODES';
|
|
17675
|
-
result
|
|
17718
|
+
result: {};
|
|
17676
17719
|
} | {
|
|
17677
17720
|
/** The ID of the action attempt. */
|
|
17678
17721
|
action_attempt_id: string;
|
|
@@ -17696,7 +17739,9 @@ export interface Routes {
|
|
|
17696
17739
|
status: 'success';
|
|
17697
17740
|
error: null;
|
|
17698
17741
|
action_type: 'CREATE_ACCESS_CODE';
|
|
17699
|
-
result
|
|
17742
|
+
result: {
|
|
17743
|
+
access_code?: any;
|
|
17744
|
+
};
|
|
17700
17745
|
} | {
|
|
17701
17746
|
/** The ID of the action attempt. */
|
|
17702
17747
|
action_attempt_id: string;
|
|
@@ -17720,7 +17765,7 @@ export interface Routes {
|
|
|
17720
17765
|
status: 'success';
|
|
17721
17766
|
error: null;
|
|
17722
17767
|
action_type: 'DELETE_ACCESS_CODE';
|
|
17723
|
-
result
|
|
17768
|
+
result: {};
|
|
17724
17769
|
} | {
|
|
17725
17770
|
/** The ID of the action attempt. */
|
|
17726
17771
|
action_attempt_id: string;
|
|
@@ -17744,7 +17789,9 @@ export interface Routes {
|
|
|
17744
17789
|
status: 'success';
|
|
17745
17790
|
error: null;
|
|
17746
17791
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
17747
|
-
result
|
|
17792
|
+
result: {
|
|
17793
|
+
access_code?: any;
|
|
17794
|
+
};
|
|
17748
17795
|
} | {
|
|
17749
17796
|
/** The ID of the action attempt. */
|
|
17750
17797
|
action_attempt_id: string;
|
|
@@ -17768,7 +17815,9 @@ export interface Routes {
|
|
|
17768
17815
|
status: 'success';
|
|
17769
17816
|
error: null;
|
|
17770
17817
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
17771
|
-
result
|
|
17818
|
+
result: {
|
|
17819
|
+
noise_threshold?: any;
|
|
17820
|
+
};
|
|
17772
17821
|
} | {
|
|
17773
17822
|
/** The ID of the action attempt. */
|
|
17774
17823
|
action_attempt_id: string;
|
|
@@ -17792,7 +17841,7 @@ export interface Routes {
|
|
|
17792
17841
|
status: 'success';
|
|
17793
17842
|
error: null;
|
|
17794
17843
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
17795
|
-
result
|
|
17844
|
+
result: {};
|
|
17796
17845
|
} | {
|
|
17797
17846
|
/** The ID of the action attempt. */
|
|
17798
17847
|
action_attempt_id: string;
|
|
@@ -17816,7 +17865,9 @@ export interface Routes {
|
|
|
17816
17865
|
status: 'success';
|
|
17817
17866
|
error: null;
|
|
17818
17867
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
17819
|
-
result
|
|
17868
|
+
result: {
|
|
17869
|
+
noise_threshold?: any;
|
|
17870
|
+
};
|
|
17820
17871
|
} | {
|
|
17821
17872
|
/** The ID of the action attempt. */
|
|
17822
17873
|
action_attempt_id: string;
|
|
@@ -18937,12 +18988,7 @@ export interface Routes {
|
|
|
18937
18988
|
status: 'success';
|
|
18938
18989
|
error: null;
|
|
18939
18990
|
action_type: 'ENCODE_CARD';
|
|
18940
|
-
result: {
|
|
18941
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
18942
|
-
acs_credential_id: string | null;
|
|
18943
|
-
/** A number or string that physically identifies this card. */
|
|
18944
|
-
card_number: string | null;
|
|
18945
|
-
};
|
|
18991
|
+
result: {};
|
|
18946
18992
|
} | {
|
|
18947
18993
|
/** The ID of the action attempt. */
|
|
18948
18994
|
action_attempt_id: string;
|
|
@@ -19134,7 +19180,7 @@ export interface Routes {
|
|
|
19134
19180
|
status: 'success';
|
|
19135
19181
|
error: null;
|
|
19136
19182
|
action_type: 'SYNC_ACCESS_CODES';
|
|
19137
|
-
result
|
|
19183
|
+
result: {};
|
|
19138
19184
|
} | {
|
|
19139
19185
|
/** The ID of the action attempt. */
|
|
19140
19186
|
action_attempt_id: string;
|
|
@@ -19158,7 +19204,9 @@ export interface Routes {
|
|
|
19158
19204
|
status: 'success';
|
|
19159
19205
|
error: null;
|
|
19160
19206
|
action_type: 'CREATE_ACCESS_CODE';
|
|
19161
|
-
result
|
|
19207
|
+
result: {
|
|
19208
|
+
access_code?: any;
|
|
19209
|
+
};
|
|
19162
19210
|
} | {
|
|
19163
19211
|
/** The ID of the action attempt. */
|
|
19164
19212
|
action_attempt_id: string;
|
|
@@ -19182,7 +19230,7 @@ export interface Routes {
|
|
|
19182
19230
|
status: 'success';
|
|
19183
19231
|
error: null;
|
|
19184
19232
|
action_type: 'DELETE_ACCESS_CODE';
|
|
19185
|
-
result
|
|
19233
|
+
result: {};
|
|
19186
19234
|
} | {
|
|
19187
19235
|
/** The ID of the action attempt. */
|
|
19188
19236
|
action_attempt_id: string;
|
|
@@ -19206,7 +19254,9 @@ export interface Routes {
|
|
|
19206
19254
|
status: 'success';
|
|
19207
19255
|
error: null;
|
|
19208
19256
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
19209
|
-
result
|
|
19257
|
+
result: {
|
|
19258
|
+
access_code?: any;
|
|
19259
|
+
};
|
|
19210
19260
|
} | {
|
|
19211
19261
|
/** The ID of the action attempt. */
|
|
19212
19262
|
action_attempt_id: string;
|
|
@@ -19230,7 +19280,9 @@ export interface Routes {
|
|
|
19230
19280
|
status: 'success';
|
|
19231
19281
|
error: null;
|
|
19232
19282
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
19233
|
-
result
|
|
19283
|
+
result: {
|
|
19284
|
+
noise_threshold?: any;
|
|
19285
|
+
};
|
|
19234
19286
|
} | {
|
|
19235
19287
|
/** The ID of the action attempt. */
|
|
19236
19288
|
action_attempt_id: string;
|
|
@@ -19254,7 +19306,7 @@ export interface Routes {
|
|
|
19254
19306
|
status: 'success';
|
|
19255
19307
|
error: null;
|
|
19256
19308
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
19257
|
-
result
|
|
19309
|
+
result: {};
|
|
19258
19310
|
} | {
|
|
19259
19311
|
/** The ID of the action attempt. */
|
|
19260
19312
|
action_attempt_id: string;
|
|
@@ -19278,7 +19330,9 @@ export interface Routes {
|
|
|
19278
19330
|
status: 'success';
|
|
19279
19331
|
error: null;
|
|
19280
19332
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
19281
|
-
result
|
|
19333
|
+
result: {
|
|
19334
|
+
noise_threshold?: any;
|
|
19335
|
+
};
|
|
19282
19336
|
} | {
|
|
19283
19337
|
/** The ID of the action attempt. */
|
|
19284
19338
|
action_attempt_id: string;
|
|
@@ -19617,12 +19671,7 @@ export interface Routes {
|
|
|
19617
19671
|
status: 'success';
|
|
19618
19672
|
error: null;
|
|
19619
19673
|
action_type: 'ENCODE_CARD';
|
|
19620
|
-
result: {
|
|
19621
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
19622
|
-
acs_credential_id: string | null;
|
|
19623
|
-
/** A number or string that physically identifies this card. */
|
|
19624
|
-
card_number: string | null;
|
|
19625
|
-
};
|
|
19674
|
+
result: {};
|
|
19626
19675
|
} | {
|
|
19627
19676
|
/** The ID of the action attempt. */
|
|
19628
19677
|
action_attempt_id: string;
|
|
@@ -19814,7 +19863,7 @@ export interface Routes {
|
|
|
19814
19863
|
status: 'success';
|
|
19815
19864
|
error: null;
|
|
19816
19865
|
action_type: 'SYNC_ACCESS_CODES';
|
|
19817
|
-
result
|
|
19866
|
+
result: {};
|
|
19818
19867
|
} | {
|
|
19819
19868
|
/** The ID of the action attempt. */
|
|
19820
19869
|
action_attempt_id: string;
|
|
@@ -19838,7 +19887,9 @@ export interface Routes {
|
|
|
19838
19887
|
status: 'success';
|
|
19839
19888
|
error: null;
|
|
19840
19889
|
action_type: 'CREATE_ACCESS_CODE';
|
|
19841
|
-
result
|
|
19890
|
+
result: {
|
|
19891
|
+
access_code?: any;
|
|
19892
|
+
};
|
|
19842
19893
|
} | {
|
|
19843
19894
|
/** The ID of the action attempt. */
|
|
19844
19895
|
action_attempt_id: string;
|
|
@@ -19862,7 +19913,7 @@ export interface Routes {
|
|
|
19862
19913
|
status: 'success';
|
|
19863
19914
|
error: null;
|
|
19864
19915
|
action_type: 'DELETE_ACCESS_CODE';
|
|
19865
|
-
result
|
|
19916
|
+
result: {};
|
|
19866
19917
|
} | {
|
|
19867
19918
|
/** The ID of the action attempt. */
|
|
19868
19919
|
action_attempt_id: string;
|
|
@@ -19886,7 +19937,9 @@ export interface Routes {
|
|
|
19886
19937
|
status: 'success';
|
|
19887
19938
|
error: null;
|
|
19888
19939
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
19889
|
-
result
|
|
19940
|
+
result: {
|
|
19941
|
+
access_code?: any;
|
|
19942
|
+
};
|
|
19890
19943
|
} | {
|
|
19891
19944
|
/** The ID of the action attempt. */
|
|
19892
19945
|
action_attempt_id: string;
|
|
@@ -19910,7 +19963,9 @@ export interface Routes {
|
|
|
19910
19963
|
status: 'success';
|
|
19911
19964
|
error: null;
|
|
19912
19965
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
19913
|
-
result
|
|
19966
|
+
result: {
|
|
19967
|
+
noise_threshold?: any;
|
|
19968
|
+
};
|
|
19914
19969
|
} | {
|
|
19915
19970
|
/** The ID of the action attempt. */
|
|
19916
19971
|
action_attempt_id: string;
|
|
@@ -19934,7 +19989,7 @@ export interface Routes {
|
|
|
19934
19989
|
status: 'success';
|
|
19935
19990
|
error: null;
|
|
19936
19991
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
19937
|
-
result
|
|
19992
|
+
result: {};
|
|
19938
19993
|
} | {
|
|
19939
19994
|
/** The ID of the action attempt. */
|
|
19940
19995
|
action_attempt_id: string;
|
|
@@ -19958,7 +20013,9 @@ export interface Routes {
|
|
|
19958
20013
|
status: 'success';
|
|
19959
20014
|
error: null;
|
|
19960
20015
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
19961
|
-
result
|
|
20016
|
+
result: {
|
|
20017
|
+
noise_threshold?: any;
|
|
20018
|
+
};
|
|
19962
20019
|
} | {
|
|
19963
20020
|
/** The ID of the action attempt. */
|
|
19964
20021
|
action_attempt_id: string;
|
|
@@ -21645,12 +21702,7 @@ export interface Routes {
|
|
|
21645
21702
|
status: 'success';
|
|
21646
21703
|
error: null;
|
|
21647
21704
|
action_type: 'ENCODE_CARD';
|
|
21648
|
-
result: {
|
|
21649
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
21650
|
-
acs_credential_id: string | null;
|
|
21651
|
-
/** A number or string that physically identifies this card. */
|
|
21652
|
-
card_number: string | null;
|
|
21653
|
-
};
|
|
21705
|
+
result: {};
|
|
21654
21706
|
} | {
|
|
21655
21707
|
/** The ID of the action attempt. */
|
|
21656
21708
|
action_attempt_id: string;
|
|
@@ -21842,7 +21894,7 @@ export interface Routes {
|
|
|
21842
21894
|
status: 'success';
|
|
21843
21895
|
error: null;
|
|
21844
21896
|
action_type: 'SYNC_ACCESS_CODES';
|
|
21845
|
-
result
|
|
21897
|
+
result: {};
|
|
21846
21898
|
} | {
|
|
21847
21899
|
/** The ID of the action attempt. */
|
|
21848
21900
|
action_attempt_id: string;
|
|
@@ -21866,7 +21918,9 @@ export interface Routes {
|
|
|
21866
21918
|
status: 'success';
|
|
21867
21919
|
error: null;
|
|
21868
21920
|
action_type: 'CREATE_ACCESS_CODE';
|
|
21869
|
-
result
|
|
21921
|
+
result: {
|
|
21922
|
+
access_code?: any;
|
|
21923
|
+
};
|
|
21870
21924
|
} | {
|
|
21871
21925
|
/** The ID of the action attempt. */
|
|
21872
21926
|
action_attempt_id: string;
|
|
@@ -21890,7 +21944,7 @@ export interface Routes {
|
|
|
21890
21944
|
status: 'success';
|
|
21891
21945
|
error: null;
|
|
21892
21946
|
action_type: 'DELETE_ACCESS_CODE';
|
|
21893
|
-
result
|
|
21947
|
+
result: {};
|
|
21894
21948
|
} | {
|
|
21895
21949
|
/** The ID of the action attempt. */
|
|
21896
21950
|
action_attempt_id: string;
|
|
@@ -21914,7 +21968,9 @@ export interface Routes {
|
|
|
21914
21968
|
status: 'success';
|
|
21915
21969
|
error: null;
|
|
21916
21970
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
21917
|
-
result
|
|
21971
|
+
result: {
|
|
21972
|
+
access_code?: any;
|
|
21973
|
+
};
|
|
21918
21974
|
} | {
|
|
21919
21975
|
/** The ID of the action attempt. */
|
|
21920
21976
|
action_attempt_id: string;
|
|
@@ -21938,7 +21994,9 @@ export interface Routes {
|
|
|
21938
21994
|
status: 'success';
|
|
21939
21995
|
error: null;
|
|
21940
21996
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
21941
|
-
result
|
|
21997
|
+
result: {
|
|
21998
|
+
noise_threshold?: any;
|
|
21999
|
+
};
|
|
21942
22000
|
} | {
|
|
21943
22001
|
/** The ID of the action attempt. */
|
|
21944
22002
|
action_attempt_id: string;
|
|
@@ -21962,7 +22020,7 @@ export interface Routes {
|
|
|
21962
22020
|
status: 'success';
|
|
21963
22021
|
error: null;
|
|
21964
22022
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
21965
|
-
result
|
|
22023
|
+
result: {};
|
|
21966
22024
|
} | {
|
|
21967
22025
|
/** The ID of the action attempt. */
|
|
21968
22026
|
action_attempt_id: string;
|
|
@@ -21986,7 +22044,9 @@ export interface Routes {
|
|
|
21986
22044
|
status: 'success';
|
|
21987
22045
|
error: null;
|
|
21988
22046
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
21989
|
-
result
|
|
22047
|
+
result: {
|
|
22048
|
+
noise_threshold?: any;
|
|
22049
|
+
};
|
|
21990
22050
|
} | {
|
|
21991
22051
|
/** The ID of the action attempt. */
|
|
21992
22052
|
action_attempt_id: string;
|