@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
|
@@ -129,6 +129,8 @@ export interface Routes {
|
|
|
129
129
|
display_name: string;
|
|
130
130
|
/** Access (PIN) code for the credential. */
|
|
131
131
|
code?: (string | undefined) | null;
|
|
132
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
133
|
+
is_one_time_use?: boolean | undefined;
|
|
132
134
|
card_number?: (string | undefined) | null;
|
|
133
135
|
is_issued?: boolean | undefined;
|
|
134
136
|
issued_at?: (string | undefined) | null;
|
|
@@ -213,6 +215,8 @@ export interface Routes {
|
|
|
213
215
|
display_name: string;
|
|
214
216
|
/** Access (PIN) code for the credential. */
|
|
215
217
|
code?: (string | undefined) | null;
|
|
218
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
219
|
+
is_one_time_use?: boolean | undefined;
|
|
216
220
|
card_number?: (string | undefined) | null;
|
|
217
221
|
is_issued?: boolean | undefined;
|
|
218
222
|
issued_at?: (string | undefined) | null;
|
|
@@ -334,6 +338,8 @@ export interface Routes {
|
|
|
334
338
|
display_name: string;
|
|
335
339
|
/** Access (PIN) code for the credential. */
|
|
336
340
|
code?: (string | undefined) | null;
|
|
341
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
342
|
+
is_one_time_use?: boolean | undefined;
|
|
337
343
|
card_number?: (string | undefined) | null;
|
|
338
344
|
is_issued?: boolean | undefined;
|
|
339
345
|
issued_at?: (string | undefined) | null;
|
|
@@ -418,6 +424,8 @@ export interface Routes {
|
|
|
418
424
|
display_name: string;
|
|
419
425
|
/** Access (PIN) code for the credential. */
|
|
420
426
|
code?: (string | undefined) | null;
|
|
427
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
428
|
+
is_one_time_use?: boolean | undefined;
|
|
421
429
|
card_number?: (string | undefined) | null;
|
|
422
430
|
is_issued?: boolean | undefined;
|
|
423
431
|
issued_at?: (string | undefined) | null;
|
|
@@ -1120,6 +1128,8 @@ export interface Routes {
|
|
|
1120
1128
|
display_name: string;
|
|
1121
1129
|
/** Access (PIN) code for the credential. */
|
|
1122
1130
|
code?: (string | undefined) | null;
|
|
1131
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1132
|
+
is_one_time_use?: boolean | undefined;
|
|
1123
1133
|
card_number?: (string | undefined) | null;
|
|
1124
1134
|
is_issued?: boolean | undefined;
|
|
1125
1135
|
issued_at?: (string | undefined) | null;
|
|
@@ -1204,6 +1214,8 @@ export interface Routes {
|
|
|
1204
1214
|
display_name: string;
|
|
1205
1215
|
/** Access (PIN) code for the credential. */
|
|
1206
1216
|
code?: (string | undefined) | null;
|
|
1217
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1218
|
+
is_one_time_use?: boolean | undefined;
|
|
1207
1219
|
card_number?: (string | undefined) | null;
|
|
1208
1220
|
is_issued?: boolean | undefined;
|
|
1209
1221
|
issued_at?: (string | undefined) | null;
|
|
@@ -1325,6 +1337,8 @@ export interface Routes {
|
|
|
1325
1337
|
display_name: string;
|
|
1326
1338
|
/** Access (PIN) code for the credential. */
|
|
1327
1339
|
code?: (string | undefined) | null;
|
|
1340
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1341
|
+
is_one_time_use?: boolean | undefined;
|
|
1328
1342
|
card_number?: (string | undefined) | null;
|
|
1329
1343
|
is_issued?: boolean | undefined;
|
|
1330
1344
|
issued_at?: (string | undefined) | null;
|
|
@@ -1409,6 +1423,8 @@ export interface Routes {
|
|
|
1409
1423
|
display_name: string;
|
|
1410
1424
|
/** Access (PIN) code for the credential. */
|
|
1411
1425
|
code?: (string | undefined) | null;
|
|
1426
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
1427
|
+
is_one_time_use?: boolean | undefined;
|
|
1412
1428
|
card_number?: (string | undefined) | null;
|
|
1413
1429
|
is_issued?: boolean | undefined;
|
|
1414
1430
|
issued_at?: (string | undefined) | null;
|
|
@@ -2329,6 +2345,8 @@ export interface Routes {
|
|
|
2329
2345
|
display_name: string;
|
|
2330
2346
|
/** Access (PIN) code for the credential. */
|
|
2331
2347
|
code?: (string | undefined) | null;
|
|
2348
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2349
|
+
is_one_time_use?: boolean | undefined;
|
|
2332
2350
|
card_number?: (string | undefined) | null;
|
|
2333
2351
|
is_issued?: boolean | undefined;
|
|
2334
2352
|
issued_at?: (string | undefined) | null;
|
|
@@ -2413,6 +2431,8 @@ export interface Routes {
|
|
|
2413
2431
|
display_name: string;
|
|
2414
2432
|
/** Access (PIN) code for the credential. */
|
|
2415
2433
|
code?: (string | undefined) | null;
|
|
2434
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2435
|
+
is_one_time_use?: boolean | undefined;
|
|
2416
2436
|
card_number?: (string | undefined) | null;
|
|
2417
2437
|
is_issued?: boolean | undefined;
|
|
2418
2438
|
issued_at?: (string | undefined) | null;
|
|
@@ -2534,6 +2554,8 @@ export interface Routes {
|
|
|
2534
2554
|
display_name: string;
|
|
2535
2555
|
/** Access (PIN) code for the credential. */
|
|
2536
2556
|
code?: (string | undefined) | null;
|
|
2557
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2558
|
+
is_one_time_use?: boolean | undefined;
|
|
2537
2559
|
card_number?: (string | undefined) | null;
|
|
2538
2560
|
is_issued?: boolean | undefined;
|
|
2539
2561
|
issued_at?: (string | undefined) | null;
|
|
@@ -2618,6 +2640,8 @@ export interface Routes {
|
|
|
2618
2640
|
display_name: string;
|
|
2619
2641
|
/** Access (PIN) code for the credential. */
|
|
2620
2642
|
code?: (string | undefined) | null;
|
|
2643
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2644
|
+
is_one_time_use?: boolean | undefined;
|
|
2621
2645
|
card_number?: (string | undefined) | null;
|
|
2622
2646
|
is_issued?: boolean | undefined;
|
|
2623
2647
|
issued_at?: (string | undefined) | null;
|
|
@@ -3307,6 +3331,8 @@ export interface Routes {
|
|
|
3307
3331
|
display_name: string;
|
|
3308
3332
|
/** Access (PIN) code for the credential. */
|
|
3309
3333
|
code?: (string | undefined) | null;
|
|
3334
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3335
|
+
is_one_time_use?: boolean | undefined;
|
|
3310
3336
|
card_number?: (string | undefined) | null;
|
|
3311
3337
|
is_issued?: boolean | undefined;
|
|
3312
3338
|
issued_at?: (string | undefined) | null;
|
|
@@ -3391,6 +3417,8 @@ export interface Routes {
|
|
|
3391
3417
|
display_name: string;
|
|
3392
3418
|
/** Access (PIN) code for the credential. */
|
|
3393
3419
|
code?: (string | undefined) | null;
|
|
3420
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3421
|
+
is_one_time_use?: boolean | undefined;
|
|
3394
3422
|
card_number?: (string | undefined) | null;
|
|
3395
3423
|
is_issued?: boolean | undefined;
|
|
3396
3424
|
issued_at?: (string | undefined) | null;
|
|
@@ -3512,6 +3540,8 @@ export interface Routes {
|
|
|
3512
3540
|
display_name: string;
|
|
3513
3541
|
/** Access (PIN) code for the credential. */
|
|
3514
3542
|
code?: (string | undefined) | null;
|
|
3543
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3544
|
+
is_one_time_use?: boolean | undefined;
|
|
3515
3545
|
card_number?: (string | undefined) | null;
|
|
3516
3546
|
is_issued?: boolean | undefined;
|
|
3517
3547
|
issued_at?: (string | undefined) | null;
|
|
@@ -3596,6 +3626,8 @@ export interface Routes {
|
|
|
3596
3626
|
display_name: string;
|
|
3597
3627
|
/** Access (PIN) code for the credential. */
|
|
3598
3628
|
code?: (string | undefined) | null;
|
|
3629
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3630
|
+
is_one_time_use?: boolean | undefined;
|
|
3599
3631
|
card_number?: (string | undefined) | null;
|
|
3600
3632
|
is_issued?: boolean | undefined;
|
|
3601
3633
|
issued_at?: (string | undefined) | null;
|
|
@@ -4466,6 +4498,8 @@ export interface Routes {
|
|
|
4466
4498
|
display_name: string;
|
|
4467
4499
|
/** Access (PIN) code for the credential. */
|
|
4468
4500
|
code?: (string | undefined) | null;
|
|
4501
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4502
|
+
is_one_time_use?: boolean | undefined;
|
|
4469
4503
|
card_number?: (string | undefined) | null;
|
|
4470
4504
|
is_issued?: boolean | undefined;
|
|
4471
4505
|
issued_at?: (string | undefined) | null;
|
|
@@ -4600,6 +4634,8 @@ export interface Routes {
|
|
|
4600
4634
|
display_name: string;
|
|
4601
4635
|
/** Access (PIN) code for the credential. */
|
|
4602
4636
|
code?: (string | undefined) | null;
|
|
4637
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4638
|
+
is_one_time_use?: boolean | undefined;
|
|
4603
4639
|
card_number?: (string | undefined) | null;
|
|
4604
4640
|
is_issued?: boolean | undefined;
|
|
4605
4641
|
issued_at?: (string | undefined) | null;
|
|
@@ -4682,7 +4718,7 @@ export interface Routes {
|
|
|
4682
4718
|
/** ID of the ACS user to whom the new credential belongs. */
|
|
4683
4719
|
acs_user_id: string;
|
|
4684
4720
|
/** IDs of the [`acs_entrance`s](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) for which the new credential grants access. */
|
|
4685
|
-
allowed_acs_entrance_id
|
|
4721
|
+
allowed_acs_entrance_id: string;
|
|
4686
4722
|
/** Indicates whether the code is one-time-use or reusable. */
|
|
4687
4723
|
is_one_time_use?: boolean;
|
|
4688
4724
|
/** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -4708,6 +4744,8 @@ export interface Routes {
|
|
|
4708
4744
|
display_name: string;
|
|
4709
4745
|
/** Access (PIN) code for the credential. */
|
|
4710
4746
|
code?: (string | undefined) | null;
|
|
4747
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4748
|
+
is_one_time_use?: boolean | undefined;
|
|
4711
4749
|
card_number?: (string | undefined) | null;
|
|
4712
4750
|
is_issued?: boolean | undefined;
|
|
4713
4751
|
issued_at?: (string | undefined) | null;
|
|
@@ -4820,6 +4858,8 @@ export interface Routes {
|
|
|
4820
4858
|
display_name: string;
|
|
4821
4859
|
/** Access (PIN) code for the credential. */
|
|
4822
4860
|
code?: (string | undefined) | null;
|
|
4861
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4862
|
+
is_one_time_use?: boolean | undefined;
|
|
4823
4863
|
card_number?: (string | undefined) | null;
|
|
4824
4864
|
is_issued?: boolean | undefined;
|
|
4825
4865
|
issued_at?: (string | undefined) | null;
|
|
@@ -4936,6 +4976,8 @@ export interface Routes {
|
|
|
4936
4976
|
display_name: string;
|
|
4937
4977
|
/** Access (PIN) code for the credential. */
|
|
4938
4978
|
code?: (string | undefined) | null;
|
|
4979
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
4980
|
+
is_one_time_use?: boolean | undefined;
|
|
4939
4981
|
card_number?: (string | undefined) | null;
|
|
4940
4982
|
is_issued?: boolean | undefined;
|
|
4941
4983
|
issued_at?: (string | undefined) | null;
|
|
@@ -5099,6 +5141,8 @@ export interface Routes {
|
|
|
5099
5141
|
display_name: string;
|
|
5100
5142
|
/** Access (PIN) code for the credential. */
|
|
5101
5143
|
code?: (string | undefined) | null;
|
|
5144
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5145
|
+
is_one_time_use?: boolean | undefined;
|
|
5102
5146
|
card_number?: (string | undefined) | null;
|
|
5103
5147
|
is_issued?: boolean | undefined;
|
|
5104
5148
|
issued_at?: (string | undefined) | null;
|
|
@@ -5199,6 +5243,8 @@ export interface Routes {
|
|
|
5199
5243
|
display_name: string;
|
|
5200
5244
|
/** Access (PIN) code for the credential. */
|
|
5201
5245
|
code?: (string | undefined) | null;
|
|
5246
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5247
|
+
is_one_time_use?: boolean | undefined;
|
|
5202
5248
|
card_number?: (string | undefined) | null;
|
|
5203
5249
|
is_issued?: boolean | undefined;
|
|
5204
5250
|
issued_at?: (string | undefined) | null;
|
|
@@ -5308,6 +5354,8 @@ export interface Routes {
|
|
|
5308
5354
|
display_name: string;
|
|
5309
5355
|
/** Access (PIN) code for the credential. */
|
|
5310
5356
|
code?: (string | undefined) | null;
|
|
5357
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5358
|
+
is_one_time_use?: boolean | undefined;
|
|
5311
5359
|
card_number?: (string | undefined) | null;
|
|
5312
5360
|
is_issued?: boolean | undefined;
|
|
5313
5361
|
issued_at?: (string | undefined) | null;
|
|
@@ -5412,6 +5460,8 @@ export interface Routes {
|
|
|
5412
5460
|
display_name: string;
|
|
5413
5461
|
/** Access (PIN) code for the credential. */
|
|
5414
5462
|
code?: (string | undefined) | null;
|
|
5463
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5464
|
+
is_one_time_use?: boolean | undefined;
|
|
5415
5465
|
card_number?: (string | undefined) | null;
|
|
5416
5466
|
is_issued?: boolean | undefined;
|
|
5417
5467
|
issued_at?: (string | undefined) | null;
|
|
@@ -5602,6 +5652,8 @@ export interface Routes {
|
|
|
5602
5652
|
display_name: string;
|
|
5603
5653
|
/** Access (PIN) code for the credential. */
|
|
5604
5654
|
code?: (string | undefined) | null;
|
|
5655
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5656
|
+
is_one_time_use?: boolean | undefined;
|
|
5605
5657
|
card_number?: (string | undefined) | null;
|
|
5606
5658
|
is_issued?: boolean | undefined;
|
|
5607
5659
|
issued_at?: (string | undefined) | null;
|
|
@@ -5686,6 +5738,8 @@ export interface Routes {
|
|
|
5686
5738
|
display_name: string;
|
|
5687
5739
|
/** Access (PIN) code for the credential. */
|
|
5688
5740
|
code?: (string | undefined) | null;
|
|
5741
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5742
|
+
is_one_time_use?: boolean | undefined;
|
|
5689
5743
|
card_number?: (string | undefined) | null;
|
|
5690
5744
|
is_issued?: boolean | undefined;
|
|
5691
5745
|
issued_at?: (string | undefined) | null;
|
|
@@ -5807,6 +5861,8 @@ export interface Routes {
|
|
|
5807
5861
|
display_name: string;
|
|
5808
5862
|
/** Access (PIN) code for the credential. */
|
|
5809
5863
|
code?: (string | undefined) | null;
|
|
5864
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5865
|
+
is_one_time_use?: boolean | undefined;
|
|
5810
5866
|
card_number?: (string | undefined) | null;
|
|
5811
5867
|
is_issued?: boolean | undefined;
|
|
5812
5868
|
issued_at?: (string | undefined) | null;
|
|
@@ -5891,6 +5947,8 @@ export interface Routes {
|
|
|
5891
5947
|
display_name: string;
|
|
5892
5948
|
/** Access (PIN) code for the credential. */
|
|
5893
5949
|
code?: (string | undefined) | null;
|
|
5950
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
5951
|
+
is_one_time_use?: boolean | undefined;
|
|
5894
5952
|
card_number?: (string | undefined) | null;
|
|
5895
5953
|
is_issued?: boolean | undefined;
|
|
5896
5954
|
issued_at?: (string | undefined) | null;
|
|
@@ -6487,6 +6545,8 @@ export interface Routes {
|
|
|
6487
6545
|
display_name: string;
|
|
6488
6546
|
/** Access (PIN) code for the credential. */
|
|
6489
6547
|
code?: (string | undefined) | null;
|
|
6548
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6549
|
+
is_one_time_use?: boolean | undefined;
|
|
6490
6550
|
card_number?: (string | undefined) | null;
|
|
6491
6551
|
is_issued?: boolean | undefined;
|
|
6492
6552
|
issued_at?: (string | undefined) | null;
|
|
@@ -6571,6 +6631,8 @@ export interface Routes {
|
|
|
6571
6631
|
display_name: string;
|
|
6572
6632
|
/** Access (PIN) code for the credential. */
|
|
6573
6633
|
code?: (string | undefined) | null;
|
|
6634
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6635
|
+
is_one_time_use?: boolean | undefined;
|
|
6574
6636
|
card_number?: (string | undefined) | null;
|
|
6575
6637
|
is_issued?: boolean | undefined;
|
|
6576
6638
|
issued_at?: (string | undefined) | null;
|
|
@@ -6692,6 +6754,8 @@ export interface Routes {
|
|
|
6692
6754
|
display_name: string;
|
|
6693
6755
|
/** Access (PIN) code for the credential. */
|
|
6694
6756
|
code?: (string | undefined) | null;
|
|
6757
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6758
|
+
is_one_time_use?: boolean | undefined;
|
|
6695
6759
|
card_number?: (string | undefined) | null;
|
|
6696
6760
|
is_issued?: boolean | undefined;
|
|
6697
6761
|
issued_at?: (string | undefined) | null;
|
|
@@ -6776,6 +6840,8 @@ export interface Routes {
|
|
|
6776
6840
|
display_name: string;
|
|
6777
6841
|
/** Access (PIN) code for the credential. */
|
|
6778
6842
|
code?: (string | undefined) | null;
|
|
6843
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
6844
|
+
is_one_time_use?: boolean | undefined;
|
|
6779
6845
|
card_number?: (string | undefined) | null;
|
|
6780
6846
|
is_issued?: boolean | undefined;
|
|
6781
6847
|
issued_at?: (string | undefined) | null;
|
|
@@ -7372,6 +7438,8 @@ export interface Routes {
|
|
|
7372
7438
|
display_name: string;
|
|
7373
7439
|
/** Access (PIN) code for the credential. */
|
|
7374
7440
|
code?: (string | undefined) | null;
|
|
7441
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
7442
|
+
is_one_time_use?: boolean | undefined;
|
|
7375
7443
|
card_number?: (string | undefined) | null;
|
|
7376
7444
|
is_issued?: boolean | undefined;
|
|
7377
7445
|
issued_at?: (string | undefined) | null;
|
|
@@ -7837,6 +7905,7 @@ export interface Routes {
|
|
|
7837
7905
|
commonParams: {};
|
|
7838
7906
|
formData: {};
|
|
7839
7907
|
jsonResponse: {
|
|
7908
|
+
/** 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). */
|
|
7840
7909
|
acs_user: {
|
|
7841
7910
|
/** ID of the `acs_user`. */
|
|
7842
7911
|
acs_user_id: string;
|
|
@@ -7952,6 +8021,7 @@ export interface Routes {
|
|
|
7952
8021
|
};
|
|
7953
8022
|
formData: {};
|
|
7954
8023
|
jsonResponse: {
|
|
8024
|
+
/** 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). */
|
|
7955
8025
|
acs_user: {
|
|
7956
8026
|
/** ID of the `acs_user`. */
|
|
7957
8027
|
acs_user_id: string;
|
|
@@ -8264,6 +8334,7 @@ export interface Routes {
|
|
|
8264
8334
|
};
|
|
8265
8335
|
formData: {};
|
|
8266
8336
|
jsonResponse: {
|
|
8337
|
+
/** 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). */
|
|
8267
8338
|
acs_user: {
|
|
8268
8339
|
/** ID of the `acs_user`. */
|
|
8269
8340
|
acs_user_id: string;
|
|
@@ -8615,6 +8686,8 @@ export interface Routes {
|
|
|
8615
8686
|
display_name: string;
|
|
8616
8687
|
/** Access (PIN) code for the credential. */
|
|
8617
8688
|
code?: (string | undefined) | null;
|
|
8689
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8690
|
+
is_one_time_use?: boolean | undefined;
|
|
8618
8691
|
card_number?: (string | undefined) | null;
|
|
8619
8692
|
is_issued?: boolean | undefined;
|
|
8620
8693
|
issued_at?: (string | undefined) | null;
|
|
@@ -8699,6 +8772,8 @@ export interface Routes {
|
|
|
8699
8772
|
display_name: string;
|
|
8700
8773
|
/** Access (PIN) code for the credential. */
|
|
8701
8774
|
code?: (string | undefined) | null;
|
|
8775
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8776
|
+
is_one_time_use?: boolean | undefined;
|
|
8702
8777
|
card_number?: (string | undefined) | null;
|
|
8703
8778
|
is_issued?: boolean | undefined;
|
|
8704
8779
|
issued_at?: (string | undefined) | null;
|
|
@@ -8820,6 +8895,8 @@ export interface Routes {
|
|
|
8820
8895
|
display_name: string;
|
|
8821
8896
|
/** Access (PIN) code for the credential. */
|
|
8822
8897
|
code?: (string | undefined) | null;
|
|
8898
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8899
|
+
is_one_time_use?: boolean | undefined;
|
|
8823
8900
|
card_number?: (string | undefined) | null;
|
|
8824
8901
|
is_issued?: boolean | undefined;
|
|
8825
8902
|
issued_at?: (string | undefined) | null;
|
|
@@ -8904,6 +8981,8 @@ export interface Routes {
|
|
|
8904
8981
|
display_name: string;
|
|
8905
8982
|
/** Access (PIN) code for the credential. */
|
|
8906
8983
|
code?: (string | undefined) | null;
|
|
8984
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
8985
|
+
is_one_time_use?: boolean | undefined;
|
|
8907
8986
|
card_number?: (string | undefined) | null;
|
|
8908
8987
|
is_issued?: boolean | undefined;
|
|
8909
8988
|
issued_at?: (string | undefined) | null;
|
|
@@ -9455,6 +9534,8 @@ export interface Routes {
|
|
|
9455
9534
|
display_name: string;
|
|
9456
9535
|
/** Access (PIN) code for the credential. */
|
|
9457
9536
|
code?: (string | undefined) | null;
|
|
9537
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9538
|
+
is_one_time_use?: boolean | undefined;
|
|
9458
9539
|
card_number?: (string | undefined) | null;
|
|
9459
9540
|
is_issued?: boolean | undefined;
|
|
9460
9541
|
issued_at?: (string | undefined) | null;
|
|
@@ -9539,6 +9620,8 @@ export interface Routes {
|
|
|
9539
9620
|
display_name: string;
|
|
9540
9621
|
/** Access (PIN) code for the credential. */
|
|
9541
9622
|
code?: (string | undefined) | null;
|
|
9623
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9624
|
+
is_one_time_use?: boolean | undefined;
|
|
9542
9625
|
card_number?: (string | undefined) | null;
|
|
9543
9626
|
is_issued?: boolean | undefined;
|
|
9544
9627
|
issued_at?: (string | undefined) | null;
|
|
@@ -9660,6 +9743,8 @@ export interface Routes {
|
|
|
9660
9743
|
display_name: string;
|
|
9661
9744
|
/** Access (PIN) code for the credential. */
|
|
9662
9745
|
code?: (string | undefined) | null;
|
|
9746
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9747
|
+
is_one_time_use?: boolean | undefined;
|
|
9663
9748
|
card_number?: (string | undefined) | null;
|
|
9664
9749
|
is_issued?: boolean | undefined;
|
|
9665
9750
|
issued_at?: (string | undefined) | null;
|
|
@@ -9744,6 +9829,8 @@ export interface Routes {
|
|
|
9744
9829
|
display_name: string;
|
|
9745
9830
|
/** Access (PIN) code for the credential. */
|
|
9746
9831
|
code?: (string | undefined) | null;
|
|
9832
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
9833
|
+
is_one_time_use?: boolean | undefined;
|
|
9747
9834
|
card_number?: (string | undefined) | null;
|
|
9748
9835
|
is_issued?: boolean | undefined;
|
|
9749
9836
|
issued_at?: (string | undefined) | null;
|
|
@@ -14326,6 +14413,8 @@ export interface Routes {
|
|
|
14326
14413
|
display_name: string;
|
|
14327
14414
|
/** Access (PIN) code for the credential. */
|
|
14328
14415
|
code?: (string | undefined) | null;
|
|
14416
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14417
|
+
is_one_time_use?: boolean | undefined;
|
|
14329
14418
|
card_number?: (string | undefined) | null;
|
|
14330
14419
|
is_issued?: boolean | undefined;
|
|
14331
14420
|
issued_at?: (string | undefined) | null;
|
|
@@ -14410,6 +14499,8 @@ export interface Routes {
|
|
|
14410
14499
|
display_name: string;
|
|
14411
14500
|
/** Access (PIN) code for the credential. */
|
|
14412
14501
|
code?: (string | undefined) | null;
|
|
14502
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14503
|
+
is_one_time_use?: boolean | undefined;
|
|
14413
14504
|
card_number?: (string | undefined) | null;
|
|
14414
14505
|
is_issued?: boolean | undefined;
|
|
14415
14506
|
issued_at?: (string | undefined) | null;
|
|
@@ -14531,6 +14622,8 @@ export interface Routes {
|
|
|
14531
14622
|
display_name: string;
|
|
14532
14623
|
/** Access (PIN) code for the credential. */
|
|
14533
14624
|
code?: (string | undefined) | null;
|
|
14625
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14626
|
+
is_one_time_use?: boolean | undefined;
|
|
14534
14627
|
card_number?: (string | undefined) | null;
|
|
14535
14628
|
is_issued?: boolean | undefined;
|
|
14536
14629
|
issued_at?: (string | undefined) | null;
|
|
@@ -14615,6 +14708,8 @@ export interface Routes {
|
|
|
14615
14708
|
display_name: string;
|
|
14616
14709
|
/** Access (PIN) code for the credential. */
|
|
14617
14710
|
code?: (string | undefined) | null;
|
|
14711
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
14712
|
+
is_one_time_use?: boolean | undefined;
|
|
14618
14713
|
card_number?: (string | undefined) | null;
|
|
14619
14714
|
is_issued?: boolean | undefined;
|
|
14620
14715
|
issued_at?: (string | undefined) | null;
|
|
@@ -15167,6 +15262,8 @@ export interface Routes {
|
|
|
15167
15262
|
display_name: string;
|
|
15168
15263
|
/** Access (PIN) code for the credential. */
|
|
15169
15264
|
code?: (string | undefined) | null;
|
|
15265
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15266
|
+
is_one_time_use?: boolean | undefined;
|
|
15170
15267
|
card_number?: (string | undefined) | null;
|
|
15171
15268
|
is_issued?: boolean | undefined;
|
|
15172
15269
|
issued_at?: (string | undefined) | null;
|
|
@@ -15251,6 +15348,8 @@ export interface Routes {
|
|
|
15251
15348
|
display_name: string;
|
|
15252
15349
|
/** Access (PIN) code for the credential. */
|
|
15253
15350
|
code?: (string | undefined) | null;
|
|
15351
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15352
|
+
is_one_time_use?: boolean | undefined;
|
|
15254
15353
|
card_number?: (string | undefined) | null;
|
|
15255
15354
|
is_issued?: boolean | undefined;
|
|
15256
15355
|
issued_at?: (string | undefined) | null;
|
|
@@ -15372,6 +15471,8 @@ export interface Routes {
|
|
|
15372
15471
|
display_name: string;
|
|
15373
15472
|
/** Access (PIN) code for the credential. */
|
|
15374
15473
|
code?: (string | undefined) | null;
|
|
15474
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15475
|
+
is_one_time_use?: boolean | undefined;
|
|
15375
15476
|
card_number?: (string | undefined) | null;
|
|
15376
15477
|
is_issued?: boolean | undefined;
|
|
15377
15478
|
issued_at?: (string | undefined) | null;
|
|
@@ -15456,6 +15557,8 @@ export interface Routes {
|
|
|
15456
15557
|
display_name: string;
|
|
15457
15558
|
/** Access (PIN) code for the credential. */
|
|
15458
15559
|
code?: (string | undefined) | null;
|
|
15560
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
15561
|
+
is_one_time_use?: boolean | undefined;
|
|
15459
15562
|
card_number?: (string | undefined) | null;
|
|
15460
15563
|
is_issued?: boolean | undefined;
|
|
15461
15564
|
issued_at?: (string | undefined) | null;
|
|
@@ -17110,6 +17213,8 @@ export interface Routes {
|
|
|
17110
17213
|
display_name: string;
|
|
17111
17214
|
/** Access (PIN) code for the credential. */
|
|
17112
17215
|
code?: (string | undefined) | null;
|
|
17216
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17217
|
+
is_one_time_use?: boolean | undefined;
|
|
17113
17218
|
card_number?: (string | undefined) | null;
|
|
17114
17219
|
is_issued?: boolean | undefined;
|
|
17115
17220
|
issued_at?: (string | undefined) | null;
|
|
@@ -17194,6 +17299,8 @@ export interface Routes {
|
|
|
17194
17299
|
display_name: string;
|
|
17195
17300
|
/** Access (PIN) code for the credential. */
|
|
17196
17301
|
code?: (string | undefined) | null;
|
|
17302
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17303
|
+
is_one_time_use?: boolean | undefined;
|
|
17197
17304
|
card_number?: (string | undefined) | null;
|
|
17198
17305
|
is_issued?: boolean | undefined;
|
|
17199
17306
|
issued_at?: (string | undefined) | null;
|
|
@@ -17315,6 +17422,8 @@ export interface Routes {
|
|
|
17315
17422
|
display_name: string;
|
|
17316
17423
|
/** Access (PIN) code for the credential. */
|
|
17317
17424
|
code?: (string | undefined) | null;
|
|
17425
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17426
|
+
is_one_time_use?: boolean | undefined;
|
|
17318
17427
|
card_number?: (string | undefined) | null;
|
|
17319
17428
|
is_issued?: boolean | undefined;
|
|
17320
17429
|
issued_at?: (string | undefined) | null;
|
|
@@ -17399,6 +17508,8 @@ export interface Routes {
|
|
|
17399
17508
|
display_name: string;
|
|
17400
17509
|
/** Access (PIN) code for the credential. */
|
|
17401
17510
|
code?: (string | undefined) | null;
|
|
17511
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
17512
|
+
is_one_time_use?: boolean | undefined;
|
|
17402
17513
|
card_number?: (string | undefined) | null;
|
|
17403
17514
|
is_issued?: boolean | undefined;
|
|
17404
17515
|
issued_at?: (string | undefined) | null;
|
|
@@ -17961,6 +18072,8 @@ export interface Routes {
|
|
|
17961
18072
|
display_name: string;
|
|
17962
18073
|
/** Access (PIN) code for the credential. */
|
|
17963
18074
|
code?: (string | undefined) | null;
|
|
18075
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18076
|
+
is_one_time_use?: boolean | undefined;
|
|
17964
18077
|
card_number?: (string | undefined) | null;
|
|
17965
18078
|
is_issued?: boolean | undefined;
|
|
17966
18079
|
issued_at?: (string | undefined) | null;
|
|
@@ -18045,6 +18158,8 @@ export interface Routes {
|
|
|
18045
18158
|
display_name: string;
|
|
18046
18159
|
/** Access (PIN) code for the credential. */
|
|
18047
18160
|
code?: (string | undefined) | null;
|
|
18161
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18162
|
+
is_one_time_use?: boolean | undefined;
|
|
18048
18163
|
card_number?: (string | undefined) | null;
|
|
18049
18164
|
is_issued?: boolean | undefined;
|
|
18050
18165
|
issued_at?: (string | undefined) | null;
|
|
@@ -18166,6 +18281,8 @@ export interface Routes {
|
|
|
18166
18281
|
display_name: string;
|
|
18167
18282
|
/** Access (PIN) code for the credential. */
|
|
18168
18283
|
code?: (string | undefined) | null;
|
|
18284
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18285
|
+
is_one_time_use?: boolean | undefined;
|
|
18169
18286
|
card_number?: (string | undefined) | null;
|
|
18170
18287
|
is_issued?: boolean | undefined;
|
|
18171
18288
|
issued_at?: (string | undefined) | null;
|
|
@@ -18250,6 +18367,8 @@ export interface Routes {
|
|
|
18250
18367
|
display_name: string;
|
|
18251
18368
|
/** Access (PIN) code for the credential. */
|
|
18252
18369
|
code?: (string | undefined) | null;
|
|
18370
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18371
|
+
is_one_time_use?: boolean | undefined;
|
|
18253
18372
|
card_number?: (string | undefined) | null;
|
|
18254
18373
|
is_issued?: boolean | undefined;
|
|
18255
18374
|
issued_at?: (string | undefined) | null;
|
|
@@ -18851,6 +18970,8 @@ export interface Routes {
|
|
|
18851
18970
|
display_name: string;
|
|
18852
18971
|
/** Access (PIN) code for the credential. */
|
|
18853
18972
|
code?: (string | undefined) | null;
|
|
18973
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
18974
|
+
is_one_time_use?: boolean | undefined;
|
|
18854
18975
|
card_number?: (string | undefined) | null;
|
|
18855
18976
|
is_issued?: boolean | undefined;
|
|
18856
18977
|
issued_at?: (string | undefined) | null;
|
|
@@ -18935,6 +19056,8 @@ export interface Routes {
|
|
|
18935
19056
|
display_name: string;
|
|
18936
19057
|
/** Access (PIN) code for the credential. */
|
|
18937
19058
|
code?: (string | undefined) | null;
|
|
19059
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19060
|
+
is_one_time_use?: boolean | undefined;
|
|
18938
19061
|
card_number?: (string | undefined) | null;
|
|
18939
19062
|
is_issued?: boolean | undefined;
|
|
18940
19063
|
issued_at?: (string | undefined) | null;
|
|
@@ -19056,6 +19179,8 @@ export interface Routes {
|
|
|
19056
19179
|
display_name: string;
|
|
19057
19180
|
/** Access (PIN) code for the credential. */
|
|
19058
19181
|
code?: (string | undefined) | null;
|
|
19182
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19183
|
+
is_one_time_use?: boolean | undefined;
|
|
19059
19184
|
card_number?: (string | undefined) | null;
|
|
19060
19185
|
is_issued?: boolean | undefined;
|
|
19061
19186
|
issued_at?: (string | undefined) | null;
|
|
@@ -19140,6 +19265,8 @@ export interface Routes {
|
|
|
19140
19265
|
display_name: string;
|
|
19141
19266
|
/** Access (PIN) code for the credential. */
|
|
19142
19267
|
code?: (string | undefined) | null;
|
|
19268
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
19269
|
+
is_one_time_use?: boolean | undefined;
|
|
19143
19270
|
card_number?: (string | undefined) | null;
|
|
19144
19271
|
is_issued?: boolean | undefined;
|
|
19145
19272
|
issued_at?: (string | undefined) | null;
|
|
@@ -19876,6 +20003,8 @@ export interface Routes {
|
|
|
19876
20003
|
display_name: string;
|
|
19877
20004
|
/** Access (PIN) code for the credential. */
|
|
19878
20005
|
code?: (string | undefined) | null;
|
|
20006
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20007
|
+
is_one_time_use?: boolean | undefined;
|
|
19879
20008
|
card_number?: (string | undefined) | null;
|
|
19880
20009
|
is_issued?: boolean | undefined;
|
|
19881
20010
|
issued_at?: (string | undefined) | null;
|
|
@@ -19960,6 +20089,8 @@ export interface Routes {
|
|
|
19960
20089
|
display_name: string;
|
|
19961
20090
|
/** Access (PIN) code for the credential. */
|
|
19962
20091
|
code?: (string | undefined) | null;
|
|
20092
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20093
|
+
is_one_time_use?: boolean | undefined;
|
|
19963
20094
|
card_number?: (string | undefined) | null;
|
|
19964
20095
|
is_issued?: boolean | undefined;
|
|
19965
20096
|
issued_at?: (string | undefined) | null;
|
|
@@ -20081,6 +20212,8 @@ export interface Routes {
|
|
|
20081
20212
|
display_name: string;
|
|
20082
20213
|
/** Access (PIN) code for the credential. */
|
|
20083
20214
|
code?: (string | undefined) | null;
|
|
20215
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20216
|
+
is_one_time_use?: boolean | undefined;
|
|
20084
20217
|
card_number?: (string | undefined) | null;
|
|
20085
20218
|
is_issued?: boolean | undefined;
|
|
20086
20219
|
issued_at?: (string | undefined) | null;
|
|
@@ -20165,6 +20298,8 @@ export interface Routes {
|
|
|
20165
20298
|
display_name: string;
|
|
20166
20299
|
/** Access (PIN) code for the credential. */
|
|
20167
20300
|
code?: (string | undefined) | null;
|
|
20301
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20302
|
+
is_one_time_use?: boolean | undefined;
|
|
20168
20303
|
card_number?: (string | undefined) | null;
|
|
20169
20304
|
is_issued?: boolean | undefined;
|
|
20170
20305
|
issued_at?: (string | undefined) | null;
|
|
@@ -20723,6 +20858,8 @@ export interface Routes {
|
|
|
20723
20858
|
display_name: string;
|
|
20724
20859
|
/** Access (PIN) code for the credential. */
|
|
20725
20860
|
code?: (string | undefined) | null;
|
|
20861
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20862
|
+
is_one_time_use?: boolean | undefined;
|
|
20726
20863
|
card_number?: (string | undefined) | null;
|
|
20727
20864
|
is_issued?: boolean | undefined;
|
|
20728
20865
|
issued_at?: (string | undefined) | null;
|
|
@@ -20807,6 +20944,8 @@ export interface Routes {
|
|
|
20807
20944
|
display_name: string;
|
|
20808
20945
|
/** Access (PIN) code for the credential. */
|
|
20809
20946
|
code?: (string | undefined) | null;
|
|
20947
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
20948
|
+
is_one_time_use?: boolean | undefined;
|
|
20810
20949
|
card_number?: (string | undefined) | null;
|
|
20811
20950
|
is_issued?: boolean | undefined;
|
|
20812
20951
|
issued_at?: (string | undefined) | null;
|
|
@@ -20928,6 +21067,8 @@ export interface Routes {
|
|
|
20928
21067
|
display_name: string;
|
|
20929
21068
|
/** Access (PIN) code for the credential. */
|
|
20930
21069
|
code?: (string | undefined) | null;
|
|
21070
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21071
|
+
is_one_time_use?: boolean | undefined;
|
|
20931
21072
|
card_number?: (string | undefined) | null;
|
|
20932
21073
|
is_issued?: boolean | undefined;
|
|
20933
21074
|
issued_at?: (string | undefined) | null;
|
|
@@ -21012,6 +21153,8 @@ export interface Routes {
|
|
|
21012
21153
|
display_name: string;
|
|
21013
21154
|
/** Access (PIN) code for the credential. */
|
|
21014
21155
|
code?: (string | undefined) | null;
|
|
21156
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
21157
|
+
is_one_time_use?: boolean | undefined;
|
|
21015
21158
|
card_number?: (string | undefined) | null;
|
|
21016
21159
|
is_issued?: boolean | undefined;
|
|
21017
21160
|
issued_at?: (string | undefined) | null;
|
|
@@ -22141,6 +22284,8 @@ export interface Routes {
|
|
|
22141
22284
|
display_name: string;
|
|
22142
22285
|
/** Access (PIN) code for the credential. */
|
|
22143
22286
|
code?: (string | undefined) | null;
|
|
22287
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22288
|
+
is_one_time_use?: boolean | undefined;
|
|
22144
22289
|
card_number?: (string | undefined) | null;
|
|
22145
22290
|
is_issued?: boolean | undefined;
|
|
22146
22291
|
issued_at?: (string | undefined) | null;
|
|
@@ -22225,6 +22370,8 @@ export interface Routes {
|
|
|
22225
22370
|
display_name: string;
|
|
22226
22371
|
/** Access (PIN) code for the credential. */
|
|
22227
22372
|
code?: (string | undefined) | null;
|
|
22373
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22374
|
+
is_one_time_use?: boolean | undefined;
|
|
22228
22375
|
card_number?: (string | undefined) | null;
|
|
22229
22376
|
is_issued?: boolean | undefined;
|
|
22230
22377
|
issued_at?: (string | undefined) | null;
|
|
@@ -22346,6 +22493,8 @@ export interface Routes {
|
|
|
22346
22493
|
display_name: string;
|
|
22347
22494
|
/** Access (PIN) code for the credential. */
|
|
22348
22495
|
code?: (string | undefined) | null;
|
|
22496
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22497
|
+
is_one_time_use?: boolean | undefined;
|
|
22349
22498
|
card_number?: (string | undefined) | null;
|
|
22350
22499
|
is_issued?: boolean | undefined;
|
|
22351
22500
|
issued_at?: (string | undefined) | null;
|
|
@@ -22430,6 +22579,8 @@ export interface Routes {
|
|
|
22430
22579
|
display_name: string;
|
|
22431
22580
|
/** Access (PIN) code for the credential. */
|
|
22432
22581
|
code?: (string | undefined) | null;
|
|
22582
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
22583
|
+
is_one_time_use?: boolean | undefined;
|
|
22433
22584
|
card_number?: (string | undefined) | null;
|
|
22434
22585
|
is_issued?: boolean | undefined;
|
|
22435
22586
|
issued_at?: (string | undefined) | null;
|
|
@@ -22992,6 +23143,8 @@ export interface Routes {
|
|
|
22992
23143
|
display_name: string;
|
|
22993
23144
|
/** Access (PIN) code for the credential. */
|
|
22994
23145
|
code?: (string | undefined) | null;
|
|
23146
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23147
|
+
is_one_time_use?: boolean | undefined;
|
|
22995
23148
|
card_number?: (string | undefined) | null;
|
|
22996
23149
|
is_issued?: boolean | undefined;
|
|
22997
23150
|
issued_at?: (string | undefined) | null;
|
|
@@ -23076,6 +23229,8 @@ export interface Routes {
|
|
|
23076
23229
|
display_name: string;
|
|
23077
23230
|
/** Access (PIN) code for the credential. */
|
|
23078
23231
|
code?: (string | undefined) | null;
|
|
23232
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23233
|
+
is_one_time_use?: boolean | undefined;
|
|
23079
23234
|
card_number?: (string | undefined) | null;
|
|
23080
23235
|
is_issued?: boolean | undefined;
|
|
23081
23236
|
issued_at?: (string | undefined) | null;
|
|
@@ -23197,6 +23352,8 @@ export interface Routes {
|
|
|
23197
23352
|
display_name: string;
|
|
23198
23353
|
/** Access (PIN) code for the credential. */
|
|
23199
23354
|
code?: (string | undefined) | null;
|
|
23355
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23356
|
+
is_one_time_use?: boolean | undefined;
|
|
23200
23357
|
card_number?: (string | undefined) | null;
|
|
23201
23358
|
is_issued?: boolean | undefined;
|
|
23202
23359
|
issued_at?: (string | undefined) | null;
|
|
@@ -23281,6 +23438,8 @@ export interface Routes {
|
|
|
23281
23438
|
display_name: string;
|
|
23282
23439
|
/** Access (PIN) code for the credential. */
|
|
23283
23440
|
code?: (string | undefined) | null;
|
|
23441
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
23442
|
+
is_one_time_use?: boolean | undefined;
|
|
23284
23443
|
card_number?: (string | undefined) | null;
|
|
23285
23444
|
is_issued?: boolean | undefined;
|
|
23286
23445
|
issued_at?: (string | undefined) | null;
|
|
@@ -24898,6 +25057,8 @@ export interface Routes {
|
|
|
24898
25057
|
display_name: string;
|
|
24899
25058
|
/** Access (PIN) code for the credential. */
|
|
24900
25059
|
code?: (string | undefined) | null;
|
|
25060
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25061
|
+
is_one_time_use?: boolean | undefined;
|
|
24901
25062
|
card_number?: (string | undefined) | null;
|
|
24902
25063
|
is_issued?: boolean | undefined;
|
|
24903
25064
|
issued_at?: (string | undefined) | null;
|
|
@@ -24982,6 +25143,8 @@ export interface Routes {
|
|
|
24982
25143
|
display_name: string;
|
|
24983
25144
|
/** Access (PIN) code for the credential. */
|
|
24984
25145
|
code?: (string | undefined) | null;
|
|
25146
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25147
|
+
is_one_time_use?: boolean | undefined;
|
|
24985
25148
|
card_number?: (string | undefined) | null;
|
|
24986
25149
|
is_issued?: boolean | undefined;
|
|
24987
25150
|
issued_at?: (string | undefined) | null;
|
|
@@ -25103,6 +25266,8 @@ export interface Routes {
|
|
|
25103
25266
|
display_name: string;
|
|
25104
25267
|
/** Access (PIN) code for the credential. */
|
|
25105
25268
|
code?: (string | undefined) | null;
|
|
25269
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25270
|
+
is_one_time_use?: boolean | undefined;
|
|
25106
25271
|
card_number?: (string | undefined) | null;
|
|
25107
25272
|
is_issued?: boolean | undefined;
|
|
25108
25273
|
issued_at?: (string | undefined) | null;
|
|
@@ -25187,6 +25352,8 @@ export interface Routes {
|
|
|
25187
25352
|
display_name: string;
|
|
25188
25353
|
/** Access (PIN) code for the credential. */
|
|
25189
25354
|
code?: (string | undefined) | null;
|
|
25355
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
25356
|
+
is_one_time_use?: boolean | undefined;
|
|
25190
25357
|
card_number?: (string | undefined) | null;
|
|
25191
25358
|
is_issued?: boolean | undefined;
|
|
25192
25359
|
issued_at?: (string | undefined) | null;
|
|
@@ -25914,6 +26081,8 @@ export interface Routes {
|
|
|
25914
26081
|
display_name: string;
|
|
25915
26082
|
/** Access (PIN) code for the credential. */
|
|
25916
26083
|
code?: (string | undefined) | null;
|
|
26084
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26085
|
+
is_one_time_use?: boolean | undefined;
|
|
25917
26086
|
card_number?: (string | undefined) | null;
|
|
25918
26087
|
is_issued?: boolean | undefined;
|
|
25919
26088
|
issued_at?: (string | undefined) | null;
|
|
@@ -25998,6 +26167,8 @@ export interface Routes {
|
|
|
25998
26167
|
display_name: string;
|
|
25999
26168
|
/** Access (PIN) code for the credential. */
|
|
26000
26169
|
code?: (string | undefined) | null;
|
|
26170
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26171
|
+
is_one_time_use?: boolean | undefined;
|
|
26001
26172
|
card_number?: (string | undefined) | null;
|
|
26002
26173
|
is_issued?: boolean | undefined;
|
|
26003
26174
|
issued_at?: (string | undefined) | null;
|
|
@@ -26119,6 +26290,8 @@ export interface Routes {
|
|
|
26119
26290
|
display_name: string;
|
|
26120
26291
|
/** Access (PIN) code for the credential. */
|
|
26121
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;
|
|
26122
26295
|
card_number?: (string | undefined) | null;
|
|
26123
26296
|
is_issued?: boolean | undefined;
|
|
26124
26297
|
issued_at?: (string | undefined) | null;
|
|
@@ -26203,6 +26376,8 @@ export interface Routes {
|
|
|
26203
26376
|
display_name: string;
|
|
26204
26377
|
/** Access (PIN) code for the credential. */
|
|
26205
26378
|
code?: (string | undefined) | null;
|
|
26379
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26380
|
+
is_one_time_use?: boolean | undefined;
|
|
26206
26381
|
card_number?: (string | undefined) | null;
|
|
26207
26382
|
is_issued?: boolean | undefined;
|
|
26208
26383
|
issued_at?: (string | undefined) | null;
|
|
@@ -26784,6 +26959,8 @@ export interface Routes {
|
|
|
26784
26959
|
display_name: string;
|
|
26785
26960
|
/** Access (PIN) code for the credential. */
|
|
26786
26961
|
code?: (string | undefined) | null;
|
|
26962
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
26963
|
+
is_one_time_use?: boolean | undefined;
|
|
26787
26964
|
card_number?: (string | undefined) | null;
|
|
26788
26965
|
is_issued?: boolean | undefined;
|
|
26789
26966
|
issued_at?: (string | undefined) | null;
|
|
@@ -26868,6 +27045,8 @@ export interface Routes {
|
|
|
26868
27045
|
display_name: string;
|
|
26869
27046
|
/** Access (PIN) code for the credential. */
|
|
26870
27047
|
code?: (string | undefined) | null;
|
|
27048
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27049
|
+
is_one_time_use?: boolean | undefined;
|
|
26871
27050
|
card_number?: (string | undefined) | null;
|
|
26872
27051
|
is_issued?: boolean | undefined;
|
|
26873
27052
|
issued_at?: (string | undefined) | null;
|
|
@@ -26989,6 +27168,8 @@ export interface Routes {
|
|
|
26989
27168
|
display_name: string;
|
|
26990
27169
|
/** Access (PIN) code for the credential. */
|
|
26991
27170
|
code?: (string | undefined) | null;
|
|
27171
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27172
|
+
is_one_time_use?: boolean | undefined;
|
|
26992
27173
|
card_number?: (string | undefined) | null;
|
|
26993
27174
|
is_issued?: boolean | undefined;
|
|
26994
27175
|
issued_at?: (string | undefined) | null;
|
|
@@ -27073,6 +27254,8 @@ export interface Routes {
|
|
|
27073
27254
|
display_name: string;
|
|
27074
27255
|
/** Access (PIN) code for the credential. */
|
|
27075
27256
|
code?: (string | undefined) | null;
|
|
27257
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
27258
|
+
is_one_time_use?: boolean | undefined;
|
|
27076
27259
|
card_number?: (string | undefined) | null;
|
|
27077
27260
|
is_issued?: boolean | undefined;
|
|
27078
27261
|
issued_at?: (string | undefined) | null;
|
|
@@ -29351,6 +29534,8 @@ export interface Routes {
|
|
|
29351
29534
|
display_name: string;
|
|
29352
29535
|
/** Access (PIN) code for the credential. */
|
|
29353
29536
|
code?: (string | undefined) | null;
|
|
29537
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29538
|
+
is_one_time_use?: boolean | undefined;
|
|
29354
29539
|
card_number?: (string | undefined) | null;
|
|
29355
29540
|
is_issued?: boolean | undefined;
|
|
29356
29541
|
issued_at?: (string | undefined) | null;
|
|
@@ -29435,6 +29620,8 @@ export interface Routes {
|
|
|
29435
29620
|
display_name: string;
|
|
29436
29621
|
/** Access (PIN) code for the credential. */
|
|
29437
29622
|
code?: (string | undefined) | null;
|
|
29623
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29624
|
+
is_one_time_use?: boolean | undefined;
|
|
29438
29625
|
card_number?: (string | undefined) | null;
|
|
29439
29626
|
is_issued?: boolean | undefined;
|
|
29440
29627
|
issued_at?: (string | undefined) | null;
|
|
@@ -29556,6 +29743,8 @@ export interface Routes {
|
|
|
29556
29743
|
display_name: string;
|
|
29557
29744
|
/** Access (PIN) code for the credential. */
|
|
29558
29745
|
code?: (string | undefined) | null;
|
|
29746
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29747
|
+
is_one_time_use?: boolean | undefined;
|
|
29559
29748
|
card_number?: (string | undefined) | null;
|
|
29560
29749
|
is_issued?: boolean | undefined;
|
|
29561
29750
|
issued_at?: (string | undefined) | null;
|
|
@@ -29640,6 +29829,8 @@ export interface Routes {
|
|
|
29640
29829
|
display_name: string;
|
|
29641
29830
|
/** Access (PIN) code for the credential. */
|
|
29642
29831
|
code?: (string | undefined) | null;
|
|
29832
|
+
/** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
|
|
29833
|
+
is_one_time_use?: boolean | undefined;
|
|
29643
29834
|
card_number?: (string | undefined) | null;
|
|
29644
29835
|
is_issued?: boolean | undefined;
|
|
29645
29836
|
issued_at?: (string | undefined) | null;
|