@seamapi/types 1.302.2 → 1.303.1
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 +41 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +245 -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/acs/acs-user.js +8 -8
- package/lib/seam/connect/models/acs/acs-user.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 +23 -0
- package/lib/seam/connect/openapi.js +32 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +192 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +16 -16
- package/src/lib/seam/connect/openapi.ts +42 -1
- package/src/lib/seam/connect/route-types.ts +192 -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
|
|
@@ -9172,6 +9240,7 @@ export interface Routes {
|
|
|
9172
9240
|
commonParams: {}
|
|
9173
9241
|
formData: {}
|
|
9174
9242
|
jsonResponse: {
|
|
9243
|
+
/** Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
9175
9244
|
acs_user: {
|
|
9176
9245
|
/** ID of the `acs_user`. */
|
|
9177
9246
|
acs_user_id: string
|
|
@@ -9307,6 +9376,7 @@ export interface Routes {
|
|
|
9307
9376
|
}
|
|
9308
9377
|
formData: {}
|
|
9309
9378
|
jsonResponse: {
|
|
9379
|
+
/** Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
9310
9380
|
acs_user: {
|
|
9311
9381
|
/** ID of the `acs_user`. */
|
|
9312
9382
|
acs_user_id: string
|
|
@@ -9680,6 +9750,7 @@ export interface Routes {
|
|
|
9680
9750
|
}
|
|
9681
9751
|
formData: {}
|
|
9682
9752
|
jsonResponse: {
|
|
9753
|
+
/** Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
9683
9754
|
acs_user: {
|
|
9684
9755
|
/** ID of the `acs_user`. */
|
|
9685
9756
|
acs_user_id: string
|
|
@@ -10085,6 +10156,8 @@ export interface Routes {
|
|
|
10085
10156
|
display_name: string
|
|
10086
10157
|
/** Access (PIN) code for the credential. */
|
|
10087
10158
|
code?: (string | undefined) | null
|
|
10159
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10160
|
+
is_one_time_use?: boolean | undefined
|
|
10088
10161
|
card_number?: (string | undefined) | null
|
|
10089
10162
|
is_issued?: boolean | undefined
|
|
10090
10163
|
issued_at?: (string | undefined) | null
|
|
@@ -10189,6 +10262,8 @@ export interface Routes {
|
|
|
10189
10262
|
display_name: string
|
|
10190
10263
|
/** Access (PIN) code for the credential. */
|
|
10191
10264
|
code?: (string | undefined) | null
|
|
10265
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10266
|
+
is_one_time_use?: boolean | undefined
|
|
10192
10267
|
card_number?: (string | undefined) | null
|
|
10193
10268
|
is_issued?: boolean | undefined
|
|
10194
10269
|
issued_at?: (string | undefined) | null
|
|
@@ -10338,6 +10413,8 @@ export interface Routes {
|
|
|
10338
10413
|
display_name: string
|
|
10339
10414
|
/** Access (PIN) code for the credential. */
|
|
10340
10415
|
code?: (string | undefined) | null
|
|
10416
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10417
|
+
is_one_time_use?: boolean | undefined
|
|
10341
10418
|
card_number?: (string | undefined) | null
|
|
10342
10419
|
is_issued?: boolean | undefined
|
|
10343
10420
|
issued_at?: (string | undefined) | null
|
|
@@ -10442,6 +10519,8 @@ export interface Routes {
|
|
|
10442
10519
|
display_name: string
|
|
10443
10520
|
/** Access (PIN) code for the credential. */
|
|
10444
10521
|
code?: (string | undefined) | null
|
|
10522
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
10523
|
+
is_one_time_use?: boolean | undefined
|
|
10445
10524
|
card_number?: (string | undefined) | null
|
|
10446
10525
|
is_issued?: boolean | undefined
|
|
10447
10526
|
issued_at?: (string | undefined) | null
|
|
@@ -11071,6 +11150,8 @@ export interface Routes {
|
|
|
11071
11150
|
display_name: string
|
|
11072
11151
|
/** Access (PIN) code for the credential. */
|
|
11073
11152
|
code?: (string | undefined) | null
|
|
11153
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11154
|
+
is_one_time_use?: boolean | undefined
|
|
11074
11155
|
card_number?: (string | undefined) | null
|
|
11075
11156
|
is_issued?: boolean | undefined
|
|
11076
11157
|
issued_at?: (string | undefined) | null
|
|
@@ -11175,6 +11256,8 @@ export interface Routes {
|
|
|
11175
11256
|
display_name: string
|
|
11176
11257
|
/** Access (PIN) code for the credential. */
|
|
11177
11258
|
code?: (string | undefined) | null
|
|
11259
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11260
|
+
is_one_time_use?: boolean | undefined
|
|
11178
11261
|
card_number?: (string | undefined) | null
|
|
11179
11262
|
is_issued?: boolean | undefined
|
|
11180
11263
|
issued_at?: (string | undefined) | null
|
|
@@ -11324,6 +11407,8 @@ export interface Routes {
|
|
|
11324
11407
|
display_name: string
|
|
11325
11408
|
/** Access (PIN) code for the credential. */
|
|
11326
11409
|
code?: (string | undefined) | null
|
|
11410
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11411
|
+
is_one_time_use?: boolean | undefined
|
|
11327
11412
|
card_number?: (string | undefined) | null
|
|
11328
11413
|
is_issued?: boolean | undefined
|
|
11329
11414
|
issued_at?: (string | undefined) | null
|
|
@@ -11428,6 +11513,8 @@ export interface Routes {
|
|
|
11428
11513
|
display_name: string
|
|
11429
11514
|
/** Access (PIN) code for the credential. */
|
|
11430
11515
|
code?: (string | undefined) | null
|
|
11516
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
11517
|
+
is_one_time_use?: boolean | undefined
|
|
11431
11518
|
card_number?: (string | undefined) | null
|
|
11432
11519
|
is_issued?: boolean | undefined
|
|
11433
11520
|
issued_at?: (string | undefined) | null
|
|
@@ -17990,6 +18077,8 @@ export interface Routes {
|
|
|
17990
18077
|
display_name: string
|
|
17991
18078
|
/** Access (PIN) code for the credential. */
|
|
17992
18079
|
code?: (string | undefined) | null
|
|
18080
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18081
|
+
is_one_time_use?: boolean | undefined
|
|
17993
18082
|
card_number?: (string | undefined) | null
|
|
17994
18083
|
is_issued?: boolean | undefined
|
|
17995
18084
|
issued_at?: (string | undefined) | null
|
|
@@ -18094,6 +18183,8 @@ export interface Routes {
|
|
|
18094
18183
|
display_name: string
|
|
18095
18184
|
/** Access (PIN) code for the credential. */
|
|
18096
18185
|
code?: (string | undefined) | null
|
|
18186
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18187
|
+
is_one_time_use?: boolean | undefined
|
|
18097
18188
|
card_number?: (string | undefined) | null
|
|
18098
18189
|
is_issued?: boolean | undefined
|
|
18099
18190
|
issued_at?: (string | undefined) | null
|
|
@@ -18243,6 +18334,8 @@ export interface Routes {
|
|
|
18243
18334
|
display_name: string
|
|
18244
18335
|
/** Access (PIN) code for the credential. */
|
|
18245
18336
|
code?: (string | undefined) | null
|
|
18337
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18338
|
+
is_one_time_use?: boolean | undefined
|
|
18246
18339
|
card_number?: (string | undefined) | null
|
|
18247
18340
|
is_issued?: boolean | undefined
|
|
18248
18341
|
issued_at?: (string | undefined) | null
|
|
@@ -18347,6 +18440,8 @@ export interface Routes {
|
|
|
18347
18440
|
display_name: string
|
|
18348
18441
|
/** Access (PIN) code for the credential. */
|
|
18349
18442
|
code?: (string | undefined) | null
|
|
18443
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18444
|
+
is_one_time_use?: boolean | undefined
|
|
18350
18445
|
card_number?: (string | undefined) | null
|
|
18351
18446
|
is_issued?: boolean | undefined
|
|
18352
18447
|
issued_at?: (string | undefined) | null
|
|
@@ -18977,6 +19072,8 @@ export interface Routes {
|
|
|
18977
19072
|
display_name: string
|
|
18978
19073
|
/** Access (PIN) code for the credential. */
|
|
18979
19074
|
code?: (string | undefined) | null
|
|
19075
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19076
|
+
is_one_time_use?: boolean | undefined
|
|
18980
19077
|
card_number?: (string | undefined) | null
|
|
18981
19078
|
is_issued?: boolean | undefined
|
|
18982
19079
|
issued_at?: (string | undefined) | null
|
|
@@ -19081,6 +19178,8 @@ export interface Routes {
|
|
|
19081
19178
|
display_name: string
|
|
19082
19179
|
/** Access (PIN) code for the credential. */
|
|
19083
19180
|
code?: (string | undefined) | null
|
|
19181
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19182
|
+
is_one_time_use?: boolean | undefined
|
|
19084
19183
|
card_number?: (string | undefined) | null
|
|
19085
19184
|
is_issued?: boolean | undefined
|
|
19086
19185
|
issued_at?: (string | undefined) | null
|
|
@@ -19230,6 +19329,8 @@ export interface Routes {
|
|
|
19230
19329
|
display_name: string
|
|
19231
19330
|
/** Access (PIN) code for the credential. */
|
|
19232
19331
|
code?: (string | undefined) | null
|
|
19332
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19333
|
+
is_one_time_use?: boolean | undefined
|
|
19233
19334
|
card_number?: (string | undefined) | null
|
|
19234
19335
|
is_issued?: boolean | undefined
|
|
19235
19336
|
issued_at?: (string | undefined) | null
|
|
@@ -19334,6 +19435,8 @@ export interface Routes {
|
|
|
19334
19435
|
display_name: string
|
|
19335
19436
|
/** Access (PIN) code for the credential. */
|
|
19336
19437
|
code?: (string | undefined) | null
|
|
19438
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19439
|
+
is_one_time_use?: boolean | undefined
|
|
19337
19440
|
card_number?: (string | undefined) | null
|
|
19338
19441
|
is_issued?: boolean | undefined
|
|
19339
19442
|
issued_at?: (string | undefined) | null
|
|
@@ -21574,6 +21677,8 @@ export interface Routes {
|
|
|
21574
21677
|
display_name: string
|
|
21575
21678
|
/** Access (PIN) code for the credential. */
|
|
21576
21679
|
code?: (string | undefined) | null
|
|
21680
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21681
|
+
is_one_time_use?: boolean | undefined
|
|
21577
21682
|
card_number?: (string | undefined) | null
|
|
21578
21683
|
is_issued?: boolean | undefined
|
|
21579
21684
|
issued_at?: (string | undefined) | null
|
|
@@ -21678,6 +21783,8 @@ export interface Routes {
|
|
|
21678
21783
|
display_name: string
|
|
21679
21784
|
/** Access (PIN) code for the credential. */
|
|
21680
21785
|
code?: (string | undefined) | null
|
|
21786
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21787
|
+
is_one_time_use?: boolean | undefined
|
|
21681
21788
|
card_number?: (string | undefined) | null
|
|
21682
21789
|
is_issued?: boolean | undefined
|
|
21683
21790
|
issued_at?: (string | undefined) | null
|
|
@@ -21827,6 +21934,8 @@ export interface Routes {
|
|
|
21827
21934
|
display_name: string
|
|
21828
21935
|
/** Access (PIN) code for the credential. */
|
|
21829
21936
|
code?: (string | undefined) | null
|
|
21937
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21938
|
+
is_one_time_use?: boolean | undefined
|
|
21830
21939
|
card_number?: (string | undefined) | null
|
|
21831
21940
|
is_issued?: boolean | undefined
|
|
21832
21941
|
issued_at?: (string | undefined) | null
|
|
@@ -21931,6 +22040,8 @@ export interface Routes {
|
|
|
21931
22040
|
display_name: string
|
|
21932
22041
|
/** Access (PIN) code for the credential. */
|
|
21933
22042
|
code?: (string | undefined) | null
|
|
22043
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22044
|
+
is_one_time_use?: boolean | undefined
|
|
21934
22045
|
card_number?: (string | undefined) | null
|
|
21935
22046
|
is_issued?: boolean | undefined
|
|
21936
22047
|
issued_at?: (string | undefined) | null
|
|
@@ -22571,6 +22682,8 @@ export interface Routes {
|
|
|
22571
22682
|
display_name: string
|
|
22572
22683
|
/** Access (PIN) code for the credential. */
|
|
22573
22684
|
code?: (string | undefined) | null
|
|
22685
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22686
|
+
is_one_time_use?: boolean | undefined
|
|
22574
22687
|
card_number?: (string | undefined) | null
|
|
22575
22688
|
is_issued?: boolean | undefined
|
|
22576
22689
|
issued_at?: (string | undefined) | null
|
|
@@ -22675,6 +22788,8 @@ export interface Routes {
|
|
|
22675
22788
|
display_name: string
|
|
22676
22789
|
/** Access (PIN) code for the credential. */
|
|
22677
22790
|
code?: (string | undefined) | null
|
|
22791
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22792
|
+
is_one_time_use?: boolean | undefined
|
|
22678
22793
|
card_number?: (string | undefined) | null
|
|
22679
22794
|
is_issued?: boolean | undefined
|
|
22680
22795
|
issued_at?: (string | undefined) | null
|
|
@@ -22824,6 +22939,8 @@ export interface Routes {
|
|
|
22824
22939
|
display_name: string
|
|
22825
22940
|
/** Access (PIN) code for the credential. */
|
|
22826
22941
|
code?: (string | undefined) | null
|
|
22942
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22943
|
+
is_one_time_use?: boolean | undefined
|
|
22827
22944
|
card_number?: (string | undefined) | null
|
|
22828
22945
|
is_issued?: boolean | undefined
|
|
22829
22946
|
issued_at?: (string | undefined) | null
|
|
@@ -22928,6 +23045,8 @@ export interface Routes {
|
|
|
22928
23045
|
display_name: string
|
|
22929
23046
|
/** Access (PIN) code for the credential. */
|
|
22930
23047
|
code?: (string | undefined) | null
|
|
23048
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23049
|
+
is_one_time_use?: boolean | undefined
|
|
22931
23050
|
card_number?: (string | undefined) | null
|
|
22932
23051
|
is_issued?: boolean | undefined
|
|
22933
23052
|
issued_at?: (string | undefined) | null
|
|
@@ -23607,6 +23726,8 @@ export interface Routes {
|
|
|
23607
23726
|
display_name: string
|
|
23608
23727
|
/** Access (PIN) code for the credential. */
|
|
23609
23728
|
code?: (string | undefined) | null
|
|
23729
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23730
|
+
is_one_time_use?: boolean | undefined
|
|
23610
23731
|
card_number?: (string | undefined) | null
|
|
23611
23732
|
is_issued?: boolean | undefined
|
|
23612
23733
|
issued_at?: (string | undefined) | null
|
|
@@ -23711,6 +23832,8 @@ export interface Routes {
|
|
|
23711
23832
|
display_name: string
|
|
23712
23833
|
/** Access (PIN) code for the credential. */
|
|
23713
23834
|
code?: (string | undefined) | null
|
|
23835
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23836
|
+
is_one_time_use?: boolean | undefined
|
|
23714
23837
|
card_number?: (string | undefined) | null
|
|
23715
23838
|
is_issued?: boolean | undefined
|
|
23716
23839
|
issued_at?: (string | undefined) | null
|
|
@@ -23860,6 +23983,8 @@ export interface Routes {
|
|
|
23860
23983
|
display_name: string
|
|
23861
23984
|
/** Access (PIN) code for the credential. */
|
|
23862
23985
|
code?: (string | undefined) | null
|
|
23986
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23987
|
+
is_one_time_use?: boolean | undefined
|
|
23863
23988
|
card_number?: (string | undefined) | null
|
|
23864
23989
|
is_issued?: boolean | undefined
|
|
23865
23990
|
issued_at?: (string | undefined) | null
|
|
@@ -23964,6 +24089,8 @@ export interface Routes {
|
|
|
23964
24089
|
display_name: string
|
|
23965
24090
|
/** Access (PIN) code for the credential. */
|
|
23966
24091
|
code?: (string | undefined) | null
|
|
24092
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
24093
|
+
is_one_time_use?: boolean | undefined
|
|
23967
24094
|
card_number?: (string | undefined) | null
|
|
23968
24095
|
is_issued?: boolean | undefined
|
|
23969
24096
|
issued_at?: (string | undefined) | null
|
|
@@ -24802,6 +24929,8 @@ export interface Routes {
|
|
|
24802
24929
|
display_name: string
|
|
24803
24930
|
/** Access (PIN) code for the credential. */
|
|
24804
24931
|
code?: (string | undefined) | null
|
|
24932
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
24933
|
+
is_one_time_use?: boolean | undefined
|
|
24805
24934
|
card_number?: (string | undefined) | null
|
|
24806
24935
|
is_issued?: boolean | undefined
|
|
24807
24936
|
issued_at?: (string | undefined) | null
|
|
@@ -24906,6 +25035,8 @@ export interface Routes {
|
|
|
24906
25035
|
display_name: string
|
|
24907
25036
|
/** Access (PIN) code for the credential. */
|
|
24908
25037
|
code?: (string | undefined) | null
|
|
25038
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25039
|
+
is_one_time_use?: boolean | undefined
|
|
24909
25040
|
card_number?: (string | undefined) | null
|
|
24910
25041
|
is_issued?: boolean | undefined
|
|
24911
25042
|
issued_at?: (string | undefined) | null
|
|
@@ -25055,6 +25186,8 @@ export interface Routes {
|
|
|
25055
25186
|
display_name: string
|
|
25056
25187
|
/** Access (PIN) code for the credential. */
|
|
25057
25188
|
code?: (string | undefined) | null
|
|
25189
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25190
|
+
is_one_time_use?: boolean | undefined
|
|
25058
25191
|
card_number?: (string | undefined) | null
|
|
25059
25192
|
is_issued?: boolean | undefined
|
|
25060
25193
|
issued_at?: (string | undefined) | null
|
|
@@ -25159,6 +25292,8 @@ export interface Routes {
|
|
|
25159
25292
|
display_name: string
|
|
25160
25293
|
/** Access (PIN) code for the credential. */
|
|
25161
25294
|
code?: (string | undefined) | null
|
|
25295
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25296
|
+
is_one_time_use?: boolean | undefined
|
|
25162
25297
|
card_number?: (string | undefined) | null
|
|
25163
25298
|
is_issued?: boolean | undefined
|
|
25164
25299
|
issued_at?: (string | undefined) | null
|
|
@@ -25795,6 +25930,8 @@ export interface Routes {
|
|
|
25795
25930
|
display_name: string
|
|
25796
25931
|
/** Access (PIN) code for the credential. */
|
|
25797
25932
|
code?: (string | undefined) | null
|
|
25933
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25934
|
+
is_one_time_use?: boolean | undefined
|
|
25798
25935
|
card_number?: (string | undefined) | null
|
|
25799
25936
|
is_issued?: boolean | undefined
|
|
25800
25937
|
issued_at?: (string | undefined) | null
|
|
@@ -25899,6 +26036,8 @@ export interface Routes {
|
|
|
25899
26036
|
display_name: string
|
|
25900
26037
|
/** Access (PIN) code for the credential. */
|
|
25901
26038
|
code?: (string | undefined) | null
|
|
26039
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26040
|
+
is_one_time_use?: boolean | undefined
|
|
25902
26041
|
card_number?: (string | undefined) | null
|
|
25903
26042
|
is_issued?: boolean | undefined
|
|
25904
26043
|
issued_at?: (string | undefined) | null
|
|
@@ -26048,6 +26187,8 @@ export interface Routes {
|
|
|
26048
26187
|
display_name: string
|
|
26049
26188
|
/** Access (PIN) code for the credential. */
|
|
26050
26189
|
code?: (string | undefined) | null
|
|
26190
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26191
|
+
is_one_time_use?: boolean | undefined
|
|
26051
26192
|
card_number?: (string | undefined) | null
|
|
26052
26193
|
is_issued?: boolean | undefined
|
|
26053
26194
|
issued_at?: (string | undefined) | null
|
|
@@ -26152,6 +26293,8 @@ export interface Routes {
|
|
|
26152
26293
|
display_name: string
|
|
26153
26294
|
/** Access (PIN) code for the credential. */
|
|
26154
26295
|
code?: (string | undefined) | null
|
|
26296
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26297
|
+
is_one_time_use?: boolean | undefined
|
|
26155
26298
|
card_number?: (string | undefined) | null
|
|
26156
26299
|
is_issued?: boolean | undefined
|
|
26157
26300
|
issued_at?: (string | undefined) | null
|
|
@@ -27541,6 +27684,8 @@ export interface Routes {
|
|
|
27541
27684
|
display_name: string
|
|
27542
27685
|
/** Access (PIN) code for the credential. */
|
|
27543
27686
|
code?: (string | undefined) | null
|
|
27687
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27688
|
+
is_one_time_use?: boolean | undefined
|
|
27544
27689
|
card_number?: (string | undefined) | null
|
|
27545
27690
|
is_issued?: boolean | undefined
|
|
27546
27691
|
issued_at?: (string | undefined) | null
|
|
@@ -27645,6 +27790,8 @@ export interface Routes {
|
|
|
27645
27790
|
display_name: string
|
|
27646
27791
|
/** Access (PIN) code for the credential. */
|
|
27647
27792
|
code?: (string | undefined) | null
|
|
27793
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27794
|
+
is_one_time_use?: boolean | undefined
|
|
27648
27795
|
card_number?: (string | undefined) | null
|
|
27649
27796
|
is_issued?: boolean | undefined
|
|
27650
27797
|
issued_at?: (string | undefined) | null
|
|
@@ -27794,6 +27941,8 @@ export interface Routes {
|
|
|
27794
27941
|
display_name: string
|
|
27795
27942
|
/** Access (PIN) code for the credential. */
|
|
27796
27943
|
code?: (string | undefined) | null
|
|
27944
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27945
|
+
is_one_time_use?: boolean | undefined
|
|
27797
27946
|
card_number?: (string | undefined) | null
|
|
27798
27947
|
is_issued?: boolean | undefined
|
|
27799
27948
|
issued_at?: (string | undefined) | null
|
|
@@ -27898,6 +28047,8 @@ export interface Routes {
|
|
|
27898
28047
|
display_name: string
|
|
27899
28048
|
/** Access (PIN) code for the credential. */
|
|
27900
28049
|
code?: (string | undefined) | null
|
|
28050
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28051
|
+
is_one_time_use?: boolean | undefined
|
|
27901
28052
|
card_number?: (string | undefined) | null
|
|
27902
28053
|
is_issued?: boolean | undefined
|
|
27903
28054
|
issued_at?: (string | undefined) | null
|
|
@@ -28538,6 +28689,8 @@ export interface Routes {
|
|
|
28538
28689
|
display_name: string
|
|
28539
28690
|
/** Access (PIN) code for the credential. */
|
|
28540
28691
|
code?: (string | undefined) | null
|
|
28692
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28693
|
+
is_one_time_use?: boolean | undefined
|
|
28541
28694
|
card_number?: (string | undefined) | null
|
|
28542
28695
|
is_issued?: boolean | undefined
|
|
28543
28696
|
issued_at?: (string | undefined) | null
|
|
@@ -28642,6 +28795,8 @@ export interface Routes {
|
|
|
28642
28795
|
display_name: string
|
|
28643
28796
|
/** Access (PIN) code for the credential. */
|
|
28644
28797
|
code?: (string | undefined) | null
|
|
28798
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28799
|
+
is_one_time_use?: boolean | undefined
|
|
28645
28800
|
card_number?: (string | undefined) | null
|
|
28646
28801
|
is_issued?: boolean | undefined
|
|
28647
28802
|
issued_at?: (string | undefined) | null
|
|
@@ -28791,6 +28946,8 @@ export interface Routes {
|
|
|
28791
28946
|
display_name: string
|
|
28792
28947
|
/** Access (PIN) code for the credential. */
|
|
28793
28948
|
code?: (string | undefined) | null
|
|
28949
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
28950
|
+
is_one_time_use?: boolean | undefined
|
|
28794
28951
|
card_number?: (string | undefined) | null
|
|
28795
28952
|
is_issued?: boolean | undefined
|
|
28796
28953
|
issued_at?: (string | undefined) | null
|
|
@@ -28895,6 +29052,8 @@ export interface Routes {
|
|
|
28895
29052
|
display_name: string
|
|
28896
29053
|
/** Access (PIN) code for the credential. */
|
|
28897
29054
|
code?: (string | undefined) | null
|
|
29055
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29056
|
+
is_one_time_use?: boolean | undefined
|
|
28898
29057
|
card_number?: (string | undefined) | null
|
|
28899
29058
|
is_issued?: boolean | undefined
|
|
28900
29059
|
issued_at?: (string | undefined) | null
|
|
@@ -31098,6 +31257,8 @@ export interface Routes {
|
|
|
31098
31257
|
display_name: string
|
|
31099
31258
|
/** Access (PIN) code for the credential. */
|
|
31100
31259
|
code?: (string | undefined) | null
|
|
31260
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31261
|
+
is_one_time_use?: boolean | undefined
|
|
31101
31262
|
card_number?: (string | undefined) | null
|
|
31102
31263
|
is_issued?: boolean | undefined
|
|
31103
31264
|
issued_at?: (string | undefined) | null
|
|
@@ -31202,6 +31363,8 @@ export interface Routes {
|
|
|
31202
31363
|
display_name: string
|
|
31203
31364
|
/** Access (PIN) code for the credential. */
|
|
31204
31365
|
code?: (string | undefined) | null
|
|
31366
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31367
|
+
is_one_time_use?: boolean | undefined
|
|
31205
31368
|
card_number?: (string | undefined) | null
|
|
31206
31369
|
is_issued?: boolean | undefined
|
|
31207
31370
|
issued_at?: (string | undefined) | null
|
|
@@ -31351,6 +31514,8 @@ export interface Routes {
|
|
|
31351
31514
|
display_name: string
|
|
31352
31515
|
/** Access (PIN) code for the credential. */
|
|
31353
31516
|
code?: (string | undefined) | null
|
|
31517
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31518
|
+
is_one_time_use?: boolean | undefined
|
|
31354
31519
|
card_number?: (string | undefined) | null
|
|
31355
31520
|
is_issued?: boolean | undefined
|
|
31356
31521
|
issued_at?: (string | undefined) | null
|
|
@@ -31455,6 +31620,8 @@ export interface Routes {
|
|
|
31455
31620
|
display_name: string
|
|
31456
31621
|
/** Access (PIN) code for the credential. */
|
|
31457
31622
|
code?: (string | undefined) | null
|
|
31623
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
31624
|
+
is_one_time_use?: boolean | undefined
|
|
31458
31625
|
card_number?: (string | undefined) | null
|
|
31459
31626
|
is_issued?: boolean | undefined
|
|
31460
31627
|
issued_at?: (string | undefined) | null
|
|
@@ -32260,6 +32427,8 @@ export interface Routes {
|
|
|
32260
32427
|
display_name: string
|
|
32261
32428
|
/** Access (PIN) code for the credential. */
|
|
32262
32429
|
code?: (string | undefined) | null
|
|
32430
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32431
|
+
is_one_time_use?: boolean | undefined
|
|
32263
32432
|
card_number?: (string | undefined) | null
|
|
32264
32433
|
is_issued?: boolean | undefined
|
|
32265
32434
|
issued_at?: (string | undefined) | null
|
|
@@ -32364,6 +32533,8 @@ export interface Routes {
|
|
|
32364
32533
|
display_name: string
|
|
32365
32534
|
/** Access (PIN) code for the credential. */
|
|
32366
32535
|
code?: (string | undefined) | null
|
|
32536
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32537
|
+
is_one_time_use?: boolean | undefined
|
|
32367
32538
|
card_number?: (string | undefined) | null
|
|
32368
32539
|
is_issued?: boolean | undefined
|
|
32369
32540
|
issued_at?: (string | undefined) | null
|
|
@@ -32513,6 +32684,8 @@ export interface Routes {
|
|
|
32513
32684
|
display_name: string
|
|
32514
32685
|
/** Access (PIN) code for the credential. */
|
|
32515
32686
|
code?: (string | undefined) | null
|
|
32687
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32688
|
+
is_one_time_use?: boolean | undefined
|
|
32516
32689
|
card_number?: (string | undefined) | null
|
|
32517
32690
|
is_issued?: boolean | undefined
|
|
32518
32691
|
issued_at?: (string | undefined) | null
|
|
@@ -32617,6 +32790,8 @@ export interface Routes {
|
|
|
32617
32790
|
display_name: string
|
|
32618
32791
|
/** Access (PIN) code for the credential. */
|
|
32619
32792
|
code?: (string | undefined) | null
|
|
32793
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
32794
|
+
is_one_time_use?: boolean | undefined
|
|
32620
32795
|
card_number?: (string | undefined) | null
|
|
32621
32796
|
is_issued?: boolean | undefined
|
|
32622
32797
|
issued_at?: (string | undefined) | null
|
|
@@ -33280,6 +33455,8 @@ export interface Routes {
|
|
|
33280
33455
|
display_name: string
|
|
33281
33456
|
/** Access (PIN) code for the credential. */
|
|
33282
33457
|
code?: (string | undefined) | null
|
|
33458
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33459
|
+
is_one_time_use?: boolean | undefined
|
|
33283
33460
|
card_number?: (string | undefined) | null
|
|
33284
33461
|
is_issued?: boolean | undefined
|
|
33285
33462
|
issued_at?: (string | undefined) | null
|
|
@@ -33384,6 +33561,8 @@ export interface Routes {
|
|
|
33384
33561
|
display_name: string
|
|
33385
33562
|
/** Access (PIN) code for the credential. */
|
|
33386
33563
|
code?: (string | undefined) | null
|
|
33564
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33565
|
+
is_one_time_use?: boolean | undefined
|
|
33387
33566
|
card_number?: (string | undefined) | null
|
|
33388
33567
|
is_issued?: boolean | undefined
|
|
33389
33568
|
issued_at?: (string | undefined) | null
|
|
@@ -33533,6 +33712,8 @@ export interface Routes {
|
|
|
33533
33712
|
display_name: string
|
|
33534
33713
|
/** Access (PIN) code for the credential. */
|
|
33535
33714
|
code?: (string | undefined) | null
|
|
33715
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33716
|
+
is_one_time_use?: boolean | undefined
|
|
33536
33717
|
card_number?: (string | undefined) | null
|
|
33537
33718
|
is_issued?: boolean | undefined
|
|
33538
33719
|
issued_at?: (string | undefined) | null
|
|
@@ -33637,6 +33818,8 @@ export interface Routes {
|
|
|
33637
33818
|
display_name: string
|
|
33638
33819
|
/** Access (PIN) code for the credential. */
|
|
33639
33820
|
code?: (string | undefined) | null
|
|
33821
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
33822
|
+
is_one_time_use?: boolean | undefined
|
|
33640
33823
|
card_number?: (string | undefined) | null
|
|
33641
33824
|
is_issued?: boolean | undefined
|
|
33642
33825
|
issued_at?: (string | undefined) | null
|
|
@@ -36418,6 +36601,8 @@ export interface Routes {
|
|
|
36418
36601
|
display_name: string
|
|
36419
36602
|
/** Access (PIN) code for the credential. */
|
|
36420
36603
|
code?: (string | undefined) | null
|
|
36604
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36605
|
+
is_one_time_use?: boolean | undefined
|
|
36421
36606
|
card_number?: (string | undefined) | null
|
|
36422
36607
|
is_issued?: boolean | undefined
|
|
36423
36608
|
issued_at?: (string | undefined) | null
|
|
@@ -36522,6 +36707,8 @@ export interface Routes {
|
|
|
36522
36707
|
display_name: string
|
|
36523
36708
|
/** Access (PIN) code for the credential. */
|
|
36524
36709
|
code?: (string | undefined) | null
|
|
36710
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36711
|
+
is_one_time_use?: boolean | undefined
|
|
36525
36712
|
card_number?: (string | undefined) | null
|
|
36526
36713
|
is_issued?: boolean | undefined
|
|
36527
36714
|
issued_at?: (string | undefined) | null
|
|
@@ -36671,6 +36858,8 @@ export interface Routes {
|
|
|
36671
36858
|
display_name: string
|
|
36672
36859
|
/** Access (PIN) code for the credential. */
|
|
36673
36860
|
code?: (string | undefined) | null
|
|
36861
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36862
|
+
is_one_time_use?: boolean | undefined
|
|
36674
36863
|
card_number?: (string | undefined) | null
|
|
36675
36864
|
is_issued?: boolean | undefined
|
|
36676
36865
|
issued_at?: (string | undefined) | null
|
|
@@ -36775,6 +36964,8 @@ export interface Routes {
|
|
|
36775
36964
|
display_name: string
|
|
36776
36965
|
/** Access (PIN) code for the credential. */
|
|
36777
36966
|
code?: (string | undefined) | null
|
|
36967
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
36968
|
+
is_one_time_use?: boolean | undefined
|
|
36778
36969
|
card_number?: (string | undefined) | null
|
|
36779
36970
|
is_issued?: boolean | undefined
|
|
36780
36971
|
issued_at?: (string | undefined) | null
|