@seamapi/types 1.328.0 → 1.329.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +236 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +981 -2
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +9 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +132 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +58 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +74 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +6 -0
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +87 -0
- package/lib/seam/connect/openapi.js +220 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +690 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +12 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +252 -0
- package/src/lib/seam/connect/route-types.ts +786 -0
|
@@ -216,6 +216,14 @@ export interface Routes {
|
|
|
216
216
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
217
217
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
218
218
|
}
|
|
219
|
+
| {
|
|
220
|
+
/** Date and time at which Seam created the warning. */
|
|
221
|
+
created_at: string
|
|
222
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
223
|
+
message: string
|
|
224
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
225
|
+
warning_code: 'needs_to_be_reissued'
|
|
226
|
+
}
|
|
219
227
|
>
|
|
220
228
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
221
229
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -330,6 +338,14 @@ export interface Routes {
|
|
|
330
338
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
331
339
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
332
340
|
}
|
|
341
|
+
| {
|
|
342
|
+
/** Date and time at which Seam created the warning. */
|
|
343
|
+
created_at: string
|
|
344
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
345
|
+
message: string
|
|
346
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
347
|
+
warning_code: 'needs_to_be_reissued'
|
|
348
|
+
}
|
|
333
349
|
>
|
|
334
350
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
335
351
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -491,6 +507,14 @@ export interface Routes {
|
|
|
491
507
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
492
508
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
493
509
|
}
|
|
510
|
+
| {
|
|
511
|
+
/** Date and time at which Seam created the warning. */
|
|
512
|
+
created_at: string
|
|
513
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
514
|
+
message: string
|
|
515
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
516
|
+
warning_code: 'needs_to_be_reissued'
|
|
517
|
+
}
|
|
494
518
|
>
|
|
495
519
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
496
520
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -605,6 +629,14 @@ export interface Routes {
|
|
|
605
629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
606
630
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
607
631
|
}
|
|
632
|
+
| {
|
|
633
|
+
/** Date and time at which Seam created the warning. */
|
|
634
|
+
created_at: string
|
|
635
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
636
|
+
message: string
|
|
637
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
638
|
+
warning_code: 'needs_to_be_reissued'
|
|
639
|
+
}
|
|
608
640
|
>
|
|
609
641
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
610
642
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -1474,6 +1506,14 @@ export interface Routes {
|
|
|
1474
1506
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1475
1507
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
1476
1508
|
}
|
|
1509
|
+
| {
|
|
1510
|
+
/** Date and time at which Seam created the warning. */
|
|
1511
|
+
created_at: string
|
|
1512
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1513
|
+
message: string
|
|
1514
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1515
|
+
warning_code: 'needs_to_be_reissued'
|
|
1516
|
+
}
|
|
1477
1517
|
>
|
|
1478
1518
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1479
1519
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -1588,6 +1628,14 @@ export interface Routes {
|
|
|
1588
1628
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1589
1629
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
1590
1630
|
}
|
|
1631
|
+
| {
|
|
1632
|
+
/** Date and time at which Seam created the warning. */
|
|
1633
|
+
created_at: string
|
|
1634
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1635
|
+
message: string
|
|
1636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1637
|
+
warning_code: 'needs_to_be_reissued'
|
|
1638
|
+
}
|
|
1591
1639
|
>
|
|
1592
1640
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1593
1641
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -1749,6 +1797,14 @@ export interface Routes {
|
|
|
1749
1797
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1750
1798
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
1751
1799
|
}
|
|
1800
|
+
| {
|
|
1801
|
+
/** Date and time at which Seam created the warning. */
|
|
1802
|
+
created_at: string
|
|
1803
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1804
|
+
message: string
|
|
1805
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1806
|
+
warning_code: 'needs_to_be_reissued'
|
|
1807
|
+
}
|
|
1752
1808
|
>
|
|
1753
1809
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1754
1810
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -1863,6 +1919,14 @@ export interface Routes {
|
|
|
1863
1919
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1864
1920
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
1865
1921
|
}
|
|
1922
|
+
| {
|
|
1923
|
+
/** Date and time at which Seam created the warning. */
|
|
1924
|
+
created_at: string
|
|
1925
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1926
|
+
message: string
|
|
1927
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1928
|
+
warning_code: 'needs_to_be_reissued'
|
|
1929
|
+
}
|
|
1866
1930
|
>
|
|
1867
1931
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1868
1932
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -3190,6 +3254,14 @@ export interface Routes {
|
|
|
3190
3254
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3191
3255
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
3192
3256
|
}
|
|
3257
|
+
| {
|
|
3258
|
+
/** Date and time at which Seam created the warning. */
|
|
3259
|
+
created_at: string
|
|
3260
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3261
|
+
message: string
|
|
3262
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3263
|
+
warning_code: 'needs_to_be_reissued'
|
|
3264
|
+
}
|
|
3193
3265
|
>
|
|
3194
3266
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3195
3267
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -3304,6 +3376,14 @@ export interface Routes {
|
|
|
3304
3376
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3305
3377
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
3306
3378
|
}
|
|
3379
|
+
| {
|
|
3380
|
+
/** Date and time at which Seam created the warning. */
|
|
3381
|
+
created_at: string
|
|
3382
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3383
|
+
message: string
|
|
3384
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3385
|
+
warning_code: 'needs_to_be_reissued'
|
|
3386
|
+
}
|
|
3307
3387
|
>
|
|
3308
3388
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3309
3389
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -3465,6 +3545,14 @@ export interface Routes {
|
|
|
3465
3545
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3466
3546
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
3467
3547
|
}
|
|
3548
|
+
| {
|
|
3549
|
+
/** Date and time at which Seam created the warning. */
|
|
3550
|
+
created_at: string
|
|
3551
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3552
|
+
message: string
|
|
3553
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3554
|
+
warning_code: 'needs_to_be_reissued'
|
|
3555
|
+
}
|
|
3468
3556
|
>
|
|
3469
3557
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3470
3558
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -3579,6 +3667,14 @@ export interface Routes {
|
|
|
3579
3667
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3580
3668
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
3581
3669
|
}
|
|
3670
|
+
| {
|
|
3671
|
+
/** Date and time at which Seam created the warning. */
|
|
3672
|
+
created_at: string
|
|
3673
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3674
|
+
message: string
|
|
3675
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3676
|
+
warning_code: 'needs_to_be_reissued'
|
|
3677
|
+
}
|
|
3582
3678
|
>
|
|
3583
3679
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3584
3680
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -4435,6 +4531,14 @@ export interface Routes {
|
|
|
4435
4531
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4436
4532
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
4437
4533
|
}
|
|
4534
|
+
| {
|
|
4535
|
+
/** Date and time at which Seam created the warning. */
|
|
4536
|
+
created_at: string
|
|
4537
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4538
|
+
message: string
|
|
4539
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4540
|
+
warning_code: 'needs_to_be_reissued'
|
|
4541
|
+
}
|
|
4438
4542
|
>
|
|
4439
4543
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4440
4544
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -4549,6 +4653,14 @@ export interface Routes {
|
|
|
4549
4653
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4550
4654
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
4551
4655
|
}
|
|
4656
|
+
| {
|
|
4657
|
+
/** Date and time at which Seam created the warning. */
|
|
4658
|
+
created_at: string
|
|
4659
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4660
|
+
message: string
|
|
4661
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4662
|
+
warning_code: 'needs_to_be_reissued'
|
|
4663
|
+
}
|
|
4552
4664
|
>
|
|
4553
4665
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4554
4666
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -4710,6 +4822,14 @@ export interface Routes {
|
|
|
4710
4822
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4711
4823
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
4712
4824
|
}
|
|
4825
|
+
| {
|
|
4826
|
+
/** Date and time at which Seam created the warning. */
|
|
4827
|
+
created_at: string
|
|
4828
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4829
|
+
message: string
|
|
4830
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4831
|
+
warning_code: 'needs_to_be_reissued'
|
|
4832
|
+
}
|
|
4713
4833
|
>
|
|
4714
4834
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4715
4835
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -4824,6 +4944,14 @@ export interface Routes {
|
|
|
4824
4944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4825
4945
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
4826
4946
|
}
|
|
4947
|
+
| {
|
|
4948
|
+
/** Date and time at which Seam created the warning. */
|
|
4949
|
+
created_at: string
|
|
4950
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4951
|
+
message: string
|
|
4952
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4953
|
+
warning_code: 'needs_to_be_reissued'
|
|
4954
|
+
}
|
|
4827
4955
|
>
|
|
4828
4956
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4829
4957
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -5826,6 +5954,14 @@ export interface Routes {
|
|
|
5826
5954
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5827
5955
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
5828
5956
|
}
|
|
5957
|
+
| {
|
|
5958
|
+
/** Date and time at which Seam created the warning. */
|
|
5959
|
+
created_at: string
|
|
5960
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5961
|
+
message: string
|
|
5962
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5963
|
+
warning_code: 'needs_to_be_reissued'
|
|
5964
|
+
}
|
|
5829
5965
|
>
|
|
5830
5966
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5831
5967
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -6002,6 +6138,14 @@ export interface Routes {
|
|
|
6002
6138
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6003
6139
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
6004
6140
|
}
|
|
6141
|
+
| {
|
|
6142
|
+
/** Date and time at which Seam created the warning. */
|
|
6143
|
+
created_at: string
|
|
6144
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6145
|
+
message: string
|
|
6146
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6147
|
+
warning_code: 'needs_to_be_reissued'
|
|
6148
|
+
}
|
|
6005
6149
|
>
|
|
6006
6150
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6007
6151
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -6139,6 +6283,14 @@ export interface Routes {
|
|
|
6139
6283
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6140
6284
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
6141
6285
|
}
|
|
6286
|
+
| {
|
|
6287
|
+
/** Date and time at which Seam created the warning. */
|
|
6288
|
+
created_at: string
|
|
6289
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6290
|
+
message: string
|
|
6291
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6292
|
+
warning_code: 'needs_to_be_reissued'
|
|
6293
|
+
}
|
|
6142
6294
|
>
|
|
6143
6295
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6144
6296
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -6280,6 +6432,14 @@ export interface Routes {
|
|
|
6280
6432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6281
6433
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
6282
6434
|
}
|
|
6435
|
+
| {
|
|
6436
|
+
/** Date and time at which Seam created the warning. */
|
|
6437
|
+
created_at: string
|
|
6438
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6439
|
+
message: string
|
|
6440
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6441
|
+
warning_code: 'needs_to_be_reissued'
|
|
6442
|
+
}
|
|
6283
6443
|
>
|
|
6284
6444
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6285
6445
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -6430,6 +6590,14 @@ export interface Routes {
|
|
|
6430
6590
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6431
6591
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
6432
6592
|
}
|
|
6593
|
+
| {
|
|
6594
|
+
/** Date and time at which Seam created the warning. */
|
|
6595
|
+
created_at: string
|
|
6596
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6597
|
+
message: string
|
|
6598
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6599
|
+
warning_code: 'needs_to_be_reissued'
|
|
6600
|
+
}
|
|
6433
6601
|
>
|
|
6434
6602
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6435
6603
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -6650,6 +6818,14 @@ export interface Routes {
|
|
|
6650
6818
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6651
6819
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
6652
6820
|
}
|
|
6821
|
+
| {
|
|
6822
|
+
/** Date and time at which Seam created the warning. */
|
|
6823
|
+
created_at: string
|
|
6824
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6825
|
+
message: string
|
|
6826
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6827
|
+
warning_code: 'needs_to_be_reissued'
|
|
6828
|
+
}
|
|
6653
6829
|
>
|
|
6654
6830
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6655
6831
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -6779,6 +6955,14 @@ export interface Routes {
|
|
|
6779
6955
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6780
6956
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
6781
6957
|
}
|
|
6958
|
+
| {
|
|
6959
|
+
/** Date and time at which Seam created the warning. */
|
|
6960
|
+
created_at: string
|
|
6961
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6962
|
+
message: string
|
|
6963
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6964
|
+
warning_code: 'needs_to_be_reissued'
|
|
6965
|
+
}
|
|
6782
6966
|
>
|
|
6783
6967
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6784
6968
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -6921,6 +7105,14 @@ export interface Routes {
|
|
|
6921
7105
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6922
7106
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
6923
7107
|
}
|
|
7108
|
+
| {
|
|
7109
|
+
/** Date and time at which Seam created the warning. */
|
|
7110
|
+
created_at: string
|
|
7111
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7112
|
+
message: string
|
|
7113
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7114
|
+
warning_code: 'needs_to_be_reissued'
|
|
7115
|
+
}
|
|
6924
7116
|
>
|
|
6925
7117
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6926
7118
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -7054,6 +7246,14 @@ export interface Routes {
|
|
|
7054
7246
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7055
7247
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
7056
7248
|
}
|
|
7249
|
+
| {
|
|
7250
|
+
/** Date and time at which Seam created the warning. */
|
|
7251
|
+
created_at: string
|
|
7252
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7253
|
+
message: string
|
|
7254
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7255
|
+
warning_code: 'needs_to_be_reissued'
|
|
7256
|
+
}
|
|
7057
7257
|
>
|
|
7058
7258
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7059
7259
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -7286,6 +7486,14 @@ export interface Routes {
|
|
|
7286
7486
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7287
7487
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
7288
7488
|
}
|
|
7489
|
+
| {
|
|
7490
|
+
/** Date and time at which Seam created the warning. */
|
|
7491
|
+
created_at: string
|
|
7492
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7493
|
+
message: string
|
|
7494
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7495
|
+
warning_code: 'needs_to_be_reissued'
|
|
7496
|
+
}
|
|
7289
7497
|
>
|
|
7290
7498
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7291
7499
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -7400,6 +7608,14 @@ export interface Routes {
|
|
|
7400
7608
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7401
7609
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
7402
7610
|
}
|
|
7611
|
+
| {
|
|
7612
|
+
/** Date and time at which Seam created the warning. */
|
|
7613
|
+
created_at: string
|
|
7614
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7615
|
+
message: string
|
|
7616
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7617
|
+
warning_code: 'needs_to_be_reissued'
|
|
7618
|
+
}
|
|
7403
7619
|
>
|
|
7404
7620
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7405
7621
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -7561,6 +7777,14 @@ export interface Routes {
|
|
|
7561
7777
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7562
7778
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
7563
7779
|
}
|
|
7780
|
+
| {
|
|
7781
|
+
/** Date and time at which Seam created the warning. */
|
|
7782
|
+
created_at: string
|
|
7783
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7784
|
+
message: string
|
|
7785
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7786
|
+
warning_code: 'needs_to_be_reissued'
|
|
7787
|
+
}
|
|
7564
7788
|
>
|
|
7565
7789
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7566
7790
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -7675,6 +7899,14 @@ export interface Routes {
|
|
|
7675
7899
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7676
7900
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
7677
7901
|
}
|
|
7902
|
+
| {
|
|
7903
|
+
/** Date and time at which Seam created the warning. */
|
|
7904
|
+
created_at: string
|
|
7905
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7906
|
+
message: string
|
|
7907
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7908
|
+
warning_code: 'needs_to_be_reissued'
|
|
7909
|
+
}
|
|
7678
7910
|
>
|
|
7679
7911
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7680
7912
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -8284,6 +8516,14 @@ export interface Routes {
|
|
|
8284
8516
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8285
8517
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
8286
8518
|
}
|
|
8519
|
+
| {
|
|
8520
|
+
/** Date and time at which Seam created the warning. */
|
|
8521
|
+
created_at: string
|
|
8522
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8523
|
+
message: string
|
|
8524
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8525
|
+
warning_code: 'needs_to_be_reissued'
|
|
8526
|
+
}
|
|
8287
8527
|
>
|
|
8288
8528
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8289
8529
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -8398,6 +8638,14 @@ export interface Routes {
|
|
|
8398
8638
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8399
8639
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
8400
8640
|
}
|
|
8641
|
+
| {
|
|
8642
|
+
/** Date and time at which Seam created the warning. */
|
|
8643
|
+
created_at: string
|
|
8644
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8645
|
+
message: string
|
|
8646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8647
|
+
warning_code: 'needs_to_be_reissued'
|
|
8648
|
+
}
|
|
8401
8649
|
>
|
|
8402
8650
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8403
8651
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -8559,6 +8807,14 @@ export interface Routes {
|
|
|
8559
8807
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8560
8808
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
8561
8809
|
}
|
|
8810
|
+
| {
|
|
8811
|
+
/** Date and time at which Seam created the warning. */
|
|
8812
|
+
created_at: string
|
|
8813
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8814
|
+
message: string
|
|
8815
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8816
|
+
warning_code: 'needs_to_be_reissued'
|
|
8817
|
+
}
|
|
8562
8818
|
>
|
|
8563
8819
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8564
8820
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -8673,6 +8929,14 @@ export interface Routes {
|
|
|
8673
8929
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8674
8930
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
8675
8931
|
}
|
|
8932
|
+
| {
|
|
8933
|
+
/** Date and time at which Seam created the warning. */
|
|
8934
|
+
created_at: string
|
|
8935
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8936
|
+
message: string
|
|
8937
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8938
|
+
warning_code: 'needs_to_be_reissued'
|
|
8939
|
+
}
|
|
8676
8940
|
>
|
|
8677
8941
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8678
8942
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -9408,6 +9672,14 @@ export interface Routes {
|
|
|
9408
9672
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9409
9673
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
9410
9674
|
}
|
|
9675
|
+
| {
|
|
9676
|
+
/** Date and time at which Seam created the warning. */
|
|
9677
|
+
created_at: string
|
|
9678
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9679
|
+
message: string
|
|
9680
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9681
|
+
warning_code: 'needs_to_be_reissued'
|
|
9682
|
+
}
|
|
9411
9683
|
>
|
|
9412
9684
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9413
9685
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -11013,6 +11285,14 @@ export interface Routes {
|
|
|
11013
11285
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11014
11286
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
11015
11287
|
}
|
|
11288
|
+
| {
|
|
11289
|
+
/** Date and time at which Seam created the warning. */
|
|
11290
|
+
created_at: string
|
|
11291
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11292
|
+
message: string
|
|
11293
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11294
|
+
warning_code: 'needs_to_be_reissued'
|
|
11295
|
+
}
|
|
11016
11296
|
>
|
|
11017
11297
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
11018
11298
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -11127,6 +11407,14 @@ export interface Routes {
|
|
|
11127
11407
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11128
11408
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
11129
11409
|
}
|
|
11410
|
+
| {
|
|
11411
|
+
/** Date and time at which Seam created the warning. */
|
|
11412
|
+
created_at: string
|
|
11413
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11414
|
+
message: string
|
|
11415
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11416
|
+
warning_code: 'needs_to_be_reissued'
|
|
11417
|
+
}
|
|
11130
11418
|
>
|
|
11131
11419
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
11132
11420
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -11288,6 +11576,14 @@ export interface Routes {
|
|
|
11288
11576
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11289
11577
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
11290
11578
|
}
|
|
11579
|
+
| {
|
|
11580
|
+
/** Date and time at which Seam created the warning. */
|
|
11581
|
+
created_at: string
|
|
11582
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11583
|
+
message: string
|
|
11584
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11585
|
+
warning_code: 'needs_to_be_reissued'
|
|
11586
|
+
}
|
|
11291
11587
|
>
|
|
11292
11588
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
11293
11589
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -11402,6 +11698,14 @@ export interface Routes {
|
|
|
11402
11698
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11403
11699
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
11404
11700
|
}
|
|
11701
|
+
| {
|
|
11702
|
+
/** Date and time at which Seam created the warning. */
|
|
11703
|
+
created_at: string
|
|
11704
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11705
|
+
message: string
|
|
11706
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11707
|
+
warning_code: 'needs_to_be_reissued'
|
|
11708
|
+
}
|
|
11405
11709
|
>
|
|
11406
11710
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
11407
11711
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -11960,6 +12264,14 @@ export interface Routes {
|
|
|
11960
12264
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11961
12265
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
11962
12266
|
}
|
|
12267
|
+
| {
|
|
12268
|
+
/** Date and time at which Seam created the warning. */
|
|
12269
|
+
created_at: string
|
|
12270
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12271
|
+
message: string
|
|
12272
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12273
|
+
warning_code: 'needs_to_be_reissued'
|
|
12274
|
+
}
|
|
11963
12275
|
>
|
|
11964
12276
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
11965
12277
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -12074,6 +12386,14 @@ export interface Routes {
|
|
|
12074
12386
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12075
12387
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
12076
12388
|
}
|
|
12389
|
+
| {
|
|
12390
|
+
/** Date and time at which Seam created the warning. */
|
|
12391
|
+
created_at: string
|
|
12392
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12393
|
+
message: string
|
|
12394
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12395
|
+
warning_code: 'needs_to_be_reissued'
|
|
12396
|
+
}
|
|
12077
12397
|
>
|
|
12078
12398
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
12079
12399
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -12235,6 +12555,14 @@ export interface Routes {
|
|
|
12235
12555
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12236
12556
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
12237
12557
|
}
|
|
12558
|
+
| {
|
|
12559
|
+
/** Date and time at which Seam created the warning. */
|
|
12560
|
+
created_at: string
|
|
12561
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12562
|
+
message: string
|
|
12563
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12564
|
+
warning_code: 'needs_to_be_reissued'
|
|
12565
|
+
}
|
|
12238
12566
|
>
|
|
12239
12567
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
12240
12568
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -12349,6 +12677,14 @@ export interface Routes {
|
|
|
12349
12677
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12350
12678
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
12351
12679
|
}
|
|
12680
|
+
| {
|
|
12681
|
+
/** Date and time at which Seam created the warning. */
|
|
12682
|
+
created_at: string
|
|
12683
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12684
|
+
message: string
|
|
12685
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12686
|
+
warning_code: 'needs_to_be_reissued'
|
|
12687
|
+
}
|
|
12352
12688
|
>
|
|
12353
12689
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
12354
12690
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -16183,6 +16519,22 @@ export interface Routes {
|
|
|
16183
16519
|
acs_credential_id: string
|
|
16184
16520
|
event_type: 'acs_credential.issued'
|
|
16185
16521
|
}
|
|
16522
|
+
| {
|
|
16523
|
+
/** ID of the event. */
|
|
16524
|
+
event_id: string
|
|
16525
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16526
|
+
workspace_id: string
|
|
16527
|
+
/** Date and time at which the event was created. */
|
|
16528
|
+
created_at: string
|
|
16529
|
+
/** Date and time at which the event occurred. */
|
|
16530
|
+
occurred_at: string
|
|
16531
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16532
|
+
connected_account_id?: string | undefined
|
|
16533
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16534
|
+
acs_system_id: string
|
|
16535
|
+
acs_credential_id: string
|
|
16536
|
+
event_type: 'acs_credential.reissued'
|
|
16537
|
+
}
|
|
16186
16538
|
| {
|
|
16187
16539
|
/** ID of the event. */
|
|
16188
16540
|
event_id: string
|
|
@@ -17136,6 +17488,7 @@ export interface Routes {
|
|
|
17136
17488
|
| 'acs_user.deleted'
|
|
17137
17489
|
| 'acs_credential.deleted'
|
|
17138
17490
|
| 'acs_credential.issued'
|
|
17491
|
+
| 'acs_credential.reissued'
|
|
17139
17492
|
| 'acs_encoder.added'
|
|
17140
17493
|
| 'acs_encoder.removed'
|
|
17141
17494
|
| 'enrollment_automation.deleted'
|
|
@@ -17213,6 +17566,7 @@ export interface Routes {
|
|
|
17213
17566
|
| 'acs_user.deleted'
|
|
17214
17567
|
| 'acs_credential.deleted'
|
|
17215
17568
|
| 'acs_credential.issued'
|
|
17569
|
+
| 'acs_credential.reissued'
|
|
17216
17570
|
| 'acs_encoder.added'
|
|
17217
17571
|
| 'acs_encoder.removed'
|
|
17218
17572
|
| 'enrollment_automation.deleted'
|
|
@@ -17608,6 +17962,22 @@ export interface Routes {
|
|
|
17608
17962
|
acs_credential_id: string
|
|
17609
17963
|
event_type: 'acs_credential.issued'
|
|
17610
17964
|
}
|
|
17965
|
+
| {
|
|
17966
|
+
/** ID of the event. */
|
|
17967
|
+
event_id: string
|
|
17968
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17969
|
+
workspace_id: string
|
|
17970
|
+
/** Date and time at which the event was created. */
|
|
17971
|
+
created_at: string
|
|
17972
|
+
/** Date and time at which the event occurred. */
|
|
17973
|
+
occurred_at: string
|
|
17974
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
17975
|
+
connected_account_id?: string | undefined
|
|
17976
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
17977
|
+
acs_system_id: string
|
|
17978
|
+
acs_credential_id: string
|
|
17979
|
+
event_type: 'acs_credential.reissued'
|
|
17980
|
+
}
|
|
17611
17981
|
| {
|
|
17612
17982
|
/** ID of the event. */
|
|
17613
17983
|
event_id: string
|
|
@@ -21993,6 +22363,14 @@ export interface Routes {
|
|
|
21993
22363
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21994
22364
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
21995
22365
|
}
|
|
22366
|
+
| {
|
|
22367
|
+
/** Date and time at which Seam created the warning. */
|
|
22368
|
+
created_at: string
|
|
22369
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22370
|
+
message: string
|
|
22371
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22372
|
+
warning_code: 'needs_to_be_reissued'
|
|
22373
|
+
}
|
|
21996
22374
|
>
|
|
21997
22375
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21998
22376
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -22107,6 +22485,14 @@ export interface Routes {
|
|
|
22107
22485
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22108
22486
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
22109
22487
|
}
|
|
22488
|
+
| {
|
|
22489
|
+
/** Date and time at which Seam created the warning. */
|
|
22490
|
+
created_at: string
|
|
22491
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22492
|
+
message: string
|
|
22493
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22494
|
+
warning_code: 'needs_to_be_reissued'
|
|
22495
|
+
}
|
|
22110
22496
|
>
|
|
22111
22497
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22112
22498
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -22268,6 +22654,14 @@ export interface Routes {
|
|
|
22268
22654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22269
22655
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
22270
22656
|
}
|
|
22657
|
+
| {
|
|
22658
|
+
/** Date and time at which Seam created the warning. */
|
|
22659
|
+
created_at: string
|
|
22660
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22661
|
+
message: string
|
|
22662
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22663
|
+
warning_code: 'needs_to_be_reissued'
|
|
22664
|
+
}
|
|
22271
22665
|
>
|
|
22272
22666
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22273
22667
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -22382,6 +22776,14 @@ export interface Routes {
|
|
|
22382
22776
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22383
22777
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
22384
22778
|
}
|
|
22779
|
+
| {
|
|
22780
|
+
/** Date and time at which Seam created the warning. */
|
|
22781
|
+
created_at: string
|
|
22782
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22783
|
+
message: string
|
|
22784
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22785
|
+
warning_code: 'needs_to_be_reissued'
|
|
22786
|
+
}
|
|
22385
22787
|
>
|
|
22386
22788
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22387
22789
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -22942,6 +23344,14 @@ export interface Routes {
|
|
|
22942
23344
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22943
23345
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
22944
23346
|
}
|
|
23347
|
+
| {
|
|
23348
|
+
/** Date and time at which Seam created the warning. */
|
|
23349
|
+
created_at: string
|
|
23350
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23351
|
+
message: string
|
|
23352
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23353
|
+
warning_code: 'needs_to_be_reissued'
|
|
23354
|
+
}
|
|
22945
23355
|
>
|
|
22946
23356
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22947
23357
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -23056,6 +23466,14 @@ export interface Routes {
|
|
|
23056
23466
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23057
23467
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
23058
23468
|
}
|
|
23469
|
+
| {
|
|
23470
|
+
/** Date and time at which Seam created the warning. */
|
|
23471
|
+
created_at: string
|
|
23472
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23473
|
+
message: string
|
|
23474
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23475
|
+
warning_code: 'needs_to_be_reissued'
|
|
23476
|
+
}
|
|
23059
23477
|
>
|
|
23060
23478
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23061
23479
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -23217,6 +23635,14 @@ export interface Routes {
|
|
|
23217
23635
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23218
23636
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
23219
23637
|
}
|
|
23638
|
+
| {
|
|
23639
|
+
/** Date and time at which Seam created the warning. */
|
|
23640
|
+
created_at: string
|
|
23641
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23642
|
+
message: string
|
|
23643
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23644
|
+
warning_code: 'needs_to_be_reissued'
|
|
23645
|
+
}
|
|
23220
23646
|
>
|
|
23221
23647
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23222
23648
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -23331,6 +23757,14 @@ export interface Routes {
|
|
|
23331
23757
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23332
23758
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
23333
23759
|
}
|
|
23760
|
+
| {
|
|
23761
|
+
/** Date and time at which Seam created the warning. */
|
|
23762
|
+
created_at: string
|
|
23763
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23764
|
+
message: string
|
|
23765
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23766
|
+
warning_code: 'needs_to_be_reissued'
|
|
23767
|
+
}
|
|
23334
23768
|
>
|
|
23335
23769
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23336
23770
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -25675,6 +26109,14 @@ export interface Routes {
|
|
|
25675
26109
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25676
26110
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
25677
26111
|
}
|
|
26112
|
+
| {
|
|
26113
|
+
/** Date and time at which Seam created the warning. */
|
|
26114
|
+
created_at: string
|
|
26115
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26116
|
+
message: string
|
|
26117
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26118
|
+
warning_code: 'needs_to_be_reissued'
|
|
26119
|
+
}
|
|
25678
26120
|
>
|
|
25679
26121
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25680
26122
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -25789,6 +26231,14 @@ export interface Routes {
|
|
|
25789
26231
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25790
26232
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
25791
26233
|
}
|
|
26234
|
+
| {
|
|
26235
|
+
/** Date and time at which Seam created the warning. */
|
|
26236
|
+
created_at: string
|
|
26237
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26238
|
+
message: string
|
|
26239
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26240
|
+
warning_code: 'needs_to_be_reissued'
|
|
26241
|
+
}
|
|
25792
26242
|
>
|
|
25793
26243
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25794
26244
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -25950,6 +26400,14 @@ export interface Routes {
|
|
|
25950
26400
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25951
26401
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
25952
26402
|
}
|
|
26403
|
+
| {
|
|
26404
|
+
/** Date and time at which Seam created the warning. */
|
|
26405
|
+
created_at: string
|
|
26406
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26407
|
+
message: string
|
|
26408
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26409
|
+
warning_code: 'needs_to_be_reissued'
|
|
26410
|
+
}
|
|
25953
26411
|
>
|
|
25954
26412
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25955
26413
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -26064,6 +26522,14 @@ export interface Routes {
|
|
|
26064
26522
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26065
26523
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
26066
26524
|
}
|
|
26525
|
+
| {
|
|
26526
|
+
/** Date and time at which Seam created the warning. */
|
|
26527
|
+
created_at: string
|
|
26528
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26529
|
+
message: string
|
|
26530
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26531
|
+
warning_code: 'needs_to_be_reissued'
|
|
26532
|
+
}
|
|
26067
26533
|
>
|
|
26068
26534
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26069
26535
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -26635,6 +27101,14 @@ export interface Routes {
|
|
|
26635
27101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26636
27102
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
26637
27103
|
}
|
|
27104
|
+
| {
|
|
27105
|
+
/** Date and time at which Seam created the warning. */
|
|
27106
|
+
created_at: string
|
|
27107
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27108
|
+
message: string
|
|
27109
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27110
|
+
warning_code: 'needs_to_be_reissued'
|
|
27111
|
+
}
|
|
26638
27112
|
>
|
|
26639
27113
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26640
27114
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -26749,6 +27223,14 @@ export interface Routes {
|
|
|
26749
27223
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26750
27224
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
26751
27225
|
}
|
|
27226
|
+
| {
|
|
27227
|
+
/** Date and time at which Seam created the warning. */
|
|
27228
|
+
created_at: string
|
|
27229
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27230
|
+
message: string
|
|
27231
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27232
|
+
warning_code: 'needs_to_be_reissued'
|
|
27233
|
+
}
|
|
26752
27234
|
>
|
|
26753
27235
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26754
27236
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -26910,6 +27392,14 @@ export interface Routes {
|
|
|
26910
27392
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26911
27393
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
26912
27394
|
}
|
|
27395
|
+
| {
|
|
27396
|
+
/** Date and time at which Seam created the warning. */
|
|
27397
|
+
created_at: string
|
|
27398
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27399
|
+
message: string
|
|
27400
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27401
|
+
warning_code: 'needs_to_be_reissued'
|
|
27402
|
+
}
|
|
26913
27403
|
>
|
|
26914
27404
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26915
27405
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -27024,6 +27514,14 @@ export interface Routes {
|
|
|
27024
27514
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27025
27515
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
27026
27516
|
}
|
|
27517
|
+
| {
|
|
27518
|
+
/** Date and time at which Seam created the warning. */
|
|
27519
|
+
created_at: string
|
|
27520
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27521
|
+
message: string
|
|
27522
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27523
|
+
warning_code: 'needs_to_be_reissued'
|
|
27524
|
+
}
|
|
27027
27525
|
>
|
|
27028
27526
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27029
27527
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -27634,6 +28132,14 @@ export interface Routes {
|
|
|
27634
28132
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27635
28133
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
27636
28134
|
}
|
|
28135
|
+
| {
|
|
28136
|
+
/** Date and time at which Seam created the warning. */
|
|
28137
|
+
created_at: string
|
|
28138
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28139
|
+
message: string
|
|
28140
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28141
|
+
warning_code: 'needs_to_be_reissued'
|
|
28142
|
+
}
|
|
27637
28143
|
>
|
|
27638
28144
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27639
28145
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -27748,6 +28254,14 @@ export interface Routes {
|
|
|
27748
28254
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27749
28255
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
27750
28256
|
}
|
|
28257
|
+
| {
|
|
28258
|
+
/** Date and time at which Seam created the warning. */
|
|
28259
|
+
created_at: string
|
|
28260
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28261
|
+
message: string
|
|
28262
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28263
|
+
warning_code: 'needs_to_be_reissued'
|
|
28264
|
+
}
|
|
27751
28265
|
>
|
|
27752
28266
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27753
28267
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -27909,6 +28423,14 @@ export interface Routes {
|
|
|
27909
28423
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27910
28424
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
27911
28425
|
}
|
|
28426
|
+
| {
|
|
28427
|
+
/** Date and time at which Seam created the warning. */
|
|
28428
|
+
created_at: string
|
|
28429
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28430
|
+
message: string
|
|
28431
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28432
|
+
warning_code: 'needs_to_be_reissued'
|
|
28433
|
+
}
|
|
27912
28434
|
>
|
|
27913
28435
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27914
28436
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -28023,6 +28545,14 @@ export interface Routes {
|
|
|
28023
28545
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28024
28546
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
28025
28547
|
}
|
|
28548
|
+
| {
|
|
28549
|
+
/** Date and time at which Seam created the warning. */
|
|
28550
|
+
created_at: string
|
|
28551
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28552
|
+
message: string
|
|
28553
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28554
|
+
warning_code: 'needs_to_be_reissued'
|
|
28555
|
+
}
|
|
28026
28556
|
>
|
|
28027
28557
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28028
28558
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -28942,6 +29472,14 @@ export interface Routes {
|
|
|
28942
29472
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28943
29473
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
28944
29474
|
}
|
|
29475
|
+
| {
|
|
29476
|
+
/** Date and time at which Seam created the warning. */
|
|
29477
|
+
created_at: string
|
|
29478
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
29479
|
+
message: string
|
|
29480
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29481
|
+
warning_code: 'needs_to_be_reissued'
|
|
29482
|
+
}
|
|
28945
29483
|
>
|
|
28946
29484
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28947
29485
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -29056,6 +29594,14 @@ export interface Routes {
|
|
|
29056
29594
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29057
29595
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
29058
29596
|
}
|
|
29597
|
+
| {
|
|
29598
|
+
/** Date and time at which Seam created the warning. */
|
|
29599
|
+
created_at: string
|
|
29600
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
29601
|
+
message: string
|
|
29602
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29603
|
+
warning_code: 'needs_to_be_reissued'
|
|
29604
|
+
}
|
|
29059
29605
|
>
|
|
29060
29606
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
29061
29607
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -29217,6 +29763,14 @@ export interface Routes {
|
|
|
29217
29763
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29218
29764
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
29219
29765
|
}
|
|
29766
|
+
| {
|
|
29767
|
+
/** Date and time at which Seam created the warning. */
|
|
29768
|
+
created_at: string
|
|
29769
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
29770
|
+
message: string
|
|
29771
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29772
|
+
warning_code: 'needs_to_be_reissued'
|
|
29773
|
+
}
|
|
29220
29774
|
>
|
|
29221
29775
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
29222
29776
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -29331,6 +29885,14 @@ export interface Routes {
|
|
|
29331
29885
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29332
29886
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
29333
29887
|
}
|
|
29888
|
+
| {
|
|
29889
|
+
/** Date and time at which Seam created the warning. */
|
|
29890
|
+
created_at: string
|
|
29891
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
29892
|
+
message: string
|
|
29893
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29894
|
+
warning_code: 'needs_to_be_reissued'
|
|
29895
|
+
}
|
|
29334
29896
|
>
|
|
29335
29897
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
29336
29898
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -29897,6 +30459,14 @@ export interface Routes {
|
|
|
29897
30459
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29898
30460
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
29899
30461
|
}
|
|
30462
|
+
| {
|
|
30463
|
+
/** Date and time at which Seam created the warning. */
|
|
30464
|
+
created_at: string
|
|
30465
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30466
|
+
message: string
|
|
30467
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30468
|
+
warning_code: 'needs_to_be_reissued'
|
|
30469
|
+
}
|
|
29900
30470
|
>
|
|
29901
30471
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
29902
30472
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -30011,6 +30581,14 @@ export interface Routes {
|
|
|
30011
30581
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30012
30582
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
30013
30583
|
}
|
|
30584
|
+
| {
|
|
30585
|
+
/** Date and time at which Seam created the warning. */
|
|
30586
|
+
created_at: string
|
|
30587
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30588
|
+
message: string
|
|
30589
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30590
|
+
warning_code: 'needs_to_be_reissued'
|
|
30591
|
+
}
|
|
30014
30592
|
>
|
|
30015
30593
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
30016
30594
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -30172,6 +30750,14 @@ export interface Routes {
|
|
|
30172
30750
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30173
30751
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
30174
30752
|
}
|
|
30753
|
+
| {
|
|
30754
|
+
/** Date and time at which Seam created the warning. */
|
|
30755
|
+
created_at: string
|
|
30756
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30757
|
+
message: string
|
|
30758
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30759
|
+
warning_code: 'needs_to_be_reissued'
|
|
30760
|
+
}
|
|
30175
30761
|
>
|
|
30176
30762
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
30177
30763
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -30286,6 +30872,14 @@ export interface Routes {
|
|
|
30286
30872
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30287
30873
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
30288
30874
|
}
|
|
30875
|
+
| {
|
|
30876
|
+
/** Date and time at which Seam created the warning. */
|
|
30877
|
+
created_at: string
|
|
30878
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30879
|
+
message: string
|
|
30880
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30881
|
+
warning_code: 'needs_to_be_reissued'
|
|
30882
|
+
}
|
|
30289
30883
|
>
|
|
30290
30884
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
30291
30885
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -31693,6 +32287,14 @@ export interface Routes {
|
|
|
31693
32287
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31694
32288
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
31695
32289
|
}
|
|
32290
|
+
| {
|
|
32291
|
+
/** Date and time at which Seam created the warning. */
|
|
32292
|
+
created_at: string
|
|
32293
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
32294
|
+
message: string
|
|
32295
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32296
|
+
warning_code: 'needs_to_be_reissued'
|
|
32297
|
+
}
|
|
31696
32298
|
>
|
|
31697
32299
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
31698
32300
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -31807,6 +32409,14 @@ export interface Routes {
|
|
|
31807
32409
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31808
32410
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
31809
32411
|
}
|
|
32412
|
+
| {
|
|
32413
|
+
/** Date and time at which Seam created the warning. */
|
|
32414
|
+
created_at: string
|
|
32415
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
32416
|
+
message: string
|
|
32417
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32418
|
+
warning_code: 'needs_to_be_reissued'
|
|
32419
|
+
}
|
|
31810
32420
|
>
|
|
31811
32421
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
31812
32422
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -31968,6 +32578,14 @@ export interface Routes {
|
|
|
31968
32578
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31969
32579
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
31970
32580
|
}
|
|
32581
|
+
| {
|
|
32582
|
+
/** Date and time at which Seam created the warning. */
|
|
32583
|
+
created_at: string
|
|
32584
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
32585
|
+
message: string
|
|
32586
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32587
|
+
warning_code: 'needs_to_be_reissued'
|
|
32588
|
+
}
|
|
31971
32589
|
>
|
|
31972
32590
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
31973
32591
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -32082,6 +32700,14 @@ export interface Routes {
|
|
|
32082
32700
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32083
32701
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
32084
32702
|
}
|
|
32703
|
+
| {
|
|
32704
|
+
/** Date and time at which Seam created the warning. */
|
|
32705
|
+
created_at: string
|
|
32706
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
32707
|
+
message: string
|
|
32708
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32709
|
+
warning_code: 'needs_to_be_reissued'
|
|
32710
|
+
}
|
|
32085
32711
|
>
|
|
32086
32712
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32087
32713
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -32652,6 +33278,14 @@ export interface Routes {
|
|
|
32652
33278
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32653
33279
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
32654
33280
|
}
|
|
33281
|
+
| {
|
|
33282
|
+
/** Date and time at which Seam created the warning. */
|
|
33283
|
+
created_at: string
|
|
33284
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33285
|
+
message: string
|
|
33286
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33287
|
+
warning_code: 'needs_to_be_reissued'
|
|
33288
|
+
}
|
|
32655
33289
|
>
|
|
32656
33290
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32657
33291
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -32766,6 +33400,14 @@ export interface Routes {
|
|
|
32766
33400
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32767
33401
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
32768
33402
|
}
|
|
33403
|
+
| {
|
|
33404
|
+
/** Date and time at which Seam created the warning. */
|
|
33405
|
+
created_at: string
|
|
33406
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33407
|
+
message: string
|
|
33408
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33409
|
+
warning_code: 'needs_to_be_reissued'
|
|
33410
|
+
}
|
|
32769
33411
|
>
|
|
32770
33412
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32771
33413
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -32927,6 +33569,14 @@ export interface Routes {
|
|
|
32927
33569
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32928
33570
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
32929
33571
|
}
|
|
33572
|
+
| {
|
|
33573
|
+
/** Date and time at which Seam created the warning. */
|
|
33574
|
+
created_at: string
|
|
33575
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33576
|
+
message: string
|
|
33577
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33578
|
+
warning_code: 'needs_to_be_reissued'
|
|
33579
|
+
}
|
|
32930
33580
|
>
|
|
32931
33581
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32932
33582
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -33041,6 +33691,14 @@ export interface Routes {
|
|
|
33041
33691
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33042
33692
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
33043
33693
|
}
|
|
33694
|
+
| {
|
|
33695
|
+
/** Date and time at which Seam created the warning. */
|
|
33696
|
+
created_at: string
|
|
33697
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33698
|
+
message: string
|
|
33699
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33700
|
+
warning_code: 'needs_to_be_reissued'
|
|
33701
|
+
}
|
|
33044
33702
|
>
|
|
33045
33703
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
33046
33704
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -35347,6 +36005,14 @@ export interface Routes {
|
|
|
35347
36005
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35348
36006
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
35349
36007
|
}
|
|
36008
|
+
| {
|
|
36009
|
+
/** Date and time at which Seam created the warning. */
|
|
36010
|
+
created_at: string
|
|
36011
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36012
|
+
message: string
|
|
36013
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36014
|
+
warning_code: 'needs_to_be_reissued'
|
|
36015
|
+
}
|
|
35350
36016
|
>
|
|
35351
36017
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
35352
36018
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -35461,6 +36127,14 @@ export interface Routes {
|
|
|
35461
36127
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35462
36128
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
35463
36129
|
}
|
|
36130
|
+
| {
|
|
36131
|
+
/** Date and time at which Seam created the warning. */
|
|
36132
|
+
created_at: string
|
|
36133
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36134
|
+
message: string
|
|
36135
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36136
|
+
warning_code: 'needs_to_be_reissued'
|
|
36137
|
+
}
|
|
35464
36138
|
>
|
|
35465
36139
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
35466
36140
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -35622,6 +36296,14 @@ export interface Routes {
|
|
|
35622
36296
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35623
36297
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
35624
36298
|
}
|
|
36299
|
+
| {
|
|
36300
|
+
/** Date and time at which Seam created the warning. */
|
|
36301
|
+
created_at: string
|
|
36302
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36303
|
+
message: string
|
|
36304
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36305
|
+
warning_code: 'needs_to_be_reissued'
|
|
36306
|
+
}
|
|
35625
36307
|
>
|
|
35626
36308
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
35627
36309
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -35736,6 +36418,14 @@ export interface Routes {
|
|
|
35736
36418
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35737
36419
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
35738
36420
|
}
|
|
36421
|
+
| {
|
|
36422
|
+
/** Date and time at which Seam created the warning. */
|
|
36423
|
+
created_at: string
|
|
36424
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36425
|
+
message: string
|
|
36426
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36427
|
+
warning_code: 'needs_to_be_reissued'
|
|
36428
|
+
}
|
|
35739
36429
|
>
|
|
35740
36430
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
35741
36431
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -36482,6 +37172,14 @@ export interface Routes {
|
|
|
36482
37172
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36483
37173
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
36484
37174
|
}
|
|
37175
|
+
| {
|
|
37176
|
+
/** Date and time at which Seam created the warning. */
|
|
37177
|
+
created_at: string
|
|
37178
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37179
|
+
message: string
|
|
37180
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37181
|
+
warning_code: 'needs_to_be_reissued'
|
|
37182
|
+
}
|
|
36485
37183
|
>
|
|
36486
37184
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36487
37185
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -36596,6 +37294,14 @@ export interface Routes {
|
|
|
36596
37294
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36597
37295
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
36598
37296
|
}
|
|
37297
|
+
| {
|
|
37298
|
+
/** Date and time at which Seam created the warning. */
|
|
37299
|
+
created_at: string
|
|
37300
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37301
|
+
message: string
|
|
37302
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37303
|
+
warning_code: 'needs_to_be_reissued'
|
|
37304
|
+
}
|
|
36599
37305
|
>
|
|
36600
37306
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36601
37307
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -36757,6 +37463,14 @@ export interface Routes {
|
|
|
36757
37463
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36758
37464
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
36759
37465
|
}
|
|
37466
|
+
| {
|
|
37467
|
+
/** Date and time at which Seam created the warning. */
|
|
37468
|
+
created_at: string
|
|
37469
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37470
|
+
message: string
|
|
37471
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37472
|
+
warning_code: 'needs_to_be_reissued'
|
|
37473
|
+
}
|
|
36760
37474
|
>
|
|
36761
37475
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36762
37476
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -36871,6 +37585,14 @@ export interface Routes {
|
|
|
36871
37585
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36872
37586
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
36873
37587
|
}
|
|
37588
|
+
| {
|
|
37589
|
+
/** Date and time at which Seam created the warning. */
|
|
37590
|
+
created_at: string
|
|
37591
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37592
|
+
message: string
|
|
37593
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37594
|
+
warning_code: 'needs_to_be_reissued'
|
|
37595
|
+
}
|
|
36874
37596
|
>
|
|
36875
37597
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36876
37598
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -37464,6 +38186,14 @@ export interface Routes {
|
|
|
37464
38186
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37465
38187
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
37466
38188
|
}
|
|
38189
|
+
| {
|
|
38190
|
+
/** Date and time at which Seam created the warning. */
|
|
38191
|
+
created_at: string
|
|
38192
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38193
|
+
message: string
|
|
38194
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38195
|
+
warning_code: 'needs_to_be_reissued'
|
|
38196
|
+
}
|
|
37467
38197
|
>
|
|
37468
38198
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37469
38199
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -37578,6 +38308,14 @@ export interface Routes {
|
|
|
37578
38308
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37579
38309
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
37580
38310
|
}
|
|
38311
|
+
| {
|
|
38312
|
+
/** Date and time at which Seam created the warning. */
|
|
38313
|
+
created_at: string
|
|
38314
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38315
|
+
message: string
|
|
38316
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38317
|
+
warning_code: 'needs_to_be_reissued'
|
|
38318
|
+
}
|
|
37581
38319
|
>
|
|
37582
38320
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37583
38321
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -37739,6 +38477,14 @@ export interface Routes {
|
|
|
37739
38477
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37740
38478
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
37741
38479
|
}
|
|
38480
|
+
| {
|
|
38481
|
+
/** Date and time at which Seam created the warning. */
|
|
38482
|
+
created_at: string
|
|
38483
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38484
|
+
message: string
|
|
38485
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38486
|
+
warning_code: 'needs_to_be_reissued'
|
|
38487
|
+
}
|
|
37742
38488
|
>
|
|
37743
38489
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37744
38490
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -37853,6 +38599,14 @@ export interface Routes {
|
|
|
37853
38599
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37854
38600
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
37855
38601
|
}
|
|
38602
|
+
| {
|
|
38603
|
+
/** Date and time at which Seam created the warning. */
|
|
38604
|
+
created_at: string
|
|
38605
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38606
|
+
message: string
|
|
38607
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38608
|
+
warning_code: 'needs_to_be_reissued'
|
|
38609
|
+
}
|
|
37856
38610
|
>
|
|
37857
38611
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37858
38612
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -40758,6 +41512,14 @@ export interface Routes {
|
|
|
40758
41512
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40759
41513
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
40760
41514
|
}
|
|
41515
|
+
| {
|
|
41516
|
+
/** Date and time at which Seam created the warning. */
|
|
41517
|
+
created_at: string
|
|
41518
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41519
|
+
message: string
|
|
41520
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41521
|
+
warning_code: 'needs_to_be_reissued'
|
|
41522
|
+
}
|
|
40761
41523
|
>
|
|
40762
41524
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40763
41525
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -40872,6 +41634,14 @@ export interface Routes {
|
|
|
40872
41634
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40873
41635
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
40874
41636
|
}
|
|
41637
|
+
| {
|
|
41638
|
+
/** Date and time at which Seam created the warning. */
|
|
41639
|
+
created_at: string
|
|
41640
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41641
|
+
message: string
|
|
41642
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41643
|
+
warning_code: 'needs_to_be_reissued'
|
|
41644
|
+
}
|
|
40875
41645
|
>
|
|
40876
41646
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40877
41647
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -41033,6 +41803,14 @@ export interface Routes {
|
|
|
41033
41803
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41034
41804
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
41035
41805
|
}
|
|
41806
|
+
| {
|
|
41807
|
+
/** Date and time at which Seam created the warning. */
|
|
41808
|
+
created_at: string
|
|
41809
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41810
|
+
message: string
|
|
41811
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41812
|
+
warning_code: 'needs_to_be_reissued'
|
|
41813
|
+
}
|
|
41036
41814
|
>
|
|
41037
41815
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41038
41816
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
@@ -41147,6 +41925,14 @@ export interface Routes {
|
|
|
41147
41925
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41148
41926
|
warning_code: 'unknown_issue_with_acs_credential'
|
|
41149
41927
|
}
|
|
41928
|
+
| {
|
|
41929
|
+
/** Date and time at which Seam created the warning. */
|
|
41930
|
+
created_at: string
|
|
41931
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41932
|
+
message: string
|
|
41933
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41934
|
+
warning_code: 'needs_to_be_reissued'
|
|
41935
|
+
}
|
|
41150
41936
|
>
|
|
41151
41937
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41152
41938
|
is_multi_phone_sync_credential?: boolean | undefined
|