@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
@@ -182,6 +182,13 @@ export interface Routes {
182
182
  message: string;
183
183
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
184
184
  warning_code: 'being_deleted';
185
+ } | {
186
+ /** Date and time at which Seam created the warning. */
187
+ created_at: string;
188
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
189
+ message: string;
190
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
191
+ warning_code: 'unknown_issue_with_credential';
185
192
  }>;
186
193
  /** 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). */
187
194
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -268,6 +275,13 @@ export interface Routes {
268
275
  message: string;
269
276
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
270
277
  warning_code: 'being_deleted';
278
+ } | {
279
+ /** Date and time at which Seam created the warning. */
280
+ created_at: string;
281
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
282
+ message: string;
283
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
284
+ warning_code: 'unknown_issue_with_credential';
271
285
  }>;
272
286
  /** 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). */
273
287
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -391,6 +405,13 @@ export interface Routes {
391
405
  message: string;
392
406
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
393
407
  warning_code: 'being_deleted';
408
+ } | {
409
+ /** Date and time at which Seam created the warning. */
410
+ created_at: string;
411
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
412
+ message: string;
413
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
414
+ warning_code: 'unknown_issue_with_credential';
394
415
  }>;
395
416
  /** 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). */
396
417
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -477,6 +498,13 @@ export interface Routes {
477
498
  message: string;
478
499
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
479
500
  warning_code: 'being_deleted';
501
+ } | {
502
+ /** Date and time at which Seam created the warning. */
503
+ created_at: string;
504
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
505
+ message: string;
506
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
507
+ warning_code: 'unknown_issue_with_credential';
480
508
  }>;
481
509
  /** 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). */
482
510
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -1109,6 +1137,13 @@ export interface Routes {
1109
1137
  message: string;
1110
1138
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1111
1139
  warning_code: 'being_deleted';
1140
+ } | {
1141
+ /** Date and time at which Seam created the warning. */
1142
+ created_at: string;
1143
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1144
+ message: string;
1145
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1146
+ warning_code: 'unknown_issue_with_credential';
1112
1147
  }>;
1113
1148
  /** 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). */
1114
1149
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -1195,6 +1230,13 @@ export interface Routes {
1195
1230
  message: string;
1196
1231
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1197
1232
  warning_code: 'being_deleted';
1233
+ } | {
1234
+ /** Date and time at which Seam created the warning. */
1235
+ created_at: string;
1236
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1237
+ message: string;
1238
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1239
+ warning_code: 'unknown_issue_with_credential';
1198
1240
  }>;
1199
1241
  /** 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). */
1200
1242
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -1318,6 +1360,13 @@ export interface Routes {
1318
1360
  message: string;
1319
1361
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1320
1362
  warning_code: 'being_deleted';
1363
+ } | {
1364
+ /** Date and time at which Seam created the warning. */
1365
+ created_at: string;
1366
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1367
+ message: string;
1368
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1369
+ warning_code: 'unknown_issue_with_credential';
1321
1370
  }>;
1322
1371
  /** 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). */
1323
1372
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -1404,6 +1453,13 @@ export interface Routes {
1404
1453
  message: string;
1405
1454
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1406
1455
  warning_code: 'being_deleted';
1456
+ } | {
1457
+ /** Date and time at which Seam created the warning. */
1458
+ created_at: string;
1459
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
1460
+ message: string;
1461
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1462
+ warning_code: 'unknown_issue_with_credential';
1407
1463
  }>;
1408
1464
  /** 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). */
1409
1465
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -2254,6 +2310,13 @@ export interface Routes {
2254
2310
  message: string;
2255
2311
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2256
2312
  warning_code: 'being_deleted';
2313
+ } | {
2314
+ /** Date and time at which Seam created the warning. */
2315
+ created_at: string;
2316
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2317
+ message: string;
2318
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2319
+ warning_code: 'unknown_issue_with_credential';
2257
2320
  }>;
2258
2321
  /** 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). */
2259
2322
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -2340,6 +2403,13 @@ export interface Routes {
2340
2403
  message: string;
2341
2404
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2342
2405
  warning_code: 'being_deleted';
2406
+ } | {
2407
+ /** Date and time at which Seam created the warning. */
2408
+ created_at: string;
2409
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2410
+ message: string;
2411
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2412
+ warning_code: 'unknown_issue_with_credential';
2343
2413
  }>;
2344
2414
  /** 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). */
2345
2415
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -2463,6 +2533,13 @@ export interface Routes {
2463
2533
  message: string;
2464
2534
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2465
2535
  warning_code: 'being_deleted';
2536
+ } | {
2537
+ /** Date and time at which Seam created the warning. */
2538
+ created_at: string;
2539
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2540
+ message: string;
2541
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2542
+ warning_code: 'unknown_issue_with_credential';
2466
2543
  }>;
2467
2544
  /** 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). */
2468
2545
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -2549,6 +2626,13 @@ export interface Routes {
2549
2626
  message: string;
2550
2627
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2551
2628
  warning_code: 'being_deleted';
2629
+ } | {
2630
+ /** Date and time at which Seam created the warning. */
2631
+ created_at: string;
2632
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2633
+ message: string;
2634
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2635
+ warning_code: 'unknown_issue_with_credential';
2552
2636
  }>;
2553
2637
  /** 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). */
2554
2638
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -3168,6 +3252,13 @@ export interface Routes {
3168
3252
  message: string;
3169
3253
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3170
3254
  warning_code: 'being_deleted';
3255
+ } | {
3256
+ /** Date and time at which Seam created the warning. */
3257
+ created_at: string;
3258
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
3259
+ message: string;
3260
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3261
+ warning_code: 'unknown_issue_with_credential';
3171
3262
  }>;
3172
3263
  /** 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). */
3173
3264
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -3254,6 +3345,13 @@ export interface Routes {
3254
3345
  message: string;
3255
3346
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3256
3347
  warning_code: 'being_deleted';
3348
+ } | {
3349
+ /** Date and time at which Seam created the warning. */
3350
+ created_at: string;
3351
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
3352
+ message: string;
3353
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3354
+ warning_code: 'unknown_issue_with_credential';
3257
3355
  }>;
3258
3356
  /** 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). */
3259
3357
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -3377,6 +3475,13 @@ export interface Routes {
3377
3475
  message: string;
3378
3476
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3379
3477
  warning_code: 'being_deleted';
3478
+ } | {
3479
+ /** Date and time at which Seam created the warning. */
3480
+ created_at: string;
3481
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
3482
+ message: string;
3483
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3484
+ warning_code: 'unknown_issue_with_credential';
3380
3485
  }>;
3381
3486
  /** 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). */
3382
3487
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -3463,6 +3568,13 @@ export interface Routes {
3463
3568
  message: string;
3464
3569
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3465
3570
  warning_code: 'being_deleted';
3571
+ } | {
3572
+ /** Date and time at which Seam created the warning. */
3573
+ created_at: string;
3574
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
3575
+ message: string;
3576
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3577
+ warning_code: 'unknown_issue_with_credential';
3466
3578
  }>;
3467
3579
  /** 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). */
3468
3580
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -3935,6 +4047,7 @@ export interface Routes {
3935
4047
  access_point_name: string;
3936
4048
  common_area_number?: number | undefined;
3937
4049
  inner_access_points_names?: string[] | undefined;
4050
+ lease_ids?: string[] | undefined;
3938
4051
  } | undefined;
3939
4052
  assa_abloy_vostio_metadata?: {
3940
4053
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -3979,7 +4092,7 @@ export interface Routes {
3979
4092
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
3980
4093
  external_type_display_name?: string | undefined;
3981
4094
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
3982
- is_suspended: boolean;
4095
+ is_suspended?: boolean | undefined;
3983
4096
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
3984
4097
  access_schedule?: {
3985
4098
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -4270,6 +4383,13 @@ export interface Routes {
4270
4383
  message: string;
4271
4384
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4272
4385
  warning_code: 'being_deleted';
4386
+ } | {
4387
+ /** Date and time at which Seam created the warning. */
4388
+ created_at: string;
4389
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
4390
+ message: string;
4391
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4392
+ warning_code: 'unknown_issue_with_credential';
4273
4393
  }>;
4274
4394
  /** 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). */
4275
4395
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -4406,6 +4526,13 @@ export interface Routes {
4406
4526
  message: string;
4407
4527
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4408
4528
  warning_code: 'being_deleted';
4529
+ } | {
4530
+ /** Date and time at which Seam created the warning. */
4531
+ created_at: string;
4532
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
4533
+ message: string;
4534
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4535
+ warning_code: 'unknown_issue_with_credential';
4409
4536
  }>;
4410
4537
  /** 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). */
4411
4538
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -4516,6 +4643,13 @@ export interface Routes {
4516
4643
  message: string;
4517
4644
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4518
4645
  warning_code: 'being_deleted';
4646
+ } | {
4647
+ /** Date and time at which Seam created the warning. */
4648
+ created_at: string;
4649
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
4650
+ message: string;
4651
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4652
+ warning_code: 'unknown_issue_with_credential';
4519
4653
  }>;
4520
4654
  /** 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). */
4521
4655
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -4630,6 +4764,13 @@ export interface Routes {
4630
4764
  message: string;
4631
4765
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4632
4766
  warning_code: 'being_deleted';
4767
+ } | {
4768
+ /** Date and time at which Seam created the warning. */
4769
+ created_at: string;
4770
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
4771
+ message: string;
4772
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4773
+ warning_code: 'unknown_issue_with_credential';
4633
4774
  }>;
4634
4775
  /** 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). */
4635
4776
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -4748,6 +4889,13 @@ export interface Routes {
4748
4889
  message: string;
4749
4890
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4750
4891
  warning_code: 'being_deleted';
4892
+ } | {
4893
+ /** Date and time at which Seam created the warning. */
4894
+ created_at: string;
4895
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
4896
+ message: string;
4897
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4898
+ warning_code: 'unknown_issue_with_credential';
4751
4899
  }>;
4752
4900
  /** 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). */
4753
4901
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -4822,6 +4970,7 @@ export interface Routes {
4822
4970
  access_point_name: string;
4823
4971
  common_area_number?: number | undefined;
4824
4972
  inner_access_points_names?: string[] | undefined;
4973
+ lease_ids?: string[] | undefined;
4825
4974
  } | undefined;
4826
4975
  assa_abloy_vostio_metadata?: {
4827
4976
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -4920,6 +5069,13 @@ export interface Routes {
4920
5069
  message: string;
4921
5070
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4922
5071
  warning_code: 'being_deleted';
5072
+ } | {
5073
+ /** Date and time at which Seam created the warning. */
5074
+ created_at: string;
5075
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5076
+ message: string;
5077
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5078
+ warning_code: 'unknown_issue_with_credential';
4923
5079
  }>;
4924
5080
  /** 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). */
4925
5081
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -5022,6 +5178,13 @@ export interface Routes {
5022
5178
  message: string;
5023
5179
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5024
5180
  warning_code: 'being_deleted';
5181
+ } | {
5182
+ /** Date and time at which Seam created the warning. */
5183
+ created_at: string;
5184
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5185
+ message: string;
5186
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5187
+ warning_code: 'unknown_issue_with_credential';
5025
5188
  }>;
5026
5189
  /** 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). */
5027
5190
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -5133,6 +5296,13 @@ export interface Routes {
5133
5296
  message: string;
5134
5297
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5135
5298
  warning_code: 'being_deleted';
5299
+ } | {
5300
+ /** Date and time at which Seam created the warning. */
5301
+ created_at: string;
5302
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5303
+ message: string;
5304
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5305
+ warning_code: 'unknown_issue_with_credential';
5136
5306
  }>;
5137
5307
  /** 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). */
5138
5308
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -5239,6 +5409,13 @@ export interface Routes {
5239
5409
  message: string;
5240
5410
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5241
5411
  warning_code: 'being_deleted';
5412
+ } | {
5413
+ /** Date and time at which Seam created the warning. */
5414
+ created_at: string;
5415
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5416
+ message: string;
5417
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5418
+ warning_code: 'unknown_issue_with_credential';
5242
5419
  }>;
5243
5420
  /** 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). */
5244
5421
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -5431,6 +5608,13 @@ export interface Routes {
5431
5608
  message: string;
5432
5609
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5433
5610
  warning_code: 'being_deleted';
5611
+ } | {
5612
+ /** Date and time at which Seam created the warning. */
5613
+ created_at: string;
5614
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5615
+ message: string;
5616
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5617
+ warning_code: 'unknown_issue_with_credential';
5434
5618
  }>;
5435
5619
  /** 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). */
5436
5620
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -5517,6 +5701,13 @@ export interface Routes {
5517
5701
  message: string;
5518
5702
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5519
5703
  warning_code: 'being_deleted';
5704
+ } | {
5705
+ /** Date and time at which Seam created the warning. */
5706
+ created_at: string;
5707
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5708
+ message: string;
5709
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5710
+ warning_code: 'unknown_issue_with_credential';
5520
5711
  }>;
5521
5712
  /** 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). */
5522
5713
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -5640,6 +5831,13 @@ export interface Routes {
5640
5831
  message: string;
5641
5832
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5642
5833
  warning_code: 'being_deleted';
5834
+ } | {
5835
+ /** Date and time at which Seam created the warning. */
5836
+ created_at: string;
5837
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5838
+ message: string;
5839
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5840
+ warning_code: 'unknown_issue_with_credential';
5643
5841
  }>;
5644
5842
  /** 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). */
5645
5843
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -5726,6 +5924,13 @@ export interface Routes {
5726
5924
  message: string;
5727
5925
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5728
5926
  warning_code: 'being_deleted';
5927
+ } | {
5928
+ /** Date and time at which Seam created the warning. */
5929
+ created_at: string;
5930
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5931
+ message: string;
5932
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5933
+ warning_code: 'unknown_issue_with_credential';
5729
5934
  }>;
5730
5935
  /** 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). */
5731
5936
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -6072,8 +6277,6 @@ export interface Routes {
6072
6277
  message: string;
6073
6278
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6074
6279
  error_code: 'acs_encoder_removed';
6075
- /** ID of the event that was created when the `acs_encoder` was removed. */
6076
- _event_id: string;
6077
6280
  }>;
6078
6281
  /** Date and time at which the `acs_encoder` was created. */
6079
6282
  created_at: string;
@@ -6250,6 +6453,13 @@ export interface Routes {
6250
6453
  message: string;
6251
6454
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6252
6455
  warning_code: 'being_deleted';
6456
+ } | {
6457
+ /** Date and time at which Seam created the warning. */
6458
+ created_at: string;
6459
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6460
+ message: string;
6461
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6462
+ warning_code: 'unknown_issue_with_credential';
6253
6463
  }>;
6254
6464
  /** 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). */
6255
6465
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -6336,6 +6546,13 @@ export interface Routes {
6336
6546
  message: string;
6337
6547
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6338
6548
  warning_code: 'being_deleted';
6549
+ } | {
6550
+ /** Date and time at which Seam created the warning. */
6551
+ created_at: string;
6552
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6553
+ message: string;
6554
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6555
+ warning_code: 'unknown_issue_with_credential';
6339
6556
  }>;
6340
6557
  /** 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). */
6341
6558
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -6459,6 +6676,13 @@ export interface Routes {
6459
6676
  message: string;
6460
6677
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6461
6678
  warning_code: 'being_deleted';
6679
+ } | {
6680
+ /** Date and time at which Seam created the warning. */
6681
+ created_at: string;
6682
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6683
+ message: string;
6684
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6685
+ warning_code: 'unknown_issue_with_credential';
6462
6686
  }>;
6463
6687
  /** 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). */
6464
6688
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -6545,6 +6769,13 @@ export interface Routes {
6545
6769
  message: string;
6546
6770
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6547
6771
  warning_code: 'being_deleted';
6772
+ } | {
6773
+ /** Date and time at which Seam created the warning. */
6774
+ created_at: string;
6775
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6776
+ message: string;
6777
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6778
+ warning_code: 'unknown_issue_with_credential';
6548
6779
  }>;
6549
6780
  /** 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). */
6550
6781
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -6974,6 +7205,7 @@ export interface Routes {
6974
7205
  access_point_name: string;
6975
7206
  common_area_number?: number | undefined;
6976
7207
  inner_access_points_names?: string[] | undefined;
7208
+ lease_ids?: string[] | undefined;
6977
7209
  } | undefined;
6978
7210
  assa_abloy_vostio_metadata?: {
6979
7211
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -7054,6 +7286,7 @@ export interface Routes {
7054
7286
  access_point_name: string;
7055
7287
  common_area_number?: number | undefined;
7056
7288
  inner_access_points_names?: string[] | undefined;
7289
+ lease_ids?: string[] | undefined;
7057
7290
  } | undefined;
7058
7291
  assa_abloy_vostio_metadata?: {
7059
7292
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -7148,6 +7381,13 @@ export interface Routes {
7148
7381
  message: string;
7149
7382
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7150
7383
  warning_code: 'being_deleted';
7384
+ } | {
7385
+ /** Date and time at which Seam created the warning. */
7386
+ created_at: string;
7387
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7388
+ message: string;
7389
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7390
+ warning_code: 'unknown_issue_with_credential';
7151
7391
  }>;
7152
7392
  /** 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). */
7153
7393
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -7287,6 +7527,7 @@ export interface Routes {
7287
7527
  message: string;
7288
7528
  /** 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. */
7289
7529
  warning_code: 'time_zone_does_not_match_location';
7530
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7290
7531
  }>;
7291
7532
  /** 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`. */
7292
7533
  can_automate_enrollment?: boolean | undefined;
@@ -7415,6 +7656,7 @@ export interface Routes {
7415
7656
  message: string;
7416
7657
  /** 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. */
7417
7658
  warning_code: 'time_zone_does_not_match_location';
7659
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7418
7660
  }>;
7419
7661
  /** 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`. */
7420
7662
  can_automate_enrollment?: boolean | undefined;
@@ -7543,6 +7785,7 @@ export interface Routes {
7543
7785
  message: string;
7544
7786
  /** 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. */
7545
7787
  warning_code: 'time_zone_does_not_match_location';
7788
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7546
7789
  }>;
7547
7790
  /** 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`. */
7548
7791
  can_automate_enrollment?: boolean | undefined;
@@ -7616,7 +7859,7 @@ export interface Routes {
7616
7859
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
7617
7860
  external_type_display_name?: string | undefined;
7618
7861
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
7619
- is_suspended: boolean;
7862
+ is_suspended?: boolean | undefined;
7620
7863
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
7621
7864
  access_schedule?: {
7622
7865
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -7732,7 +7975,7 @@ export interface Routes {
7732
7975
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
7733
7976
  external_type_display_name?: string | undefined;
7734
7977
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
7735
- is_suspended: boolean;
7978
+ is_suspended?: boolean | undefined;
7736
7979
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
7737
7980
  access_schedule?: {
7738
7981
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -7843,7 +8086,7 @@ export interface Routes {
7843
8086
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
7844
8087
  external_type_display_name?: string | undefined;
7845
8088
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
7846
- is_suspended: boolean;
8089
+ is_suspended?: boolean | undefined;
7847
8090
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
7848
8091
  access_schedule?: {
7849
8092
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -7970,6 +8213,7 @@ export interface Routes {
7970
8213
  access_point_name: string;
7971
8214
  common_area_number?: number | undefined;
7972
8215
  inner_access_points_names?: string[] | undefined;
8216
+ lease_ids?: string[] | undefined;
7973
8217
  } | undefined;
7974
8218
  assa_abloy_vostio_metadata?: {
7975
8219
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -8052,7 +8296,7 @@ export interface Routes {
8052
8296
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8053
8297
  external_type_display_name?: string | undefined;
8054
8298
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
8055
- is_suspended: boolean;
8299
+ is_suspended?: boolean | undefined;
8056
8300
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8057
8301
  access_schedule?: {
8058
8302
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -8158,7 +8402,7 @@ export interface Routes {
8158
8402
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8159
8403
  external_type_display_name?: string | undefined;
8160
8404
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
8161
- is_suspended: boolean;
8405
+ is_suspended?: boolean | undefined;
8162
8406
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8163
8407
  access_schedule?: {
8164
8408
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -8439,6 +8683,13 @@ export interface Routes {
8439
8683
  message: string;
8440
8684
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8441
8685
  warning_code: 'being_deleted';
8686
+ } | {
8687
+ /** Date and time at which Seam created the warning. */
8688
+ created_at: string;
8689
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
8690
+ message: string;
8691
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8692
+ warning_code: 'unknown_issue_with_credential';
8442
8693
  }>;
8443
8694
  /** 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). */
8444
8695
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -8525,6 +8776,13 @@ export interface Routes {
8525
8776
  message: string;
8526
8777
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8527
8778
  warning_code: 'being_deleted';
8779
+ } | {
8780
+ /** Date and time at which Seam created the warning. */
8781
+ created_at: string;
8782
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
8783
+ message: string;
8784
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8785
+ warning_code: 'unknown_issue_with_credential';
8528
8786
  }>;
8529
8787
  /** 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). */
8530
8788
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -8648,6 +8906,13 @@ export interface Routes {
8648
8906
  message: string;
8649
8907
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8650
8908
  warning_code: 'being_deleted';
8909
+ } | {
8910
+ /** Date and time at which Seam created the warning. */
8911
+ created_at: string;
8912
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
8913
+ message: string;
8914
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8915
+ warning_code: 'unknown_issue_with_credential';
8651
8916
  }>;
8652
8917
  /** 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). */
8653
8918
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -8734,6 +8999,13 @@ export interface Routes {
8734
8999
  message: string;
8735
9000
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8736
9001
  warning_code: 'being_deleted';
9002
+ } | {
9003
+ /** Date and time at which Seam created the warning. */
9004
+ created_at: string;
9005
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9006
+ message: string;
9007
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9008
+ warning_code: 'unknown_issue_with_credential';
8737
9009
  }>;
8738
9010
  /** 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). */
8739
9011
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -9215,6 +9487,13 @@ export interface Routes {
9215
9487
  message: string;
9216
9488
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9217
9489
  warning_code: 'being_deleted';
9490
+ } | {
9491
+ /** Date and time at which Seam created the warning. */
9492
+ created_at: string;
9493
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9494
+ message: string;
9495
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9496
+ warning_code: 'unknown_issue_with_credential';
9218
9497
  }>;
9219
9498
  /** 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). */
9220
9499
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -9301,6 +9580,13 @@ export interface Routes {
9301
9580
  message: string;
9302
9581
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9303
9582
  warning_code: 'being_deleted';
9583
+ } | {
9584
+ /** Date and time at which Seam created the warning. */
9585
+ created_at: string;
9586
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9587
+ message: string;
9588
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9589
+ warning_code: 'unknown_issue_with_credential';
9304
9590
  }>;
9305
9591
  /** 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). */
9306
9592
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -9424,6 +9710,13 @@ export interface Routes {
9424
9710
  message: string;
9425
9711
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9426
9712
  warning_code: 'being_deleted';
9713
+ } | {
9714
+ /** Date and time at which Seam created the warning. */
9715
+ created_at: string;
9716
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9717
+ message: string;
9718
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9719
+ warning_code: 'unknown_issue_with_credential';
9427
9720
  }>;
9428
9721
  /** 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). */
9429
9722
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -9510,6 +9803,13 @@ export interface Routes {
9510
9803
  message: string;
9511
9804
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9512
9805
  warning_code: 'being_deleted';
9806
+ } | {
9807
+ /** Date and time at which Seam created the warning. */
9808
+ created_at: string;
9809
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9810
+ message: string;
9811
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
9812
+ warning_code: 'unknown_issue_with_credential';
9513
9813
  }>;
9514
9814
  /** 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). */
9515
9815
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -16247,10 +16547,17 @@ export interface Routes {
16247
16547
  message: string;
16248
16548
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16249
16549
  warning_code: 'being_deleted';
16250
- }>;
16251
- /** 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). */
16252
- is_multi_phone_sync_credential?: boolean | undefined;
16253
- /** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
16550
+ } | {
16551
+ /** Date and time at which Seam created the warning. */
16552
+ created_at: string;
16553
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
16554
+ message: string;
16555
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16556
+ warning_code: 'unknown_issue_with_credential';
16557
+ }>;
16558
+ /** 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). */
16559
+ is_multi_phone_sync_credential?: boolean | undefined;
16560
+ /** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
16254
16561
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
16255
16562
  /** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
16256
16563
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -16333,6 +16640,13 @@ export interface Routes {
16333
16640
  message: string;
16334
16641
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16335
16642
  warning_code: 'being_deleted';
16643
+ } | {
16644
+ /** Date and time at which Seam created the warning. */
16645
+ created_at: string;
16646
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
16647
+ message: string;
16648
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16649
+ warning_code: 'unknown_issue_with_credential';
16336
16650
  }>;
16337
16651
  /** 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). */
16338
16652
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -16456,6 +16770,13 @@ export interface Routes {
16456
16770
  message: string;
16457
16771
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16458
16772
  warning_code: 'being_deleted';
16773
+ } | {
16774
+ /** Date and time at which Seam created the warning. */
16775
+ created_at: string;
16776
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
16777
+ message: string;
16778
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16779
+ warning_code: 'unknown_issue_with_credential';
16459
16780
  }>;
16460
16781
  /** 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). */
16461
16782
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -16542,6 +16863,13 @@ export interface Routes {
16542
16863
  message: string;
16543
16864
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16544
16865
  warning_code: 'being_deleted';
16866
+ } | {
16867
+ /** Date and time at which Seam created the warning. */
16868
+ created_at: string;
16869
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
16870
+ message: string;
16871
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16872
+ warning_code: 'unknown_issue_with_credential';
16545
16873
  }>;
16546
16874
  /** 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). */
16547
16875
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -17024,6 +17352,13 @@ export interface Routes {
17024
17352
  message: string;
17025
17353
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17026
17354
  warning_code: 'being_deleted';
17355
+ } | {
17356
+ /** Date and time at which Seam created the warning. */
17357
+ created_at: string;
17358
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
17359
+ message: string;
17360
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17361
+ warning_code: 'unknown_issue_with_credential';
17027
17362
  }>;
17028
17363
  /** 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). */
17029
17364
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -17110,6 +17445,13 @@ export interface Routes {
17110
17445
  message: string;
17111
17446
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17112
17447
  warning_code: 'being_deleted';
17448
+ } | {
17449
+ /** Date and time at which Seam created the warning. */
17450
+ created_at: string;
17451
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
17452
+ message: string;
17453
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17454
+ warning_code: 'unknown_issue_with_credential';
17113
17455
  }>;
17114
17456
  /** 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). */
17115
17457
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -17233,6 +17575,13 @@ export interface Routes {
17233
17575
  message: string;
17234
17576
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17235
17577
  warning_code: 'being_deleted';
17578
+ } | {
17579
+ /** Date and time at which Seam created the warning. */
17580
+ created_at: string;
17581
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
17582
+ message: string;
17583
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17584
+ warning_code: 'unknown_issue_with_credential';
17236
17585
  }>;
17237
17586
  /** 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). */
17238
17587
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -17319,6 +17668,13 @@ export interface Routes {
17319
17668
  message: string;
17320
17669
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17321
17670
  warning_code: 'being_deleted';
17671
+ } | {
17672
+ /** Date and time at which Seam created the warning. */
17673
+ created_at: string;
17674
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
17675
+ message: string;
17676
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17677
+ warning_code: 'unknown_issue_with_credential';
17322
17678
  }>;
17323
17679
  /** 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). */
17324
17680
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -18911,6 +19267,13 @@ export interface Routes {
18911
19267
  message: string;
18912
19268
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
18913
19269
  warning_code: 'being_deleted';
19270
+ } | {
19271
+ /** Date and time at which Seam created the warning. */
19272
+ created_at: string;
19273
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
19274
+ message: string;
19275
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19276
+ warning_code: 'unknown_issue_with_credential';
18914
19277
  }>;
18915
19278
  /** 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). */
18916
19279
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -18997,6 +19360,13 @@ export interface Routes {
18997
19360
  message: string;
18998
19361
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
18999
19362
  warning_code: 'being_deleted';
19363
+ } | {
19364
+ /** Date and time at which Seam created the warning. */
19365
+ created_at: string;
19366
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
19367
+ message: string;
19368
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19369
+ warning_code: 'unknown_issue_with_credential';
19000
19370
  }>;
19001
19371
  /** 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). */
19002
19372
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -19120,6 +19490,13 @@ export interface Routes {
19120
19490
  message: string;
19121
19491
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19122
19492
  warning_code: 'being_deleted';
19493
+ } | {
19494
+ /** Date and time at which Seam created the warning. */
19495
+ created_at: string;
19496
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
19497
+ message: string;
19498
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19499
+ warning_code: 'unknown_issue_with_credential';
19123
19500
  }>;
19124
19501
  /** 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). */
19125
19502
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -19206,6 +19583,13 @@ export interface Routes {
19206
19583
  message: string;
19207
19584
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19208
19585
  warning_code: 'being_deleted';
19586
+ } | {
19587
+ /** Date and time at which Seam created the warning. */
19588
+ created_at: string;
19589
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
19590
+ message: string;
19591
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19592
+ warning_code: 'unknown_issue_with_credential';
19209
19593
  }>;
19210
19594
  /** 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). */
19211
19595
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -19698,6 +20082,13 @@ export interface Routes {
19698
20082
  message: string;
19699
20083
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19700
20084
  warning_code: 'being_deleted';
20085
+ } | {
20086
+ /** Date and time at which Seam created the warning. */
20087
+ created_at: string;
20088
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20089
+ message: string;
20090
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20091
+ warning_code: 'unknown_issue_with_credential';
19701
20092
  }>;
19702
20093
  /** 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). */
19703
20094
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -19784,6 +20175,13 @@ export interface Routes {
19784
20175
  message: string;
19785
20176
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19786
20177
  warning_code: 'being_deleted';
20178
+ } | {
20179
+ /** Date and time at which Seam created the warning. */
20180
+ created_at: string;
20181
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20182
+ message: string;
20183
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20184
+ warning_code: 'unknown_issue_with_credential';
19787
20185
  }>;
19788
20186
  /** 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). */
19789
20187
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -19907,6 +20305,13 @@ export interface Routes {
19907
20305
  message: string;
19908
20306
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19909
20307
  warning_code: 'being_deleted';
20308
+ } | {
20309
+ /** Date and time at which Seam created the warning. */
20310
+ created_at: string;
20311
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20312
+ message: string;
20313
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20314
+ warning_code: 'unknown_issue_with_credential';
19910
20315
  }>;
19911
20316
  /** 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). */
19912
20317
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -19993,6 +20398,13 @@ export interface Routes {
19993
20398
  message: string;
19994
20399
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19995
20400
  warning_code: 'being_deleted';
20401
+ } | {
20402
+ /** Date and time at which Seam created the warning. */
20403
+ created_at: string;
20404
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20405
+ message: string;
20406
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20407
+ warning_code: 'unknown_issue_with_credential';
19996
20408
  }>;
19997
20409
  /** 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). */
19998
20410
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -20524,6 +20936,13 @@ export interface Routes {
20524
20936
  message: string;
20525
20937
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20526
20938
  warning_code: 'being_deleted';
20939
+ } | {
20940
+ /** Date and time at which Seam created the warning. */
20941
+ created_at: string;
20942
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
20943
+ message: string;
20944
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20945
+ warning_code: 'unknown_issue_with_credential';
20527
20946
  }>;
20528
20947
  /** 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). */
20529
20948
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -20610,6 +21029,13 @@ export interface Routes {
20610
21029
  message: string;
20611
21030
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20612
21031
  warning_code: 'being_deleted';
21032
+ } | {
21033
+ /** Date and time at which Seam created the warning. */
21034
+ created_at: string;
21035
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21036
+ message: string;
21037
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21038
+ warning_code: 'unknown_issue_with_credential';
20613
21039
  }>;
20614
21040
  /** 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). */
20615
21041
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -20733,6 +21159,13 @@ export interface Routes {
20733
21159
  message: string;
20734
21160
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20735
21161
  warning_code: 'being_deleted';
21162
+ } | {
21163
+ /** Date and time at which Seam created the warning. */
21164
+ created_at: string;
21165
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21166
+ message: string;
21167
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21168
+ warning_code: 'unknown_issue_with_credential';
20736
21169
  }>;
20737
21170
  /** 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). */
20738
21171
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -20819,6 +21252,13 @@ export interface Routes {
20819
21252
  message: string;
20820
21253
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
20821
21254
  warning_code: 'being_deleted';
21255
+ } | {
21256
+ /** Date and time at which Seam created the warning. */
21257
+ created_at: string;
21258
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21259
+ message: string;
21260
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21261
+ warning_code: 'unknown_issue_with_credential';
20822
21262
  }>;
20823
21263
  /** 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). */
20824
21264
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -21485,6 +21925,13 @@ export interface Routes {
21485
21925
  message: string;
21486
21926
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21487
21927
  warning_code: 'being_deleted';
21928
+ } | {
21929
+ /** Date and time at which Seam created the warning. */
21930
+ created_at: string;
21931
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
21932
+ message: string;
21933
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21934
+ warning_code: 'unknown_issue_with_credential';
21488
21935
  }>;
21489
21936
  /** 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). */
21490
21937
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -21571,6 +22018,13 @@ export interface Routes {
21571
22018
  message: string;
21572
22019
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21573
22020
  warning_code: 'being_deleted';
22021
+ } | {
22022
+ /** Date and time at which Seam created the warning. */
22023
+ created_at: string;
22024
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
22025
+ message: string;
22026
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22027
+ warning_code: 'unknown_issue_with_credential';
21574
22028
  }>;
21575
22029
  /** 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). */
21576
22030
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -21694,6 +22148,13 @@ export interface Routes {
21694
22148
  message: string;
21695
22149
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21696
22150
  warning_code: 'being_deleted';
22151
+ } | {
22152
+ /** Date and time at which Seam created the warning. */
22153
+ created_at: string;
22154
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
22155
+ message: string;
22156
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22157
+ warning_code: 'unknown_issue_with_credential';
21697
22158
  }>;
21698
22159
  /** 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). */
21699
22160
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -21780,6 +22241,13 @@ export interface Routes {
21780
22241
  message: string;
21781
22242
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
21782
22243
  warning_code: 'being_deleted';
22244
+ } | {
22245
+ /** Date and time at which Seam created the warning. */
22246
+ created_at: string;
22247
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
22248
+ message: string;
22249
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22250
+ warning_code: 'unknown_issue_with_credential';
21783
22251
  }>;
21784
22252
  /** 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). */
21785
22253
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -22268,6 +22736,13 @@ export interface Routes {
22268
22736
  message: string;
22269
22737
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22270
22738
  warning_code: 'being_deleted';
22739
+ } | {
22740
+ /** Date and time at which Seam created the warning. */
22741
+ created_at: string;
22742
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
22743
+ message: string;
22744
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22745
+ warning_code: 'unknown_issue_with_credential';
22271
22746
  }>;
22272
22747
  /** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
22273
22748
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -22354,6 +22829,13 @@ export interface Routes {
22354
22829
  message: string;
22355
22830
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22356
22831
  warning_code: 'being_deleted';
22832
+ } | {
22833
+ /** Date and time at which Seam created the warning. */
22834
+ created_at: string;
22835
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
22836
+ message: string;
22837
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22838
+ warning_code: 'unknown_issue_with_credential';
22357
22839
  }>;
22358
22840
  /** 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). */
22359
22841
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -22477,6 +22959,13 @@ export interface Routes {
22477
22959
  message: string;
22478
22960
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22479
22961
  warning_code: 'being_deleted';
22962
+ } | {
22963
+ /** Date and time at which Seam created the warning. */
22964
+ created_at: string;
22965
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
22966
+ message: string;
22967
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22968
+ warning_code: 'unknown_issue_with_credential';
22480
22969
  }>;
22481
22970
  /** 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). */
22482
22971
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -22563,6 +23052,13 @@ export interface Routes {
22563
23052
  message: string;
22564
23053
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22565
23054
  warning_code: 'being_deleted';
23055
+ } | {
23056
+ /** Date and time at which Seam created the warning. */
23057
+ created_at: string;
23058
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
23059
+ message: string;
23060
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23061
+ warning_code: 'unknown_issue_with_credential';
22566
23062
  }>;
22567
23063
  /** 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). */
22568
23064
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -23628,6 +24124,13 @@ export interface Routes {
23628
24124
  message: string;
23629
24125
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23630
24126
  warning_code: 'being_deleted';
24127
+ } | {
24128
+ /** Date and time at which Seam created the warning. */
24129
+ created_at: string;
24130
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24131
+ message: string;
24132
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24133
+ warning_code: 'unknown_issue_with_credential';
23631
24134
  }>;
23632
24135
  /** 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). */
23633
24136
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -23714,6 +24217,13 @@ export interface Routes {
23714
24217
  message: string;
23715
24218
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23716
24219
  warning_code: 'being_deleted';
24220
+ } | {
24221
+ /** Date and time at which Seam created the warning. */
24222
+ created_at: string;
24223
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24224
+ message: string;
24225
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24226
+ warning_code: 'unknown_issue_with_credential';
23717
24227
  }>;
23718
24228
  /** 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). */
23719
24229
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -23837,6 +24347,13 @@ export interface Routes {
23837
24347
  message: string;
23838
24348
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23839
24349
  warning_code: 'being_deleted';
24350
+ } | {
24351
+ /** Date and time at which Seam created the warning. */
24352
+ created_at: string;
24353
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24354
+ message: string;
24355
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24356
+ warning_code: 'unknown_issue_with_credential';
23840
24357
  }>;
23841
24358
  /** 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
24359
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -23923,6 +24440,13 @@ export interface Routes {
23923
24440
  message: string;
23924
24441
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23925
24442
  warning_code: 'being_deleted';
24443
+ } | {
24444
+ /** Date and time at which Seam created the warning. */
24445
+ created_at: string;
24446
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24447
+ message: string;
24448
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24449
+ warning_code: 'unknown_issue_with_credential';
23926
24450
  }>;
23927
24451
  /** 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). */
23928
24452
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -24415,6 +24939,13 @@ export interface Routes {
24415
24939
  message: string;
24416
24940
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24417
24941
  warning_code: 'being_deleted';
24942
+ } | {
24943
+ /** Date and time at which Seam created the warning. */
24944
+ created_at: string;
24945
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
24946
+ message: string;
24947
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24948
+ warning_code: 'unknown_issue_with_credential';
24418
24949
  }>;
24419
24950
  /** 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). */
24420
24951
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -24501,6 +25032,13 @@ export interface Routes {
24501
25032
  message: string;
24502
25033
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24503
25034
  warning_code: 'being_deleted';
25035
+ } | {
25036
+ /** Date and time at which Seam created the warning. */
25037
+ created_at: string;
25038
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
25039
+ message: string;
25040
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25041
+ warning_code: 'unknown_issue_with_credential';
24504
25042
  }>;
24505
25043
  /** 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). */
24506
25044
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -24624,6 +25162,13 @@ export interface Routes {
24624
25162
  message: string;
24625
25163
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24626
25164
  warning_code: 'being_deleted';
25165
+ } | {
25166
+ /** Date and time at which Seam created the warning. */
25167
+ created_at: string;
25168
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
25169
+ message: string;
25170
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25171
+ warning_code: 'unknown_issue_with_credential';
24627
25172
  }>;
24628
25173
  /** 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). */
24629
25174
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -24710,6 +25255,13 @@ export interface Routes {
24710
25255
  message: string;
24711
25256
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
24712
25257
  warning_code: 'being_deleted';
25258
+ } | {
25259
+ /** Date and time at which Seam created the warning. */
25260
+ created_at: string;
25261
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
25262
+ message: string;
25263
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25264
+ warning_code: 'unknown_issue_with_credential';
24713
25265
  }>;
24714
25266
  /** 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). */
24715
25267
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -26265,6 +26817,13 @@ export interface Routes {
26265
26817
  message: string;
26266
26818
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26267
26819
  warning_code: 'being_deleted';
26820
+ } | {
26821
+ /** Date and time at which Seam created the warning. */
26822
+ created_at: string;
26823
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
26824
+ message: string;
26825
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26826
+ warning_code: 'unknown_issue_with_credential';
26268
26827
  }>;
26269
26828
  /** 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). */
26270
26829
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -26351,6 +26910,13 @@ export interface Routes {
26351
26910
  message: string;
26352
26911
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26353
26912
  warning_code: 'being_deleted';
26913
+ } | {
26914
+ /** Date and time at which Seam created the warning. */
26915
+ created_at: string;
26916
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
26917
+ message: string;
26918
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26919
+ warning_code: 'unknown_issue_with_credential';
26354
26920
  }>;
26355
26921
  /** 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). */
26356
26922
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -26474,6 +27040,13 @@ export interface Routes {
26474
27040
  message: string;
26475
27041
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26476
27042
  warning_code: 'being_deleted';
27043
+ } | {
27044
+ /** Date and time at which Seam created the warning. */
27045
+ created_at: string;
27046
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27047
+ message: string;
27048
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27049
+ warning_code: 'unknown_issue_with_credential';
26477
27050
  }>;
26478
27051
  /** 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). */
26479
27052
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -26560,6 +27133,13 @@ export interface Routes {
26560
27133
  message: string;
26561
27134
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26562
27135
  warning_code: 'being_deleted';
27136
+ } | {
27137
+ /** Date and time at which Seam created the warning. */
27138
+ created_at: string;
27139
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27140
+ message: string;
27141
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27142
+ warning_code: 'unknown_issue_with_credential';
26563
27143
  }>;
26564
27144
  /** 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). */
26565
27145
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -27219,6 +27799,13 @@ export interface Routes {
27219
27799
  message: string;
27220
27800
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27221
27801
  warning_code: 'being_deleted';
27802
+ } | {
27803
+ /** Date and time at which Seam created the warning. */
27804
+ created_at: string;
27805
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27806
+ message: string;
27807
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27808
+ warning_code: 'unknown_issue_with_credential';
27222
27809
  }>;
27223
27810
  /** 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). */
27224
27811
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -27305,6 +27892,13 @@ export interface Routes {
27305
27892
  message: string;
27306
27893
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27307
27894
  warning_code: 'being_deleted';
27895
+ } | {
27896
+ /** Date and time at which Seam created the warning. */
27897
+ created_at: string;
27898
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
27899
+ message: string;
27900
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27901
+ warning_code: 'unknown_issue_with_credential';
27308
27902
  }>;
27309
27903
  /** 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). */
27310
27904
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -27428,6 +28022,13 @@ export interface Routes {
27428
28022
  message: string;
27429
28023
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27430
28024
  warning_code: 'being_deleted';
28025
+ } | {
28026
+ /** Date and time at which Seam created the warning. */
28027
+ created_at: string;
28028
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28029
+ message: string;
28030
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28031
+ warning_code: 'unknown_issue_with_credential';
27431
28032
  }>;
27432
28033
  /** 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). */
27433
28034
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -27514,6 +28115,13 @@ export interface Routes {
27514
28115
  message: string;
27515
28116
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
27516
28117
  warning_code: 'being_deleted';
28118
+ } | {
28119
+ /** Date and time at which Seam created the warning. */
28120
+ created_at: string;
28121
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28122
+ message: string;
28123
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28124
+ warning_code: 'unknown_issue_with_credential';
27517
28125
  }>;
27518
28126
  /** 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). */
27519
28127
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -28025,6 +28633,13 @@ export interface Routes {
28025
28633
  message: string;
28026
28634
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28027
28635
  warning_code: 'being_deleted';
28636
+ } | {
28637
+ /** Date and time at which Seam created the warning. */
28638
+ created_at: string;
28639
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28640
+ message: string;
28641
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28642
+ warning_code: 'unknown_issue_with_credential';
28028
28643
  }>;
28029
28644
  /** 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). */
28030
28645
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -28111,6 +28726,13 @@ export interface Routes {
28111
28726
  message: string;
28112
28727
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28113
28728
  warning_code: 'being_deleted';
28729
+ } | {
28730
+ /** Date and time at which Seam created the warning. */
28731
+ created_at: string;
28732
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28733
+ message: string;
28734
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28735
+ warning_code: 'unknown_issue_with_credential';
28114
28736
  }>;
28115
28737
  /** 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). */
28116
28738
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -28234,6 +28856,13 @@ export interface Routes {
28234
28856
  message: string;
28235
28857
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28236
28858
  warning_code: 'being_deleted';
28859
+ } | {
28860
+ /** Date and time at which Seam created the warning. */
28861
+ created_at: string;
28862
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28863
+ message: string;
28864
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28865
+ warning_code: 'unknown_issue_with_credential';
28237
28866
  }>;
28238
28867
  /** 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). */
28239
28868
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -28320,6 +28949,13 @@ export interface Routes {
28320
28949
  message: string;
28321
28950
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28322
28951
  warning_code: 'being_deleted';
28952
+ } | {
28953
+ /** Date and time at which Seam created the warning. */
28954
+ created_at: string;
28955
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28956
+ message: string;
28957
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28958
+ warning_code: 'unknown_issue_with_credential';
28323
28959
  }>;
28324
28960
  /** 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). */
28325
28961
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -30078,6 +30714,7 @@ export interface Routes {
30078
30714
  message: string;
30079
30715
  /** 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. */
30080
30716
  warning_code: 'time_zone_does_not_match_location';
30717
+ misconfigured_acs_entrance_ids?: string[] | undefined;
30081
30718
  }>;
30082
30719
  /** 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`. */
30083
30720
  can_automate_enrollment?: boolean | undefined;
@@ -30118,7 +30755,7 @@ export interface Routes {
30118
30755
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
30119
30756
  external_type_display_name?: string | undefined;
30120
30757
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
30121
- is_suspended: boolean;
30758
+ is_suspended?: boolean | undefined;
30122
30759
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
30123
30760
  access_schedule?: {
30124
30761
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -30548,6 +31185,13 @@ export interface Routes {
30548
31185
  message: string;
30549
31186
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30550
31187
  warning_code: 'being_deleted';
31188
+ } | {
31189
+ /** Date and time at which Seam created the warning. */
31190
+ created_at: string;
31191
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31192
+ message: string;
31193
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31194
+ warning_code: 'unknown_issue_with_credential';
30551
31195
  }>;
30552
31196
  /** 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). */
30553
31197
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -30634,6 +31278,13 @@ export interface Routes {
30634
31278
  message: string;
30635
31279
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30636
31280
  warning_code: 'being_deleted';
31281
+ } | {
31282
+ /** Date and time at which Seam created the warning. */
31283
+ created_at: string;
31284
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31285
+ message: string;
31286
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31287
+ warning_code: 'unknown_issue_with_credential';
30637
31288
  }>;
30638
31289
  /** 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). */
30639
31290
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -30757,6 +31408,13 @@ export interface Routes {
30757
31408
  message: string;
30758
31409
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30759
31410
  warning_code: 'being_deleted';
31411
+ } | {
31412
+ /** Date and time at which Seam created the warning. */
31413
+ created_at: string;
31414
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31415
+ message: string;
31416
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31417
+ warning_code: 'unknown_issue_with_credential';
30760
31418
  }>;
30761
31419
  /** 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). */
30762
31420
  is_multi_phone_sync_credential?: boolean | undefined;
@@ -30843,6 +31501,13 @@ export interface Routes {
30843
31501
  message: string;
30844
31502
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30845
31503
  warning_code: 'being_deleted';
31504
+ } | {
31505
+ /** Date and time at which Seam created the warning. */
31506
+ created_at: string;
31507
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31508
+ message: string;
31509
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31510
+ warning_code: 'unknown_issue_with_credential';
30846
31511
  }>;
30847
31512
  /** 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). */
30848
31513
  is_multi_phone_sync_credential?: boolean | undefined;