@seamapi/types 1.302.1 → 1.303.0
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 +37 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +304 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +34 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +250 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +42 -4
- package/src/lib/seam/connect/route-types.ts +254 -1
package/dist/connect.d.cts
CHANGED
|
@@ -394,6 +394,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
394
394
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
395
395
|
display_name: z.ZodString;
|
|
396
396
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
397
|
+
is_one_time_use: z.ZodOptional<z.ZodBoolean>;
|
|
397
398
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
398
399
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
399
400
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -542,6 +543,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
542
543
|
card_id?: string | undefined;
|
|
543
544
|
credential_id?: string | undefined;
|
|
544
545
|
} | undefined;
|
|
546
|
+
is_one_time_use?: boolean | undefined;
|
|
545
547
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
546
548
|
external_type_display_name?: string | undefined;
|
|
547
549
|
acs_user_id?: string | undefined;
|
|
@@ -595,6 +597,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
595
597
|
card_id?: string | undefined;
|
|
596
598
|
credential_id?: string | undefined;
|
|
597
599
|
} | undefined;
|
|
600
|
+
is_one_time_use?: boolean | undefined;
|
|
598
601
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
599
602
|
external_type_display_name?: string | undefined;
|
|
600
603
|
acs_user_id?: string | undefined;
|
|
@@ -615,6 +618,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
615
618
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
616
619
|
display_name: z.ZodString;
|
|
617
620
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
621
|
+
is_one_time_use: z.ZodOptional<z.ZodBoolean>;
|
|
618
622
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
619
623
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
620
624
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -763,6 +767,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
763
767
|
card_id?: string | undefined;
|
|
764
768
|
credential_id?: string | undefined;
|
|
765
769
|
} | undefined;
|
|
770
|
+
is_one_time_use?: boolean | undefined;
|
|
766
771
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
767
772
|
external_type_display_name?: string | undefined;
|
|
768
773
|
acs_user_id?: string | undefined;
|
|
@@ -816,6 +821,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
816
821
|
card_id?: string | undefined;
|
|
817
822
|
credential_id?: string | undefined;
|
|
818
823
|
} | undefined;
|
|
824
|
+
is_one_time_use?: boolean | undefined;
|
|
819
825
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
820
826
|
external_type_display_name?: string | undefined;
|
|
821
827
|
acs_user_id?: string | undefined;
|
|
@@ -2086,6 +2092,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2086
2092
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
2087
2093
|
display_name: z.ZodString;
|
|
2088
2094
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2095
|
+
is_one_time_use: z.ZodOptional<z.ZodBoolean>;
|
|
2089
2096
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2090
2097
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2091
2098
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2234,6 +2241,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2234
2241
|
card_id?: string | undefined;
|
|
2235
2242
|
credential_id?: string | undefined;
|
|
2236
2243
|
} | undefined;
|
|
2244
|
+
is_one_time_use?: boolean | undefined;
|
|
2237
2245
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2238
2246
|
external_type_display_name?: string | undefined;
|
|
2239
2247
|
acs_user_id?: string | undefined;
|
|
@@ -2287,6 +2295,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2287
2295
|
card_id?: string | undefined;
|
|
2288
2296
|
credential_id?: string | undefined;
|
|
2289
2297
|
} | undefined;
|
|
2298
|
+
is_one_time_use?: boolean | undefined;
|
|
2290
2299
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2291
2300
|
external_type_display_name?: string | undefined;
|
|
2292
2301
|
acs_user_id?: string | undefined;
|
|
@@ -2306,6 +2315,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2306
2315
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
2307
2316
|
display_name: z.ZodString;
|
|
2308
2317
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2318
|
+
is_one_time_use: z.ZodOptional<z.ZodBoolean>;
|
|
2309
2319
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2310
2320
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2311
2321
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2454,6 +2464,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2454
2464
|
card_id?: string | undefined;
|
|
2455
2465
|
credential_id?: string | undefined;
|
|
2456
2466
|
} | undefined;
|
|
2467
|
+
is_one_time_use?: boolean | undefined;
|
|
2457
2468
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2458
2469
|
external_type_display_name?: string | undefined;
|
|
2459
2470
|
acs_user_id?: string | undefined;
|
|
@@ -2507,6 +2518,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2507
2518
|
card_id?: string | undefined;
|
|
2508
2519
|
credential_id?: string | undefined;
|
|
2509
2520
|
} | undefined;
|
|
2521
|
+
is_one_time_use?: boolean | undefined;
|
|
2510
2522
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2511
2523
|
external_type_display_name?: string | undefined;
|
|
2512
2524
|
acs_user_id?: string | undefined;
|
|
@@ -2597,6 +2609,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2597
2609
|
card_id?: string | undefined;
|
|
2598
2610
|
credential_id?: string | undefined;
|
|
2599
2611
|
} | undefined;
|
|
2612
|
+
is_one_time_use?: boolean | undefined;
|
|
2600
2613
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2601
2614
|
external_type_display_name?: string | undefined;
|
|
2602
2615
|
acs_user_id?: string | undefined;
|
|
@@ -2650,6 +2663,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2650
2663
|
card_id?: string | undefined;
|
|
2651
2664
|
credential_id?: string | undefined;
|
|
2652
2665
|
} | undefined;
|
|
2666
|
+
is_one_time_use?: boolean | undefined;
|
|
2653
2667
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2654
2668
|
external_type_display_name?: string | undefined;
|
|
2655
2669
|
acs_user_id?: string | undefined;
|
|
@@ -2730,6 +2744,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2730
2744
|
card_id?: string | undefined;
|
|
2731
2745
|
credential_id?: string | undefined;
|
|
2732
2746
|
} | undefined;
|
|
2747
|
+
is_one_time_use?: boolean | undefined;
|
|
2733
2748
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2734
2749
|
external_type_display_name?: string | undefined;
|
|
2735
2750
|
acs_user_id?: string | undefined;
|
|
@@ -2783,6 +2798,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2783
2798
|
card_id?: string | undefined;
|
|
2784
2799
|
credential_id?: string | undefined;
|
|
2785
2800
|
} | undefined;
|
|
2801
|
+
is_one_time_use?: boolean | undefined;
|
|
2786
2802
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2787
2803
|
external_type_display_name?: string | undefined;
|
|
2788
2804
|
acs_user_id?: string | undefined;
|
|
@@ -2868,6 +2884,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2868
2884
|
card_id?: string | undefined;
|
|
2869
2885
|
credential_id?: string | undefined;
|
|
2870
2886
|
} | undefined;
|
|
2887
|
+
is_one_time_use?: boolean | undefined;
|
|
2871
2888
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2872
2889
|
external_type_display_name?: string | undefined;
|
|
2873
2890
|
acs_user_id?: string | undefined;
|
|
@@ -2921,6 +2938,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2921
2938
|
card_id?: string | undefined;
|
|
2922
2939
|
credential_id?: string | undefined;
|
|
2923
2940
|
} | undefined;
|
|
2941
|
+
is_one_time_use?: boolean | undefined;
|
|
2924
2942
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2925
2943
|
external_type_display_name?: string | undefined;
|
|
2926
2944
|
acs_user_id?: string | undefined;
|
|
@@ -3007,6 +3025,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3007
3025
|
card_id?: string | undefined;
|
|
3008
3026
|
credential_id?: string | undefined;
|
|
3009
3027
|
} | undefined;
|
|
3028
|
+
is_one_time_use?: boolean | undefined;
|
|
3010
3029
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3011
3030
|
external_type_display_name?: string | undefined;
|
|
3012
3031
|
acs_user_id?: string | undefined;
|
|
@@ -3060,6 +3079,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3060
3079
|
card_id?: string | undefined;
|
|
3061
3080
|
credential_id?: string | undefined;
|
|
3062
3081
|
} | undefined;
|
|
3082
|
+
is_one_time_use?: boolean | undefined;
|
|
3063
3083
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3064
3084
|
external_type_display_name?: string | undefined;
|
|
3065
3085
|
acs_user_id?: string | undefined;
|
|
@@ -3177,6 +3197,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3177
3197
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
3178
3198
|
display_name: z.ZodString;
|
|
3179
3199
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3200
|
+
is_one_time_use: z.ZodOptional<z.ZodBoolean>;
|
|
3180
3201
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3181
3202
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
3182
3203
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3325,6 +3346,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3325
3346
|
card_id?: string | undefined;
|
|
3326
3347
|
credential_id?: string | undefined;
|
|
3327
3348
|
} | undefined;
|
|
3349
|
+
is_one_time_use?: boolean | undefined;
|
|
3328
3350
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3329
3351
|
external_type_display_name?: string | undefined;
|
|
3330
3352
|
acs_user_id?: string | undefined;
|
|
@@ -3378,6 +3400,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3378
3400
|
card_id?: string | undefined;
|
|
3379
3401
|
credential_id?: string | undefined;
|
|
3380
3402
|
} | undefined;
|
|
3403
|
+
is_one_time_use?: boolean | undefined;
|
|
3381
3404
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3382
3405
|
external_type_display_name?: string | undefined;
|
|
3383
3406
|
acs_user_id?: string | undefined;
|
|
@@ -3397,6 +3420,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3397
3420
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
3398
3421
|
display_name: z.ZodString;
|
|
3399
3422
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3423
|
+
is_one_time_use: z.ZodOptional<z.ZodBoolean>;
|
|
3400
3424
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3401
3425
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
3402
3426
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3545,6 +3569,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3545
3569
|
card_id?: string | undefined;
|
|
3546
3570
|
credential_id?: string | undefined;
|
|
3547
3571
|
} | undefined;
|
|
3572
|
+
is_one_time_use?: boolean | undefined;
|
|
3548
3573
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3549
3574
|
external_type_display_name?: string | undefined;
|
|
3550
3575
|
acs_user_id?: string | undefined;
|
|
@@ -3598,6 +3623,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3598
3623
|
card_id?: string | undefined;
|
|
3599
3624
|
credential_id?: string | undefined;
|
|
3600
3625
|
} | undefined;
|
|
3626
|
+
is_one_time_use?: boolean | undefined;
|
|
3601
3627
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3602
3628
|
external_type_display_name?: string | undefined;
|
|
3603
3629
|
acs_user_id?: string | undefined;
|
|
@@ -3656,6 +3682,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3656
3682
|
card_id?: string | undefined;
|
|
3657
3683
|
credential_id?: string | undefined;
|
|
3658
3684
|
} | undefined;
|
|
3685
|
+
is_one_time_use?: boolean | undefined;
|
|
3659
3686
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3660
3687
|
external_type_display_name?: string | undefined;
|
|
3661
3688
|
acs_user_id?: string | undefined;
|
|
@@ -3709,6 +3736,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3709
3736
|
card_id?: string | undefined;
|
|
3710
3737
|
credential_id?: string | undefined;
|
|
3711
3738
|
} | undefined;
|
|
3739
|
+
is_one_time_use?: boolean | undefined;
|
|
3712
3740
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3713
3741
|
external_type_display_name?: string | undefined;
|
|
3714
3742
|
acs_user_id?: string | undefined;
|
|
@@ -3768,6 +3796,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3768
3796
|
card_id?: string | undefined;
|
|
3769
3797
|
credential_id?: string | undefined;
|
|
3770
3798
|
} | undefined;
|
|
3799
|
+
is_one_time_use?: boolean | undefined;
|
|
3771
3800
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3772
3801
|
external_type_display_name?: string | undefined;
|
|
3773
3802
|
acs_user_id?: string | undefined;
|
|
@@ -3821,6 +3850,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3821
3850
|
card_id?: string | undefined;
|
|
3822
3851
|
credential_id?: string | undefined;
|
|
3823
3852
|
} | undefined;
|
|
3853
|
+
is_one_time_use?: boolean | undefined;
|
|
3824
3854
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3825
3855
|
external_type_display_name?: string | undefined;
|
|
3826
3856
|
acs_user_id?: string | undefined;
|
|
@@ -12776,6 +12806,10 @@ declare const _default: {
|
|
|
12776
12806
|
description: string;
|
|
12777
12807
|
type: string;
|
|
12778
12808
|
};
|
|
12809
|
+
is_one_time_use: {
|
|
12810
|
+
description: string;
|
|
12811
|
+
type: string;
|
|
12812
|
+
};
|
|
12779
12813
|
issued_at: {
|
|
12780
12814
|
format: string;
|
|
12781
12815
|
nullable: boolean;
|
|
@@ -13765,6 +13799,10 @@ declare const _default: {
|
|
|
13765
13799
|
description: string;
|
|
13766
13800
|
type: string;
|
|
13767
13801
|
};
|
|
13802
|
+
is_one_time_use: {
|
|
13803
|
+
description: string;
|
|
13804
|
+
type: string;
|
|
13805
|
+
};
|
|
13768
13806
|
issued_at: {
|
|
13769
13807
|
format: string;
|
|
13770
13808
|
nullable: boolean;
|
|
@@ -14057,6 +14095,10 @@ declare const _default: {
|
|
|
14057
14095
|
description: string;
|
|
14058
14096
|
type: string;
|
|
14059
14097
|
};
|
|
14098
|
+
is_one_time_use: {
|
|
14099
|
+
description: string;
|
|
14100
|
+
type: string;
|
|
14101
|
+
};
|
|
14060
14102
|
issued_at: {
|
|
14061
14103
|
format: string;
|
|
14062
14104
|
nullable: boolean;
|
|
@@ -17955,6 +17997,7 @@ declare const _default: {
|
|
|
17955
17997
|
};
|
|
17956
17998
|
'/access_codes/pull_backup_access_code': {
|
|
17957
17999
|
post: {
|
|
18000
|
+
description: string;
|
|
17958
18001
|
operationId: string;
|
|
17959
18002
|
requestBody: {
|
|
17960
18003
|
content: {
|
|
@@ -17978,6 +18021,9 @@ declare const _default: {
|
|
|
17978
18021
|
'application/json': {
|
|
17979
18022
|
schema: {
|
|
17980
18023
|
properties: {
|
|
18024
|
+
access_code: {
|
|
18025
|
+
$ref: string;
|
|
18026
|
+
};
|
|
17981
18027
|
backup_access_code: {
|
|
17982
18028
|
$ref: string;
|
|
17983
18029
|
};
|
|
@@ -21182,6 +21228,10 @@ declare const _default: {
|
|
|
21182
21228
|
description: string;
|
|
21183
21229
|
type: string;
|
|
21184
21230
|
};
|
|
21231
|
+
is_one_time_use: {
|
|
21232
|
+
description: string;
|
|
21233
|
+
type: string;
|
|
21234
|
+
};
|
|
21185
21235
|
issued_at: {
|
|
21186
21236
|
format: string;
|
|
21187
21237
|
nullable: boolean;
|
|
@@ -21485,6 +21535,10 @@ declare const _default: {
|
|
|
21485
21535
|
description: string;
|
|
21486
21536
|
type: string;
|
|
21487
21537
|
};
|
|
21538
|
+
is_one_time_use: {
|
|
21539
|
+
description: string;
|
|
21540
|
+
type: string;
|
|
21541
|
+
};
|
|
21488
21542
|
issued_at: {
|
|
21489
21543
|
format: string;
|
|
21490
21544
|
nullable: boolean;
|
|
@@ -33310,6 +33364,8 @@ interface Routes {
|
|
|
33310
33364
|
display_name: string;
|
|
33311
33365
|
/** Access (PIN) code for the credential. */
|
|
33312
33366
|
code?: (string | undefined) | null;
|
|
33367
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33368
|
+
is_one_time_use?: boolean | undefined;
|
|
33313
33369
|
card_number?: (string | undefined) | null;
|
|
33314
33370
|
is_issued?: boolean | undefined;
|
|
33315
33371
|
issued_at?: (string | undefined) | null;
|
|
@@ -33394,6 +33450,8 @@ interface Routes {
|
|
|
33394
33450
|
display_name: string;
|
|
33395
33451
|
/** Access (PIN) code for the credential. */
|
|
33396
33452
|
code?: (string | undefined) | null;
|
|
33453
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33454
|
+
is_one_time_use?: boolean | undefined;
|
|
33397
33455
|
card_number?: (string | undefined) | null;
|
|
33398
33456
|
is_issued?: boolean | undefined;
|
|
33399
33457
|
issued_at?: (string | undefined) | null;
|
|
@@ -33515,6 +33573,8 @@ interface Routes {
|
|
|
33515
33573
|
display_name: string;
|
|
33516
33574
|
/** Access (PIN) code for the credential. */
|
|
33517
33575
|
code?: (string | undefined) | null;
|
|
33576
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33577
|
+
is_one_time_use?: boolean | undefined;
|
|
33518
33578
|
card_number?: (string | undefined) | null;
|
|
33519
33579
|
is_issued?: boolean | undefined;
|
|
33520
33580
|
issued_at?: (string | undefined) | null;
|
|
@@ -33599,6 +33659,8 @@ interface Routes {
|
|
|
33599
33659
|
display_name: string;
|
|
33600
33660
|
/** Access (PIN) code for the credential. */
|
|
33601
33661
|
code?: (string | undefined) | null;
|
|
33662
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33663
|
+
is_one_time_use?: boolean | undefined;
|
|
33602
33664
|
card_number?: (string | undefined) | null;
|
|
33603
33665
|
is_issued?: boolean | undefined;
|
|
33604
33666
|
issued_at?: (string | undefined) | null;
|
|
@@ -34301,6 +34363,8 @@ interface Routes {
|
|
|
34301
34363
|
display_name: string;
|
|
34302
34364
|
/** Access (PIN) code for the credential. */
|
|
34303
34365
|
code?: (string | undefined) | null;
|
|
34366
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
34367
|
+
is_one_time_use?: boolean | undefined;
|
|
34304
34368
|
card_number?: (string | undefined) | null;
|
|
34305
34369
|
is_issued?: boolean | undefined;
|
|
34306
34370
|
issued_at?: (string | undefined) | null;
|
|
@@ -34385,6 +34449,8 @@ interface Routes {
|
|
|
34385
34449
|
display_name: string;
|
|
34386
34450
|
/** Access (PIN) code for the credential. */
|
|
34387
34451
|
code?: (string | undefined) | null;
|
|
34452
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
34453
|
+
is_one_time_use?: boolean | undefined;
|
|
34388
34454
|
card_number?: (string | undefined) | null;
|
|
34389
34455
|
is_issued?: boolean | undefined;
|
|
34390
34456
|
issued_at?: (string | undefined) | null;
|
|
@@ -34506,6 +34572,8 @@ interface Routes {
|
|
|
34506
34572
|
display_name: string;
|
|
34507
34573
|
/** Access (PIN) code for the credential. */
|
|
34508
34574
|
code?: (string | undefined) | null;
|
|
34575
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
34576
|
+
is_one_time_use?: boolean | undefined;
|
|
34509
34577
|
card_number?: (string | undefined) | null;
|
|
34510
34578
|
is_issued?: boolean | undefined;
|
|
34511
34579
|
issued_at?: (string | undefined) | null;
|
|
@@ -34590,6 +34658,8 @@ interface Routes {
|
|
|
34590
34658
|
display_name: string;
|
|
34591
34659
|
/** Access (PIN) code for the credential. */
|
|
34592
34660
|
code?: (string | undefined) | null;
|
|
34661
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
34662
|
+
is_one_time_use?: boolean | undefined;
|
|
34593
34663
|
card_number?: (string | undefined) | null;
|
|
34594
34664
|
is_issued?: boolean | undefined;
|
|
34595
34665
|
issued_at?: (string | undefined) | null;
|
|
@@ -35264,6 +35334,67 @@ interface Routes {
|
|
|
35264
35334
|
/** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
|
|
35265
35335
|
is_offline_access_code: boolean;
|
|
35266
35336
|
};
|
|
35337
|
+
access_code: {
|
|
35338
|
+
/** Unique identifier for a group of access codes that share the same code. */
|
|
35339
|
+
common_code_key: string | null;
|
|
35340
|
+
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
35341
|
+
is_scheduled_on_device?: boolean | undefined;
|
|
35342
|
+
/** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
|
|
35343
|
+
type: 'time_bound' | 'ongoing';
|
|
35344
|
+
/** Indicates whether the access code is waiting for a code assignment. */
|
|
35345
|
+
is_waiting_for_code_assignment?: boolean | undefined;
|
|
35346
|
+
/** Unique identifier for the access code. */
|
|
35347
|
+
access_code_id: string;
|
|
35348
|
+
/** Unique identifier for the device associated with the access code. */
|
|
35349
|
+
device_id: string;
|
|
35350
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
|
|
35351
|
+
name: string | null;
|
|
35352
|
+
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
35353
|
+
code: string | null;
|
|
35354
|
+
/** Date and time at which the access code was created. */
|
|
35355
|
+
created_at: string;
|
|
35356
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
35357
|
+
errors: Array<{
|
|
35358
|
+
message: string;
|
|
35359
|
+
is_access_code_error: true;
|
|
35360
|
+
error_code: string;
|
|
35361
|
+
} | {
|
|
35362
|
+
message: string;
|
|
35363
|
+
is_device_error: true;
|
|
35364
|
+
error_code: string;
|
|
35365
|
+
} | {
|
|
35366
|
+
message: string;
|
|
35367
|
+
is_connected_account_error: true;
|
|
35368
|
+
error_code: string;
|
|
35369
|
+
}>;
|
|
35370
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
35371
|
+
warnings: Array<{
|
|
35372
|
+
message: string;
|
|
35373
|
+
warning_code: string;
|
|
35374
|
+
}>;
|
|
35375
|
+
/** Indicates whether Seam manages the access code. */
|
|
35376
|
+
is_managed: true;
|
|
35377
|
+
/** Date and time at which the time-bound access code becomes active. */
|
|
35378
|
+
starts_at?: (string | null) | undefined;
|
|
35379
|
+
/** Date and time after which the time-bound access code becomes inactive. */
|
|
35380
|
+
ends_at?: (string | null) | undefined;
|
|
35381
|
+
/**
|
|
35382
|
+
Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
|
|
35383
|
+
*/
|
|
35384
|
+
status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown';
|
|
35385
|
+
/** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
|
|
35386
|
+
is_backup_access_code_available: boolean;
|
|
35387
|
+
/** Indicates whether the access code is a backup code. */
|
|
35388
|
+
is_backup?: boolean | undefined;
|
|
35389
|
+
/** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
|
|
35390
|
+
pulled_backup_access_code_id?: (string | null) | undefined;
|
|
35391
|
+
/** Indicates whether changes to the access code from external sources are permitted. */
|
|
35392
|
+
is_external_modification_allowed: boolean;
|
|
35393
|
+
/** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
|
|
35394
|
+
is_one_time_use: boolean;
|
|
35395
|
+
/** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
|
|
35396
|
+
is_offline_access_code: boolean;
|
|
35397
|
+
};
|
|
35267
35398
|
};
|
|
35268
35399
|
};
|
|
35269
35400
|
'/access_codes/simulate/create_unmanaged_access_code': {
|
|
@@ -35449,6 +35580,8 @@ interface Routes {
|
|
|
35449
35580
|
display_name: string;
|
|
35450
35581
|
/** Access (PIN) code for the credential. */
|
|
35451
35582
|
code?: (string | undefined) | null;
|
|
35583
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
35584
|
+
is_one_time_use?: boolean | undefined;
|
|
35452
35585
|
card_number?: (string | undefined) | null;
|
|
35453
35586
|
is_issued?: boolean | undefined;
|
|
35454
35587
|
issued_at?: (string | undefined) | null;
|
|
@@ -35533,6 +35666,8 @@ interface Routes {
|
|
|
35533
35666
|
display_name: string;
|
|
35534
35667
|
/** Access (PIN) code for the credential. */
|
|
35535
35668
|
code?: (string | undefined) | null;
|
|
35669
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
35670
|
+
is_one_time_use?: boolean | undefined;
|
|
35536
35671
|
card_number?: (string | undefined) | null;
|
|
35537
35672
|
is_issued?: boolean | undefined;
|
|
35538
35673
|
issued_at?: (string | undefined) | null;
|
|
@@ -35654,6 +35789,8 @@ interface Routes {
|
|
|
35654
35789
|
display_name: string;
|
|
35655
35790
|
/** Access (PIN) code for the credential. */
|
|
35656
35791
|
code?: (string | undefined) | null;
|
|
35792
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
35793
|
+
is_one_time_use?: boolean | undefined;
|
|
35657
35794
|
card_number?: (string | undefined) | null;
|
|
35658
35795
|
is_issued?: boolean | undefined;
|
|
35659
35796
|
issued_at?: (string | undefined) | null;
|
|
@@ -35738,6 +35875,8 @@ interface Routes {
|
|
|
35738
35875
|
display_name: string;
|
|
35739
35876
|
/** Access (PIN) code for the credential. */
|
|
35740
35877
|
code?: (string | undefined) | null;
|
|
35878
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
35879
|
+
is_one_time_use?: boolean | undefined;
|
|
35741
35880
|
card_number?: (string | undefined) | null;
|
|
35742
35881
|
is_issued?: boolean | undefined;
|
|
35743
35882
|
issued_at?: (string | undefined) | null;
|
|
@@ -36427,6 +36566,8 @@ interface Routes {
|
|
|
36427
36566
|
display_name: string;
|
|
36428
36567
|
/** Access (PIN) code for the credential. */
|
|
36429
36568
|
code?: (string | undefined) | null;
|
|
36569
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36570
|
+
is_one_time_use?: boolean | undefined;
|
|
36430
36571
|
card_number?: (string | undefined) | null;
|
|
36431
36572
|
is_issued?: boolean | undefined;
|
|
36432
36573
|
issued_at?: (string | undefined) | null;
|
|
@@ -36511,6 +36652,8 @@ interface Routes {
|
|
|
36511
36652
|
display_name: string;
|
|
36512
36653
|
/** Access (PIN) code for the credential. */
|
|
36513
36654
|
code?: (string | undefined) | null;
|
|
36655
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36656
|
+
is_one_time_use?: boolean | undefined;
|
|
36514
36657
|
card_number?: (string | undefined) | null;
|
|
36515
36658
|
is_issued?: boolean | undefined;
|
|
36516
36659
|
issued_at?: (string | undefined) | null;
|
|
@@ -36632,6 +36775,8 @@ interface Routes {
|
|
|
36632
36775
|
display_name: string;
|
|
36633
36776
|
/** Access (PIN) code for the credential. */
|
|
36634
36777
|
code?: (string | undefined) | null;
|
|
36778
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36779
|
+
is_one_time_use?: boolean | undefined;
|
|
36635
36780
|
card_number?: (string | undefined) | null;
|
|
36636
36781
|
is_issued?: boolean | undefined;
|
|
36637
36782
|
issued_at?: (string | undefined) | null;
|
|
@@ -36716,6 +36861,8 @@ interface Routes {
|
|
|
36716
36861
|
display_name: string;
|
|
36717
36862
|
/** Access (PIN) code for the credential. */
|
|
36718
36863
|
code?: (string | undefined) | null;
|
|
36864
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36865
|
+
is_one_time_use?: boolean | undefined;
|
|
36719
36866
|
card_number?: (string | undefined) | null;
|
|
36720
36867
|
is_issued?: boolean | undefined;
|
|
36721
36868
|
issued_at?: (string | undefined) | null;
|
|
@@ -37586,6 +37733,8 @@ interface Routes {
|
|
|
37586
37733
|
display_name: string;
|
|
37587
37734
|
/** Access (PIN) code for the credential. */
|
|
37588
37735
|
code?: (string | undefined) | null;
|
|
37736
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
37737
|
+
is_one_time_use?: boolean | undefined;
|
|
37589
37738
|
card_number?: (string | undefined) | null;
|
|
37590
37739
|
is_issued?: boolean | undefined;
|
|
37591
37740
|
issued_at?: (string | undefined) | null;
|
|
@@ -37720,6 +37869,8 @@ interface Routes {
|
|
|
37720
37869
|
display_name: string;
|
|
37721
37870
|
/** Access (PIN) code for the credential. */
|
|
37722
37871
|
code?: (string | undefined) | null;
|
|
37872
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
37873
|
+
is_one_time_use?: boolean | undefined;
|
|
37723
37874
|
card_number?: (string | undefined) | null;
|
|
37724
37875
|
is_issued?: boolean | undefined;
|
|
37725
37876
|
issued_at?: (string | undefined) | null;
|
|
@@ -37802,7 +37953,7 @@ interface Routes {
|
|
|
37802
37953
|
/** ID of the ACS user to whom the new credential belongs. */
|
|
37803
37954
|
acs_user_id: string;
|
|
37804
37955
|
/** IDs of the [`acs_entrance`s](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) for which the new credential grants access. */
|
|
37805
|
-
allowed_acs_entrance_id
|
|
37956
|
+
allowed_acs_entrance_id: string;
|
|
37806
37957
|
/** Indicates whether the code is one-time-use or reusable. */
|
|
37807
37958
|
is_one_time_use?: boolean;
|
|
37808
37959
|
/** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -37828,6 +37979,8 @@ interface Routes {
|
|
|
37828
37979
|
display_name: string;
|
|
37829
37980
|
/** Access (PIN) code for the credential. */
|
|
37830
37981
|
code?: (string | undefined) | null;
|
|
37982
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
37983
|
+
is_one_time_use?: boolean | undefined;
|
|
37831
37984
|
card_number?: (string | undefined) | null;
|
|
37832
37985
|
is_issued?: boolean | undefined;
|
|
37833
37986
|
issued_at?: (string | undefined) | null;
|
|
@@ -37940,6 +38093,8 @@ interface Routes {
|
|
|
37940
38093
|
display_name: string;
|
|
37941
38094
|
/** Access (PIN) code for the credential. */
|
|
37942
38095
|
code?: (string | undefined) | null;
|
|
38096
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38097
|
+
is_one_time_use?: boolean | undefined;
|
|
37943
38098
|
card_number?: (string | undefined) | null;
|
|
37944
38099
|
is_issued?: boolean | undefined;
|
|
37945
38100
|
issued_at?: (string | undefined) | null;
|
|
@@ -38056,6 +38211,8 @@ interface Routes {
|
|
|
38056
38211
|
display_name: string;
|
|
38057
38212
|
/** Access (PIN) code for the credential. */
|
|
38058
38213
|
code?: (string | undefined) | null;
|
|
38214
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38215
|
+
is_one_time_use?: boolean | undefined;
|
|
38059
38216
|
card_number?: (string | undefined) | null;
|
|
38060
38217
|
is_issued?: boolean | undefined;
|
|
38061
38218
|
issued_at?: (string | undefined) | null;
|
|
@@ -38219,6 +38376,8 @@ interface Routes {
|
|
|
38219
38376
|
display_name: string;
|
|
38220
38377
|
/** Access (PIN) code for the credential. */
|
|
38221
38378
|
code?: (string | undefined) | null;
|
|
38379
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38380
|
+
is_one_time_use?: boolean | undefined;
|
|
38222
38381
|
card_number?: (string | undefined) | null;
|
|
38223
38382
|
is_issued?: boolean | undefined;
|
|
38224
38383
|
issued_at?: (string | undefined) | null;
|
|
@@ -38319,6 +38478,8 @@ interface Routes {
|
|
|
38319
38478
|
display_name: string;
|
|
38320
38479
|
/** Access (PIN) code for the credential. */
|
|
38321
38480
|
code?: (string | undefined) | null;
|
|
38481
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38482
|
+
is_one_time_use?: boolean | undefined;
|
|
38322
38483
|
card_number?: (string | undefined) | null;
|
|
38323
38484
|
is_issued?: boolean | undefined;
|
|
38324
38485
|
issued_at?: (string | undefined) | null;
|
|
@@ -38428,6 +38589,8 @@ interface Routes {
|
|
|
38428
38589
|
display_name: string;
|
|
38429
38590
|
/** Access (PIN) code for the credential. */
|
|
38430
38591
|
code?: (string | undefined) | null;
|
|
38592
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38593
|
+
is_one_time_use?: boolean | undefined;
|
|
38431
38594
|
card_number?: (string | undefined) | null;
|
|
38432
38595
|
is_issued?: boolean | undefined;
|
|
38433
38596
|
issued_at?: (string | undefined) | null;
|
|
@@ -38532,6 +38695,8 @@ interface Routes {
|
|
|
38532
38695
|
display_name: string;
|
|
38533
38696
|
/** Access (PIN) code for the credential. */
|
|
38534
38697
|
code?: (string | undefined) | null;
|
|
38698
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38699
|
+
is_one_time_use?: boolean | undefined;
|
|
38535
38700
|
card_number?: (string | undefined) | null;
|
|
38536
38701
|
is_issued?: boolean | undefined;
|
|
38537
38702
|
issued_at?: (string | undefined) | null;
|
|
@@ -38722,6 +38887,8 @@ interface Routes {
|
|
|
38722
38887
|
display_name: string;
|
|
38723
38888
|
/** Access (PIN) code for the credential. */
|
|
38724
38889
|
code?: (string | undefined) | null;
|
|
38890
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38891
|
+
is_one_time_use?: boolean | undefined;
|
|
38725
38892
|
card_number?: (string | undefined) | null;
|
|
38726
38893
|
is_issued?: boolean | undefined;
|
|
38727
38894
|
issued_at?: (string | undefined) | null;
|
|
@@ -38806,6 +38973,8 @@ interface Routes {
|
|
|
38806
38973
|
display_name: string;
|
|
38807
38974
|
/** Access (PIN) code for the credential. */
|
|
38808
38975
|
code?: (string | undefined) | null;
|
|
38976
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
38977
|
+
is_one_time_use?: boolean | undefined;
|
|
38809
38978
|
card_number?: (string | undefined) | null;
|
|
38810
38979
|
is_issued?: boolean | undefined;
|
|
38811
38980
|
issued_at?: (string | undefined) | null;
|
|
@@ -38927,6 +39096,8 @@ interface Routes {
|
|
|
38927
39096
|
display_name: string;
|
|
38928
39097
|
/** Access (PIN) code for the credential. */
|
|
38929
39098
|
code?: (string | undefined) | null;
|
|
39099
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
39100
|
+
is_one_time_use?: boolean | undefined;
|
|
38930
39101
|
card_number?: (string | undefined) | null;
|
|
38931
39102
|
is_issued?: boolean | undefined;
|
|
38932
39103
|
issued_at?: (string | undefined) | null;
|
|
@@ -39011,6 +39182,8 @@ interface Routes {
|
|
|
39011
39182
|
display_name: string;
|
|
39012
39183
|
/** Access (PIN) code for the credential. */
|
|
39013
39184
|
code?: (string | undefined) | null;
|
|
39185
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
39186
|
+
is_one_time_use?: boolean | undefined;
|
|
39014
39187
|
card_number?: (string | undefined) | null;
|
|
39015
39188
|
is_issued?: boolean | undefined;
|
|
39016
39189
|
issued_at?: (string | undefined) | null;
|
|
@@ -39607,6 +39780,8 @@ interface Routes {
|
|
|
39607
39780
|
display_name: string;
|
|
39608
39781
|
/** Access (PIN) code for the credential. */
|
|
39609
39782
|
code?: (string | undefined) | null;
|
|
39783
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
39784
|
+
is_one_time_use?: boolean | undefined;
|
|
39610
39785
|
card_number?: (string | undefined) | null;
|
|
39611
39786
|
is_issued?: boolean | undefined;
|
|
39612
39787
|
issued_at?: (string | undefined) | null;
|
|
@@ -39691,6 +39866,8 @@ interface Routes {
|
|
|
39691
39866
|
display_name: string;
|
|
39692
39867
|
/** Access (PIN) code for the credential. */
|
|
39693
39868
|
code?: (string | undefined) | null;
|
|
39869
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
39870
|
+
is_one_time_use?: boolean | undefined;
|
|
39694
39871
|
card_number?: (string | undefined) | null;
|
|
39695
39872
|
is_issued?: boolean | undefined;
|
|
39696
39873
|
issued_at?: (string | undefined) | null;
|
|
@@ -39812,6 +39989,8 @@ interface Routes {
|
|
|
39812
39989
|
display_name: string;
|
|
39813
39990
|
/** Access (PIN) code for the credential. */
|
|
39814
39991
|
code?: (string | undefined) | null;
|
|
39992
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
39993
|
+
is_one_time_use?: boolean | undefined;
|
|
39815
39994
|
card_number?: (string | undefined) | null;
|
|
39816
39995
|
is_issued?: boolean | undefined;
|
|
39817
39996
|
issued_at?: (string | undefined) | null;
|
|
@@ -39896,6 +40075,8 @@ interface Routes {
|
|
|
39896
40075
|
display_name: string;
|
|
39897
40076
|
/** Access (PIN) code for the credential. */
|
|
39898
40077
|
code?: (string | undefined) | null;
|
|
40078
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
40079
|
+
is_one_time_use?: boolean | undefined;
|
|
39899
40080
|
card_number?: (string | undefined) | null;
|
|
39900
40081
|
is_issued?: boolean | undefined;
|
|
39901
40082
|
issued_at?: (string | undefined) | null;
|
|
@@ -40492,6 +40673,8 @@ interface Routes {
|
|
|
40492
40673
|
display_name: string;
|
|
40493
40674
|
/** Access (PIN) code for the credential. */
|
|
40494
40675
|
code?: (string | undefined) | null;
|
|
40676
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
40677
|
+
is_one_time_use?: boolean | undefined;
|
|
40495
40678
|
card_number?: (string | undefined) | null;
|
|
40496
40679
|
is_issued?: boolean | undefined;
|
|
40497
40680
|
issued_at?: (string | undefined) | null;
|
|
@@ -41735,6 +41918,8 @@ interface Routes {
|
|
|
41735
41918
|
display_name: string;
|
|
41736
41919
|
/** Access (PIN) code for the credential. */
|
|
41737
41920
|
code?: (string | undefined) | null;
|
|
41921
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
41922
|
+
is_one_time_use?: boolean | undefined;
|
|
41738
41923
|
card_number?: (string | undefined) | null;
|
|
41739
41924
|
is_issued?: boolean | undefined;
|
|
41740
41925
|
issued_at?: (string | undefined) | null;
|
|
@@ -41819,6 +42004,8 @@ interface Routes {
|
|
|
41819
42004
|
display_name: string;
|
|
41820
42005
|
/** Access (PIN) code for the credential. */
|
|
41821
42006
|
code?: (string | undefined) | null;
|
|
42007
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
42008
|
+
is_one_time_use?: boolean | undefined;
|
|
41822
42009
|
card_number?: (string | undefined) | null;
|
|
41823
42010
|
is_issued?: boolean | undefined;
|
|
41824
42011
|
issued_at?: (string | undefined) | null;
|
|
@@ -41940,6 +42127,8 @@ interface Routes {
|
|
|
41940
42127
|
display_name: string;
|
|
41941
42128
|
/** Access (PIN) code for the credential. */
|
|
41942
42129
|
code?: (string | undefined) | null;
|
|
42130
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
42131
|
+
is_one_time_use?: boolean | undefined;
|
|
41943
42132
|
card_number?: (string | undefined) | null;
|
|
41944
42133
|
is_issued?: boolean | undefined;
|
|
41945
42134
|
issued_at?: (string | undefined) | null;
|
|
@@ -42024,6 +42213,8 @@ interface Routes {
|
|
|
42024
42213
|
display_name: string;
|
|
42025
42214
|
/** Access (PIN) code for the credential. */
|
|
42026
42215
|
code?: (string | undefined) | null;
|
|
42216
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
42217
|
+
is_one_time_use?: boolean | undefined;
|
|
42027
42218
|
card_number?: (string | undefined) | null;
|
|
42028
42219
|
is_issued?: boolean | undefined;
|
|
42029
42220
|
issued_at?: (string | undefined) | null;
|
|
@@ -42575,6 +42766,8 @@ interface Routes {
|
|
|
42575
42766
|
display_name: string;
|
|
42576
42767
|
/** Access (PIN) code for the credential. */
|
|
42577
42768
|
code?: (string | undefined) | null;
|
|
42769
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
42770
|
+
is_one_time_use?: boolean | undefined;
|
|
42578
42771
|
card_number?: (string | undefined) | null;
|
|
42579
42772
|
is_issued?: boolean | undefined;
|
|
42580
42773
|
issued_at?: (string | undefined) | null;
|
|
@@ -42659,6 +42852,8 @@ interface Routes {
|
|
|
42659
42852
|
display_name: string;
|
|
42660
42853
|
/** Access (PIN) code for the credential. */
|
|
42661
42854
|
code?: (string | undefined) | null;
|
|
42855
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
42856
|
+
is_one_time_use?: boolean | undefined;
|
|
42662
42857
|
card_number?: (string | undefined) | null;
|
|
42663
42858
|
is_issued?: boolean | undefined;
|
|
42664
42859
|
issued_at?: (string | undefined) | null;
|
|
@@ -42780,6 +42975,8 @@ interface Routes {
|
|
|
42780
42975
|
display_name: string;
|
|
42781
42976
|
/** Access (PIN) code for the credential. */
|
|
42782
42977
|
code?: (string | undefined) | null;
|
|
42978
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
42979
|
+
is_one_time_use?: boolean | undefined;
|
|
42783
42980
|
card_number?: (string | undefined) | null;
|
|
42784
42981
|
is_issued?: boolean | undefined;
|
|
42785
42982
|
issued_at?: (string | undefined) | null;
|
|
@@ -42864,6 +43061,8 @@ interface Routes {
|
|
|
42864
43061
|
display_name: string;
|
|
42865
43062
|
/** Access (PIN) code for the credential. */
|
|
42866
43063
|
code?: (string | undefined) | null;
|
|
43064
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
43065
|
+
is_one_time_use?: boolean | undefined;
|
|
42867
43066
|
card_number?: (string | undefined) | null;
|
|
42868
43067
|
is_issued?: boolean | undefined;
|
|
42869
43068
|
issued_at?: (string | undefined) | null;
|
|
@@ -47446,6 +47645,8 @@ interface Routes {
|
|
|
47446
47645
|
display_name: string;
|
|
47447
47646
|
/** Access (PIN) code for the credential. */
|
|
47448
47647
|
code?: (string | undefined) | null;
|
|
47648
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
47649
|
+
is_one_time_use?: boolean | undefined;
|
|
47449
47650
|
card_number?: (string | undefined) | null;
|
|
47450
47651
|
is_issued?: boolean | undefined;
|
|
47451
47652
|
issued_at?: (string | undefined) | null;
|
|
@@ -47530,6 +47731,8 @@ interface Routes {
|
|
|
47530
47731
|
display_name: string;
|
|
47531
47732
|
/** Access (PIN) code for the credential. */
|
|
47532
47733
|
code?: (string | undefined) | null;
|
|
47734
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
47735
|
+
is_one_time_use?: boolean | undefined;
|
|
47533
47736
|
card_number?: (string | undefined) | null;
|
|
47534
47737
|
is_issued?: boolean | undefined;
|
|
47535
47738
|
issued_at?: (string | undefined) | null;
|
|
@@ -47651,6 +47854,8 @@ interface Routes {
|
|
|
47651
47854
|
display_name: string;
|
|
47652
47855
|
/** Access (PIN) code for the credential. */
|
|
47653
47856
|
code?: (string | undefined) | null;
|
|
47857
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
47858
|
+
is_one_time_use?: boolean | undefined;
|
|
47654
47859
|
card_number?: (string | undefined) | null;
|
|
47655
47860
|
is_issued?: boolean | undefined;
|
|
47656
47861
|
issued_at?: (string | undefined) | null;
|
|
@@ -47735,6 +47940,8 @@ interface Routes {
|
|
|
47735
47940
|
display_name: string;
|
|
47736
47941
|
/** Access (PIN) code for the credential. */
|
|
47737
47942
|
code?: (string | undefined) | null;
|
|
47943
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
47944
|
+
is_one_time_use?: boolean | undefined;
|
|
47738
47945
|
card_number?: (string | undefined) | null;
|
|
47739
47946
|
is_issued?: boolean | undefined;
|
|
47740
47947
|
issued_at?: (string | undefined) | null;
|
|
@@ -48287,6 +48494,8 @@ interface Routes {
|
|
|
48287
48494
|
display_name: string;
|
|
48288
48495
|
/** Access (PIN) code for the credential. */
|
|
48289
48496
|
code?: (string | undefined) | null;
|
|
48497
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
48498
|
+
is_one_time_use?: boolean | undefined;
|
|
48290
48499
|
card_number?: (string | undefined) | null;
|
|
48291
48500
|
is_issued?: boolean | undefined;
|
|
48292
48501
|
issued_at?: (string | undefined) | null;
|
|
@@ -48371,6 +48580,8 @@ interface Routes {
|
|
|
48371
48580
|
display_name: string;
|
|
48372
48581
|
/** Access (PIN) code for the credential. */
|
|
48373
48582
|
code?: (string | undefined) | null;
|
|
48583
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
48584
|
+
is_one_time_use?: boolean | undefined;
|
|
48374
48585
|
card_number?: (string | undefined) | null;
|
|
48375
48586
|
is_issued?: boolean | undefined;
|
|
48376
48587
|
issued_at?: (string | undefined) | null;
|
|
@@ -48492,6 +48703,8 @@ interface Routes {
|
|
|
48492
48703
|
display_name: string;
|
|
48493
48704
|
/** Access (PIN) code for the credential. */
|
|
48494
48705
|
code?: (string | undefined) | null;
|
|
48706
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
48707
|
+
is_one_time_use?: boolean | undefined;
|
|
48495
48708
|
card_number?: (string | undefined) | null;
|
|
48496
48709
|
is_issued?: boolean | undefined;
|
|
48497
48710
|
issued_at?: (string | undefined) | null;
|
|
@@ -48576,6 +48789,8 @@ interface Routes {
|
|
|
48576
48789
|
display_name: string;
|
|
48577
48790
|
/** Access (PIN) code for the credential. */
|
|
48578
48791
|
code?: (string | undefined) | null;
|
|
48792
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
48793
|
+
is_one_time_use?: boolean | undefined;
|
|
48579
48794
|
card_number?: (string | undefined) | null;
|
|
48580
48795
|
is_issued?: boolean | undefined;
|
|
48581
48796
|
issued_at?: (string | undefined) | null;
|
|
@@ -50230,6 +50445,8 @@ interface Routes {
|
|
|
50230
50445
|
display_name: string;
|
|
50231
50446
|
/** Access (PIN) code for the credential. */
|
|
50232
50447
|
code?: (string | undefined) | null;
|
|
50448
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
50449
|
+
is_one_time_use?: boolean | undefined;
|
|
50233
50450
|
card_number?: (string | undefined) | null;
|
|
50234
50451
|
is_issued?: boolean | undefined;
|
|
50235
50452
|
issued_at?: (string | undefined) | null;
|
|
@@ -50314,6 +50531,8 @@ interface Routes {
|
|
|
50314
50531
|
display_name: string;
|
|
50315
50532
|
/** Access (PIN) code for the credential. */
|
|
50316
50533
|
code?: (string | undefined) | null;
|
|
50534
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
50535
|
+
is_one_time_use?: boolean | undefined;
|
|
50317
50536
|
card_number?: (string | undefined) | null;
|
|
50318
50537
|
is_issued?: boolean | undefined;
|
|
50319
50538
|
issued_at?: (string | undefined) | null;
|
|
@@ -50435,6 +50654,8 @@ interface Routes {
|
|
|
50435
50654
|
display_name: string;
|
|
50436
50655
|
/** Access (PIN) code for the credential. */
|
|
50437
50656
|
code?: (string | undefined) | null;
|
|
50657
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
50658
|
+
is_one_time_use?: boolean | undefined;
|
|
50438
50659
|
card_number?: (string | undefined) | null;
|
|
50439
50660
|
is_issued?: boolean | undefined;
|
|
50440
50661
|
issued_at?: (string | undefined) | null;
|
|
@@ -50519,6 +50740,8 @@ interface Routes {
|
|
|
50519
50740
|
display_name: string;
|
|
50520
50741
|
/** Access (PIN) code for the credential. */
|
|
50521
50742
|
code?: (string | undefined) | null;
|
|
50743
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
50744
|
+
is_one_time_use?: boolean | undefined;
|
|
50522
50745
|
card_number?: (string | undefined) | null;
|
|
50523
50746
|
is_issued?: boolean | undefined;
|
|
50524
50747
|
issued_at?: (string | undefined) | null;
|
|
@@ -51081,6 +51304,8 @@ interface Routes {
|
|
|
51081
51304
|
display_name: string;
|
|
51082
51305
|
/** Access (PIN) code for the credential. */
|
|
51083
51306
|
code?: (string | undefined) | null;
|
|
51307
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
51308
|
+
is_one_time_use?: boolean | undefined;
|
|
51084
51309
|
card_number?: (string | undefined) | null;
|
|
51085
51310
|
is_issued?: boolean | undefined;
|
|
51086
51311
|
issued_at?: (string | undefined) | null;
|
|
@@ -51165,6 +51390,8 @@ interface Routes {
|
|
|
51165
51390
|
display_name: string;
|
|
51166
51391
|
/** Access (PIN) code for the credential. */
|
|
51167
51392
|
code?: (string | undefined) | null;
|
|
51393
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
51394
|
+
is_one_time_use?: boolean | undefined;
|
|
51168
51395
|
card_number?: (string | undefined) | null;
|
|
51169
51396
|
is_issued?: boolean | undefined;
|
|
51170
51397
|
issued_at?: (string | undefined) | null;
|
|
@@ -51286,6 +51513,8 @@ interface Routes {
|
|
|
51286
51513
|
display_name: string;
|
|
51287
51514
|
/** Access (PIN) code for the credential. */
|
|
51288
51515
|
code?: (string | undefined) | null;
|
|
51516
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
51517
|
+
is_one_time_use?: boolean | undefined;
|
|
51289
51518
|
card_number?: (string | undefined) | null;
|
|
51290
51519
|
is_issued?: boolean | undefined;
|
|
51291
51520
|
issued_at?: (string | undefined) | null;
|
|
@@ -51370,6 +51599,8 @@ interface Routes {
|
|
|
51370
51599
|
display_name: string;
|
|
51371
51600
|
/** Access (PIN) code for the credential. */
|
|
51372
51601
|
code?: (string | undefined) | null;
|
|
51602
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
51603
|
+
is_one_time_use?: boolean | undefined;
|
|
51373
51604
|
card_number?: (string | undefined) | null;
|
|
51374
51605
|
is_issued?: boolean | undefined;
|
|
51375
51606
|
issued_at?: (string | undefined) | null;
|
|
@@ -51971,6 +52202,8 @@ interface Routes {
|
|
|
51971
52202
|
display_name: string;
|
|
51972
52203
|
/** Access (PIN) code for the credential. */
|
|
51973
52204
|
code?: (string | undefined) | null;
|
|
52205
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
52206
|
+
is_one_time_use?: boolean | undefined;
|
|
51974
52207
|
card_number?: (string | undefined) | null;
|
|
51975
52208
|
is_issued?: boolean | undefined;
|
|
51976
52209
|
issued_at?: (string | undefined) | null;
|
|
@@ -52055,6 +52288,8 @@ interface Routes {
|
|
|
52055
52288
|
display_name: string;
|
|
52056
52289
|
/** Access (PIN) code for the credential. */
|
|
52057
52290
|
code?: (string | undefined) | null;
|
|
52291
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
52292
|
+
is_one_time_use?: boolean | undefined;
|
|
52058
52293
|
card_number?: (string | undefined) | null;
|
|
52059
52294
|
is_issued?: boolean | undefined;
|
|
52060
52295
|
issued_at?: (string | undefined) | null;
|
|
@@ -52176,6 +52411,8 @@ interface Routes {
|
|
|
52176
52411
|
display_name: string;
|
|
52177
52412
|
/** Access (PIN) code for the credential. */
|
|
52178
52413
|
code?: (string | undefined) | null;
|
|
52414
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
52415
|
+
is_one_time_use?: boolean | undefined;
|
|
52179
52416
|
card_number?: (string | undefined) | null;
|
|
52180
52417
|
is_issued?: boolean | undefined;
|
|
52181
52418
|
issued_at?: (string | undefined) | null;
|
|
@@ -52260,6 +52497,8 @@ interface Routes {
|
|
|
52260
52497
|
display_name: string;
|
|
52261
52498
|
/** Access (PIN) code for the credential. */
|
|
52262
52499
|
code?: (string | undefined) | null;
|
|
52500
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
52501
|
+
is_one_time_use?: boolean | undefined;
|
|
52263
52502
|
card_number?: (string | undefined) | null;
|
|
52264
52503
|
is_issued?: boolean | undefined;
|
|
52265
52504
|
issued_at?: (string | undefined) | null;
|
|
@@ -52996,6 +53235,8 @@ interface Routes {
|
|
|
52996
53235
|
display_name: string;
|
|
52997
53236
|
/** Access (PIN) code for the credential. */
|
|
52998
53237
|
code?: (string | undefined) | null;
|
|
53238
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
53239
|
+
is_one_time_use?: boolean | undefined;
|
|
52999
53240
|
card_number?: (string | undefined) | null;
|
|
53000
53241
|
is_issued?: boolean | undefined;
|
|
53001
53242
|
issued_at?: (string | undefined) | null;
|
|
@@ -53080,6 +53321,8 @@ interface Routes {
|
|
|
53080
53321
|
display_name: string;
|
|
53081
53322
|
/** Access (PIN) code for the credential. */
|
|
53082
53323
|
code?: (string | undefined) | null;
|
|
53324
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
53325
|
+
is_one_time_use?: boolean | undefined;
|
|
53083
53326
|
card_number?: (string | undefined) | null;
|
|
53084
53327
|
is_issued?: boolean | undefined;
|
|
53085
53328
|
issued_at?: (string | undefined) | null;
|
|
@@ -53201,6 +53444,8 @@ interface Routes {
|
|
|
53201
53444
|
display_name: string;
|
|
53202
53445
|
/** Access (PIN) code for the credential. */
|
|
53203
53446
|
code?: (string | undefined) | null;
|
|
53447
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
53448
|
+
is_one_time_use?: boolean | undefined;
|
|
53204
53449
|
card_number?: (string | undefined) | null;
|
|
53205
53450
|
is_issued?: boolean | undefined;
|
|
53206
53451
|
issued_at?: (string | undefined) | null;
|
|
@@ -53285,6 +53530,8 @@ interface Routes {
|
|
|
53285
53530
|
display_name: string;
|
|
53286
53531
|
/** Access (PIN) code for the credential. */
|
|
53287
53532
|
code?: (string | undefined) | null;
|
|
53533
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
53534
|
+
is_one_time_use?: boolean | undefined;
|
|
53288
53535
|
card_number?: (string | undefined) | null;
|
|
53289
53536
|
is_issued?: boolean | undefined;
|
|
53290
53537
|
issued_at?: (string | undefined) | null;
|
|
@@ -53843,6 +54090,8 @@ interface Routes {
|
|
|
53843
54090
|
display_name: string;
|
|
53844
54091
|
/** Access (PIN) code for the credential. */
|
|
53845
54092
|
code?: (string | undefined) | null;
|
|
54093
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
54094
|
+
is_one_time_use?: boolean | undefined;
|
|
53846
54095
|
card_number?: (string | undefined) | null;
|
|
53847
54096
|
is_issued?: boolean | undefined;
|
|
53848
54097
|
issued_at?: (string | undefined) | null;
|
|
@@ -53927,6 +54176,8 @@ interface Routes {
|
|
|
53927
54176
|
display_name: string;
|
|
53928
54177
|
/** Access (PIN) code for the credential. */
|
|
53929
54178
|
code?: (string | undefined) | null;
|
|
54179
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
54180
|
+
is_one_time_use?: boolean | undefined;
|
|
53930
54181
|
card_number?: (string | undefined) | null;
|
|
53931
54182
|
is_issued?: boolean | undefined;
|
|
53932
54183
|
issued_at?: (string | undefined) | null;
|
|
@@ -54048,6 +54299,8 @@ interface Routes {
|
|
|
54048
54299
|
display_name: string;
|
|
54049
54300
|
/** Access (PIN) code for the credential. */
|
|
54050
54301
|
code?: (string | undefined) | null;
|
|
54302
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
54303
|
+
is_one_time_use?: boolean | undefined;
|
|
54051
54304
|
card_number?: (string | undefined) | null;
|
|
54052
54305
|
is_issued?: boolean | undefined;
|
|
54053
54306
|
issued_at?: (string | undefined) | null;
|
|
@@ -54132,6 +54385,8 @@ interface Routes {
|
|
|
54132
54385
|
display_name: string;
|
|
54133
54386
|
/** Access (PIN) code for the credential. */
|
|
54134
54387
|
code?: (string | undefined) | null;
|
|
54388
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
54389
|
+
is_one_time_use?: boolean | undefined;
|
|
54135
54390
|
card_number?: (string | undefined) | null;
|
|
54136
54391
|
is_issued?: boolean | undefined;
|
|
54137
54392
|
issued_at?: (string | undefined) | null;
|
|
@@ -55261,6 +55516,8 @@ interface Routes {
|
|
|
55261
55516
|
display_name: string;
|
|
55262
55517
|
/** Access (PIN) code for the credential. */
|
|
55263
55518
|
code?: (string | undefined) | null;
|
|
55519
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
55520
|
+
is_one_time_use?: boolean | undefined;
|
|
55264
55521
|
card_number?: (string | undefined) | null;
|
|
55265
55522
|
is_issued?: boolean | undefined;
|
|
55266
55523
|
issued_at?: (string | undefined) | null;
|
|
@@ -55345,6 +55602,8 @@ interface Routes {
|
|
|
55345
55602
|
display_name: string;
|
|
55346
55603
|
/** Access (PIN) code for the credential. */
|
|
55347
55604
|
code?: (string | undefined) | null;
|
|
55605
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
55606
|
+
is_one_time_use?: boolean | undefined;
|
|
55348
55607
|
card_number?: (string | undefined) | null;
|
|
55349
55608
|
is_issued?: boolean | undefined;
|
|
55350
55609
|
issued_at?: (string | undefined) | null;
|
|
@@ -55466,6 +55725,8 @@ interface Routes {
|
|
|
55466
55725
|
display_name: string;
|
|
55467
55726
|
/** Access (PIN) code for the credential. */
|
|
55468
55727
|
code?: (string | undefined) | null;
|
|
55728
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
55729
|
+
is_one_time_use?: boolean | undefined;
|
|
55469
55730
|
card_number?: (string | undefined) | null;
|
|
55470
55731
|
is_issued?: boolean | undefined;
|
|
55471
55732
|
issued_at?: (string | undefined) | null;
|
|
@@ -55550,6 +55811,8 @@ interface Routes {
|
|
|
55550
55811
|
display_name: string;
|
|
55551
55812
|
/** Access (PIN) code for the credential. */
|
|
55552
55813
|
code?: (string | undefined) | null;
|
|
55814
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
55815
|
+
is_one_time_use?: boolean | undefined;
|
|
55553
55816
|
card_number?: (string | undefined) | null;
|
|
55554
55817
|
is_issued?: boolean | undefined;
|
|
55555
55818
|
issued_at?: (string | undefined) | null;
|
|
@@ -56112,6 +56375,8 @@ interface Routes {
|
|
|
56112
56375
|
display_name: string;
|
|
56113
56376
|
/** Access (PIN) code for the credential. */
|
|
56114
56377
|
code?: (string | undefined) | null;
|
|
56378
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
56379
|
+
is_one_time_use?: boolean | undefined;
|
|
56115
56380
|
card_number?: (string | undefined) | null;
|
|
56116
56381
|
is_issued?: boolean | undefined;
|
|
56117
56382
|
issued_at?: (string | undefined) | null;
|
|
@@ -56196,6 +56461,8 @@ interface Routes {
|
|
|
56196
56461
|
display_name: string;
|
|
56197
56462
|
/** Access (PIN) code for the credential. */
|
|
56198
56463
|
code?: (string | undefined) | null;
|
|
56464
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
56465
|
+
is_one_time_use?: boolean | undefined;
|
|
56199
56466
|
card_number?: (string | undefined) | null;
|
|
56200
56467
|
is_issued?: boolean | undefined;
|
|
56201
56468
|
issued_at?: (string | undefined) | null;
|
|
@@ -56317,6 +56584,8 @@ interface Routes {
|
|
|
56317
56584
|
display_name: string;
|
|
56318
56585
|
/** Access (PIN) code for the credential. */
|
|
56319
56586
|
code?: (string | undefined) | null;
|
|
56587
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
56588
|
+
is_one_time_use?: boolean | undefined;
|
|
56320
56589
|
card_number?: (string | undefined) | null;
|
|
56321
56590
|
is_issued?: boolean | undefined;
|
|
56322
56591
|
issued_at?: (string | undefined) | null;
|
|
@@ -56401,6 +56670,8 @@ interface Routes {
|
|
|
56401
56670
|
display_name: string;
|
|
56402
56671
|
/** Access (PIN) code for the credential. */
|
|
56403
56672
|
code?: (string | undefined) | null;
|
|
56673
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
56674
|
+
is_one_time_use?: boolean | undefined;
|
|
56404
56675
|
card_number?: (string | undefined) | null;
|
|
56405
56676
|
is_issued?: boolean | undefined;
|
|
56406
56677
|
issued_at?: (string | undefined) | null;
|
|
@@ -58018,6 +58289,8 @@ interface Routes {
|
|
|
58018
58289
|
display_name: string;
|
|
58019
58290
|
/** Access (PIN) code for the credential. */
|
|
58020
58291
|
code?: (string | undefined) | null;
|
|
58292
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
58293
|
+
is_one_time_use?: boolean | undefined;
|
|
58021
58294
|
card_number?: (string | undefined) | null;
|
|
58022
58295
|
is_issued?: boolean | undefined;
|
|
58023
58296
|
issued_at?: (string | undefined) | null;
|
|
@@ -58102,6 +58375,8 @@ interface Routes {
|
|
|
58102
58375
|
display_name: string;
|
|
58103
58376
|
/** Access (PIN) code for the credential. */
|
|
58104
58377
|
code?: (string | undefined) | null;
|
|
58378
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
58379
|
+
is_one_time_use?: boolean | undefined;
|
|
58105
58380
|
card_number?: (string | undefined) | null;
|
|
58106
58381
|
is_issued?: boolean | undefined;
|
|
58107
58382
|
issued_at?: (string | undefined) | null;
|
|
@@ -58223,6 +58498,8 @@ interface Routes {
|
|
|
58223
58498
|
display_name: string;
|
|
58224
58499
|
/** Access (PIN) code for the credential. */
|
|
58225
58500
|
code?: (string | undefined) | null;
|
|
58501
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
58502
|
+
is_one_time_use?: boolean | undefined;
|
|
58226
58503
|
card_number?: (string | undefined) | null;
|
|
58227
58504
|
is_issued?: boolean | undefined;
|
|
58228
58505
|
issued_at?: (string | undefined) | null;
|
|
@@ -58307,6 +58584,8 @@ interface Routes {
|
|
|
58307
58584
|
display_name: string;
|
|
58308
58585
|
/** Access (PIN) code for the credential. */
|
|
58309
58586
|
code?: (string | undefined) | null;
|
|
58587
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
58588
|
+
is_one_time_use?: boolean | undefined;
|
|
58310
58589
|
card_number?: (string | undefined) | null;
|
|
58311
58590
|
is_issued?: boolean | undefined;
|
|
58312
58591
|
issued_at?: (string | undefined) | null;
|
|
@@ -59034,6 +59313,8 @@ interface Routes {
|
|
|
59034
59313
|
display_name: string;
|
|
59035
59314
|
/** Access (PIN) code for the credential. */
|
|
59036
59315
|
code?: (string | undefined) | null;
|
|
59316
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
59317
|
+
is_one_time_use?: boolean | undefined;
|
|
59037
59318
|
card_number?: (string | undefined) | null;
|
|
59038
59319
|
is_issued?: boolean | undefined;
|
|
59039
59320
|
issued_at?: (string | undefined) | null;
|
|
@@ -59118,6 +59399,8 @@ interface Routes {
|
|
|
59118
59399
|
display_name: string;
|
|
59119
59400
|
/** Access (PIN) code for the credential. */
|
|
59120
59401
|
code?: (string | undefined) | null;
|
|
59402
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
59403
|
+
is_one_time_use?: boolean | undefined;
|
|
59121
59404
|
card_number?: (string | undefined) | null;
|
|
59122
59405
|
is_issued?: boolean | undefined;
|
|
59123
59406
|
issued_at?: (string | undefined) | null;
|
|
@@ -59239,6 +59522,8 @@ interface Routes {
|
|
|
59239
59522
|
display_name: string;
|
|
59240
59523
|
/** Access (PIN) code for the credential. */
|
|
59241
59524
|
code?: (string | undefined) | null;
|
|
59525
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
59526
|
+
is_one_time_use?: boolean | undefined;
|
|
59242
59527
|
card_number?: (string | undefined) | null;
|
|
59243
59528
|
is_issued?: boolean | undefined;
|
|
59244
59529
|
issued_at?: (string | undefined) | null;
|
|
@@ -59323,6 +59608,8 @@ interface Routes {
|
|
|
59323
59608
|
display_name: string;
|
|
59324
59609
|
/** Access (PIN) code for the credential. */
|
|
59325
59610
|
code?: (string | undefined) | null;
|
|
59611
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
59612
|
+
is_one_time_use?: boolean | undefined;
|
|
59326
59613
|
card_number?: (string | undefined) | null;
|
|
59327
59614
|
is_issued?: boolean | undefined;
|
|
59328
59615
|
issued_at?: (string | undefined) | null;
|
|
@@ -59904,6 +60191,8 @@ interface Routes {
|
|
|
59904
60191
|
display_name: string;
|
|
59905
60192
|
/** Access (PIN) code for the credential. */
|
|
59906
60193
|
code?: (string | undefined) | null;
|
|
60194
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
60195
|
+
is_one_time_use?: boolean | undefined;
|
|
59907
60196
|
card_number?: (string | undefined) | null;
|
|
59908
60197
|
is_issued?: boolean | undefined;
|
|
59909
60198
|
issued_at?: (string | undefined) | null;
|
|
@@ -59988,6 +60277,8 @@ interface Routes {
|
|
|
59988
60277
|
display_name: string;
|
|
59989
60278
|
/** Access (PIN) code for the credential. */
|
|
59990
60279
|
code?: (string | undefined) | null;
|
|
60280
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
60281
|
+
is_one_time_use?: boolean | undefined;
|
|
59991
60282
|
card_number?: (string | undefined) | null;
|
|
59992
60283
|
is_issued?: boolean | undefined;
|
|
59993
60284
|
issued_at?: (string | undefined) | null;
|
|
@@ -60109,6 +60400,8 @@ interface Routes {
|
|
|
60109
60400
|
display_name: string;
|
|
60110
60401
|
/** Access (PIN) code for the credential. */
|
|
60111
60402
|
code?: (string | undefined) | null;
|
|
60403
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
60404
|
+
is_one_time_use?: boolean | undefined;
|
|
60112
60405
|
card_number?: (string | undefined) | null;
|
|
60113
60406
|
is_issued?: boolean | undefined;
|
|
60114
60407
|
issued_at?: (string | undefined) | null;
|
|
@@ -60193,6 +60486,8 @@ interface Routes {
|
|
|
60193
60486
|
display_name: string;
|
|
60194
60487
|
/** Access (PIN) code for the credential. */
|
|
60195
60488
|
code?: (string | undefined) | null;
|
|
60489
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
60490
|
+
is_one_time_use?: boolean | undefined;
|
|
60196
60491
|
card_number?: (string | undefined) | null;
|
|
60197
60492
|
is_issued?: boolean | undefined;
|
|
60198
60493
|
issued_at?: (string | undefined) | null;
|
|
@@ -62471,6 +62766,8 @@ interface Routes {
|
|
|
62471
62766
|
display_name: string;
|
|
62472
62767
|
/** Access (PIN) code for the credential. */
|
|
62473
62768
|
code?: (string | undefined) | null;
|
|
62769
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
62770
|
+
is_one_time_use?: boolean | undefined;
|
|
62474
62771
|
card_number?: (string | undefined) | null;
|
|
62475
62772
|
is_issued?: boolean | undefined;
|
|
62476
62773
|
issued_at?: (string | undefined) | null;
|
|
@@ -62555,6 +62852,8 @@ interface Routes {
|
|
|
62555
62852
|
display_name: string;
|
|
62556
62853
|
/** Access (PIN) code for the credential. */
|
|
62557
62854
|
code?: (string | undefined) | null;
|
|
62855
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
62856
|
+
is_one_time_use?: boolean | undefined;
|
|
62558
62857
|
card_number?: (string | undefined) | null;
|
|
62559
62858
|
is_issued?: boolean | undefined;
|
|
62560
62859
|
issued_at?: (string | undefined) | null;
|
|
@@ -62676,6 +62975,8 @@ interface Routes {
|
|
|
62676
62975
|
display_name: string;
|
|
62677
62976
|
/** Access (PIN) code for the credential. */
|
|
62678
62977
|
code?: (string | undefined) | null;
|
|
62978
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
62979
|
+
is_one_time_use?: boolean | undefined;
|
|
62679
62980
|
card_number?: (string | undefined) | null;
|
|
62680
62981
|
is_issued?: boolean | undefined;
|
|
62681
62982
|
issued_at?: (string | undefined) | null;
|
|
@@ -62760,6 +63061,8 @@ interface Routes {
|
|
|
62760
63061
|
display_name: string;
|
|
62761
63062
|
/** Access (PIN) code for the credential. */
|
|
62762
63063
|
code?: (string | undefined) | null;
|
|
63064
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
63065
|
+
is_one_time_use?: boolean | undefined;
|
|
62763
63066
|
card_number?: (string | undefined) | null;
|
|
62764
63067
|
is_issued?: boolean | undefined;
|
|
62765
63068
|
issued_at?: (string | undefined) | null;
|