@seamapi/types 1.264.0 → 1.264.2
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 +82 -43
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +562 -363
- package/lib/seam/connect/models/acs/acs-credential.d.ts +3 -3
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +71 -46
- 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/models/action-attempts/scan-card.d.ts +7 -7
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +73 -36
- package/lib/seam/connect/openapi.js +59 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +353 -280
- 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/acs/acs-credential.ts +1 -0
- 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/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +59 -33
- package/src/lib/seam/connect/route-types.ts +353 -280
- package/src/lib/seam/connect/schemas.ts +3 -0
|
@@ -90,7 +90,7 @@ export interface Routes {
|
|
|
90
90
|
/** Snapshot of the card data read from the physical encoder. */
|
|
91
91
|
acs_credential_on_encoder: {
|
|
92
92
|
/** Date and time the credential was created. */
|
|
93
|
-
created_at: string;
|
|
93
|
+
created_at: string | null;
|
|
94
94
|
is_issued: boolean | null;
|
|
95
95
|
/** Date and time the credential will become useable. */
|
|
96
96
|
starts_at: string | null;
|
|
@@ -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;
|
|
@@ -799,7 +802,7 @@ export interface Routes {
|
|
|
799
802
|
/** Snapshot of the card data read from the physical encoder. */
|
|
800
803
|
acs_credential_on_encoder: {
|
|
801
804
|
/** Date and time the credential was created. */
|
|
802
|
-
created_at: string;
|
|
805
|
+
created_at: string | null;
|
|
803
806
|
is_issued: boolean | null;
|
|
804
807
|
/** Date and time the credential will become useable. */
|
|
805
808
|
starts_at: string | null;
|
|
@@ -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;
|
|
@@ -1665,7 +1671,7 @@ export interface Routes {
|
|
|
1665
1671
|
/** Snapshot of the card data read from the physical encoder. */
|
|
1666
1672
|
acs_credential_on_encoder: {
|
|
1667
1673
|
/** Date and time the credential was created. */
|
|
1668
|
-
created_at: string;
|
|
1674
|
+
created_at: string | null;
|
|
1669
1675
|
is_issued: boolean | null;
|
|
1670
1676
|
/** Date and time the credential will become useable. */
|
|
1671
1677
|
starts_at: string | null;
|
|
@@ -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;
|
|
@@ -2361,7 +2370,7 @@ export interface Routes {
|
|
|
2361
2370
|
/** Snapshot of the card data read from the physical encoder. */
|
|
2362
2371
|
acs_credential_on_encoder: {
|
|
2363
2372
|
/** Date and time the credential was created. */
|
|
2364
|
-
created_at: string;
|
|
2373
|
+
created_at: string | null;
|
|
2365
2374
|
is_issued: boolean | null;
|
|
2366
2375
|
/** Date and time the credential will become useable. */
|
|
2367
2376
|
starts_at: string | null;
|
|
@@ -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;
|
|
@@ -3801,7 +3813,7 @@ export interface Routes {
|
|
|
3801
3813
|
/** Snapshot of the card data read from the physical encoder. */
|
|
3802
3814
|
acs_credential_on_encoder: {
|
|
3803
3815
|
/** Date and time the credential was created. */
|
|
3804
|
-
created_at: string;
|
|
3816
|
+
created_at: string | null;
|
|
3805
3817
|
is_issued: boolean | null;
|
|
3806
3818
|
/** Date and time the credential will become useable. */
|
|
3807
3819
|
starts_at: string | null;
|
|
@@ -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;
|
|
@@ -4598,6 +4613,7 @@ export interface Routes {
|
|
|
4598
4613
|
akiles_metadata?: {
|
|
4599
4614
|
gadget_name: string;
|
|
4600
4615
|
gadget_id: string;
|
|
4616
|
+
_member_group_id?: string | undefined;
|
|
4601
4617
|
} | undefined;
|
|
4602
4618
|
}) & ({
|
|
4603
4619
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -4822,7 +4838,7 @@ export interface Routes {
|
|
|
4822
4838
|
/** Snapshot of the card data read from the physical encoder. */
|
|
4823
4839
|
acs_credential_on_encoder: {
|
|
4824
4840
|
/** Date and time the credential was created. */
|
|
4825
|
-
created_at: string;
|
|
4841
|
+
created_at: string | null;
|
|
4826
4842
|
is_issued: boolean | null;
|
|
4827
4843
|
/** Date and time the credential will become useable. */
|
|
4828
4844
|
starts_at: string | null;
|
|
@@ -4950,12 +4966,7 @@ export interface Routes {
|
|
|
4950
4966
|
status: 'success';
|
|
4951
4967
|
error: null;
|
|
4952
4968
|
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
|
-
};
|
|
4969
|
+
result: {};
|
|
4959
4970
|
} | {
|
|
4960
4971
|
/** The ID of the action attempt. */
|
|
4961
4972
|
action_attempt_id: string;
|
|
@@ -5147,7 +5158,7 @@ export interface Routes {
|
|
|
5147
5158
|
status: 'success';
|
|
5148
5159
|
error: null;
|
|
5149
5160
|
action_type: 'SYNC_ACCESS_CODES';
|
|
5150
|
-
result
|
|
5161
|
+
result: {};
|
|
5151
5162
|
} | {
|
|
5152
5163
|
/** The ID of the action attempt. */
|
|
5153
5164
|
action_attempt_id: string;
|
|
@@ -5171,7 +5182,9 @@ export interface Routes {
|
|
|
5171
5182
|
status: 'success';
|
|
5172
5183
|
error: null;
|
|
5173
5184
|
action_type: 'CREATE_ACCESS_CODE';
|
|
5174
|
-
result
|
|
5185
|
+
result: {
|
|
5186
|
+
access_code?: any;
|
|
5187
|
+
};
|
|
5175
5188
|
} | {
|
|
5176
5189
|
/** The ID of the action attempt. */
|
|
5177
5190
|
action_attempt_id: string;
|
|
@@ -5195,7 +5208,7 @@ export interface Routes {
|
|
|
5195
5208
|
status: 'success';
|
|
5196
5209
|
error: null;
|
|
5197
5210
|
action_type: 'DELETE_ACCESS_CODE';
|
|
5198
|
-
result
|
|
5211
|
+
result: {};
|
|
5199
5212
|
} | {
|
|
5200
5213
|
/** The ID of the action attempt. */
|
|
5201
5214
|
action_attempt_id: string;
|
|
@@ -5219,7 +5232,9 @@ export interface Routes {
|
|
|
5219
5232
|
status: 'success';
|
|
5220
5233
|
error: null;
|
|
5221
5234
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
5222
|
-
result
|
|
5235
|
+
result: {
|
|
5236
|
+
access_code?: any;
|
|
5237
|
+
};
|
|
5223
5238
|
} | {
|
|
5224
5239
|
/** The ID of the action attempt. */
|
|
5225
5240
|
action_attempt_id: string;
|
|
@@ -5243,7 +5258,9 @@ export interface Routes {
|
|
|
5243
5258
|
status: 'success';
|
|
5244
5259
|
error: null;
|
|
5245
5260
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
5246
|
-
result
|
|
5261
|
+
result: {
|
|
5262
|
+
noise_threshold?: any;
|
|
5263
|
+
};
|
|
5247
5264
|
} | {
|
|
5248
5265
|
/** The ID of the action attempt. */
|
|
5249
5266
|
action_attempt_id: string;
|
|
@@ -5267,7 +5284,7 @@ export interface Routes {
|
|
|
5267
5284
|
status: 'success';
|
|
5268
5285
|
error: null;
|
|
5269
5286
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
5270
|
-
result
|
|
5287
|
+
result: {};
|
|
5271
5288
|
} | {
|
|
5272
5289
|
/** The ID of the action attempt. */
|
|
5273
5290
|
action_attempt_id: string;
|
|
@@ -5291,7 +5308,9 @@ export interface Routes {
|
|
|
5291
5308
|
status: 'success';
|
|
5292
5309
|
error: null;
|
|
5293
5310
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
5294
|
-
result
|
|
5311
|
+
result: {
|
|
5312
|
+
noise_threshold?: any;
|
|
5313
|
+
};
|
|
5295
5314
|
} | {
|
|
5296
5315
|
/** The ID of the action attempt. */
|
|
5297
5316
|
action_attempt_id: string;
|
|
@@ -6538,7 +6557,7 @@ export interface Routes {
|
|
|
6538
6557
|
/** Snapshot of the card data read from the physical encoder. */
|
|
6539
6558
|
acs_credential_on_encoder: {
|
|
6540
6559
|
/** Date and time the credential was created. */
|
|
6541
|
-
created_at: string;
|
|
6560
|
+
created_at: string | null;
|
|
6542
6561
|
is_issued: boolean | null;
|
|
6543
6562
|
/** Date and time the credential will become useable. */
|
|
6544
6563
|
starts_at: string | null;
|
|
@@ -6666,12 +6685,7 @@ export interface Routes {
|
|
|
6666
6685
|
status: 'success';
|
|
6667
6686
|
error: null;
|
|
6668
6687
|
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
|
-
};
|
|
6688
|
+
result: {};
|
|
6675
6689
|
} | {
|
|
6676
6690
|
/** The ID of the action attempt. */
|
|
6677
6691
|
action_attempt_id: string;
|
|
@@ -6863,7 +6877,7 @@ export interface Routes {
|
|
|
6863
6877
|
status: 'success';
|
|
6864
6878
|
error: null;
|
|
6865
6879
|
action_type: 'SYNC_ACCESS_CODES';
|
|
6866
|
-
result
|
|
6880
|
+
result: {};
|
|
6867
6881
|
} | {
|
|
6868
6882
|
/** The ID of the action attempt. */
|
|
6869
6883
|
action_attempt_id: string;
|
|
@@ -6887,7 +6901,9 @@ export interface Routes {
|
|
|
6887
6901
|
status: 'success';
|
|
6888
6902
|
error: null;
|
|
6889
6903
|
action_type: 'CREATE_ACCESS_CODE';
|
|
6890
|
-
result
|
|
6904
|
+
result: {
|
|
6905
|
+
access_code?: any;
|
|
6906
|
+
};
|
|
6891
6907
|
} | {
|
|
6892
6908
|
/** The ID of the action attempt. */
|
|
6893
6909
|
action_attempt_id: string;
|
|
@@ -6911,7 +6927,7 @@ export interface Routes {
|
|
|
6911
6927
|
status: 'success';
|
|
6912
6928
|
error: null;
|
|
6913
6929
|
action_type: 'DELETE_ACCESS_CODE';
|
|
6914
|
-
result
|
|
6930
|
+
result: {};
|
|
6915
6931
|
} | {
|
|
6916
6932
|
/** The ID of the action attempt. */
|
|
6917
6933
|
action_attempt_id: string;
|
|
@@ -6935,7 +6951,9 @@ export interface Routes {
|
|
|
6935
6951
|
status: 'success';
|
|
6936
6952
|
error: null;
|
|
6937
6953
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
6938
|
-
result
|
|
6954
|
+
result: {
|
|
6955
|
+
access_code?: any;
|
|
6956
|
+
};
|
|
6939
6957
|
} | {
|
|
6940
6958
|
/** The ID of the action attempt. */
|
|
6941
6959
|
action_attempt_id: string;
|
|
@@ -6959,7 +6977,9 @@ export interface Routes {
|
|
|
6959
6977
|
status: 'success';
|
|
6960
6978
|
error: null;
|
|
6961
6979
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
6962
|
-
result
|
|
6980
|
+
result: {
|
|
6981
|
+
noise_threshold?: any;
|
|
6982
|
+
};
|
|
6963
6983
|
} | {
|
|
6964
6984
|
/** The ID of the action attempt. */
|
|
6965
6985
|
action_attempt_id: string;
|
|
@@ -6983,7 +7003,7 @@ export interface Routes {
|
|
|
6983
7003
|
status: 'success';
|
|
6984
7004
|
error: null;
|
|
6985
7005
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
6986
|
-
result
|
|
7006
|
+
result: {};
|
|
6987
7007
|
} | {
|
|
6988
7008
|
/** The ID of the action attempt. */
|
|
6989
7009
|
action_attempt_id: string;
|
|
@@ -7007,7 +7027,9 @@ export interface Routes {
|
|
|
7007
7027
|
status: 'success';
|
|
7008
7028
|
error: null;
|
|
7009
7029
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7010
|
-
result
|
|
7030
|
+
result: {
|
|
7031
|
+
noise_threshold?: any;
|
|
7032
|
+
};
|
|
7011
7033
|
} | {
|
|
7012
7034
|
/** The ID of the action attempt. */
|
|
7013
7035
|
action_attempt_id: string;
|
|
@@ -7096,7 +7118,7 @@ export interface Routes {
|
|
|
7096
7118
|
/** Snapshot of the card data read from the physical encoder. */
|
|
7097
7119
|
acs_credential_on_encoder: {
|
|
7098
7120
|
/** Date and time the credential was created. */
|
|
7099
|
-
created_at: string;
|
|
7121
|
+
created_at: string | null;
|
|
7100
7122
|
is_issued: boolean | null;
|
|
7101
7123
|
/** Date and time the credential will become useable. */
|
|
7102
7124
|
starts_at: string | null;
|
|
@@ -7224,12 +7246,7 @@ export interface Routes {
|
|
|
7224
7246
|
status: 'success';
|
|
7225
7247
|
error: null;
|
|
7226
7248
|
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
|
-
};
|
|
7249
|
+
result: {};
|
|
7233
7250
|
} | {
|
|
7234
7251
|
/** The ID of the action attempt. */
|
|
7235
7252
|
action_attempt_id: string;
|
|
@@ -7421,7 +7438,7 @@ export interface Routes {
|
|
|
7421
7438
|
status: 'success';
|
|
7422
7439
|
error: null;
|
|
7423
7440
|
action_type: 'SYNC_ACCESS_CODES';
|
|
7424
|
-
result
|
|
7441
|
+
result: {};
|
|
7425
7442
|
} | {
|
|
7426
7443
|
/** The ID of the action attempt. */
|
|
7427
7444
|
action_attempt_id: string;
|
|
@@ -7445,7 +7462,9 @@ export interface Routes {
|
|
|
7445
7462
|
status: 'success';
|
|
7446
7463
|
error: null;
|
|
7447
7464
|
action_type: 'CREATE_ACCESS_CODE';
|
|
7448
|
-
result
|
|
7465
|
+
result: {
|
|
7466
|
+
access_code?: any;
|
|
7467
|
+
};
|
|
7449
7468
|
} | {
|
|
7450
7469
|
/** The ID of the action attempt. */
|
|
7451
7470
|
action_attempt_id: string;
|
|
@@ -7469,7 +7488,7 @@ export interface Routes {
|
|
|
7469
7488
|
status: 'success';
|
|
7470
7489
|
error: null;
|
|
7471
7490
|
action_type: 'DELETE_ACCESS_CODE';
|
|
7472
|
-
result
|
|
7491
|
+
result: {};
|
|
7473
7492
|
} | {
|
|
7474
7493
|
/** The ID of the action attempt. */
|
|
7475
7494
|
action_attempt_id: string;
|
|
@@ -7493,7 +7512,9 @@ export interface Routes {
|
|
|
7493
7512
|
status: 'success';
|
|
7494
7513
|
error: null;
|
|
7495
7514
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
7496
|
-
result
|
|
7515
|
+
result: {
|
|
7516
|
+
access_code?: any;
|
|
7517
|
+
};
|
|
7497
7518
|
} | {
|
|
7498
7519
|
/** The ID of the action attempt. */
|
|
7499
7520
|
action_attempt_id: string;
|
|
@@ -7517,7 +7538,9 @@ export interface Routes {
|
|
|
7517
7538
|
status: 'success';
|
|
7518
7539
|
error: null;
|
|
7519
7540
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7520
|
-
result
|
|
7541
|
+
result: {
|
|
7542
|
+
noise_threshold?: any;
|
|
7543
|
+
};
|
|
7521
7544
|
} | {
|
|
7522
7545
|
/** The ID of the action attempt. */
|
|
7523
7546
|
action_attempt_id: string;
|
|
@@ -7541,7 +7564,7 @@ export interface Routes {
|
|
|
7541
7564
|
status: 'success';
|
|
7542
7565
|
error: null;
|
|
7543
7566
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7544
|
-
result
|
|
7567
|
+
result: {};
|
|
7545
7568
|
} | {
|
|
7546
7569
|
/** The ID of the action attempt. */
|
|
7547
7570
|
action_attempt_id: string;
|
|
@@ -7565,7 +7588,9 @@ export interface Routes {
|
|
|
7565
7588
|
status: 'success';
|
|
7566
7589
|
error: null;
|
|
7567
7590
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7568
|
-
result
|
|
7591
|
+
result: {
|
|
7592
|
+
noise_threshold?: any;
|
|
7593
|
+
};
|
|
7569
7594
|
} | {
|
|
7570
7595
|
/** The ID of the action attempt. */
|
|
7571
7596
|
action_attempt_id: string;
|
|
@@ -8311,6 +8336,7 @@ export interface Routes {
|
|
|
8311
8336
|
akiles_metadata?: {
|
|
8312
8337
|
gadget_name: string;
|
|
8313
8338
|
gadget_id: string;
|
|
8339
|
+
_member_group_id?: string | undefined;
|
|
8314
8340
|
} | undefined;
|
|
8315
8341
|
}) & ({
|
|
8316
8342
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -8775,6 +8801,7 @@ export interface Routes {
|
|
|
8775
8801
|
akiles_metadata?: {
|
|
8776
8802
|
gadget_name: string;
|
|
8777
8803
|
gadget_id: string;
|
|
8804
|
+
_member_group_id?: string | undefined;
|
|
8778
8805
|
} | undefined;
|
|
8779
8806
|
}) & ({
|
|
8780
8807
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -9637,6 +9664,7 @@ export interface Routes {
|
|
|
9637
9664
|
akiles_metadata?: {
|
|
9638
9665
|
gadget_name: string;
|
|
9639
9666
|
gadget_id: string;
|
|
9667
|
+
_member_group_id?: string | undefined;
|
|
9640
9668
|
} | undefined;
|
|
9641
9669
|
}) & ({
|
|
9642
9670
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -10076,6 +10104,7 @@ export interface Routes {
|
|
|
10076
10104
|
akiles_metadata?: {
|
|
10077
10105
|
gadget_name: string;
|
|
10078
10106
|
gadget_id: string;
|
|
10107
|
+
_member_group_id?: string | undefined;
|
|
10079
10108
|
} | undefined;
|
|
10080
10109
|
}) & ({
|
|
10081
10110
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -10540,6 +10569,7 @@ export interface Routes {
|
|
|
10540
10569
|
akiles_metadata?: {
|
|
10541
10570
|
gadget_name: string;
|
|
10542
10571
|
gadget_id: string;
|
|
10572
|
+
_member_group_id?: string | undefined;
|
|
10543
10573
|
} | undefined;
|
|
10544
10574
|
}) & ({
|
|
10545
10575
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -10979,6 +11009,7 @@ export interface Routes {
|
|
|
10979
11009
|
akiles_metadata?: {
|
|
10980
11010
|
gadget_name: string;
|
|
10981
11011
|
gadget_id: string;
|
|
11012
|
+
_member_group_id?: string | undefined;
|
|
10982
11013
|
} | undefined;
|
|
10983
11014
|
}) & ({
|
|
10984
11015
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -11200,7 +11231,7 @@ export interface Routes {
|
|
|
11200
11231
|
/** Snapshot of the card data read from the physical encoder. */
|
|
11201
11232
|
acs_credential_on_encoder: {
|
|
11202
11233
|
/** Date and time the credential was created. */
|
|
11203
|
-
created_at: string;
|
|
11234
|
+
created_at: string | null;
|
|
11204
11235
|
is_issued: boolean | null;
|
|
11205
11236
|
/** Date and time the credential will become useable. */
|
|
11206
11237
|
starts_at: string | null;
|
|
@@ -11328,12 +11359,7 @@ export interface Routes {
|
|
|
11328
11359
|
status: 'success';
|
|
11329
11360
|
error: null;
|
|
11330
11361
|
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
|
-
};
|
|
11362
|
+
result: {};
|
|
11337
11363
|
} | {
|
|
11338
11364
|
/** The ID of the action attempt. */
|
|
11339
11365
|
action_attempt_id: string;
|
|
@@ -11525,7 +11551,7 @@ export interface Routes {
|
|
|
11525
11551
|
status: 'success';
|
|
11526
11552
|
error: null;
|
|
11527
11553
|
action_type: 'SYNC_ACCESS_CODES';
|
|
11528
|
-
result
|
|
11554
|
+
result: {};
|
|
11529
11555
|
} | {
|
|
11530
11556
|
/** The ID of the action attempt. */
|
|
11531
11557
|
action_attempt_id: string;
|
|
@@ -11549,7 +11575,9 @@ export interface Routes {
|
|
|
11549
11575
|
status: 'success';
|
|
11550
11576
|
error: null;
|
|
11551
11577
|
action_type: 'CREATE_ACCESS_CODE';
|
|
11552
|
-
result
|
|
11578
|
+
result: {
|
|
11579
|
+
access_code?: any;
|
|
11580
|
+
};
|
|
11553
11581
|
} | {
|
|
11554
11582
|
/** The ID of the action attempt. */
|
|
11555
11583
|
action_attempt_id: string;
|
|
@@ -11573,7 +11601,7 @@ export interface Routes {
|
|
|
11573
11601
|
status: 'success';
|
|
11574
11602
|
error: null;
|
|
11575
11603
|
action_type: 'DELETE_ACCESS_CODE';
|
|
11576
|
-
result
|
|
11604
|
+
result: {};
|
|
11577
11605
|
} | {
|
|
11578
11606
|
/** The ID of the action attempt. */
|
|
11579
11607
|
action_attempt_id: string;
|
|
@@ -11597,7 +11625,9 @@ export interface Routes {
|
|
|
11597
11625
|
status: 'success';
|
|
11598
11626
|
error: null;
|
|
11599
11627
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
11600
|
-
result
|
|
11628
|
+
result: {
|
|
11629
|
+
access_code?: any;
|
|
11630
|
+
};
|
|
11601
11631
|
} | {
|
|
11602
11632
|
/** The ID of the action attempt. */
|
|
11603
11633
|
action_attempt_id: string;
|
|
@@ -11621,7 +11651,9 @@ export interface Routes {
|
|
|
11621
11651
|
status: 'success';
|
|
11622
11652
|
error: null;
|
|
11623
11653
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
11624
|
-
result
|
|
11654
|
+
result: {
|
|
11655
|
+
noise_threshold?: any;
|
|
11656
|
+
};
|
|
11625
11657
|
} | {
|
|
11626
11658
|
/** The ID of the action attempt. */
|
|
11627
11659
|
action_attempt_id: string;
|
|
@@ -11645,7 +11677,7 @@ export interface Routes {
|
|
|
11645
11677
|
status: 'success';
|
|
11646
11678
|
error: null;
|
|
11647
11679
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
11648
|
-
result
|
|
11680
|
+
result: {};
|
|
11649
11681
|
} | {
|
|
11650
11682
|
/** The ID of the action attempt. */
|
|
11651
11683
|
action_attempt_id: string;
|
|
@@ -11669,7 +11701,9 @@ export interface Routes {
|
|
|
11669
11701
|
status: 'success';
|
|
11670
11702
|
error: null;
|
|
11671
11703
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
11672
|
-
result
|
|
11704
|
+
result: {
|
|
11705
|
+
noise_threshold?: any;
|
|
11706
|
+
};
|
|
11673
11707
|
} | {
|
|
11674
11708
|
/** The ID of the action attempt. */
|
|
11675
11709
|
action_attempt_id: string;
|
|
@@ -11759,7 +11793,7 @@ export interface Routes {
|
|
|
11759
11793
|
/** Snapshot of the card data read from the physical encoder. */
|
|
11760
11794
|
acs_credential_on_encoder: {
|
|
11761
11795
|
/** Date and time the credential was created. */
|
|
11762
|
-
created_at: string;
|
|
11796
|
+
created_at: string | null;
|
|
11763
11797
|
is_issued: boolean | null;
|
|
11764
11798
|
/** Date and time the credential will become useable. */
|
|
11765
11799
|
starts_at: string | null;
|
|
@@ -11887,12 +11921,7 @@ export interface Routes {
|
|
|
11887
11921
|
status: 'success';
|
|
11888
11922
|
error: null;
|
|
11889
11923
|
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
|
-
};
|
|
11924
|
+
result: {};
|
|
11896
11925
|
} | {
|
|
11897
11926
|
/** The ID of the action attempt. */
|
|
11898
11927
|
action_attempt_id: string;
|
|
@@ -12084,7 +12113,7 @@ export interface Routes {
|
|
|
12084
12113
|
status: 'success';
|
|
12085
12114
|
error: null;
|
|
12086
12115
|
action_type: 'SYNC_ACCESS_CODES';
|
|
12087
|
-
result
|
|
12116
|
+
result: {};
|
|
12088
12117
|
} | {
|
|
12089
12118
|
/** The ID of the action attempt. */
|
|
12090
12119
|
action_attempt_id: string;
|
|
@@ -12108,7 +12137,9 @@ export interface Routes {
|
|
|
12108
12137
|
status: 'success';
|
|
12109
12138
|
error: null;
|
|
12110
12139
|
action_type: 'CREATE_ACCESS_CODE';
|
|
12111
|
-
result
|
|
12140
|
+
result: {
|
|
12141
|
+
access_code?: any;
|
|
12142
|
+
};
|
|
12112
12143
|
} | {
|
|
12113
12144
|
/** The ID of the action attempt. */
|
|
12114
12145
|
action_attempt_id: string;
|
|
@@ -12132,7 +12163,7 @@ export interface Routes {
|
|
|
12132
12163
|
status: 'success';
|
|
12133
12164
|
error: null;
|
|
12134
12165
|
action_type: 'DELETE_ACCESS_CODE';
|
|
12135
|
-
result
|
|
12166
|
+
result: {};
|
|
12136
12167
|
} | {
|
|
12137
12168
|
/** The ID of the action attempt. */
|
|
12138
12169
|
action_attempt_id: string;
|
|
@@ -12156,7 +12187,9 @@ export interface Routes {
|
|
|
12156
12187
|
status: 'success';
|
|
12157
12188
|
error: null;
|
|
12158
12189
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
12159
|
-
result
|
|
12190
|
+
result: {
|
|
12191
|
+
access_code?: any;
|
|
12192
|
+
};
|
|
12160
12193
|
} | {
|
|
12161
12194
|
/** The ID of the action attempt. */
|
|
12162
12195
|
action_attempt_id: string;
|
|
@@ -12180,7 +12213,9 @@ export interface Routes {
|
|
|
12180
12213
|
status: 'success';
|
|
12181
12214
|
error: null;
|
|
12182
12215
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
12183
|
-
result
|
|
12216
|
+
result: {
|
|
12217
|
+
noise_threshold?: any;
|
|
12218
|
+
};
|
|
12184
12219
|
} | {
|
|
12185
12220
|
/** The ID of the action attempt. */
|
|
12186
12221
|
action_attempt_id: string;
|
|
@@ -12204,7 +12239,7 @@ export interface Routes {
|
|
|
12204
12239
|
status: 'success';
|
|
12205
12240
|
error: null;
|
|
12206
12241
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
12207
|
-
result
|
|
12242
|
+
result: {};
|
|
12208
12243
|
} | {
|
|
12209
12244
|
/** The ID of the action attempt. */
|
|
12210
12245
|
action_attempt_id: string;
|
|
@@ -12228,7 +12263,9 @@ export interface Routes {
|
|
|
12228
12263
|
status: 'success';
|
|
12229
12264
|
error: null;
|
|
12230
12265
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
12231
|
-
result
|
|
12266
|
+
result: {
|
|
12267
|
+
noise_threshold?: any;
|
|
12268
|
+
};
|
|
12232
12269
|
} | {
|
|
12233
12270
|
/** The ID of the action attempt. */
|
|
12234
12271
|
action_attempt_id: string;
|
|
@@ -12595,6 +12632,7 @@ export interface Routes {
|
|
|
12595
12632
|
akiles_metadata?: {
|
|
12596
12633
|
gadget_name: string;
|
|
12597
12634
|
gadget_id: string;
|
|
12635
|
+
_member_group_id?: string | undefined;
|
|
12598
12636
|
} | undefined;
|
|
12599
12637
|
}) & ({
|
|
12600
12638
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -13034,6 +13072,7 @@ export interface Routes {
|
|
|
13034
13072
|
akiles_metadata?: {
|
|
13035
13073
|
gadget_name: string;
|
|
13036
13074
|
gadget_id: string;
|
|
13075
|
+
_member_group_id?: string | undefined;
|
|
13037
13076
|
} | undefined;
|
|
13038
13077
|
}) & ({
|
|
13039
13078
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -13260,7 +13299,7 @@ export interface Routes {
|
|
|
13260
13299
|
/** Snapshot of the card data read from the physical encoder. */
|
|
13261
13300
|
acs_credential_on_encoder: {
|
|
13262
13301
|
/** Date and time the credential was created. */
|
|
13263
|
-
created_at: string;
|
|
13302
|
+
created_at: string | null;
|
|
13264
13303
|
is_issued: boolean | null;
|
|
13265
13304
|
/** Date and time the credential will become useable. */
|
|
13266
13305
|
starts_at: string | null;
|
|
@@ -13388,12 +13427,7 @@ export interface Routes {
|
|
|
13388
13427
|
status: 'success';
|
|
13389
13428
|
error: null;
|
|
13390
13429
|
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
|
-
};
|
|
13430
|
+
result: {};
|
|
13397
13431
|
} | {
|
|
13398
13432
|
/** The ID of the action attempt. */
|
|
13399
13433
|
action_attempt_id: string;
|
|
@@ -13585,7 +13619,7 @@ export interface Routes {
|
|
|
13585
13619
|
status: 'success';
|
|
13586
13620
|
error: null;
|
|
13587
13621
|
action_type: 'SYNC_ACCESS_CODES';
|
|
13588
|
-
result
|
|
13622
|
+
result: {};
|
|
13589
13623
|
} | {
|
|
13590
13624
|
/** The ID of the action attempt. */
|
|
13591
13625
|
action_attempt_id: string;
|
|
@@ -13609,7 +13643,9 @@ export interface Routes {
|
|
|
13609
13643
|
status: 'success';
|
|
13610
13644
|
error: null;
|
|
13611
13645
|
action_type: 'CREATE_ACCESS_CODE';
|
|
13612
|
-
result
|
|
13646
|
+
result: {
|
|
13647
|
+
access_code?: any;
|
|
13648
|
+
};
|
|
13613
13649
|
} | {
|
|
13614
13650
|
/** The ID of the action attempt. */
|
|
13615
13651
|
action_attempt_id: string;
|
|
@@ -13633,7 +13669,7 @@ export interface Routes {
|
|
|
13633
13669
|
status: 'success';
|
|
13634
13670
|
error: null;
|
|
13635
13671
|
action_type: 'DELETE_ACCESS_CODE';
|
|
13636
|
-
result
|
|
13672
|
+
result: {};
|
|
13637
13673
|
} | {
|
|
13638
13674
|
/** The ID of the action attempt. */
|
|
13639
13675
|
action_attempt_id: string;
|
|
@@ -13657,7 +13693,9 @@ export interface Routes {
|
|
|
13657
13693
|
status: 'success';
|
|
13658
13694
|
error: null;
|
|
13659
13695
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
13660
|
-
result
|
|
13696
|
+
result: {
|
|
13697
|
+
access_code?: any;
|
|
13698
|
+
};
|
|
13661
13699
|
} | {
|
|
13662
13700
|
/** The ID of the action attempt. */
|
|
13663
13701
|
action_attempt_id: string;
|
|
@@ -13681,7 +13719,9 @@ export interface Routes {
|
|
|
13681
13719
|
status: 'success';
|
|
13682
13720
|
error: null;
|
|
13683
13721
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
13684
|
-
result
|
|
13722
|
+
result: {
|
|
13723
|
+
noise_threshold?: any;
|
|
13724
|
+
};
|
|
13685
13725
|
} | {
|
|
13686
13726
|
/** The ID of the action attempt. */
|
|
13687
13727
|
action_attempt_id: string;
|
|
@@ -13705,7 +13745,7 @@ export interface Routes {
|
|
|
13705
13745
|
status: 'success';
|
|
13706
13746
|
error: null;
|
|
13707
13747
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
13708
|
-
result
|
|
13748
|
+
result: {};
|
|
13709
13749
|
} | {
|
|
13710
13750
|
/** The ID of the action attempt. */
|
|
13711
13751
|
action_attempt_id: string;
|
|
@@ -13729,7 +13769,9 @@ export interface Routes {
|
|
|
13729
13769
|
status: 'success';
|
|
13730
13770
|
error: null;
|
|
13731
13771
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
13732
|
-
result
|
|
13772
|
+
result: {
|
|
13773
|
+
noise_threshold?: any;
|
|
13774
|
+
};
|
|
13733
13775
|
} | {
|
|
13734
13776
|
/** The ID of the action attempt. */
|
|
13735
13777
|
action_attempt_id: string;
|
|
@@ -13829,7 +13871,7 @@ export interface Routes {
|
|
|
13829
13871
|
/** Snapshot of the card data read from the physical encoder. */
|
|
13830
13872
|
acs_credential_on_encoder: {
|
|
13831
13873
|
/** Date and time the credential was created. */
|
|
13832
|
-
created_at: string;
|
|
13874
|
+
created_at: string | null;
|
|
13833
13875
|
is_issued: boolean | null;
|
|
13834
13876
|
/** Date and time the credential will become useable. */
|
|
13835
13877
|
starts_at: string | null;
|
|
@@ -13957,12 +13999,7 @@ export interface Routes {
|
|
|
13957
13999
|
status: 'success';
|
|
13958
14000
|
error: null;
|
|
13959
14001
|
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
|
-
};
|
|
14002
|
+
result: {};
|
|
13966
14003
|
} | {
|
|
13967
14004
|
/** The ID of the action attempt. */
|
|
13968
14005
|
action_attempt_id: string;
|
|
@@ -14154,7 +14191,7 @@ export interface Routes {
|
|
|
14154
14191
|
status: 'success';
|
|
14155
14192
|
error: null;
|
|
14156
14193
|
action_type: 'SYNC_ACCESS_CODES';
|
|
14157
|
-
result
|
|
14194
|
+
result: {};
|
|
14158
14195
|
} | {
|
|
14159
14196
|
/** The ID of the action attempt. */
|
|
14160
14197
|
action_attempt_id: string;
|
|
@@ -14178,7 +14215,9 @@ export interface Routes {
|
|
|
14178
14215
|
status: 'success';
|
|
14179
14216
|
error: null;
|
|
14180
14217
|
action_type: 'CREATE_ACCESS_CODE';
|
|
14181
|
-
result
|
|
14218
|
+
result: {
|
|
14219
|
+
access_code?: any;
|
|
14220
|
+
};
|
|
14182
14221
|
} | {
|
|
14183
14222
|
/** The ID of the action attempt. */
|
|
14184
14223
|
action_attempt_id: string;
|
|
@@ -14202,7 +14241,7 @@ export interface Routes {
|
|
|
14202
14241
|
status: 'success';
|
|
14203
14242
|
error: null;
|
|
14204
14243
|
action_type: 'DELETE_ACCESS_CODE';
|
|
14205
|
-
result
|
|
14244
|
+
result: {};
|
|
14206
14245
|
} | {
|
|
14207
14246
|
/** The ID of the action attempt. */
|
|
14208
14247
|
action_attempt_id: string;
|
|
@@ -14226,7 +14265,9 @@ export interface Routes {
|
|
|
14226
14265
|
status: 'success';
|
|
14227
14266
|
error: null;
|
|
14228
14267
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
14229
|
-
result
|
|
14268
|
+
result: {
|
|
14269
|
+
access_code?: any;
|
|
14270
|
+
};
|
|
14230
14271
|
} | {
|
|
14231
14272
|
/** The ID of the action attempt. */
|
|
14232
14273
|
action_attempt_id: string;
|
|
@@ -14250,7 +14291,9 @@ export interface Routes {
|
|
|
14250
14291
|
status: 'success';
|
|
14251
14292
|
error: null;
|
|
14252
14293
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
14253
|
-
result
|
|
14294
|
+
result: {
|
|
14295
|
+
noise_threshold?: any;
|
|
14296
|
+
};
|
|
14254
14297
|
} | {
|
|
14255
14298
|
/** The ID of the action attempt. */
|
|
14256
14299
|
action_attempt_id: string;
|
|
@@ -14274,7 +14317,7 @@ export interface Routes {
|
|
|
14274
14317
|
status: 'success';
|
|
14275
14318
|
error: null;
|
|
14276
14319
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
14277
|
-
result
|
|
14320
|
+
result: {};
|
|
14278
14321
|
} | {
|
|
14279
14322
|
/** The ID of the action attempt. */
|
|
14280
14323
|
action_attempt_id: string;
|
|
@@ -14298,7 +14341,9 @@ export interface Routes {
|
|
|
14298
14341
|
status: 'success';
|
|
14299
14342
|
error: null;
|
|
14300
14343
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
14301
|
-
result
|
|
14344
|
+
result: {
|
|
14345
|
+
noise_threshold?: any;
|
|
14346
|
+
};
|
|
14302
14347
|
} | {
|
|
14303
14348
|
/** The ID of the action attempt. */
|
|
14304
14349
|
action_attempt_id: string;
|
|
@@ -14437,7 +14482,7 @@ export interface Routes {
|
|
|
14437
14482
|
/** Snapshot of the card data read from the physical encoder. */
|
|
14438
14483
|
acs_credential_on_encoder: {
|
|
14439
14484
|
/** Date and time the credential was created. */
|
|
14440
|
-
created_at: string;
|
|
14485
|
+
created_at: string | null;
|
|
14441
14486
|
is_issued: boolean | null;
|
|
14442
14487
|
/** Date and time the credential will become useable. */
|
|
14443
14488
|
starts_at: string | null;
|
|
@@ -14565,12 +14610,7 @@ export interface Routes {
|
|
|
14565
14610
|
status: 'success';
|
|
14566
14611
|
error: null;
|
|
14567
14612
|
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
|
-
};
|
|
14613
|
+
result: {};
|
|
14574
14614
|
} | {
|
|
14575
14615
|
/** The ID of the action attempt. */
|
|
14576
14616
|
action_attempt_id: string;
|
|
@@ -14762,7 +14802,7 @@ export interface Routes {
|
|
|
14762
14802
|
status: 'success';
|
|
14763
14803
|
error: null;
|
|
14764
14804
|
action_type: 'SYNC_ACCESS_CODES';
|
|
14765
|
-
result
|
|
14805
|
+
result: {};
|
|
14766
14806
|
} | {
|
|
14767
14807
|
/** The ID of the action attempt. */
|
|
14768
14808
|
action_attempt_id: string;
|
|
@@ -14786,7 +14826,9 @@ export interface Routes {
|
|
|
14786
14826
|
status: 'success';
|
|
14787
14827
|
error: null;
|
|
14788
14828
|
action_type: 'CREATE_ACCESS_CODE';
|
|
14789
|
-
result
|
|
14829
|
+
result: {
|
|
14830
|
+
access_code?: any;
|
|
14831
|
+
};
|
|
14790
14832
|
} | {
|
|
14791
14833
|
/** The ID of the action attempt. */
|
|
14792
14834
|
action_attempt_id: string;
|
|
@@ -14810,7 +14852,7 @@ export interface Routes {
|
|
|
14810
14852
|
status: 'success';
|
|
14811
14853
|
error: null;
|
|
14812
14854
|
action_type: 'DELETE_ACCESS_CODE';
|
|
14813
|
-
result
|
|
14855
|
+
result: {};
|
|
14814
14856
|
} | {
|
|
14815
14857
|
/** The ID of the action attempt. */
|
|
14816
14858
|
action_attempt_id: string;
|
|
@@ -14834,7 +14876,9 @@ export interface Routes {
|
|
|
14834
14876
|
status: 'success';
|
|
14835
14877
|
error: null;
|
|
14836
14878
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
14837
|
-
result
|
|
14879
|
+
result: {
|
|
14880
|
+
access_code?: any;
|
|
14881
|
+
};
|
|
14838
14882
|
} | {
|
|
14839
14883
|
/** The ID of the action attempt. */
|
|
14840
14884
|
action_attempt_id: string;
|
|
@@ -14858,7 +14902,9 @@ export interface Routes {
|
|
|
14858
14902
|
status: 'success';
|
|
14859
14903
|
error: null;
|
|
14860
14904
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
14861
|
-
result
|
|
14905
|
+
result: {
|
|
14906
|
+
noise_threshold?: any;
|
|
14907
|
+
};
|
|
14862
14908
|
} | {
|
|
14863
14909
|
/** The ID of the action attempt. */
|
|
14864
14910
|
action_attempt_id: string;
|
|
@@ -14882,7 +14928,7 @@ export interface Routes {
|
|
|
14882
14928
|
status: 'success';
|
|
14883
14929
|
error: null;
|
|
14884
14930
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
14885
|
-
result
|
|
14931
|
+
result: {};
|
|
14886
14932
|
} | {
|
|
14887
14933
|
/** The ID of the action attempt. */
|
|
14888
14934
|
action_attempt_id: string;
|
|
@@ -14906,7 +14952,9 @@ export interface Routes {
|
|
|
14906
14952
|
status: 'success';
|
|
14907
14953
|
error: null;
|
|
14908
14954
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
14909
|
-
result
|
|
14955
|
+
result: {
|
|
14956
|
+
noise_threshold?: any;
|
|
14957
|
+
};
|
|
14910
14958
|
} | {
|
|
14911
14959
|
/** The ID of the action attempt. */
|
|
14912
14960
|
action_attempt_id: string;
|
|
@@ -15178,7 +15226,7 @@ export interface Routes {
|
|
|
15178
15226
|
/** Snapshot of the card data read from the physical encoder. */
|
|
15179
15227
|
acs_credential_on_encoder: {
|
|
15180
15228
|
/** Date and time the credential was created. */
|
|
15181
|
-
created_at: string;
|
|
15229
|
+
created_at: string | null;
|
|
15182
15230
|
is_issued: boolean | null;
|
|
15183
15231
|
/** Date and time the credential will become useable. */
|
|
15184
15232
|
starts_at: string | null;
|
|
@@ -15306,12 +15354,7 @@ export interface Routes {
|
|
|
15306
15354
|
status: 'success';
|
|
15307
15355
|
error: null;
|
|
15308
15356
|
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
|
-
};
|
|
15357
|
+
result: {};
|
|
15315
15358
|
} | {
|
|
15316
15359
|
/** The ID of the action attempt. */
|
|
15317
15360
|
action_attempt_id: string;
|
|
@@ -15503,7 +15546,7 @@ export interface Routes {
|
|
|
15503
15546
|
status: 'success';
|
|
15504
15547
|
error: null;
|
|
15505
15548
|
action_type: 'SYNC_ACCESS_CODES';
|
|
15506
|
-
result
|
|
15549
|
+
result: {};
|
|
15507
15550
|
} | {
|
|
15508
15551
|
/** The ID of the action attempt. */
|
|
15509
15552
|
action_attempt_id: string;
|
|
@@ -15527,7 +15570,9 @@ export interface Routes {
|
|
|
15527
15570
|
status: 'success';
|
|
15528
15571
|
error: null;
|
|
15529
15572
|
action_type: 'CREATE_ACCESS_CODE';
|
|
15530
|
-
result
|
|
15573
|
+
result: {
|
|
15574
|
+
access_code?: any;
|
|
15575
|
+
};
|
|
15531
15576
|
} | {
|
|
15532
15577
|
/** The ID of the action attempt. */
|
|
15533
15578
|
action_attempt_id: string;
|
|
@@ -15551,7 +15596,7 @@ export interface Routes {
|
|
|
15551
15596
|
status: 'success';
|
|
15552
15597
|
error: null;
|
|
15553
15598
|
action_type: 'DELETE_ACCESS_CODE';
|
|
15554
|
-
result
|
|
15599
|
+
result: {};
|
|
15555
15600
|
} | {
|
|
15556
15601
|
/** The ID of the action attempt. */
|
|
15557
15602
|
action_attempt_id: string;
|
|
@@ -15575,7 +15620,9 @@ export interface Routes {
|
|
|
15575
15620
|
status: 'success';
|
|
15576
15621
|
error: null;
|
|
15577
15622
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
15578
|
-
result
|
|
15623
|
+
result: {
|
|
15624
|
+
access_code?: any;
|
|
15625
|
+
};
|
|
15579
15626
|
} | {
|
|
15580
15627
|
/** The ID of the action attempt. */
|
|
15581
15628
|
action_attempt_id: string;
|
|
@@ -15599,7 +15646,9 @@ export interface Routes {
|
|
|
15599
15646
|
status: 'success';
|
|
15600
15647
|
error: null;
|
|
15601
15648
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
15602
|
-
result
|
|
15649
|
+
result: {
|
|
15650
|
+
noise_threshold?: any;
|
|
15651
|
+
};
|
|
15603
15652
|
} | {
|
|
15604
15653
|
/** The ID of the action attempt. */
|
|
15605
15654
|
action_attempt_id: string;
|
|
@@ -15623,7 +15672,7 @@ export interface Routes {
|
|
|
15623
15672
|
status: 'success';
|
|
15624
15673
|
error: null;
|
|
15625
15674
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
15626
|
-
result
|
|
15675
|
+
result: {};
|
|
15627
15676
|
} | {
|
|
15628
15677
|
/** The ID of the action attempt. */
|
|
15629
15678
|
action_attempt_id: string;
|
|
@@ -15647,7 +15696,9 @@ export interface Routes {
|
|
|
15647
15696
|
status: 'success';
|
|
15648
15697
|
error: null;
|
|
15649
15698
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
15650
|
-
result
|
|
15699
|
+
result: {
|
|
15700
|
+
noise_threshold?: any;
|
|
15701
|
+
};
|
|
15651
15702
|
} | {
|
|
15652
15703
|
/** The ID of the action attempt. */
|
|
15653
15704
|
action_attempt_id: string;
|
|
@@ -15739,7 +15790,7 @@ export interface Routes {
|
|
|
15739
15790
|
/** Snapshot of the card data read from the physical encoder. */
|
|
15740
15791
|
acs_credential_on_encoder: {
|
|
15741
15792
|
/** Date and time the credential was created. */
|
|
15742
|
-
created_at: string;
|
|
15793
|
+
created_at: string | null;
|
|
15743
15794
|
is_issued: boolean | null;
|
|
15744
15795
|
/** Date and time the credential will become useable. */
|
|
15745
15796
|
starts_at: string | null;
|
|
@@ -15867,12 +15918,7 @@ export interface Routes {
|
|
|
15867
15918
|
status: 'success';
|
|
15868
15919
|
error: null;
|
|
15869
15920
|
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
|
-
};
|
|
15921
|
+
result: {};
|
|
15876
15922
|
} | {
|
|
15877
15923
|
/** The ID of the action attempt. */
|
|
15878
15924
|
action_attempt_id: string;
|
|
@@ -16064,7 +16110,7 @@ export interface Routes {
|
|
|
16064
16110
|
status: 'success';
|
|
16065
16111
|
error: null;
|
|
16066
16112
|
action_type: 'SYNC_ACCESS_CODES';
|
|
16067
|
-
result
|
|
16113
|
+
result: {};
|
|
16068
16114
|
} | {
|
|
16069
16115
|
/** The ID of the action attempt. */
|
|
16070
16116
|
action_attempt_id: string;
|
|
@@ -16088,7 +16134,9 @@ export interface Routes {
|
|
|
16088
16134
|
status: 'success';
|
|
16089
16135
|
error: null;
|
|
16090
16136
|
action_type: 'CREATE_ACCESS_CODE';
|
|
16091
|
-
result
|
|
16137
|
+
result: {
|
|
16138
|
+
access_code?: any;
|
|
16139
|
+
};
|
|
16092
16140
|
} | {
|
|
16093
16141
|
/** The ID of the action attempt. */
|
|
16094
16142
|
action_attempt_id: string;
|
|
@@ -16112,7 +16160,7 @@ export interface Routes {
|
|
|
16112
16160
|
status: 'success';
|
|
16113
16161
|
error: null;
|
|
16114
16162
|
action_type: 'DELETE_ACCESS_CODE';
|
|
16115
|
-
result
|
|
16163
|
+
result: {};
|
|
16116
16164
|
} | {
|
|
16117
16165
|
/** The ID of the action attempt. */
|
|
16118
16166
|
action_attempt_id: string;
|
|
@@ -16136,7 +16184,9 @@ export interface Routes {
|
|
|
16136
16184
|
status: 'success';
|
|
16137
16185
|
error: null;
|
|
16138
16186
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
16139
|
-
result
|
|
16187
|
+
result: {
|
|
16188
|
+
access_code?: any;
|
|
16189
|
+
};
|
|
16140
16190
|
} | {
|
|
16141
16191
|
/** The ID of the action attempt. */
|
|
16142
16192
|
action_attempt_id: string;
|
|
@@ -16160,7 +16210,9 @@ export interface Routes {
|
|
|
16160
16210
|
status: 'success';
|
|
16161
16211
|
error: null;
|
|
16162
16212
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
16163
|
-
result
|
|
16213
|
+
result: {
|
|
16214
|
+
noise_threshold?: any;
|
|
16215
|
+
};
|
|
16164
16216
|
} | {
|
|
16165
16217
|
/** The ID of the action attempt. */
|
|
16166
16218
|
action_attempt_id: string;
|
|
@@ -16184,7 +16236,7 @@ export interface Routes {
|
|
|
16184
16236
|
status: 'success';
|
|
16185
16237
|
error: null;
|
|
16186
16238
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
16187
|
-
result
|
|
16239
|
+
result: {};
|
|
16188
16240
|
} | {
|
|
16189
16241
|
/** The ID of the action attempt. */
|
|
16190
16242
|
action_attempt_id: string;
|
|
@@ -16208,7 +16260,9 @@ export interface Routes {
|
|
|
16208
16260
|
status: 'success';
|
|
16209
16261
|
error: null;
|
|
16210
16262
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
16211
|
-
result
|
|
16263
|
+
result: {
|
|
16264
|
+
noise_threshold?: any;
|
|
16265
|
+
};
|
|
16212
16266
|
} | {
|
|
16213
16267
|
/** The ID of the action attempt. */
|
|
16214
16268
|
action_attempt_id: string;
|
|
@@ -16561,6 +16615,7 @@ export interface Routes {
|
|
|
16561
16615
|
akiles_metadata?: {
|
|
16562
16616
|
gadget_name: string;
|
|
16563
16617
|
gadget_id: string;
|
|
16618
|
+
_member_group_id?: string | undefined;
|
|
16564
16619
|
} | undefined;
|
|
16565
16620
|
}) & ({
|
|
16566
16621
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -16784,7 +16839,7 @@ export interface Routes {
|
|
|
16784
16839
|
/** Snapshot of the card data read from the physical encoder. */
|
|
16785
16840
|
acs_credential_on_encoder: {
|
|
16786
16841
|
/** Date and time the credential was created. */
|
|
16787
|
-
created_at: string;
|
|
16842
|
+
created_at: string | null;
|
|
16788
16843
|
is_issued: boolean | null;
|
|
16789
16844
|
/** Date and time the credential will become useable. */
|
|
16790
16845
|
starts_at: string | null;
|
|
@@ -16912,12 +16967,7 @@ export interface Routes {
|
|
|
16912
16967
|
status: 'success';
|
|
16913
16968
|
error: null;
|
|
16914
16969
|
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
|
-
};
|
|
16970
|
+
result: {};
|
|
16921
16971
|
} | {
|
|
16922
16972
|
/** The ID of the action attempt. */
|
|
16923
16973
|
action_attempt_id: string;
|
|
@@ -17109,7 +17159,7 @@ export interface Routes {
|
|
|
17109
17159
|
status: 'success';
|
|
17110
17160
|
error: null;
|
|
17111
17161
|
action_type: 'SYNC_ACCESS_CODES';
|
|
17112
|
-
result
|
|
17162
|
+
result: {};
|
|
17113
17163
|
} | {
|
|
17114
17164
|
/** The ID of the action attempt. */
|
|
17115
17165
|
action_attempt_id: string;
|
|
@@ -17133,7 +17183,9 @@ export interface Routes {
|
|
|
17133
17183
|
status: 'success';
|
|
17134
17184
|
error: null;
|
|
17135
17185
|
action_type: 'CREATE_ACCESS_CODE';
|
|
17136
|
-
result
|
|
17186
|
+
result: {
|
|
17187
|
+
access_code?: any;
|
|
17188
|
+
};
|
|
17137
17189
|
} | {
|
|
17138
17190
|
/** The ID of the action attempt. */
|
|
17139
17191
|
action_attempt_id: string;
|
|
@@ -17157,7 +17209,7 @@ export interface Routes {
|
|
|
17157
17209
|
status: 'success';
|
|
17158
17210
|
error: null;
|
|
17159
17211
|
action_type: 'DELETE_ACCESS_CODE';
|
|
17160
|
-
result
|
|
17212
|
+
result: {};
|
|
17161
17213
|
} | {
|
|
17162
17214
|
/** The ID of the action attempt. */
|
|
17163
17215
|
action_attempt_id: string;
|
|
@@ -17181,7 +17233,9 @@ export interface Routes {
|
|
|
17181
17233
|
status: 'success';
|
|
17182
17234
|
error: null;
|
|
17183
17235
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
17184
|
-
result
|
|
17236
|
+
result: {
|
|
17237
|
+
access_code?: any;
|
|
17238
|
+
};
|
|
17185
17239
|
} | {
|
|
17186
17240
|
/** The ID of the action attempt. */
|
|
17187
17241
|
action_attempt_id: string;
|
|
@@ -17205,7 +17259,9 @@ export interface Routes {
|
|
|
17205
17259
|
status: 'success';
|
|
17206
17260
|
error: null;
|
|
17207
17261
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
17208
|
-
result
|
|
17262
|
+
result: {
|
|
17263
|
+
noise_threshold?: any;
|
|
17264
|
+
};
|
|
17209
17265
|
} | {
|
|
17210
17266
|
/** The ID of the action attempt. */
|
|
17211
17267
|
action_attempt_id: string;
|
|
@@ -17229,7 +17285,7 @@ export interface Routes {
|
|
|
17229
17285
|
status: 'success';
|
|
17230
17286
|
error: null;
|
|
17231
17287
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
17232
|
-
result
|
|
17288
|
+
result: {};
|
|
17233
17289
|
} | {
|
|
17234
17290
|
/** The ID of the action attempt. */
|
|
17235
17291
|
action_attempt_id: string;
|
|
@@ -17253,7 +17309,9 @@ export interface Routes {
|
|
|
17253
17309
|
status: 'success';
|
|
17254
17310
|
error: null;
|
|
17255
17311
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
17256
|
-
result
|
|
17312
|
+
result: {
|
|
17313
|
+
noise_threshold?: any;
|
|
17314
|
+
};
|
|
17257
17315
|
} | {
|
|
17258
17316
|
/** The ID of the action attempt. */
|
|
17259
17317
|
action_attempt_id: string;
|
|
@@ -17347,7 +17405,7 @@ export interface Routes {
|
|
|
17347
17405
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17348
17406
|
acs_credential_on_encoder: {
|
|
17349
17407
|
/** Date and time the credential was created. */
|
|
17350
|
-
created_at: string;
|
|
17408
|
+
created_at: string | null;
|
|
17351
17409
|
is_issued: boolean | null;
|
|
17352
17410
|
/** Date and time the credential will become useable. */
|
|
17353
17411
|
starts_at: string | null;
|
|
@@ -17475,12 +17533,7 @@ export interface Routes {
|
|
|
17475
17533
|
status: 'success';
|
|
17476
17534
|
error: null;
|
|
17477
17535
|
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
|
-
};
|
|
17536
|
+
result: {};
|
|
17484
17537
|
} | {
|
|
17485
17538
|
/** The ID of the action attempt. */
|
|
17486
17539
|
action_attempt_id: string;
|
|
@@ -17672,7 +17725,7 @@ export interface Routes {
|
|
|
17672
17725
|
status: 'success';
|
|
17673
17726
|
error: null;
|
|
17674
17727
|
action_type: 'SYNC_ACCESS_CODES';
|
|
17675
|
-
result
|
|
17728
|
+
result: {};
|
|
17676
17729
|
} | {
|
|
17677
17730
|
/** The ID of the action attempt. */
|
|
17678
17731
|
action_attempt_id: string;
|
|
@@ -17696,7 +17749,9 @@ export interface Routes {
|
|
|
17696
17749
|
status: 'success';
|
|
17697
17750
|
error: null;
|
|
17698
17751
|
action_type: 'CREATE_ACCESS_CODE';
|
|
17699
|
-
result
|
|
17752
|
+
result: {
|
|
17753
|
+
access_code?: any;
|
|
17754
|
+
};
|
|
17700
17755
|
} | {
|
|
17701
17756
|
/** The ID of the action attempt. */
|
|
17702
17757
|
action_attempt_id: string;
|
|
@@ -17720,7 +17775,7 @@ export interface Routes {
|
|
|
17720
17775
|
status: 'success';
|
|
17721
17776
|
error: null;
|
|
17722
17777
|
action_type: 'DELETE_ACCESS_CODE';
|
|
17723
|
-
result
|
|
17778
|
+
result: {};
|
|
17724
17779
|
} | {
|
|
17725
17780
|
/** The ID of the action attempt. */
|
|
17726
17781
|
action_attempt_id: string;
|
|
@@ -17744,7 +17799,9 @@ export interface Routes {
|
|
|
17744
17799
|
status: 'success';
|
|
17745
17800
|
error: null;
|
|
17746
17801
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
17747
|
-
result
|
|
17802
|
+
result: {
|
|
17803
|
+
access_code?: any;
|
|
17804
|
+
};
|
|
17748
17805
|
} | {
|
|
17749
17806
|
/** The ID of the action attempt. */
|
|
17750
17807
|
action_attempt_id: string;
|
|
@@ -17768,7 +17825,9 @@ export interface Routes {
|
|
|
17768
17825
|
status: 'success';
|
|
17769
17826
|
error: null;
|
|
17770
17827
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
17771
|
-
result
|
|
17828
|
+
result: {
|
|
17829
|
+
noise_threshold?: any;
|
|
17830
|
+
};
|
|
17772
17831
|
} | {
|
|
17773
17832
|
/** The ID of the action attempt. */
|
|
17774
17833
|
action_attempt_id: string;
|
|
@@ -17792,7 +17851,7 @@ export interface Routes {
|
|
|
17792
17851
|
status: 'success';
|
|
17793
17852
|
error: null;
|
|
17794
17853
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
17795
|
-
result
|
|
17854
|
+
result: {};
|
|
17796
17855
|
} | {
|
|
17797
17856
|
/** The ID of the action attempt. */
|
|
17798
17857
|
action_attempt_id: string;
|
|
@@ -17816,7 +17875,9 @@ export interface Routes {
|
|
|
17816
17875
|
status: 'success';
|
|
17817
17876
|
error: null;
|
|
17818
17877
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
17819
|
-
result
|
|
17878
|
+
result: {
|
|
17879
|
+
noise_threshold?: any;
|
|
17880
|
+
};
|
|
17820
17881
|
} | {
|
|
17821
17882
|
/** The ID of the action attempt. */
|
|
17822
17883
|
action_attempt_id: string;
|
|
@@ -18149,6 +18210,7 @@ export interface Routes {
|
|
|
18149
18210
|
akiles_metadata?: {
|
|
18150
18211
|
gadget_name: string;
|
|
18151
18212
|
gadget_id: string;
|
|
18213
|
+
_member_group_id?: string | undefined;
|
|
18152
18214
|
} | undefined;
|
|
18153
18215
|
}) & ({
|
|
18154
18216
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -18809,7 +18871,7 @@ export interface Routes {
|
|
|
18809
18871
|
/** Snapshot of the card data read from the physical encoder. */
|
|
18810
18872
|
acs_credential_on_encoder: {
|
|
18811
18873
|
/** Date and time the credential was created. */
|
|
18812
|
-
created_at: string;
|
|
18874
|
+
created_at: string | null;
|
|
18813
18875
|
is_issued: boolean | null;
|
|
18814
18876
|
/** Date and time the credential will become useable. */
|
|
18815
18877
|
starts_at: string | null;
|
|
@@ -18937,12 +18999,7 @@ export interface Routes {
|
|
|
18937
18999
|
status: 'success';
|
|
18938
19000
|
error: null;
|
|
18939
19001
|
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
|
-
};
|
|
19002
|
+
result: {};
|
|
18946
19003
|
} | {
|
|
18947
19004
|
/** The ID of the action attempt. */
|
|
18948
19005
|
action_attempt_id: string;
|
|
@@ -19134,7 +19191,7 @@ export interface Routes {
|
|
|
19134
19191
|
status: 'success';
|
|
19135
19192
|
error: null;
|
|
19136
19193
|
action_type: 'SYNC_ACCESS_CODES';
|
|
19137
|
-
result
|
|
19194
|
+
result: {};
|
|
19138
19195
|
} | {
|
|
19139
19196
|
/** The ID of the action attempt. */
|
|
19140
19197
|
action_attempt_id: string;
|
|
@@ -19158,7 +19215,9 @@ export interface Routes {
|
|
|
19158
19215
|
status: 'success';
|
|
19159
19216
|
error: null;
|
|
19160
19217
|
action_type: 'CREATE_ACCESS_CODE';
|
|
19161
|
-
result
|
|
19218
|
+
result: {
|
|
19219
|
+
access_code?: any;
|
|
19220
|
+
};
|
|
19162
19221
|
} | {
|
|
19163
19222
|
/** The ID of the action attempt. */
|
|
19164
19223
|
action_attempt_id: string;
|
|
@@ -19182,7 +19241,7 @@ export interface Routes {
|
|
|
19182
19241
|
status: 'success';
|
|
19183
19242
|
error: null;
|
|
19184
19243
|
action_type: 'DELETE_ACCESS_CODE';
|
|
19185
|
-
result
|
|
19244
|
+
result: {};
|
|
19186
19245
|
} | {
|
|
19187
19246
|
/** The ID of the action attempt. */
|
|
19188
19247
|
action_attempt_id: string;
|
|
@@ -19206,7 +19265,9 @@ export interface Routes {
|
|
|
19206
19265
|
status: 'success';
|
|
19207
19266
|
error: null;
|
|
19208
19267
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
19209
|
-
result
|
|
19268
|
+
result: {
|
|
19269
|
+
access_code?: any;
|
|
19270
|
+
};
|
|
19210
19271
|
} | {
|
|
19211
19272
|
/** The ID of the action attempt. */
|
|
19212
19273
|
action_attempt_id: string;
|
|
@@ -19230,7 +19291,9 @@ export interface Routes {
|
|
|
19230
19291
|
status: 'success';
|
|
19231
19292
|
error: null;
|
|
19232
19293
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
19233
|
-
result
|
|
19294
|
+
result: {
|
|
19295
|
+
noise_threshold?: any;
|
|
19296
|
+
};
|
|
19234
19297
|
} | {
|
|
19235
19298
|
/** The ID of the action attempt. */
|
|
19236
19299
|
action_attempt_id: string;
|
|
@@ -19254,7 +19317,7 @@ export interface Routes {
|
|
|
19254
19317
|
status: 'success';
|
|
19255
19318
|
error: null;
|
|
19256
19319
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
19257
|
-
result
|
|
19320
|
+
result: {};
|
|
19258
19321
|
} | {
|
|
19259
19322
|
/** The ID of the action attempt. */
|
|
19260
19323
|
action_attempt_id: string;
|
|
@@ -19278,7 +19341,9 @@ export interface Routes {
|
|
|
19278
19341
|
status: 'success';
|
|
19279
19342
|
error: null;
|
|
19280
19343
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
19281
|
-
result
|
|
19344
|
+
result: {
|
|
19345
|
+
noise_threshold?: any;
|
|
19346
|
+
};
|
|
19282
19347
|
} | {
|
|
19283
19348
|
/** The ID of the action attempt. */
|
|
19284
19349
|
action_attempt_id: string;
|
|
@@ -19489,7 +19554,7 @@ export interface Routes {
|
|
|
19489
19554
|
/** Snapshot of the card data read from the physical encoder. */
|
|
19490
19555
|
acs_credential_on_encoder: {
|
|
19491
19556
|
/** Date and time the credential was created. */
|
|
19492
|
-
created_at: string;
|
|
19557
|
+
created_at: string | null;
|
|
19493
19558
|
is_issued: boolean | null;
|
|
19494
19559
|
/** Date and time the credential will become useable. */
|
|
19495
19560
|
starts_at: string | null;
|
|
@@ -19617,12 +19682,7 @@ export interface Routes {
|
|
|
19617
19682
|
status: 'success';
|
|
19618
19683
|
error: null;
|
|
19619
19684
|
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
|
-
};
|
|
19685
|
+
result: {};
|
|
19626
19686
|
} | {
|
|
19627
19687
|
/** The ID of the action attempt. */
|
|
19628
19688
|
action_attempt_id: string;
|
|
@@ -19814,7 +19874,7 @@ export interface Routes {
|
|
|
19814
19874
|
status: 'success';
|
|
19815
19875
|
error: null;
|
|
19816
19876
|
action_type: 'SYNC_ACCESS_CODES';
|
|
19817
|
-
result
|
|
19877
|
+
result: {};
|
|
19818
19878
|
} | {
|
|
19819
19879
|
/** The ID of the action attempt. */
|
|
19820
19880
|
action_attempt_id: string;
|
|
@@ -19838,7 +19898,9 @@ export interface Routes {
|
|
|
19838
19898
|
status: 'success';
|
|
19839
19899
|
error: null;
|
|
19840
19900
|
action_type: 'CREATE_ACCESS_CODE';
|
|
19841
|
-
result
|
|
19901
|
+
result: {
|
|
19902
|
+
access_code?: any;
|
|
19903
|
+
};
|
|
19842
19904
|
} | {
|
|
19843
19905
|
/** The ID of the action attempt. */
|
|
19844
19906
|
action_attempt_id: string;
|
|
@@ -19862,7 +19924,7 @@ export interface Routes {
|
|
|
19862
19924
|
status: 'success';
|
|
19863
19925
|
error: null;
|
|
19864
19926
|
action_type: 'DELETE_ACCESS_CODE';
|
|
19865
|
-
result
|
|
19927
|
+
result: {};
|
|
19866
19928
|
} | {
|
|
19867
19929
|
/** The ID of the action attempt. */
|
|
19868
19930
|
action_attempt_id: string;
|
|
@@ -19886,7 +19948,9 @@ export interface Routes {
|
|
|
19886
19948
|
status: 'success';
|
|
19887
19949
|
error: null;
|
|
19888
19950
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
19889
|
-
result
|
|
19951
|
+
result: {
|
|
19952
|
+
access_code?: any;
|
|
19953
|
+
};
|
|
19890
19954
|
} | {
|
|
19891
19955
|
/** The ID of the action attempt. */
|
|
19892
19956
|
action_attempt_id: string;
|
|
@@ -19910,7 +19974,9 @@ export interface Routes {
|
|
|
19910
19974
|
status: 'success';
|
|
19911
19975
|
error: null;
|
|
19912
19976
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
19913
|
-
result
|
|
19977
|
+
result: {
|
|
19978
|
+
noise_threshold?: any;
|
|
19979
|
+
};
|
|
19914
19980
|
} | {
|
|
19915
19981
|
/** The ID of the action attempt. */
|
|
19916
19982
|
action_attempt_id: string;
|
|
@@ -19934,7 +20000,7 @@ export interface Routes {
|
|
|
19934
20000
|
status: 'success';
|
|
19935
20001
|
error: null;
|
|
19936
20002
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
19937
|
-
result
|
|
20003
|
+
result: {};
|
|
19938
20004
|
} | {
|
|
19939
20005
|
/** The ID of the action attempt. */
|
|
19940
20006
|
action_attempt_id: string;
|
|
@@ -19958,7 +20024,9 @@ export interface Routes {
|
|
|
19958
20024
|
status: 'success';
|
|
19959
20025
|
error: null;
|
|
19960
20026
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
19961
|
-
result
|
|
20027
|
+
result: {
|
|
20028
|
+
noise_threshold?: any;
|
|
20029
|
+
};
|
|
19962
20030
|
} | {
|
|
19963
20031
|
/** The ID of the action attempt. */
|
|
19964
20032
|
action_attempt_id: string;
|
|
@@ -20477,6 +20545,7 @@ export interface Routes {
|
|
|
20477
20545
|
akiles_metadata?: {
|
|
20478
20546
|
gadget_name: string;
|
|
20479
20547
|
gadget_id: string;
|
|
20548
|
+
_member_group_id?: string | undefined;
|
|
20480
20549
|
} | undefined;
|
|
20481
20550
|
}) & ({
|
|
20482
20551
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -20918,6 +20987,7 @@ export interface Routes {
|
|
|
20918
20987
|
akiles_metadata?: {
|
|
20919
20988
|
gadget_name: string;
|
|
20920
20989
|
gadget_id: string;
|
|
20990
|
+
_member_group_id?: string | undefined;
|
|
20921
20991
|
} | undefined;
|
|
20922
20992
|
}) & ({
|
|
20923
20993
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -21517,7 +21587,7 @@ export interface Routes {
|
|
|
21517
21587
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21518
21588
|
acs_credential_on_encoder: {
|
|
21519
21589
|
/** Date and time the credential was created. */
|
|
21520
|
-
created_at: string;
|
|
21590
|
+
created_at: string | null;
|
|
21521
21591
|
is_issued: boolean | null;
|
|
21522
21592
|
/** Date and time the credential will become useable. */
|
|
21523
21593
|
starts_at: string | null;
|
|
@@ -21645,12 +21715,7 @@ export interface Routes {
|
|
|
21645
21715
|
status: 'success';
|
|
21646
21716
|
error: null;
|
|
21647
21717
|
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
|
-
};
|
|
21718
|
+
result: {};
|
|
21654
21719
|
} | {
|
|
21655
21720
|
/** The ID of the action attempt. */
|
|
21656
21721
|
action_attempt_id: string;
|
|
@@ -21842,7 +21907,7 @@ export interface Routes {
|
|
|
21842
21907
|
status: 'success';
|
|
21843
21908
|
error: null;
|
|
21844
21909
|
action_type: 'SYNC_ACCESS_CODES';
|
|
21845
|
-
result
|
|
21910
|
+
result: {};
|
|
21846
21911
|
} | {
|
|
21847
21912
|
/** The ID of the action attempt. */
|
|
21848
21913
|
action_attempt_id: string;
|
|
@@ -21866,7 +21931,9 @@ export interface Routes {
|
|
|
21866
21931
|
status: 'success';
|
|
21867
21932
|
error: null;
|
|
21868
21933
|
action_type: 'CREATE_ACCESS_CODE';
|
|
21869
|
-
result
|
|
21934
|
+
result: {
|
|
21935
|
+
access_code?: any;
|
|
21936
|
+
};
|
|
21870
21937
|
} | {
|
|
21871
21938
|
/** The ID of the action attempt. */
|
|
21872
21939
|
action_attempt_id: string;
|
|
@@ -21890,7 +21957,7 @@ export interface Routes {
|
|
|
21890
21957
|
status: 'success';
|
|
21891
21958
|
error: null;
|
|
21892
21959
|
action_type: 'DELETE_ACCESS_CODE';
|
|
21893
|
-
result
|
|
21960
|
+
result: {};
|
|
21894
21961
|
} | {
|
|
21895
21962
|
/** The ID of the action attempt. */
|
|
21896
21963
|
action_attempt_id: string;
|
|
@@ -21914,7 +21981,9 @@ export interface Routes {
|
|
|
21914
21981
|
status: 'success';
|
|
21915
21982
|
error: null;
|
|
21916
21983
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
21917
|
-
result
|
|
21984
|
+
result: {
|
|
21985
|
+
access_code?: any;
|
|
21986
|
+
};
|
|
21918
21987
|
} | {
|
|
21919
21988
|
/** The ID of the action attempt. */
|
|
21920
21989
|
action_attempt_id: string;
|
|
@@ -21938,7 +22007,9 @@ export interface Routes {
|
|
|
21938
22007
|
status: 'success';
|
|
21939
22008
|
error: null;
|
|
21940
22009
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
21941
|
-
result
|
|
22010
|
+
result: {
|
|
22011
|
+
noise_threshold?: any;
|
|
22012
|
+
};
|
|
21942
22013
|
} | {
|
|
21943
22014
|
/** The ID of the action attempt. */
|
|
21944
22015
|
action_attempt_id: string;
|
|
@@ -21962,7 +22033,7 @@ export interface Routes {
|
|
|
21962
22033
|
status: 'success';
|
|
21963
22034
|
error: null;
|
|
21964
22035
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
21965
|
-
result
|
|
22036
|
+
result: {};
|
|
21966
22037
|
} | {
|
|
21967
22038
|
/** The ID of the action attempt. */
|
|
21968
22039
|
action_attempt_id: string;
|
|
@@ -21986,7 +22057,9 @@ export interface Routes {
|
|
|
21986
22057
|
status: 'success';
|
|
21987
22058
|
error: null;
|
|
21988
22059
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
21989
|
-
result
|
|
22060
|
+
result: {
|
|
22061
|
+
noise_threshold?: any;
|
|
22062
|
+
};
|
|
21990
22063
|
} | {
|
|
21991
22064
|
/** The ID of the action attempt. */
|
|
21992
22065
|
action_attempt_id: string;
|