@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
|
@@ -98,7 +98,7 @@ export interface Routes {
|
|
|
98
98
|
/** Snapshot of the card data read from the physical encoder. */
|
|
99
99
|
acs_credential_on_encoder: {
|
|
100
100
|
/** Date and time the credential was created. */
|
|
101
|
-
created_at: string
|
|
101
|
+
created_at: string | null
|
|
102
102
|
is_issued: boolean | null
|
|
103
103
|
/** Date and time the credential will become useable. */
|
|
104
104
|
starts_at: string | null
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
651
|
+
result: {
|
|
652
|
+
noise_threshold?: any
|
|
653
|
+
}
|
|
651
654
|
}
|
|
652
655
|
| {
|
|
653
656
|
/** The ID of the action attempt. */
|
|
@@ -904,7 +907,7 @@ export interface Routes {
|
|
|
904
907
|
/** Snapshot of the card data read from the physical encoder. */
|
|
905
908
|
acs_credential_on_encoder: {
|
|
906
909
|
/** Date and time the credential was created. */
|
|
907
|
-
created_at: string
|
|
910
|
+
created_at: string | null
|
|
908
911
|
is_issued: boolean | null
|
|
909
912
|
/** Date and time the credential will become useable. */
|
|
910
913
|
starts_at: string | null
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
1460
|
+
result: {
|
|
1461
|
+
noise_threshold?: any
|
|
1462
|
+
}
|
|
1457
1463
|
}
|
|
1458
1464
|
| {
|
|
1459
1465
|
/** The ID of the action attempt. */
|
|
@@ -1875,7 +1881,7 @@ export interface Routes {
|
|
|
1875
1881
|
/** Snapshot of the card data read from the physical encoder. */
|
|
1876
1882
|
acs_credential_on_encoder: {
|
|
1877
1883
|
/** Date and time the credential was created. */
|
|
1878
|
-
created_at: string
|
|
1884
|
+
created_at: string | null
|
|
1879
1885
|
is_issued: boolean | null
|
|
1880
1886
|
/** Date and time the credential will become useable. */
|
|
1881
1887
|
starts_at: string | null
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
2434
|
+
result: {
|
|
2435
|
+
noise_threshold?: any
|
|
2436
|
+
}
|
|
2428
2437
|
}
|
|
2429
2438
|
| {
|
|
2430
2439
|
/** The ID of the action attempt. */
|
|
@@ -2668,7 +2677,7 @@ export interface Routes {
|
|
|
2668
2677
|
/** Snapshot of the card data read from the physical encoder. */
|
|
2669
2678
|
acs_credential_on_encoder: {
|
|
2670
2679
|
/** Date and time the credential was created. */
|
|
2671
|
-
created_at: string
|
|
2680
|
+
created_at: string | null
|
|
2672
2681
|
is_issued: boolean | null
|
|
2673
2682
|
/** Date and time the credential will become useable. */
|
|
2674
2683
|
starts_at: string | null
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
3230
|
+
result: {
|
|
3231
|
+
noise_threshold?: any
|
|
3232
|
+
}
|
|
3221
3233
|
}
|
|
3222
3234
|
| {
|
|
3223
3235
|
/** The ID of the action attempt. */
|
|
@@ -4369,7 +4381,7 @@ export interface Routes {
|
|
|
4369
4381
|
/** Snapshot of the card data read from the physical encoder. */
|
|
4370
4382
|
acs_credential_on_encoder: {
|
|
4371
4383
|
/** Date and time the credential was created. */
|
|
4372
|
-
created_at: string
|
|
4384
|
+
created_at: string | null
|
|
4373
4385
|
is_issued: boolean | null
|
|
4374
4386
|
/** Date and time the credential will become useable. */
|
|
4375
4387
|
starts_at: string | null
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
4934
|
+
result: {
|
|
4935
|
+
noise_threshold?: any
|
|
4936
|
+
}
|
|
4922
4937
|
}
|
|
4923
4938
|
| {
|
|
4924
4939
|
/** The ID of the action attempt. */
|
|
@@ -5364,6 +5379,7 @@ export interface Routes {
|
|
|
5364
5379
|
| {
|
|
5365
5380
|
gadget_name: string
|
|
5366
5381
|
gadget_id: string
|
|
5382
|
+
_member_group_id?: string | undefined
|
|
5367
5383
|
}
|
|
5368
5384
|
| undefined
|
|
5369
5385
|
}) &
|
|
@@ -5658,7 +5674,7 @@ export interface Routes {
|
|
|
5658
5674
|
/** Snapshot of the card data read from the physical encoder. */
|
|
5659
5675
|
acs_credential_on_encoder: {
|
|
5660
5676
|
/** Date and time the credential was created. */
|
|
5661
|
-
created_at: string
|
|
5677
|
+
created_at: string | null
|
|
5662
5678
|
is_issued: boolean | null
|
|
5663
5679
|
/** Date and time the credential will become useable. */
|
|
5664
5680
|
starts_at: string | null
|
|
@@ -5824,12 +5840,7 @@ export interface Routes {
|
|
|
5824
5840
|
status: 'success'
|
|
5825
5841
|
error: null
|
|
5826
5842
|
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
|
-
}
|
|
5843
|
+
result: {}
|
|
5833
5844
|
}
|
|
5834
5845
|
| {
|
|
5835
5846
|
/** The ID of the action attempt. */
|
|
@@ -6045,7 +6056,7 @@ export interface Routes {
|
|
|
6045
6056
|
status: 'success'
|
|
6046
6057
|
error: null
|
|
6047
6058
|
action_type: 'SYNC_ACCESS_CODES'
|
|
6048
|
-
result
|
|
6059
|
+
result: {}
|
|
6049
6060
|
}
|
|
6050
6061
|
| {
|
|
6051
6062
|
/** The ID of the action attempt. */
|
|
@@ -6072,7 +6083,9 @@ export interface Routes {
|
|
|
6072
6083
|
status: 'success'
|
|
6073
6084
|
error: null
|
|
6074
6085
|
action_type: 'CREATE_ACCESS_CODE'
|
|
6075
|
-
result
|
|
6086
|
+
result: {
|
|
6087
|
+
access_code?: any
|
|
6088
|
+
}
|
|
6076
6089
|
}
|
|
6077
6090
|
| {
|
|
6078
6091
|
/** The ID of the action attempt. */
|
|
@@ -6099,7 +6112,7 @@ export interface Routes {
|
|
|
6099
6112
|
status: 'success'
|
|
6100
6113
|
error: null
|
|
6101
6114
|
action_type: 'DELETE_ACCESS_CODE'
|
|
6102
|
-
result
|
|
6115
|
+
result: {}
|
|
6103
6116
|
}
|
|
6104
6117
|
| {
|
|
6105
6118
|
/** The ID of the action attempt. */
|
|
@@ -6126,7 +6139,9 @@ export interface Routes {
|
|
|
6126
6139
|
status: 'success'
|
|
6127
6140
|
error: null
|
|
6128
6141
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
6129
|
-
result
|
|
6142
|
+
result: {
|
|
6143
|
+
access_code?: any
|
|
6144
|
+
}
|
|
6130
6145
|
}
|
|
6131
6146
|
| {
|
|
6132
6147
|
/** The ID of the action attempt. */
|
|
@@ -6153,7 +6168,9 @@ export interface Routes {
|
|
|
6153
6168
|
status: 'success'
|
|
6154
6169
|
error: null
|
|
6155
6170
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
6156
|
-
result
|
|
6171
|
+
result: {
|
|
6172
|
+
noise_threshold?: any
|
|
6173
|
+
}
|
|
6157
6174
|
}
|
|
6158
6175
|
| {
|
|
6159
6176
|
/** The ID of the action attempt. */
|
|
@@ -6180,7 +6197,7 @@ export interface Routes {
|
|
|
6180
6197
|
status: 'success'
|
|
6181
6198
|
error: null
|
|
6182
6199
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
6183
|
-
result
|
|
6200
|
+
result: {}
|
|
6184
6201
|
}
|
|
6185
6202
|
| {
|
|
6186
6203
|
/** The ID of the action attempt. */
|
|
@@ -6207,7 +6224,9 @@ export interface Routes {
|
|
|
6207
6224
|
status: 'success'
|
|
6208
6225
|
error: null
|
|
6209
6226
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
6210
|
-
result
|
|
6227
|
+
result: {
|
|
6228
|
+
noise_threshold?: any
|
|
6229
|
+
}
|
|
6211
6230
|
}
|
|
6212
6231
|
| {
|
|
6213
6232
|
/** The ID of the action attempt. */
|
|
@@ -7701,7 +7720,7 @@ export interface Routes {
|
|
|
7701
7720
|
/** Snapshot of the card data read from the physical encoder. */
|
|
7702
7721
|
acs_credential_on_encoder: {
|
|
7703
7722
|
/** Date and time the credential was created. */
|
|
7704
|
-
created_at: string
|
|
7723
|
+
created_at: string | null
|
|
7705
7724
|
is_issued: boolean | null
|
|
7706
7725
|
/** Date and time the credential will become useable. */
|
|
7707
7726
|
starts_at: string | null
|
|
@@ -7867,12 +7886,7 @@ export interface Routes {
|
|
|
7867
7886
|
status: 'success'
|
|
7868
7887
|
error: null
|
|
7869
7888
|
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
|
-
}
|
|
7889
|
+
result: {}
|
|
7876
7890
|
}
|
|
7877
7891
|
| {
|
|
7878
7892
|
/** The ID of the action attempt. */
|
|
@@ -8088,7 +8102,7 @@ export interface Routes {
|
|
|
8088
8102
|
status: 'success'
|
|
8089
8103
|
error: null
|
|
8090
8104
|
action_type: 'SYNC_ACCESS_CODES'
|
|
8091
|
-
result
|
|
8105
|
+
result: {}
|
|
8092
8106
|
}
|
|
8093
8107
|
| {
|
|
8094
8108
|
/** The ID of the action attempt. */
|
|
@@ -8115,7 +8129,9 @@ export interface Routes {
|
|
|
8115
8129
|
status: 'success'
|
|
8116
8130
|
error: null
|
|
8117
8131
|
action_type: 'CREATE_ACCESS_CODE'
|
|
8118
|
-
result
|
|
8132
|
+
result: {
|
|
8133
|
+
access_code?: any
|
|
8134
|
+
}
|
|
8119
8135
|
}
|
|
8120
8136
|
| {
|
|
8121
8137
|
/** The ID of the action attempt. */
|
|
@@ -8142,7 +8158,7 @@ export interface Routes {
|
|
|
8142
8158
|
status: 'success'
|
|
8143
8159
|
error: null
|
|
8144
8160
|
action_type: 'DELETE_ACCESS_CODE'
|
|
8145
|
-
result
|
|
8161
|
+
result: {}
|
|
8146
8162
|
}
|
|
8147
8163
|
| {
|
|
8148
8164
|
/** The ID of the action attempt. */
|
|
@@ -8169,7 +8185,9 @@ export interface Routes {
|
|
|
8169
8185
|
status: 'success'
|
|
8170
8186
|
error: null
|
|
8171
8187
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
8172
|
-
result
|
|
8188
|
+
result: {
|
|
8189
|
+
access_code?: any
|
|
8190
|
+
}
|
|
8173
8191
|
}
|
|
8174
8192
|
| {
|
|
8175
8193
|
/** The ID of the action attempt. */
|
|
@@ -8196,7 +8214,9 @@ export interface Routes {
|
|
|
8196
8214
|
status: 'success'
|
|
8197
8215
|
error: null
|
|
8198
8216
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
8199
|
-
result
|
|
8217
|
+
result: {
|
|
8218
|
+
noise_threshold?: any
|
|
8219
|
+
}
|
|
8200
8220
|
}
|
|
8201
8221
|
| {
|
|
8202
8222
|
/** The ID of the action attempt. */
|
|
@@ -8223,7 +8243,7 @@ export interface Routes {
|
|
|
8223
8243
|
status: 'success'
|
|
8224
8244
|
error: null
|
|
8225
8245
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
8226
|
-
result
|
|
8246
|
+
result: {}
|
|
8227
8247
|
}
|
|
8228
8248
|
| {
|
|
8229
8249
|
/** The ID of the action attempt. */
|
|
@@ -8250,7 +8270,9 @@ export interface Routes {
|
|
|
8250
8270
|
status: 'success'
|
|
8251
8271
|
error: null
|
|
8252
8272
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
8253
|
-
result
|
|
8273
|
+
result: {
|
|
8274
|
+
noise_threshold?: any
|
|
8275
|
+
}
|
|
8254
8276
|
}
|
|
8255
8277
|
| {
|
|
8256
8278
|
/** The ID of the action attempt. */
|
|
@@ -8348,7 +8370,7 @@ export interface Routes {
|
|
|
8348
8370
|
/** Snapshot of the card data read from the physical encoder. */
|
|
8349
8371
|
acs_credential_on_encoder: {
|
|
8350
8372
|
/** Date and time the credential was created. */
|
|
8351
|
-
created_at: string
|
|
8373
|
+
created_at: string | null
|
|
8352
8374
|
is_issued: boolean | null
|
|
8353
8375
|
/** Date and time the credential will become useable. */
|
|
8354
8376
|
starts_at: string | null
|
|
@@ -8514,12 +8536,7 @@ export interface Routes {
|
|
|
8514
8536
|
status: 'success'
|
|
8515
8537
|
error: null
|
|
8516
8538
|
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
|
-
}
|
|
8539
|
+
result: {}
|
|
8523
8540
|
}
|
|
8524
8541
|
| {
|
|
8525
8542
|
/** The ID of the action attempt. */
|
|
@@ -8735,7 +8752,7 @@ export interface Routes {
|
|
|
8735
8752
|
status: 'success'
|
|
8736
8753
|
error: null
|
|
8737
8754
|
action_type: 'SYNC_ACCESS_CODES'
|
|
8738
|
-
result
|
|
8755
|
+
result: {}
|
|
8739
8756
|
}
|
|
8740
8757
|
| {
|
|
8741
8758
|
/** The ID of the action attempt. */
|
|
@@ -8762,7 +8779,9 @@ export interface Routes {
|
|
|
8762
8779
|
status: 'success'
|
|
8763
8780
|
error: null
|
|
8764
8781
|
action_type: 'CREATE_ACCESS_CODE'
|
|
8765
|
-
result
|
|
8782
|
+
result: {
|
|
8783
|
+
access_code?: any
|
|
8784
|
+
}
|
|
8766
8785
|
}
|
|
8767
8786
|
| {
|
|
8768
8787
|
/** The ID of the action attempt. */
|
|
@@ -8789,7 +8808,7 @@ export interface Routes {
|
|
|
8789
8808
|
status: 'success'
|
|
8790
8809
|
error: null
|
|
8791
8810
|
action_type: 'DELETE_ACCESS_CODE'
|
|
8792
|
-
result
|
|
8811
|
+
result: {}
|
|
8793
8812
|
}
|
|
8794
8813
|
| {
|
|
8795
8814
|
/** The ID of the action attempt. */
|
|
@@ -8816,7 +8835,9 @@ export interface Routes {
|
|
|
8816
8835
|
status: 'success'
|
|
8817
8836
|
error: null
|
|
8818
8837
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
8819
|
-
result
|
|
8838
|
+
result: {
|
|
8839
|
+
access_code?: any
|
|
8840
|
+
}
|
|
8820
8841
|
}
|
|
8821
8842
|
| {
|
|
8822
8843
|
/** The ID of the action attempt. */
|
|
@@ -8843,7 +8864,9 @@ export interface Routes {
|
|
|
8843
8864
|
status: 'success'
|
|
8844
8865
|
error: null
|
|
8845
8866
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
8846
|
-
result
|
|
8867
|
+
result: {
|
|
8868
|
+
noise_threshold?: any
|
|
8869
|
+
}
|
|
8847
8870
|
}
|
|
8848
8871
|
| {
|
|
8849
8872
|
/** The ID of the action attempt. */
|
|
@@ -8870,7 +8893,7 @@ export interface Routes {
|
|
|
8870
8893
|
status: 'success'
|
|
8871
8894
|
error: null
|
|
8872
8895
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
8873
|
-
result
|
|
8896
|
+
result: {}
|
|
8874
8897
|
}
|
|
8875
8898
|
| {
|
|
8876
8899
|
/** The ID of the action attempt. */
|
|
@@ -8897,7 +8920,9 @@ export interface Routes {
|
|
|
8897
8920
|
status: 'success'
|
|
8898
8921
|
error: null
|
|
8899
8922
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
8900
|
-
result
|
|
8923
|
+
result: {
|
|
8924
|
+
noise_threshold?: any
|
|
8925
|
+
}
|
|
8901
8926
|
}
|
|
8902
8927
|
| {
|
|
8903
8928
|
/** The ID of the action attempt. */
|
|
@@ -9820,6 +9845,7 @@ export interface Routes {
|
|
|
9820
9845
|
| {
|
|
9821
9846
|
gadget_name: string
|
|
9822
9847
|
gadget_id: string
|
|
9848
|
+
_member_group_id?: string | undefined
|
|
9823
9849
|
}
|
|
9824
9850
|
| undefined
|
|
9825
9851
|
}) &
|
|
@@ -10604,6 +10630,7 @@ export interface Routes {
|
|
|
10604
10630
|
| {
|
|
10605
10631
|
gadget_name: string
|
|
10606
10632
|
gadget_id: string
|
|
10633
|
+
_member_group_id?: string | undefined
|
|
10607
10634
|
}
|
|
10608
10635
|
| undefined
|
|
10609
10636
|
}) &
|
|
@@ -12082,6 +12109,7 @@ export interface Routes {
|
|
|
12082
12109
|
| {
|
|
12083
12110
|
gadget_name: string
|
|
12084
12111
|
gadget_id: string
|
|
12112
|
+
_member_group_id?: string | undefined
|
|
12085
12113
|
}
|
|
12086
12114
|
| undefined
|
|
12087
12115
|
}) &
|
|
@@ -12695,6 +12723,7 @@ export interface Routes {
|
|
|
12695
12723
|
| {
|
|
12696
12724
|
gadget_name: string
|
|
12697
12725
|
gadget_id: string
|
|
12726
|
+
_member_group_id?: string | undefined
|
|
12698
12727
|
}
|
|
12699
12728
|
| undefined
|
|
12700
12729
|
}) &
|
|
@@ -13479,6 +13508,7 @@ export interface Routes {
|
|
|
13479
13508
|
| {
|
|
13480
13509
|
gadget_name: string
|
|
13481
13510
|
gadget_id: string
|
|
13511
|
+
_member_group_id?: string | undefined
|
|
13482
13512
|
}
|
|
13483
13513
|
| undefined
|
|
13484
13514
|
}) &
|
|
@@ -14092,6 +14122,7 @@ export interface Routes {
|
|
|
14092
14122
|
| {
|
|
14093
14123
|
gadget_name: string
|
|
14094
14124
|
gadget_id: string
|
|
14125
|
+
_member_group_id?: string | undefined
|
|
14095
14126
|
}
|
|
14096
14127
|
| undefined
|
|
14097
14128
|
}) &
|
|
@@ -14381,7 +14412,7 @@ export interface Routes {
|
|
|
14381
14412
|
/** Snapshot of the card data read from the physical encoder. */
|
|
14382
14413
|
acs_credential_on_encoder: {
|
|
14383
14414
|
/** Date and time the credential was created. */
|
|
14384
|
-
created_at: string
|
|
14415
|
+
created_at: string | null
|
|
14385
14416
|
is_issued: boolean | null
|
|
14386
14417
|
/** Date and time the credential will become useable. */
|
|
14387
14418
|
starts_at: string | null
|
|
@@ -14547,12 +14578,7 @@ export interface Routes {
|
|
|
14547
14578
|
status: 'success'
|
|
14548
14579
|
error: null
|
|
14549
14580
|
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
|
-
}
|
|
14581
|
+
result: {}
|
|
14556
14582
|
}
|
|
14557
14583
|
| {
|
|
14558
14584
|
/** The ID of the action attempt. */
|
|
@@ -14768,7 +14794,7 @@ export interface Routes {
|
|
|
14768
14794
|
status: 'success'
|
|
14769
14795
|
error: null
|
|
14770
14796
|
action_type: 'SYNC_ACCESS_CODES'
|
|
14771
|
-
result
|
|
14797
|
+
result: {}
|
|
14772
14798
|
}
|
|
14773
14799
|
| {
|
|
14774
14800
|
/** The ID of the action attempt. */
|
|
@@ -14795,7 +14821,9 @@ export interface Routes {
|
|
|
14795
14821
|
status: 'success'
|
|
14796
14822
|
error: null
|
|
14797
14823
|
action_type: 'CREATE_ACCESS_CODE'
|
|
14798
|
-
result
|
|
14824
|
+
result: {
|
|
14825
|
+
access_code?: any
|
|
14826
|
+
}
|
|
14799
14827
|
}
|
|
14800
14828
|
| {
|
|
14801
14829
|
/** The ID of the action attempt. */
|
|
@@ -14822,7 +14850,7 @@ export interface Routes {
|
|
|
14822
14850
|
status: 'success'
|
|
14823
14851
|
error: null
|
|
14824
14852
|
action_type: 'DELETE_ACCESS_CODE'
|
|
14825
|
-
result
|
|
14853
|
+
result: {}
|
|
14826
14854
|
}
|
|
14827
14855
|
| {
|
|
14828
14856
|
/** The ID of the action attempt. */
|
|
@@ -14849,7 +14877,9 @@ export interface Routes {
|
|
|
14849
14877
|
status: 'success'
|
|
14850
14878
|
error: null
|
|
14851
14879
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
14852
|
-
result
|
|
14880
|
+
result: {
|
|
14881
|
+
access_code?: any
|
|
14882
|
+
}
|
|
14853
14883
|
}
|
|
14854
14884
|
| {
|
|
14855
14885
|
/** The ID of the action attempt. */
|
|
@@ -14876,7 +14906,9 @@ export interface Routes {
|
|
|
14876
14906
|
status: 'success'
|
|
14877
14907
|
error: null
|
|
14878
14908
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
14879
|
-
result
|
|
14909
|
+
result: {
|
|
14910
|
+
noise_threshold?: any
|
|
14911
|
+
}
|
|
14880
14912
|
}
|
|
14881
14913
|
| {
|
|
14882
14914
|
/** The ID of the action attempt. */
|
|
@@ -14903,7 +14935,7 @@ export interface Routes {
|
|
|
14903
14935
|
status: 'success'
|
|
14904
14936
|
error: null
|
|
14905
14937
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
14906
|
-
result
|
|
14938
|
+
result: {}
|
|
14907
14939
|
}
|
|
14908
14940
|
| {
|
|
14909
14941
|
/** The ID of the action attempt. */
|
|
@@ -14930,7 +14962,9 @@ export interface Routes {
|
|
|
14930
14962
|
status: 'success'
|
|
14931
14963
|
error: null
|
|
14932
14964
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
14933
|
-
result
|
|
14965
|
+
result: {
|
|
14966
|
+
noise_threshold?: any
|
|
14967
|
+
}
|
|
14934
14968
|
}
|
|
14935
14969
|
| {
|
|
14936
14970
|
/** The ID of the action attempt. */
|
|
@@ -15029,7 +15063,7 @@ export interface Routes {
|
|
|
15029
15063
|
/** Snapshot of the card data read from the physical encoder. */
|
|
15030
15064
|
acs_credential_on_encoder: {
|
|
15031
15065
|
/** Date and time the credential was created. */
|
|
15032
|
-
created_at: string
|
|
15066
|
+
created_at: string | null
|
|
15033
15067
|
is_issued: boolean | null
|
|
15034
15068
|
/** Date and time the credential will become useable. */
|
|
15035
15069
|
starts_at: string | null
|
|
@@ -15195,12 +15229,7 @@ export interface Routes {
|
|
|
15195
15229
|
status: 'success'
|
|
15196
15230
|
error: null
|
|
15197
15231
|
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
|
-
}
|
|
15232
|
+
result: {}
|
|
15204
15233
|
}
|
|
15205
15234
|
| {
|
|
15206
15235
|
/** The ID of the action attempt. */
|
|
@@ -15416,7 +15445,7 @@ export interface Routes {
|
|
|
15416
15445
|
status: 'success'
|
|
15417
15446
|
error: null
|
|
15418
15447
|
action_type: 'SYNC_ACCESS_CODES'
|
|
15419
|
-
result
|
|
15448
|
+
result: {}
|
|
15420
15449
|
}
|
|
15421
15450
|
| {
|
|
15422
15451
|
/** The ID of the action attempt. */
|
|
@@ -15443,7 +15472,9 @@ export interface Routes {
|
|
|
15443
15472
|
status: 'success'
|
|
15444
15473
|
error: null
|
|
15445
15474
|
action_type: 'CREATE_ACCESS_CODE'
|
|
15446
|
-
result
|
|
15475
|
+
result: {
|
|
15476
|
+
access_code?: any
|
|
15477
|
+
}
|
|
15447
15478
|
}
|
|
15448
15479
|
| {
|
|
15449
15480
|
/** The ID of the action attempt. */
|
|
@@ -15470,7 +15501,7 @@ export interface Routes {
|
|
|
15470
15501
|
status: 'success'
|
|
15471
15502
|
error: null
|
|
15472
15503
|
action_type: 'DELETE_ACCESS_CODE'
|
|
15473
|
-
result
|
|
15504
|
+
result: {}
|
|
15474
15505
|
}
|
|
15475
15506
|
| {
|
|
15476
15507
|
/** The ID of the action attempt. */
|
|
@@ -15497,7 +15528,9 @@ export interface Routes {
|
|
|
15497
15528
|
status: 'success'
|
|
15498
15529
|
error: null
|
|
15499
15530
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
15500
|
-
result
|
|
15531
|
+
result: {
|
|
15532
|
+
access_code?: any
|
|
15533
|
+
}
|
|
15501
15534
|
}
|
|
15502
15535
|
| {
|
|
15503
15536
|
/** The ID of the action attempt. */
|
|
@@ -15524,7 +15557,9 @@ export interface Routes {
|
|
|
15524
15557
|
status: 'success'
|
|
15525
15558
|
error: null
|
|
15526
15559
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
15527
|
-
result
|
|
15560
|
+
result: {
|
|
15561
|
+
noise_threshold?: any
|
|
15562
|
+
}
|
|
15528
15563
|
}
|
|
15529
15564
|
| {
|
|
15530
15565
|
/** The ID of the action attempt. */
|
|
@@ -15551,7 +15586,7 @@ export interface Routes {
|
|
|
15551
15586
|
status: 'success'
|
|
15552
15587
|
error: null
|
|
15553
15588
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
15554
|
-
result
|
|
15589
|
+
result: {}
|
|
15555
15590
|
}
|
|
15556
15591
|
| {
|
|
15557
15592
|
/** The ID of the action attempt. */
|
|
@@ -15578,7 +15613,9 @@ export interface Routes {
|
|
|
15578
15613
|
status: 'success'
|
|
15579
15614
|
error: null
|
|
15580
15615
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
15581
|
-
result
|
|
15616
|
+
result: {
|
|
15617
|
+
noise_threshold?: any
|
|
15618
|
+
}
|
|
15582
15619
|
}
|
|
15583
15620
|
| {
|
|
15584
15621
|
/** The ID of the action attempt. */
|
|
@@ -16206,6 +16243,7 @@ export interface Routes {
|
|
|
16206
16243
|
| {
|
|
16207
16244
|
gadget_name: string
|
|
16208
16245
|
gadget_id: string
|
|
16246
|
+
_member_group_id?: string | undefined
|
|
16209
16247
|
}
|
|
16210
16248
|
| undefined
|
|
16211
16249
|
}) &
|
|
@@ -16819,6 +16857,7 @@ export interface Routes {
|
|
|
16819
16857
|
| {
|
|
16820
16858
|
gadget_name: string
|
|
16821
16859
|
gadget_id: string
|
|
16860
|
+
_member_group_id?: string | undefined
|
|
16822
16861
|
}
|
|
16823
16862
|
| undefined
|
|
16824
16863
|
}) &
|
|
@@ -17113,7 +17152,7 @@ export interface Routes {
|
|
|
17113
17152
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17114
17153
|
acs_credential_on_encoder: {
|
|
17115
17154
|
/** Date and time the credential was created. */
|
|
17116
|
-
created_at: string
|
|
17155
|
+
created_at: string | null
|
|
17117
17156
|
is_issued: boolean | null
|
|
17118
17157
|
/** Date and time the credential will become useable. */
|
|
17119
17158
|
starts_at: string | null
|
|
@@ -17279,12 +17318,7 @@ export interface Routes {
|
|
|
17279
17318
|
status: 'success'
|
|
17280
17319
|
error: null
|
|
17281
17320
|
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
|
-
}
|
|
17321
|
+
result: {}
|
|
17288
17322
|
}
|
|
17289
17323
|
| {
|
|
17290
17324
|
/** The ID of the action attempt. */
|
|
@@ -17500,7 +17534,7 @@ export interface Routes {
|
|
|
17500
17534
|
status: 'success'
|
|
17501
17535
|
error: null
|
|
17502
17536
|
action_type: 'SYNC_ACCESS_CODES'
|
|
17503
|
-
result
|
|
17537
|
+
result: {}
|
|
17504
17538
|
}
|
|
17505
17539
|
| {
|
|
17506
17540
|
/** The ID of the action attempt. */
|
|
@@ -17527,7 +17561,9 @@ export interface Routes {
|
|
|
17527
17561
|
status: 'success'
|
|
17528
17562
|
error: null
|
|
17529
17563
|
action_type: 'CREATE_ACCESS_CODE'
|
|
17530
|
-
result
|
|
17564
|
+
result: {
|
|
17565
|
+
access_code?: any
|
|
17566
|
+
}
|
|
17531
17567
|
}
|
|
17532
17568
|
| {
|
|
17533
17569
|
/** The ID of the action attempt. */
|
|
@@ -17554,7 +17590,7 @@ export interface Routes {
|
|
|
17554
17590
|
status: 'success'
|
|
17555
17591
|
error: null
|
|
17556
17592
|
action_type: 'DELETE_ACCESS_CODE'
|
|
17557
|
-
result
|
|
17593
|
+
result: {}
|
|
17558
17594
|
}
|
|
17559
17595
|
| {
|
|
17560
17596
|
/** The ID of the action attempt. */
|
|
@@ -17581,7 +17617,9 @@ export interface Routes {
|
|
|
17581
17617
|
status: 'success'
|
|
17582
17618
|
error: null
|
|
17583
17619
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
17584
|
-
result
|
|
17620
|
+
result: {
|
|
17621
|
+
access_code?: any
|
|
17622
|
+
}
|
|
17585
17623
|
}
|
|
17586
17624
|
| {
|
|
17587
17625
|
/** The ID of the action attempt. */
|
|
@@ -17608,7 +17646,9 @@ export interface Routes {
|
|
|
17608
17646
|
status: 'success'
|
|
17609
17647
|
error: null
|
|
17610
17648
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
17611
|
-
result
|
|
17649
|
+
result: {
|
|
17650
|
+
noise_threshold?: any
|
|
17651
|
+
}
|
|
17612
17652
|
}
|
|
17613
17653
|
| {
|
|
17614
17654
|
/** The ID of the action attempt. */
|
|
@@ -17635,7 +17675,7 @@ export interface Routes {
|
|
|
17635
17675
|
status: 'success'
|
|
17636
17676
|
error: null
|
|
17637
17677
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
17638
|
-
result
|
|
17678
|
+
result: {}
|
|
17639
17679
|
}
|
|
17640
17680
|
| {
|
|
17641
17681
|
/** The ID of the action attempt. */
|
|
@@ -17662,7 +17702,9 @@ export interface Routes {
|
|
|
17662
17702
|
status: 'success'
|
|
17663
17703
|
error: null
|
|
17664
17704
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
17665
|
-
result
|
|
17705
|
+
result: {
|
|
17706
|
+
noise_threshold?: any
|
|
17707
|
+
}
|
|
17666
17708
|
}
|
|
17667
17709
|
| {
|
|
17668
17710
|
/** The ID of the action attempt. */
|
|
@@ -17771,7 +17813,7 @@ export interface Routes {
|
|
|
17771
17813
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17772
17814
|
acs_credential_on_encoder: {
|
|
17773
17815
|
/** Date and time the credential was created. */
|
|
17774
|
-
created_at: string
|
|
17816
|
+
created_at: string | null
|
|
17775
17817
|
is_issued: boolean | null
|
|
17776
17818
|
/** Date and time the credential will become useable. */
|
|
17777
17819
|
starts_at: string | null
|
|
@@ -17937,12 +17979,7 @@ export interface Routes {
|
|
|
17937
17979
|
status: 'success'
|
|
17938
17980
|
error: null
|
|
17939
17981
|
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
|
-
}
|
|
17982
|
+
result: {}
|
|
17946
17983
|
}
|
|
17947
17984
|
| {
|
|
17948
17985
|
/** The ID of the action attempt. */
|
|
@@ -18158,7 +18195,7 @@ export interface Routes {
|
|
|
18158
18195
|
status: 'success'
|
|
18159
18196
|
error: null
|
|
18160
18197
|
action_type: 'SYNC_ACCESS_CODES'
|
|
18161
|
-
result
|
|
18198
|
+
result: {}
|
|
18162
18199
|
}
|
|
18163
18200
|
| {
|
|
18164
18201
|
/** The ID of the action attempt. */
|
|
@@ -18185,7 +18222,9 @@ export interface Routes {
|
|
|
18185
18222
|
status: 'success'
|
|
18186
18223
|
error: null
|
|
18187
18224
|
action_type: 'CREATE_ACCESS_CODE'
|
|
18188
|
-
result
|
|
18225
|
+
result: {
|
|
18226
|
+
access_code?: any
|
|
18227
|
+
}
|
|
18189
18228
|
}
|
|
18190
18229
|
| {
|
|
18191
18230
|
/** The ID of the action attempt. */
|
|
@@ -18212,7 +18251,7 @@ export interface Routes {
|
|
|
18212
18251
|
status: 'success'
|
|
18213
18252
|
error: null
|
|
18214
18253
|
action_type: 'DELETE_ACCESS_CODE'
|
|
18215
|
-
result
|
|
18254
|
+
result: {}
|
|
18216
18255
|
}
|
|
18217
18256
|
| {
|
|
18218
18257
|
/** The ID of the action attempt. */
|
|
@@ -18239,7 +18278,9 @@ export interface Routes {
|
|
|
18239
18278
|
status: 'success'
|
|
18240
18279
|
error: null
|
|
18241
18280
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
18242
|
-
result
|
|
18281
|
+
result: {
|
|
18282
|
+
access_code?: any
|
|
18283
|
+
}
|
|
18243
18284
|
}
|
|
18244
18285
|
| {
|
|
18245
18286
|
/** The ID of the action attempt. */
|
|
@@ -18266,7 +18307,9 @@ export interface Routes {
|
|
|
18266
18307
|
status: 'success'
|
|
18267
18308
|
error: null
|
|
18268
18309
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
18269
|
-
result
|
|
18310
|
+
result: {
|
|
18311
|
+
noise_threshold?: any
|
|
18312
|
+
}
|
|
18270
18313
|
}
|
|
18271
18314
|
| {
|
|
18272
18315
|
/** The ID of the action attempt. */
|
|
@@ -18293,7 +18336,7 @@ export interface Routes {
|
|
|
18293
18336
|
status: 'success'
|
|
18294
18337
|
error: null
|
|
18295
18338
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
18296
|
-
result
|
|
18339
|
+
result: {}
|
|
18297
18340
|
}
|
|
18298
18341
|
| {
|
|
18299
18342
|
/** The ID of the action attempt. */
|
|
@@ -18320,7 +18363,9 @@ export interface Routes {
|
|
|
18320
18363
|
status: 'success'
|
|
18321
18364
|
error: null
|
|
18322
18365
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
18323
|
-
result
|
|
18366
|
+
result: {
|
|
18367
|
+
noise_threshold?: any
|
|
18368
|
+
}
|
|
18324
18369
|
}
|
|
18325
18370
|
| {
|
|
18326
18371
|
/** The ID of the action attempt. */
|
|
@@ -18468,7 +18513,7 @@ export interface Routes {
|
|
|
18468
18513
|
/** Snapshot of the card data read from the physical encoder. */
|
|
18469
18514
|
acs_credential_on_encoder: {
|
|
18470
18515
|
/** Date and time the credential was created. */
|
|
18471
|
-
created_at: string
|
|
18516
|
+
created_at: string | null
|
|
18472
18517
|
is_issued: boolean | null
|
|
18473
18518
|
/** Date and time the credential will become useable. */
|
|
18474
18519
|
starts_at: string | null
|
|
@@ -18634,12 +18679,7 @@ export interface Routes {
|
|
|
18634
18679
|
status: 'success'
|
|
18635
18680
|
error: null
|
|
18636
18681
|
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
|
-
}
|
|
18682
|
+
result: {}
|
|
18643
18683
|
}
|
|
18644
18684
|
| {
|
|
18645
18685
|
/** The ID of the action attempt. */
|
|
@@ -18855,7 +18895,7 @@ export interface Routes {
|
|
|
18855
18895
|
status: 'success'
|
|
18856
18896
|
error: null
|
|
18857
18897
|
action_type: 'SYNC_ACCESS_CODES'
|
|
18858
|
-
result
|
|
18898
|
+
result: {}
|
|
18859
18899
|
}
|
|
18860
18900
|
| {
|
|
18861
18901
|
/** The ID of the action attempt. */
|
|
@@ -18882,7 +18922,9 @@ export interface Routes {
|
|
|
18882
18922
|
status: 'success'
|
|
18883
18923
|
error: null
|
|
18884
18924
|
action_type: 'CREATE_ACCESS_CODE'
|
|
18885
|
-
result
|
|
18925
|
+
result: {
|
|
18926
|
+
access_code?: any
|
|
18927
|
+
}
|
|
18886
18928
|
}
|
|
18887
18929
|
| {
|
|
18888
18930
|
/** The ID of the action attempt. */
|
|
@@ -18909,7 +18951,7 @@ export interface Routes {
|
|
|
18909
18951
|
status: 'success'
|
|
18910
18952
|
error: null
|
|
18911
18953
|
action_type: 'DELETE_ACCESS_CODE'
|
|
18912
|
-
result
|
|
18954
|
+
result: {}
|
|
18913
18955
|
}
|
|
18914
18956
|
| {
|
|
18915
18957
|
/** The ID of the action attempt. */
|
|
@@ -18936,7 +18978,9 @@ export interface Routes {
|
|
|
18936
18978
|
status: 'success'
|
|
18937
18979
|
error: null
|
|
18938
18980
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
18939
|
-
result
|
|
18981
|
+
result: {
|
|
18982
|
+
access_code?: any
|
|
18983
|
+
}
|
|
18940
18984
|
}
|
|
18941
18985
|
| {
|
|
18942
18986
|
/** The ID of the action attempt. */
|
|
@@ -18963,7 +19007,9 @@ export interface Routes {
|
|
|
18963
19007
|
status: 'success'
|
|
18964
19008
|
error: null
|
|
18965
19009
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
18966
|
-
result
|
|
19010
|
+
result: {
|
|
19011
|
+
noise_threshold?: any
|
|
19012
|
+
}
|
|
18967
19013
|
}
|
|
18968
19014
|
| {
|
|
18969
19015
|
/** The ID of the action attempt. */
|
|
@@ -18990,7 +19036,7 @@ export interface Routes {
|
|
|
18990
19036
|
status: 'success'
|
|
18991
19037
|
error: null
|
|
18992
19038
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
18993
|
-
result
|
|
19039
|
+
result: {}
|
|
18994
19040
|
}
|
|
18995
19041
|
| {
|
|
18996
19042
|
/** The ID of the action attempt. */
|
|
@@ -19017,7 +19063,9 @@ export interface Routes {
|
|
|
19017
19063
|
status: 'success'
|
|
19018
19064
|
error: null
|
|
19019
19065
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
19020
|
-
result
|
|
19066
|
+
result: {
|
|
19067
|
+
noise_threshold?: any
|
|
19068
|
+
}
|
|
19021
19069
|
}
|
|
19022
19070
|
| {
|
|
19023
19071
|
/** The ID of the action attempt. */
|
|
@@ -19322,7 +19370,7 @@ export interface Routes {
|
|
|
19322
19370
|
/** Snapshot of the card data read from the physical encoder. */
|
|
19323
19371
|
acs_credential_on_encoder: {
|
|
19324
19372
|
/** Date and time the credential was created. */
|
|
19325
|
-
created_at: string
|
|
19373
|
+
created_at: string | null
|
|
19326
19374
|
is_issued: boolean | null
|
|
19327
19375
|
/** Date and time the credential will become useable. */
|
|
19328
19376
|
starts_at: string | null
|
|
@@ -19488,12 +19536,7 @@ export interface Routes {
|
|
|
19488
19536
|
status: 'success'
|
|
19489
19537
|
error: null
|
|
19490
19538
|
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
|
-
}
|
|
19539
|
+
result: {}
|
|
19497
19540
|
}
|
|
19498
19541
|
| {
|
|
19499
19542
|
/** The ID of the action attempt. */
|
|
@@ -19709,7 +19752,7 @@ export interface Routes {
|
|
|
19709
19752
|
status: 'success'
|
|
19710
19753
|
error: null
|
|
19711
19754
|
action_type: 'SYNC_ACCESS_CODES'
|
|
19712
|
-
result
|
|
19755
|
+
result: {}
|
|
19713
19756
|
}
|
|
19714
19757
|
| {
|
|
19715
19758
|
/** The ID of the action attempt. */
|
|
@@ -19736,7 +19779,9 @@ export interface Routes {
|
|
|
19736
19779
|
status: 'success'
|
|
19737
19780
|
error: null
|
|
19738
19781
|
action_type: 'CREATE_ACCESS_CODE'
|
|
19739
|
-
result
|
|
19782
|
+
result: {
|
|
19783
|
+
access_code?: any
|
|
19784
|
+
}
|
|
19740
19785
|
}
|
|
19741
19786
|
| {
|
|
19742
19787
|
/** The ID of the action attempt. */
|
|
@@ -19763,7 +19808,7 @@ export interface Routes {
|
|
|
19763
19808
|
status: 'success'
|
|
19764
19809
|
error: null
|
|
19765
19810
|
action_type: 'DELETE_ACCESS_CODE'
|
|
19766
|
-
result
|
|
19811
|
+
result: {}
|
|
19767
19812
|
}
|
|
19768
19813
|
| {
|
|
19769
19814
|
/** The ID of the action attempt. */
|
|
@@ -19790,7 +19835,9 @@ export interface Routes {
|
|
|
19790
19835
|
status: 'success'
|
|
19791
19836
|
error: null
|
|
19792
19837
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
19793
|
-
result
|
|
19838
|
+
result: {
|
|
19839
|
+
access_code?: any
|
|
19840
|
+
}
|
|
19794
19841
|
}
|
|
19795
19842
|
| {
|
|
19796
19843
|
/** The ID of the action attempt. */
|
|
@@ -19817,7 +19864,9 @@ export interface Routes {
|
|
|
19817
19864
|
status: 'success'
|
|
19818
19865
|
error: null
|
|
19819
19866
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
19820
|
-
result
|
|
19867
|
+
result: {
|
|
19868
|
+
noise_threshold?: any
|
|
19869
|
+
}
|
|
19821
19870
|
}
|
|
19822
19871
|
| {
|
|
19823
19872
|
/** The ID of the action attempt. */
|
|
@@ -19844,7 +19893,7 @@ export interface Routes {
|
|
|
19844
19893
|
status: 'success'
|
|
19845
19894
|
error: null
|
|
19846
19895
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
19847
|
-
result
|
|
19896
|
+
result: {}
|
|
19848
19897
|
}
|
|
19849
19898
|
| {
|
|
19850
19899
|
/** The ID of the action attempt. */
|
|
@@ -19871,7 +19920,9 @@ export interface Routes {
|
|
|
19871
19920
|
status: 'success'
|
|
19872
19921
|
error: null
|
|
19873
19922
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
19874
|
-
result
|
|
19923
|
+
result: {
|
|
19924
|
+
noise_threshold?: any
|
|
19925
|
+
}
|
|
19875
19926
|
}
|
|
19876
19927
|
| {
|
|
19877
19928
|
/** The ID of the action attempt. */
|
|
@@ -19972,7 +20023,7 @@ export interface Routes {
|
|
|
19972
20023
|
/** Snapshot of the card data read from the physical encoder. */
|
|
19973
20024
|
acs_credential_on_encoder: {
|
|
19974
20025
|
/** Date and time the credential was created. */
|
|
19975
|
-
created_at: string
|
|
20026
|
+
created_at: string | null
|
|
19976
20027
|
is_issued: boolean | null
|
|
19977
20028
|
/** Date and time the credential will become useable. */
|
|
19978
20029
|
starts_at: string | null
|
|
@@ -20138,12 +20189,7 @@ export interface Routes {
|
|
|
20138
20189
|
status: 'success'
|
|
20139
20190
|
error: null
|
|
20140
20191
|
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
|
-
}
|
|
20192
|
+
result: {}
|
|
20147
20193
|
}
|
|
20148
20194
|
| {
|
|
20149
20195
|
/** The ID of the action attempt. */
|
|
@@ -20359,7 +20405,7 @@ export interface Routes {
|
|
|
20359
20405
|
status: 'success'
|
|
20360
20406
|
error: null
|
|
20361
20407
|
action_type: 'SYNC_ACCESS_CODES'
|
|
20362
|
-
result
|
|
20408
|
+
result: {}
|
|
20363
20409
|
}
|
|
20364
20410
|
| {
|
|
20365
20411
|
/** The ID of the action attempt. */
|
|
@@ -20386,7 +20432,9 @@ export interface Routes {
|
|
|
20386
20432
|
status: 'success'
|
|
20387
20433
|
error: null
|
|
20388
20434
|
action_type: 'CREATE_ACCESS_CODE'
|
|
20389
|
-
result
|
|
20435
|
+
result: {
|
|
20436
|
+
access_code?: any
|
|
20437
|
+
}
|
|
20390
20438
|
}
|
|
20391
20439
|
| {
|
|
20392
20440
|
/** The ID of the action attempt. */
|
|
@@ -20413,7 +20461,7 @@ export interface Routes {
|
|
|
20413
20461
|
status: 'success'
|
|
20414
20462
|
error: null
|
|
20415
20463
|
action_type: 'DELETE_ACCESS_CODE'
|
|
20416
|
-
result
|
|
20464
|
+
result: {}
|
|
20417
20465
|
}
|
|
20418
20466
|
| {
|
|
20419
20467
|
/** The ID of the action attempt. */
|
|
@@ -20440,7 +20488,9 @@ export interface Routes {
|
|
|
20440
20488
|
status: 'success'
|
|
20441
20489
|
error: null
|
|
20442
20490
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
20443
|
-
result
|
|
20491
|
+
result: {
|
|
20492
|
+
access_code?: any
|
|
20493
|
+
}
|
|
20444
20494
|
}
|
|
20445
20495
|
| {
|
|
20446
20496
|
/** The ID of the action attempt. */
|
|
@@ -20467,7 +20517,9 @@ export interface Routes {
|
|
|
20467
20517
|
status: 'success'
|
|
20468
20518
|
error: null
|
|
20469
20519
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
20470
|
-
result
|
|
20520
|
+
result: {
|
|
20521
|
+
noise_threshold?: any
|
|
20522
|
+
}
|
|
20471
20523
|
}
|
|
20472
20524
|
| {
|
|
20473
20525
|
/** The ID of the action attempt. */
|
|
@@ -20494,7 +20546,7 @@ export interface Routes {
|
|
|
20494
20546
|
status: 'success'
|
|
20495
20547
|
error: null
|
|
20496
20548
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
20497
|
-
result
|
|
20549
|
+
result: {}
|
|
20498
20550
|
}
|
|
20499
20551
|
| {
|
|
20500
20552
|
/** The ID of the action attempt. */
|
|
@@ -20521,7 +20573,9 @@ export interface Routes {
|
|
|
20521
20573
|
status: 'success'
|
|
20522
20574
|
error: null
|
|
20523
20575
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
20524
|
-
result
|
|
20576
|
+
result: {
|
|
20577
|
+
noise_threshold?: any
|
|
20578
|
+
}
|
|
20525
20579
|
}
|
|
20526
20580
|
| {
|
|
20527
20581
|
/** The ID of the action attempt. */
|
|
@@ -20989,6 +21043,7 @@ export interface Routes {
|
|
|
20989
21043
|
| {
|
|
20990
21044
|
gadget_name: string
|
|
20991
21045
|
gadget_id: string
|
|
21046
|
+
_member_group_id?: string | undefined
|
|
20992
21047
|
}
|
|
20993
21048
|
| undefined
|
|
20994
21049
|
}) &
|
|
@@ -21280,7 +21335,7 @@ export interface Routes {
|
|
|
21280
21335
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21281
21336
|
acs_credential_on_encoder: {
|
|
21282
21337
|
/** Date and time the credential was created. */
|
|
21283
|
-
created_at: string
|
|
21338
|
+
created_at: string | null
|
|
21284
21339
|
is_issued: boolean | null
|
|
21285
21340
|
/** Date and time the credential will become useable. */
|
|
21286
21341
|
starts_at: string | null
|
|
@@ -21446,12 +21501,7 @@ export interface Routes {
|
|
|
21446
21501
|
status: 'success'
|
|
21447
21502
|
error: null
|
|
21448
21503
|
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
|
-
}
|
|
21504
|
+
result: {}
|
|
21455
21505
|
}
|
|
21456
21506
|
| {
|
|
21457
21507
|
/** The ID of the action attempt. */
|
|
@@ -21667,7 +21717,7 @@ export interface Routes {
|
|
|
21667
21717
|
status: 'success'
|
|
21668
21718
|
error: null
|
|
21669
21719
|
action_type: 'SYNC_ACCESS_CODES'
|
|
21670
|
-
result
|
|
21720
|
+
result: {}
|
|
21671
21721
|
}
|
|
21672
21722
|
| {
|
|
21673
21723
|
/** The ID of the action attempt. */
|
|
@@ -21694,7 +21744,9 @@ export interface Routes {
|
|
|
21694
21744
|
status: 'success'
|
|
21695
21745
|
error: null
|
|
21696
21746
|
action_type: 'CREATE_ACCESS_CODE'
|
|
21697
|
-
result
|
|
21747
|
+
result: {
|
|
21748
|
+
access_code?: any
|
|
21749
|
+
}
|
|
21698
21750
|
}
|
|
21699
21751
|
| {
|
|
21700
21752
|
/** The ID of the action attempt. */
|
|
@@ -21721,7 +21773,7 @@ export interface Routes {
|
|
|
21721
21773
|
status: 'success'
|
|
21722
21774
|
error: null
|
|
21723
21775
|
action_type: 'DELETE_ACCESS_CODE'
|
|
21724
|
-
result
|
|
21776
|
+
result: {}
|
|
21725
21777
|
}
|
|
21726
21778
|
| {
|
|
21727
21779
|
/** The ID of the action attempt. */
|
|
@@ -21748,7 +21800,9 @@ export interface Routes {
|
|
|
21748
21800
|
status: 'success'
|
|
21749
21801
|
error: null
|
|
21750
21802
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
21751
|
-
result
|
|
21803
|
+
result: {
|
|
21804
|
+
access_code?: any
|
|
21805
|
+
}
|
|
21752
21806
|
}
|
|
21753
21807
|
| {
|
|
21754
21808
|
/** The ID of the action attempt. */
|
|
@@ -21775,7 +21829,9 @@ export interface Routes {
|
|
|
21775
21829
|
status: 'success'
|
|
21776
21830
|
error: null
|
|
21777
21831
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
21778
|
-
result
|
|
21832
|
+
result: {
|
|
21833
|
+
noise_threshold?: any
|
|
21834
|
+
}
|
|
21779
21835
|
}
|
|
21780
21836
|
| {
|
|
21781
21837
|
/** The ID of the action attempt. */
|
|
@@ -21802,7 +21858,7 @@ export interface Routes {
|
|
|
21802
21858
|
status: 'success'
|
|
21803
21859
|
error: null
|
|
21804
21860
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
21805
|
-
result
|
|
21861
|
+
result: {}
|
|
21806
21862
|
}
|
|
21807
21863
|
| {
|
|
21808
21864
|
/** The ID of the action attempt. */
|
|
@@ -21829,7 +21885,9 @@ export interface Routes {
|
|
|
21829
21885
|
status: 'success'
|
|
21830
21886
|
error: null
|
|
21831
21887
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
21832
|
-
result
|
|
21888
|
+
result: {
|
|
21889
|
+
noise_threshold?: any
|
|
21890
|
+
}
|
|
21833
21891
|
}
|
|
21834
21892
|
| {
|
|
21835
21893
|
/** The ID of the action attempt. */
|
|
@@ -21932,7 +21990,7 @@ export interface Routes {
|
|
|
21932
21990
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21933
21991
|
acs_credential_on_encoder: {
|
|
21934
21992
|
/** Date and time the credential was created. */
|
|
21935
|
-
created_at: string
|
|
21993
|
+
created_at: string | null
|
|
21936
21994
|
is_issued: boolean | null
|
|
21937
21995
|
/** Date and time the credential will become useable. */
|
|
21938
21996
|
starts_at: string | null
|
|
@@ -22098,12 +22156,7 @@ export interface Routes {
|
|
|
22098
22156
|
status: 'success'
|
|
22099
22157
|
error: null
|
|
22100
22158
|
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
|
-
}
|
|
22159
|
+
result: {}
|
|
22107
22160
|
}
|
|
22108
22161
|
| {
|
|
22109
22162
|
/** The ID of the action attempt. */
|
|
@@ -22319,7 +22372,7 @@ export interface Routes {
|
|
|
22319
22372
|
status: 'success'
|
|
22320
22373
|
error: null
|
|
22321
22374
|
action_type: 'SYNC_ACCESS_CODES'
|
|
22322
|
-
result
|
|
22375
|
+
result: {}
|
|
22323
22376
|
}
|
|
22324
22377
|
| {
|
|
22325
22378
|
/** The ID of the action attempt. */
|
|
@@ -22346,7 +22399,9 @@ export interface Routes {
|
|
|
22346
22399
|
status: 'success'
|
|
22347
22400
|
error: null
|
|
22348
22401
|
action_type: 'CREATE_ACCESS_CODE'
|
|
22349
|
-
result
|
|
22402
|
+
result: {
|
|
22403
|
+
access_code?: any
|
|
22404
|
+
}
|
|
22350
22405
|
}
|
|
22351
22406
|
| {
|
|
22352
22407
|
/** The ID of the action attempt. */
|
|
@@ -22373,7 +22428,7 @@ export interface Routes {
|
|
|
22373
22428
|
status: 'success'
|
|
22374
22429
|
error: null
|
|
22375
22430
|
action_type: 'DELETE_ACCESS_CODE'
|
|
22376
|
-
result
|
|
22431
|
+
result: {}
|
|
22377
22432
|
}
|
|
22378
22433
|
| {
|
|
22379
22434
|
/** The ID of the action attempt. */
|
|
@@ -22400,7 +22455,9 @@ export interface Routes {
|
|
|
22400
22455
|
status: 'success'
|
|
22401
22456
|
error: null
|
|
22402
22457
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
22403
|
-
result
|
|
22458
|
+
result: {
|
|
22459
|
+
access_code?: any
|
|
22460
|
+
}
|
|
22404
22461
|
}
|
|
22405
22462
|
| {
|
|
22406
22463
|
/** The ID of the action attempt. */
|
|
@@ -22427,7 +22484,9 @@ export interface Routes {
|
|
|
22427
22484
|
status: 'success'
|
|
22428
22485
|
error: null
|
|
22429
22486
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
22430
|
-
result
|
|
22487
|
+
result: {
|
|
22488
|
+
noise_threshold?: any
|
|
22489
|
+
}
|
|
22431
22490
|
}
|
|
22432
22491
|
| {
|
|
22433
22492
|
/** The ID of the action attempt. */
|
|
@@ -22454,7 +22513,7 @@ export interface Routes {
|
|
|
22454
22513
|
status: 'success'
|
|
22455
22514
|
error: null
|
|
22456
22515
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
22457
|
-
result
|
|
22516
|
+
result: {}
|
|
22458
22517
|
}
|
|
22459
22518
|
| {
|
|
22460
22519
|
/** The ID of the action attempt. */
|
|
@@ -22481,7 +22540,9 @@ export interface Routes {
|
|
|
22481
22540
|
status: 'success'
|
|
22482
22541
|
error: null
|
|
22483
22542
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
22484
|
-
result
|
|
22543
|
+
result: {
|
|
22544
|
+
noise_threshold?: any
|
|
22545
|
+
}
|
|
22485
22546
|
}
|
|
22486
22547
|
| {
|
|
22487
22548
|
/** The ID of the action attempt. */
|
|
@@ -23075,6 +23136,7 @@ export interface Routes {
|
|
|
23075
23136
|
| {
|
|
23076
23137
|
gadget_name: string
|
|
23077
23138
|
gadget_id: string
|
|
23139
|
+
_member_group_id?: string | undefined
|
|
23078
23140
|
}
|
|
23079
23141
|
| undefined
|
|
23080
23142
|
}) &
|
|
@@ -23977,7 +24039,7 @@ export interface Routes {
|
|
|
23977
24039
|
/** Snapshot of the card data read from the physical encoder. */
|
|
23978
24040
|
acs_credential_on_encoder: {
|
|
23979
24041
|
/** Date and time the credential was created. */
|
|
23980
|
-
created_at: string
|
|
24042
|
+
created_at: string | null
|
|
23981
24043
|
is_issued: boolean | null
|
|
23982
24044
|
/** Date and time the credential will become useable. */
|
|
23983
24045
|
starts_at: string | null
|
|
@@ -24143,12 +24205,7 @@ export interface Routes {
|
|
|
24143
24205
|
status: 'success'
|
|
24144
24206
|
error: null
|
|
24145
24207
|
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
|
-
}
|
|
24208
|
+
result: {}
|
|
24152
24209
|
}
|
|
24153
24210
|
| {
|
|
24154
24211
|
/** The ID of the action attempt. */
|
|
@@ -24364,7 +24421,7 @@ export interface Routes {
|
|
|
24364
24421
|
status: 'success'
|
|
24365
24422
|
error: null
|
|
24366
24423
|
action_type: 'SYNC_ACCESS_CODES'
|
|
24367
|
-
result
|
|
24424
|
+
result: {}
|
|
24368
24425
|
}
|
|
24369
24426
|
| {
|
|
24370
24427
|
/** The ID of the action attempt. */
|
|
@@ -24391,7 +24448,9 @@ export interface Routes {
|
|
|
24391
24448
|
status: 'success'
|
|
24392
24449
|
error: null
|
|
24393
24450
|
action_type: 'CREATE_ACCESS_CODE'
|
|
24394
|
-
result
|
|
24451
|
+
result: {
|
|
24452
|
+
access_code?: any
|
|
24453
|
+
}
|
|
24395
24454
|
}
|
|
24396
24455
|
| {
|
|
24397
24456
|
/** The ID of the action attempt. */
|
|
@@ -24418,7 +24477,7 @@ export interface Routes {
|
|
|
24418
24477
|
status: 'success'
|
|
24419
24478
|
error: null
|
|
24420
24479
|
action_type: 'DELETE_ACCESS_CODE'
|
|
24421
|
-
result
|
|
24480
|
+
result: {}
|
|
24422
24481
|
}
|
|
24423
24482
|
| {
|
|
24424
24483
|
/** The ID of the action attempt. */
|
|
@@ -24445,7 +24504,9 @@ export interface Routes {
|
|
|
24445
24504
|
status: 'success'
|
|
24446
24505
|
error: null
|
|
24447
24506
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
24448
|
-
result
|
|
24507
|
+
result: {
|
|
24508
|
+
access_code?: any
|
|
24509
|
+
}
|
|
24449
24510
|
}
|
|
24450
24511
|
| {
|
|
24451
24512
|
/** The ID of the action attempt. */
|
|
@@ -24472,7 +24533,9 @@ export interface Routes {
|
|
|
24472
24533
|
status: 'success'
|
|
24473
24534
|
error: null
|
|
24474
24535
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
24475
|
-
result
|
|
24536
|
+
result: {
|
|
24537
|
+
noise_threshold?: any
|
|
24538
|
+
}
|
|
24476
24539
|
}
|
|
24477
24540
|
| {
|
|
24478
24541
|
/** The ID of the action attempt. */
|
|
@@ -24499,7 +24562,7 @@ export interface Routes {
|
|
|
24499
24562
|
status: 'success'
|
|
24500
24563
|
error: null
|
|
24501
24564
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
24502
|
-
result
|
|
24565
|
+
result: {}
|
|
24503
24566
|
}
|
|
24504
24567
|
| {
|
|
24505
24568
|
/** The ID of the action attempt. */
|
|
@@ -24526,7 +24589,9 @@ export interface Routes {
|
|
|
24526
24589
|
status: 'success'
|
|
24527
24590
|
error: null
|
|
24528
24591
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
24529
|
-
result
|
|
24592
|
+
result: {
|
|
24593
|
+
noise_threshold?: any
|
|
24594
|
+
}
|
|
24530
24595
|
}
|
|
24531
24596
|
| {
|
|
24532
24597
|
/** The ID of the action attempt. */
|
|
@@ -24746,7 +24811,7 @@ export interface Routes {
|
|
|
24746
24811
|
/** Snapshot of the card data read from the physical encoder. */
|
|
24747
24812
|
acs_credential_on_encoder: {
|
|
24748
24813
|
/** Date and time the credential was created. */
|
|
24749
|
-
created_at: string
|
|
24814
|
+
created_at: string | null
|
|
24750
24815
|
is_issued: boolean | null
|
|
24751
24816
|
/** Date and time the credential will become useable. */
|
|
24752
24817
|
starts_at: string | null
|
|
@@ -24912,12 +24977,7 @@ export interface Routes {
|
|
|
24912
24977
|
status: 'success'
|
|
24913
24978
|
error: null
|
|
24914
24979
|
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
|
-
}
|
|
24980
|
+
result: {}
|
|
24921
24981
|
}
|
|
24922
24982
|
| {
|
|
24923
24983
|
/** The ID of the action attempt. */
|
|
@@ -25133,7 +25193,7 @@ export interface Routes {
|
|
|
25133
25193
|
status: 'success'
|
|
25134
25194
|
error: null
|
|
25135
25195
|
action_type: 'SYNC_ACCESS_CODES'
|
|
25136
|
-
result
|
|
25196
|
+
result: {}
|
|
25137
25197
|
}
|
|
25138
25198
|
| {
|
|
25139
25199
|
/** The ID of the action attempt. */
|
|
@@ -25160,7 +25220,9 @@ export interface Routes {
|
|
|
25160
25220
|
status: 'success'
|
|
25161
25221
|
error: null
|
|
25162
25222
|
action_type: 'CREATE_ACCESS_CODE'
|
|
25163
|
-
result
|
|
25223
|
+
result: {
|
|
25224
|
+
access_code?: any
|
|
25225
|
+
}
|
|
25164
25226
|
}
|
|
25165
25227
|
| {
|
|
25166
25228
|
/** The ID of the action attempt. */
|
|
@@ -25187,7 +25249,7 @@ export interface Routes {
|
|
|
25187
25249
|
status: 'success'
|
|
25188
25250
|
error: null
|
|
25189
25251
|
action_type: 'DELETE_ACCESS_CODE'
|
|
25190
|
-
result
|
|
25252
|
+
result: {}
|
|
25191
25253
|
}
|
|
25192
25254
|
| {
|
|
25193
25255
|
/** The ID of the action attempt. */
|
|
@@ -25214,7 +25276,9 @@ export interface Routes {
|
|
|
25214
25276
|
status: 'success'
|
|
25215
25277
|
error: null
|
|
25216
25278
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
25217
|
-
result
|
|
25279
|
+
result: {
|
|
25280
|
+
access_code?: any
|
|
25281
|
+
}
|
|
25218
25282
|
}
|
|
25219
25283
|
| {
|
|
25220
25284
|
/** The ID of the action attempt. */
|
|
@@ -25241,7 +25305,9 @@ export interface Routes {
|
|
|
25241
25305
|
status: 'success'
|
|
25242
25306
|
error: null
|
|
25243
25307
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
25244
|
-
result
|
|
25308
|
+
result: {
|
|
25309
|
+
noise_threshold?: any
|
|
25310
|
+
}
|
|
25245
25311
|
}
|
|
25246
25312
|
| {
|
|
25247
25313
|
/** The ID of the action attempt. */
|
|
@@ -25268,7 +25334,7 @@ export interface Routes {
|
|
|
25268
25334
|
status: 'success'
|
|
25269
25335
|
error: null
|
|
25270
25336
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
25271
|
-
result
|
|
25337
|
+
result: {}
|
|
25272
25338
|
}
|
|
25273
25339
|
| {
|
|
25274
25340
|
/** The ID of the action attempt. */
|
|
@@ -25295,7 +25361,9 @@ export interface Routes {
|
|
|
25295
25361
|
status: 'success'
|
|
25296
25362
|
error: null
|
|
25297
25363
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
25298
|
-
result
|
|
25364
|
+
result: {
|
|
25365
|
+
noise_threshold?: any
|
|
25366
|
+
}
|
|
25299
25367
|
}
|
|
25300
25368
|
| {
|
|
25301
25369
|
/** The ID of the action attempt. */
|
|
@@ -25931,6 +25999,7 @@ export interface Routes {
|
|
|
25931
25999
|
| {
|
|
25932
26000
|
gadget_name: string
|
|
25933
26001
|
gadget_id: string
|
|
26002
|
+
_member_group_id?: string | undefined
|
|
25934
26003
|
}
|
|
25935
26004
|
| undefined
|
|
25936
26005
|
}) &
|
|
@@ -26546,6 +26615,7 @@ export interface Routes {
|
|
|
26546
26615
|
| {
|
|
26547
26616
|
gadget_name: string
|
|
26548
26617
|
gadget_id: string
|
|
26618
|
+
_member_group_id?: string | undefined
|
|
26549
26619
|
}
|
|
26550
26620
|
| undefined
|
|
26551
26621
|
}) &
|
|
@@ -27262,7 +27332,7 @@ export interface Routes {
|
|
|
27262
27332
|
/** Snapshot of the card data read from the physical encoder. */
|
|
27263
27333
|
acs_credential_on_encoder: {
|
|
27264
27334
|
/** Date and time the credential was created. */
|
|
27265
|
-
created_at: string
|
|
27335
|
+
created_at: string | null
|
|
27266
27336
|
is_issued: boolean | null
|
|
27267
27337
|
/** Date and time the credential will become useable. */
|
|
27268
27338
|
starts_at: string | null
|
|
@@ -27428,12 +27498,7 @@ export interface Routes {
|
|
|
27428
27498
|
status: 'success'
|
|
27429
27499
|
error: null
|
|
27430
27500
|
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
|
-
}
|
|
27501
|
+
result: {}
|
|
27437
27502
|
}
|
|
27438
27503
|
| {
|
|
27439
27504
|
/** The ID of the action attempt. */
|
|
@@ -27649,7 +27714,7 @@ export interface Routes {
|
|
|
27649
27714
|
status: 'success'
|
|
27650
27715
|
error: null
|
|
27651
27716
|
action_type: 'SYNC_ACCESS_CODES'
|
|
27652
|
-
result
|
|
27717
|
+
result: {}
|
|
27653
27718
|
}
|
|
27654
27719
|
| {
|
|
27655
27720
|
/** The ID of the action attempt. */
|
|
@@ -27676,7 +27741,9 @@ export interface Routes {
|
|
|
27676
27741
|
status: 'success'
|
|
27677
27742
|
error: null
|
|
27678
27743
|
action_type: 'CREATE_ACCESS_CODE'
|
|
27679
|
-
result
|
|
27744
|
+
result: {
|
|
27745
|
+
access_code?: any
|
|
27746
|
+
}
|
|
27680
27747
|
}
|
|
27681
27748
|
| {
|
|
27682
27749
|
/** The ID of the action attempt. */
|
|
@@ -27703,7 +27770,7 @@ export interface Routes {
|
|
|
27703
27770
|
status: 'success'
|
|
27704
27771
|
error: null
|
|
27705
27772
|
action_type: 'DELETE_ACCESS_CODE'
|
|
27706
|
-
result
|
|
27773
|
+
result: {}
|
|
27707
27774
|
}
|
|
27708
27775
|
| {
|
|
27709
27776
|
/** The ID of the action attempt. */
|
|
@@ -27730,7 +27797,9 @@ export interface Routes {
|
|
|
27730
27797
|
status: 'success'
|
|
27731
27798
|
error: null
|
|
27732
27799
|
action_type: 'UPDATE_ACCESS_CODE'
|
|
27733
|
-
result
|
|
27800
|
+
result: {
|
|
27801
|
+
access_code?: any
|
|
27802
|
+
}
|
|
27734
27803
|
}
|
|
27735
27804
|
| {
|
|
27736
27805
|
/** The ID of the action attempt. */
|
|
@@ -27757,7 +27826,9 @@ export interface Routes {
|
|
|
27757
27826
|
status: 'success'
|
|
27758
27827
|
error: null
|
|
27759
27828
|
action_type: 'CREATE_NOISE_THRESHOLD'
|
|
27760
|
-
result
|
|
27829
|
+
result: {
|
|
27830
|
+
noise_threshold?: any
|
|
27831
|
+
}
|
|
27761
27832
|
}
|
|
27762
27833
|
| {
|
|
27763
27834
|
/** The ID of the action attempt. */
|
|
@@ -27784,7 +27855,7 @@ export interface Routes {
|
|
|
27784
27855
|
status: 'success'
|
|
27785
27856
|
error: null
|
|
27786
27857
|
action_type: 'DELETE_NOISE_THRESHOLD'
|
|
27787
|
-
result
|
|
27858
|
+
result: {}
|
|
27788
27859
|
}
|
|
27789
27860
|
| {
|
|
27790
27861
|
/** The ID of the action attempt. */
|
|
@@ -27811,7 +27882,9 @@ export interface Routes {
|
|
|
27811
27882
|
status: 'success'
|
|
27812
27883
|
error: null
|
|
27813
27884
|
action_type: 'UPDATE_NOISE_THRESHOLD'
|
|
27814
|
-
result
|
|
27885
|
+
result: {
|
|
27886
|
+
noise_threshold?: any
|
|
27887
|
+
}
|
|
27815
27888
|
}
|
|
27816
27889
|
| {
|
|
27817
27890
|
/** The ID of the action attempt. */
|