@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.
Files changed (27) hide show
  1. package/dist/connect.cjs +74 -41
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +506 -336
  4. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +64 -39
  5. package/lib/seam/connect/models/action-attempts/deprecated.d.ts +61 -21
  6. package/lib/seam/connect/models/action-attempts/deprecated.js +13 -5
  7. package/lib/seam/connect/models/action-attempts/deprecated.js.map +1 -1
  8. package/lib/seam/connect/models/action-attempts/encode-card.d.ts +3 -18
  9. package/lib/seam/connect/models/action-attempts/encode-card.js +1 -12
  10. package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
  11. package/lib/seam/connect/models/action-attempts/index.d.ts +1 -0
  12. package/lib/seam/connect/models/action-attempts/index.js +1 -0
  13. package/lib/seam/connect/models/action-attempts/index.js.map +1 -1
  14. package/lib/seam/connect/openapi.d.ts +69 -36
  15. package/lib/seam/connect/openapi.js +57 -31
  16. package/lib/seam/connect/openapi.js.map +1 -1
  17. package/lib/seam/connect/route-types.d.ts +320 -260
  18. package/lib/seam/connect/schemas.d.ts +1 -1
  19. package/lib/seam/connect/schemas.js +1 -1
  20. package/lib/seam/connect/schemas.js.map +1 -1
  21. package/package.json +1 -1
  22. package/src/lib/seam/connect/models/action-attempts/deprecated.ts +13 -5
  23. package/src/lib/seam/connect/models/action-attempts/encode-card.ts +1 -12
  24. package/src/lib/seam/connect/models/action-attempts/index.ts +1 -0
  25. package/src/lib/seam/connect/openapi.ts +57 -33
  26. package/src/lib/seam/connect/route-types.ts +320 -260
  27. package/src/lib/seam/connect/schemas.ts +3 -0
@@ -264,12 +264,7 @@ export interface Routes {
264
264
  status: 'success'
265
265
  error: null
266
266
  action_type: 'ENCODE_CARD'
267
- result: {
268
- /** Matching acs_credential currently encoded on this card. */
269
- acs_credential_id: string | null
270
- /** A number or string that physically identifies this card. */
271
- card_number: string | null
272
- }
267
+ result: {}
273
268
  }
274
269
  | {
275
270
  /** The ID of the action attempt. */
@@ -485,7 +480,7 @@ export interface Routes {
485
480
  status: 'success'
486
481
  error: null
487
482
  action_type: 'SYNC_ACCESS_CODES'
488
- result?: any
483
+ result: {}
489
484
  }
490
485
  | {
491
486
  /** The ID of the action attempt. */
@@ -512,7 +507,9 @@ export interface Routes {
512
507
  status: 'success'
513
508
  error: null
514
509
  action_type: 'CREATE_ACCESS_CODE'
515
- result?: any
510
+ result: {
511
+ access_code?: any
512
+ }
516
513
  }
517
514
  | {
518
515
  /** The ID of the action attempt. */
@@ -539,7 +536,7 @@ export interface Routes {
539
536
  status: 'success'
540
537
  error: null
541
538
  action_type: 'DELETE_ACCESS_CODE'
542
- result?: any
539
+ result: {}
543
540
  }
544
541
  | {
545
542
  /** The ID of the action attempt. */
@@ -566,7 +563,9 @@ export interface Routes {
566
563
  status: 'success'
567
564
  error: null
568
565
  action_type: 'UPDATE_ACCESS_CODE'
569
- result?: any
566
+ result: {
567
+ access_code?: any
568
+ }
570
569
  }
571
570
  | {
572
571
  /** The ID of the action attempt. */
@@ -593,7 +592,9 @@ export interface Routes {
593
592
  status: 'success'
594
593
  error: null
595
594
  action_type: 'CREATE_NOISE_THRESHOLD'
596
- result?: any
595
+ result: {
596
+ noise_threshold?: any
597
+ }
597
598
  }
598
599
  | {
599
600
  /** The ID of the action attempt. */
@@ -620,7 +621,7 @@ export interface Routes {
620
621
  status: 'success'
621
622
  error: null
622
623
  action_type: 'DELETE_NOISE_THRESHOLD'
623
- result?: any
624
+ result: {}
624
625
  }
625
626
  | {
626
627
  /** The ID of the action attempt. */
@@ -647,7 +648,9 @@ export interface Routes {
647
648
  status: 'success'
648
649
  error: null
649
650
  action_type: 'UPDATE_NOISE_THRESHOLD'
650
- result?: any
651
+ result: {
652
+ noise_threshold?: any
653
+ }
651
654
  }
652
655
  | {
653
656
  /** The ID of the action attempt. */
@@ -1070,12 +1073,7 @@ export interface Routes {
1070
1073
  status: 'success'
1071
1074
  error: null
1072
1075
  action_type: 'ENCODE_CARD'
1073
- result: {
1074
- /** Matching acs_credential currently encoded on this card. */
1075
- acs_credential_id: string | null
1076
- /** A number or string that physically identifies this card. */
1077
- card_number: string | null
1078
- }
1076
+ result: {}
1079
1077
  }
1080
1078
  | {
1081
1079
  /** The ID of the action attempt. */
@@ -1291,7 +1289,7 @@ export interface Routes {
1291
1289
  status: 'success'
1292
1290
  error: null
1293
1291
  action_type: 'SYNC_ACCESS_CODES'
1294
- result?: any
1292
+ result: {}
1295
1293
  }
1296
1294
  | {
1297
1295
  /** The ID of the action attempt. */
@@ -1318,7 +1316,9 @@ export interface Routes {
1318
1316
  status: 'success'
1319
1317
  error: null
1320
1318
  action_type: 'CREATE_ACCESS_CODE'
1321
- result?: any
1319
+ result: {
1320
+ access_code?: any
1321
+ }
1322
1322
  }
1323
1323
  | {
1324
1324
  /** The ID of the action attempt. */
@@ -1345,7 +1345,7 @@ export interface Routes {
1345
1345
  status: 'success'
1346
1346
  error: null
1347
1347
  action_type: 'DELETE_ACCESS_CODE'
1348
- result?: any
1348
+ result: {}
1349
1349
  }
1350
1350
  | {
1351
1351
  /** The ID of the action attempt. */
@@ -1372,7 +1372,9 @@ export interface Routes {
1372
1372
  status: 'success'
1373
1373
  error: null
1374
1374
  action_type: 'UPDATE_ACCESS_CODE'
1375
- result?: any
1375
+ result: {
1376
+ access_code?: any
1377
+ }
1376
1378
  }
1377
1379
  | {
1378
1380
  /** The ID of the action attempt. */
@@ -1399,7 +1401,9 @@ export interface Routes {
1399
1401
  status: 'success'
1400
1402
  error: null
1401
1403
  action_type: 'CREATE_NOISE_THRESHOLD'
1402
- result?: any
1404
+ result: {
1405
+ noise_threshold?: any
1406
+ }
1403
1407
  }
1404
1408
  | {
1405
1409
  /** The ID of the action attempt. */
@@ -1426,7 +1430,7 @@ export interface Routes {
1426
1430
  status: 'success'
1427
1431
  error: null
1428
1432
  action_type: 'DELETE_NOISE_THRESHOLD'
1429
- result?: any
1433
+ result: {}
1430
1434
  }
1431
1435
  | {
1432
1436
  /** The ID of the action attempt. */
@@ -1453,7 +1457,9 @@ export interface Routes {
1453
1457
  status: 'success'
1454
1458
  error: null
1455
1459
  action_type: 'UPDATE_NOISE_THRESHOLD'
1456
- result?: any
1460
+ result: {
1461
+ noise_threshold?: any
1462
+ }
1457
1463
  }
1458
1464
  | {
1459
1465
  /** The ID of the action attempt. */
@@ -2041,12 +2047,7 @@ export interface Routes {
2041
2047
  status: 'success'
2042
2048
  error: null
2043
2049
  action_type: 'ENCODE_CARD'
2044
- result: {
2045
- /** Matching acs_credential currently encoded on this card. */
2046
- acs_credential_id: string | null
2047
- /** A number or string that physically identifies this card. */
2048
- card_number: string | null
2049
- }
2050
+ result: {}
2050
2051
  }
2051
2052
  | {
2052
2053
  /** The ID of the action attempt. */
@@ -2262,7 +2263,7 @@ export interface Routes {
2262
2263
  status: 'success'
2263
2264
  error: null
2264
2265
  action_type: 'SYNC_ACCESS_CODES'
2265
- result?: any
2266
+ result: {}
2266
2267
  }
2267
2268
  | {
2268
2269
  /** The ID of the action attempt. */
@@ -2289,7 +2290,9 @@ export interface Routes {
2289
2290
  status: 'success'
2290
2291
  error: null
2291
2292
  action_type: 'CREATE_ACCESS_CODE'
2292
- result?: any
2293
+ result: {
2294
+ access_code?: any
2295
+ }
2293
2296
  }
2294
2297
  | {
2295
2298
  /** The ID of the action attempt. */
@@ -2316,7 +2319,7 @@ export interface Routes {
2316
2319
  status: 'success'
2317
2320
  error: null
2318
2321
  action_type: 'DELETE_ACCESS_CODE'
2319
- result?: any
2322
+ result: {}
2320
2323
  }
2321
2324
  | {
2322
2325
  /** The ID of the action attempt. */
@@ -2343,7 +2346,9 @@ export interface Routes {
2343
2346
  status: 'success'
2344
2347
  error: null
2345
2348
  action_type: 'UPDATE_ACCESS_CODE'
2346
- result?: any
2349
+ result: {
2350
+ access_code?: any
2351
+ }
2347
2352
  }
2348
2353
  | {
2349
2354
  /** The ID of the action attempt. */
@@ -2370,7 +2375,9 @@ export interface Routes {
2370
2375
  status: 'success'
2371
2376
  error: null
2372
2377
  action_type: 'CREATE_NOISE_THRESHOLD'
2373
- result?: any
2378
+ result: {
2379
+ noise_threshold?: any
2380
+ }
2374
2381
  }
2375
2382
  | {
2376
2383
  /** The ID of the action attempt. */
@@ -2397,7 +2404,7 @@ export interface Routes {
2397
2404
  status: 'success'
2398
2405
  error: null
2399
2406
  action_type: 'DELETE_NOISE_THRESHOLD'
2400
- result?: any
2407
+ result: {}
2401
2408
  }
2402
2409
  | {
2403
2410
  /** The ID of the action attempt. */
@@ -2424,7 +2431,9 @@ export interface Routes {
2424
2431
  status: 'success'
2425
2432
  error: null
2426
2433
  action_type: 'UPDATE_NOISE_THRESHOLD'
2427
- result?: any
2434
+ result: {
2435
+ noise_threshold?: any
2436
+ }
2428
2437
  }
2429
2438
  | {
2430
2439
  /** The ID of the action attempt. */
@@ -2834,12 +2843,7 @@ export interface Routes {
2834
2843
  status: 'success'
2835
2844
  error: null
2836
2845
  action_type: 'ENCODE_CARD'
2837
- result: {
2838
- /** Matching acs_credential currently encoded on this card. */
2839
- acs_credential_id: string | null
2840
- /** A number or string that physically identifies this card. */
2841
- card_number: string | null
2842
- }
2846
+ result: {}
2843
2847
  }
2844
2848
  | {
2845
2849
  /** The ID of the action attempt. */
@@ -3055,7 +3059,7 @@ export interface Routes {
3055
3059
  status: 'success'
3056
3060
  error: null
3057
3061
  action_type: 'SYNC_ACCESS_CODES'
3058
- result?: any
3062
+ result: {}
3059
3063
  }
3060
3064
  | {
3061
3065
  /** The ID of the action attempt. */
@@ -3082,7 +3086,9 @@ export interface Routes {
3082
3086
  status: 'success'
3083
3087
  error: null
3084
3088
  action_type: 'CREATE_ACCESS_CODE'
3085
- result?: any
3089
+ result: {
3090
+ access_code?: any
3091
+ }
3086
3092
  }
3087
3093
  | {
3088
3094
  /** The ID of the action attempt. */
@@ -3109,7 +3115,7 @@ export interface Routes {
3109
3115
  status: 'success'
3110
3116
  error: null
3111
3117
  action_type: 'DELETE_ACCESS_CODE'
3112
- result?: any
3118
+ result: {}
3113
3119
  }
3114
3120
  | {
3115
3121
  /** The ID of the action attempt. */
@@ -3136,7 +3142,9 @@ export interface Routes {
3136
3142
  status: 'success'
3137
3143
  error: null
3138
3144
  action_type: 'UPDATE_ACCESS_CODE'
3139
- result?: any
3145
+ result: {
3146
+ access_code?: any
3147
+ }
3140
3148
  }
3141
3149
  | {
3142
3150
  /** The ID of the action attempt. */
@@ -3163,7 +3171,9 @@ export interface Routes {
3163
3171
  status: 'success'
3164
3172
  error: null
3165
3173
  action_type: 'CREATE_NOISE_THRESHOLD'
3166
- result?: any
3174
+ result: {
3175
+ noise_threshold?: any
3176
+ }
3167
3177
  }
3168
3178
  | {
3169
3179
  /** The ID of the action attempt. */
@@ -3190,7 +3200,7 @@ export interface Routes {
3190
3200
  status: 'success'
3191
3201
  error: null
3192
3202
  action_type: 'DELETE_NOISE_THRESHOLD'
3193
- result?: any
3203
+ result: {}
3194
3204
  }
3195
3205
  | {
3196
3206
  /** The ID of the action attempt. */
@@ -3217,7 +3227,9 @@ export interface Routes {
3217
3227
  status: 'success'
3218
3228
  error: null
3219
3229
  action_type: 'UPDATE_NOISE_THRESHOLD'
3220
- result?: any
3230
+ result: {
3231
+ noise_threshold?: any
3232
+ }
3221
3233
  }
3222
3234
  | {
3223
3235
  /** The ID of the action attempt. */
@@ -4535,12 +4547,7 @@ export interface Routes {
4535
4547
  status: 'success'
4536
4548
  error: null
4537
4549
  action_type: 'ENCODE_CARD'
4538
- result: {
4539
- /** Matching acs_credential currently encoded on this card. */
4540
- acs_credential_id: string | null
4541
- /** A number or string that physically identifies this card. */
4542
- card_number: string | null
4543
- }
4550
+ result: {}
4544
4551
  }
4545
4552
  | {
4546
4553
  /** The ID of the action attempt. */
@@ -4756,7 +4763,7 @@ export interface Routes {
4756
4763
  status: 'success'
4757
4764
  error: null
4758
4765
  action_type: 'SYNC_ACCESS_CODES'
4759
- result?: any
4766
+ result: {}
4760
4767
  }
4761
4768
  | {
4762
4769
  /** The ID of the action attempt. */
@@ -4783,7 +4790,9 @@ export interface Routes {
4783
4790
  status: 'success'
4784
4791
  error: null
4785
4792
  action_type: 'CREATE_ACCESS_CODE'
4786
- result?: any
4793
+ result: {
4794
+ access_code?: any
4795
+ }
4787
4796
  }
4788
4797
  | {
4789
4798
  /** The ID of the action attempt. */
@@ -4810,7 +4819,7 @@ export interface Routes {
4810
4819
  status: 'success'
4811
4820
  error: null
4812
4821
  action_type: 'DELETE_ACCESS_CODE'
4813
- result?: any
4822
+ result: {}
4814
4823
  }
4815
4824
  | {
4816
4825
  /** The ID of the action attempt. */
@@ -4837,7 +4846,9 @@ export interface Routes {
4837
4846
  status: 'success'
4838
4847
  error: null
4839
4848
  action_type: 'UPDATE_ACCESS_CODE'
4840
- result?: any
4849
+ result: {
4850
+ access_code?: any
4851
+ }
4841
4852
  }
4842
4853
  | {
4843
4854
  /** The ID of the action attempt. */
@@ -4864,7 +4875,9 @@ export interface Routes {
4864
4875
  status: 'success'
4865
4876
  error: null
4866
4877
  action_type: 'CREATE_NOISE_THRESHOLD'
4867
- result?: any
4878
+ result: {
4879
+ noise_threshold?: any
4880
+ }
4868
4881
  }
4869
4882
  | {
4870
4883
  /** The ID of the action attempt. */
@@ -4891,7 +4904,7 @@ export interface Routes {
4891
4904
  status: 'success'
4892
4905
  error: null
4893
4906
  action_type: 'DELETE_NOISE_THRESHOLD'
4894
- result?: any
4907
+ result: {}
4895
4908
  }
4896
4909
  | {
4897
4910
  /** The ID of the action attempt. */
@@ -4918,7 +4931,9 @@ export interface Routes {
4918
4931
  status: 'success'
4919
4932
  error: null
4920
4933
  action_type: 'UPDATE_NOISE_THRESHOLD'
4921
- result?: any
4934
+ result: {
4935
+ noise_threshold?: any
4936
+ }
4922
4937
  }
4923
4938
  | {
4924
4939
  /** The ID of the action attempt. */
@@ -5824,12 +5839,7 @@ export interface Routes {
5824
5839
  status: 'success'
5825
5840
  error: null
5826
5841
  action_type: 'ENCODE_CARD'
5827
- result: {
5828
- /** Matching acs_credential currently encoded on this card. */
5829
- acs_credential_id: string | null
5830
- /** A number or string that physically identifies this card. */
5831
- card_number: string | null
5832
- }
5842
+ result: {}
5833
5843
  }
5834
5844
  | {
5835
5845
  /** The ID of the action attempt. */
@@ -6045,7 +6055,7 @@ export interface Routes {
6045
6055
  status: 'success'
6046
6056
  error: null
6047
6057
  action_type: 'SYNC_ACCESS_CODES'
6048
- result?: any
6058
+ result: {}
6049
6059
  }
6050
6060
  | {
6051
6061
  /** The ID of the action attempt. */
@@ -6072,7 +6082,9 @@ export interface Routes {
6072
6082
  status: 'success'
6073
6083
  error: null
6074
6084
  action_type: 'CREATE_ACCESS_CODE'
6075
- result?: any
6085
+ result: {
6086
+ access_code?: any
6087
+ }
6076
6088
  }
6077
6089
  | {
6078
6090
  /** The ID of the action attempt. */
@@ -6099,7 +6111,7 @@ export interface Routes {
6099
6111
  status: 'success'
6100
6112
  error: null
6101
6113
  action_type: 'DELETE_ACCESS_CODE'
6102
- result?: any
6114
+ result: {}
6103
6115
  }
6104
6116
  | {
6105
6117
  /** The ID of the action attempt. */
@@ -6126,7 +6138,9 @@ export interface Routes {
6126
6138
  status: 'success'
6127
6139
  error: null
6128
6140
  action_type: 'UPDATE_ACCESS_CODE'
6129
- result?: any
6141
+ result: {
6142
+ access_code?: any
6143
+ }
6130
6144
  }
6131
6145
  | {
6132
6146
  /** The ID of the action attempt. */
@@ -6153,7 +6167,9 @@ export interface Routes {
6153
6167
  status: 'success'
6154
6168
  error: null
6155
6169
  action_type: 'CREATE_NOISE_THRESHOLD'
6156
- result?: any
6170
+ result: {
6171
+ noise_threshold?: any
6172
+ }
6157
6173
  }
6158
6174
  | {
6159
6175
  /** The ID of the action attempt. */
@@ -6180,7 +6196,7 @@ export interface Routes {
6180
6196
  status: 'success'
6181
6197
  error: null
6182
6198
  action_type: 'DELETE_NOISE_THRESHOLD'
6183
- result?: any
6199
+ result: {}
6184
6200
  }
6185
6201
  | {
6186
6202
  /** The ID of the action attempt. */
@@ -6207,7 +6223,9 @@ export interface Routes {
6207
6223
  status: 'success'
6208
6224
  error: null
6209
6225
  action_type: 'UPDATE_NOISE_THRESHOLD'
6210
- result?: any
6226
+ result: {
6227
+ noise_threshold?: any
6228
+ }
6211
6229
  }
6212
6230
  | {
6213
6231
  /** The ID of the action attempt. */
@@ -7867,12 +7885,7 @@ export interface Routes {
7867
7885
  status: 'success'
7868
7886
  error: null
7869
7887
  action_type: 'ENCODE_CARD'
7870
- result: {
7871
- /** Matching acs_credential currently encoded on this card. */
7872
- acs_credential_id: string | null
7873
- /** A number or string that physically identifies this card. */
7874
- card_number: string | null
7875
- }
7888
+ result: {}
7876
7889
  }
7877
7890
  | {
7878
7891
  /** The ID of the action attempt. */
@@ -8088,7 +8101,7 @@ export interface Routes {
8088
8101
  status: 'success'
8089
8102
  error: null
8090
8103
  action_type: 'SYNC_ACCESS_CODES'
8091
- result?: any
8104
+ result: {}
8092
8105
  }
8093
8106
  | {
8094
8107
  /** The ID of the action attempt. */
@@ -8115,7 +8128,9 @@ export interface Routes {
8115
8128
  status: 'success'
8116
8129
  error: null
8117
8130
  action_type: 'CREATE_ACCESS_CODE'
8118
- result?: any
8131
+ result: {
8132
+ access_code?: any
8133
+ }
8119
8134
  }
8120
8135
  | {
8121
8136
  /** The ID of the action attempt. */
@@ -8142,7 +8157,7 @@ export interface Routes {
8142
8157
  status: 'success'
8143
8158
  error: null
8144
8159
  action_type: 'DELETE_ACCESS_CODE'
8145
- result?: any
8160
+ result: {}
8146
8161
  }
8147
8162
  | {
8148
8163
  /** The ID of the action attempt. */
@@ -8169,7 +8184,9 @@ export interface Routes {
8169
8184
  status: 'success'
8170
8185
  error: null
8171
8186
  action_type: 'UPDATE_ACCESS_CODE'
8172
- result?: any
8187
+ result: {
8188
+ access_code?: any
8189
+ }
8173
8190
  }
8174
8191
  | {
8175
8192
  /** The ID of the action attempt. */
@@ -8196,7 +8213,9 @@ export interface Routes {
8196
8213
  status: 'success'
8197
8214
  error: null
8198
8215
  action_type: 'CREATE_NOISE_THRESHOLD'
8199
- result?: any
8216
+ result: {
8217
+ noise_threshold?: any
8218
+ }
8200
8219
  }
8201
8220
  | {
8202
8221
  /** The ID of the action attempt. */
@@ -8223,7 +8242,7 @@ export interface Routes {
8223
8242
  status: 'success'
8224
8243
  error: null
8225
8244
  action_type: 'DELETE_NOISE_THRESHOLD'
8226
- result?: any
8245
+ result: {}
8227
8246
  }
8228
8247
  | {
8229
8248
  /** The ID of the action attempt. */
@@ -8250,7 +8269,9 @@ export interface Routes {
8250
8269
  status: 'success'
8251
8270
  error: null
8252
8271
  action_type: 'UPDATE_NOISE_THRESHOLD'
8253
- result?: any
8272
+ result: {
8273
+ noise_threshold?: any
8274
+ }
8254
8275
  }
8255
8276
  | {
8256
8277
  /** The ID of the action attempt. */
@@ -8514,12 +8535,7 @@ export interface Routes {
8514
8535
  status: 'success'
8515
8536
  error: null
8516
8537
  action_type: 'ENCODE_CARD'
8517
- result: {
8518
- /** Matching acs_credential currently encoded on this card. */
8519
- acs_credential_id: string | null
8520
- /** A number or string that physically identifies this card. */
8521
- card_number: string | null
8522
- }
8538
+ result: {}
8523
8539
  }
8524
8540
  | {
8525
8541
  /** The ID of the action attempt. */
@@ -8735,7 +8751,7 @@ export interface Routes {
8735
8751
  status: 'success'
8736
8752
  error: null
8737
8753
  action_type: 'SYNC_ACCESS_CODES'
8738
- result?: any
8754
+ result: {}
8739
8755
  }
8740
8756
  | {
8741
8757
  /** The ID of the action attempt. */
@@ -8762,7 +8778,9 @@ export interface Routes {
8762
8778
  status: 'success'
8763
8779
  error: null
8764
8780
  action_type: 'CREATE_ACCESS_CODE'
8765
- result?: any
8781
+ result: {
8782
+ access_code?: any
8783
+ }
8766
8784
  }
8767
8785
  | {
8768
8786
  /** The ID of the action attempt. */
@@ -8789,7 +8807,7 @@ export interface Routes {
8789
8807
  status: 'success'
8790
8808
  error: null
8791
8809
  action_type: 'DELETE_ACCESS_CODE'
8792
- result?: any
8810
+ result: {}
8793
8811
  }
8794
8812
  | {
8795
8813
  /** The ID of the action attempt. */
@@ -8816,7 +8834,9 @@ export interface Routes {
8816
8834
  status: 'success'
8817
8835
  error: null
8818
8836
  action_type: 'UPDATE_ACCESS_CODE'
8819
- result?: any
8837
+ result: {
8838
+ access_code?: any
8839
+ }
8820
8840
  }
8821
8841
  | {
8822
8842
  /** The ID of the action attempt. */
@@ -8843,7 +8863,9 @@ export interface Routes {
8843
8863
  status: 'success'
8844
8864
  error: null
8845
8865
  action_type: 'CREATE_NOISE_THRESHOLD'
8846
- result?: any
8866
+ result: {
8867
+ noise_threshold?: any
8868
+ }
8847
8869
  }
8848
8870
  | {
8849
8871
  /** The ID of the action attempt. */
@@ -8870,7 +8892,7 @@ export interface Routes {
8870
8892
  status: 'success'
8871
8893
  error: null
8872
8894
  action_type: 'DELETE_NOISE_THRESHOLD'
8873
- result?: any
8895
+ result: {}
8874
8896
  }
8875
8897
  | {
8876
8898
  /** The ID of the action attempt. */
@@ -8897,7 +8919,9 @@ export interface Routes {
8897
8919
  status: 'success'
8898
8920
  error: null
8899
8921
  action_type: 'UPDATE_NOISE_THRESHOLD'
8900
- result?: any
8922
+ result: {
8923
+ noise_threshold?: any
8924
+ }
8901
8925
  }
8902
8926
  | {
8903
8927
  /** The ID of the action attempt. */
@@ -14547,12 +14571,7 @@ export interface Routes {
14547
14571
  status: 'success'
14548
14572
  error: null
14549
14573
  action_type: 'ENCODE_CARD'
14550
- result: {
14551
- /** Matching acs_credential currently encoded on this card. */
14552
- acs_credential_id: string | null
14553
- /** A number or string that physically identifies this card. */
14554
- card_number: string | null
14555
- }
14574
+ result: {}
14556
14575
  }
14557
14576
  | {
14558
14577
  /** The ID of the action attempt. */
@@ -14768,7 +14787,7 @@ export interface Routes {
14768
14787
  status: 'success'
14769
14788
  error: null
14770
14789
  action_type: 'SYNC_ACCESS_CODES'
14771
- result?: any
14790
+ result: {}
14772
14791
  }
14773
14792
  | {
14774
14793
  /** The ID of the action attempt. */
@@ -14795,7 +14814,9 @@ export interface Routes {
14795
14814
  status: 'success'
14796
14815
  error: null
14797
14816
  action_type: 'CREATE_ACCESS_CODE'
14798
- result?: any
14817
+ result: {
14818
+ access_code?: any
14819
+ }
14799
14820
  }
14800
14821
  | {
14801
14822
  /** The ID of the action attempt. */
@@ -14822,7 +14843,7 @@ export interface Routes {
14822
14843
  status: 'success'
14823
14844
  error: null
14824
14845
  action_type: 'DELETE_ACCESS_CODE'
14825
- result?: any
14846
+ result: {}
14826
14847
  }
14827
14848
  | {
14828
14849
  /** The ID of the action attempt. */
@@ -14849,7 +14870,9 @@ export interface Routes {
14849
14870
  status: 'success'
14850
14871
  error: null
14851
14872
  action_type: 'UPDATE_ACCESS_CODE'
14852
- result?: any
14873
+ result: {
14874
+ access_code?: any
14875
+ }
14853
14876
  }
14854
14877
  | {
14855
14878
  /** The ID of the action attempt. */
@@ -14876,7 +14899,9 @@ export interface Routes {
14876
14899
  status: 'success'
14877
14900
  error: null
14878
14901
  action_type: 'CREATE_NOISE_THRESHOLD'
14879
- result?: any
14902
+ result: {
14903
+ noise_threshold?: any
14904
+ }
14880
14905
  }
14881
14906
  | {
14882
14907
  /** The ID of the action attempt. */
@@ -14903,7 +14928,7 @@ export interface Routes {
14903
14928
  status: 'success'
14904
14929
  error: null
14905
14930
  action_type: 'DELETE_NOISE_THRESHOLD'
14906
- result?: any
14931
+ result: {}
14907
14932
  }
14908
14933
  | {
14909
14934
  /** The ID of the action attempt. */
@@ -14930,7 +14955,9 @@ export interface Routes {
14930
14955
  status: 'success'
14931
14956
  error: null
14932
14957
  action_type: 'UPDATE_NOISE_THRESHOLD'
14933
- result?: any
14958
+ result: {
14959
+ noise_threshold?: any
14960
+ }
14934
14961
  }
14935
14962
  | {
14936
14963
  /** The ID of the action attempt. */
@@ -15195,12 +15222,7 @@ export interface Routes {
15195
15222
  status: 'success'
15196
15223
  error: null
15197
15224
  action_type: 'ENCODE_CARD'
15198
- result: {
15199
- /** Matching acs_credential currently encoded on this card. */
15200
- acs_credential_id: string | null
15201
- /** A number or string that physically identifies this card. */
15202
- card_number: string | null
15203
- }
15225
+ result: {}
15204
15226
  }
15205
15227
  | {
15206
15228
  /** The ID of the action attempt. */
@@ -15416,7 +15438,7 @@ export interface Routes {
15416
15438
  status: 'success'
15417
15439
  error: null
15418
15440
  action_type: 'SYNC_ACCESS_CODES'
15419
- result?: any
15441
+ result: {}
15420
15442
  }
15421
15443
  | {
15422
15444
  /** The ID of the action attempt. */
@@ -15443,7 +15465,9 @@ export interface Routes {
15443
15465
  status: 'success'
15444
15466
  error: null
15445
15467
  action_type: 'CREATE_ACCESS_CODE'
15446
- result?: any
15468
+ result: {
15469
+ access_code?: any
15470
+ }
15447
15471
  }
15448
15472
  | {
15449
15473
  /** The ID of the action attempt. */
@@ -15470,7 +15494,7 @@ export interface Routes {
15470
15494
  status: 'success'
15471
15495
  error: null
15472
15496
  action_type: 'DELETE_ACCESS_CODE'
15473
- result?: any
15497
+ result: {}
15474
15498
  }
15475
15499
  | {
15476
15500
  /** The ID of the action attempt. */
@@ -15497,7 +15521,9 @@ export interface Routes {
15497
15521
  status: 'success'
15498
15522
  error: null
15499
15523
  action_type: 'UPDATE_ACCESS_CODE'
15500
- result?: any
15524
+ result: {
15525
+ access_code?: any
15526
+ }
15501
15527
  }
15502
15528
  | {
15503
15529
  /** The ID of the action attempt. */
@@ -15524,7 +15550,9 @@ export interface Routes {
15524
15550
  status: 'success'
15525
15551
  error: null
15526
15552
  action_type: 'CREATE_NOISE_THRESHOLD'
15527
- result?: any
15553
+ result: {
15554
+ noise_threshold?: any
15555
+ }
15528
15556
  }
15529
15557
  | {
15530
15558
  /** The ID of the action attempt. */
@@ -15551,7 +15579,7 @@ export interface Routes {
15551
15579
  status: 'success'
15552
15580
  error: null
15553
15581
  action_type: 'DELETE_NOISE_THRESHOLD'
15554
- result?: any
15582
+ result: {}
15555
15583
  }
15556
15584
  | {
15557
15585
  /** The ID of the action attempt. */
@@ -15578,7 +15606,9 @@ export interface Routes {
15578
15606
  status: 'success'
15579
15607
  error: null
15580
15608
  action_type: 'UPDATE_NOISE_THRESHOLD'
15581
- result?: any
15609
+ result: {
15610
+ noise_threshold?: any
15611
+ }
15582
15612
  }
15583
15613
  | {
15584
15614
  /** The ID of the action attempt. */
@@ -17279,12 +17309,7 @@ export interface Routes {
17279
17309
  status: 'success'
17280
17310
  error: null
17281
17311
  action_type: 'ENCODE_CARD'
17282
- result: {
17283
- /** Matching acs_credential currently encoded on this card. */
17284
- acs_credential_id: string | null
17285
- /** A number or string that physically identifies this card. */
17286
- card_number: string | null
17287
- }
17312
+ result: {}
17288
17313
  }
17289
17314
  | {
17290
17315
  /** The ID of the action attempt. */
@@ -17500,7 +17525,7 @@ export interface Routes {
17500
17525
  status: 'success'
17501
17526
  error: null
17502
17527
  action_type: 'SYNC_ACCESS_CODES'
17503
- result?: any
17528
+ result: {}
17504
17529
  }
17505
17530
  | {
17506
17531
  /** The ID of the action attempt. */
@@ -17527,7 +17552,9 @@ export interface Routes {
17527
17552
  status: 'success'
17528
17553
  error: null
17529
17554
  action_type: 'CREATE_ACCESS_CODE'
17530
- result?: any
17555
+ result: {
17556
+ access_code?: any
17557
+ }
17531
17558
  }
17532
17559
  | {
17533
17560
  /** The ID of the action attempt. */
@@ -17554,7 +17581,7 @@ export interface Routes {
17554
17581
  status: 'success'
17555
17582
  error: null
17556
17583
  action_type: 'DELETE_ACCESS_CODE'
17557
- result?: any
17584
+ result: {}
17558
17585
  }
17559
17586
  | {
17560
17587
  /** The ID of the action attempt. */
@@ -17581,7 +17608,9 @@ export interface Routes {
17581
17608
  status: 'success'
17582
17609
  error: null
17583
17610
  action_type: 'UPDATE_ACCESS_CODE'
17584
- result?: any
17611
+ result: {
17612
+ access_code?: any
17613
+ }
17585
17614
  }
17586
17615
  | {
17587
17616
  /** The ID of the action attempt. */
@@ -17608,7 +17637,9 @@ export interface Routes {
17608
17637
  status: 'success'
17609
17638
  error: null
17610
17639
  action_type: 'CREATE_NOISE_THRESHOLD'
17611
- result?: any
17640
+ result: {
17641
+ noise_threshold?: any
17642
+ }
17612
17643
  }
17613
17644
  | {
17614
17645
  /** The ID of the action attempt. */
@@ -17635,7 +17666,7 @@ export interface Routes {
17635
17666
  status: 'success'
17636
17667
  error: null
17637
17668
  action_type: 'DELETE_NOISE_THRESHOLD'
17638
- result?: any
17669
+ result: {}
17639
17670
  }
17640
17671
  | {
17641
17672
  /** The ID of the action attempt. */
@@ -17662,7 +17693,9 @@ export interface Routes {
17662
17693
  status: 'success'
17663
17694
  error: null
17664
17695
  action_type: 'UPDATE_NOISE_THRESHOLD'
17665
- result?: any
17696
+ result: {
17697
+ noise_threshold?: any
17698
+ }
17666
17699
  }
17667
17700
  | {
17668
17701
  /** The ID of the action attempt. */
@@ -17937,12 +17970,7 @@ export interface Routes {
17937
17970
  status: 'success'
17938
17971
  error: null
17939
17972
  action_type: 'ENCODE_CARD'
17940
- result: {
17941
- /** Matching acs_credential currently encoded on this card. */
17942
- acs_credential_id: string | null
17943
- /** A number or string that physically identifies this card. */
17944
- card_number: string | null
17945
- }
17973
+ result: {}
17946
17974
  }
17947
17975
  | {
17948
17976
  /** The ID of the action attempt. */
@@ -18158,7 +18186,7 @@ export interface Routes {
18158
18186
  status: 'success'
18159
18187
  error: null
18160
18188
  action_type: 'SYNC_ACCESS_CODES'
18161
- result?: any
18189
+ result: {}
18162
18190
  }
18163
18191
  | {
18164
18192
  /** The ID of the action attempt. */
@@ -18185,7 +18213,9 @@ export interface Routes {
18185
18213
  status: 'success'
18186
18214
  error: null
18187
18215
  action_type: 'CREATE_ACCESS_CODE'
18188
- result?: any
18216
+ result: {
18217
+ access_code?: any
18218
+ }
18189
18219
  }
18190
18220
  | {
18191
18221
  /** The ID of the action attempt. */
@@ -18212,7 +18242,7 @@ export interface Routes {
18212
18242
  status: 'success'
18213
18243
  error: null
18214
18244
  action_type: 'DELETE_ACCESS_CODE'
18215
- result?: any
18245
+ result: {}
18216
18246
  }
18217
18247
  | {
18218
18248
  /** The ID of the action attempt. */
@@ -18239,7 +18269,9 @@ export interface Routes {
18239
18269
  status: 'success'
18240
18270
  error: null
18241
18271
  action_type: 'UPDATE_ACCESS_CODE'
18242
- result?: any
18272
+ result: {
18273
+ access_code?: any
18274
+ }
18243
18275
  }
18244
18276
  | {
18245
18277
  /** The ID of the action attempt. */
@@ -18266,7 +18298,9 @@ export interface Routes {
18266
18298
  status: 'success'
18267
18299
  error: null
18268
18300
  action_type: 'CREATE_NOISE_THRESHOLD'
18269
- result?: any
18301
+ result: {
18302
+ noise_threshold?: any
18303
+ }
18270
18304
  }
18271
18305
  | {
18272
18306
  /** The ID of the action attempt. */
@@ -18293,7 +18327,7 @@ export interface Routes {
18293
18327
  status: 'success'
18294
18328
  error: null
18295
18329
  action_type: 'DELETE_NOISE_THRESHOLD'
18296
- result?: any
18330
+ result: {}
18297
18331
  }
18298
18332
  | {
18299
18333
  /** The ID of the action attempt. */
@@ -18320,7 +18354,9 @@ export interface Routes {
18320
18354
  status: 'success'
18321
18355
  error: null
18322
18356
  action_type: 'UPDATE_NOISE_THRESHOLD'
18323
- result?: any
18357
+ result: {
18358
+ noise_threshold?: any
18359
+ }
18324
18360
  }
18325
18361
  | {
18326
18362
  /** The ID of the action attempt. */
@@ -18634,12 +18670,7 @@ export interface Routes {
18634
18670
  status: 'success'
18635
18671
  error: null
18636
18672
  action_type: 'ENCODE_CARD'
18637
- result: {
18638
- /** Matching acs_credential currently encoded on this card. */
18639
- acs_credential_id: string | null
18640
- /** A number or string that physically identifies this card. */
18641
- card_number: string | null
18642
- }
18673
+ result: {}
18643
18674
  }
18644
18675
  | {
18645
18676
  /** The ID of the action attempt. */
@@ -18855,7 +18886,7 @@ export interface Routes {
18855
18886
  status: 'success'
18856
18887
  error: null
18857
18888
  action_type: 'SYNC_ACCESS_CODES'
18858
- result?: any
18889
+ result: {}
18859
18890
  }
18860
18891
  | {
18861
18892
  /** The ID of the action attempt. */
@@ -18882,7 +18913,9 @@ export interface Routes {
18882
18913
  status: 'success'
18883
18914
  error: null
18884
18915
  action_type: 'CREATE_ACCESS_CODE'
18885
- result?: any
18916
+ result: {
18917
+ access_code?: any
18918
+ }
18886
18919
  }
18887
18920
  | {
18888
18921
  /** The ID of the action attempt. */
@@ -18909,7 +18942,7 @@ export interface Routes {
18909
18942
  status: 'success'
18910
18943
  error: null
18911
18944
  action_type: 'DELETE_ACCESS_CODE'
18912
- result?: any
18945
+ result: {}
18913
18946
  }
18914
18947
  | {
18915
18948
  /** The ID of the action attempt. */
@@ -18936,7 +18969,9 @@ export interface Routes {
18936
18969
  status: 'success'
18937
18970
  error: null
18938
18971
  action_type: 'UPDATE_ACCESS_CODE'
18939
- result?: any
18972
+ result: {
18973
+ access_code?: any
18974
+ }
18940
18975
  }
18941
18976
  | {
18942
18977
  /** The ID of the action attempt. */
@@ -18963,7 +18998,9 @@ export interface Routes {
18963
18998
  status: 'success'
18964
18999
  error: null
18965
19000
  action_type: 'CREATE_NOISE_THRESHOLD'
18966
- result?: any
19001
+ result: {
19002
+ noise_threshold?: any
19003
+ }
18967
19004
  }
18968
19005
  | {
18969
19006
  /** The ID of the action attempt. */
@@ -18990,7 +19027,7 @@ export interface Routes {
18990
19027
  status: 'success'
18991
19028
  error: null
18992
19029
  action_type: 'DELETE_NOISE_THRESHOLD'
18993
- result?: any
19030
+ result: {}
18994
19031
  }
18995
19032
  | {
18996
19033
  /** The ID of the action attempt. */
@@ -19017,7 +19054,9 @@ export interface Routes {
19017
19054
  status: 'success'
19018
19055
  error: null
19019
19056
  action_type: 'UPDATE_NOISE_THRESHOLD'
19020
- result?: any
19057
+ result: {
19058
+ noise_threshold?: any
19059
+ }
19021
19060
  }
19022
19061
  | {
19023
19062
  /** The ID of the action attempt. */
@@ -19488,12 +19527,7 @@ export interface Routes {
19488
19527
  status: 'success'
19489
19528
  error: null
19490
19529
  action_type: 'ENCODE_CARD'
19491
- result: {
19492
- /** Matching acs_credential currently encoded on this card. */
19493
- acs_credential_id: string | null
19494
- /** A number or string that physically identifies this card. */
19495
- card_number: string | null
19496
- }
19530
+ result: {}
19497
19531
  }
19498
19532
  | {
19499
19533
  /** The ID of the action attempt. */
@@ -19709,7 +19743,7 @@ export interface Routes {
19709
19743
  status: 'success'
19710
19744
  error: null
19711
19745
  action_type: 'SYNC_ACCESS_CODES'
19712
- result?: any
19746
+ result: {}
19713
19747
  }
19714
19748
  | {
19715
19749
  /** The ID of the action attempt. */
@@ -19736,7 +19770,9 @@ export interface Routes {
19736
19770
  status: 'success'
19737
19771
  error: null
19738
19772
  action_type: 'CREATE_ACCESS_CODE'
19739
- result?: any
19773
+ result: {
19774
+ access_code?: any
19775
+ }
19740
19776
  }
19741
19777
  | {
19742
19778
  /** The ID of the action attempt. */
@@ -19763,7 +19799,7 @@ export interface Routes {
19763
19799
  status: 'success'
19764
19800
  error: null
19765
19801
  action_type: 'DELETE_ACCESS_CODE'
19766
- result?: any
19802
+ result: {}
19767
19803
  }
19768
19804
  | {
19769
19805
  /** The ID of the action attempt. */
@@ -19790,7 +19826,9 @@ export interface Routes {
19790
19826
  status: 'success'
19791
19827
  error: null
19792
19828
  action_type: 'UPDATE_ACCESS_CODE'
19793
- result?: any
19829
+ result: {
19830
+ access_code?: any
19831
+ }
19794
19832
  }
19795
19833
  | {
19796
19834
  /** The ID of the action attempt. */
@@ -19817,7 +19855,9 @@ export interface Routes {
19817
19855
  status: 'success'
19818
19856
  error: null
19819
19857
  action_type: 'CREATE_NOISE_THRESHOLD'
19820
- result?: any
19858
+ result: {
19859
+ noise_threshold?: any
19860
+ }
19821
19861
  }
19822
19862
  | {
19823
19863
  /** The ID of the action attempt. */
@@ -19844,7 +19884,7 @@ export interface Routes {
19844
19884
  status: 'success'
19845
19885
  error: null
19846
19886
  action_type: 'DELETE_NOISE_THRESHOLD'
19847
- result?: any
19887
+ result: {}
19848
19888
  }
19849
19889
  | {
19850
19890
  /** The ID of the action attempt. */
@@ -19871,7 +19911,9 @@ export interface Routes {
19871
19911
  status: 'success'
19872
19912
  error: null
19873
19913
  action_type: 'UPDATE_NOISE_THRESHOLD'
19874
- result?: any
19914
+ result: {
19915
+ noise_threshold?: any
19916
+ }
19875
19917
  }
19876
19918
  | {
19877
19919
  /** The ID of the action attempt. */
@@ -20138,12 +20180,7 @@ export interface Routes {
20138
20180
  status: 'success'
20139
20181
  error: null
20140
20182
  action_type: 'ENCODE_CARD'
20141
- result: {
20142
- /** Matching acs_credential currently encoded on this card. */
20143
- acs_credential_id: string | null
20144
- /** A number or string that physically identifies this card. */
20145
- card_number: string | null
20146
- }
20183
+ result: {}
20147
20184
  }
20148
20185
  | {
20149
20186
  /** The ID of the action attempt. */
@@ -20359,7 +20396,7 @@ export interface Routes {
20359
20396
  status: 'success'
20360
20397
  error: null
20361
20398
  action_type: 'SYNC_ACCESS_CODES'
20362
- result?: any
20399
+ result: {}
20363
20400
  }
20364
20401
  | {
20365
20402
  /** The ID of the action attempt. */
@@ -20386,7 +20423,9 @@ export interface Routes {
20386
20423
  status: 'success'
20387
20424
  error: null
20388
20425
  action_type: 'CREATE_ACCESS_CODE'
20389
- result?: any
20426
+ result: {
20427
+ access_code?: any
20428
+ }
20390
20429
  }
20391
20430
  | {
20392
20431
  /** The ID of the action attempt. */
@@ -20413,7 +20452,7 @@ export interface Routes {
20413
20452
  status: 'success'
20414
20453
  error: null
20415
20454
  action_type: 'DELETE_ACCESS_CODE'
20416
- result?: any
20455
+ result: {}
20417
20456
  }
20418
20457
  | {
20419
20458
  /** The ID of the action attempt. */
@@ -20440,7 +20479,9 @@ export interface Routes {
20440
20479
  status: 'success'
20441
20480
  error: null
20442
20481
  action_type: 'UPDATE_ACCESS_CODE'
20443
- result?: any
20482
+ result: {
20483
+ access_code?: any
20484
+ }
20444
20485
  }
20445
20486
  | {
20446
20487
  /** The ID of the action attempt. */
@@ -20467,7 +20508,9 @@ export interface Routes {
20467
20508
  status: 'success'
20468
20509
  error: null
20469
20510
  action_type: 'CREATE_NOISE_THRESHOLD'
20470
- result?: any
20511
+ result: {
20512
+ noise_threshold?: any
20513
+ }
20471
20514
  }
20472
20515
  | {
20473
20516
  /** The ID of the action attempt. */
@@ -20494,7 +20537,7 @@ export interface Routes {
20494
20537
  status: 'success'
20495
20538
  error: null
20496
20539
  action_type: 'DELETE_NOISE_THRESHOLD'
20497
- result?: any
20540
+ result: {}
20498
20541
  }
20499
20542
  | {
20500
20543
  /** The ID of the action attempt. */
@@ -20521,7 +20564,9 @@ export interface Routes {
20521
20564
  status: 'success'
20522
20565
  error: null
20523
20566
  action_type: 'UPDATE_NOISE_THRESHOLD'
20524
- result?: any
20567
+ result: {
20568
+ noise_threshold?: any
20569
+ }
20525
20570
  }
20526
20571
  | {
20527
20572
  /** The ID of the action attempt. */
@@ -21446,12 +21491,7 @@ export interface Routes {
21446
21491
  status: 'success'
21447
21492
  error: null
21448
21493
  action_type: 'ENCODE_CARD'
21449
- result: {
21450
- /** Matching acs_credential currently encoded on this card. */
21451
- acs_credential_id: string | null
21452
- /** A number or string that physically identifies this card. */
21453
- card_number: string | null
21454
- }
21494
+ result: {}
21455
21495
  }
21456
21496
  | {
21457
21497
  /** The ID of the action attempt. */
@@ -21667,7 +21707,7 @@ export interface Routes {
21667
21707
  status: 'success'
21668
21708
  error: null
21669
21709
  action_type: 'SYNC_ACCESS_CODES'
21670
- result?: any
21710
+ result: {}
21671
21711
  }
21672
21712
  | {
21673
21713
  /** The ID of the action attempt. */
@@ -21694,7 +21734,9 @@ export interface Routes {
21694
21734
  status: 'success'
21695
21735
  error: null
21696
21736
  action_type: 'CREATE_ACCESS_CODE'
21697
- result?: any
21737
+ result: {
21738
+ access_code?: any
21739
+ }
21698
21740
  }
21699
21741
  | {
21700
21742
  /** The ID of the action attempt. */
@@ -21721,7 +21763,7 @@ export interface Routes {
21721
21763
  status: 'success'
21722
21764
  error: null
21723
21765
  action_type: 'DELETE_ACCESS_CODE'
21724
- result?: any
21766
+ result: {}
21725
21767
  }
21726
21768
  | {
21727
21769
  /** The ID of the action attempt. */
@@ -21748,7 +21790,9 @@ export interface Routes {
21748
21790
  status: 'success'
21749
21791
  error: null
21750
21792
  action_type: 'UPDATE_ACCESS_CODE'
21751
- result?: any
21793
+ result: {
21794
+ access_code?: any
21795
+ }
21752
21796
  }
21753
21797
  | {
21754
21798
  /** The ID of the action attempt. */
@@ -21775,7 +21819,9 @@ export interface Routes {
21775
21819
  status: 'success'
21776
21820
  error: null
21777
21821
  action_type: 'CREATE_NOISE_THRESHOLD'
21778
- result?: any
21822
+ result: {
21823
+ noise_threshold?: any
21824
+ }
21779
21825
  }
21780
21826
  | {
21781
21827
  /** The ID of the action attempt. */
@@ -21802,7 +21848,7 @@ export interface Routes {
21802
21848
  status: 'success'
21803
21849
  error: null
21804
21850
  action_type: 'DELETE_NOISE_THRESHOLD'
21805
- result?: any
21851
+ result: {}
21806
21852
  }
21807
21853
  | {
21808
21854
  /** The ID of the action attempt. */
@@ -21829,7 +21875,9 @@ export interface Routes {
21829
21875
  status: 'success'
21830
21876
  error: null
21831
21877
  action_type: 'UPDATE_NOISE_THRESHOLD'
21832
- result?: any
21878
+ result: {
21879
+ noise_threshold?: any
21880
+ }
21833
21881
  }
21834
21882
  | {
21835
21883
  /** The ID of the action attempt. */
@@ -22098,12 +22146,7 @@ export interface Routes {
22098
22146
  status: 'success'
22099
22147
  error: null
22100
22148
  action_type: 'ENCODE_CARD'
22101
- result: {
22102
- /** Matching acs_credential currently encoded on this card. */
22103
- acs_credential_id: string | null
22104
- /** A number or string that physically identifies this card. */
22105
- card_number: string | null
22106
- }
22149
+ result: {}
22107
22150
  }
22108
22151
  | {
22109
22152
  /** The ID of the action attempt. */
@@ -22319,7 +22362,7 @@ export interface Routes {
22319
22362
  status: 'success'
22320
22363
  error: null
22321
22364
  action_type: 'SYNC_ACCESS_CODES'
22322
- result?: any
22365
+ result: {}
22323
22366
  }
22324
22367
  | {
22325
22368
  /** The ID of the action attempt. */
@@ -22346,7 +22389,9 @@ export interface Routes {
22346
22389
  status: 'success'
22347
22390
  error: null
22348
22391
  action_type: 'CREATE_ACCESS_CODE'
22349
- result?: any
22392
+ result: {
22393
+ access_code?: any
22394
+ }
22350
22395
  }
22351
22396
  | {
22352
22397
  /** The ID of the action attempt. */
@@ -22373,7 +22418,7 @@ export interface Routes {
22373
22418
  status: 'success'
22374
22419
  error: null
22375
22420
  action_type: 'DELETE_ACCESS_CODE'
22376
- result?: any
22421
+ result: {}
22377
22422
  }
22378
22423
  | {
22379
22424
  /** The ID of the action attempt. */
@@ -22400,7 +22445,9 @@ export interface Routes {
22400
22445
  status: 'success'
22401
22446
  error: null
22402
22447
  action_type: 'UPDATE_ACCESS_CODE'
22403
- result?: any
22448
+ result: {
22449
+ access_code?: any
22450
+ }
22404
22451
  }
22405
22452
  | {
22406
22453
  /** The ID of the action attempt. */
@@ -22427,7 +22474,9 @@ export interface Routes {
22427
22474
  status: 'success'
22428
22475
  error: null
22429
22476
  action_type: 'CREATE_NOISE_THRESHOLD'
22430
- result?: any
22477
+ result: {
22478
+ noise_threshold?: any
22479
+ }
22431
22480
  }
22432
22481
  | {
22433
22482
  /** The ID of the action attempt. */
@@ -22454,7 +22503,7 @@ export interface Routes {
22454
22503
  status: 'success'
22455
22504
  error: null
22456
22505
  action_type: 'DELETE_NOISE_THRESHOLD'
22457
- result?: any
22506
+ result: {}
22458
22507
  }
22459
22508
  | {
22460
22509
  /** The ID of the action attempt. */
@@ -22481,7 +22530,9 @@ export interface Routes {
22481
22530
  status: 'success'
22482
22531
  error: null
22483
22532
  action_type: 'UPDATE_NOISE_THRESHOLD'
22484
- result?: any
22533
+ result: {
22534
+ noise_threshold?: any
22535
+ }
22485
22536
  }
22486
22537
  | {
22487
22538
  /** The ID of the action attempt. */
@@ -24143,12 +24194,7 @@ export interface Routes {
24143
24194
  status: 'success'
24144
24195
  error: null
24145
24196
  action_type: 'ENCODE_CARD'
24146
- result: {
24147
- /** Matching acs_credential currently encoded on this card. */
24148
- acs_credential_id: string | null
24149
- /** A number or string that physically identifies this card. */
24150
- card_number: string | null
24151
- }
24197
+ result: {}
24152
24198
  }
24153
24199
  | {
24154
24200
  /** The ID of the action attempt. */
@@ -24364,7 +24410,7 @@ export interface Routes {
24364
24410
  status: 'success'
24365
24411
  error: null
24366
24412
  action_type: 'SYNC_ACCESS_CODES'
24367
- result?: any
24413
+ result: {}
24368
24414
  }
24369
24415
  | {
24370
24416
  /** The ID of the action attempt. */
@@ -24391,7 +24437,9 @@ export interface Routes {
24391
24437
  status: 'success'
24392
24438
  error: null
24393
24439
  action_type: 'CREATE_ACCESS_CODE'
24394
- result?: any
24440
+ result: {
24441
+ access_code?: any
24442
+ }
24395
24443
  }
24396
24444
  | {
24397
24445
  /** The ID of the action attempt. */
@@ -24418,7 +24466,7 @@ export interface Routes {
24418
24466
  status: 'success'
24419
24467
  error: null
24420
24468
  action_type: 'DELETE_ACCESS_CODE'
24421
- result?: any
24469
+ result: {}
24422
24470
  }
24423
24471
  | {
24424
24472
  /** The ID of the action attempt. */
@@ -24445,7 +24493,9 @@ export interface Routes {
24445
24493
  status: 'success'
24446
24494
  error: null
24447
24495
  action_type: 'UPDATE_ACCESS_CODE'
24448
- result?: any
24496
+ result: {
24497
+ access_code?: any
24498
+ }
24449
24499
  }
24450
24500
  | {
24451
24501
  /** The ID of the action attempt. */
@@ -24472,7 +24522,9 @@ export interface Routes {
24472
24522
  status: 'success'
24473
24523
  error: null
24474
24524
  action_type: 'CREATE_NOISE_THRESHOLD'
24475
- result?: any
24525
+ result: {
24526
+ noise_threshold?: any
24527
+ }
24476
24528
  }
24477
24529
  | {
24478
24530
  /** The ID of the action attempt. */
@@ -24499,7 +24551,7 @@ export interface Routes {
24499
24551
  status: 'success'
24500
24552
  error: null
24501
24553
  action_type: 'DELETE_NOISE_THRESHOLD'
24502
- result?: any
24554
+ result: {}
24503
24555
  }
24504
24556
  | {
24505
24557
  /** The ID of the action attempt. */
@@ -24526,7 +24578,9 @@ export interface Routes {
24526
24578
  status: 'success'
24527
24579
  error: null
24528
24580
  action_type: 'UPDATE_NOISE_THRESHOLD'
24529
- result?: any
24581
+ result: {
24582
+ noise_threshold?: any
24583
+ }
24530
24584
  }
24531
24585
  | {
24532
24586
  /** The ID of the action attempt. */
@@ -24912,12 +24966,7 @@ export interface Routes {
24912
24966
  status: 'success'
24913
24967
  error: null
24914
24968
  action_type: 'ENCODE_CARD'
24915
- result: {
24916
- /** Matching acs_credential currently encoded on this card. */
24917
- acs_credential_id: string | null
24918
- /** A number or string that physically identifies this card. */
24919
- card_number: string | null
24920
- }
24969
+ result: {}
24921
24970
  }
24922
24971
  | {
24923
24972
  /** The ID of the action attempt. */
@@ -25133,7 +25182,7 @@ export interface Routes {
25133
25182
  status: 'success'
25134
25183
  error: null
25135
25184
  action_type: 'SYNC_ACCESS_CODES'
25136
- result?: any
25185
+ result: {}
25137
25186
  }
25138
25187
  | {
25139
25188
  /** The ID of the action attempt. */
@@ -25160,7 +25209,9 @@ export interface Routes {
25160
25209
  status: 'success'
25161
25210
  error: null
25162
25211
  action_type: 'CREATE_ACCESS_CODE'
25163
- result?: any
25212
+ result: {
25213
+ access_code?: any
25214
+ }
25164
25215
  }
25165
25216
  | {
25166
25217
  /** The ID of the action attempt. */
@@ -25187,7 +25238,7 @@ export interface Routes {
25187
25238
  status: 'success'
25188
25239
  error: null
25189
25240
  action_type: 'DELETE_ACCESS_CODE'
25190
- result?: any
25241
+ result: {}
25191
25242
  }
25192
25243
  | {
25193
25244
  /** The ID of the action attempt. */
@@ -25214,7 +25265,9 @@ export interface Routes {
25214
25265
  status: 'success'
25215
25266
  error: null
25216
25267
  action_type: 'UPDATE_ACCESS_CODE'
25217
- result?: any
25268
+ result: {
25269
+ access_code?: any
25270
+ }
25218
25271
  }
25219
25272
  | {
25220
25273
  /** The ID of the action attempt. */
@@ -25241,7 +25294,9 @@ export interface Routes {
25241
25294
  status: 'success'
25242
25295
  error: null
25243
25296
  action_type: 'CREATE_NOISE_THRESHOLD'
25244
- result?: any
25297
+ result: {
25298
+ noise_threshold?: any
25299
+ }
25245
25300
  }
25246
25301
  | {
25247
25302
  /** The ID of the action attempt. */
@@ -25268,7 +25323,7 @@ export interface Routes {
25268
25323
  status: 'success'
25269
25324
  error: null
25270
25325
  action_type: 'DELETE_NOISE_THRESHOLD'
25271
- result?: any
25326
+ result: {}
25272
25327
  }
25273
25328
  | {
25274
25329
  /** The ID of the action attempt. */
@@ -25295,7 +25350,9 @@ export interface Routes {
25295
25350
  status: 'success'
25296
25351
  error: null
25297
25352
  action_type: 'UPDATE_NOISE_THRESHOLD'
25298
- result?: any
25353
+ result: {
25354
+ noise_threshold?: any
25355
+ }
25299
25356
  }
25300
25357
  | {
25301
25358
  /** The ID of the action attempt. */
@@ -27428,12 +27485,7 @@ export interface Routes {
27428
27485
  status: 'success'
27429
27486
  error: null
27430
27487
  action_type: 'ENCODE_CARD'
27431
- result: {
27432
- /** Matching acs_credential currently encoded on this card. */
27433
- acs_credential_id: string | null
27434
- /** A number or string that physically identifies this card. */
27435
- card_number: string | null
27436
- }
27488
+ result: {}
27437
27489
  }
27438
27490
  | {
27439
27491
  /** The ID of the action attempt. */
@@ -27649,7 +27701,7 @@ export interface Routes {
27649
27701
  status: 'success'
27650
27702
  error: null
27651
27703
  action_type: 'SYNC_ACCESS_CODES'
27652
- result?: any
27704
+ result: {}
27653
27705
  }
27654
27706
  | {
27655
27707
  /** The ID of the action attempt. */
@@ -27676,7 +27728,9 @@ export interface Routes {
27676
27728
  status: 'success'
27677
27729
  error: null
27678
27730
  action_type: 'CREATE_ACCESS_CODE'
27679
- result?: any
27731
+ result: {
27732
+ access_code?: any
27733
+ }
27680
27734
  }
27681
27735
  | {
27682
27736
  /** The ID of the action attempt. */
@@ -27703,7 +27757,7 @@ export interface Routes {
27703
27757
  status: 'success'
27704
27758
  error: null
27705
27759
  action_type: 'DELETE_ACCESS_CODE'
27706
- result?: any
27760
+ result: {}
27707
27761
  }
27708
27762
  | {
27709
27763
  /** The ID of the action attempt. */
@@ -27730,7 +27784,9 @@ export interface Routes {
27730
27784
  status: 'success'
27731
27785
  error: null
27732
27786
  action_type: 'UPDATE_ACCESS_CODE'
27733
- result?: any
27787
+ result: {
27788
+ access_code?: any
27789
+ }
27734
27790
  }
27735
27791
  | {
27736
27792
  /** The ID of the action attempt. */
@@ -27757,7 +27813,9 @@ export interface Routes {
27757
27813
  status: 'success'
27758
27814
  error: null
27759
27815
  action_type: 'CREATE_NOISE_THRESHOLD'
27760
- result?: any
27816
+ result: {
27817
+ noise_threshold?: any
27818
+ }
27761
27819
  }
27762
27820
  | {
27763
27821
  /** The ID of the action attempt. */
@@ -27784,7 +27842,7 @@ export interface Routes {
27784
27842
  status: 'success'
27785
27843
  error: null
27786
27844
  action_type: 'DELETE_NOISE_THRESHOLD'
27787
- result?: any
27845
+ result: {}
27788
27846
  }
27789
27847
  | {
27790
27848
  /** The ID of the action attempt. */
@@ -27811,7 +27869,9 @@ export interface Routes {
27811
27869
  status: 'success'
27812
27870
  error: null
27813
27871
  action_type: 'UPDATE_NOISE_THRESHOLD'
27814
- result?: any
27872
+ result: {
27873
+ noise_threshold?: any
27874
+ }
27815
27875
  }
27816
27876
  | {
27817
27877
  /** The ID of the action attempt. */