@seamapi/types 1.302.2 → 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 +32 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +239 -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 +20 -0
- package/lib/seam/connect/openapi.js +29 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +189 -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 +36 -1
- package/src/lib/seam/connect/route-types.ts +189 -1
|
@@ -129,6 +129,8 @@ export interface Routes {
|
|
|
129
129
|
display_name: string;
|
|
130
130
|
/** Access (PIN) code for the credential. */
|
|
131
131
|
code?: (string | undefined) | null;
|
|
132
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
133
|
+
is_one_time_use?: boolean | undefined;
|
|
132
134
|
card_number?: (string | undefined) | null;
|
|
133
135
|
is_issued?: boolean | undefined;
|
|
134
136
|
issued_at?: (string | undefined) | null;
|
|
@@ -213,6 +215,8 @@ export interface Routes {
|
|
|
213
215
|
display_name: string;
|
|
214
216
|
/** Access (PIN) code for the credential. */
|
|
215
217
|
code?: (string | undefined) | null;
|
|
218
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
219
|
+
is_one_time_use?: boolean | undefined;
|
|
216
220
|
card_number?: (string | undefined) | null;
|
|
217
221
|
is_issued?: boolean | undefined;
|
|
218
222
|
issued_at?: (string | undefined) | null;
|
|
@@ -334,6 +338,8 @@ export interface Routes {
|
|
|
334
338
|
display_name: string;
|
|
335
339
|
/** Access (PIN) code for the credential. */
|
|
336
340
|
code?: (string | undefined) | null;
|
|
341
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
342
|
+
is_one_time_use?: boolean | undefined;
|
|
337
343
|
card_number?: (string | undefined) | null;
|
|
338
344
|
is_issued?: boolean | undefined;
|
|
339
345
|
issued_at?: (string | undefined) | null;
|
|
@@ -418,6 +424,8 @@ export interface Routes {
|
|
|
418
424
|
display_name: string;
|
|
419
425
|
/** Access (PIN) code for the credential. */
|
|
420
426
|
code?: (string | undefined) | null;
|
|
427
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
428
|
+
is_one_time_use?: boolean | undefined;
|
|
421
429
|
card_number?: (string | undefined) | null;
|
|
422
430
|
is_issued?: boolean | undefined;
|
|
423
431
|
issued_at?: (string | undefined) | null;
|
|
@@ -1120,6 +1128,8 @@ export interface Routes {
|
|
|
1120
1128
|
display_name: string;
|
|
1121
1129
|
/** Access (PIN) code for the credential. */
|
|
1122
1130
|
code?: (string | undefined) | null;
|
|
1131
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1132
|
+
is_one_time_use?: boolean | undefined;
|
|
1123
1133
|
card_number?: (string | undefined) | null;
|
|
1124
1134
|
is_issued?: boolean | undefined;
|
|
1125
1135
|
issued_at?: (string | undefined) | null;
|
|
@@ -1204,6 +1214,8 @@ export interface Routes {
|
|
|
1204
1214
|
display_name: string;
|
|
1205
1215
|
/** Access (PIN) code for the credential. */
|
|
1206
1216
|
code?: (string | undefined) | null;
|
|
1217
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1218
|
+
is_one_time_use?: boolean | undefined;
|
|
1207
1219
|
card_number?: (string | undefined) | null;
|
|
1208
1220
|
is_issued?: boolean | undefined;
|
|
1209
1221
|
issued_at?: (string | undefined) | null;
|
|
@@ -1325,6 +1337,8 @@ export interface Routes {
|
|
|
1325
1337
|
display_name: string;
|
|
1326
1338
|
/** Access (PIN) code for the credential. */
|
|
1327
1339
|
code?: (string | undefined) | null;
|
|
1340
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1341
|
+
is_one_time_use?: boolean | undefined;
|
|
1328
1342
|
card_number?: (string | undefined) | null;
|
|
1329
1343
|
is_issued?: boolean | undefined;
|
|
1330
1344
|
issued_at?: (string | undefined) | null;
|
|
@@ -1409,6 +1423,8 @@ export interface Routes {
|
|
|
1409
1423
|
display_name: string;
|
|
1410
1424
|
/** Access (PIN) code for the credential. */
|
|
1411
1425
|
code?: (string | undefined) | null;
|
|
1426
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1427
|
+
is_one_time_use?: boolean | undefined;
|
|
1412
1428
|
card_number?: (string | undefined) | null;
|
|
1413
1429
|
is_issued?: boolean | undefined;
|
|
1414
1430
|
issued_at?: (string | undefined) | null;
|
|
@@ -2329,6 +2345,8 @@ export interface Routes {
|
|
|
2329
2345
|
display_name: string;
|
|
2330
2346
|
/** Access (PIN) code for the credential. */
|
|
2331
2347
|
code?: (string | undefined) | null;
|
|
2348
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2349
|
+
is_one_time_use?: boolean | undefined;
|
|
2332
2350
|
card_number?: (string | undefined) | null;
|
|
2333
2351
|
is_issued?: boolean | undefined;
|
|
2334
2352
|
issued_at?: (string | undefined) | null;
|
|
@@ -2413,6 +2431,8 @@ export interface Routes {
|
|
|
2413
2431
|
display_name: string;
|
|
2414
2432
|
/** Access (PIN) code for the credential. */
|
|
2415
2433
|
code?: (string | undefined) | null;
|
|
2434
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2435
|
+
is_one_time_use?: boolean | undefined;
|
|
2416
2436
|
card_number?: (string | undefined) | null;
|
|
2417
2437
|
is_issued?: boolean | undefined;
|
|
2418
2438
|
issued_at?: (string | undefined) | null;
|
|
@@ -2534,6 +2554,8 @@ export interface Routes {
|
|
|
2534
2554
|
display_name: string;
|
|
2535
2555
|
/** Access (PIN) code for the credential. */
|
|
2536
2556
|
code?: (string | undefined) | null;
|
|
2557
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2558
|
+
is_one_time_use?: boolean | undefined;
|
|
2537
2559
|
card_number?: (string | undefined) | null;
|
|
2538
2560
|
is_issued?: boolean | undefined;
|
|
2539
2561
|
issued_at?: (string | undefined) | null;
|
|
@@ -2618,6 +2640,8 @@ export interface Routes {
|
|
|
2618
2640
|
display_name: string;
|
|
2619
2641
|
/** Access (PIN) code for the credential. */
|
|
2620
2642
|
code?: (string | undefined) | null;
|
|
2643
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2644
|
+
is_one_time_use?: boolean | undefined;
|
|
2621
2645
|
card_number?: (string | undefined) | null;
|
|
2622
2646
|
is_issued?: boolean | undefined;
|
|
2623
2647
|
issued_at?: (string | undefined) | null;
|
|
@@ -3307,6 +3331,8 @@ export interface Routes {
|
|
|
3307
3331
|
display_name: string;
|
|
3308
3332
|
/** Access (PIN) code for the credential. */
|
|
3309
3333
|
code?: (string | undefined) | null;
|
|
3334
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3335
|
+
is_one_time_use?: boolean | undefined;
|
|
3310
3336
|
card_number?: (string | undefined) | null;
|
|
3311
3337
|
is_issued?: boolean | undefined;
|
|
3312
3338
|
issued_at?: (string | undefined) | null;
|
|
@@ -3391,6 +3417,8 @@ export interface Routes {
|
|
|
3391
3417
|
display_name: string;
|
|
3392
3418
|
/** Access (PIN) code for the credential. */
|
|
3393
3419
|
code?: (string | undefined) | null;
|
|
3420
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3421
|
+
is_one_time_use?: boolean | undefined;
|
|
3394
3422
|
card_number?: (string | undefined) | null;
|
|
3395
3423
|
is_issued?: boolean | undefined;
|
|
3396
3424
|
issued_at?: (string | undefined) | null;
|
|
@@ -3512,6 +3540,8 @@ export interface Routes {
|
|
|
3512
3540
|
display_name: string;
|
|
3513
3541
|
/** Access (PIN) code for the credential. */
|
|
3514
3542
|
code?: (string | undefined) | null;
|
|
3543
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3544
|
+
is_one_time_use?: boolean | undefined;
|
|
3515
3545
|
card_number?: (string | undefined) | null;
|
|
3516
3546
|
is_issued?: boolean | undefined;
|
|
3517
3547
|
issued_at?: (string | undefined) | null;
|
|
@@ -3596,6 +3626,8 @@ export interface Routes {
|
|
|
3596
3626
|
display_name: string;
|
|
3597
3627
|
/** Access (PIN) code for the credential. */
|
|
3598
3628
|
code?: (string | undefined) | null;
|
|
3629
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3630
|
+
is_one_time_use?: boolean | undefined;
|
|
3599
3631
|
card_number?: (string | undefined) | null;
|
|
3600
3632
|
is_issued?: boolean | undefined;
|
|
3601
3633
|
issued_at?: (string | undefined) | null;
|
|
@@ -4466,6 +4498,8 @@ export interface Routes {
|
|
|
4466
4498
|
display_name: string;
|
|
4467
4499
|
/** Access (PIN) code for the credential. */
|
|
4468
4500
|
code?: (string | undefined) | null;
|
|
4501
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4502
|
+
is_one_time_use?: boolean | undefined;
|
|
4469
4503
|
card_number?: (string | undefined) | null;
|
|
4470
4504
|
is_issued?: boolean | undefined;
|
|
4471
4505
|
issued_at?: (string | undefined) | null;
|
|
@@ -4600,6 +4634,8 @@ export interface Routes {
|
|
|
4600
4634
|
display_name: string;
|
|
4601
4635
|
/** Access (PIN) code for the credential. */
|
|
4602
4636
|
code?: (string | undefined) | null;
|
|
4637
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4638
|
+
is_one_time_use?: boolean | undefined;
|
|
4603
4639
|
card_number?: (string | undefined) | null;
|
|
4604
4640
|
is_issued?: boolean | undefined;
|
|
4605
4641
|
issued_at?: (string | undefined) | null;
|
|
@@ -4682,7 +4718,7 @@ export interface Routes {
|
|
|
4682
4718
|
/** ID of the ACS user to whom the new credential belongs. */
|
|
4683
4719
|
acs_user_id: string;
|
|
4684
4720
|
/** 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. */
|
|
4685
|
-
allowed_acs_entrance_id
|
|
4721
|
+
allowed_acs_entrance_id: string;
|
|
4686
4722
|
/** Indicates whether the code is one-time-use or reusable. */
|
|
4687
4723
|
is_one_time_use?: boolean;
|
|
4688
4724
|
/** 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. */
|
|
@@ -4708,6 +4744,8 @@ export interface Routes {
|
|
|
4708
4744
|
display_name: string;
|
|
4709
4745
|
/** Access (PIN) code for the credential. */
|
|
4710
4746
|
code?: (string | undefined) | null;
|
|
4747
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4748
|
+
is_one_time_use?: boolean | undefined;
|
|
4711
4749
|
card_number?: (string | undefined) | null;
|
|
4712
4750
|
is_issued?: boolean | undefined;
|
|
4713
4751
|
issued_at?: (string | undefined) | null;
|
|
@@ -4820,6 +4858,8 @@ export interface Routes {
|
|
|
4820
4858
|
display_name: string;
|
|
4821
4859
|
/** Access (PIN) code for the credential. */
|
|
4822
4860
|
code?: (string | undefined) | null;
|
|
4861
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4862
|
+
is_one_time_use?: boolean | undefined;
|
|
4823
4863
|
card_number?: (string | undefined) | null;
|
|
4824
4864
|
is_issued?: boolean | undefined;
|
|
4825
4865
|
issued_at?: (string | undefined) | null;
|
|
@@ -4936,6 +4976,8 @@ export interface Routes {
|
|
|
4936
4976
|
display_name: string;
|
|
4937
4977
|
/** Access (PIN) code for the credential. */
|
|
4938
4978
|
code?: (string | undefined) | null;
|
|
4979
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4980
|
+
is_one_time_use?: boolean | undefined;
|
|
4939
4981
|
card_number?: (string | undefined) | null;
|
|
4940
4982
|
is_issued?: boolean | undefined;
|
|
4941
4983
|
issued_at?: (string | undefined) | null;
|
|
@@ -5099,6 +5141,8 @@ export interface Routes {
|
|
|
5099
5141
|
display_name: string;
|
|
5100
5142
|
/** Access (PIN) code for the credential. */
|
|
5101
5143
|
code?: (string | undefined) | null;
|
|
5144
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5145
|
+
is_one_time_use?: boolean | undefined;
|
|
5102
5146
|
card_number?: (string | undefined) | null;
|
|
5103
5147
|
is_issued?: boolean | undefined;
|
|
5104
5148
|
issued_at?: (string | undefined) | null;
|
|
@@ -5199,6 +5243,8 @@ export interface Routes {
|
|
|
5199
5243
|
display_name: string;
|
|
5200
5244
|
/** Access (PIN) code for the credential. */
|
|
5201
5245
|
code?: (string | undefined) | null;
|
|
5246
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5247
|
+
is_one_time_use?: boolean | undefined;
|
|
5202
5248
|
card_number?: (string | undefined) | null;
|
|
5203
5249
|
is_issued?: boolean | undefined;
|
|
5204
5250
|
issued_at?: (string | undefined) | null;
|
|
@@ -5308,6 +5354,8 @@ export interface Routes {
|
|
|
5308
5354
|
display_name: string;
|
|
5309
5355
|
/** Access (PIN) code for the credential. */
|
|
5310
5356
|
code?: (string | undefined) | null;
|
|
5357
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5358
|
+
is_one_time_use?: boolean | undefined;
|
|
5311
5359
|
card_number?: (string | undefined) | null;
|
|
5312
5360
|
is_issued?: boolean | undefined;
|
|
5313
5361
|
issued_at?: (string | undefined) | null;
|
|
@@ -5412,6 +5460,8 @@ export interface Routes {
|
|
|
5412
5460
|
display_name: string;
|
|
5413
5461
|
/** Access (PIN) code for the credential. */
|
|
5414
5462
|
code?: (string | undefined) | null;
|
|
5463
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5464
|
+
is_one_time_use?: boolean | undefined;
|
|
5415
5465
|
card_number?: (string | undefined) | null;
|
|
5416
5466
|
is_issued?: boolean | undefined;
|
|
5417
5467
|
issued_at?: (string | undefined) | null;
|
|
@@ -5602,6 +5652,8 @@ export interface Routes {
|
|
|
5602
5652
|
display_name: string;
|
|
5603
5653
|
/** Access (PIN) code for the credential. */
|
|
5604
5654
|
code?: (string | undefined) | null;
|
|
5655
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5656
|
+
is_one_time_use?: boolean | undefined;
|
|
5605
5657
|
card_number?: (string | undefined) | null;
|
|
5606
5658
|
is_issued?: boolean | undefined;
|
|
5607
5659
|
issued_at?: (string | undefined) | null;
|
|
@@ -5686,6 +5738,8 @@ export interface Routes {
|
|
|
5686
5738
|
display_name: string;
|
|
5687
5739
|
/** Access (PIN) code for the credential. */
|
|
5688
5740
|
code?: (string | undefined) | null;
|
|
5741
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5742
|
+
is_one_time_use?: boolean | undefined;
|
|
5689
5743
|
card_number?: (string | undefined) | null;
|
|
5690
5744
|
is_issued?: boolean | undefined;
|
|
5691
5745
|
issued_at?: (string | undefined) | null;
|
|
@@ -5807,6 +5861,8 @@ export interface Routes {
|
|
|
5807
5861
|
display_name: string;
|
|
5808
5862
|
/** Access (PIN) code for the credential. */
|
|
5809
5863
|
code?: (string | undefined) | null;
|
|
5864
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5865
|
+
is_one_time_use?: boolean | undefined;
|
|
5810
5866
|
card_number?: (string | undefined) | null;
|
|
5811
5867
|
is_issued?: boolean | undefined;
|
|
5812
5868
|
issued_at?: (string | undefined) | null;
|
|
@@ -5891,6 +5947,8 @@ export interface Routes {
|
|
|
5891
5947
|
display_name: string;
|
|
5892
5948
|
/** Access (PIN) code for the credential. */
|
|
5893
5949
|
code?: (string | undefined) | null;
|
|
5950
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5951
|
+
is_one_time_use?: boolean | undefined;
|
|
5894
5952
|
card_number?: (string | undefined) | null;
|
|
5895
5953
|
is_issued?: boolean | undefined;
|
|
5896
5954
|
issued_at?: (string | undefined) | null;
|
|
@@ -6487,6 +6545,8 @@ export interface Routes {
|
|
|
6487
6545
|
display_name: string;
|
|
6488
6546
|
/** Access (PIN) code for the credential. */
|
|
6489
6547
|
code?: (string | undefined) | null;
|
|
6548
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6549
|
+
is_one_time_use?: boolean | undefined;
|
|
6490
6550
|
card_number?: (string | undefined) | null;
|
|
6491
6551
|
is_issued?: boolean | undefined;
|
|
6492
6552
|
issued_at?: (string | undefined) | null;
|
|
@@ -6571,6 +6631,8 @@ export interface Routes {
|
|
|
6571
6631
|
display_name: string;
|
|
6572
6632
|
/** Access (PIN) code for the credential. */
|
|
6573
6633
|
code?: (string | undefined) | null;
|
|
6634
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6635
|
+
is_one_time_use?: boolean | undefined;
|
|
6574
6636
|
card_number?: (string | undefined) | null;
|
|
6575
6637
|
is_issued?: boolean | undefined;
|
|
6576
6638
|
issued_at?: (string | undefined) | null;
|
|
@@ -6692,6 +6754,8 @@ export interface Routes {
|
|
|
6692
6754
|
display_name: string;
|
|
6693
6755
|
/** Access (PIN) code for the credential. */
|
|
6694
6756
|
code?: (string | undefined) | null;
|
|
6757
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6758
|
+
is_one_time_use?: boolean | undefined;
|
|
6695
6759
|
card_number?: (string | undefined) | null;
|
|
6696
6760
|
is_issued?: boolean | undefined;
|
|
6697
6761
|
issued_at?: (string | undefined) | null;
|
|
@@ -6776,6 +6840,8 @@ export interface Routes {
|
|
|
6776
6840
|
display_name: string;
|
|
6777
6841
|
/** Access (PIN) code for the credential. */
|
|
6778
6842
|
code?: (string | undefined) | null;
|
|
6843
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6844
|
+
is_one_time_use?: boolean | undefined;
|
|
6779
6845
|
card_number?: (string | undefined) | null;
|
|
6780
6846
|
is_issued?: boolean | undefined;
|
|
6781
6847
|
issued_at?: (string | undefined) | null;
|
|
@@ -7372,6 +7438,8 @@ export interface Routes {
|
|
|
7372
7438
|
display_name: string;
|
|
7373
7439
|
/** Access (PIN) code for the credential. */
|
|
7374
7440
|
code?: (string | undefined) | null;
|
|
7441
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
7442
|
+
is_one_time_use?: boolean | undefined;
|
|
7375
7443
|
card_number?: (string | undefined) | null;
|
|
7376
7444
|
is_issued?: boolean | undefined;
|
|
7377
7445
|
issued_at?: (string | undefined) | null;
|
|
@@ -8615,6 +8683,8 @@ export interface Routes {
|
|
|
8615
8683
|
display_name: string;
|
|
8616
8684
|
/** Access (PIN) code for the credential. */
|
|
8617
8685
|
code?: (string | undefined) | null;
|
|
8686
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8687
|
+
is_one_time_use?: boolean | undefined;
|
|
8618
8688
|
card_number?: (string | undefined) | null;
|
|
8619
8689
|
is_issued?: boolean | undefined;
|
|
8620
8690
|
issued_at?: (string | undefined) | null;
|
|
@@ -8699,6 +8769,8 @@ export interface Routes {
|
|
|
8699
8769
|
display_name: string;
|
|
8700
8770
|
/** Access (PIN) code for the credential. */
|
|
8701
8771
|
code?: (string | undefined) | null;
|
|
8772
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8773
|
+
is_one_time_use?: boolean | undefined;
|
|
8702
8774
|
card_number?: (string | undefined) | null;
|
|
8703
8775
|
is_issued?: boolean | undefined;
|
|
8704
8776
|
issued_at?: (string | undefined) | null;
|
|
@@ -8820,6 +8892,8 @@ export interface Routes {
|
|
|
8820
8892
|
display_name: string;
|
|
8821
8893
|
/** Access (PIN) code for the credential. */
|
|
8822
8894
|
code?: (string | undefined) | null;
|
|
8895
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8896
|
+
is_one_time_use?: boolean | undefined;
|
|
8823
8897
|
card_number?: (string | undefined) | null;
|
|
8824
8898
|
is_issued?: boolean | undefined;
|
|
8825
8899
|
issued_at?: (string | undefined) | null;
|
|
@@ -8904,6 +8978,8 @@ export interface Routes {
|
|
|
8904
8978
|
display_name: string;
|
|
8905
8979
|
/** Access (PIN) code for the credential. */
|
|
8906
8980
|
code?: (string | undefined) | null;
|
|
8981
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8982
|
+
is_one_time_use?: boolean | undefined;
|
|
8907
8983
|
card_number?: (string | undefined) | null;
|
|
8908
8984
|
is_issued?: boolean | undefined;
|
|
8909
8985
|
issued_at?: (string | undefined) | null;
|
|
@@ -9455,6 +9531,8 @@ export interface Routes {
|
|
|
9455
9531
|
display_name: string;
|
|
9456
9532
|
/** Access (PIN) code for the credential. */
|
|
9457
9533
|
code?: (string | undefined) | null;
|
|
9534
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9535
|
+
is_one_time_use?: boolean | undefined;
|
|
9458
9536
|
card_number?: (string | undefined) | null;
|
|
9459
9537
|
is_issued?: boolean | undefined;
|
|
9460
9538
|
issued_at?: (string | undefined) | null;
|
|
@@ -9539,6 +9617,8 @@ export interface Routes {
|
|
|
9539
9617
|
display_name: string;
|
|
9540
9618
|
/** Access (PIN) code for the credential. */
|
|
9541
9619
|
code?: (string | undefined) | null;
|
|
9620
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9621
|
+
is_one_time_use?: boolean | undefined;
|
|
9542
9622
|
card_number?: (string | undefined) | null;
|
|
9543
9623
|
is_issued?: boolean | undefined;
|
|
9544
9624
|
issued_at?: (string | undefined) | null;
|
|
@@ -9660,6 +9740,8 @@ export interface Routes {
|
|
|
9660
9740
|
display_name: string;
|
|
9661
9741
|
/** Access (PIN) code for the credential. */
|
|
9662
9742
|
code?: (string | undefined) | null;
|
|
9743
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9744
|
+
is_one_time_use?: boolean | undefined;
|
|
9663
9745
|
card_number?: (string | undefined) | null;
|
|
9664
9746
|
is_issued?: boolean | undefined;
|
|
9665
9747
|
issued_at?: (string | undefined) | null;
|
|
@@ -9744,6 +9826,8 @@ export interface Routes {
|
|
|
9744
9826
|
display_name: string;
|
|
9745
9827
|
/** Access (PIN) code for the credential. */
|
|
9746
9828
|
code?: (string | undefined) | null;
|
|
9829
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9830
|
+
is_one_time_use?: boolean | undefined;
|
|
9747
9831
|
card_number?: (string | undefined) | null;
|
|
9748
9832
|
is_issued?: boolean | undefined;
|
|
9749
9833
|
issued_at?: (string | undefined) | null;
|
|
@@ -14326,6 +14410,8 @@ export interface Routes {
|
|
|
14326
14410
|
display_name: string;
|
|
14327
14411
|
/** Access (PIN) code for the credential. */
|
|
14328
14412
|
code?: (string | undefined) | null;
|
|
14413
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14414
|
+
is_one_time_use?: boolean | undefined;
|
|
14329
14415
|
card_number?: (string | undefined) | null;
|
|
14330
14416
|
is_issued?: boolean | undefined;
|
|
14331
14417
|
issued_at?: (string | undefined) | null;
|
|
@@ -14410,6 +14496,8 @@ export interface Routes {
|
|
|
14410
14496
|
display_name: string;
|
|
14411
14497
|
/** Access (PIN) code for the credential. */
|
|
14412
14498
|
code?: (string | undefined) | null;
|
|
14499
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14500
|
+
is_one_time_use?: boolean | undefined;
|
|
14413
14501
|
card_number?: (string | undefined) | null;
|
|
14414
14502
|
is_issued?: boolean | undefined;
|
|
14415
14503
|
issued_at?: (string | undefined) | null;
|
|
@@ -14531,6 +14619,8 @@ export interface Routes {
|
|
|
14531
14619
|
display_name: string;
|
|
14532
14620
|
/** Access (PIN) code for the credential. */
|
|
14533
14621
|
code?: (string | undefined) | null;
|
|
14622
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14623
|
+
is_one_time_use?: boolean | undefined;
|
|
14534
14624
|
card_number?: (string | undefined) | null;
|
|
14535
14625
|
is_issued?: boolean | undefined;
|
|
14536
14626
|
issued_at?: (string | undefined) | null;
|
|
@@ -14615,6 +14705,8 @@ export interface Routes {
|
|
|
14615
14705
|
display_name: string;
|
|
14616
14706
|
/** Access (PIN) code for the credential. */
|
|
14617
14707
|
code?: (string | undefined) | null;
|
|
14708
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14709
|
+
is_one_time_use?: boolean | undefined;
|
|
14618
14710
|
card_number?: (string | undefined) | null;
|
|
14619
14711
|
is_issued?: boolean | undefined;
|
|
14620
14712
|
issued_at?: (string | undefined) | null;
|
|
@@ -15167,6 +15259,8 @@ export interface Routes {
|
|
|
15167
15259
|
display_name: string;
|
|
15168
15260
|
/** Access (PIN) code for the credential. */
|
|
15169
15261
|
code?: (string | undefined) | null;
|
|
15262
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15263
|
+
is_one_time_use?: boolean | undefined;
|
|
15170
15264
|
card_number?: (string | undefined) | null;
|
|
15171
15265
|
is_issued?: boolean | undefined;
|
|
15172
15266
|
issued_at?: (string | undefined) | null;
|
|
@@ -15251,6 +15345,8 @@ export interface Routes {
|
|
|
15251
15345
|
display_name: string;
|
|
15252
15346
|
/** Access (PIN) code for the credential. */
|
|
15253
15347
|
code?: (string | undefined) | null;
|
|
15348
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15349
|
+
is_one_time_use?: boolean | undefined;
|
|
15254
15350
|
card_number?: (string | undefined) | null;
|
|
15255
15351
|
is_issued?: boolean | undefined;
|
|
15256
15352
|
issued_at?: (string | undefined) | null;
|
|
@@ -15372,6 +15468,8 @@ export interface Routes {
|
|
|
15372
15468
|
display_name: string;
|
|
15373
15469
|
/** Access (PIN) code for the credential. */
|
|
15374
15470
|
code?: (string | undefined) | null;
|
|
15471
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15472
|
+
is_one_time_use?: boolean | undefined;
|
|
15375
15473
|
card_number?: (string | undefined) | null;
|
|
15376
15474
|
is_issued?: boolean | undefined;
|
|
15377
15475
|
issued_at?: (string | undefined) | null;
|
|
@@ -15456,6 +15554,8 @@ export interface Routes {
|
|
|
15456
15554
|
display_name: string;
|
|
15457
15555
|
/** Access (PIN) code for the credential. */
|
|
15458
15556
|
code?: (string | undefined) | null;
|
|
15557
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15558
|
+
is_one_time_use?: boolean | undefined;
|
|
15459
15559
|
card_number?: (string | undefined) | null;
|
|
15460
15560
|
is_issued?: boolean | undefined;
|
|
15461
15561
|
issued_at?: (string | undefined) | null;
|
|
@@ -17110,6 +17210,8 @@ export interface Routes {
|
|
|
17110
17210
|
display_name: string;
|
|
17111
17211
|
/** Access (PIN) code for the credential. */
|
|
17112
17212
|
code?: (string | undefined) | null;
|
|
17213
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17214
|
+
is_one_time_use?: boolean | undefined;
|
|
17113
17215
|
card_number?: (string | undefined) | null;
|
|
17114
17216
|
is_issued?: boolean | undefined;
|
|
17115
17217
|
issued_at?: (string | undefined) | null;
|
|
@@ -17194,6 +17296,8 @@ export interface Routes {
|
|
|
17194
17296
|
display_name: string;
|
|
17195
17297
|
/** Access (PIN) code for the credential. */
|
|
17196
17298
|
code?: (string | undefined) | null;
|
|
17299
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17300
|
+
is_one_time_use?: boolean | undefined;
|
|
17197
17301
|
card_number?: (string | undefined) | null;
|
|
17198
17302
|
is_issued?: boolean | undefined;
|
|
17199
17303
|
issued_at?: (string | undefined) | null;
|
|
@@ -17315,6 +17419,8 @@ export interface Routes {
|
|
|
17315
17419
|
display_name: string;
|
|
17316
17420
|
/** Access (PIN) code for the credential. */
|
|
17317
17421
|
code?: (string | undefined) | null;
|
|
17422
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17423
|
+
is_one_time_use?: boolean | undefined;
|
|
17318
17424
|
card_number?: (string | undefined) | null;
|
|
17319
17425
|
is_issued?: boolean | undefined;
|
|
17320
17426
|
issued_at?: (string | undefined) | null;
|
|
@@ -17399,6 +17505,8 @@ export interface Routes {
|
|
|
17399
17505
|
display_name: string;
|
|
17400
17506
|
/** Access (PIN) code for the credential. */
|
|
17401
17507
|
code?: (string | undefined) | null;
|
|
17508
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17509
|
+
is_one_time_use?: boolean | undefined;
|
|
17402
17510
|
card_number?: (string | undefined) | null;
|
|
17403
17511
|
is_issued?: boolean | undefined;
|
|
17404
17512
|
issued_at?: (string | undefined) | null;
|
|
@@ -17961,6 +18069,8 @@ export interface Routes {
|
|
|
17961
18069
|
display_name: string;
|
|
17962
18070
|
/** Access (PIN) code for the credential. */
|
|
17963
18071
|
code?: (string | undefined) | null;
|
|
18072
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18073
|
+
is_one_time_use?: boolean | undefined;
|
|
17964
18074
|
card_number?: (string | undefined) | null;
|
|
17965
18075
|
is_issued?: boolean | undefined;
|
|
17966
18076
|
issued_at?: (string | undefined) | null;
|
|
@@ -18045,6 +18155,8 @@ export interface Routes {
|
|
|
18045
18155
|
display_name: string;
|
|
18046
18156
|
/** Access (PIN) code for the credential. */
|
|
18047
18157
|
code?: (string | undefined) | null;
|
|
18158
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18159
|
+
is_one_time_use?: boolean | undefined;
|
|
18048
18160
|
card_number?: (string | undefined) | null;
|
|
18049
18161
|
is_issued?: boolean | undefined;
|
|
18050
18162
|
issued_at?: (string | undefined) | null;
|
|
@@ -18166,6 +18278,8 @@ export interface Routes {
|
|
|
18166
18278
|
display_name: string;
|
|
18167
18279
|
/** Access (PIN) code for the credential. */
|
|
18168
18280
|
code?: (string | undefined) | null;
|
|
18281
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18282
|
+
is_one_time_use?: boolean | undefined;
|
|
18169
18283
|
card_number?: (string | undefined) | null;
|
|
18170
18284
|
is_issued?: boolean | undefined;
|
|
18171
18285
|
issued_at?: (string | undefined) | null;
|
|
@@ -18250,6 +18364,8 @@ export interface Routes {
|
|
|
18250
18364
|
display_name: string;
|
|
18251
18365
|
/** Access (PIN) code for the credential. */
|
|
18252
18366
|
code?: (string | undefined) | null;
|
|
18367
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18368
|
+
is_one_time_use?: boolean | undefined;
|
|
18253
18369
|
card_number?: (string | undefined) | null;
|
|
18254
18370
|
is_issued?: boolean | undefined;
|
|
18255
18371
|
issued_at?: (string | undefined) | null;
|
|
@@ -18851,6 +18967,8 @@ export interface Routes {
|
|
|
18851
18967
|
display_name: string;
|
|
18852
18968
|
/** Access (PIN) code for the credential. */
|
|
18853
18969
|
code?: (string | undefined) | null;
|
|
18970
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18971
|
+
is_one_time_use?: boolean | undefined;
|
|
18854
18972
|
card_number?: (string | undefined) | null;
|
|
18855
18973
|
is_issued?: boolean | undefined;
|
|
18856
18974
|
issued_at?: (string | undefined) | null;
|
|
@@ -18935,6 +19053,8 @@ export interface Routes {
|
|
|
18935
19053
|
display_name: string;
|
|
18936
19054
|
/** Access (PIN) code for the credential. */
|
|
18937
19055
|
code?: (string | undefined) | null;
|
|
19056
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19057
|
+
is_one_time_use?: boolean | undefined;
|
|
18938
19058
|
card_number?: (string | undefined) | null;
|
|
18939
19059
|
is_issued?: boolean | undefined;
|
|
18940
19060
|
issued_at?: (string | undefined) | null;
|
|
@@ -19056,6 +19176,8 @@ export interface Routes {
|
|
|
19056
19176
|
display_name: string;
|
|
19057
19177
|
/** Access (PIN) code for the credential. */
|
|
19058
19178
|
code?: (string | undefined) | null;
|
|
19179
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19180
|
+
is_one_time_use?: boolean | undefined;
|
|
19059
19181
|
card_number?: (string | undefined) | null;
|
|
19060
19182
|
is_issued?: boolean | undefined;
|
|
19061
19183
|
issued_at?: (string | undefined) | null;
|
|
@@ -19140,6 +19262,8 @@ export interface Routes {
|
|
|
19140
19262
|
display_name: string;
|
|
19141
19263
|
/** Access (PIN) code for the credential. */
|
|
19142
19264
|
code?: (string | undefined) | null;
|
|
19265
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19266
|
+
is_one_time_use?: boolean | undefined;
|
|
19143
19267
|
card_number?: (string | undefined) | null;
|
|
19144
19268
|
is_issued?: boolean | undefined;
|
|
19145
19269
|
issued_at?: (string | undefined) | null;
|
|
@@ -19876,6 +20000,8 @@ export interface Routes {
|
|
|
19876
20000
|
display_name: string;
|
|
19877
20001
|
/** Access (PIN) code for the credential. */
|
|
19878
20002
|
code?: (string | undefined) | null;
|
|
20003
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20004
|
+
is_one_time_use?: boolean | undefined;
|
|
19879
20005
|
card_number?: (string | undefined) | null;
|
|
19880
20006
|
is_issued?: boolean | undefined;
|
|
19881
20007
|
issued_at?: (string | undefined) | null;
|
|
@@ -19960,6 +20086,8 @@ export interface Routes {
|
|
|
19960
20086
|
display_name: string;
|
|
19961
20087
|
/** Access (PIN) code for the credential. */
|
|
19962
20088
|
code?: (string | undefined) | null;
|
|
20089
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20090
|
+
is_one_time_use?: boolean | undefined;
|
|
19963
20091
|
card_number?: (string | undefined) | null;
|
|
19964
20092
|
is_issued?: boolean | undefined;
|
|
19965
20093
|
issued_at?: (string | undefined) | null;
|
|
@@ -20081,6 +20209,8 @@ export interface Routes {
|
|
|
20081
20209
|
display_name: string;
|
|
20082
20210
|
/** Access (PIN) code for the credential. */
|
|
20083
20211
|
code?: (string | undefined) | null;
|
|
20212
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20213
|
+
is_one_time_use?: boolean | undefined;
|
|
20084
20214
|
card_number?: (string | undefined) | null;
|
|
20085
20215
|
is_issued?: boolean | undefined;
|
|
20086
20216
|
issued_at?: (string | undefined) | null;
|
|
@@ -20165,6 +20295,8 @@ export interface Routes {
|
|
|
20165
20295
|
display_name: string;
|
|
20166
20296
|
/** Access (PIN) code for the credential. */
|
|
20167
20297
|
code?: (string | undefined) | null;
|
|
20298
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20299
|
+
is_one_time_use?: boolean | undefined;
|
|
20168
20300
|
card_number?: (string | undefined) | null;
|
|
20169
20301
|
is_issued?: boolean | undefined;
|
|
20170
20302
|
issued_at?: (string | undefined) | null;
|
|
@@ -20723,6 +20855,8 @@ export interface Routes {
|
|
|
20723
20855
|
display_name: string;
|
|
20724
20856
|
/** Access (PIN) code for the credential. */
|
|
20725
20857
|
code?: (string | undefined) | null;
|
|
20858
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20859
|
+
is_one_time_use?: boolean | undefined;
|
|
20726
20860
|
card_number?: (string | undefined) | null;
|
|
20727
20861
|
is_issued?: boolean | undefined;
|
|
20728
20862
|
issued_at?: (string | undefined) | null;
|
|
@@ -20807,6 +20941,8 @@ export interface Routes {
|
|
|
20807
20941
|
display_name: string;
|
|
20808
20942
|
/** Access (PIN) code for the credential. */
|
|
20809
20943
|
code?: (string | undefined) | null;
|
|
20944
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20945
|
+
is_one_time_use?: boolean | undefined;
|
|
20810
20946
|
card_number?: (string | undefined) | null;
|
|
20811
20947
|
is_issued?: boolean | undefined;
|
|
20812
20948
|
issued_at?: (string | undefined) | null;
|
|
@@ -20928,6 +21064,8 @@ export interface Routes {
|
|
|
20928
21064
|
display_name: string;
|
|
20929
21065
|
/** Access (PIN) code for the credential. */
|
|
20930
21066
|
code?: (string | undefined) | null;
|
|
21067
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21068
|
+
is_one_time_use?: boolean | undefined;
|
|
20931
21069
|
card_number?: (string | undefined) | null;
|
|
20932
21070
|
is_issued?: boolean | undefined;
|
|
20933
21071
|
issued_at?: (string | undefined) | null;
|
|
@@ -21012,6 +21150,8 @@ export interface Routes {
|
|
|
21012
21150
|
display_name: string;
|
|
21013
21151
|
/** Access (PIN) code for the credential. */
|
|
21014
21152
|
code?: (string | undefined) | null;
|
|
21153
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21154
|
+
is_one_time_use?: boolean | undefined;
|
|
21015
21155
|
card_number?: (string | undefined) | null;
|
|
21016
21156
|
is_issued?: boolean | undefined;
|
|
21017
21157
|
issued_at?: (string | undefined) | null;
|
|
@@ -22141,6 +22281,8 @@ export interface Routes {
|
|
|
22141
22281
|
display_name: string;
|
|
22142
22282
|
/** Access (PIN) code for the credential. */
|
|
22143
22283
|
code?: (string | undefined) | null;
|
|
22284
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22285
|
+
is_one_time_use?: boolean | undefined;
|
|
22144
22286
|
card_number?: (string | undefined) | null;
|
|
22145
22287
|
is_issued?: boolean | undefined;
|
|
22146
22288
|
issued_at?: (string | undefined) | null;
|
|
@@ -22225,6 +22367,8 @@ export interface Routes {
|
|
|
22225
22367
|
display_name: string;
|
|
22226
22368
|
/** Access (PIN) code for the credential. */
|
|
22227
22369
|
code?: (string | undefined) | null;
|
|
22370
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22371
|
+
is_one_time_use?: boolean | undefined;
|
|
22228
22372
|
card_number?: (string | undefined) | null;
|
|
22229
22373
|
is_issued?: boolean | undefined;
|
|
22230
22374
|
issued_at?: (string | undefined) | null;
|
|
@@ -22346,6 +22490,8 @@ export interface Routes {
|
|
|
22346
22490
|
display_name: string;
|
|
22347
22491
|
/** Access (PIN) code for the credential. */
|
|
22348
22492
|
code?: (string | undefined) | null;
|
|
22493
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22494
|
+
is_one_time_use?: boolean | undefined;
|
|
22349
22495
|
card_number?: (string | undefined) | null;
|
|
22350
22496
|
is_issued?: boolean | undefined;
|
|
22351
22497
|
issued_at?: (string | undefined) | null;
|
|
@@ -22430,6 +22576,8 @@ export interface Routes {
|
|
|
22430
22576
|
display_name: string;
|
|
22431
22577
|
/** Access (PIN) code for the credential. */
|
|
22432
22578
|
code?: (string | undefined) | null;
|
|
22579
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22580
|
+
is_one_time_use?: boolean | undefined;
|
|
22433
22581
|
card_number?: (string | undefined) | null;
|
|
22434
22582
|
is_issued?: boolean | undefined;
|
|
22435
22583
|
issued_at?: (string | undefined) | null;
|
|
@@ -22992,6 +23140,8 @@ export interface Routes {
|
|
|
22992
23140
|
display_name: string;
|
|
22993
23141
|
/** Access (PIN) code for the credential. */
|
|
22994
23142
|
code?: (string | undefined) | null;
|
|
23143
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23144
|
+
is_one_time_use?: boolean | undefined;
|
|
22995
23145
|
card_number?: (string | undefined) | null;
|
|
22996
23146
|
is_issued?: boolean | undefined;
|
|
22997
23147
|
issued_at?: (string | undefined) | null;
|
|
@@ -23076,6 +23226,8 @@ export interface Routes {
|
|
|
23076
23226
|
display_name: string;
|
|
23077
23227
|
/** Access (PIN) code for the credential. */
|
|
23078
23228
|
code?: (string | undefined) | null;
|
|
23229
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23230
|
+
is_one_time_use?: boolean | undefined;
|
|
23079
23231
|
card_number?: (string | undefined) | null;
|
|
23080
23232
|
is_issued?: boolean | undefined;
|
|
23081
23233
|
issued_at?: (string | undefined) | null;
|
|
@@ -23197,6 +23349,8 @@ export interface Routes {
|
|
|
23197
23349
|
display_name: string;
|
|
23198
23350
|
/** Access (PIN) code for the credential. */
|
|
23199
23351
|
code?: (string | undefined) | null;
|
|
23352
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23353
|
+
is_one_time_use?: boolean | undefined;
|
|
23200
23354
|
card_number?: (string | undefined) | null;
|
|
23201
23355
|
is_issued?: boolean | undefined;
|
|
23202
23356
|
issued_at?: (string | undefined) | null;
|
|
@@ -23281,6 +23435,8 @@ export interface Routes {
|
|
|
23281
23435
|
display_name: string;
|
|
23282
23436
|
/** Access (PIN) code for the credential. */
|
|
23283
23437
|
code?: (string | undefined) | null;
|
|
23438
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23439
|
+
is_one_time_use?: boolean | undefined;
|
|
23284
23440
|
card_number?: (string | undefined) | null;
|
|
23285
23441
|
is_issued?: boolean | undefined;
|
|
23286
23442
|
issued_at?: (string | undefined) | null;
|
|
@@ -24898,6 +25054,8 @@ export interface Routes {
|
|
|
24898
25054
|
display_name: string;
|
|
24899
25055
|
/** Access (PIN) code for the credential. */
|
|
24900
25056
|
code?: (string | undefined) | null;
|
|
25057
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25058
|
+
is_one_time_use?: boolean | undefined;
|
|
24901
25059
|
card_number?: (string | undefined) | null;
|
|
24902
25060
|
is_issued?: boolean | undefined;
|
|
24903
25061
|
issued_at?: (string | undefined) | null;
|
|
@@ -24982,6 +25140,8 @@ export interface Routes {
|
|
|
24982
25140
|
display_name: string;
|
|
24983
25141
|
/** Access (PIN) code for the credential. */
|
|
24984
25142
|
code?: (string | undefined) | null;
|
|
25143
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25144
|
+
is_one_time_use?: boolean | undefined;
|
|
24985
25145
|
card_number?: (string | undefined) | null;
|
|
24986
25146
|
is_issued?: boolean | undefined;
|
|
24987
25147
|
issued_at?: (string | undefined) | null;
|
|
@@ -25103,6 +25263,8 @@ export interface Routes {
|
|
|
25103
25263
|
display_name: string;
|
|
25104
25264
|
/** Access (PIN) code for the credential. */
|
|
25105
25265
|
code?: (string | undefined) | null;
|
|
25266
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25267
|
+
is_one_time_use?: boolean | undefined;
|
|
25106
25268
|
card_number?: (string | undefined) | null;
|
|
25107
25269
|
is_issued?: boolean | undefined;
|
|
25108
25270
|
issued_at?: (string | undefined) | null;
|
|
@@ -25187,6 +25349,8 @@ export interface Routes {
|
|
|
25187
25349
|
display_name: string;
|
|
25188
25350
|
/** Access (PIN) code for the credential. */
|
|
25189
25351
|
code?: (string | undefined) | null;
|
|
25352
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25353
|
+
is_one_time_use?: boolean | undefined;
|
|
25190
25354
|
card_number?: (string | undefined) | null;
|
|
25191
25355
|
is_issued?: boolean | undefined;
|
|
25192
25356
|
issued_at?: (string | undefined) | null;
|
|
@@ -25914,6 +26078,8 @@ export interface Routes {
|
|
|
25914
26078
|
display_name: string;
|
|
25915
26079
|
/** Access (PIN) code for the credential. */
|
|
25916
26080
|
code?: (string | undefined) | null;
|
|
26081
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26082
|
+
is_one_time_use?: boolean | undefined;
|
|
25917
26083
|
card_number?: (string | undefined) | null;
|
|
25918
26084
|
is_issued?: boolean | undefined;
|
|
25919
26085
|
issued_at?: (string | undefined) | null;
|
|
@@ -25998,6 +26164,8 @@ export interface Routes {
|
|
|
25998
26164
|
display_name: string;
|
|
25999
26165
|
/** Access (PIN) code for the credential. */
|
|
26000
26166
|
code?: (string | undefined) | null;
|
|
26167
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26168
|
+
is_one_time_use?: boolean | undefined;
|
|
26001
26169
|
card_number?: (string | undefined) | null;
|
|
26002
26170
|
is_issued?: boolean | undefined;
|
|
26003
26171
|
issued_at?: (string | undefined) | null;
|
|
@@ -26119,6 +26287,8 @@ export interface Routes {
|
|
|
26119
26287
|
display_name: string;
|
|
26120
26288
|
/** Access (PIN) code for the credential. */
|
|
26121
26289
|
code?: (string | undefined) | null;
|
|
26290
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26291
|
+
is_one_time_use?: boolean | undefined;
|
|
26122
26292
|
card_number?: (string | undefined) | null;
|
|
26123
26293
|
is_issued?: boolean | undefined;
|
|
26124
26294
|
issued_at?: (string | undefined) | null;
|
|
@@ -26203,6 +26373,8 @@ export interface Routes {
|
|
|
26203
26373
|
display_name: string;
|
|
26204
26374
|
/** Access (PIN) code for the credential. */
|
|
26205
26375
|
code?: (string | undefined) | null;
|
|
26376
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26377
|
+
is_one_time_use?: boolean | undefined;
|
|
26206
26378
|
card_number?: (string | undefined) | null;
|
|
26207
26379
|
is_issued?: boolean | undefined;
|
|
26208
26380
|
issued_at?: (string | undefined) | null;
|
|
@@ -26784,6 +26956,8 @@ export interface Routes {
|
|
|
26784
26956
|
display_name: string;
|
|
26785
26957
|
/** Access (PIN) code for the credential. */
|
|
26786
26958
|
code?: (string | undefined) | null;
|
|
26959
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26960
|
+
is_one_time_use?: boolean | undefined;
|
|
26787
26961
|
card_number?: (string | undefined) | null;
|
|
26788
26962
|
is_issued?: boolean | undefined;
|
|
26789
26963
|
issued_at?: (string | undefined) | null;
|
|
@@ -26868,6 +27042,8 @@ export interface Routes {
|
|
|
26868
27042
|
display_name: string;
|
|
26869
27043
|
/** Access (PIN) code for the credential. */
|
|
26870
27044
|
code?: (string | undefined) | null;
|
|
27045
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27046
|
+
is_one_time_use?: boolean | undefined;
|
|
26871
27047
|
card_number?: (string | undefined) | null;
|
|
26872
27048
|
is_issued?: boolean | undefined;
|
|
26873
27049
|
issued_at?: (string | undefined) | null;
|
|
@@ -26989,6 +27165,8 @@ export interface Routes {
|
|
|
26989
27165
|
display_name: string;
|
|
26990
27166
|
/** Access (PIN) code for the credential. */
|
|
26991
27167
|
code?: (string | undefined) | null;
|
|
27168
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27169
|
+
is_one_time_use?: boolean | undefined;
|
|
26992
27170
|
card_number?: (string | undefined) | null;
|
|
26993
27171
|
is_issued?: boolean | undefined;
|
|
26994
27172
|
issued_at?: (string | undefined) | null;
|
|
@@ -27073,6 +27251,8 @@ export interface Routes {
|
|
|
27073
27251
|
display_name: string;
|
|
27074
27252
|
/** Access (PIN) code for the credential. */
|
|
27075
27253
|
code?: (string | undefined) | null;
|
|
27254
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27255
|
+
is_one_time_use?: boolean | undefined;
|
|
27076
27256
|
card_number?: (string | undefined) | null;
|
|
27077
27257
|
is_issued?: boolean | undefined;
|
|
27078
27258
|
issued_at?: (string | undefined) | null;
|
|
@@ -29351,6 +29531,8 @@ export interface Routes {
|
|
|
29351
29531
|
display_name: string;
|
|
29352
29532
|
/** Access (PIN) code for the credential. */
|
|
29353
29533
|
code?: (string | undefined) | null;
|
|
29534
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29535
|
+
is_one_time_use?: boolean | undefined;
|
|
29354
29536
|
card_number?: (string | undefined) | null;
|
|
29355
29537
|
is_issued?: boolean | undefined;
|
|
29356
29538
|
issued_at?: (string | undefined) | null;
|
|
@@ -29435,6 +29617,8 @@ export interface Routes {
|
|
|
29435
29617
|
display_name: string;
|
|
29436
29618
|
/** Access (PIN) code for the credential. */
|
|
29437
29619
|
code?: (string | undefined) | null;
|
|
29620
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29621
|
+
is_one_time_use?: boolean | undefined;
|
|
29438
29622
|
card_number?: (string | undefined) | null;
|
|
29439
29623
|
is_issued?: boolean | undefined;
|
|
29440
29624
|
issued_at?: (string | undefined) | null;
|
|
@@ -29556,6 +29740,8 @@ export interface Routes {
|
|
|
29556
29740
|
display_name: string;
|
|
29557
29741
|
/** Access (PIN) code for the credential. */
|
|
29558
29742
|
code?: (string | undefined) | null;
|
|
29743
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29744
|
+
is_one_time_use?: boolean | undefined;
|
|
29559
29745
|
card_number?: (string | undefined) | null;
|
|
29560
29746
|
is_issued?: boolean | undefined;
|
|
29561
29747
|
issued_at?: (string | undefined) | null;
|
|
@@ -29640,6 +29826,8 @@ export interface Routes {
|
|
|
29640
29826
|
display_name: string;
|
|
29641
29827
|
/** Access (PIN) code for the credential. */
|
|
29642
29828
|
code?: (string | undefined) | null;
|
|
29829
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29830
|
+
is_one_time_use?: boolean | undefined;
|
|
29643
29831
|
card_number?: (string | undefined) | null;
|
|
29644
29832
|
is_issued?: boolean | undefined;
|
|
29645
29833
|
issued_at?: (string | undefined) | null;
|