@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
|
@@ -141,6 +141,8 @@ export interface Routes {
|
|
|
141
141
|
display_name: string
|
|
142
142
|
/** Access (PIN) code for the credential. */
|
|
143
143
|
code?: (string | undefined) | null
|
|
144
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
145
|
+
is_one_time_use?: boolean | undefined
|
|
144
146
|
card_number?: (string | undefined) | null
|
|
145
147
|
is_issued?: boolean | undefined
|
|
146
148
|
issued_at?: (string | undefined) | null
|
|
@@ -245,6 +247,8 @@ export interface Routes {
|
|
|
245
247
|
display_name: string
|
|
246
248
|
/** Access (PIN) code for the credential. */
|
|
247
249
|
code?: (string | undefined) | null
|
|
250
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
251
|
+
is_one_time_use?: boolean | undefined
|
|
248
252
|
card_number?: (string | undefined) | null
|
|
249
253
|
is_issued?: boolean | undefined
|
|
250
254
|
issued_at?: (string | undefined) | null
|
|
@@ -394,6 +398,8 @@ export interface Routes {
|
|
|
394
398
|
display_name: string
|
|
395
399
|
/** Access (PIN) code for the credential. */
|
|
396
400
|
code?: (string | undefined) | null
|
|
401
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
402
|
+
is_one_time_use?: boolean | undefined
|
|
397
403
|
card_number?: (string | undefined) | null
|
|
398
404
|
is_issued?: boolean | undefined
|
|
399
405
|
issued_at?: (string | undefined) | null
|
|
@@ -498,6 +504,8 @@ export interface Routes {
|
|
|
498
504
|
display_name: string
|
|
499
505
|
/** Access (PIN) code for the credential. */
|
|
500
506
|
code?: (string | undefined) | null
|
|
507
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
508
|
+
is_one_time_use?: boolean | undefined
|
|
501
509
|
card_number?: (string | undefined) | null
|
|
502
510
|
is_issued?: boolean | undefined
|
|
503
511
|
issued_at?: (string | undefined) | null
|
|
@@ -1286,6 +1294,8 @@ export interface Routes {
|
|
|
1286
1294
|
display_name: string
|
|
1287
1295
|
/** Access (PIN) code for the credential. */
|
|
1288
1296
|
code?: (string | undefined) | null
|
|
1297
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1298
|
+
is_one_time_use?: boolean | undefined
|
|
1289
1299
|
card_number?: (string | undefined) | null
|
|
1290
1300
|
is_issued?: boolean | undefined
|
|
1291
1301
|
issued_at?: (string | undefined) | null
|
|
@@ -1390,6 +1400,8 @@ export interface Routes {
|
|
|
1390
1400
|
display_name: string
|
|
1391
1401
|
/** Access (PIN) code for the credential. */
|
|
1392
1402
|
code?: (string | undefined) | null
|
|
1403
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1404
|
+
is_one_time_use?: boolean | undefined
|
|
1393
1405
|
card_number?: (string | undefined) | null
|
|
1394
1406
|
is_issued?: boolean | undefined
|
|
1395
1407
|
issued_at?: (string | undefined) | null
|
|
@@ -1539,6 +1551,8 @@ export interface Routes {
|
|
|
1539
1551
|
display_name: string
|
|
1540
1552
|
/** Access (PIN) code for the credential. */
|
|
1541
1553
|
code?: (string | undefined) | null
|
|
1554
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1555
|
+
is_one_time_use?: boolean | undefined
|
|
1542
1556
|
card_number?: (string | undefined) | null
|
|
1543
1557
|
is_issued?: boolean | undefined
|
|
1544
1558
|
issued_at?: (string | undefined) | null
|
|
@@ -1643,6 +1657,8 @@ export interface Routes {
|
|
|
1643
1657
|
display_name: string
|
|
1644
1658
|
/** Access (PIN) code for the credential. */
|
|
1645
1659
|
code?: (string | undefined) | null
|
|
1660
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1661
|
+
is_one_time_use?: boolean | undefined
|
|
1646
1662
|
card_number?: (string | undefined) | null
|
|
1647
1663
|
is_issued?: boolean | undefined
|
|
1648
1664
|
issued_at?: (string | undefined) | null
|
|
@@ -2661,6 +2677,8 @@ export interface Routes {
|
|
|
2661
2677
|
display_name: string
|
|
2662
2678
|
/** Access (PIN) code for the credential. */
|
|
2663
2679
|
code?: (string | undefined) | null
|
|
2680
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2681
|
+
is_one_time_use?: boolean | undefined
|
|
2664
2682
|
card_number?: (string | undefined) | null
|
|
2665
2683
|
is_issued?: boolean | undefined
|
|
2666
2684
|
issued_at?: (string | undefined) | null
|
|
@@ -2765,6 +2783,8 @@ export interface Routes {
|
|
|
2765
2783
|
display_name: string
|
|
2766
2784
|
/** Access (PIN) code for the credential. */
|
|
2767
2785
|
code?: (string | undefined) | null
|
|
2786
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2787
|
+
is_one_time_use?: boolean | undefined
|
|
2768
2788
|
card_number?: (string | undefined) | null
|
|
2769
2789
|
is_issued?: boolean | undefined
|
|
2770
2790
|
issued_at?: (string | undefined) | null
|
|
@@ -2914,6 +2934,8 @@ export interface Routes {
|
|
|
2914
2934
|
display_name: string
|
|
2915
2935
|
/** Access (PIN) code for the credential. */
|
|
2916
2936
|
code?: (string | undefined) | null
|
|
2937
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2938
|
+
is_one_time_use?: boolean | undefined
|
|
2917
2939
|
card_number?: (string | undefined) | null
|
|
2918
2940
|
is_issued?: boolean | undefined
|
|
2919
2941
|
issued_at?: (string | undefined) | null
|
|
@@ -3018,6 +3040,8 @@ export interface Routes {
|
|
|
3018
3040
|
display_name: string
|
|
3019
3041
|
/** Access (PIN) code for the credential. */
|
|
3020
3042
|
code?: (string | undefined) | null
|
|
3043
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3044
|
+
is_one_time_use?: boolean | undefined
|
|
3021
3045
|
card_number?: (string | undefined) | null
|
|
3022
3046
|
is_issued?: boolean | undefined
|
|
3023
3047
|
issued_at?: (string | undefined) | null
|
|
@@ -3793,6 +3817,8 @@ export interface Routes {
|
|
|
3793
3817
|
display_name: string
|
|
3794
3818
|
/** Access (PIN) code for the credential. */
|
|
3795
3819
|
code?: (string | undefined) | null
|
|
3820
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3821
|
+
is_one_time_use?: boolean | undefined
|
|
3796
3822
|
card_number?: (string | undefined) | null
|
|
3797
3823
|
is_issued?: boolean | undefined
|
|
3798
3824
|
issued_at?: (string | undefined) | null
|
|
@@ -3897,6 +3923,8 @@ export interface Routes {
|
|
|
3897
3923
|
display_name: string
|
|
3898
3924
|
/** Access (PIN) code for the credential. */
|
|
3899
3925
|
code?: (string | undefined) | null
|
|
3926
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3927
|
+
is_one_time_use?: boolean | undefined
|
|
3900
3928
|
card_number?: (string | undefined) | null
|
|
3901
3929
|
is_issued?: boolean | undefined
|
|
3902
3930
|
issued_at?: (string | undefined) | null
|
|
@@ -4046,6 +4074,8 @@ export interface Routes {
|
|
|
4046
4074
|
display_name: string
|
|
4047
4075
|
/** Access (PIN) code for the credential. */
|
|
4048
4076
|
code?: (string | undefined) | null
|
|
4077
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4078
|
+
is_one_time_use?: boolean | undefined
|
|
4049
4079
|
card_number?: (string | undefined) | null
|
|
4050
4080
|
is_issued?: boolean | undefined
|
|
4051
4081
|
issued_at?: (string | undefined) | null
|
|
@@ -4150,6 +4180,8 @@ export interface Routes {
|
|
|
4150
4180
|
display_name: string
|
|
4151
4181
|
/** Access (PIN) code for the credential. */
|
|
4152
4182
|
code?: (string | undefined) | null
|
|
4183
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4184
|
+
is_one_time_use?: boolean | undefined
|
|
4153
4185
|
card_number?: (string | undefined) | null
|
|
4154
4186
|
is_issued?: boolean | undefined
|
|
4155
4187
|
issued_at?: (string | undefined) | null
|
|
@@ -5159,6 +5191,8 @@ export interface Routes {
|
|
|
5159
5191
|
display_name: string
|
|
5160
5192
|
/** Access (PIN) code for the credential. */
|
|
5161
5193
|
code?: (string | undefined) | null
|
|
5194
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5195
|
+
is_one_time_use?: boolean | undefined
|
|
5162
5196
|
card_number?: (string | undefined) | null
|
|
5163
5197
|
is_issued?: boolean | undefined
|
|
5164
5198
|
issued_at?: (string | undefined) | null
|
|
@@ -5314,6 +5348,8 @@ export interface Routes {
|
|
|
5314
5348
|
display_name: string
|
|
5315
5349
|
/** Access (PIN) code for the credential. */
|
|
5316
5350
|
code?: (string | undefined) | null
|
|
5351
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5352
|
+
is_one_time_use?: boolean | undefined
|
|
5317
5353
|
card_number?: (string | undefined) | null
|
|
5318
5354
|
is_issued?: boolean | undefined
|
|
5319
5355
|
issued_at?: (string | undefined) | null
|
|
@@ -5411,7 +5447,7 @@ export interface Routes {
|
|
|
5411
5447
|
/** ID of the ACS user to whom the new credential belongs. */
|
|
5412
5448
|
acs_user_id: string
|
|
5413
5449
|
/** 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. */
|
|
5414
|
-
allowed_acs_entrance_id
|
|
5450
|
+
allowed_acs_entrance_id: string
|
|
5415
5451
|
/** Indicates whether the code is one-time-use or reusable. */
|
|
5416
5452
|
is_one_time_use?: boolean
|
|
5417
5453
|
/** 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. */
|
|
@@ -5437,6 +5473,8 @@ export interface Routes {
|
|
|
5437
5473
|
display_name: string
|
|
5438
5474
|
/** Access (PIN) code for the credential. */
|
|
5439
5475
|
code?: (string | undefined) | null
|
|
5476
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5477
|
+
is_one_time_use?: boolean | undefined
|
|
5440
5478
|
card_number?: (string | undefined) | null
|
|
5441
5479
|
is_issued?: boolean | undefined
|
|
5442
5480
|
issued_at?: (string | undefined) | null
|
|
@@ -5564,6 +5602,8 @@ export interface Routes {
|
|
|
5564
5602
|
display_name: string
|
|
5565
5603
|
/** Access (PIN) code for the credential. */
|
|
5566
5604
|
code?: (string | undefined) | null
|
|
5605
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5606
|
+
is_one_time_use?: boolean | undefined
|
|
5567
5607
|
card_number?: (string | undefined) | null
|
|
5568
5608
|
is_issued?: boolean | undefined
|
|
5569
5609
|
issued_at?: (string | undefined) | null
|
|
@@ -5700,6 +5740,8 @@ export interface Routes {
|
|
|
5700
5740
|
display_name: string
|
|
5701
5741
|
/** Access (PIN) code for the credential. */
|
|
5702
5742
|
code?: (string | undefined) | null
|
|
5743
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5744
|
+
is_one_time_use?: boolean | undefined
|
|
5703
5745
|
card_number?: (string | undefined) | null
|
|
5704
5746
|
is_issued?: boolean | undefined
|
|
5705
5747
|
issued_at?: (string | undefined) | null
|
|
@@ -5899,6 +5941,8 @@ export interface Routes {
|
|
|
5899
5941
|
display_name: string
|
|
5900
5942
|
/** Access (PIN) code for the credential. */
|
|
5901
5943
|
code?: (string | undefined) | null
|
|
5944
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5945
|
+
is_one_time_use?: boolean | undefined
|
|
5902
5946
|
card_number?: (string | undefined) | null
|
|
5903
5947
|
is_issued?: boolean | undefined
|
|
5904
5948
|
issued_at?: (string | undefined) | null
|
|
@@ -6014,6 +6058,8 @@ export interface Routes {
|
|
|
6014
6058
|
display_name: string
|
|
6015
6059
|
/** Access (PIN) code for the credential. */
|
|
6016
6060
|
code?: (string | undefined) | null
|
|
6061
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6062
|
+
is_one_time_use?: boolean | undefined
|
|
6017
6063
|
card_number?: (string | undefined) | null
|
|
6018
6064
|
is_issued?: boolean | undefined
|
|
6019
6065
|
issued_at?: (string | undefined) | null
|
|
@@ -6142,6 +6188,8 @@ export interface Routes {
|
|
|
6142
6188
|
display_name: string
|
|
6143
6189
|
/** Access (PIN) code for the credential. */
|
|
6144
6190
|
code?: (string | undefined) | null
|
|
6191
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6192
|
+
is_one_time_use?: boolean | undefined
|
|
6145
6193
|
card_number?: (string | undefined) | null
|
|
6146
6194
|
is_issued?: boolean | undefined
|
|
6147
6195
|
issued_at?: (string | undefined) | null
|
|
@@ -6261,6 +6309,8 @@ export interface Routes {
|
|
|
6261
6309
|
display_name: string
|
|
6262
6310
|
/** Access (PIN) code for the credential. */
|
|
6263
6311
|
code?: (string | undefined) | null
|
|
6312
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6313
|
+
is_one_time_use?: boolean | undefined
|
|
6264
6314
|
card_number?: (string | undefined) | null
|
|
6265
6315
|
is_issued?: boolean | undefined
|
|
6266
6316
|
issued_at?: (string | undefined) | null
|
|
@@ -6478,6 +6528,8 @@ export interface Routes {
|
|
|
6478
6528
|
display_name: string
|
|
6479
6529
|
/** Access (PIN) code for the credential. */
|
|
6480
6530
|
code?: (string | undefined) | null
|
|
6531
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6532
|
+
is_one_time_use?: boolean | undefined
|
|
6481
6533
|
card_number?: (string | undefined) | null
|
|
6482
6534
|
is_issued?: boolean | undefined
|
|
6483
6535
|
issued_at?: (string | undefined) | null
|
|
@@ -6582,6 +6634,8 @@ export interface Routes {
|
|
|
6582
6634
|
display_name: string
|
|
6583
6635
|
/** Access (PIN) code for the credential. */
|
|
6584
6636
|
code?: (string | undefined) | null
|
|
6637
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6638
|
+
is_one_time_use?: boolean | undefined
|
|
6585
6639
|
card_number?: (string | undefined) | null
|
|
6586
6640
|
is_issued?: boolean | undefined
|
|
6587
6641
|
issued_at?: (string | undefined) | null
|
|
@@ -6731,6 +6785,8 @@ export interface Routes {
|
|
|
6731
6785
|
display_name: string
|
|
6732
6786
|
/** Access (PIN) code for the credential. */
|
|
6733
6787
|
code?: (string | undefined) | null
|
|
6788
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6789
|
+
is_one_time_use?: boolean | undefined
|
|
6734
6790
|
card_number?: (string | undefined) | null
|
|
6735
6791
|
is_issued?: boolean | undefined
|
|
6736
6792
|
issued_at?: (string | undefined) | null
|
|
@@ -6835,6 +6891,8 @@ export interface Routes {
|
|
|
6835
6891
|
display_name: string
|
|
6836
6892
|
/** Access (PIN) code for the credential. */
|
|
6837
6893
|
code?: (string | undefined) | null
|
|
6894
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6895
|
+
is_one_time_use?: boolean | undefined
|
|
6838
6896
|
card_number?: (string | undefined) | null
|
|
6839
6897
|
is_issued?: boolean | undefined
|
|
6840
6898
|
issued_at?: (string | undefined) | null
|
|
@@ -7512,6 +7570,8 @@ export interface Routes {
|
|
|
7512
7570
|
display_name: string
|
|
7513
7571
|
/** Access (PIN) code for the credential. */
|
|
7514
7572
|
code?: (string | undefined) | null
|
|
7573
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
7574
|
+
is_one_time_use?: boolean | undefined
|
|
7515
7575
|
card_number?: (string | undefined) | null
|
|
7516
7576
|
is_issued?: boolean | undefined
|
|
7517
7577
|
issued_at?: (string | undefined) | null
|
|
@@ -7616,6 +7676,8 @@ export interface Routes {
|
|
|
7616
7676
|
display_name: string
|
|
7617
7677
|
/** Access (PIN) code for the credential. */
|
|
7618
7678
|
code?: (string | undefined) | null
|
|
7679
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
7680
|
+
is_one_time_use?: boolean | undefined
|
|
7619
7681
|
card_number?: (string | undefined) | null
|
|
7620
7682
|
is_issued?: boolean | undefined
|
|
7621
7683
|
issued_at?: (string | undefined) | null
|
|
@@ -7765,6 +7827,8 @@ export interface Routes {
|
|
|
7765
7827
|
display_name: string
|
|
7766
7828
|
/** Access (PIN) code for the credential. */
|
|
7767
7829
|
code?: (string | undefined) | null
|
|
7830
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
7831
|
+
is_one_time_use?: boolean | undefined
|
|
7768
7832
|
card_number?: (string | undefined) | null
|
|
7769
7833
|
is_issued?: boolean | undefined
|
|
7770
7834
|
issued_at?: (string | undefined) | null
|
|
@@ -7869,6 +7933,8 @@ export interface Routes {
|
|
|
7869
7933
|
display_name: string
|
|
7870
7934
|
/** Access (PIN) code for the credential. */
|
|
7871
7935
|
code?: (string | undefined) | null
|
|
7936
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
7937
|
+
is_one_time_use?: boolean | undefined
|
|
7872
7938
|
card_number?: (string | undefined) | null
|
|
7873
7939
|
is_issued?: boolean | undefined
|
|
7874
7940
|
issued_at?: (string | undefined) | null
|
|
@@ -8573,6 +8639,8 @@ export interface Routes {
|
|
|
8573
8639
|
display_name: string
|
|
8574
8640
|
/** Access (PIN) code for the credential. */
|
|
8575
8641
|
code?: (string | undefined) | null
|
|
8642
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8643
|
+
is_one_time_use?: boolean | undefined
|
|
8576
8644
|
card_number?: (string | undefined) | null
|
|
8577
8645
|
is_issued?: boolean | undefined
|
|
8578
8646
|
issued_at?: (string | undefined) | null
|
|
@@ -10085,6 +10153,8 @@ export interface Routes {
|
|
|
10085
10153
|
display_name: string
|
|
10086
10154
|
/** Access (PIN) code for the credential. */
|
|
10087
10155
|
code?: (string | undefined) | null
|
|
10156
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10157
|
+
is_one_time_use?: boolean | undefined
|
|
10088
10158
|
card_number?: (string | undefined) | null
|
|
10089
10159
|
is_issued?: boolean | undefined
|
|
10090
10160
|
issued_at?: (string | undefined) | null
|
|
@@ -10189,6 +10259,8 @@ export interface Routes {
|
|
|
10189
10259
|
display_name: string
|
|
10190
10260
|
/** Access (PIN) code for the credential. */
|
|
10191
10261
|
code?: (string | undefined) | null
|
|
10262
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10263
|
+
is_one_time_use?: boolean | undefined
|
|
10192
10264
|
card_number?: (string | undefined) | null
|
|
10193
10265
|
is_issued?: boolean | undefined
|
|
10194
10266
|
issued_at?: (string | undefined) | null
|
|
@@ -10338,6 +10410,8 @@ export interface Routes {
|
|
|
10338
10410
|
display_name: string
|
|
10339
10411
|
/** Access (PIN) code for the credential. */
|
|
10340
10412
|
code?: (string | undefined) | null
|
|
10413
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10414
|
+
is_one_time_use?: boolean | undefined
|
|
10341
10415
|
card_number?: (string | undefined) | null
|
|
10342
10416
|
is_issued?: boolean | undefined
|
|
10343
10417
|
issued_at?: (string | undefined) | null
|
|
@@ -10442,6 +10516,8 @@ export interface Routes {
|
|
|
10442
10516
|
display_name: string
|
|
10443
10517
|
/** Access (PIN) code for the credential. */
|
|
10444
10518
|
code?: (string | undefined) | null
|
|
10519
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10520
|
+
is_one_time_use?: boolean | undefined
|
|
10445
10521
|
card_number?: (string | undefined) | null
|
|
10446
10522
|
is_issued?: boolean | undefined
|
|
10447
10523
|
issued_at?: (string | undefined) | null
|
|
@@ -11071,6 +11147,8 @@ export interface Routes {
|
|
|
11071
11147
|
display_name: string
|
|
11072
11148
|
/** Access (PIN) code for the credential. */
|
|
11073
11149
|
code?: (string | undefined) | null
|
|
11150
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11151
|
+
is_one_time_use?: boolean | undefined
|
|
11074
11152
|
card_number?: (string | undefined) | null
|
|
11075
11153
|
is_issued?: boolean | undefined
|
|
11076
11154
|
issued_at?: (string | undefined) | null
|
|
@@ -11175,6 +11253,8 @@ export interface Routes {
|
|
|
11175
11253
|
display_name: string
|
|
11176
11254
|
/** Access (PIN) code for the credential. */
|
|
11177
11255
|
code?: (string | undefined) | null
|
|
11256
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11257
|
+
is_one_time_use?: boolean | undefined
|
|
11178
11258
|
card_number?: (string | undefined) | null
|
|
11179
11259
|
is_issued?: boolean | undefined
|
|
11180
11260
|
issued_at?: (string | undefined) | null
|
|
@@ -11324,6 +11404,8 @@ export interface Routes {
|
|
|
11324
11404
|
display_name: string
|
|
11325
11405
|
/** Access (PIN) code for the credential. */
|
|
11326
11406
|
code?: (string | undefined) | null
|
|
11407
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11408
|
+
is_one_time_use?: boolean | undefined
|
|
11327
11409
|
card_number?: (string | undefined) | null
|
|
11328
11410
|
is_issued?: boolean | undefined
|
|
11329
11411
|
issued_at?: (string | undefined) | null
|
|
@@ -11428,6 +11510,8 @@ export interface Routes {
|
|
|
11428
11510
|
display_name: string
|
|
11429
11511
|
/** Access (PIN) code for the credential. */
|
|
11430
11512
|
code?: (string | undefined) | null
|
|
11513
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11514
|
+
is_one_time_use?: boolean | undefined
|
|
11431
11515
|
card_number?: (string | undefined) | null
|
|
11432
11516
|
is_issued?: boolean | undefined
|
|
11433
11517
|
issued_at?: (string | undefined) | null
|
|
@@ -17990,6 +18074,8 @@ export interface Routes {
|
|
|
17990
18074
|
display_name: string
|
|
17991
18075
|
/** Access (PIN) code for the credential. */
|
|
17992
18076
|
code?: (string | undefined) | null
|
|
18077
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18078
|
+
is_one_time_use?: boolean | undefined
|
|
17993
18079
|
card_number?: (string | undefined) | null
|
|
17994
18080
|
is_issued?: boolean | undefined
|
|
17995
18081
|
issued_at?: (string | undefined) | null
|
|
@@ -18094,6 +18180,8 @@ export interface Routes {
|
|
|
18094
18180
|
display_name: string
|
|
18095
18181
|
/** Access (PIN) code for the credential. */
|
|
18096
18182
|
code?: (string | undefined) | null
|
|
18183
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18184
|
+
is_one_time_use?: boolean | undefined
|
|
18097
18185
|
card_number?: (string | undefined) | null
|
|
18098
18186
|
is_issued?: boolean | undefined
|
|
18099
18187
|
issued_at?: (string | undefined) | null
|
|
@@ -18243,6 +18331,8 @@ export interface Routes {
|
|
|
18243
18331
|
display_name: string
|
|
18244
18332
|
/** Access (PIN) code for the credential. */
|
|
18245
18333
|
code?: (string | undefined) | null
|
|
18334
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18335
|
+
is_one_time_use?: boolean | undefined
|
|
18246
18336
|
card_number?: (string | undefined) | null
|
|
18247
18337
|
is_issued?: boolean | undefined
|
|
18248
18338
|
issued_at?: (string | undefined) | null
|
|
@@ -18347,6 +18437,8 @@ export interface Routes {
|
|
|
18347
18437
|
display_name: string
|
|
18348
18438
|
/** Access (PIN) code for the credential. */
|
|
18349
18439
|
code?: (string | undefined) | null
|
|
18440
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18441
|
+
is_one_time_use?: boolean | undefined
|
|
18350
18442
|
card_number?: (string | undefined) | null
|
|
18351
18443
|
is_issued?: boolean | undefined
|
|
18352
18444
|
issued_at?: (string | undefined) | null
|
|
@@ -18977,6 +19069,8 @@ export interface Routes {
|
|
|
18977
19069
|
display_name: string
|
|
18978
19070
|
/** Access (PIN) code for the credential. */
|
|
18979
19071
|
code?: (string | undefined) | null
|
|
19072
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19073
|
+
is_one_time_use?: boolean | undefined
|
|
18980
19074
|
card_number?: (string | undefined) | null
|
|
18981
19075
|
is_issued?: boolean | undefined
|
|
18982
19076
|
issued_at?: (string | undefined) | null
|
|
@@ -19081,6 +19175,8 @@ export interface Routes {
|
|
|
19081
19175
|
display_name: string
|
|
19082
19176
|
/** Access (PIN) code for the credential. */
|
|
19083
19177
|
code?: (string | undefined) | null
|
|
19178
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19179
|
+
is_one_time_use?: boolean | undefined
|
|
19084
19180
|
card_number?: (string | undefined) | null
|
|
19085
19181
|
is_issued?: boolean | undefined
|
|
19086
19182
|
issued_at?: (string | undefined) | null
|
|
@@ -19230,6 +19326,8 @@ export interface Routes {
|
|
|
19230
19326
|
display_name: string
|
|
19231
19327
|
/** Access (PIN) code for the credential. */
|
|
19232
19328
|
code?: (string | undefined) | null
|
|
19329
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19330
|
+
is_one_time_use?: boolean | undefined
|
|
19233
19331
|
card_number?: (string | undefined) | null
|
|
19234
19332
|
is_issued?: boolean | undefined
|
|
19235
19333
|
issued_at?: (string | undefined) | null
|
|
@@ -19334,6 +19432,8 @@ export interface Routes {
|
|
|
19334
19432
|
display_name: string
|
|
19335
19433
|
/** Access (PIN) code for the credential. */
|
|
19336
19434
|
code?: (string | undefined) | null
|
|
19435
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19436
|
+
is_one_time_use?: boolean | undefined
|
|
19337
19437
|
card_number?: (string | undefined) | null
|
|
19338
19438
|
is_issued?: boolean | undefined
|
|
19339
19439
|
issued_at?: (string | undefined) | null
|
|
@@ -21574,6 +21674,8 @@ export interface Routes {
|
|
|
21574
21674
|
display_name: string
|
|
21575
21675
|
/** Access (PIN) code for the credential. */
|
|
21576
21676
|
code?: (string | undefined) | null
|
|
21677
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21678
|
+
is_one_time_use?: boolean | undefined
|
|
21577
21679
|
card_number?: (string | undefined) | null
|
|
21578
21680
|
is_issued?: boolean | undefined
|
|
21579
21681
|
issued_at?: (string | undefined) | null
|
|
@@ -21678,6 +21780,8 @@ export interface Routes {
|
|
|
21678
21780
|
display_name: string
|
|
21679
21781
|
/** Access (PIN) code for the credential. */
|
|
21680
21782
|
code?: (string | undefined) | null
|
|
21783
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21784
|
+
is_one_time_use?: boolean | undefined
|
|
21681
21785
|
card_number?: (string | undefined) | null
|
|
21682
21786
|
is_issued?: boolean | undefined
|
|
21683
21787
|
issued_at?: (string | undefined) | null
|
|
@@ -21827,6 +21931,8 @@ export interface Routes {
|
|
|
21827
21931
|
display_name: string
|
|
21828
21932
|
/** Access (PIN) code for the credential. */
|
|
21829
21933
|
code?: (string | undefined) | null
|
|
21934
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21935
|
+
is_one_time_use?: boolean | undefined
|
|
21830
21936
|
card_number?: (string | undefined) | null
|
|
21831
21937
|
is_issued?: boolean | undefined
|
|
21832
21938
|
issued_at?: (string | undefined) | null
|
|
@@ -21931,6 +22037,8 @@ export interface Routes {
|
|
|
21931
22037
|
display_name: string
|
|
21932
22038
|
/** Access (PIN) code for the credential. */
|
|
21933
22039
|
code?: (string | undefined) | null
|
|
22040
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22041
|
+
is_one_time_use?: boolean | undefined
|
|
21934
22042
|
card_number?: (string | undefined) | null
|
|
21935
22043
|
is_issued?: boolean | undefined
|
|
21936
22044
|
issued_at?: (string | undefined) | null
|
|
@@ -22571,6 +22679,8 @@ export interface Routes {
|
|
|
22571
22679
|
display_name: string
|
|
22572
22680
|
/** Access (PIN) code for the credential. */
|
|
22573
22681
|
code?: (string | undefined) | null
|
|
22682
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22683
|
+
is_one_time_use?: boolean | undefined
|
|
22574
22684
|
card_number?: (string | undefined) | null
|
|
22575
22685
|
is_issued?: boolean | undefined
|
|
22576
22686
|
issued_at?: (string | undefined) | null
|
|
@@ -22675,6 +22785,8 @@ export interface Routes {
|
|
|
22675
22785
|
display_name: string
|
|
22676
22786
|
/** Access (PIN) code for the credential. */
|
|
22677
22787
|
code?: (string | undefined) | null
|
|
22788
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22789
|
+
is_one_time_use?: boolean | undefined
|
|
22678
22790
|
card_number?: (string | undefined) | null
|
|
22679
22791
|
is_issued?: boolean | undefined
|
|
22680
22792
|
issued_at?: (string | undefined) | null
|
|
@@ -22824,6 +22936,8 @@ export interface Routes {
|
|
|
22824
22936
|
display_name: string
|
|
22825
22937
|
/** Access (PIN) code for the credential. */
|
|
22826
22938
|
code?: (string | undefined) | null
|
|
22939
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22940
|
+
is_one_time_use?: boolean | undefined
|
|
22827
22941
|
card_number?: (string | undefined) | null
|
|
22828
22942
|
is_issued?: boolean | undefined
|
|
22829
22943
|
issued_at?: (string | undefined) | null
|
|
@@ -22928,6 +23042,8 @@ export interface Routes {
|
|
|
22928
23042
|
display_name: string
|
|
22929
23043
|
/** Access (PIN) code for the credential. */
|
|
22930
23044
|
code?: (string | undefined) | null
|
|
23045
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23046
|
+
is_one_time_use?: boolean | undefined
|
|
22931
23047
|
card_number?: (string | undefined) | null
|
|
22932
23048
|
is_issued?: boolean | undefined
|
|
22933
23049
|
issued_at?: (string | undefined) | null
|
|
@@ -23607,6 +23723,8 @@ export interface Routes {
|
|
|
23607
23723
|
display_name: string
|
|
23608
23724
|
/** Access (PIN) code for the credential. */
|
|
23609
23725
|
code?: (string | undefined) | null
|
|
23726
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23727
|
+
is_one_time_use?: boolean | undefined
|
|
23610
23728
|
card_number?: (string | undefined) | null
|
|
23611
23729
|
is_issued?: boolean | undefined
|
|
23612
23730
|
issued_at?: (string | undefined) | null
|
|
@@ -23711,6 +23829,8 @@ export interface Routes {
|
|
|
23711
23829
|
display_name: string
|
|
23712
23830
|
/** Access (PIN) code for the credential. */
|
|
23713
23831
|
code?: (string | undefined) | null
|
|
23832
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23833
|
+
is_one_time_use?: boolean | undefined
|
|
23714
23834
|
card_number?: (string | undefined) | null
|
|
23715
23835
|
is_issued?: boolean | undefined
|
|
23716
23836
|
issued_at?: (string | undefined) | null
|
|
@@ -23860,6 +23980,8 @@ export interface Routes {
|
|
|
23860
23980
|
display_name: string
|
|
23861
23981
|
/** Access (PIN) code for the credential. */
|
|
23862
23982
|
code?: (string | undefined) | null
|
|
23983
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23984
|
+
is_one_time_use?: boolean | undefined
|
|
23863
23985
|
card_number?: (string | undefined) | null
|
|
23864
23986
|
is_issued?: boolean | undefined
|
|
23865
23987
|
issued_at?: (string | undefined) | null
|
|
@@ -23964,6 +24086,8 @@ export interface Routes {
|
|
|
23964
24086
|
display_name: string
|
|
23965
24087
|
/** Access (PIN) code for the credential. */
|
|
23966
24088
|
code?: (string | undefined) | null
|
|
24089
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
24090
|
+
is_one_time_use?: boolean | undefined
|
|
23967
24091
|
card_number?: (string | undefined) | null
|
|
23968
24092
|
is_issued?: boolean | undefined
|
|
23969
24093
|
issued_at?: (string | undefined) | null
|
|
@@ -24802,6 +24926,8 @@ export interface Routes {
|
|
|
24802
24926
|
display_name: string
|
|
24803
24927
|
/** Access (PIN) code for the credential. */
|
|
24804
24928
|
code?: (string | undefined) | null
|
|
24929
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
24930
|
+
is_one_time_use?: boolean | undefined
|
|
24805
24931
|
card_number?: (string | undefined) | null
|
|
24806
24932
|
is_issued?: boolean | undefined
|
|
24807
24933
|
issued_at?: (string | undefined) | null
|
|
@@ -24906,6 +25032,8 @@ export interface Routes {
|
|
|
24906
25032
|
display_name: string
|
|
24907
25033
|
/** Access (PIN) code for the credential. */
|
|
24908
25034
|
code?: (string | undefined) | null
|
|
25035
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25036
|
+
is_one_time_use?: boolean | undefined
|
|
24909
25037
|
card_number?: (string | undefined) | null
|
|
24910
25038
|
is_issued?: boolean | undefined
|
|
24911
25039
|
issued_at?: (string | undefined) | null
|
|
@@ -25055,6 +25183,8 @@ export interface Routes {
|
|
|
25055
25183
|
display_name: string
|
|
25056
25184
|
/** Access (PIN) code for the credential. */
|
|
25057
25185
|
code?: (string | undefined) | null
|
|
25186
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25187
|
+
is_one_time_use?: boolean | undefined
|
|
25058
25188
|
card_number?: (string | undefined) | null
|
|
25059
25189
|
is_issued?: boolean | undefined
|
|
25060
25190
|
issued_at?: (string | undefined) | null
|
|
@@ -25159,6 +25289,8 @@ export interface Routes {
|
|
|
25159
25289
|
display_name: string
|
|
25160
25290
|
/** Access (PIN) code for the credential. */
|
|
25161
25291
|
code?: (string | undefined) | null
|
|
25292
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25293
|
+
is_one_time_use?: boolean | undefined
|
|
25162
25294
|
card_number?: (string | undefined) | null
|
|
25163
25295
|
is_issued?: boolean | undefined
|
|
25164
25296
|
issued_at?: (string | undefined) | null
|
|
@@ -25795,6 +25927,8 @@ export interface Routes {
|
|
|
25795
25927
|
display_name: string
|
|
25796
25928
|
/** Access (PIN) code for the credential. */
|
|
25797
25929
|
code?: (string | undefined) | null
|
|
25930
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25931
|
+
is_one_time_use?: boolean | undefined
|
|
25798
25932
|
card_number?: (string | undefined) | null
|
|
25799
25933
|
is_issued?: boolean | undefined
|
|
25800
25934
|
issued_at?: (string | undefined) | null
|
|
@@ -25899,6 +26033,8 @@ export interface Routes {
|
|
|
25899
26033
|
display_name: string
|
|
25900
26034
|
/** Access (PIN) code for the credential. */
|
|
25901
26035
|
code?: (string | undefined) | null
|
|
26036
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26037
|
+
is_one_time_use?: boolean | undefined
|
|
25902
26038
|
card_number?: (string | undefined) | null
|
|
25903
26039
|
is_issued?: boolean | undefined
|
|
25904
26040
|
issued_at?: (string | undefined) | null
|
|
@@ -26048,6 +26184,8 @@ export interface Routes {
|
|
|
26048
26184
|
display_name: string
|
|
26049
26185
|
/** Access (PIN) code for the credential. */
|
|
26050
26186
|
code?: (string | undefined) | null
|
|
26187
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26188
|
+
is_one_time_use?: boolean | undefined
|
|
26051
26189
|
card_number?: (string | undefined) | null
|
|
26052
26190
|
is_issued?: boolean | undefined
|
|
26053
26191
|
issued_at?: (string | undefined) | null
|
|
@@ -26152,6 +26290,8 @@ export interface Routes {
|
|
|
26152
26290
|
display_name: string
|
|
26153
26291
|
/** Access (PIN) code for the credential. */
|
|
26154
26292
|
code?: (string | undefined) | null
|
|
26293
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26294
|
+
is_one_time_use?: boolean | undefined
|
|
26155
26295
|
card_number?: (string | undefined) | null
|
|
26156
26296
|
is_issued?: boolean | undefined
|
|
26157
26297
|
issued_at?: (string | undefined) | null
|
|
@@ -27541,6 +27681,8 @@ export interface Routes {
|
|
|
27541
27681
|
display_name: string
|
|
27542
27682
|
/** Access (PIN) code for the credential. */
|
|
27543
27683
|
code?: (string | undefined) | null
|
|
27684
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27685
|
+
is_one_time_use?: boolean | undefined
|
|
27544
27686
|
card_number?: (string | undefined) | null
|
|
27545
27687
|
is_issued?: boolean | undefined
|
|
27546
27688
|
issued_at?: (string | undefined) | null
|
|
@@ -27645,6 +27787,8 @@ export interface Routes {
|
|
|
27645
27787
|
display_name: string
|
|
27646
27788
|
/** Access (PIN) code for the credential. */
|
|
27647
27789
|
code?: (string | undefined) | null
|
|
27790
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27791
|
+
is_one_time_use?: boolean | undefined
|
|
27648
27792
|
card_number?: (string | undefined) | null
|
|
27649
27793
|
is_issued?: boolean | undefined
|
|
27650
27794
|
issued_at?: (string | undefined) | null
|
|
@@ -27794,6 +27938,8 @@ export interface Routes {
|
|
|
27794
27938
|
display_name: string
|
|
27795
27939
|
/** Access (PIN) code for the credential. */
|
|
27796
27940
|
code?: (string | undefined) | null
|
|
27941
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27942
|
+
is_one_time_use?: boolean | undefined
|
|
27797
27943
|
card_number?: (string | undefined) | null
|
|
27798
27944
|
is_issued?: boolean | undefined
|
|
27799
27945
|
issued_at?: (string | undefined) | null
|
|
@@ -27898,6 +28044,8 @@ export interface Routes {
|
|
|
27898
28044
|
display_name: string
|
|
27899
28045
|
/** Access (PIN) code for the credential. */
|
|
27900
28046
|
code?: (string | undefined) | null
|
|
28047
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28048
|
+
is_one_time_use?: boolean | undefined
|
|
27901
28049
|
card_number?: (string | undefined) | null
|
|
27902
28050
|
is_issued?: boolean | undefined
|
|
27903
28051
|
issued_at?: (string | undefined) | null
|
|
@@ -28538,6 +28686,8 @@ export interface Routes {
|
|
|
28538
28686
|
display_name: string
|
|
28539
28687
|
/** Access (PIN) code for the credential. */
|
|
28540
28688
|
code?: (string | undefined) | null
|
|
28689
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28690
|
+
is_one_time_use?: boolean | undefined
|
|
28541
28691
|
card_number?: (string | undefined) | null
|
|
28542
28692
|
is_issued?: boolean | undefined
|
|
28543
28693
|
issued_at?: (string | undefined) | null
|
|
@@ -28642,6 +28792,8 @@ export interface Routes {
|
|
|
28642
28792
|
display_name: string
|
|
28643
28793
|
/** Access (PIN) code for the credential. */
|
|
28644
28794
|
code?: (string | undefined) | null
|
|
28795
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28796
|
+
is_one_time_use?: boolean | undefined
|
|
28645
28797
|
card_number?: (string | undefined) | null
|
|
28646
28798
|
is_issued?: boolean | undefined
|
|
28647
28799
|
issued_at?: (string | undefined) | null
|
|
@@ -28791,6 +28943,8 @@ export interface Routes {
|
|
|
28791
28943
|
display_name: string
|
|
28792
28944
|
/** Access (PIN) code for the credential. */
|
|
28793
28945
|
code?: (string | undefined) | null
|
|
28946
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28947
|
+
is_one_time_use?: boolean | undefined
|
|
28794
28948
|
card_number?: (string | undefined) | null
|
|
28795
28949
|
is_issued?: boolean | undefined
|
|
28796
28950
|
issued_at?: (string | undefined) | null
|
|
@@ -28895,6 +29049,8 @@ export interface Routes {
|
|
|
28895
29049
|
display_name: string
|
|
28896
29050
|
/** Access (PIN) code for the credential. */
|
|
28897
29051
|
code?: (string | undefined) | null
|
|
29052
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29053
|
+
is_one_time_use?: boolean | undefined
|
|
28898
29054
|
card_number?: (string | undefined) | null
|
|
28899
29055
|
is_issued?: boolean | undefined
|
|
28900
29056
|
issued_at?: (string | undefined) | null
|
|
@@ -31098,6 +31254,8 @@ export interface Routes {
|
|
|
31098
31254
|
display_name: string
|
|
31099
31255
|
/** Access (PIN) code for the credential. */
|
|
31100
31256
|
code?: (string | undefined) | null
|
|
31257
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31258
|
+
is_one_time_use?: boolean | undefined
|
|
31101
31259
|
card_number?: (string | undefined) | null
|
|
31102
31260
|
is_issued?: boolean | undefined
|
|
31103
31261
|
issued_at?: (string | undefined) | null
|
|
@@ -31202,6 +31360,8 @@ export interface Routes {
|
|
|
31202
31360
|
display_name: string
|
|
31203
31361
|
/** Access (PIN) code for the credential. */
|
|
31204
31362
|
code?: (string | undefined) | null
|
|
31363
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31364
|
+
is_one_time_use?: boolean | undefined
|
|
31205
31365
|
card_number?: (string | undefined) | null
|
|
31206
31366
|
is_issued?: boolean | undefined
|
|
31207
31367
|
issued_at?: (string | undefined) | null
|
|
@@ -31351,6 +31511,8 @@ export interface Routes {
|
|
|
31351
31511
|
display_name: string
|
|
31352
31512
|
/** Access (PIN) code for the credential. */
|
|
31353
31513
|
code?: (string | undefined) | null
|
|
31514
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31515
|
+
is_one_time_use?: boolean | undefined
|
|
31354
31516
|
card_number?: (string | undefined) | null
|
|
31355
31517
|
is_issued?: boolean | undefined
|
|
31356
31518
|
issued_at?: (string | undefined) | null
|
|
@@ -31455,6 +31617,8 @@ export interface Routes {
|
|
|
31455
31617
|
display_name: string
|
|
31456
31618
|
/** Access (PIN) code for the credential. */
|
|
31457
31619
|
code?: (string | undefined) | null
|
|
31620
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31621
|
+
is_one_time_use?: boolean | undefined
|
|
31458
31622
|
card_number?: (string | undefined) | null
|
|
31459
31623
|
is_issued?: boolean | undefined
|
|
31460
31624
|
issued_at?: (string | undefined) | null
|
|
@@ -32260,6 +32424,8 @@ export interface Routes {
|
|
|
32260
32424
|
display_name: string
|
|
32261
32425
|
/** Access (PIN) code for the credential. */
|
|
32262
32426
|
code?: (string | undefined) | null
|
|
32427
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32428
|
+
is_one_time_use?: boolean | undefined
|
|
32263
32429
|
card_number?: (string | undefined) | null
|
|
32264
32430
|
is_issued?: boolean | undefined
|
|
32265
32431
|
issued_at?: (string | undefined) | null
|
|
@@ -32364,6 +32530,8 @@ export interface Routes {
|
|
|
32364
32530
|
display_name: string
|
|
32365
32531
|
/** Access (PIN) code for the credential. */
|
|
32366
32532
|
code?: (string | undefined) | null
|
|
32533
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32534
|
+
is_one_time_use?: boolean | undefined
|
|
32367
32535
|
card_number?: (string | undefined) | null
|
|
32368
32536
|
is_issued?: boolean | undefined
|
|
32369
32537
|
issued_at?: (string | undefined) | null
|
|
@@ -32513,6 +32681,8 @@ export interface Routes {
|
|
|
32513
32681
|
display_name: string
|
|
32514
32682
|
/** Access (PIN) code for the credential. */
|
|
32515
32683
|
code?: (string | undefined) | null
|
|
32684
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32685
|
+
is_one_time_use?: boolean | undefined
|
|
32516
32686
|
card_number?: (string | undefined) | null
|
|
32517
32687
|
is_issued?: boolean | undefined
|
|
32518
32688
|
issued_at?: (string | undefined) | null
|
|
@@ -32617,6 +32787,8 @@ export interface Routes {
|
|
|
32617
32787
|
display_name: string
|
|
32618
32788
|
/** Access (PIN) code for the credential. */
|
|
32619
32789
|
code?: (string | undefined) | null
|
|
32790
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32791
|
+
is_one_time_use?: boolean | undefined
|
|
32620
32792
|
card_number?: (string | undefined) | null
|
|
32621
32793
|
is_issued?: boolean | undefined
|
|
32622
32794
|
issued_at?: (string | undefined) | null
|
|
@@ -33280,6 +33452,8 @@ export interface Routes {
|
|
|
33280
33452
|
display_name: string
|
|
33281
33453
|
/** Access (PIN) code for the credential. */
|
|
33282
33454
|
code?: (string | undefined) | null
|
|
33455
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33456
|
+
is_one_time_use?: boolean | undefined
|
|
33283
33457
|
card_number?: (string | undefined) | null
|
|
33284
33458
|
is_issued?: boolean | undefined
|
|
33285
33459
|
issued_at?: (string | undefined) | null
|
|
@@ -33384,6 +33558,8 @@ export interface Routes {
|
|
|
33384
33558
|
display_name: string
|
|
33385
33559
|
/** Access (PIN) code for the credential. */
|
|
33386
33560
|
code?: (string | undefined) | null
|
|
33561
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33562
|
+
is_one_time_use?: boolean | undefined
|
|
33387
33563
|
card_number?: (string | undefined) | null
|
|
33388
33564
|
is_issued?: boolean | undefined
|
|
33389
33565
|
issued_at?: (string | undefined) | null
|
|
@@ -33533,6 +33709,8 @@ export interface Routes {
|
|
|
33533
33709
|
display_name: string
|
|
33534
33710
|
/** Access (PIN) code for the credential. */
|
|
33535
33711
|
code?: (string | undefined) | null
|
|
33712
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33713
|
+
is_one_time_use?: boolean | undefined
|
|
33536
33714
|
card_number?: (string | undefined) | null
|
|
33537
33715
|
is_issued?: boolean | undefined
|
|
33538
33716
|
issued_at?: (string | undefined) | null
|
|
@@ -33637,6 +33815,8 @@ export interface Routes {
|
|
|
33637
33815
|
display_name: string
|
|
33638
33816
|
/** Access (PIN) code for the credential. */
|
|
33639
33817
|
code?: (string | undefined) | null
|
|
33818
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33819
|
+
is_one_time_use?: boolean | undefined
|
|
33640
33820
|
card_number?: (string | undefined) | null
|
|
33641
33821
|
is_issued?: boolean | undefined
|
|
33642
33822
|
issued_at?: (string | undefined) | null
|
|
@@ -36418,6 +36598,8 @@ export interface Routes {
|
|
|
36418
36598
|
display_name: string
|
|
36419
36599
|
/** Access (PIN) code for the credential. */
|
|
36420
36600
|
code?: (string | undefined) | null
|
|
36601
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36602
|
+
is_one_time_use?: boolean | undefined
|
|
36421
36603
|
card_number?: (string | undefined) | null
|
|
36422
36604
|
is_issued?: boolean | undefined
|
|
36423
36605
|
issued_at?: (string | undefined) | null
|
|
@@ -36522,6 +36704,8 @@ export interface Routes {
|
|
|
36522
36704
|
display_name: string
|
|
36523
36705
|
/** Access (PIN) code for the credential. */
|
|
36524
36706
|
code?: (string | undefined) | null
|
|
36707
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36708
|
+
is_one_time_use?: boolean | undefined
|
|
36525
36709
|
card_number?: (string | undefined) | null
|
|
36526
36710
|
is_issued?: boolean | undefined
|
|
36527
36711
|
issued_at?: (string | undefined) | null
|
|
@@ -36671,6 +36855,8 @@ export interface Routes {
|
|
|
36671
36855
|
display_name: string
|
|
36672
36856
|
/** Access (PIN) code for the credential. */
|
|
36673
36857
|
code?: (string | undefined) | null
|
|
36858
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36859
|
+
is_one_time_use?: boolean | undefined
|
|
36674
36860
|
card_number?: (string | undefined) | null
|
|
36675
36861
|
is_issued?: boolean | undefined
|
|
36676
36862
|
issued_at?: (string | undefined) | null
|
|
@@ -36775,6 +36961,8 @@ export interface Routes {
|
|
|
36775
36961
|
display_name: string
|
|
36776
36962
|
/** Access (PIN) code for the credential. */
|
|
36777
36963
|
code?: (string | undefined) | null
|
|
36964
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36965
|
+
is_one_time_use?: boolean | undefined
|
|
36778
36966
|
card_number?: (string | undefined) | null
|
|
36779
36967
|
is_issued?: boolean | undefined
|
|
36780
36968
|
issued_at?: (string | undefined) | null
|