@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
package/dist/connect.d.cts
CHANGED
|
@@ -1718,7 +1718,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1718
1718
|
action_type: z.ZodLiteral<"SCAN_CARD">;
|
|
1719
1719
|
result: z.ZodObject<{
|
|
1720
1720
|
acs_credential_on_encoder: z.ZodObject<{
|
|
1721
|
-
created_at: z.ZodString
|
|
1721
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
1722
1722
|
is_issued: z.ZodNullable<z.ZodBoolean>;
|
|
1723
1723
|
starts_at: z.ZodNullable<z.ZodString>;
|
|
1724
1724
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
@@ -1761,7 +1761,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1761
1761
|
card_holder?: string | undefined;
|
|
1762
1762
|
}>>;
|
|
1763
1763
|
}, "strip", z.ZodTypeAny, {
|
|
1764
|
-
created_at: string;
|
|
1764
|
+
created_at: string | null;
|
|
1765
1765
|
starts_at: string | null;
|
|
1766
1766
|
ends_at: string | null;
|
|
1767
1767
|
card_number: string | null;
|
|
@@ -1780,7 +1780,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1780
1780
|
card_holder?: string | undefined;
|
|
1781
1781
|
} | undefined;
|
|
1782
1782
|
}, {
|
|
1783
|
-
created_at: string;
|
|
1783
|
+
created_at: string | null;
|
|
1784
1784
|
starts_at: string | null;
|
|
1785
1785
|
ends_at: string | null;
|
|
1786
1786
|
card_number: string | null;
|
|
@@ -2104,7 +2104,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2104
2104
|
}>]>>;
|
|
2105
2105
|
}, "strip", z.ZodTypeAny, {
|
|
2106
2106
|
acs_credential_on_encoder: {
|
|
2107
|
-
created_at: string;
|
|
2107
|
+
created_at: string | null;
|
|
2108
2108
|
starts_at: string | null;
|
|
2109
2109
|
ends_at: string | null;
|
|
2110
2110
|
card_number: string | null;
|
|
@@ -2206,7 +2206,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2206
2206
|
} | null;
|
|
2207
2207
|
}, {
|
|
2208
2208
|
acs_credential_on_encoder: {
|
|
2209
|
-
created_at: string;
|
|
2209
|
+
created_at: string | null;
|
|
2210
2210
|
starts_at: string | null;
|
|
2211
2211
|
ends_at: string | null;
|
|
2212
2212
|
card_number: string | null;
|
|
@@ -2313,7 +2313,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2313
2313
|
error: null;
|
|
2314
2314
|
result: {
|
|
2315
2315
|
acs_credential_on_encoder: {
|
|
2316
|
-
created_at: string;
|
|
2316
|
+
created_at: string | null;
|
|
2317
2317
|
starts_at: string | null;
|
|
2318
2318
|
ends_at: string | null;
|
|
2319
2319
|
card_number: string | null;
|
|
@@ -2421,7 +2421,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2421
2421
|
error: null;
|
|
2422
2422
|
result: {
|
|
2423
2423
|
acs_credential_on_encoder: {
|
|
2424
|
-
created_at: string;
|
|
2424
|
+
created_at: string | null;
|
|
2425
2425
|
starts_at: string | null;
|
|
2426
2426
|
ends_at: string | null;
|
|
2427
2427
|
card_number: string | null;
|
|
@@ -2588,33 +2588,18 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2588
2588
|
error: z.ZodNull;
|
|
2589
2589
|
}>, {
|
|
2590
2590
|
action_type: z.ZodLiteral<"ENCODE_CARD">;
|
|
2591
|
-
result: z.ZodObject<{
|
|
2592
|
-
acs_credential_id: z.ZodNullable<z.ZodString>;
|
|
2593
|
-
card_number: z.ZodNullable<z.ZodString>;
|
|
2594
|
-
}, "strip", z.ZodTypeAny, {
|
|
2595
|
-
acs_credential_id: string | null;
|
|
2596
|
-
card_number: string | null;
|
|
2597
|
-
}, {
|
|
2598
|
-
acs_credential_id: string | null;
|
|
2599
|
-
card_number: string | null;
|
|
2600
|
-
}>;
|
|
2591
|
+
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2601
2592
|
}>, "strip", z.ZodTypeAny, {
|
|
2602
2593
|
status: "success";
|
|
2603
2594
|
action_attempt_id: string;
|
|
2604
2595
|
error: null;
|
|
2605
|
-
result: {
|
|
2606
|
-
acs_credential_id: string | null;
|
|
2607
|
-
card_number: string | null;
|
|
2608
|
-
};
|
|
2596
|
+
result: {};
|
|
2609
2597
|
action_type: "ENCODE_CARD";
|
|
2610
2598
|
}, {
|
|
2611
2599
|
status: "success";
|
|
2612
2600
|
action_attempt_id: string;
|
|
2613
2601
|
error: null;
|
|
2614
|
-
result: {
|
|
2615
|
-
acs_credential_id: string | null;
|
|
2616
|
-
card_number: string | null;
|
|
2617
|
-
};
|
|
2602
|
+
result: {};
|
|
2618
2603
|
action_type: "ENCODE_CARD";
|
|
2619
2604
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2620
2605
|
action_attempt_id: z.ZodString;
|
|
@@ -3227,19 +3212,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3227
3212
|
error: z.ZodNull;
|
|
3228
3213
|
}>, {
|
|
3229
3214
|
action_type: z.ZodLiteral<"SYNC_ACCESS_CODES">;
|
|
3230
|
-
result: z.
|
|
3215
|
+
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
3231
3216
|
}>, "strip", z.ZodTypeAny, {
|
|
3232
3217
|
status: "success";
|
|
3233
3218
|
action_attempt_id: string;
|
|
3234
3219
|
error: null;
|
|
3220
|
+
result: {};
|
|
3235
3221
|
action_type: "SYNC_ACCESS_CODES";
|
|
3236
|
-
result?: any;
|
|
3237
3222
|
}, {
|
|
3238
3223
|
status: "success";
|
|
3239
3224
|
action_attempt_id: string;
|
|
3240
3225
|
error: null;
|
|
3226
|
+
result: {};
|
|
3241
3227
|
action_type: "SYNC_ACCESS_CODES";
|
|
3242
|
-
result?: any;
|
|
3243
3228
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3244
3229
|
action_attempt_id: z.ZodString;
|
|
3245
3230
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3305,19 +3290,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3305
3290
|
error: z.ZodNull;
|
|
3306
3291
|
}>, {
|
|
3307
3292
|
action_type: z.ZodLiteral<"CREATE_ACCESS_CODE">;
|
|
3308
|
-
result: z.
|
|
3293
|
+
result: z.ZodObject<{
|
|
3294
|
+
access_code: z.ZodAny;
|
|
3295
|
+
}, "strip", z.ZodTypeAny, {
|
|
3296
|
+
access_code?: any;
|
|
3297
|
+
}, {
|
|
3298
|
+
access_code?: any;
|
|
3299
|
+
}>;
|
|
3309
3300
|
}>, "strip", z.ZodTypeAny, {
|
|
3310
3301
|
status: "success";
|
|
3311
3302
|
action_attempt_id: string;
|
|
3312
3303
|
error: null;
|
|
3304
|
+
result: {
|
|
3305
|
+
access_code?: any;
|
|
3306
|
+
};
|
|
3313
3307
|
action_type: "CREATE_ACCESS_CODE";
|
|
3314
|
-
result?: any;
|
|
3315
3308
|
}, {
|
|
3316
3309
|
status: "success";
|
|
3317
3310
|
action_attempt_id: string;
|
|
3318
3311
|
error: null;
|
|
3312
|
+
result: {
|
|
3313
|
+
access_code?: any;
|
|
3314
|
+
};
|
|
3319
3315
|
action_type: "CREATE_ACCESS_CODE";
|
|
3320
|
-
result?: any;
|
|
3321
3316
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3322
3317
|
action_attempt_id: z.ZodString;
|
|
3323
3318
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3383,19 +3378,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3383
3378
|
error: z.ZodNull;
|
|
3384
3379
|
}>, {
|
|
3385
3380
|
action_type: z.ZodLiteral<"DELETE_ACCESS_CODE">;
|
|
3386
|
-
result: z.
|
|
3381
|
+
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
3387
3382
|
}>, "strip", z.ZodTypeAny, {
|
|
3388
3383
|
status: "success";
|
|
3389
3384
|
action_attempt_id: string;
|
|
3390
3385
|
error: null;
|
|
3386
|
+
result: {};
|
|
3391
3387
|
action_type: "DELETE_ACCESS_CODE";
|
|
3392
|
-
result?: any;
|
|
3393
3388
|
}, {
|
|
3394
3389
|
status: "success";
|
|
3395
3390
|
action_attempt_id: string;
|
|
3396
3391
|
error: null;
|
|
3392
|
+
result: {};
|
|
3397
3393
|
action_type: "DELETE_ACCESS_CODE";
|
|
3398
|
-
result?: any;
|
|
3399
3394
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3400
3395
|
action_attempt_id: z.ZodString;
|
|
3401
3396
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3461,19 +3456,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3461
3456
|
error: z.ZodNull;
|
|
3462
3457
|
}>, {
|
|
3463
3458
|
action_type: z.ZodLiteral<"UPDATE_ACCESS_CODE">;
|
|
3464
|
-
result: z.
|
|
3459
|
+
result: z.ZodObject<{
|
|
3460
|
+
access_code: z.ZodAny;
|
|
3461
|
+
}, "strip", z.ZodTypeAny, {
|
|
3462
|
+
access_code?: any;
|
|
3463
|
+
}, {
|
|
3464
|
+
access_code?: any;
|
|
3465
|
+
}>;
|
|
3465
3466
|
}>, "strip", z.ZodTypeAny, {
|
|
3466
3467
|
status: "success";
|
|
3467
3468
|
action_attempt_id: string;
|
|
3468
3469
|
error: null;
|
|
3470
|
+
result: {
|
|
3471
|
+
access_code?: any;
|
|
3472
|
+
};
|
|
3469
3473
|
action_type: "UPDATE_ACCESS_CODE";
|
|
3470
|
-
result?: any;
|
|
3471
3474
|
}, {
|
|
3472
3475
|
status: "success";
|
|
3473
3476
|
action_attempt_id: string;
|
|
3474
3477
|
error: null;
|
|
3478
|
+
result: {
|
|
3479
|
+
access_code?: any;
|
|
3480
|
+
};
|
|
3475
3481
|
action_type: "UPDATE_ACCESS_CODE";
|
|
3476
|
-
result?: any;
|
|
3477
3482
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3478
3483
|
action_attempt_id: z.ZodString;
|
|
3479
3484
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3539,19 +3544,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3539
3544
|
error: z.ZodNull;
|
|
3540
3545
|
}>, {
|
|
3541
3546
|
action_type: z.ZodLiteral<"CREATE_NOISE_THRESHOLD">;
|
|
3542
|
-
result: z.
|
|
3547
|
+
result: z.ZodObject<{
|
|
3548
|
+
noise_threshold: z.ZodAny;
|
|
3549
|
+
}, "strip", z.ZodTypeAny, {
|
|
3550
|
+
noise_threshold?: any;
|
|
3551
|
+
}, {
|
|
3552
|
+
noise_threshold?: any;
|
|
3553
|
+
}>;
|
|
3543
3554
|
}>, "strip", z.ZodTypeAny, {
|
|
3544
3555
|
status: "success";
|
|
3545
3556
|
action_attempt_id: string;
|
|
3546
3557
|
error: null;
|
|
3558
|
+
result: {
|
|
3559
|
+
noise_threshold?: any;
|
|
3560
|
+
};
|
|
3547
3561
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
3548
|
-
result?: any;
|
|
3549
3562
|
}, {
|
|
3550
3563
|
status: "success";
|
|
3551
3564
|
action_attempt_id: string;
|
|
3552
3565
|
error: null;
|
|
3566
|
+
result: {
|
|
3567
|
+
noise_threshold?: any;
|
|
3568
|
+
};
|
|
3553
3569
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
3554
|
-
result?: any;
|
|
3555
3570
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3556
3571
|
action_attempt_id: z.ZodString;
|
|
3557
3572
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3617,19 +3632,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3617
3632
|
error: z.ZodNull;
|
|
3618
3633
|
}>, {
|
|
3619
3634
|
action_type: z.ZodLiteral<"DELETE_NOISE_THRESHOLD">;
|
|
3620
|
-
result: z.
|
|
3635
|
+
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
3621
3636
|
}>, "strip", z.ZodTypeAny, {
|
|
3622
3637
|
status: "success";
|
|
3623
3638
|
action_attempt_id: string;
|
|
3624
3639
|
error: null;
|
|
3640
|
+
result: {};
|
|
3625
3641
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
3626
|
-
result?: any;
|
|
3627
3642
|
}, {
|
|
3628
3643
|
status: "success";
|
|
3629
3644
|
action_attempt_id: string;
|
|
3630
3645
|
error: null;
|
|
3646
|
+
result: {};
|
|
3631
3647
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
3632
|
-
result?: any;
|
|
3633
3648
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3634
3649
|
action_attempt_id: z.ZodString;
|
|
3635
3650
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3695,19 +3710,29 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3695
3710
|
error: z.ZodNull;
|
|
3696
3711
|
}>, {
|
|
3697
3712
|
action_type: z.ZodLiteral<"UPDATE_NOISE_THRESHOLD">;
|
|
3698
|
-
result: z.
|
|
3713
|
+
result: z.ZodObject<{
|
|
3714
|
+
noise_threshold: z.ZodAny;
|
|
3715
|
+
}, "strip", z.ZodTypeAny, {
|
|
3716
|
+
noise_threshold?: any;
|
|
3717
|
+
}, {
|
|
3718
|
+
noise_threshold?: any;
|
|
3719
|
+
}>;
|
|
3699
3720
|
}>, "strip", z.ZodTypeAny, {
|
|
3700
3721
|
status: "success";
|
|
3701
3722
|
action_attempt_id: string;
|
|
3702
3723
|
error: null;
|
|
3724
|
+
result: {
|
|
3725
|
+
noise_threshold?: any;
|
|
3726
|
+
};
|
|
3703
3727
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
3704
|
-
result?: any;
|
|
3705
3728
|
}, {
|
|
3706
3729
|
status: "success";
|
|
3707
3730
|
action_attempt_id: string;
|
|
3708
3731
|
error: null;
|
|
3732
|
+
result: {
|
|
3733
|
+
noise_threshold?: any;
|
|
3734
|
+
};
|
|
3709
3735
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
3710
|
-
result?: any;
|
|
3711
3736
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3712
3737
|
action_attempt_id: z.ZodString;
|
|
3713
3738
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3747,6 +3772,55 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3747
3772
|
}>]>;
|
|
3748
3773
|
type ActionAttempt = z.infer<typeof action_attempt>;
|
|
3749
3774
|
|
|
3775
|
+
declare const common_pending_action_attempt: z.ZodObject<z.objectUtil.extendShape<{
|
|
3776
|
+
action_attempt_id: z.ZodString;
|
|
3777
|
+
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
3778
|
+
}, {
|
|
3779
|
+
status: z.ZodLiteral<"pending">;
|
|
3780
|
+
result: z.ZodNull;
|
|
3781
|
+
error: z.ZodNull;
|
|
3782
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3783
|
+
status: "pending";
|
|
3784
|
+
action_attempt_id: string;
|
|
3785
|
+
error: null;
|
|
3786
|
+
result: null;
|
|
3787
|
+
}, {
|
|
3788
|
+
status: "pending";
|
|
3789
|
+
action_attempt_id: string;
|
|
3790
|
+
error: null;
|
|
3791
|
+
result: null;
|
|
3792
|
+
}>;
|
|
3793
|
+
declare const common_succeeded_action_attempt: z.ZodObject<z.objectUtil.extendShape<{
|
|
3794
|
+
action_attempt_id: z.ZodString;
|
|
3795
|
+
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
3796
|
+
}, {
|
|
3797
|
+
status: z.ZodLiteral<"success">;
|
|
3798
|
+
error: z.ZodNull;
|
|
3799
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3800
|
+
status: "success";
|
|
3801
|
+
action_attempt_id: string;
|
|
3802
|
+
error: null;
|
|
3803
|
+
}, {
|
|
3804
|
+
status: "success";
|
|
3805
|
+
action_attempt_id: string;
|
|
3806
|
+
error: null;
|
|
3807
|
+
}>;
|
|
3808
|
+
declare const common_failed_action_attempt: z.ZodObject<z.objectUtil.extendShape<{
|
|
3809
|
+
action_attempt_id: z.ZodString;
|
|
3810
|
+
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
3811
|
+
}, {
|
|
3812
|
+
status: z.ZodLiteral<"error">;
|
|
3813
|
+
result: z.ZodNull;
|
|
3814
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3815
|
+
status: "error";
|
|
3816
|
+
action_attempt_id: string;
|
|
3817
|
+
result: null;
|
|
3818
|
+
}, {
|
|
3819
|
+
status: "error";
|
|
3820
|
+
action_attempt_id: string;
|
|
3821
|
+
result: null;
|
|
3822
|
+
}>;
|
|
3823
|
+
|
|
3750
3824
|
declare const client_session: z.ZodObject<{
|
|
3751
3825
|
client_session_id: z.ZodString;
|
|
3752
3826
|
workspace_id: z.ZodString;
|
|
@@ -4873,12 +4947,15 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4873
4947
|
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
4874
4948
|
gadget_name: z.ZodString;
|
|
4875
4949
|
gadget_id: z.ZodString;
|
|
4950
|
+
_member_group_id: z.ZodOptional<z.ZodString>;
|
|
4876
4951
|
}, "strip", z.ZodTypeAny, {
|
|
4877
4952
|
gadget_name: string;
|
|
4878
4953
|
gadget_id: string;
|
|
4954
|
+
_member_group_id?: string | undefined;
|
|
4879
4955
|
}, {
|
|
4880
4956
|
gadget_name: string;
|
|
4881
4957
|
gadget_id: string;
|
|
4958
|
+
_member_group_id?: string | undefined;
|
|
4882
4959
|
}>>;
|
|
4883
4960
|
}, "strip", z.ZodTypeAny, {
|
|
4884
4961
|
august_metadata?: {
|
|
@@ -5088,6 +5165,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5088
5165
|
akiles_metadata?: {
|
|
5089
5166
|
gadget_name: string;
|
|
5090
5167
|
gadget_id: string;
|
|
5168
|
+
_member_group_id?: string | undefined;
|
|
5091
5169
|
} | undefined;
|
|
5092
5170
|
}, {
|
|
5093
5171
|
august_metadata?: {
|
|
@@ -5297,6 +5375,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5297
5375
|
akiles_metadata?: {
|
|
5298
5376
|
gadget_name: string;
|
|
5299
5377
|
gadget_id: string;
|
|
5378
|
+
_member_group_id?: string | undefined;
|
|
5300
5379
|
} | undefined;
|
|
5301
5380
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
5302
5381
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -6033,6 +6112,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6033
6112
|
akiles_metadata?: {
|
|
6034
6113
|
gadget_name: string;
|
|
6035
6114
|
gadget_id: string;
|
|
6115
|
+
_member_group_id?: string | undefined;
|
|
6036
6116
|
} | undefined;
|
|
6037
6117
|
} & {
|
|
6038
6118
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -6420,6 +6500,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6420
6500
|
akiles_metadata?: {
|
|
6421
6501
|
gadget_name: string;
|
|
6422
6502
|
gadget_id: string;
|
|
6503
|
+
_member_group_id?: string | undefined;
|
|
6423
6504
|
} | undefined;
|
|
6424
6505
|
} & {
|
|
6425
6506
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -7503,12 +7584,15 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7503
7584
|
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
7504
7585
|
gadget_name: z.ZodString;
|
|
7505
7586
|
gadget_id: z.ZodString;
|
|
7587
|
+
_member_group_id: z.ZodOptional<z.ZodString>;
|
|
7506
7588
|
}, "strip", z.ZodTypeAny, {
|
|
7507
7589
|
gadget_name: string;
|
|
7508
7590
|
gadget_id: string;
|
|
7591
|
+
_member_group_id?: string | undefined;
|
|
7509
7592
|
}, {
|
|
7510
7593
|
gadget_name: string;
|
|
7511
7594
|
gadget_id: string;
|
|
7595
|
+
_member_group_id?: string | undefined;
|
|
7512
7596
|
}>>;
|
|
7513
7597
|
}, "strip", z.ZodTypeAny, {
|
|
7514
7598
|
august_metadata?: {
|
|
@@ -7718,6 +7802,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7718
7802
|
akiles_metadata?: {
|
|
7719
7803
|
gadget_name: string;
|
|
7720
7804
|
gadget_id: string;
|
|
7805
|
+
_member_group_id?: string | undefined;
|
|
7721
7806
|
} | undefined;
|
|
7722
7807
|
}, {
|
|
7723
7808
|
august_metadata?: {
|
|
@@ -7927,6 +8012,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7927
8012
|
akiles_metadata?: {
|
|
7928
8013
|
gadget_name: string;
|
|
7929
8014
|
gadget_id: string;
|
|
8015
|
+
_member_group_id?: string | undefined;
|
|
7930
8016
|
} | undefined;
|
|
7931
8017
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
7932
8018
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -10507,6 +10593,9 @@ declare const schemas_acs_system: typeof acs_system;
|
|
|
10507
10593
|
declare const schemas_acs_user: typeof acs_user;
|
|
10508
10594
|
declare const schemas_action_attempt: typeof action_attempt;
|
|
10509
10595
|
declare const schemas_client_session: typeof client_session;
|
|
10596
|
+
declare const schemas_common_failed_action_attempt: typeof common_failed_action_attempt;
|
|
10597
|
+
declare const schemas_common_pending_action_attempt: typeof common_pending_action_attempt;
|
|
10598
|
+
declare const schemas_common_succeeded_action_attempt: typeof common_succeeded_action_attempt;
|
|
10510
10599
|
declare const schemas_connect_webview: typeof connect_webview;
|
|
10511
10600
|
declare const schemas_connected_account: typeof connected_account;
|
|
10512
10601
|
declare const schemas_custom_metadata: typeof custom_metadata;
|
|
@@ -10524,7 +10613,7 @@ declare const schemas_user_identity: typeof user_identity;
|
|
|
10524
10613
|
declare const schemas_webhook: typeof webhook;
|
|
10525
10614
|
declare const schemas_workspace: typeof workspace;
|
|
10526
10615
|
declare namespace schemas {
|
|
10527
|
-
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_client_session as client_session, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
10616
|
+
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
10528
10617
|
}
|
|
10529
10618
|
|
|
10530
10619
|
declare const _default: {
|
|
@@ -11475,8 +11564,8 @@ declare const _default: {
|
|
|
11475
11564
|
properties: {
|
|
11476
11565
|
acs_credential_on_encoder?: never;
|
|
11477
11566
|
acs_credential_on_seam?: never;
|
|
11478
|
-
|
|
11479
|
-
|
|
11567
|
+
access_code?: never;
|
|
11568
|
+
noise_threshold?: never;
|
|
11480
11569
|
};
|
|
11481
11570
|
type: string;
|
|
11482
11571
|
nullable?: never;
|
|
@@ -11561,6 +11650,7 @@ declare const _default: {
|
|
|
11561
11650
|
created_at: {
|
|
11562
11651
|
description: string;
|
|
11563
11652
|
format: string;
|
|
11653
|
+
nullable: boolean;
|
|
11564
11654
|
type: string;
|
|
11565
11655
|
};
|
|
11566
11656
|
ends_at: {
|
|
@@ -11787,8 +11877,8 @@ declare const _default: {
|
|
|
11787
11877
|
type: string;
|
|
11788
11878
|
}[];
|
|
11789
11879
|
};
|
|
11790
|
-
|
|
11791
|
-
|
|
11880
|
+
access_code?: never;
|
|
11881
|
+
noise_threshold?: never;
|
|
11792
11882
|
};
|
|
11793
11883
|
required: string[];
|
|
11794
11884
|
type: string;
|
|
@@ -11842,7 +11932,38 @@ declare const _default: {
|
|
|
11842
11932
|
required: string[];
|
|
11843
11933
|
type: string;
|
|
11844
11934
|
} | {
|
|
11845
|
-
|
|
11935
|
+
properties: {
|
|
11936
|
+
action_attempt_id: {
|
|
11937
|
+
description: string;
|
|
11938
|
+
format: string;
|
|
11939
|
+
type: string;
|
|
11940
|
+
'x-title': string;
|
|
11941
|
+
};
|
|
11942
|
+
action_type: {
|
|
11943
|
+
enum: string[];
|
|
11944
|
+
type: string;
|
|
11945
|
+
};
|
|
11946
|
+
error: {
|
|
11947
|
+
nullable: boolean;
|
|
11948
|
+
properties?: never;
|
|
11949
|
+
required?: never;
|
|
11950
|
+
type?: never;
|
|
11951
|
+
};
|
|
11952
|
+
result: {
|
|
11953
|
+
nullable: boolean;
|
|
11954
|
+
properties?: never;
|
|
11955
|
+
type?: never;
|
|
11956
|
+
required?: never;
|
|
11957
|
+
};
|
|
11958
|
+
status: {
|
|
11959
|
+
enum: string[];
|
|
11960
|
+
type: string;
|
|
11961
|
+
};
|
|
11962
|
+
};
|
|
11963
|
+
required: string[];
|
|
11964
|
+
type: string;
|
|
11965
|
+
description?: never;
|
|
11966
|
+
} | {
|
|
11846
11967
|
properties: {
|
|
11847
11968
|
action_attempt_id: {
|
|
11848
11969
|
description: string;
|
|
@@ -11862,23 +11983,14 @@ declare const _default: {
|
|
|
11862
11983
|
};
|
|
11863
11984
|
result: {
|
|
11864
11985
|
properties: {
|
|
11865
|
-
acs_credential_id: {
|
|
11866
|
-
description: string;
|
|
11867
|
-
format: string;
|
|
11868
|
-
nullable: boolean;
|
|
11869
|
-
type: string;
|
|
11870
|
-
};
|
|
11871
|
-
card_number: {
|
|
11872
|
-
description: string;
|
|
11873
|
-
nullable: boolean;
|
|
11874
|
-
type: string;
|
|
11875
|
-
};
|
|
11876
11986
|
acs_credential_on_encoder?: never;
|
|
11877
11987
|
acs_credential_on_seam?: never;
|
|
11988
|
+
access_code?: never;
|
|
11989
|
+
noise_threshold?: never;
|
|
11878
11990
|
};
|
|
11879
|
-
required: string[];
|
|
11880
11991
|
type: string;
|
|
11881
11992
|
nullable?: never;
|
|
11993
|
+
required?: never;
|
|
11882
11994
|
};
|
|
11883
11995
|
status: {
|
|
11884
11996
|
enum: string[];
|
|
@@ -11887,6 +11999,7 @@ declare const _default: {
|
|
|
11887
11999
|
};
|
|
11888
12000
|
required: string[];
|
|
11889
12001
|
type: string;
|
|
12002
|
+
description?: never;
|
|
11890
12003
|
} | {
|
|
11891
12004
|
properties: {
|
|
11892
12005
|
action_attempt_id: {
|
|
@@ -11900,10 +12013,18 @@ declare const _default: {
|
|
|
11900
12013
|
type: string;
|
|
11901
12014
|
};
|
|
11902
12015
|
error: {
|
|
11903
|
-
|
|
11904
|
-
|
|
11905
|
-
|
|
11906
|
-
|
|
12016
|
+
properties: {
|
|
12017
|
+
message: {
|
|
12018
|
+
type: string;
|
|
12019
|
+
};
|
|
12020
|
+
type: {
|
|
12021
|
+
type: string;
|
|
12022
|
+
enum?: never;
|
|
12023
|
+
};
|
|
12024
|
+
};
|
|
12025
|
+
required: string[];
|
|
12026
|
+
type: string;
|
|
12027
|
+
nullable?: never;
|
|
11907
12028
|
};
|
|
11908
12029
|
result: {
|
|
11909
12030
|
nullable: boolean;
|
|
@@ -11938,9 +12059,14 @@ declare const _default: {
|
|
|
11938
12059
|
type?: never;
|
|
11939
12060
|
};
|
|
11940
12061
|
result: {
|
|
12062
|
+
properties: {
|
|
12063
|
+
access_code: {};
|
|
12064
|
+
acs_credential_on_encoder?: never;
|
|
12065
|
+
acs_credential_on_seam?: never;
|
|
12066
|
+
noise_threshold?: never;
|
|
12067
|
+
};
|
|
12068
|
+
type: string;
|
|
11941
12069
|
nullable?: never;
|
|
11942
|
-
properties?: never;
|
|
11943
|
-
type?: never;
|
|
11944
12070
|
required?: never;
|
|
11945
12071
|
};
|
|
11946
12072
|
status: {
|
|
@@ -11964,23 +12090,20 @@ declare const _default: {
|
|
|
11964
12090
|
type: string;
|
|
11965
12091
|
};
|
|
11966
12092
|
error: {
|
|
12093
|
+
nullable: boolean;
|
|
12094
|
+
properties?: never;
|
|
12095
|
+
required?: never;
|
|
12096
|
+
type?: never;
|
|
12097
|
+
};
|
|
12098
|
+
result: {
|
|
11967
12099
|
properties: {
|
|
11968
|
-
|
|
11969
|
-
|
|
11970
|
-
|
|
11971
|
-
|
|
11972
|
-
type: string;
|
|
11973
|
-
enum?: never;
|
|
11974
|
-
};
|
|
12100
|
+
noise_threshold: {};
|
|
12101
|
+
acs_credential_on_encoder?: never;
|
|
12102
|
+
acs_credential_on_seam?: never;
|
|
12103
|
+
access_code?: never;
|
|
11975
12104
|
};
|
|
11976
|
-
required: string[];
|
|
11977
12105
|
type: string;
|
|
11978
12106
|
nullable?: never;
|
|
11979
|
-
};
|
|
11980
|
-
result: {
|
|
11981
|
-
nullable: boolean;
|
|
11982
|
-
properties?: never;
|
|
11983
|
-
type?: never;
|
|
11984
12107
|
required?: never;
|
|
11985
12108
|
};
|
|
11986
12109
|
status: {
|
|
@@ -12578,6 +12701,9 @@ declare const _default: {
|
|
|
12578
12701
|
properties: {
|
|
12579
12702
|
akiles_metadata: {
|
|
12580
12703
|
properties: {
|
|
12704
|
+
_member_group_id: {
|
|
12705
|
+
type: string;
|
|
12706
|
+
};
|
|
12581
12707
|
gadget_id: {
|
|
12582
12708
|
type: string;
|
|
12583
12709
|
};
|
|
@@ -29784,7 +29910,7 @@ interface Routes {
|
|
|
29784
29910
|
/** Snapshot of the card data read from the physical encoder. */
|
|
29785
29911
|
acs_credential_on_encoder: {
|
|
29786
29912
|
/** Date and time the credential was created. */
|
|
29787
|
-
created_at: string;
|
|
29913
|
+
created_at: string | null;
|
|
29788
29914
|
is_issued: boolean | null;
|
|
29789
29915
|
/** Date and time the credential will become useable. */
|
|
29790
29916
|
starts_at: string | null;
|
|
@@ -29912,12 +30038,7 @@ interface Routes {
|
|
|
29912
30038
|
status: 'success';
|
|
29913
30039
|
error: null;
|
|
29914
30040
|
action_type: 'ENCODE_CARD';
|
|
29915
|
-
result: {
|
|
29916
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
29917
|
-
acs_credential_id: string | null;
|
|
29918
|
-
/** A number or string that physically identifies this card. */
|
|
29919
|
-
card_number: string | null;
|
|
29920
|
-
};
|
|
30041
|
+
result: {};
|
|
29921
30042
|
} | {
|
|
29922
30043
|
/** The ID of the action attempt. */
|
|
29923
30044
|
action_attempt_id: string;
|
|
@@ -30109,7 +30230,7 @@ interface Routes {
|
|
|
30109
30230
|
status: 'success';
|
|
30110
30231
|
error: null;
|
|
30111
30232
|
action_type: 'SYNC_ACCESS_CODES';
|
|
30112
|
-
result
|
|
30233
|
+
result: {};
|
|
30113
30234
|
} | {
|
|
30114
30235
|
/** The ID of the action attempt. */
|
|
30115
30236
|
action_attempt_id: string;
|
|
@@ -30133,7 +30254,9 @@ interface Routes {
|
|
|
30133
30254
|
status: 'success';
|
|
30134
30255
|
error: null;
|
|
30135
30256
|
action_type: 'CREATE_ACCESS_CODE';
|
|
30136
|
-
result
|
|
30257
|
+
result: {
|
|
30258
|
+
access_code?: any;
|
|
30259
|
+
};
|
|
30137
30260
|
} | {
|
|
30138
30261
|
/** The ID of the action attempt. */
|
|
30139
30262
|
action_attempt_id: string;
|
|
@@ -30157,7 +30280,7 @@ interface Routes {
|
|
|
30157
30280
|
status: 'success';
|
|
30158
30281
|
error: null;
|
|
30159
30282
|
action_type: 'DELETE_ACCESS_CODE';
|
|
30160
|
-
result
|
|
30283
|
+
result: {};
|
|
30161
30284
|
} | {
|
|
30162
30285
|
/** The ID of the action attempt. */
|
|
30163
30286
|
action_attempt_id: string;
|
|
@@ -30181,7 +30304,9 @@ interface Routes {
|
|
|
30181
30304
|
status: 'success';
|
|
30182
30305
|
error: null;
|
|
30183
30306
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
30184
|
-
result
|
|
30307
|
+
result: {
|
|
30308
|
+
access_code?: any;
|
|
30309
|
+
};
|
|
30185
30310
|
} | {
|
|
30186
30311
|
/** The ID of the action attempt. */
|
|
30187
30312
|
action_attempt_id: string;
|
|
@@ -30205,7 +30330,9 @@ interface Routes {
|
|
|
30205
30330
|
status: 'success';
|
|
30206
30331
|
error: null;
|
|
30207
30332
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
30208
|
-
result
|
|
30333
|
+
result: {
|
|
30334
|
+
noise_threshold?: any;
|
|
30335
|
+
};
|
|
30209
30336
|
} | {
|
|
30210
30337
|
/** The ID of the action attempt. */
|
|
30211
30338
|
action_attempt_id: string;
|
|
@@ -30229,7 +30356,7 @@ interface Routes {
|
|
|
30229
30356
|
status: 'success';
|
|
30230
30357
|
error: null;
|
|
30231
30358
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
30232
|
-
result
|
|
30359
|
+
result: {};
|
|
30233
30360
|
} | {
|
|
30234
30361
|
/** The ID of the action attempt. */
|
|
30235
30362
|
action_attempt_id: string;
|
|
@@ -30253,7 +30380,9 @@ interface Routes {
|
|
|
30253
30380
|
status: 'success';
|
|
30254
30381
|
error: null;
|
|
30255
30382
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
30256
|
-
result
|
|
30383
|
+
result: {
|
|
30384
|
+
noise_threshold?: any;
|
|
30385
|
+
};
|
|
30257
30386
|
} | {
|
|
30258
30387
|
/** The ID of the action attempt. */
|
|
30259
30388
|
action_attempt_id: string;
|
|
@@ -30493,7 +30622,7 @@ interface Routes {
|
|
|
30493
30622
|
/** Snapshot of the card data read from the physical encoder. */
|
|
30494
30623
|
acs_credential_on_encoder: {
|
|
30495
30624
|
/** Date and time the credential was created. */
|
|
30496
|
-
created_at: string;
|
|
30625
|
+
created_at: string | null;
|
|
30497
30626
|
is_issued: boolean | null;
|
|
30498
30627
|
/** Date and time the credential will become useable. */
|
|
30499
30628
|
starts_at: string | null;
|
|
@@ -30621,12 +30750,7 @@ interface Routes {
|
|
|
30621
30750
|
status: 'success';
|
|
30622
30751
|
error: null;
|
|
30623
30752
|
action_type: 'ENCODE_CARD';
|
|
30624
|
-
result: {
|
|
30625
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
30626
|
-
acs_credential_id: string | null;
|
|
30627
|
-
/** A number or string that physically identifies this card. */
|
|
30628
|
-
card_number: string | null;
|
|
30629
|
-
};
|
|
30753
|
+
result: {};
|
|
30630
30754
|
} | {
|
|
30631
30755
|
/** The ID of the action attempt. */
|
|
30632
30756
|
action_attempt_id: string;
|
|
@@ -30818,7 +30942,7 @@ interface Routes {
|
|
|
30818
30942
|
status: 'success';
|
|
30819
30943
|
error: null;
|
|
30820
30944
|
action_type: 'SYNC_ACCESS_CODES';
|
|
30821
|
-
result
|
|
30945
|
+
result: {};
|
|
30822
30946
|
} | {
|
|
30823
30947
|
/** The ID of the action attempt. */
|
|
30824
30948
|
action_attempt_id: string;
|
|
@@ -30842,7 +30966,9 @@ interface Routes {
|
|
|
30842
30966
|
status: 'success';
|
|
30843
30967
|
error: null;
|
|
30844
30968
|
action_type: 'CREATE_ACCESS_CODE';
|
|
30845
|
-
result
|
|
30969
|
+
result: {
|
|
30970
|
+
access_code?: any;
|
|
30971
|
+
};
|
|
30846
30972
|
} | {
|
|
30847
30973
|
/** The ID of the action attempt. */
|
|
30848
30974
|
action_attempt_id: string;
|
|
@@ -30866,7 +30992,7 @@ interface Routes {
|
|
|
30866
30992
|
status: 'success';
|
|
30867
30993
|
error: null;
|
|
30868
30994
|
action_type: 'DELETE_ACCESS_CODE';
|
|
30869
|
-
result
|
|
30995
|
+
result: {};
|
|
30870
30996
|
} | {
|
|
30871
30997
|
/** The ID of the action attempt. */
|
|
30872
30998
|
action_attempt_id: string;
|
|
@@ -30890,7 +31016,9 @@ interface Routes {
|
|
|
30890
31016
|
status: 'success';
|
|
30891
31017
|
error: null;
|
|
30892
31018
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
30893
|
-
result
|
|
31019
|
+
result: {
|
|
31020
|
+
access_code?: any;
|
|
31021
|
+
};
|
|
30894
31022
|
} | {
|
|
30895
31023
|
/** The ID of the action attempt. */
|
|
30896
31024
|
action_attempt_id: string;
|
|
@@ -30914,7 +31042,9 @@ interface Routes {
|
|
|
30914
31042
|
status: 'success';
|
|
30915
31043
|
error: null;
|
|
30916
31044
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
30917
|
-
result
|
|
31045
|
+
result: {
|
|
31046
|
+
noise_threshold?: any;
|
|
31047
|
+
};
|
|
30918
31048
|
} | {
|
|
30919
31049
|
/** The ID of the action attempt. */
|
|
30920
31050
|
action_attempt_id: string;
|
|
@@ -30938,7 +31068,7 @@ interface Routes {
|
|
|
30938
31068
|
status: 'success';
|
|
30939
31069
|
error: null;
|
|
30940
31070
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
30941
|
-
result
|
|
31071
|
+
result: {};
|
|
30942
31072
|
} | {
|
|
30943
31073
|
/** The ID of the action attempt. */
|
|
30944
31074
|
action_attempt_id: string;
|
|
@@ -30962,7 +31092,9 @@ interface Routes {
|
|
|
30962
31092
|
status: 'success';
|
|
30963
31093
|
error: null;
|
|
30964
31094
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
30965
|
-
result
|
|
31095
|
+
result: {
|
|
31096
|
+
noise_threshold?: any;
|
|
31097
|
+
};
|
|
30966
31098
|
} | {
|
|
30967
31099
|
/** The ID of the action attempt. */
|
|
30968
31100
|
action_attempt_id: string;
|
|
@@ -31359,7 +31491,7 @@ interface Routes {
|
|
|
31359
31491
|
/** Snapshot of the card data read from the physical encoder. */
|
|
31360
31492
|
acs_credential_on_encoder: {
|
|
31361
31493
|
/** Date and time the credential was created. */
|
|
31362
|
-
created_at: string;
|
|
31494
|
+
created_at: string | null;
|
|
31363
31495
|
is_issued: boolean | null;
|
|
31364
31496
|
/** Date and time the credential will become useable. */
|
|
31365
31497
|
starts_at: string | null;
|
|
@@ -31487,12 +31619,7 @@ interface Routes {
|
|
|
31487
31619
|
status: 'success';
|
|
31488
31620
|
error: null;
|
|
31489
31621
|
action_type: 'ENCODE_CARD';
|
|
31490
|
-
result: {
|
|
31491
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
31492
|
-
acs_credential_id: string | null;
|
|
31493
|
-
/** A number or string that physically identifies this card. */
|
|
31494
|
-
card_number: string | null;
|
|
31495
|
-
};
|
|
31622
|
+
result: {};
|
|
31496
31623
|
} | {
|
|
31497
31624
|
/** The ID of the action attempt. */
|
|
31498
31625
|
action_attempt_id: string;
|
|
@@ -31684,7 +31811,7 @@ interface Routes {
|
|
|
31684
31811
|
status: 'success';
|
|
31685
31812
|
error: null;
|
|
31686
31813
|
action_type: 'SYNC_ACCESS_CODES';
|
|
31687
|
-
result
|
|
31814
|
+
result: {};
|
|
31688
31815
|
} | {
|
|
31689
31816
|
/** The ID of the action attempt. */
|
|
31690
31817
|
action_attempt_id: string;
|
|
@@ -31708,7 +31835,9 @@ interface Routes {
|
|
|
31708
31835
|
status: 'success';
|
|
31709
31836
|
error: null;
|
|
31710
31837
|
action_type: 'CREATE_ACCESS_CODE';
|
|
31711
|
-
result
|
|
31838
|
+
result: {
|
|
31839
|
+
access_code?: any;
|
|
31840
|
+
};
|
|
31712
31841
|
} | {
|
|
31713
31842
|
/** The ID of the action attempt. */
|
|
31714
31843
|
action_attempt_id: string;
|
|
@@ -31732,7 +31861,7 @@ interface Routes {
|
|
|
31732
31861
|
status: 'success';
|
|
31733
31862
|
error: null;
|
|
31734
31863
|
action_type: 'DELETE_ACCESS_CODE';
|
|
31735
|
-
result
|
|
31864
|
+
result: {};
|
|
31736
31865
|
} | {
|
|
31737
31866
|
/** The ID of the action attempt. */
|
|
31738
31867
|
action_attempt_id: string;
|
|
@@ -31756,7 +31885,9 @@ interface Routes {
|
|
|
31756
31885
|
status: 'success';
|
|
31757
31886
|
error: null;
|
|
31758
31887
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
31759
|
-
result
|
|
31888
|
+
result: {
|
|
31889
|
+
access_code?: any;
|
|
31890
|
+
};
|
|
31760
31891
|
} | {
|
|
31761
31892
|
/** The ID of the action attempt. */
|
|
31762
31893
|
action_attempt_id: string;
|
|
@@ -31780,7 +31911,9 @@ interface Routes {
|
|
|
31780
31911
|
status: 'success';
|
|
31781
31912
|
error: null;
|
|
31782
31913
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
31783
|
-
result
|
|
31914
|
+
result: {
|
|
31915
|
+
noise_threshold?: any;
|
|
31916
|
+
};
|
|
31784
31917
|
} | {
|
|
31785
31918
|
/** The ID of the action attempt. */
|
|
31786
31919
|
action_attempt_id: string;
|
|
@@ -31804,7 +31937,7 @@ interface Routes {
|
|
|
31804
31937
|
status: 'success';
|
|
31805
31938
|
error: null;
|
|
31806
31939
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
31807
|
-
result
|
|
31940
|
+
result: {};
|
|
31808
31941
|
} | {
|
|
31809
31942
|
/** The ID of the action attempt. */
|
|
31810
31943
|
action_attempt_id: string;
|
|
@@ -31828,7 +31961,9 @@ interface Routes {
|
|
|
31828
31961
|
status: 'success';
|
|
31829
31962
|
error: null;
|
|
31830
31963
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
31831
|
-
result
|
|
31964
|
+
result: {
|
|
31965
|
+
noise_threshold?: any;
|
|
31966
|
+
};
|
|
31832
31967
|
} | {
|
|
31833
31968
|
/** The ID of the action attempt. */
|
|
31834
31969
|
action_attempt_id: string;
|
|
@@ -32055,7 +32190,7 @@ interface Routes {
|
|
|
32055
32190
|
/** Snapshot of the card data read from the physical encoder. */
|
|
32056
32191
|
acs_credential_on_encoder: {
|
|
32057
32192
|
/** Date and time the credential was created. */
|
|
32058
|
-
created_at: string;
|
|
32193
|
+
created_at: string | null;
|
|
32059
32194
|
is_issued: boolean | null;
|
|
32060
32195
|
/** Date and time the credential will become useable. */
|
|
32061
32196
|
starts_at: string | null;
|
|
@@ -32183,12 +32318,7 @@ interface Routes {
|
|
|
32183
32318
|
status: 'success';
|
|
32184
32319
|
error: null;
|
|
32185
32320
|
action_type: 'ENCODE_CARD';
|
|
32186
|
-
result: {
|
|
32187
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
32188
|
-
acs_credential_id: string | null;
|
|
32189
|
-
/** A number or string that physically identifies this card. */
|
|
32190
|
-
card_number: string | null;
|
|
32191
|
-
};
|
|
32321
|
+
result: {};
|
|
32192
32322
|
} | {
|
|
32193
32323
|
/** The ID of the action attempt. */
|
|
32194
32324
|
action_attempt_id: string;
|
|
@@ -32380,7 +32510,7 @@ interface Routes {
|
|
|
32380
32510
|
status: 'success';
|
|
32381
32511
|
error: null;
|
|
32382
32512
|
action_type: 'SYNC_ACCESS_CODES';
|
|
32383
|
-
result
|
|
32513
|
+
result: {};
|
|
32384
32514
|
} | {
|
|
32385
32515
|
/** The ID of the action attempt. */
|
|
32386
32516
|
action_attempt_id: string;
|
|
@@ -32404,7 +32534,9 @@ interface Routes {
|
|
|
32404
32534
|
status: 'success';
|
|
32405
32535
|
error: null;
|
|
32406
32536
|
action_type: 'CREATE_ACCESS_CODE';
|
|
32407
|
-
result
|
|
32537
|
+
result: {
|
|
32538
|
+
access_code?: any;
|
|
32539
|
+
};
|
|
32408
32540
|
} | {
|
|
32409
32541
|
/** The ID of the action attempt. */
|
|
32410
32542
|
action_attempt_id: string;
|
|
@@ -32428,7 +32560,7 @@ interface Routes {
|
|
|
32428
32560
|
status: 'success';
|
|
32429
32561
|
error: null;
|
|
32430
32562
|
action_type: 'DELETE_ACCESS_CODE';
|
|
32431
|
-
result
|
|
32563
|
+
result: {};
|
|
32432
32564
|
} | {
|
|
32433
32565
|
/** The ID of the action attempt. */
|
|
32434
32566
|
action_attempt_id: string;
|
|
@@ -32452,7 +32584,9 @@ interface Routes {
|
|
|
32452
32584
|
status: 'success';
|
|
32453
32585
|
error: null;
|
|
32454
32586
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
32455
|
-
result
|
|
32587
|
+
result: {
|
|
32588
|
+
access_code?: any;
|
|
32589
|
+
};
|
|
32456
32590
|
} | {
|
|
32457
32591
|
/** The ID of the action attempt. */
|
|
32458
32592
|
action_attempt_id: string;
|
|
@@ -32476,7 +32610,9 @@ interface Routes {
|
|
|
32476
32610
|
status: 'success';
|
|
32477
32611
|
error: null;
|
|
32478
32612
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
32479
|
-
result
|
|
32613
|
+
result: {
|
|
32614
|
+
noise_threshold?: any;
|
|
32615
|
+
};
|
|
32480
32616
|
} | {
|
|
32481
32617
|
/** The ID of the action attempt. */
|
|
32482
32618
|
action_attempt_id: string;
|
|
@@ -32500,7 +32636,7 @@ interface Routes {
|
|
|
32500
32636
|
status: 'success';
|
|
32501
32637
|
error: null;
|
|
32502
32638
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
32503
|
-
result
|
|
32639
|
+
result: {};
|
|
32504
32640
|
} | {
|
|
32505
32641
|
/** The ID of the action attempt. */
|
|
32506
32642
|
action_attempt_id: string;
|
|
@@ -32524,7 +32660,9 @@ interface Routes {
|
|
|
32524
32660
|
status: 'success';
|
|
32525
32661
|
error: null;
|
|
32526
32662
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
32527
|
-
result
|
|
32663
|
+
result: {
|
|
32664
|
+
noise_threshold?: any;
|
|
32665
|
+
};
|
|
32528
32666
|
} | {
|
|
32529
32667
|
/** The ID of the action attempt. */
|
|
32530
32668
|
action_attempt_id: string;
|
|
@@ -33495,7 +33633,7 @@ interface Routes {
|
|
|
33495
33633
|
/** Snapshot of the card data read from the physical encoder. */
|
|
33496
33634
|
acs_credential_on_encoder: {
|
|
33497
33635
|
/** Date and time the credential was created. */
|
|
33498
|
-
created_at: string;
|
|
33636
|
+
created_at: string | null;
|
|
33499
33637
|
is_issued: boolean | null;
|
|
33500
33638
|
/** Date and time the credential will become useable. */
|
|
33501
33639
|
starts_at: string | null;
|
|
@@ -33623,12 +33761,7 @@ interface Routes {
|
|
|
33623
33761
|
status: 'success';
|
|
33624
33762
|
error: null;
|
|
33625
33763
|
action_type: 'ENCODE_CARD';
|
|
33626
|
-
result: {
|
|
33627
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
33628
|
-
acs_credential_id: string | null;
|
|
33629
|
-
/** A number or string that physically identifies this card. */
|
|
33630
|
-
card_number: string | null;
|
|
33631
|
-
};
|
|
33764
|
+
result: {};
|
|
33632
33765
|
} | {
|
|
33633
33766
|
/** The ID of the action attempt. */
|
|
33634
33767
|
action_attempt_id: string;
|
|
@@ -33820,7 +33953,7 @@ interface Routes {
|
|
|
33820
33953
|
status: 'success';
|
|
33821
33954
|
error: null;
|
|
33822
33955
|
action_type: 'SYNC_ACCESS_CODES';
|
|
33823
|
-
result
|
|
33956
|
+
result: {};
|
|
33824
33957
|
} | {
|
|
33825
33958
|
/** The ID of the action attempt. */
|
|
33826
33959
|
action_attempt_id: string;
|
|
@@ -33844,7 +33977,9 @@ interface Routes {
|
|
|
33844
33977
|
status: 'success';
|
|
33845
33978
|
error: null;
|
|
33846
33979
|
action_type: 'CREATE_ACCESS_CODE';
|
|
33847
|
-
result
|
|
33980
|
+
result: {
|
|
33981
|
+
access_code?: any;
|
|
33982
|
+
};
|
|
33848
33983
|
} | {
|
|
33849
33984
|
/** The ID of the action attempt. */
|
|
33850
33985
|
action_attempt_id: string;
|
|
@@ -33868,7 +34003,7 @@ interface Routes {
|
|
|
33868
34003
|
status: 'success';
|
|
33869
34004
|
error: null;
|
|
33870
34005
|
action_type: 'DELETE_ACCESS_CODE';
|
|
33871
|
-
result
|
|
34006
|
+
result: {};
|
|
33872
34007
|
} | {
|
|
33873
34008
|
/** The ID of the action attempt. */
|
|
33874
34009
|
action_attempt_id: string;
|
|
@@ -33892,7 +34027,9 @@ interface Routes {
|
|
|
33892
34027
|
status: 'success';
|
|
33893
34028
|
error: null;
|
|
33894
34029
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
33895
|
-
result
|
|
34030
|
+
result: {
|
|
34031
|
+
access_code?: any;
|
|
34032
|
+
};
|
|
33896
34033
|
} | {
|
|
33897
34034
|
/** The ID of the action attempt. */
|
|
33898
34035
|
action_attempt_id: string;
|
|
@@ -33916,7 +34053,9 @@ interface Routes {
|
|
|
33916
34053
|
status: 'success';
|
|
33917
34054
|
error: null;
|
|
33918
34055
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
33919
|
-
result
|
|
34056
|
+
result: {
|
|
34057
|
+
noise_threshold?: any;
|
|
34058
|
+
};
|
|
33920
34059
|
} | {
|
|
33921
34060
|
/** The ID of the action attempt. */
|
|
33922
34061
|
action_attempt_id: string;
|
|
@@ -33940,7 +34079,7 @@ interface Routes {
|
|
|
33940
34079
|
status: 'success';
|
|
33941
34080
|
error: null;
|
|
33942
34081
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
33943
|
-
result
|
|
34082
|
+
result: {};
|
|
33944
34083
|
} | {
|
|
33945
34084
|
/** The ID of the action attempt. */
|
|
33946
34085
|
action_attempt_id: string;
|
|
@@ -33964,7 +34103,9 @@ interface Routes {
|
|
|
33964
34103
|
status: 'success';
|
|
33965
34104
|
error: null;
|
|
33966
34105
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
33967
|
-
result
|
|
34106
|
+
result: {
|
|
34107
|
+
noise_threshold?: any;
|
|
34108
|
+
};
|
|
33968
34109
|
} | {
|
|
33969
34110
|
/** The ID of the action attempt. */
|
|
33970
34111
|
action_attempt_id: string;
|
|
@@ -34292,6 +34433,7 @@ interface Routes {
|
|
|
34292
34433
|
akiles_metadata?: {
|
|
34293
34434
|
gadget_name: string;
|
|
34294
34435
|
gadget_id: string;
|
|
34436
|
+
_member_group_id?: string | undefined;
|
|
34295
34437
|
} | undefined;
|
|
34296
34438
|
}) & ({
|
|
34297
34439
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -34516,7 +34658,7 @@ interface Routes {
|
|
|
34516
34658
|
/** Snapshot of the card data read from the physical encoder. */
|
|
34517
34659
|
acs_credential_on_encoder: {
|
|
34518
34660
|
/** Date and time the credential was created. */
|
|
34519
|
-
created_at: string;
|
|
34661
|
+
created_at: string | null;
|
|
34520
34662
|
is_issued: boolean | null;
|
|
34521
34663
|
/** Date and time the credential will become useable. */
|
|
34522
34664
|
starts_at: string | null;
|
|
@@ -34644,12 +34786,7 @@ interface Routes {
|
|
|
34644
34786
|
status: 'success';
|
|
34645
34787
|
error: null;
|
|
34646
34788
|
action_type: 'ENCODE_CARD';
|
|
34647
|
-
result: {
|
|
34648
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
34649
|
-
acs_credential_id: string | null;
|
|
34650
|
-
/** A number or string that physically identifies this card. */
|
|
34651
|
-
card_number: string | null;
|
|
34652
|
-
};
|
|
34789
|
+
result: {};
|
|
34653
34790
|
} | {
|
|
34654
34791
|
/** The ID of the action attempt. */
|
|
34655
34792
|
action_attempt_id: string;
|
|
@@ -34841,7 +34978,7 @@ interface Routes {
|
|
|
34841
34978
|
status: 'success';
|
|
34842
34979
|
error: null;
|
|
34843
34980
|
action_type: 'SYNC_ACCESS_CODES';
|
|
34844
|
-
result
|
|
34981
|
+
result: {};
|
|
34845
34982
|
} | {
|
|
34846
34983
|
/** The ID of the action attempt. */
|
|
34847
34984
|
action_attempt_id: string;
|
|
@@ -34865,7 +35002,9 @@ interface Routes {
|
|
|
34865
35002
|
status: 'success';
|
|
34866
35003
|
error: null;
|
|
34867
35004
|
action_type: 'CREATE_ACCESS_CODE';
|
|
34868
|
-
result
|
|
35005
|
+
result: {
|
|
35006
|
+
access_code?: any;
|
|
35007
|
+
};
|
|
34869
35008
|
} | {
|
|
34870
35009
|
/** The ID of the action attempt. */
|
|
34871
35010
|
action_attempt_id: string;
|
|
@@ -34889,7 +35028,7 @@ interface Routes {
|
|
|
34889
35028
|
status: 'success';
|
|
34890
35029
|
error: null;
|
|
34891
35030
|
action_type: 'DELETE_ACCESS_CODE';
|
|
34892
|
-
result
|
|
35031
|
+
result: {};
|
|
34893
35032
|
} | {
|
|
34894
35033
|
/** The ID of the action attempt. */
|
|
34895
35034
|
action_attempt_id: string;
|
|
@@ -34913,7 +35052,9 @@ interface Routes {
|
|
|
34913
35052
|
status: 'success';
|
|
34914
35053
|
error: null;
|
|
34915
35054
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
34916
|
-
result
|
|
35055
|
+
result: {
|
|
35056
|
+
access_code?: any;
|
|
35057
|
+
};
|
|
34917
35058
|
} | {
|
|
34918
35059
|
/** The ID of the action attempt. */
|
|
34919
35060
|
action_attempt_id: string;
|
|
@@ -34937,7 +35078,9 @@ interface Routes {
|
|
|
34937
35078
|
status: 'success';
|
|
34938
35079
|
error: null;
|
|
34939
35080
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
34940
|
-
result
|
|
35081
|
+
result: {
|
|
35082
|
+
noise_threshold?: any;
|
|
35083
|
+
};
|
|
34941
35084
|
} | {
|
|
34942
35085
|
/** The ID of the action attempt. */
|
|
34943
35086
|
action_attempt_id: string;
|
|
@@ -34961,7 +35104,7 @@ interface Routes {
|
|
|
34961
35104
|
status: 'success';
|
|
34962
35105
|
error: null;
|
|
34963
35106
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
34964
|
-
result
|
|
35107
|
+
result: {};
|
|
34965
35108
|
} | {
|
|
34966
35109
|
/** The ID of the action attempt. */
|
|
34967
35110
|
action_attempt_id: string;
|
|
@@ -34985,7 +35128,9 @@ interface Routes {
|
|
|
34985
35128
|
status: 'success';
|
|
34986
35129
|
error: null;
|
|
34987
35130
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
34988
|
-
result
|
|
35131
|
+
result: {
|
|
35132
|
+
noise_threshold?: any;
|
|
35133
|
+
};
|
|
34989
35134
|
} | {
|
|
34990
35135
|
/** The ID of the action attempt. */
|
|
34991
35136
|
action_attempt_id: string;
|
|
@@ -36232,7 +36377,7 @@ interface Routes {
|
|
|
36232
36377
|
/** Snapshot of the card data read from the physical encoder. */
|
|
36233
36378
|
acs_credential_on_encoder: {
|
|
36234
36379
|
/** Date and time the credential was created. */
|
|
36235
|
-
created_at: string;
|
|
36380
|
+
created_at: string | null;
|
|
36236
36381
|
is_issued: boolean | null;
|
|
36237
36382
|
/** Date and time the credential will become useable. */
|
|
36238
36383
|
starts_at: string | null;
|
|
@@ -36360,12 +36505,7 @@ interface Routes {
|
|
|
36360
36505
|
status: 'success';
|
|
36361
36506
|
error: null;
|
|
36362
36507
|
action_type: 'ENCODE_CARD';
|
|
36363
|
-
result: {
|
|
36364
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
36365
|
-
acs_credential_id: string | null;
|
|
36366
|
-
/** A number or string that physically identifies this card. */
|
|
36367
|
-
card_number: string | null;
|
|
36368
|
-
};
|
|
36508
|
+
result: {};
|
|
36369
36509
|
} | {
|
|
36370
36510
|
/** The ID of the action attempt. */
|
|
36371
36511
|
action_attempt_id: string;
|
|
@@ -36557,7 +36697,7 @@ interface Routes {
|
|
|
36557
36697
|
status: 'success';
|
|
36558
36698
|
error: null;
|
|
36559
36699
|
action_type: 'SYNC_ACCESS_CODES';
|
|
36560
|
-
result
|
|
36700
|
+
result: {};
|
|
36561
36701
|
} | {
|
|
36562
36702
|
/** The ID of the action attempt. */
|
|
36563
36703
|
action_attempt_id: string;
|
|
@@ -36581,7 +36721,9 @@ interface Routes {
|
|
|
36581
36721
|
status: 'success';
|
|
36582
36722
|
error: null;
|
|
36583
36723
|
action_type: 'CREATE_ACCESS_CODE';
|
|
36584
|
-
result
|
|
36724
|
+
result: {
|
|
36725
|
+
access_code?: any;
|
|
36726
|
+
};
|
|
36585
36727
|
} | {
|
|
36586
36728
|
/** The ID of the action attempt. */
|
|
36587
36729
|
action_attempt_id: string;
|
|
@@ -36605,7 +36747,7 @@ interface Routes {
|
|
|
36605
36747
|
status: 'success';
|
|
36606
36748
|
error: null;
|
|
36607
36749
|
action_type: 'DELETE_ACCESS_CODE';
|
|
36608
|
-
result
|
|
36750
|
+
result: {};
|
|
36609
36751
|
} | {
|
|
36610
36752
|
/** The ID of the action attempt. */
|
|
36611
36753
|
action_attempt_id: string;
|
|
@@ -36629,7 +36771,9 @@ interface Routes {
|
|
|
36629
36771
|
status: 'success';
|
|
36630
36772
|
error: null;
|
|
36631
36773
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
36632
|
-
result
|
|
36774
|
+
result: {
|
|
36775
|
+
access_code?: any;
|
|
36776
|
+
};
|
|
36633
36777
|
} | {
|
|
36634
36778
|
/** The ID of the action attempt. */
|
|
36635
36779
|
action_attempt_id: string;
|
|
@@ -36653,7 +36797,9 @@ interface Routes {
|
|
|
36653
36797
|
status: 'success';
|
|
36654
36798
|
error: null;
|
|
36655
36799
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
36656
|
-
result
|
|
36800
|
+
result: {
|
|
36801
|
+
noise_threshold?: any;
|
|
36802
|
+
};
|
|
36657
36803
|
} | {
|
|
36658
36804
|
/** The ID of the action attempt. */
|
|
36659
36805
|
action_attempt_id: string;
|
|
@@ -36677,7 +36823,7 @@ interface Routes {
|
|
|
36677
36823
|
status: 'success';
|
|
36678
36824
|
error: null;
|
|
36679
36825
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
36680
|
-
result
|
|
36826
|
+
result: {};
|
|
36681
36827
|
} | {
|
|
36682
36828
|
/** The ID of the action attempt. */
|
|
36683
36829
|
action_attempt_id: string;
|
|
@@ -36701,7 +36847,9 @@ interface Routes {
|
|
|
36701
36847
|
status: 'success';
|
|
36702
36848
|
error: null;
|
|
36703
36849
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
36704
|
-
result
|
|
36850
|
+
result: {
|
|
36851
|
+
noise_threshold?: any;
|
|
36852
|
+
};
|
|
36705
36853
|
} | {
|
|
36706
36854
|
/** The ID of the action attempt. */
|
|
36707
36855
|
action_attempt_id: string;
|
|
@@ -36790,7 +36938,7 @@ interface Routes {
|
|
|
36790
36938
|
/** Snapshot of the card data read from the physical encoder. */
|
|
36791
36939
|
acs_credential_on_encoder: {
|
|
36792
36940
|
/** Date and time the credential was created. */
|
|
36793
|
-
created_at: string;
|
|
36941
|
+
created_at: string | null;
|
|
36794
36942
|
is_issued: boolean | null;
|
|
36795
36943
|
/** Date and time the credential will become useable. */
|
|
36796
36944
|
starts_at: string | null;
|
|
@@ -36918,12 +37066,7 @@ interface Routes {
|
|
|
36918
37066
|
status: 'success';
|
|
36919
37067
|
error: null;
|
|
36920
37068
|
action_type: 'ENCODE_CARD';
|
|
36921
|
-
result: {
|
|
36922
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
36923
|
-
acs_credential_id: string | null;
|
|
36924
|
-
/** A number or string that physically identifies this card. */
|
|
36925
|
-
card_number: string | null;
|
|
36926
|
-
};
|
|
37069
|
+
result: {};
|
|
36927
37070
|
} | {
|
|
36928
37071
|
/** The ID of the action attempt. */
|
|
36929
37072
|
action_attempt_id: string;
|
|
@@ -37115,7 +37258,7 @@ interface Routes {
|
|
|
37115
37258
|
status: 'success';
|
|
37116
37259
|
error: null;
|
|
37117
37260
|
action_type: 'SYNC_ACCESS_CODES';
|
|
37118
|
-
result
|
|
37261
|
+
result: {};
|
|
37119
37262
|
} | {
|
|
37120
37263
|
/** The ID of the action attempt. */
|
|
37121
37264
|
action_attempt_id: string;
|
|
@@ -37139,7 +37282,9 @@ interface Routes {
|
|
|
37139
37282
|
status: 'success';
|
|
37140
37283
|
error: null;
|
|
37141
37284
|
action_type: 'CREATE_ACCESS_CODE';
|
|
37142
|
-
result
|
|
37285
|
+
result: {
|
|
37286
|
+
access_code?: any;
|
|
37287
|
+
};
|
|
37143
37288
|
} | {
|
|
37144
37289
|
/** The ID of the action attempt. */
|
|
37145
37290
|
action_attempt_id: string;
|
|
@@ -37163,7 +37308,7 @@ interface Routes {
|
|
|
37163
37308
|
status: 'success';
|
|
37164
37309
|
error: null;
|
|
37165
37310
|
action_type: 'DELETE_ACCESS_CODE';
|
|
37166
|
-
result
|
|
37311
|
+
result: {};
|
|
37167
37312
|
} | {
|
|
37168
37313
|
/** The ID of the action attempt. */
|
|
37169
37314
|
action_attempt_id: string;
|
|
@@ -37187,7 +37332,9 @@ interface Routes {
|
|
|
37187
37332
|
status: 'success';
|
|
37188
37333
|
error: null;
|
|
37189
37334
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
37190
|
-
result
|
|
37335
|
+
result: {
|
|
37336
|
+
access_code?: any;
|
|
37337
|
+
};
|
|
37191
37338
|
} | {
|
|
37192
37339
|
/** The ID of the action attempt. */
|
|
37193
37340
|
action_attempt_id: string;
|
|
@@ -37211,7 +37358,9 @@ interface Routes {
|
|
|
37211
37358
|
status: 'success';
|
|
37212
37359
|
error: null;
|
|
37213
37360
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
37214
|
-
result
|
|
37361
|
+
result: {
|
|
37362
|
+
noise_threshold?: any;
|
|
37363
|
+
};
|
|
37215
37364
|
} | {
|
|
37216
37365
|
/** The ID of the action attempt. */
|
|
37217
37366
|
action_attempt_id: string;
|
|
@@ -37235,7 +37384,7 @@ interface Routes {
|
|
|
37235
37384
|
status: 'success';
|
|
37236
37385
|
error: null;
|
|
37237
37386
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
37238
|
-
result
|
|
37387
|
+
result: {};
|
|
37239
37388
|
} | {
|
|
37240
37389
|
/** The ID of the action attempt. */
|
|
37241
37390
|
action_attempt_id: string;
|
|
@@ -37259,7 +37408,9 @@ interface Routes {
|
|
|
37259
37408
|
status: 'success';
|
|
37260
37409
|
error: null;
|
|
37261
37410
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
37262
|
-
result
|
|
37411
|
+
result: {
|
|
37412
|
+
noise_threshold?: any;
|
|
37413
|
+
};
|
|
37263
37414
|
} | {
|
|
37264
37415
|
/** The ID of the action attempt. */
|
|
37265
37416
|
action_attempt_id: string;
|
|
@@ -38005,6 +38156,7 @@ interface Routes {
|
|
|
38005
38156
|
akiles_metadata?: {
|
|
38006
38157
|
gadget_name: string;
|
|
38007
38158
|
gadget_id: string;
|
|
38159
|
+
_member_group_id?: string | undefined;
|
|
38008
38160
|
} | undefined;
|
|
38009
38161
|
}) & ({
|
|
38010
38162
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -38469,6 +38621,7 @@ interface Routes {
|
|
|
38469
38621
|
akiles_metadata?: {
|
|
38470
38622
|
gadget_name: string;
|
|
38471
38623
|
gadget_id: string;
|
|
38624
|
+
_member_group_id?: string | undefined;
|
|
38472
38625
|
} | undefined;
|
|
38473
38626
|
}) & ({
|
|
38474
38627
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -39331,6 +39484,7 @@ interface Routes {
|
|
|
39331
39484
|
akiles_metadata?: {
|
|
39332
39485
|
gadget_name: string;
|
|
39333
39486
|
gadget_id: string;
|
|
39487
|
+
_member_group_id?: string | undefined;
|
|
39334
39488
|
} | undefined;
|
|
39335
39489
|
}) & ({
|
|
39336
39490
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -39770,6 +39924,7 @@ interface Routes {
|
|
|
39770
39924
|
akiles_metadata?: {
|
|
39771
39925
|
gadget_name: string;
|
|
39772
39926
|
gadget_id: string;
|
|
39927
|
+
_member_group_id?: string | undefined;
|
|
39773
39928
|
} | undefined;
|
|
39774
39929
|
}) & ({
|
|
39775
39930
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -40234,6 +40389,7 @@ interface Routes {
|
|
|
40234
40389
|
akiles_metadata?: {
|
|
40235
40390
|
gadget_name: string;
|
|
40236
40391
|
gadget_id: string;
|
|
40392
|
+
_member_group_id?: string | undefined;
|
|
40237
40393
|
} | undefined;
|
|
40238
40394
|
}) & ({
|
|
40239
40395
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -40673,6 +40829,7 @@ interface Routes {
|
|
|
40673
40829
|
akiles_metadata?: {
|
|
40674
40830
|
gadget_name: string;
|
|
40675
40831
|
gadget_id: string;
|
|
40832
|
+
_member_group_id?: string | undefined;
|
|
40676
40833
|
} | undefined;
|
|
40677
40834
|
}) & ({
|
|
40678
40835
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -40894,7 +41051,7 @@ interface Routes {
|
|
|
40894
41051
|
/** Snapshot of the card data read from the physical encoder. */
|
|
40895
41052
|
acs_credential_on_encoder: {
|
|
40896
41053
|
/** Date and time the credential was created. */
|
|
40897
|
-
created_at: string;
|
|
41054
|
+
created_at: string | null;
|
|
40898
41055
|
is_issued: boolean | null;
|
|
40899
41056
|
/** Date and time the credential will become useable. */
|
|
40900
41057
|
starts_at: string | null;
|
|
@@ -41022,12 +41179,7 @@ interface Routes {
|
|
|
41022
41179
|
status: 'success';
|
|
41023
41180
|
error: null;
|
|
41024
41181
|
action_type: 'ENCODE_CARD';
|
|
41025
|
-
result: {
|
|
41026
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
41027
|
-
acs_credential_id: string | null;
|
|
41028
|
-
/** A number or string that physically identifies this card. */
|
|
41029
|
-
card_number: string | null;
|
|
41030
|
-
};
|
|
41182
|
+
result: {};
|
|
41031
41183
|
} | {
|
|
41032
41184
|
/** The ID of the action attempt. */
|
|
41033
41185
|
action_attempt_id: string;
|
|
@@ -41219,7 +41371,7 @@ interface Routes {
|
|
|
41219
41371
|
status: 'success';
|
|
41220
41372
|
error: null;
|
|
41221
41373
|
action_type: 'SYNC_ACCESS_CODES';
|
|
41222
|
-
result
|
|
41374
|
+
result: {};
|
|
41223
41375
|
} | {
|
|
41224
41376
|
/** The ID of the action attempt. */
|
|
41225
41377
|
action_attempt_id: string;
|
|
@@ -41243,7 +41395,9 @@ interface Routes {
|
|
|
41243
41395
|
status: 'success';
|
|
41244
41396
|
error: null;
|
|
41245
41397
|
action_type: 'CREATE_ACCESS_CODE';
|
|
41246
|
-
result
|
|
41398
|
+
result: {
|
|
41399
|
+
access_code?: any;
|
|
41400
|
+
};
|
|
41247
41401
|
} | {
|
|
41248
41402
|
/** The ID of the action attempt. */
|
|
41249
41403
|
action_attempt_id: string;
|
|
@@ -41267,7 +41421,7 @@ interface Routes {
|
|
|
41267
41421
|
status: 'success';
|
|
41268
41422
|
error: null;
|
|
41269
41423
|
action_type: 'DELETE_ACCESS_CODE';
|
|
41270
|
-
result
|
|
41424
|
+
result: {};
|
|
41271
41425
|
} | {
|
|
41272
41426
|
/** The ID of the action attempt. */
|
|
41273
41427
|
action_attempt_id: string;
|
|
@@ -41291,7 +41445,9 @@ interface Routes {
|
|
|
41291
41445
|
status: 'success';
|
|
41292
41446
|
error: null;
|
|
41293
41447
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
41294
|
-
result
|
|
41448
|
+
result: {
|
|
41449
|
+
access_code?: any;
|
|
41450
|
+
};
|
|
41295
41451
|
} | {
|
|
41296
41452
|
/** The ID of the action attempt. */
|
|
41297
41453
|
action_attempt_id: string;
|
|
@@ -41315,7 +41471,9 @@ interface Routes {
|
|
|
41315
41471
|
status: 'success';
|
|
41316
41472
|
error: null;
|
|
41317
41473
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
41318
|
-
result
|
|
41474
|
+
result: {
|
|
41475
|
+
noise_threshold?: any;
|
|
41476
|
+
};
|
|
41319
41477
|
} | {
|
|
41320
41478
|
/** The ID of the action attempt. */
|
|
41321
41479
|
action_attempt_id: string;
|
|
@@ -41339,7 +41497,7 @@ interface Routes {
|
|
|
41339
41497
|
status: 'success';
|
|
41340
41498
|
error: null;
|
|
41341
41499
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
41342
|
-
result
|
|
41500
|
+
result: {};
|
|
41343
41501
|
} | {
|
|
41344
41502
|
/** The ID of the action attempt. */
|
|
41345
41503
|
action_attempt_id: string;
|
|
@@ -41363,7 +41521,9 @@ interface Routes {
|
|
|
41363
41521
|
status: 'success';
|
|
41364
41522
|
error: null;
|
|
41365
41523
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
41366
|
-
result
|
|
41524
|
+
result: {
|
|
41525
|
+
noise_threshold?: any;
|
|
41526
|
+
};
|
|
41367
41527
|
} | {
|
|
41368
41528
|
/** The ID of the action attempt. */
|
|
41369
41529
|
action_attempt_id: string;
|
|
@@ -41453,7 +41613,7 @@ interface Routes {
|
|
|
41453
41613
|
/** Snapshot of the card data read from the physical encoder. */
|
|
41454
41614
|
acs_credential_on_encoder: {
|
|
41455
41615
|
/** Date and time the credential was created. */
|
|
41456
|
-
created_at: string;
|
|
41616
|
+
created_at: string | null;
|
|
41457
41617
|
is_issued: boolean | null;
|
|
41458
41618
|
/** Date and time the credential will become useable. */
|
|
41459
41619
|
starts_at: string | null;
|
|
@@ -41581,12 +41741,7 @@ interface Routes {
|
|
|
41581
41741
|
status: 'success';
|
|
41582
41742
|
error: null;
|
|
41583
41743
|
action_type: 'ENCODE_CARD';
|
|
41584
|
-
result: {
|
|
41585
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
41586
|
-
acs_credential_id: string | null;
|
|
41587
|
-
/** A number or string that physically identifies this card. */
|
|
41588
|
-
card_number: string | null;
|
|
41589
|
-
};
|
|
41744
|
+
result: {};
|
|
41590
41745
|
} | {
|
|
41591
41746
|
/** The ID of the action attempt. */
|
|
41592
41747
|
action_attempt_id: string;
|
|
@@ -41778,7 +41933,7 @@ interface Routes {
|
|
|
41778
41933
|
status: 'success';
|
|
41779
41934
|
error: null;
|
|
41780
41935
|
action_type: 'SYNC_ACCESS_CODES';
|
|
41781
|
-
result
|
|
41936
|
+
result: {};
|
|
41782
41937
|
} | {
|
|
41783
41938
|
/** The ID of the action attempt. */
|
|
41784
41939
|
action_attempt_id: string;
|
|
@@ -41802,7 +41957,9 @@ interface Routes {
|
|
|
41802
41957
|
status: 'success';
|
|
41803
41958
|
error: null;
|
|
41804
41959
|
action_type: 'CREATE_ACCESS_CODE';
|
|
41805
|
-
result
|
|
41960
|
+
result: {
|
|
41961
|
+
access_code?: any;
|
|
41962
|
+
};
|
|
41806
41963
|
} | {
|
|
41807
41964
|
/** The ID of the action attempt. */
|
|
41808
41965
|
action_attempt_id: string;
|
|
@@ -41826,7 +41983,7 @@ interface Routes {
|
|
|
41826
41983
|
status: 'success';
|
|
41827
41984
|
error: null;
|
|
41828
41985
|
action_type: 'DELETE_ACCESS_CODE';
|
|
41829
|
-
result
|
|
41986
|
+
result: {};
|
|
41830
41987
|
} | {
|
|
41831
41988
|
/** The ID of the action attempt. */
|
|
41832
41989
|
action_attempt_id: string;
|
|
@@ -41850,7 +42007,9 @@ interface Routes {
|
|
|
41850
42007
|
status: 'success';
|
|
41851
42008
|
error: null;
|
|
41852
42009
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
41853
|
-
result
|
|
42010
|
+
result: {
|
|
42011
|
+
access_code?: any;
|
|
42012
|
+
};
|
|
41854
42013
|
} | {
|
|
41855
42014
|
/** The ID of the action attempt. */
|
|
41856
42015
|
action_attempt_id: string;
|
|
@@ -41874,7 +42033,9 @@ interface Routes {
|
|
|
41874
42033
|
status: 'success';
|
|
41875
42034
|
error: null;
|
|
41876
42035
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
41877
|
-
result
|
|
42036
|
+
result: {
|
|
42037
|
+
noise_threshold?: any;
|
|
42038
|
+
};
|
|
41878
42039
|
} | {
|
|
41879
42040
|
/** The ID of the action attempt. */
|
|
41880
42041
|
action_attempt_id: string;
|
|
@@ -41898,7 +42059,7 @@ interface Routes {
|
|
|
41898
42059
|
status: 'success';
|
|
41899
42060
|
error: null;
|
|
41900
42061
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
41901
|
-
result
|
|
42062
|
+
result: {};
|
|
41902
42063
|
} | {
|
|
41903
42064
|
/** The ID of the action attempt. */
|
|
41904
42065
|
action_attempt_id: string;
|
|
@@ -41922,7 +42083,9 @@ interface Routes {
|
|
|
41922
42083
|
status: 'success';
|
|
41923
42084
|
error: null;
|
|
41924
42085
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
41925
|
-
result
|
|
42086
|
+
result: {
|
|
42087
|
+
noise_threshold?: any;
|
|
42088
|
+
};
|
|
41926
42089
|
} | {
|
|
41927
42090
|
/** The ID of the action attempt. */
|
|
41928
42091
|
action_attempt_id: string;
|
|
@@ -42289,6 +42452,7 @@ interface Routes {
|
|
|
42289
42452
|
akiles_metadata?: {
|
|
42290
42453
|
gadget_name: string;
|
|
42291
42454
|
gadget_id: string;
|
|
42455
|
+
_member_group_id?: string | undefined;
|
|
42292
42456
|
} | undefined;
|
|
42293
42457
|
}) & ({
|
|
42294
42458
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42728,6 +42892,7 @@ interface Routes {
|
|
|
42728
42892
|
akiles_metadata?: {
|
|
42729
42893
|
gadget_name: string;
|
|
42730
42894
|
gadget_id: string;
|
|
42895
|
+
_member_group_id?: string | undefined;
|
|
42731
42896
|
} | undefined;
|
|
42732
42897
|
}) & ({
|
|
42733
42898
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42954,7 +43119,7 @@ interface Routes {
|
|
|
42954
43119
|
/** Snapshot of the card data read from the physical encoder. */
|
|
42955
43120
|
acs_credential_on_encoder: {
|
|
42956
43121
|
/** Date and time the credential was created. */
|
|
42957
|
-
created_at: string;
|
|
43122
|
+
created_at: string | null;
|
|
42958
43123
|
is_issued: boolean | null;
|
|
42959
43124
|
/** Date and time the credential will become useable. */
|
|
42960
43125
|
starts_at: string | null;
|
|
@@ -43082,12 +43247,7 @@ interface Routes {
|
|
|
43082
43247
|
status: 'success';
|
|
43083
43248
|
error: null;
|
|
43084
43249
|
action_type: 'ENCODE_CARD';
|
|
43085
|
-
result: {
|
|
43086
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
43087
|
-
acs_credential_id: string | null;
|
|
43088
|
-
/** A number or string that physically identifies this card. */
|
|
43089
|
-
card_number: string | null;
|
|
43090
|
-
};
|
|
43250
|
+
result: {};
|
|
43091
43251
|
} | {
|
|
43092
43252
|
/** The ID of the action attempt. */
|
|
43093
43253
|
action_attempt_id: string;
|
|
@@ -43279,7 +43439,7 @@ interface Routes {
|
|
|
43279
43439
|
status: 'success';
|
|
43280
43440
|
error: null;
|
|
43281
43441
|
action_type: 'SYNC_ACCESS_CODES';
|
|
43282
|
-
result
|
|
43442
|
+
result: {};
|
|
43283
43443
|
} | {
|
|
43284
43444
|
/** The ID of the action attempt. */
|
|
43285
43445
|
action_attempt_id: string;
|
|
@@ -43303,7 +43463,9 @@ interface Routes {
|
|
|
43303
43463
|
status: 'success';
|
|
43304
43464
|
error: null;
|
|
43305
43465
|
action_type: 'CREATE_ACCESS_CODE';
|
|
43306
|
-
result
|
|
43466
|
+
result: {
|
|
43467
|
+
access_code?: any;
|
|
43468
|
+
};
|
|
43307
43469
|
} | {
|
|
43308
43470
|
/** The ID of the action attempt. */
|
|
43309
43471
|
action_attempt_id: string;
|
|
@@ -43327,7 +43489,7 @@ interface Routes {
|
|
|
43327
43489
|
status: 'success';
|
|
43328
43490
|
error: null;
|
|
43329
43491
|
action_type: 'DELETE_ACCESS_CODE';
|
|
43330
|
-
result
|
|
43492
|
+
result: {};
|
|
43331
43493
|
} | {
|
|
43332
43494
|
/** The ID of the action attempt. */
|
|
43333
43495
|
action_attempt_id: string;
|
|
@@ -43351,7 +43513,9 @@ interface Routes {
|
|
|
43351
43513
|
status: 'success';
|
|
43352
43514
|
error: null;
|
|
43353
43515
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
43354
|
-
result
|
|
43516
|
+
result: {
|
|
43517
|
+
access_code?: any;
|
|
43518
|
+
};
|
|
43355
43519
|
} | {
|
|
43356
43520
|
/** The ID of the action attempt. */
|
|
43357
43521
|
action_attempt_id: string;
|
|
@@ -43375,7 +43539,9 @@ interface Routes {
|
|
|
43375
43539
|
status: 'success';
|
|
43376
43540
|
error: null;
|
|
43377
43541
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
43378
|
-
result
|
|
43542
|
+
result: {
|
|
43543
|
+
noise_threshold?: any;
|
|
43544
|
+
};
|
|
43379
43545
|
} | {
|
|
43380
43546
|
/** The ID of the action attempt. */
|
|
43381
43547
|
action_attempt_id: string;
|
|
@@ -43399,7 +43565,7 @@ interface Routes {
|
|
|
43399
43565
|
status: 'success';
|
|
43400
43566
|
error: null;
|
|
43401
43567
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
43402
|
-
result
|
|
43568
|
+
result: {};
|
|
43403
43569
|
} | {
|
|
43404
43570
|
/** The ID of the action attempt. */
|
|
43405
43571
|
action_attempt_id: string;
|
|
@@ -43423,7 +43589,9 @@ interface Routes {
|
|
|
43423
43589
|
status: 'success';
|
|
43424
43590
|
error: null;
|
|
43425
43591
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
43426
|
-
result
|
|
43592
|
+
result: {
|
|
43593
|
+
noise_threshold?: any;
|
|
43594
|
+
};
|
|
43427
43595
|
} | {
|
|
43428
43596
|
/** The ID of the action attempt. */
|
|
43429
43597
|
action_attempt_id: string;
|
|
@@ -43523,7 +43691,7 @@ interface Routes {
|
|
|
43523
43691
|
/** Snapshot of the card data read from the physical encoder. */
|
|
43524
43692
|
acs_credential_on_encoder: {
|
|
43525
43693
|
/** Date and time the credential was created. */
|
|
43526
|
-
created_at: string;
|
|
43694
|
+
created_at: string | null;
|
|
43527
43695
|
is_issued: boolean | null;
|
|
43528
43696
|
/** Date and time the credential will become useable. */
|
|
43529
43697
|
starts_at: string | null;
|
|
@@ -43651,12 +43819,7 @@ interface Routes {
|
|
|
43651
43819
|
status: 'success';
|
|
43652
43820
|
error: null;
|
|
43653
43821
|
action_type: 'ENCODE_CARD';
|
|
43654
|
-
result: {
|
|
43655
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
43656
|
-
acs_credential_id: string | null;
|
|
43657
|
-
/** A number or string that physically identifies this card. */
|
|
43658
|
-
card_number: string | null;
|
|
43659
|
-
};
|
|
43822
|
+
result: {};
|
|
43660
43823
|
} | {
|
|
43661
43824
|
/** The ID of the action attempt. */
|
|
43662
43825
|
action_attempt_id: string;
|
|
@@ -43848,7 +44011,7 @@ interface Routes {
|
|
|
43848
44011
|
status: 'success';
|
|
43849
44012
|
error: null;
|
|
43850
44013
|
action_type: 'SYNC_ACCESS_CODES';
|
|
43851
|
-
result
|
|
44014
|
+
result: {};
|
|
43852
44015
|
} | {
|
|
43853
44016
|
/** The ID of the action attempt. */
|
|
43854
44017
|
action_attempt_id: string;
|
|
@@ -43872,7 +44035,9 @@ interface Routes {
|
|
|
43872
44035
|
status: 'success';
|
|
43873
44036
|
error: null;
|
|
43874
44037
|
action_type: 'CREATE_ACCESS_CODE';
|
|
43875
|
-
result
|
|
44038
|
+
result: {
|
|
44039
|
+
access_code?: any;
|
|
44040
|
+
};
|
|
43876
44041
|
} | {
|
|
43877
44042
|
/** The ID of the action attempt. */
|
|
43878
44043
|
action_attempt_id: string;
|
|
@@ -43896,7 +44061,7 @@ interface Routes {
|
|
|
43896
44061
|
status: 'success';
|
|
43897
44062
|
error: null;
|
|
43898
44063
|
action_type: 'DELETE_ACCESS_CODE';
|
|
43899
|
-
result
|
|
44064
|
+
result: {};
|
|
43900
44065
|
} | {
|
|
43901
44066
|
/** The ID of the action attempt. */
|
|
43902
44067
|
action_attempt_id: string;
|
|
@@ -43920,7 +44085,9 @@ interface Routes {
|
|
|
43920
44085
|
status: 'success';
|
|
43921
44086
|
error: null;
|
|
43922
44087
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
43923
|
-
result
|
|
44088
|
+
result: {
|
|
44089
|
+
access_code?: any;
|
|
44090
|
+
};
|
|
43924
44091
|
} | {
|
|
43925
44092
|
/** The ID of the action attempt. */
|
|
43926
44093
|
action_attempt_id: string;
|
|
@@ -43944,7 +44111,9 @@ interface Routes {
|
|
|
43944
44111
|
status: 'success';
|
|
43945
44112
|
error: null;
|
|
43946
44113
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
43947
|
-
result
|
|
44114
|
+
result: {
|
|
44115
|
+
noise_threshold?: any;
|
|
44116
|
+
};
|
|
43948
44117
|
} | {
|
|
43949
44118
|
/** The ID of the action attempt. */
|
|
43950
44119
|
action_attempt_id: string;
|
|
@@ -43968,7 +44137,7 @@ interface Routes {
|
|
|
43968
44137
|
status: 'success';
|
|
43969
44138
|
error: null;
|
|
43970
44139
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
43971
|
-
result
|
|
44140
|
+
result: {};
|
|
43972
44141
|
} | {
|
|
43973
44142
|
/** The ID of the action attempt. */
|
|
43974
44143
|
action_attempt_id: string;
|
|
@@ -43992,7 +44161,9 @@ interface Routes {
|
|
|
43992
44161
|
status: 'success';
|
|
43993
44162
|
error: null;
|
|
43994
44163
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
43995
|
-
result
|
|
44164
|
+
result: {
|
|
44165
|
+
noise_threshold?: any;
|
|
44166
|
+
};
|
|
43996
44167
|
} | {
|
|
43997
44168
|
/** The ID of the action attempt. */
|
|
43998
44169
|
action_attempt_id: string;
|
|
@@ -44131,7 +44302,7 @@ interface Routes {
|
|
|
44131
44302
|
/** Snapshot of the card data read from the physical encoder. */
|
|
44132
44303
|
acs_credential_on_encoder: {
|
|
44133
44304
|
/** Date and time the credential was created. */
|
|
44134
|
-
created_at: string;
|
|
44305
|
+
created_at: string | null;
|
|
44135
44306
|
is_issued: boolean | null;
|
|
44136
44307
|
/** Date and time the credential will become useable. */
|
|
44137
44308
|
starts_at: string | null;
|
|
@@ -44259,12 +44430,7 @@ interface Routes {
|
|
|
44259
44430
|
status: 'success';
|
|
44260
44431
|
error: null;
|
|
44261
44432
|
action_type: 'ENCODE_CARD';
|
|
44262
|
-
result: {
|
|
44263
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
44264
|
-
acs_credential_id: string | null;
|
|
44265
|
-
/** A number or string that physically identifies this card. */
|
|
44266
|
-
card_number: string | null;
|
|
44267
|
-
};
|
|
44433
|
+
result: {};
|
|
44268
44434
|
} | {
|
|
44269
44435
|
/** The ID of the action attempt. */
|
|
44270
44436
|
action_attempt_id: string;
|
|
@@ -44456,7 +44622,7 @@ interface Routes {
|
|
|
44456
44622
|
status: 'success';
|
|
44457
44623
|
error: null;
|
|
44458
44624
|
action_type: 'SYNC_ACCESS_CODES';
|
|
44459
|
-
result
|
|
44625
|
+
result: {};
|
|
44460
44626
|
} | {
|
|
44461
44627
|
/** The ID of the action attempt. */
|
|
44462
44628
|
action_attempt_id: string;
|
|
@@ -44480,7 +44646,9 @@ interface Routes {
|
|
|
44480
44646
|
status: 'success';
|
|
44481
44647
|
error: null;
|
|
44482
44648
|
action_type: 'CREATE_ACCESS_CODE';
|
|
44483
|
-
result
|
|
44649
|
+
result: {
|
|
44650
|
+
access_code?: any;
|
|
44651
|
+
};
|
|
44484
44652
|
} | {
|
|
44485
44653
|
/** The ID of the action attempt. */
|
|
44486
44654
|
action_attempt_id: string;
|
|
@@ -44504,7 +44672,7 @@ interface Routes {
|
|
|
44504
44672
|
status: 'success';
|
|
44505
44673
|
error: null;
|
|
44506
44674
|
action_type: 'DELETE_ACCESS_CODE';
|
|
44507
|
-
result
|
|
44675
|
+
result: {};
|
|
44508
44676
|
} | {
|
|
44509
44677
|
/** The ID of the action attempt. */
|
|
44510
44678
|
action_attempt_id: string;
|
|
@@ -44528,7 +44696,9 @@ interface Routes {
|
|
|
44528
44696
|
status: 'success';
|
|
44529
44697
|
error: null;
|
|
44530
44698
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
44531
|
-
result
|
|
44699
|
+
result: {
|
|
44700
|
+
access_code?: any;
|
|
44701
|
+
};
|
|
44532
44702
|
} | {
|
|
44533
44703
|
/** The ID of the action attempt. */
|
|
44534
44704
|
action_attempt_id: string;
|
|
@@ -44552,7 +44722,9 @@ interface Routes {
|
|
|
44552
44722
|
status: 'success';
|
|
44553
44723
|
error: null;
|
|
44554
44724
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
44555
|
-
result
|
|
44725
|
+
result: {
|
|
44726
|
+
noise_threshold?: any;
|
|
44727
|
+
};
|
|
44556
44728
|
} | {
|
|
44557
44729
|
/** The ID of the action attempt. */
|
|
44558
44730
|
action_attempt_id: string;
|
|
@@ -44576,7 +44748,7 @@ interface Routes {
|
|
|
44576
44748
|
status: 'success';
|
|
44577
44749
|
error: null;
|
|
44578
44750
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
44579
|
-
result
|
|
44751
|
+
result: {};
|
|
44580
44752
|
} | {
|
|
44581
44753
|
/** The ID of the action attempt. */
|
|
44582
44754
|
action_attempt_id: string;
|
|
@@ -44600,7 +44772,9 @@ interface Routes {
|
|
|
44600
44772
|
status: 'success';
|
|
44601
44773
|
error: null;
|
|
44602
44774
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
44603
|
-
result
|
|
44775
|
+
result: {
|
|
44776
|
+
noise_threshold?: any;
|
|
44777
|
+
};
|
|
44604
44778
|
} | {
|
|
44605
44779
|
/** The ID of the action attempt. */
|
|
44606
44780
|
action_attempt_id: string;
|
|
@@ -44872,7 +45046,7 @@ interface Routes {
|
|
|
44872
45046
|
/** Snapshot of the card data read from the physical encoder. */
|
|
44873
45047
|
acs_credential_on_encoder: {
|
|
44874
45048
|
/** Date and time the credential was created. */
|
|
44875
|
-
created_at: string;
|
|
45049
|
+
created_at: string | null;
|
|
44876
45050
|
is_issued: boolean | null;
|
|
44877
45051
|
/** Date and time the credential will become useable. */
|
|
44878
45052
|
starts_at: string | null;
|
|
@@ -45000,12 +45174,7 @@ interface Routes {
|
|
|
45000
45174
|
status: 'success';
|
|
45001
45175
|
error: null;
|
|
45002
45176
|
action_type: 'ENCODE_CARD';
|
|
45003
|
-
result: {
|
|
45004
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
45005
|
-
acs_credential_id: string | null;
|
|
45006
|
-
/** A number or string that physically identifies this card. */
|
|
45007
|
-
card_number: string | null;
|
|
45008
|
-
};
|
|
45177
|
+
result: {};
|
|
45009
45178
|
} | {
|
|
45010
45179
|
/** The ID of the action attempt. */
|
|
45011
45180
|
action_attempt_id: string;
|
|
@@ -45197,7 +45366,7 @@ interface Routes {
|
|
|
45197
45366
|
status: 'success';
|
|
45198
45367
|
error: null;
|
|
45199
45368
|
action_type: 'SYNC_ACCESS_CODES';
|
|
45200
|
-
result
|
|
45369
|
+
result: {};
|
|
45201
45370
|
} | {
|
|
45202
45371
|
/** The ID of the action attempt. */
|
|
45203
45372
|
action_attempt_id: string;
|
|
@@ -45221,7 +45390,9 @@ interface Routes {
|
|
|
45221
45390
|
status: 'success';
|
|
45222
45391
|
error: null;
|
|
45223
45392
|
action_type: 'CREATE_ACCESS_CODE';
|
|
45224
|
-
result
|
|
45393
|
+
result: {
|
|
45394
|
+
access_code?: any;
|
|
45395
|
+
};
|
|
45225
45396
|
} | {
|
|
45226
45397
|
/** The ID of the action attempt. */
|
|
45227
45398
|
action_attempt_id: string;
|
|
@@ -45245,7 +45416,7 @@ interface Routes {
|
|
|
45245
45416
|
status: 'success';
|
|
45246
45417
|
error: null;
|
|
45247
45418
|
action_type: 'DELETE_ACCESS_CODE';
|
|
45248
|
-
result
|
|
45419
|
+
result: {};
|
|
45249
45420
|
} | {
|
|
45250
45421
|
/** The ID of the action attempt. */
|
|
45251
45422
|
action_attempt_id: string;
|
|
@@ -45269,7 +45440,9 @@ interface Routes {
|
|
|
45269
45440
|
status: 'success';
|
|
45270
45441
|
error: null;
|
|
45271
45442
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
45272
|
-
result
|
|
45443
|
+
result: {
|
|
45444
|
+
access_code?: any;
|
|
45445
|
+
};
|
|
45273
45446
|
} | {
|
|
45274
45447
|
/** The ID of the action attempt. */
|
|
45275
45448
|
action_attempt_id: string;
|
|
@@ -45293,7 +45466,9 @@ interface Routes {
|
|
|
45293
45466
|
status: 'success';
|
|
45294
45467
|
error: null;
|
|
45295
45468
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
45296
|
-
result
|
|
45469
|
+
result: {
|
|
45470
|
+
noise_threshold?: any;
|
|
45471
|
+
};
|
|
45297
45472
|
} | {
|
|
45298
45473
|
/** The ID of the action attempt. */
|
|
45299
45474
|
action_attempt_id: string;
|
|
@@ -45317,7 +45492,7 @@ interface Routes {
|
|
|
45317
45492
|
status: 'success';
|
|
45318
45493
|
error: null;
|
|
45319
45494
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
45320
|
-
result
|
|
45495
|
+
result: {};
|
|
45321
45496
|
} | {
|
|
45322
45497
|
/** The ID of the action attempt. */
|
|
45323
45498
|
action_attempt_id: string;
|
|
@@ -45341,7 +45516,9 @@ interface Routes {
|
|
|
45341
45516
|
status: 'success';
|
|
45342
45517
|
error: null;
|
|
45343
45518
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
45344
|
-
result
|
|
45519
|
+
result: {
|
|
45520
|
+
noise_threshold?: any;
|
|
45521
|
+
};
|
|
45345
45522
|
} | {
|
|
45346
45523
|
/** The ID of the action attempt. */
|
|
45347
45524
|
action_attempt_id: string;
|
|
@@ -45433,7 +45610,7 @@ interface Routes {
|
|
|
45433
45610
|
/** Snapshot of the card data read from the physical encoder. */
|
|
45434
45611
|
acs_credential_on_encoder: {
|
|
45435
45612
|
/** Date and time the credential was created. */
|
|
45436
|
-
created_at: string;
|
|
45613
|
+
created_at: string | null;
|
|
45437
45614
|
is_issued: boolean | null;
|
|
45438
45615
|
/** Date and time the credential will become useable. */
|
|
45439
45616
|
starts_at: string | null;
|
|
@@ -45561,12 +45738,7 @@ interface Routes {
|
|
|
45561
45738
|
status: 'success';
|
|
45562
45739
|
error: null;
|
|
45563
45740
|
action_type: 'ENCODE_CARD';
|
|
45564
|
-
result: {
|
|
45565
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
45566
|
-
acs_credential_id: string | null;
|
|
45567
|
-
/** A number or string that physically identifies this card. */
|
|
45568
|
-
card_number: string | null;
|
|
45569
|
-
};
|
|
45741
|
+
result: {};
|
|
45570
45742
|
} | {
|
|
45571
45743
|
/** The ID of the action attempt. */
|
|
45572
45744
|
action_attempt_id: string;
|
|
@@ -45758,7 +45930,7 @@ interface Routes {
|
|
|
45758
45930
|
status: 'success';
|
|
45759
45931
|
error: null;
|
|
45760
45932
|
action_type: 'SYNC_ACCESS_CODES';
|
|
45761
|
-
result
|
|
45933
|
+
result: {};
|
|
45762
45934
|
} | {
|
|
45763
45935
|
/** The ID of the action attempt. */
|
|
45764
45936
|
action_attempt_id: string;
|
|
@@ -45782,7 +45954,9 @@ interface Routes {
|
|
|
45782
45954
|
status: 'success';
|
|
45783
45955
|
error: null;
|
|
45784
45956
|
action_type: 'CREATE_ACCESS_CODE';
|
|
45785
|
-
result
|
|
45957
|
+
result: {
|
|
45958
|
+
access_code?: any;
|
|
45959
|
+
};
|
|
45786
45960
|
} | {
|
|
45787
45961
|
/** The ID of the action attempt. */
|
|
45788
45962
|
action_attempt_id: string;
|
|
@@ -45806,7 +45980,7 @@ interface Routes {
|
|
|
45806
45980
|
status: 'success';
|
|
45807
45981
|
error: null;
|
|
45808
45982
|
action_type: 'DELETE_ACCESS_CODE';
|
|
45809
|
-
result
|
|
45983
|
+
result: {};
|
|
45810
45984
|
} | {
|
|
45811
45985
|
/** The ID of the action attempt. */
|
|
45812
45986
|
action_attempt_id: string;
|
|
@@ -45830,7 +46004,9 @@ interface Routes {
|
|
|
45830
46004
|
status: 'success';
|
|
45831
46005
|
error: null;
|
|
45832
46006
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
45833
|
-
result
|
|
46007
|
+
result: {
|
|
46008
|
+
access_code?: any;
|
|
46009
|
+
};
|
|
45834
46010
|
} | {
|
|
45835
46011
|
/** The ID of the action attempt. */
|
|
45836
46012
|
action_attempt_id: string;
|
|
@@ -45854,7 +46030,9 @@ interface Routes {
|
|
|
45854
46030
|
status: 'success';
|
|
45855
46031
|
error: null;
|
|
45856
46032
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
45857
|
-
result
|
|
46033
|
+
result: {
|
|
46034
|
+
noise_threshold?: any;
|
|
46035
|
+
};
|
|
45858
46036
|
} | {
|
|
45859
46037
|
/** The ID of the action attempt. */
|
|
45860
46038
|
action_attempt_id: string;
|
|
@@ -45878,7 +46056,7 @@ interface Routes {
|
|
|
45878
46056
|
status: 'success';
|
|
45879
46057
|
error: null;
|
|
45880
46058
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
45881
|
-
result
|
|
46059
|
+
result: {};
|
|
45882
46060
|
} | {
|
|
45883
46061
|
/** The ID of the action attempt. */
|
|
45884
46062
|
action_attempt_id: string;
|
|
@@ -45902,7 +46080,9 @@ interface Routes {
|
|
|
45902
46080
|
status: 'success';
|
|
45903
46081
|
error: null;
|
|
45904
46082
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
45905
|
-
result
|
|
46083
|
+
result: {
|
|
46084
|
+
noise_threshold?: any;
|
|
46085
|
+
};
|
|
45906
46086
|
} | {
|
|
45907
46087
|
/** The ID of the action attempt. */
|
|
45908
46088
|
action_attempt_id: string;
|
|
@@ -46255,6 +46435,7 @@ interface Routes {
|
|
|
46255
46435
|
akiles_metadata?: {
|
|
46256
46436
|
gadget_name: string;
|
|
46257
46437
|
gadget_id: string;
|
|
46438
|
+
_member_group_id?: string | undefined;
|
|
46258
46439
|
} | undefined;
|
|
46259
46440
|
}) & ({
|
|
46260
46441
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -46478,7 +46659,7 @@ interface Routes {
|
|
|
46478
46659
|
/** Snapshot of the card data read from the physical encoder. */
|
|
46479
46660
|
acs_credential_on_encoder: {
|
|
46480
46661
|
/** Date and time the credential was created. */
|
|
46481
|
-
created_at: string;
|
|
46662
|
+
created_at: string | null;
|
|
46482
46663
|
is_issued: boolean | null;
|
|
46483
46664
|
/** Date and time the credential will become useable. */
|
|
46484
46665
|
starts_at: string | null;
|
|
@@ -46606,12 +46787,7 @@ interface Routes {
|
|
|
46606
46787
|
status: 'success';
|
|
46607
46788
|
error: null;
|
|
46608
46789
|
action_type: 'ENCODE_CARD';
|
|
46609
|
-
result: {
|
|
46610
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
46611
|
-
acs_credential_id: string | null;
|
|
46612
|
-
/** A number or string that physically identifies this card. */
|
|
46613
|
-
card_number: string | null;
|
|
46614
|
-
};
|
|
46790
|
+
result: {};
|
|
46615
46791
|
} | {
|
|
46616
46792
|
/** The ID of the action attempt. */
|
|
46617
46793
|
action_attempt_id: string;
|
|
@@ -46803,7 +46979,7 @@ interface Routes {
|
|
|
46803
46979
|
status: 'success';
|
|
46804
46980
|
error: null;
|
|
46805
46981
|
action_type: 'SYNC_ACCESS_CODES';
|
|
46806
|
-
result
|
|
46982
|
+
result: {};
|
|
46807
46983
|
} | {
|
|
46808
46984
|
/** The ID of the action attempt. */
|
|
46809
46985
|
action_attempt_id: string;
|
|
@@ -46827,7 +47003,9 @@ interface Routes {
|
|
|
46827
47003
|
status: 'success';
|
|
46828
47004
|
error: null;
|
|
46829
47005
|
action_type: 'CREATE_ACCESS_CODE';
|
|
46830
|
-
result
|
|
47006
|
+
result: {
|
|
47007
|
+
access_code?: any;
|
|
47008
|
+
};
|
|
46831
47009
|
} | {
|
|
46832
47010
|
/** The ID of the action attempt. */
|
|
46833
47011
|
action_attempt_id: string;
|
|
@@ -46851,7 +47029,7 @@ interface Routes {
|
|
|
46851
47029
|
status: 'success';
|
|
46852
47030
|
error: null;
|
|
46853
47031
|
action_type: 'DELETE_ACCESS_CODE';
|
|
46854
|
-
result
|
|
47032
|
+
result: {};
|
|
46855
47033
|
} | {
|
|
46856
47034
|
/** The ID of the action attempt. */
|
|
46857
47035
|
action_attempt_id: string;
|
|
@@ -46875,7 +47053,9 @@ interface Routes {
|
|
|
46875
47053
|
status: 'success';
|
|
46876
47054
|
error: null;
|
|
46877
47055
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
46878
|
-
result
|
|
47056
|
+
result: {
|
|
47057
|
+
access_code?: any;
|
|
47058
|
+
};
|
|
46879
47059
|
} | {
|
|
46880
47060
|
/** The ID of the action attempt. */
|
|
46881
47061
|
action_attempt_id: string;
|
|
@@ -46899,7 +47079,9 @@ interface Routes {
|
|
|
46899
47079
|
status: 'success';
|
|
46900
47080
|
error: null;
|
|
46901
47081
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
46902
|
-
result
|
|
47082
|
+
result: {
|
|
47083
|
+
noise_threshold?: any;
|
|
47084
|
+
};
|
|
46903
47085
|
} | {
|
|
46904
47086
|
/** The ID of the action attempt. */
|
|
46905
47087
|
action_attempt_id: string;
|
|
@@ -46923,7 +47105,7 @@ interface Routes {
|
|
|
46923
47105
|
status: 'success';
|
|
46924
47106
|
error: null;
|
|
46925
47107
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
46926
|
-
result
|
|
47108
|
+
result: {};
|
|
46927
47109
|
} | {
|
|
46928
47110
|
/** The ID of the action attempt. */
|
|
46929
47111
|
action_attempt_id: string;
|
|
@@ -46947,7 +47129,9 @@ interface Routes {
|
|
|
46947
47129
|
status: 'success';
|
|
46948
47130
|
error: null;
|
|
46949
47131
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
46950
|
-
result
|
|
47132
|
+
result: {
|
|
47133
|
+
noise_threshold?: any;
|
|
47134
|
+
};
|
|
46951
47135
|
} | {
|
|
46952
47136
|
/** The ID of the action attempt. */
|
|
46953
47137
|
action_attempt_id: string;
|
|
@@ -47041,7 +47225,7 @@ interface Routes {
|
|
|
47041
47225
|
/** Snapshot of the card data read from the physical encoder. */
|
|
47042
47226
|
acs_credential_on_encoder: {
|
|
47043
47227
|
/** Date and time the credential was created. */
|
|
47044
|
-
created_at: string;
|
|
47228
|
+
created_at: string | null;
|
|
47045
47229
|
is_issued: boolean | null;
|
|
47046
47230
|
/** Date and time the credential will become useable. */
|
|
47047
47231
|
starts_at: string | null;
|
|
@@ -47169,12 +47353,7 @@ interface Routes {
|
|
|
47169
47353
|
status: 'success';
|
|
47170
47354
|
error: null;
|
|
47171
47355
|
action_type: 'ENCODE_CARD';
|
|
47172
|
-
result: {
|
|
47173
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
47174
|
-
acs_credential_id: string | null;
|
|
47175
|
-
/** A number or string that physically identifies this card. */
|
|
47176
|
-
card_number: string | null;
|
|
47177
|
-
};
|
|
47356
|
+
result: {};
|
|
47178
47357
|
} | {
|
|
47179
47358
|
/** The ID of the action attempt. */
|
|
47180
47359
|
action_attempt_id: string;
|
|
@@ -47366,7 +47545,7 @@ interface Routes {
|
|
|
47366
47545
|
status: 'success';
|
|
47367
47546
|
error: null;
|
|
47368
47547
|
action_type: 'SYNC_ACCESS_CODES';
|
|
47369
|
-
result
|
|
47548
|
+
result: {};
|
|
47370
47549
|
} | {
|
|
47371
47550
|
/** The ID of the action attempt. */
|
|
47372
47551
|
action_attempt_id: string;
|
|
@@ -47390,7 +47569,9 @@ interface Routes {
|
|
|
47390
47569
|
status: 'success';
|
|
47391
47570
|
error: null;
|
|
47392
47571
|
action_type: 'CREATE_ACCESS_CODE';
|
|
47393
|
-
result
|
|
47572
|
+
result: {
|
|
47573
|
+
access_code?: any;
|
|
47574
|
+
};
|
|
47394
47575
|
} | {
|
|
47395
47576
|
/** The ID of the action attempt. */
|
|
47396
47577
|
action_attempt_id: string;
|
|
@@ -47414,7 +47595,7 @@ interface Routes {
|
|
|
47414
47595
|
status: 'success';
|
|
47415
47596
|
error: null;
|
|
47416
47597
|
action_type: 'DELETE_ACCESS_CODE';
|
|
47417
|
-
result
|
|
47598
|
+
result: {};
|
|
47418
47599
|
} | {
|
|
47419
47600
|
/** The ID of the action attempt. */
|
|
47420
47601
|
action_attempt_id: string;
|
|
@@ -47438,7 +47619,9 @@ interface Routes {
|
|
|
47438
47619
|
status: 'success';
|
|
47439
47620
|
error: null;
|
|
47440
47621
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
47441
|
-
result
|
|
47622
|
+
result: {
|
|
47623
|
+
access_code?: any;
|
|
47624
|
+
};
|
|
47442
47625
|
} | {
|
|
47443
47626
|
/** The ID of the action attempt. */
|
|
47444
47627
|
action_attempt_id: string;
|
|
@@ -47462,7 +47645,9 @@ interface Routes {
|
|
|
47462
47645
|
status: 'success';
|
|
47463
47646
|
error: null;
|
|
47464
47647
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
47465
|
-
result
|
|
47648
|
+
result: {
|
|
47649
|
+
noise_threshold?: any;
|
|
47650
|
+
};
|
|
47466
47651
|
} | {
|
|
47467
47652
|
/** The ID of the action attempt. */
|
|
47468
47653
|
action_attempt_id: string;
|
|
@@ -47486,7 +47671,7 @@ interface Routes {
|
|
|
47486
47671
|
status: 'success';
|
|
47487
47672
|
error: null;
|
|
47488
47673
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
47489
|
-
result
|
|
47674
|
+
result: {};
|
|
47490
47675
|
} | {
|
|
47491
47676
|
/** The ID of the action attempt. */
|
|
47492
47677
|
action_attempt_id: string;
|
|
@@ -47510,7 +47695,9 @@ interface Routes {
|
|
|
47510
47695
|
status: 'success';
|
|
47511
47696
|
error: null;
|
|
47512
47697
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
47513
|
-
result
|
|
47698
|
+
result: {
|
|
47699
|
+
noise_threshold?: any;
|
|
47700
|
+
};
|
|
47514
47701
|
} | {
|
|
47515
47702
|
/** The ID of the action attempt. */
|
|
47516
47703
|
action_attempt_id: string;
|
|
@@ -47843,6 +48030,7 @@ interface Routes {
|
|
|
47843
48030
|
akiles_metadata?: {
|
|
47844
48031
|
gadget_name: string;
|
|
47845
48032
|
gadget_id: string;
|
|
48033
|
+
_member_group_id?: string | undefined;
|
|
47846
48034
|
} | undefined;
|
|
47847
48035
|
}) & ({
|
|
47848
48036
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48503,7 +48691,7 @@ interface Routes {
|
|
|
48503
48691
|
/** Snapshot of the card data read from the physical encoder. */
|
|
48504
48692
|
acs_credential_on_encoder: {
|
|
48505
48693
|
/** Date and time the credential was created. */
|
|
48506
|
-
created_at: string;
|
|
48694
|
+
created_at: string | null;
|
|
48507
48695
|
is_issued: boolean | null;
|
|
48508
48696
|
/** Date and time the credential will become useable. */
|
|
48509
48697
|
starts_at: string | null;
|
|
@@ -48631,12 +48819,7 @@ interface Routes {
|
|
|
48631
48819
|
status: 'success';
|
|
48632
48820
|
error: null;
|
|
48633
48821
|
action_type: 'ENCODE_CARD';
|
|
48634
|
-
result: {
|
|
48635
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
48636
|
-
acs_credential_id: string | null;
|
|
48637
|
-
/** A number or string that physically identifies this card. */
|
|
48638
|
-
card_number: string | null;
|
|
48639
|
-
};
|
|
48822
|
+
result: {};
|
|
48640
48823
|
} | {
|
|
48641
48824
|
/** The ID of the action attempt. */
|
|
48642
48825
|
action_attempt_id: string;
|
|
@@ -48828,7 +49011,7 @@ interface Routes {
|
|
|
48828
49011
|
status: 'success';
|
|
48829
49012
|
error: null;
|
|
48830
49013
|
action_type: 'SYNC_ACCESS_CODES';
|
|
48831
|
-
result
|
|
49014
|
+
result: {};
|
|
48832
49015
|
} | {
|
|
48833
49016
|
/** The ID of the action attempt. */
|
|
48834
49017
|
action_attempt_id: string;
|
|
@@ -48852,7 +49035,9 @@ interface Routes {
|
|
|
48852
49035
|
status: 'success';
|
|
48853
49036
|
error: null;
|
|
48854
49037
|
action_type: 'CREATE_ACCESS_CODE';
|
|
48855
|
-
result
|
|
49038
|
+
result: {
|
|
49039
|
+
access_code?: any;
|
|
49040
|
+
};
|
|
48856
49041
|
} | {
|
|
48857
49042
|
/** The ID of the action attempt. */
|
|
48858
49043
|
action_attempt_id: string;
|
|
@@ -48876,7 +49061,7 @@ interface Routes {
|
|
|
48876
49061
|
status: 'success';
|
|
48877
49062
|
error: null;
|
|
48878
49063
|
action_type: 'DELETE_ACCESS_CODE';
|
|
48879
|
-
result
|
|
49064
|
+
result: {};
|
|
48880
49065
|
} | {
|
|
48881
49066
|
/** The ID of the action attempt. */
|
|
48882
49067
|
action_attempt_id: string;
|
|
@@ -48900,7 +49085,9 @@ interface Routes {
|
|
|
48900
49085
|
status: 'success';
|
|
48901
49086
|
error: null;
|
|
48902
49087
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
48903
|
-
result
|
|
49088
|
+
result: {
|
|
49089
|
+
access_code?: any;
|
|
49090
|
+
};
|
|
48904
49091
|
} | {
|
|
48905
49092
|
/** The ID of the action attempt. */
|
|
48906
49093
|
action_attempt_id: string;
|
|
@@ -48924,7 +49111,9 @@ interface Routes {
|
|
|
48924
49111
|
status: 'success';
|
|
48925
49112
|
error: null;
|
|
48926
49113
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
48927
|
-
result
|
|
49114
|
+
result: {
|
|
49115
|
+
noise_threshold?: any;
|
|
49116
|
+
};
|
|
48928
49117
|
} | {
|
|
48929
49118
|
/** The ID of the action attempt. */
|
|
48930
49119
|
action_attempt_id: string;
|
|
@@ -48948,7 +49137,7 @@ interface Routes {
|
|
|
48948
49137
|
status: 'success';
|
|
48949
49138
|
error: null;
|
|
48950
49139
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
48951
|
-
result
|
|
49140
|
+
result: {};
|
|
48952
49141
|
} | {
|
|
48953
49142
|
/** The ID of the action attempt. */
|
|
48954
49143
|
action_attempt_id: string;
|
|
@@ -48972,7 +49161,9 @@ interface Routes {
|
|
|
48972
49161
|
status: 'success';
|
|
48973
49162
|
error: null;
|
|
48974
49163
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
48975
|
-
result
|
|
49164
|
+
result: {
|
|
49165
|
+
noise_threshold?: any;
|
|
49166
|
+
};
|
|
48976
49167
|
} | {
|
|
48977
49168
|
/** The ID of the action attempt. */
|
|
48978
49169
|
action_attempt_id: string;
|
|
@@ -49183,7 +49374,7 @@ interface Routes {
|
|
|
49183
49374
|
/** Snapshot of the card data read from the physical encoder. */
|
|
49184
49375
|
acs_credential_on_encoder: {
|
|
49185
49376
|
/** Date and time the credential was created. */
|
|
49186
|
-
created_at: string;
|
|
49377
|
+
created_at: string | null;
|
|
49187
49378
|
is_issued: boolean | null;
|
|
49188
49379
|
/** Date and time the credential will become useable. */
|
|
49189
49380
|
starts_at: string | null;
|
|
@@ -49311,12 +49502,7 @@ interface Routes {
|
|
|
49311
49502
|
status: 'success';
|
|
49312
49503
|
error: null;
|
|
49313
49504
|
action_type: 'ENCODE_CARD';
|
|
49314
|
-
result: {
|
|
49315
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
49316
|
-
acs_credential_id: string | null;
|
|
49317
|
-
/** A number or string that physically identifies this card. */
|
|
49318
|
-
card_number: string | null;
|
|
49319
|
-
};
|
|
49505
|
+
result: {};
|
|
49320
49506
|
} | {
|
|
49321
49507
|
/** The ID of the action attempt. */
|
|
49322
49508
|
action_attempt_id: string;
|
|
@@ -49508,7 +49694,7 @@ interface Routes {
|
|
|
49508
49694
|
status: 'success';
|
|
49509
49695
|
error: null;
|
|
49510
49696
|
action_type: 'SYNC_ACCESS_CODES';
|
|
49511
|
-
result
|
|
49697
|
+
result: {};
|
|
49512
49698
|
} | {
|
|
49513
49699
|
/** The ID of the action attempt. */
|
|
49514
49700
|
action_attempt_id: string;
|
|
@@ -49532,7 +49718,9 @@ interface Routes {
|
|
|
49532
49718
|
status: 'success';
|
|
49533
49719
|
error: null;
|
|
49534
49720
|
action_type: 'CREATE_ACCESS_CODE';
|
|
49535
|
-
result
|
|
49721
|
+
result: {
|
|
49722
|
+
access_code?: any;
|
|
49723
|
+
};
|
|
49536
49724
|
} | {
|
|
49537
49725
|
/** The ID of the action attempt. */
|
|
49538
49726
|
action_attempt_id: string;
|
|
@@ -49556,7 +49744,7 @@ interface Routes {
|
|
|
49556
49744
|
status: 'success';
|
|
49557
49745
|
error: null;
|
|
49558
49746
|
action_type: 'DELETE_ACCESS_CODE';
|
|
49559
|
-
result
|
|
49747
|
+
result: {};
|
|
49560
49748
|
} | {
|
|
49561
49749
|
/** The ID of the action attempt. */
|
|
49562
49750
|
action_attempt_id: string;
|
|
@@ -49580,7 +49768,9 @@ interface Routes {
|
|
|
49580
49768
|
status: 'success';
|
|
49581
49769
|
error: null;
|
|
49582
49770
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
49583
|
-
result
|
|
49771
|
+
result: {
|
|
49772
|
+
access_code?: any;
|
|
49773
|
+
};
|
|
49584
49774
|
} | {
|
|
49585
49775
|
/** The ID of the action attempt. */
|
|
49586
49776
|
action_attempt_id: string;
|
|
@@ -49604,7 +49794,9 @@ interface Routes {
|
|
|
49604
49794
|
status: 'success';
|
|
49605
49795
|
error: null;
|
|
49606
49796
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
49607
|
-
result
|
|
49797
|
+
result: {
|
|
49798
|
+
noise_threshold?: any;
|
|
49799
|
+
};
|
|
49608
49800
|
} | {
|
|
49609
49801
|
/** The ID of the action attempt. */
|
|
49610
49802
|
action_attempt_id: string;
|
|
@@ -49628,7 +49820,7 @@ interface Routes {
|
|
|
49628
49820
|
status: 'success';
|
|
49629
49821
|
error: null;
|
|
49630
49822
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
49631
|
-
result
|
|
49823
|
+
result: {};
|
|
49632
49824
|
} | {
|
|
49633
49825
|
/** The ID of the action attempt. */
|
|
49634
49826
|
action_attempt_id: string;
|
|
@@ -49652,7 +49844,9 @@ interface Routes {
|
|
|
49652
49844
|
status: 'success';
|
|
49653
49845
|
error: null;
|
|
49654
49846
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
49655
|
-
result
|
|
49847
|
+
result: {
|
|
49848
|
+
noise_threshold?: any;
|
|
49849
|
+
};
|
|
49656
49850
|
} | {
|
|
49657
49851
|
/** The ID of the action attempt. */
|
|
49658
49852
|
action_attempt_id: string;
|
|
@@ -50171,6 +50365,7 @@ interface Routes {
|
|
|
50171
50365
|
akiles_metadata?: {
|
|
50172
50366
|
gadget_name: string;
|
|
50173
50367
|
gadget_id: string;
|
|
50368
|
+
_member_group_id?: string | undefined;
|
|
50174
50369
|
} | undefined;
|
|
50175
50370
|
}) & ({
|
|
50176
50371
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -50612,6 +50807,7 @@ interface Routes {
|
|
|
50612
50807
|
akiles_metadata?: {
|
|
50613
50808
|
gadget_name: string;
|
|
50614
50809
|
gadget_id: string;
|
|
50810
|
+
_member_group_id?: string | undefined;
|
|
50615
50811
|
} | undefined;
|
|
50616
50812
|
}) & ({
|
|
50617
50813
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -51211,7 +51407,7 @@ interface Routes {
|
|
|
51211
51407
|
/** Snapshot of the card data read from the physical encoder. */
|
|
51212
51408
|
acs_credential_on_encoder: {
|
|
51213
51409
|
/** Date and time the credential was created. */
|
|
51214
|
-
created_at: string;
|
|
51410
|
+
created_at: string | null;
|
|
51215
51411
|
is_issued: boolean | null;
|
|
51216
51412
|
/** Date and time the credential will become useable. */
|
|
51217
51413
|
starts_at: string | null;
|
|
@@ -51339,12 +51535,7 @@ interface Routes {
|
|
|
51339
51535
|
status: 'success';
|
|
51340
51536
|
error: null;
|
|
51341
51537
|
action_type: 'ENCODE_CARD';
|
|
51342
|
-
result: {
|
|
51343
|
-
/** Matching acs_credential currently encoded on this card. */
|
|
51344
|
-
acs_credential_id: string | null;
|
|
51345
|
-
/** A number or string that physically identifies this card. */
|
|
51346
|
-
card_number: string | null;
|
|
51347
|
-
};
|
|
51538
|
+
result: {};
|
|
51348
51539
|
} | {
|
|
51349
51540
|
/** The ID of the action attempt. */
|
|
51350
51541
|
action_attempt_id: string;
|
|
@@ -51536,7 +51727,7 @@ interface Routes {
|
|
|
51536
51727
|
status: 'success';
|
|
51537
51728
|
error: null;
|
|
51538
51729
|
action_type: 'SYNC_ACCESS_CODES';
|
|
51539
|
-
result
|
|
51730
|
+
result: {};
|
|
51540
51731
|
} | {
|
|
51541
51732
|
/** The ID of the action attempt. */
|
|
51542
51733
|
action_attempt_id: string;
|
|
@@ -51560,7 +51751,9 @@ interface Routes {
|
|
|
51560
51751
|
status: 'success';
|
|
51561
51752
|
error: null;
|
|
51562
51753
|
action_type: 'CREATE_ACCESS_CODE';
|
|
51563
|
-
result
|
|
51754
|
+
result: {
|
|
51755
|
+
access_code?: any;
|
|
51756
|
+
};
|
|
51564
51757
|
} | {
|
|
51565
51758
|
/** The ID of the action attempt. */
|
|
51566
51759
|
action_attempt_id: string;
|
|
@@ -51584,7 +51777,7 @@ interface Routes {
|
|
|
51584
51777
|
status: 'success';
|
|
51585
51778
|
error: null;
|
|
51586
51779
|
action_type: 'DELETE_ACCESS_CODE';
|
|
51587
|
-
result
|
|
51780
|
+
result: {};
|
|
51588
51781
|
} | {
|
|
51589
51782
|
/** The ID of the action attempt. */
|
|
51590
51783
|
action_attempt_id: string;
|
|
@@ -51608,7 +51801,9 @@ interface Routes {
|
|
|
51608
51801
|
status: 'success';
|
|
51609
51802
|
error: null;
|
|
51610
51803
|
action_type: 'UPDATE_ACCESS_CODE';
|
|
51611
|
-
result
|
|
51804
|
+
result: {
|
|
51805
|
+
access_code?: any;
|
|
51806
|
+
};
|
|
51612
51807
|
} | {
|
|
51613
51808
|
/** The ID of the action attempt. */
|
|
51614
51809
|
action_attempt_id: string;
|
|
@@ -51632,7 +51827,9 @@ interface Routes {
|
|
|
51632
51827
|
status: 'success';
|
|
51633
51828
|
error: null;
|
|
51634
51829
|
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
51635
|
-
result
|
|
51830
|
+
result: {
|
|
51831
|
+
noise_threshold?: any;
|
|
51832
|
+
};
|
|
51636
51833
|
} | {
|
|
51637
51834
|
/** The ID of the action attempt. */
|
|
51638
51835
|
action_attempt_id: string;
|
|
@@ -51656,7 +51853,7 @@ interface Routes {
|
|
|
51656
51853
|
status: 'success';
|
|
51657
51854
|
error: null;
|
|
51658
51855
|
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
51659
|
-
result
|
|
51856
|
+
result: {};
|
|
51660
51857
|
} | {
|
|
51661
51858
|
/** The ID of the action attempt. */
|
|
51662
51859
|
action_attempt_id: string;
|
|
@@ -51680,7 +51877,9 @@ interface Routes {
|
|
|
51680
51877
|
status: 'success';
|
|
51681
51878
|
error: null;
|
|
51682
51879
|
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
51683
|
-
result
|
|
51880
|
+
result: {
|
|
51881
|
+
noise_threshold?: any;
|
|
51882
|
+
};
|
|
51684
51883
|
} | {
|
|
51685
51884
|
/** The ID of the action attempt. */
|
|
51686
51885
|
action_attempt_id: string;
|