@seamapi/types 1.316.0 → 1.318.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.
Files changed (38) hide show
  1. package/dist/connect.cjs +202 -30
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1090 -216
  4. package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
  5. package/lib/seam/connect/models/acs/acs-credential.js +12 -0
  6. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-encoder.d.ts +0 -10
  8. package/lib/seam/connect/models/acs/acs-encoder.js +0 -4
  9. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
  11. package/lib/seam/connect/models/acs/acs-system.d.ts +34 -0
  12. package/lib/seam/connect/models/acs/acs-system.js +4 -0
  13. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  14. package/lib/seam/connect/models/acs/acs-user.d.ts +6 -6
  15. package/lib/seam/connect/models/acs/acs-user.js +1 -0
  16. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  17. package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +3 -0
  18. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +1 -0
  19. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
  20. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +132 -0
  21. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +58 -0
  22. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +74 -0
  23. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
  24. package/lib/seam/connect/models/devices/device-provider.js +1 -1
  25. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  26. package/lib/seam/connect/openapi.d.ts +37 -7
  27. package/lib/seam/connect/openapi.js +179 -14
  28. package/lib/seam/connect/openapi.js.map +1 -1
  29. package/lib/seam/connect/route-types.d.ts +678 -13
  30. package/package.json +1 -1
  31. package/src/lib/seam/connect/models/acs/acs-credential.ts +15 -0
  32. package/src/lib/seam/connect/models/acs/acs-encoder.ts +0 -6
  33. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -0
  34. package/src/lib/seam/connect/models/acs/acs-user.ts +1 -0
  35. package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +1 -0
  36. package/src/lib/seam/connect/models/devices/device-provider.ts +1 -1
  37. package/src/lib/seam/connect/openapi.ts +207 -15
  38. package/src/lib/seam/connect/route-types.ts +768 -9
@@ -207,6 +207,14 @@ export interface Routes {
207
207
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
208
208
  warning_code: 'being_deleted'
209
209
  }
210
+ | {
211
+ /** Date and time at which Seam created the warning. */
212
+ created_at: string
213
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
214
+ message: string
215
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
216
+ warning_code: 'unknown_issue_with_credential'
217
+ }
210
218
  >
211
219
  /** 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). */
212
220
  is_multi_phone_sync_credential?: boolean | undefined
@@ -313,6 +321,14 @@ export interface Routes {
313
321
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
314
322
  warning_code: 'being_deleted'
315
323
  }
324
+ | {
325
+ /** Date and time at which Seam created the warning. */
326
+ created_at: string
327
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
328
+ message: string
329
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
330
+ warning_code: 'unknown_issue_with_credential'
331
+ }
316
332
  >
317
333
  /** 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). */
318
334
  is_multi_phone_sync_credential?: boolean | undefined
@@ -466,6 +482,14 @@ export interface Routes {
466
482
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
467
483
  warning_code: 'being_deleted'
468
484
  }
485
+ | {
486
+ /** Date and time at which Seam created the warning. */
487
+ created_at: string
488
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
489
+ message: string
490
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
491
+ warning_code: 'unknown_issue_with_credential'
492
+ }
469
493
  >
470
494
  /** 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). */
471
495
  is_multi_phone_sync_credential?: boolean | undefined
@@ -572,6 +596,14 @@ export interface Routes {
572
596
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
573
597
  warning_code: 'being_deleted'
574
598
  }
599
+ | {
600
+ /** Date and time at which Seam created the warning. */
601
+ created_at: string
602
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
603
+ message: string
604
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
605
+ warning_code: 'unknown_issue_with_credential'
606
+ }
575
607
  >
576
608
  /** 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). */
577
609
  is_multi_phone_sync_credential?: boolean | undefined
@@ -1281,6 +1313,14 @@ export interface Routes {
1281
1313
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1282
1314
  warning_code: 'being_deleted'
1283
1315
  }
1316
+ | {
1317
+ /** Date and time at which Seam created the warning. */
1318
+ created_at: string
1319
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1320
+ message: string
1321
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1322
+ warning_code: 'unknown_issue_with_credential'
1323
+ }
1284
1324
  >
1285
1325
  /** 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). */
1286
1326
  is_multi_phone_sync_credential?: boolean | undefined
@@ -1387,6 +1427,14 @@ export interface Routes {
1387
1427
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1388
1428
  warning_code: 'being_deleted'
1389
1429
  }
1430
+ | {
1431
+ /** Date and time at which Seam created the warning. */
1432
+ created_at: string
1433
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1434
+ message: string
1435
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1436
+ warning_code: 'unknown_issue_with_credential'
1437
+ }
1390
1438
  >
1391
1439
  /** 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). */
1392
1440
  is_multi_phone_sync_credential?: boolean | undefined
@@ -1540,6 +1588,14 @@ export interface Routes {
1540
1588
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1541
1589
  warning_code: 'being_deleted'
1542
1590
  }
1591
+ | {
1592
+ /** Date and time at which Seam created the warning. */
1593
+ created_at: string
1594
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1595
+ message: string
1596
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1597
+ warning_code: 'unknown_issue_with_credential'
1598
+ }
1543
1599
  >
1544
1600
  /** 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). */
1545
1601
  is_multi_phone_sync_credential?: boolean | undefined
@@ -1646,6 +1702,14 @@ export interface Routes {
1646
1702
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1647
1703
  warning_code: 'being_deleted'
1648
1704
  }
1705
+ | {
1706
+ /** Date and time at which Seam created the warning. */
1707
+ created_at: string
1708
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1709
+ message: string
1710
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1711
+ warning_code: 'unknown_issue_with_credential'
1712
+ }
1649
1713
  >
1650
1714
  /** 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). */
1651
1715
  is_multi_phone_sync_credential?: boolean | undefined
@@ -2585,6 +2649,14 @@ export interface Routes {
2585
2649
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2586
2650
  warning_code: 'being_deleted'
2587
2651
  }
2652
+ | {
2653
+ /** Date and time at which Seam created the warning. */
2654
+ created_at: string
2655
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2656
+ message: string
2657
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2658
+ warning_code: 'unknown_issue_with_credential'
2659
+ }
2588
2660
  >
2589
2661
  /** 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). */
2590
2662
  is_multi_phone_sync_credential?: boolean | undefined
@@ -2691,6 +2763,14 @@ export interface Routes {
2691
2763
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2692
2764
  warning_code: 'being_deleted'
2693
2765
  }
2766
+ | {
2767
+ /** Date and time at which Seam created the warning. */
2768
+ created_at: string
2769
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2770
+ message: string
2771
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2772
+ warning_code: 'unknown_issue_with_credential'
2773
+ }
2694
2774
  >
2695
2775
  /** 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). */
2696
2776
  is_multi_phone_sync_credential?: boolean | undefined
@@ -2844,6 +2924,14 @@ export interface Routes {
2844
2924
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2845
2925
  warning_code: 'being_deleted'
2846
2926
  }
2927
+ | {
2928
+ /** Date and time at which Seam created the warning. */
2929
+ created_at: string
2930
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2931
+ message: string
2932
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2933
+ warning_code: 'unknown_issue_with_credential'
2934
+ }
2847
2935
  >
2848
2936
  /** 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). */
2849
2937
  is_multi_phone_sync_credential?: boolean | undefined
@@ -2950,6 +3038,14 @@ export interface Routes {
2950
3038
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2951
3039
  warning_code: 'being_deleted'
2952
3040
  }
3041
+ | {
3042
+ /** Date and time at which Seam created the warning. */
3043
+ created_at: string
3044
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
3045
+ message: string
3046
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3047
+ warning_code: 'unknown_issue_with_credential'
3048
+ }
2953
3049
  >
2954
3050
  /** 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). */
2955
3051
  is_multi_phone_sync_credential?: boolean | undefined
@@ -3646,6 +3742,14 @@ export interface Routes {
3646
3742
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3647
3743
  warning_code: 'being_deleted'
3648
3744
  }
3745
+ | {
3746
+ /** Date and time at which Seam created the warning. */
3747
+ created_at: string
3748
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
3749
+ message: string
3750
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3751
+ warning_code: 'unknown_issue_with_credential'
3752
+ }
3649
3753
  >
3650
3754
  /** 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). */
3651
3755
  is_multi_phone_sync_credential?: boolean | undefined
@@ -3752,6 +3856,14 @@ export interface Routes {
3752
3856
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3753
3857
  warning_code: 'being_deleted'
3754
3858
  }
3859
+ | {
3860
+ /** Date and time at which Seam created the warning. */
3861
+ created_at: string
3862
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
3863
+ message: string
3864
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3865
+ warning_code: 'unknown_issue_with_credential'
3866
+ }
3755
3867
  >
3756
3868
  /** 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). */
3757
3869
  is_multi_phone_sync_credential?: boolean | undefined
@@ -3905,6 +4017,14 @@ export interface Routes {
3905
4017
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3906
4018
  warning_code: 'being_deleted'
3907
4019
  }
4020
+ | {
4021
+ /** Date and time at which Seam created the warning. */
4022
+ created_at: string
4023
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
4024
+ message: string
4025
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4026
+ warning_code: 'unknown_issue_with_credential'
4027
+ }
3908
4028
  >
3909
4029
  /** 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). */
3910
4030
  is_multi_phone_sync_credential?: boolean | undefined
@@ -4011,6 +4131,14 @@ export interface Routes {
4011
4131
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4012
4132
  warning_code: 'being_deleted'
4013
4133
  }
4134
+ | {
4135
+ /** Date and time at which Seam created the warning. */
4136
+ created_at: string
4137
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
4138
+ message: string
4139
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4140
+ warning_code: 'unknown_issue_with_credential'
4141
+ }
4014
4142
  >
4015
4143
  /** 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). */
4016
4144
  is_multi_phone_sync_credential?: boolean | undefined
@@ -4561,6 +4689,7 @@ export interface Routes {
4561
4689
  access_point_name: string
4562
4690
  common_area_number?: number | undefined
4563
4691
  inner_access_points_names?: string[] | undefined
4692
+ lease_ids?: string[] | undefined
4564
4693
  }
4565
4694
  | undefined
4566
4695
  assa_abloy_vostio_metadata?:
@@ -4623,7 +4752,7 @@ export interface Routes {
4623
4752
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
4624
4753
  external_type_display_name?: string | undefined
4625
4754
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
4626
- is_suspended: boolean
4755
+ is_suspended?: boolean | undefined
4627
4756
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
4628
4757
  access_schedule?:
4629
4758
  | {
@@ -4958,6 +5087,14 @@ export interface Routes {
4958
5087
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4959
5088
  warning_code: 'being_deleted'
4960
5089
  }
5090
+ | {
5091
+ /** Date and time at which Seam created the warning. */
5092
+ created_at: string
5093
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5094
+ message: string
5095
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5096
+ warning_code: 'unknown_issue_with_credential'
5097
+ }
4961
5098
  >
4962
5099
  /** 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). */
4963
5100
  is_multi_phone_sync_credential?: boolean | undefined
@@ -5115,6 +5252,14 @@ export interface Routes {
5115
5252
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5116
5253
  warning_code: 'being_deleted'
5117
5254
  }
5255
+ | {
5256
+ /** Date and time at which Seam created the warning. */
5257
+ created_at: string
5258
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5259
+ message: string
5260
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5261
+ warning_code: 'unknown_issue_with_credential'
5262
+ }
5118
5263
  >
5119
5264
  /** 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). */
5120
5265
  is_multi_phone_sync_credential?: boolean | undefined
@@ -5240,6 +5385,14 @@ export interface Routes {
5240
5385
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5241
5386
  warning_code: 'being_deleted'
5242
5387
  }
5388
+ | {
5389
+ /** Date and time at which Seam created the warning. */
5390
+ created_at: string
5391
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5392
+ message: string
5393
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5394
+ warning_code: 'unknown_issue_with_credential'
5395
+ }
5243
5396
  >
5244
5397
  /** 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). */
5245
5398
  is_multi_phone_sync_credential?: boolean | undefined
@@ -5369,6 +5522,14 @@ export interface Routes {
5369
5522
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5370
5523
  warning_code: 'being_deleted'
5371
5524
  }
5525
+ | {
5526
+ /** Date and time at which Seam created the warning. */
5527
+ created_at: string
5528
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5529
+ message: string
5530
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5531
+ warning_code: 'unknown_issue_with_credential'
5532
+ }
5372
5533
  >
5373
5534
  /** 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). */
5374
5535
  is_multi_phone_sync_credential?: boolean | undefined
@@ -5507,6 +5668,14 @@ export interface Routes {
5507
5668
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5508
5669
  warning_code: 'being_deleted'
5509
5670
  }
5671
+ | {
5672
+ /** Date and time at which Seam created the warning. */
5673
+ created_at: string
5674
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5675
+ message: string
5676
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5677
+ warning_code: 'unknown_issue_with_credential'
5678
+ }
5510
5679
  >
5511
5680
  /** 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). */
5512
5681
  is_multi_phone_sync_credential?: boolean | undefined
@@ -5597,6 +5766,7 @@ export interface Routes {
5597
5766
  access_point_name: string
5598
5767
  common_area_number?: number | undefined
5599
5768
  inner_access_points_names?: string[] | undefined
5769
+ lease_ids?: string[] | undefined
5600
5770
  }
5601
5771
  | undefined
5602
5772
  assa_abloy_vostio_metadata?:
@@ -5717,6 +5887,14 @@ export interface Routes {
5717
5887
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5718
5888
  warning_code: 'being_deleted'
5719
5889
  }
5890
+ | {
5891
+ /** Date and time at which Seam created the warning. */
5892
+ created_at: string
5893
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5894
+ message: string
5895
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5896
+ warning_code: 'unknown_issue_with_credential'
5897
+ }
5720
5898
  >
5721
5899
  /** 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). */
5722
5900
  is_multi_phone_sync_credential?: boolean | undefined
@@ -5834,6 +6012,14 @@ export interface Routes {
5834
6012
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5835
6013
  warning_code: 'being_deleted'
5836
6014
  }
6015
+ | {
6016
+ /** Date and time at which Seam created the warning. */
6017
+ created_at: string
6018
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6019
+ message: string
6020
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6021
+ warning_code: 'unknown_issue_with_credential'
6022
+ }
5837
6023
  >
5838
6024
  /** 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). */
5839
6025
  is_multi_phone_sync_credential?: boolean | undefined
@@ -5964,6 +6150,14 @@ export interface Routes {
5964
6150
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5965
6151
  warning_code: 'being_deleted'
5966
6152
  }
6153
+ | {
6154
+ /** Date and time at which Seam created the warning. */
6155
+ created_at: string
6156
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6157
+ message: string
6158
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6159
+ warning_code: 'unknown_issue_with_credential'
6160
+ }
5967
6161
  >
5968
6162
  /** 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). */
5969
6163
  is_multi_phone_sync_credential?: boolean | undefined
@@ -6085,6 +6279,14 @@ export interface Routes {
6085
6279
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6086
6280
  warning_code: 'being_deleted'
6087
6281
  }
6282
+ | {
6283
+ /** Date and time at which Seam created the warning. */
6284
+ created_at: string
6285
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6286
+ message: string
6287
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6288
+ warning_code: 'unknown_issue_with_credential'
6289
+ }
6088
6290
  >
6089
6291
  /** 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). */
6090
6292
  is_multi_phone_sync_credential?: boolean | undefined
@@ -6304,6 +6506,14 @@ export interface Routes {
6304
6506
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6305
6507
  warning_code: 'being_deleted'
6306
6508
  }
6509
+ | {
6510
+ /** Date and time at which Seam created the warning. */
6511
+ created_at: string
6512
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6513
+ message: string
6514
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6515
+ warning_code: 'unknown_issue_with_credential'
6516
+ }
6307
6517
  >
6308
6518
  /** 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). */
6309
6519
  is_multi_phone_sync_credential?: boolean | undefined
@@ -6410,6 +6620,14 @@ export interface Routes {
6410
6620
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6411
6621
  warning_code: 'being_deleted'
6412
6622
  }
6623
+ | {
6624
+ /** Date and time at which Seam created the warning. */
6625
+ created_at: string
6626
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6627
+ message: string
6628
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6629
+ warning_code: 'unknown_issue_with_credential'
6630
+ }
6413
6631
  >
6414
6632
  /** 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). */
6415
6633
  is_multi_phone_sync_credential?: boolean | undefined
@@ -6563,6 +6781,14 @@ export interface Routes {
6563
6781
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6564
6782
  warning_code: 'being_deleted'
6565
6783
  }
6784
+ | {
6785
+ /** Date and time at which Seam created the warning. */
6786
+ created_at: string
6787
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6788
+ message: string
6789
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6790
+ warning_code: 'unknown_issue_with_credential'
6791
+ }
6566
6792
  >
6567
6793
  /** 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). */
6568
6794
  is_multi_phone_sync_credential?: boolean | undefined
@@ -6669,6 +6895,14 @@ export interface Routes {
6669
6895
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6670
6896
  warning_code: 'being_deleted'
6671
6897
  }
6898
+ | {
6899
+ /** Date and time at which Seam created the warning. */
6900
+ created_at: string
6901
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6902
+ message: string
6903
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6904
+ warning_code: 'unknown_issue_with_credential'
6905
+ }
6672
6906
  >
6673
6907
  /** 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). */
6674
6908
  is_multi_phone_sync_credential?: boolean | undefined
@@ -7062,8 +7296,6 @@ export interface Routes {
7062
7296
  message: string
7063
7297
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7064
7298
  error_code: 'acs_encoder_removed'
7065
- /** ID of the event that was created when the `acs_encoder` was removed. */
7066
- _event_id: string
7067
7299
  }>
7068
7300
  /** Date and time at which the `acs_encoder` was created. */
7069
7301
  created_at: string
@@ -7265,6 +7497,14 @@ export interface Routes {
7265
7497
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7266
7498
  warning_code: 'being_deleted'
7267
7499
  }
7500
+ | {
7501
+ /** Date and time at which Seam created the warning. */
7502
+ created_at: string
7503
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7504
+ message: string
7505
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7506
+ warning_code: 'unknown_issue_with_credential'
7507
+ }
7268
7508
  >
7269
7509
  /** 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). */
7270
7510
  is_multi_phone_sync_credential?: boolean | undefined
@@ -7371,6 +7611,14 @@ export interface Routes {
7371
7611
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7372
7612
  warning_code: 'being_deleted'
7373
7613
  }
7614
+ | {
7615
+ /** Date and time at which Seam created the warning. */
7616
+ created_at: string
7617
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7618
+ message: string
7619
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7620
+ warning_code: 'unknown_issue_with_credential'
7621
+ }
7374
7622
  >
7375
7623
  /** 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). */
7376
7624
  is_multi_phone_sync_credential?: boolean | undefined
@@ -7524,6 +7772,14 @@ export interface Routes {
7524
7772
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7525
7773
  warning_code: 'being_deleted'
7526
7774
  }
7775
+ | {
7776
+ /** Date and time at which Seam created the warning. */
7777
+ created_at: string
7778
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7779
+ message: string
7780
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7781
+ warning_code: 'unknown_issue_with_credential'
7782
+ }
7527
7783
  >
7528
7784
  /** 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). */
7529
7785
  is_multi_phone_sync_credential?: boolean | undefined
@@ -7630,6 +7886,14 @@ export interface Routes {
7630
7886
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7631
7887
  warning_code: 'being_deleted'
7632
7888
  }
7889
+ | {
7890
+ /** Date and time at which Seam created the warning. */
7891
+ created_at: string
7892
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7893
+ message: string
7894
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7895
+ warning_code: 'unknown_issue_with_credential'
7896
+ }
7633
7897
  >
7634
7898
  /** 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). */
7635
7899
  is_multi_phone_sync_credential?: boolean | undefined
@@ -8126,6 +8390,7 @@ export interface Routes {
8126
8390
  access_point_name: string
8127
8391
  common_area_number?: number | undefined
8128
8392
  inner_access_points_names?: string[] | undefined
8393
+ lease_ids?: string[] | undefined
8129
8394
  }
8130
8395
  | undefined
8131
8396
  assa_abloy_vostio_metadata?:
@@ -8229,6 +8494,7 @@ export interface Routes {
8229
8494
  access_point_name: string
8230
8495
  common_area_number?: number | undefined
8231
8496
  inner_access_points_names?: string[] | undefined
8497
+ lease_ids?: string[] | undefined
8232
8498
  }
8233
8499
  | undefined
8234
8500
  assa_abloy_vostio_metadata?:
@@ -8345,6 +8611,14 @@ export interface Routes {
8345
8611
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8346
8612
  warning_code: 'being_deleted'
8347
8613
  }
8614
+ | {
8615
+ /** Date and time at which Seam created the warning. */
8616
+ created_at: string
8617
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
8618
+ message: string
8619
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8620
+ warning_code: 'unknown_issue_with_credential'
8621
+ }
8348
8622
  >
8349
8623
  /** 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). */
8350
8624
  is_multi_phone_sync_credential?: boolean | undefined
@@ -8529,6 +8803,7 @@ export interface Routes {
8529
8803
  message: string
8530
8804
  /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
8531
8805
  warning_code: 'time_zone_does_not_match_location'
8806
+ misconfigured_acs_entrance_ids?: string[] | undefined
8532
8807
  }
8533
8808
  >
8534
8809
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
@@ -8701,6 +8976,7 @@ export interface Routes {
8701
8976
  message: string
8702
8977
  /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
8703
8978
  warning_code: 'time_zone_does_not_match_location'
8979
+ misconfigured_acs_entrance_ids?: string[] | undefined
8704
8980
  }
8705
8981
  >
8706
8982
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
@@ -8873,6 +9149,7 @@ export interface Routes {
8873
9149
  message: string
8874
9150
  /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
8875
9151
  warning_code: 'time_zone_does_not_match_location'
9152
+ misconfigured_acs_entrance_ids?: string[] | undefined
8876
9153
  }
8877
9154
  >
8878
9155
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
@@ -8958,7 +9235,7 @@ export interface Routes {
8958
9235
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8959
9236
  external_type_display_name?: string | undefined
8960
9237
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
8961
- is_suspended: boolean
9238
+ is_suspended?: boolean | undefined
8962
9239
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8963
9240
  access_schedule?:
8964
9241
  | {
@@ -9094,7 +9371,7 @@ export interface Routes {
9094
9371
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9095
9372
  external_type_display_name?: string | undefined
9096
9373
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9097
- is_suspended: boolean
9374
+ is_suspended?: boolean | undefined
9098
9375
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9099
9376
  access_schedule?:
9100
9377
  | {
@@ -9225,7 +9502,7 @@ export interface Routes {
9225
9502
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9226
9503
  external_type_display_name?: string | undefined
9227
9504
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9228
- is_suspended: boolean
9505
+ is_suspended?: boolean | undefined
9229
9506
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9230
9507
  access_schedule?:
9231
9508
  | {
@@ -9377,6 +9654,7 @@ export interface Routes {
9377
9654
  access_point_name: string
9378
9655
  common_area_number?: number | undefined
9379
9656
  inner_access_points_names?: string[] | undefined
9657
+ lease_ids?: string[] | undefined
9380
9658
  }
9381
9659
  | undefined
9382
9660
  assa_abloy_vostio_metadata?:
@@ -9477,7 +9755,7 @@ export interface Routes {
9477
9755
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9478
9756
  external_type_display_name?: string | undefined
9479
9757
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9480
- is_suspended: boolean
9758
+ is_suspended?: boolean | undefined
9481
9759
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9482
9760
  access_schedule?:
9483
9761
  | {
@@ -9603,7 +9881,7 @@ export interface Routes {
9603
9881
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9604
9882
  external_type_display_name?: string | undefined
9605
9883
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9606
- is_suspended: boolean
9884
+ is_suspended?: boolean | undefined
9607
9885
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9608
9886
  access_schedule?:
9609
9887
  | {
@@ -9922,6 +10200,14 @@ export interface Routes {
9922
10200
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9923
10201
  warning_code: 'being_deleted'
9924
10202
  }
10203
+ | {
10204
+ /** Date and time at which Seam created the warning. */
10205
+ created_at: string
10206
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
10207
+ message: string
10208
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10209
+ warning_code: 'unknown_issue_with_credential'
10210
+ }
9925
10211
  >
9926
10212
  /** 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). */
9927
10213
  is_multi_phone_sync_credential?: boolean | undefined
@@ -10028,6 +10314,14 @@ export interface Routes {
10028
10314
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10029
10315
  warning_code: 'being_deleted'
10030
10316
  }
10317
+ | {
10318
+ /** Date and time at which Seam created the warning. */
10319
+ created_at: string
10320
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
10321
+ message: string
10322
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10323
+ warning_code: 'unknown_issue_with_credential'
10324
+ }
10031
10325
  >
10032
10326
  /** 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). */
10033
10327
  is_multi_phone_sync_credential?: boolean | undefined
@@ -10181,6 +10475,14 @@ export interface Routes {
10181
10475
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10182
10476
  warning_code: 'being_deleted'
10183
10477
  }
10478
+ | {
10479
+ /** Date and time at which Seam created the warning. */
10480
+ created_at: string
10481
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
10482
+ message: string
10483
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10484
+ warning_code: 'unknown_issue_with_credential'
10485
+ }
10184
10486
  >
10185
10487
  /** 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). */
10186
10488
  is_multi_phone_sync_credential?: boolean | undefined
@@ -10287,6 +10589,14 @@ export interface Routes {
10287
10589
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10288
10590
  warning_code: 'being_deleted'
10289
10591
  }
10592
+ | {
10593
+ /** Date and time at which Seam created the warning. */
10594
+ created_at: string
10595
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
10596
+ message: string
10597
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10598
+ warning_code: 'unknown_issue_with_credential'
10599
+ }
10290
10600
  >
10291
10601
  /** 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). */
10292
10602
  is_multi_phone_sync_credential?: boolean | undefined
@@ -10837,6 +11147,14 @@ export interface Routes {
10837
11147
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10838
11148
  warning_code: 'being_deleted'
10839
11149
  }
11150
+ | {
11151
+ /** Date and time at which Seam created the warning. */
11152
+ created_at: string
11153
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11154
+ message: string
11155
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11156
+ warning_code: 'unknown_issue_with_credential'
11157
+ }
10840
11158
  >
10841
11159
  /** 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). */
10842
11160
  is_multi_phone_sync_credential?: boolean | undefined
@@ -10943,6 +11261,14 @@ export interface Routes {
10943
11261
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10944
11262
  warning_code: 'being_deleted'
10945
11263
  }
11264
+ | {
11265
+ /** Date and time at which Seam created the warning. */
11266
+ created_at: string
11267
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11268
+ message: string
11269
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11270
+ warning_code: 'unknown_issue_with_credential'
11271
+ }
10946
11272
  >
10947
11273
  /** 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). */
10948
11274
  is_multi_phone_sync_credential?: boolean | undefined
@@ -11096,6 +11422,14 @@ export interface Routes {
11096
11422
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11097
11423
  warning_code: 'being_deleted'
11098
11424
  }
11425
+ | {
11426
+ /** Date and time at which Seam created the warning. */
11427
+ created_at: string
11428
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11429
+ message: string
11430
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11431
+ warning_code: 'unknown_issue_with_credential'
11432
+ }
11099
11433
  >
11100
11434
  /** 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). */
11101
11435
  is_multi_phone_sync_credential?: boolean | undefined
@@ -11202,6 +11536,14 @@ export interface Routes {
11202
11536
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11203
11537
  warning_code: 'being_deleted'
11204
11538
  }
11539
+ | {
11540
+ /** Date and time at which Seam created the warning. */
11541
+ created_at: string
11542
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11543
+ message: string
11544
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11545
+ warning_code: 'unknown_issue_with_credential'
11546
+ }
11205
11547
  >
11206
11548
  /** 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). */
11207
11549
  is_multi_phone_sync_credential?: boolean | undefined
@@ -20119,6 +20461,14 @@ export interface Routes {
20119
20461
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20120
20462
  warning_code: 'being_deleted'
20121
20463
  }
20464
+ | {
20465
+ /** Date and time at which Seam created the warning. */
20466
+ created_at: string
20467
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20468
+ message: string
20469
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20470
+ warning_code: 'unknown_issue_with_credential'
20471
+ }
20122
20472
  >
20123
20473
  /** 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). */
20124
20474
  is_multi_phone_sync_credential?: boolean | undefined
@@ -20225,6 +20575,14 @@ export interface Routes {
20225
20575
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20226
20576
  warning_code: 'being_deleted'
20227
20577
  }
20578
+ | {
20579
+ /** Date and time at which Seam created the warning. */
20580
+ created_at: string
20581
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20582
+ message: string
20583
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20584
+ warning_code: 'unknown_issue_with_credential'
20585
+ }
20228
20586
  >
20229
20587
  /** 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). */
20230
20588
  is_multi_phone_sync_credential?: boolean | undefined
@@ -20378,6 +20736,14 @@ export interface Routes {
20378
20736
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20379
20737
  warning_code: 'being_deleted'
20380
20738
  }
20739
+ | {
20740
+ /** Date and time at which Seam created the warning. */
20741
+ created_at: string
20742
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20743
+ message: string
20744
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20745
+ warning_code: 'unknown_issue_with_credential'
20746
+ }
20381
20747
  >
20382
20748
  /** 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). */
20383
20749
  is_multi_phone_sync_credential?: boolean | undefined
@@ -20484,6 +20850,14 @@ export interface Routes {
20484
20850
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20485
20851
  warning_code: 'being_deleted'
20486
20852
  }
20853
+ | {
20854
+ /** Date and time at which Seam created the warning. */
20855
+ created_at: string
20856
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20857
+ message: string
20858
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20859
+ warning_code: 'unknown_issue_with_credential'
20860
+ }
20487
20861
  >
20488
20862
  /** 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). */
20489
20863
  is_multi_phone_sync_credential?: boolean | undefined
@@ -21035,6 +21409,14 @@ export interface Routes {
21035
21409
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21036
21410
  warning_code: 'being_deleted'
21037
21411
  }
21412
+ | {
21413
+ /** Date and time at which Seam created the warning. */
21414
+ created_at: string
21415
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21416
+ message: string
21417
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21418
+ warning_code: 'unknown_issue_with_credential'
21419
+ }
21038
21420
  >
21039
21421
  /** 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). */
21040
21422
  is_multi_phone_sync_credential?: boolean | undefined
@@ -21141,6 +21523,14 @@ export interface Routes {
21141
21523
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21142
21524
  warning_code: 'being_deleted'
21143
21525
  }
21526
+ | {
21527
+ /** Date and time at which Seam created the warning. */
21528
+ created_at: string
21529
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21530
+ message: string
21531
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21532
+ warning_code: 'unknown_issue_with_credential'
21533
+ }
21144
21534
  >
21145
21535
  /** 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). */
21146
21536
  is_multi_phone_sync_credential?: boolean | undefined
@@ -21294,6 +21684,14 @@ export interface Routes {
21294
21684
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21295
21685
  warning_code: 'being_deleted'
21296
21686
  }
21687
+ | {
21688
+ /** Date and time at which Seam created the warning. */
21689
+ created_at: string
21690
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21691
+ message: string
21692
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21693
+ warning_code: 'unknown_issue_with_credential'
21694
+ }
21297
21695
  >
21298
21696
  /** 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). */
21299
21697
  is_multi_phone_sync_credential?: boolean | undefined
@@ -21400,6 +21798,14 @@ export interface Routes {
21400
21798
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21401
21799
  warning_code: 'being_deleted'
21402
21800
  }
21801
+ | {
21802
+ /** Date and time at which Seam created the warning. */
21803
+ created_at: string
21804
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21805
+ message: string
21806
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21807
+ warning_code: 'unknown_issue_with_credential'
21808
+ }
21403
21809
  >
21404
21810
  /** 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). */
21405
21811
  is_multi_phone_sync_credential?: boolean | undefined
@@ -23578,6 +23984,14 @@ export interface Routes {
23578
23984
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23579
23985
  warning_code: 'being_deleted'
23580
23986
  }
23987
+ | {
23988
+ /** Date and time at which Seam created the warning. */
23989
+ created_at: string
23990
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
23991
+ message: string
23992
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23993
+ warning_code: 'unknown_issue_with_credential'
23994
+ }
23581
23995
  >
23582
23996
  /** 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). */
23583
23997
  is_multi_phone_sync_credential?: boolean | undefined
@@ -23684,6 +24098,14 @@ export interface Routes {
23684
24098
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23685
24099
  warning_code: 'being_deleted'
23686
24100
  }
24101
+ | {
24102
+ /** Date and time at which Seam created the warning. */
24103
+ created_at: string
24104
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24105
+ message: string
24106
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24107
+ warning_code: 'unknown_issue_with_credential'
24108
+ }
23687
24109
  >
23688
24110
  /** 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). */
23689
24111
  is_multi_phone_sync_credential?: boolean | undefined
@@ -23837,6 +24259,14 @@ export interface Routes {
23837
24259
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23838
24260
  warning_code: 'being_deleted'
23839
24261
  }
24262
+ | {
24263
+ /** Date and time at which Seam created the warning. */
24264
+ created_at: string
24265
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24266
+ message: string
24267
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24268
+ warning_code: 'unknown_issue_with_credential'
24269
+ }
23840
24270
  >
23841
24271
  /** 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). */
23842
24272
  is_multi_phone_sync_credential?: boolean | undefined
@@ -23943,6 +24373,14 @@ export interface Routes {
23943
24373
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23944
24374
  warning_code: 'being_deleted'
23945
24375
  }
24376
+ | {
24377
+ /** Date and time at which Seam created the warning. */
24378
+ created_at: string
24379
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24380
+ message: string
24381
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24382
+ warning_code: 'unknown_issue_with_credential'
24383
+ }
23946
24384
  >
23947
24385
  /** 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). */
23948
24386
  is_multi_phone_sync_credential?: boolean | undefined
@@ -24504,6 +24942,14 @@ export interface Routes {
24504
24942
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24505
24943
  warning_code: 'being_deleted'
24506
24944
  }
24945
+ | {
24946
+ /** Date and time at which Seam created the warning. */
24947
+ created_at: string
24948
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24949
+ message: string
24950
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24951
+ warning_code: 'unknown_issue_with_credential'
24952
+ }
24507
24953
  >
24508
24954
  /** 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). */
24509
24955
  is_multi_phone_sync_credential?: boolean | undefined
@@ -24610,6 +25056,14 @@ export interface Routes {
24610
25056
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24611
25057
  warning_code: 'being_deleted'
24612
25058
  }
25059
+ | {
25060
+ /** Date and time at which Seam created the warning. */
25061
+ created_at: string
25062
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
25063
+ message: string
25064
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25065
+ warning_code: 'unknown_issue_with_credential'
25066
+ }
24613
25067
  >
24614
25068
  /** 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). */
24615
25069
  is_multi_phone_sync_credential?: boolean | undefined
@@ -24763,6 +25217,14 @@ export interface Routes {
24763
25217
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24764
25218
  warning_code: 'being_deleted'
24765
25219
  }
25220
+ | {
25221
+ /** Date and time at which Seam created the warning. */
25222
+ created_at: string
25223
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
25224
+ message: string
25225
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25226
+ warning_code: 'unknown_issue_with_credential'
25227
+ }
24766
25228
  >
24767
25229
  /** 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). */
24768
25230
  is_multi_phone_sync_credential?: boolean | undefined
@@ -24869,6 +25331,14 @@ export interface Routes {
24869
25331
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24870
25332
  warning_code: 'being_deleted'
24871
25333
  }
25334
+ | {
25335
+ /** Date and time at which Seam created the warning. */
25336
+ created_at: string
25337
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
25338
+ message: string
25339
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25340
+ warning_code: 'unknown_issue_with_credential'
25341
+ }
24872
25342
  >
24873
25343
  /** 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). */
24874
25344
  is_multi_phone_sync_credential?: boolean | undefined
@@ -25469,6 +25939,14 @@ export interface Routes {
25469
25939
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25470
25940
  warning_code: 'being_deleted'
25471
25941
  }
25942
+ | {
25943
+ /** Date and time at which Seam created the warning. */
25944
+ created_at: string
25945
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
25946
+ message: string
25947
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25948
+ warning_code: 'unknown_issue_with_credential'
25949
+ }
25472
25950
  >
25473
25951
  /** 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). */
25474
25952
  is_multi_phone_sync_credential?: boolean | undefined
@@ -25575,6 +26053,14 @@ export interface Routes {
25575
26053
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25576
26054
  warning_code: 'being_deleted'
25577
26055
  }
26056
+ | {
26057
+ /** Date and time at which Seam created the warning. */
26058
+ created_at: string
26059
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
26060
+ message: string
26061
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26062
+ warning_code: 'unknown_issue_with_credential'
26063
+ }
25578
26064
  >
25579
26065
  /** 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). */
25580
26066
  is_multi_phone_sync_credential?: boolean | undefined
@@ -25728,6 +26214,14 @@ export interface Routes {
25728
26214
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25729
26215
  warning_code: 'being_deleted'
25730
26216
  }
26217
+ | {
26218
+ /** Date and time at which Seam created the warning. */
26219
+ created_at: string
26220
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
26221
+ message: string
26222
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26223
+ warning_code: 'unknown_issue_with_credential'
26224
+ }
25731
26225
  >
25732
26226
  /** 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). */
25733
26227
  is_multi_phone_sync_credential?: boolean | undefined
@@ -25834,6 +26328,14 @@ export interface Routes {
25834
26328
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25835
26329
  warning_code: 'being_deleted'
25836
26330
  }
26331
+ | {
26332
+ /** Date and time at which Seam created the warning. */
26333
+ created_at: string
26334
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
26335
+ message: string
26336
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26337
+ warning_code: 'unknown_issue_with_credential'
26338
+ }
25837
26339
  >
25838
26340
  /** 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). */
25839
26341
  is_multi_phone_sync_credential?: boolean | undefined
@@ -26593,6 +27095,14 @@ export interface Routes {
26593
27095
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26594
27096
  warning_code: 'being_deleted'
26595
27097
  }
27098
+ | {
27099
+ /** Date and time at which Seam created the warning. */
27100
+ created_at: string
27101
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27102
+ message: string
27103
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27104
+ warning_code: 'unknown_issue_with_credential'
27105
+ }
26596
27106
  >
26597
27107
  /** 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). */
26598
27108
  is_multi_phone_sync_credential?: boolean | undefined
@@ -26699,6 +27209,14 @@ export interface Routes {
26699
27209
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26700
27210
  warning_code: 'being_deleted'
26701
27211
  }
27212
+ | {
27213
+ /** Date and time at which Seam created the warning. */
27214
+ created_at: string
27215
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27216
+ message: string
27217
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27218
+ warning_code: 'unknown_issue_with_credential'
27219
+ }
26702
27220
  >
26703
27221
  /** 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). */
26704
27222
  is_multi_phone_sync_credential?: boolean | undefined
@@ -26852,6 +27370,14 @@ export interface Routes {
26852
27370
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26853
27371
  warning_code: 'being_deleted'
26854
27372
  }
27373
+ | {
27374
+ /** Date and time at which Seam created the warning. */
27375
+ created_at: string
27376
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27377
+ message: string
27378
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27379
+ warning_code: 'unknown_issue_with_credential'
27380
+ }
26855
27381
  >
26856
27382
  /** 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). */
26857
27383
  is_multi_phone_sync_credential?: boolean | undefined
@@ -26958,6 +27484,14 @@ export interface Routes {
26958
27484
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26959
27485
  warning_code: 'being_deleted'
26960
27486
  }
27487
+ | {
27488
+ /** Date and time at which Seam created the warning. */
27489
+ created_at: string
27490
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27491
+ message: string
27492
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27493
+ warning_code: 'unknown_issue_with_credential'
27494
+ }
26961
27495
  >
26962
27496
  /** 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). */
26963
27497
  is_multi_phone_sync_credential?: boolean | undefined
@@ -27515,6 +28049,14 @@ export interface Routes {
27515
28049
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27516
28050
  warning_code: 'being_deleted'
27517
28051
  }
28052
+ | {
28053
+ /** Date and time at which Seam created the warning. */
28054
+ created_at: string
28055
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28056
+ message: string
28057
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28058
+ warning_code: 'unknown_issue_with_credential'
28059
+ }
27518
28060
  >
27519
28061
  /** 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). */
27520
28062
  is_multi_phone_sync_credential?: boolean | undefined
@@ -27621,6 +28163,14 @@ export interface Routes {
27621
28163
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27622
28164
  warning_code: 'being_deleted'
27623
28165
  }
28166
+ | {
28167
+ /** Date and time at which Seam created the warning. */
28168
+ created_at: string
28169
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28170
+ message: string
28171
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28172
+ warning_code: 'unknown_issue_with_credential'
28173
+ }
27624
28174
  >
27625
28175
  /** 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). */
27626
28176
  is_multi_phone_sync_credential?: boolean | undefined
@@ -27774,6 +28324,14 @@ export interface Routes {
27774
28324
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27775
28325
  warning_code: 'being_deleted'
27776
28326
  }
28327
+ | {
28328
+ /** Date and time at which Seam created the warning. */
28329
+ created_at: string
28330
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28331
+ message: string
28332
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28333
+ warning_code: 'unknown_issue_with_credential'
28334
+ }
27777
28335
  >
27778
28336
  /** 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). */
27779
28337
  is_multi_phone_sync_credential?: boolean | undefined
@@ -27880,6 +28438,14 @@ export interface Routes {
27880
28438
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27881
28439
  warning_code: 'being_deleted'
27882
28440
  }
28441
+ | {
28442
+ /** Date and time at which Seam created the warning. */
28443
+ created_at: string
28444
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28445
+ message: string
28446
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28447
+ warning_code: 'unknown_issue_with_credential'
28448
+ }
27883
28449
  >
27884
28450
  /** 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). */
27885
28451
  is_multi_phone_sync_credential?: boolean | undefined
@@ -29199,6 +29765,14 @@ export interface Routes {
29199
29765
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29200
29766
  warning_code: 'being_deleted'
29201
29767
  }
29768
+ | {
29769
+ /** Date and time at which Seam created the warning. */
29770
+ created_at: string
29771
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
29772
+ message: string
29773
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29774
+ warning_code: 'unknown_issue_with_credential'
29775
+ }
29202
29776
  >
29203
29777
  /** 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). */
29204
29778
  is_multi_phone_sync_credential?: boolean | undefined
@@ -29305,6 +29879,14 @@ export interface Routes {
29305
29879
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29306
29880
  warning_code: 'being_deleted'
29307
29881
  }
29882
+ | {
29883
+ /** Date and time at which Seam created the warning. */
29884
+ created_at: string
29885
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
29886
+ message: string
29887
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29888
+ warning_code: 'unknown_issue_with_credential'
29889
+ }
29308
29890
  >
29309
29891
  /** 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). */
29310
29892
  is_multi_phone_sync_credential?: boolean | undefined
@@ -29458,6 +30040,14 @@ export interface Routes {
29458
30040
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29459
30041
  warning_code: 'being_deleted'
29460
30042
  }
30043
+ | {
30044
+ /** Date and time at which Seam created the warning. */
30045
+ created_at: string
30046
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30047
+ message: string
30048
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30049
+ warning_code: 'unknown_issue_with_credential'
30050
+ }
29461
30051
  >
29462
30052
  /** 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). */
29463
30053
  is_multi_phone_sync_credential?: boolean | undefined
@@ -29564,6 +30154,14 @@ export interface Routes {
29564
30154
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29565
30155
  warning_code: 'being_deleted'
29566
30156
  }
30157
+ | {
30158
+ /** Date and time at which Seam created the warning. */
30159
+ created_at: string
30160
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30161
+ message: string
30162
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30163
+ warning_code: 'unknown_issue_with_credential'
30164
+ }
29567
30165
  >
29568
30166
  /** 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). */
29569
30167
  is_multi_phone_sync_credential?: boolean | undefined
@@ -30125,6 +30723,14 @@ export interface Routes {
30125
30723
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30126
30724
  warning_code: 'being_deleted'
30127
30725
  }
30726
+ | {
30727
+ /** Date and time at which Seam created the warning. */
30728
+ created_at: string
30729
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30730
+ message: string
30731
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30732
+ warning_code: 'unknown_issue_with_credential'
30733
+ }
30128
30734
  >
30129
30735
  /** 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). */
30130
30736
  is_multi_phone_sync_credential?: boolean | undefined
@@ -30231,6 +30837,14 @@ export interface Routes {
30231
30837
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30232
30838
  warning_code: 'being_deleted'
30233
30839
  }
30840
+ | {
30841
+ /** Date and time at which Seam created the warning. */
30842
+ created_at: string
30843
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30844
+ message: string
30845
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30846
+ warning_code: 'unknown_issue_with_credential'
30847
+ }
30234
30848
  >
30235
30849
  /** 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). */
30236
30850
  is_multi_phone_sync_credential?: boolean | undefined
@@ -30384,6 +30998,14 @@ export interface Routes {
30384
30998
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30385
30999
  warning_code: 'being_deleted'
30386
31000
  }
31001
+ | {
31002
+ /** Date and time at which Seam created the warning. */
31003
+ created_at: string
31004
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31005
+ message: string
31006
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31007
+ warning_code: 'unknown_issue_with_credential'
31008
+ }
30387
31009
  >
30388
31010
  /** 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). */
30389
31011
  is_multi_phone_sync_credential?: boolean | undefined
@@ -30490,6 +31112,14 @@ export interface Routes {
30490
31112
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30491
31113
  warning_code: 'being_deleted'
30492
31114
  }
31115
+ | {
31116
+ /** Date and time at which Seam created the warning. */
31117
+ created_at: string
31118
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31119
+ message: string
31120
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31121
+ warning_code: 'unknown_issue_with_credential'
31122
+ }
30493
31123
  >
30494
31124
  /** 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). */
30495
31125
  is_multi_phone_sync_credential?: boolean | undefined
@@ -32631,6 +33261,14 @@ export interface Routes {
32631
33261
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
32632
33262
  warning_code: 'being_deleted'
32633
33263
  }
33264
+ | {
33265
+ /** Date and time at which Seam created the warning. */
33266
+ created_at: string
33267
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
33268
+ message: string
33269
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
33270
+ warning_code: 'unknown_issue_with_credential'
33271
+ }
32634
33272
  >
32635
33273
  /** 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). */
32636
33274
  is_multi_phone_sync_credential?: boolean | undefined
@@ -32737,6 +33375,14 @@ export interface Routes {
32737
33375
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
32738
33376
  warning_code: 'being_deleted'
32739
33377
  }
33378
+ | {
33379
+ /** Date and time at which Seam created the warning. */
33380
+ created_at: string
33381
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
33382
+ message: string
33383
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
33384
+ warning_code: 'unknown_issue_with_credential'
33385
+ }
32740
33386
  >
32741
33387
  /** 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). */
32742
33388
  is_multi_phone_sync_credential?: boolean | undefined
@@ -32890,6 +33536,14 @@ export interface Routes {
32890
33536
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
32891
33537
  warning_code: 'being_deleted'
32892
33538
  }
33539
+ | {
33540
+ /** Date and time at which Seam created the warning. */
33541
+ created_at: string
33542
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
33543
+ message: string
33544
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
33545
+ warning_code: 'unknown_issue_with_credential'
33546
+ }
32893
33547
  >
32894
33548
  /** 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). */
32895
33549
  is_multi_phone_sync_credential?: boolean | undefined
@@ -32996,6 +33650,14 @@ export interface Routes {
32996
33650
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
32997
33651
  warning_code: 'being_deleted'
32998
33652
  }
33653
+ | {
33654
+ /** Date and time at which Seam created the warning. */
33655
+ created_at: string
33656
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
33657
+ message: string
33658
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
33659
+ warning_code: 'unknown_issue_with_credential'
33660
+ }
32999
33661
  >
33000
33662
  /** 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). */
33001
33663
  is_multi_phone_sync_credential?: boolean | undefined
@@ -33724,6 +34386,14 @@ export interface Routes {
33724
34386
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
33725
34387
  warning_code: 'being_deleted'
33726
34388
  }
34389
+ | {
34390
+ /** Date and time at which Seam created the warning. */
34391
+ created_at: string
34392
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34393
+ message: string
34394
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34395
+ warning_code: 'unknown_issue_with_credential'
34396
+ }
33727
34397
  >
33728
34398
  /** 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). */
33729
34399
  is_multi_phone_sync_credential?: boolean | undefined
@@ -33830,6 +34500,14 @@ export interface Routes {
33830
34500
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
33831
34501
  warning_code: 'being_deleted'
33832
34502
  }
34503
+ | {
34504
+ /** Date and time at which Seam created the warning. */
34505
+ created_at: string
34506
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34507
+ message: string
34508
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34509
+ warning_code: 'unknown_issue_with_credential'
34510
+ }
33833
34511
  >
33834
34512
  /** 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). */
33835
34513
  is_multi_phone_sync_credential?: boolean | undefined
@@ -33983,6 +34661,14 @@ export interface Routes {
33983
34661
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
33984
34662
  warning_code: 'being_deleted'
33985
34663
  }
34664
+ | {
34665
+ /** Date and time at which Seam created the warning. */
34666
+ created_at: string
34667
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34668
+ message: string
34669
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34670
+ warning_code: 'unknown_issue_with_credential'
34671
+ }
33986
34672
  >
33987
34673
  /** 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). */
33988
34674
  is_multi_phone_sync_credential?: boolean | undefined
@@ -34089,6 +34775,14 @@ export interface Routes {
34089
34775
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34090
34776
  warning_code: 'being_deleted'
34091
34777
  }
34778
+ | {
34779
+ /** Date and time at which Seam created the warning. */
34780
+ created_at: string
34781
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34782
+ message: string
34783
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34784
+ warning_code: 'unknown_issue_with_credential'
34785
+ }
34092
34786
  >
34093
34787
  /** 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). */
34094
34788
  is_multi_phone_sync_credential?: boolean | undefined
@@ -34673,6 +35367,14 @@ export interface Routes {
34673
35367
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34674
35368
  warning_code: 'being_deleted'
34675
35369
  }
35370
+ | {
35371
+ /** Date and time at which Seam created the warning. */
35372
+ created_at: string
35373
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35374
+ message: string
35375
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35376
+ warning_code: 'unknown_issue_with_credential'
35377
+ }
34676
35378
  >
34677
35379
  /** 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). */
34678
35380
  is_multi_phone_sync_credential?: boolean | undefined
@@ -34779,6 +35481,14 @@ export interface Routes {
34779
35481
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34780
35482
  warning_code: 'being_deleted'
34781
35483
  }
35484
+ | {
35485
+ /** Date and time at which Seam created the warning. */
35486
+ created_at: string
35487
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35488
+ message: string
35489
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35490
+ warning_code: 'unknown_issue_with_credential'
35491
+ }
34782
35492
  >
34783
35493
  /** 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). */
34784
35494
  is_multi_phone_sync_credential?: boolean | undefined
@@ -34932,6 +35642,14 @@ export interface Routes {
34932
35642
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34933
35643
  warning_code: 'being_deleted'
34934
35644
  }
35645
+ | {
35646
+ /** Date and time at which Seam created the warning. */
35647
+ created_at: string
35648
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35649
+ message: string
35650
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35651
+ warning_code: 'unknown_issue_with_credential'
35652
+ }
34935
35653
  >
34936
35654
  /** 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). */
34937
35655
  is_multi_phone_sync_credential?: boolean | undefined
@@ -35038,6 +35756,14 @@ export interface Routes {
35038
35756
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35039
35757
  warning_code: 'being_deleted'
35040
35758
  }
35759
+ | {
35760
+ /** Date and time at which Seam created the warning. */
35761
+ created_at: string
35762
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35763
+ message: string
35764
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35765
+ warning_code: 'unknown_issue_with_credential'
35766
+ }
35041
35767
  >
35042
35768
  /** 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). */
35043
35769
  is_multi_phone_sync_credential?: boolean | undefined
@@ -37255,6 +37981,7 @@ export interface Routes {
37255
37981
  message: string
37256
37982
  /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
37257
37983
  warning_code: 'time_zone_does_not_match_location'
37984
+ misconfigured_acs_entrance_ids?: string[] | undefined
37258
37985
  }
37259
37986
  >
37260
37987
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
@@ -37305,7 +38032,7 @@ export interface Routes {
37305
38032
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
37306
38033
  external_type_display_name?: string | undefined
37307
38034
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
37308
- is_suspended: boolean
38035
+ is_suspended?: boolean | undefined
37309
38036
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
37310
38037
  access_schedule?:
37311
38038
  | {
@@ -37771,6 +38498,14 @@ export interface Routes {
37771
38498
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
37772
38499
  warning_code: 'being_deleted'
37773
38500
  }
38501
+ | {
38502
+ /** Date and time at which Seam created the warning. */
38503
+ created_at: string
38504
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38505
+ message: string
38506
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38507
+ warning_code: 'unknown_issue_with_credential'
38508
+ }
37774
38509
  >
37775
38510
  /** 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). */
37776
38511
  is_multi_phone_sync_credential?: boolean | undefined
@@ -37877,6 +38612,14 @@ export interface Routes {
37877
38612
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
37878
38613
  warning_code: 'being_deleted'
37879
38614
  }
38615
+ | {
38616
+ /** Date and time at which Seam created the warning. */
38617
+ created_at: string
38618
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38619
+ message: string
38620
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38621
+ warning_code: 'unknown_issue_with_credential'
38622
+ }
37880
38623
  >
37881
38624
  /** 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). */
37882
38625
  is_multi_phone_sync_credential?: boolean | undefined
@@ -38030,6 +38773,14 @@ export interface Routes {
38030
38773
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38031
38774
  warning_code: 'being_deleted'
38032
38775
  }
38776
+ | {
38777
+ /** Date and time at which Seam created the warning. */
38778
+ created_at: string
38779
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38780
+ message: string
38781
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38782
+ warning_code: 'unknown_issue_with_credential'
38783
+ }
38033
38784
  >
38034
38785
  /** 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). */
38035
38786
  is_multi_phone_sync_credential?: boolean | undefined
@@ -38136,6 +38887,14 @@ export interface Routes {
38136
38887
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38137
38888
  warning_code: 'being_deleted'
38138
38889
  }
38890
+ | {
38891
+ /** Date and time at which Seam created the warning. */
38892
+ created_at: string
38893
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38894
+ message: string
38895
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38896
+ warning_code: 'unknown_issue_with_credential'
38897
+ }
38139
38898
  >
38140
38899
  /** 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). */
38141
38900
  is_multi_phone_sync_credential?: boolean | undefined