@seamapi/types 1.916.0 → 1.917.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 (56) hide show
  1. package/dist/connect.cjs +603 -160
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +872 -15
  4. package/dist/index.cjs +603 -160
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-access-group.js +4 -2
  7. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  8. package/lib/seam/connect/models/acs/acs-credential.js +12 -3
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-system.js +15 -5
  11. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-users/acs-user.js +8 -2
  13. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
  14. package/lib/seam/connect/models/connect-webviews/connect-webview.js +1 -1
  15. package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
  16. package/lib/seam/connect/models/devices/device-provider.js +8 -4
  17. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.js +60 -20
  19. package/lib/seam/connect/models/devices/device.js.map +1 -1
  20. package/lib/seam/connect/models/devices/phone.js +10 -6
  21. package/lib/seam/connect/models/devices/phone.js.map +1 -1
  22. package/lib/seam/connect/models/devices/unmanaged-device.js +3 -1
  23. package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
  24. package/lib/seam/connect/models/events/access-codes.js +7 -3
  25. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  26. package/lib/seam/connect/models/events/acs/entrances.js +3 -5
  27. package/lib/seam/connect/models/events/acs/entrances.js.map +1 -1
  28. package/lib/seam/connect/models/events/acs/users.js +6 -5
  29. package/lib/seam/connect/models/events/acs/users.js.map +1 -1
  30. package/lib/seam/connect/models/events/common.js +8 -4
  31. package/lib/seam/connect/models/events/common.js.map +1 -1
  32. package/lib/seam/connect/models/thermostats/modes.js +9 -16
  33. package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
  34. package/lib/seam/connect/models/user-identities/user-identity.js +9 -2
  35. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  36. package/lib/seam/connect/openapi.js +494 -96
  37. package/lib/seam/connect/openapi.js.map +1 -1
  38. package/lib/seam/connect/route-types.d.ts +872 -15
  39. package/package.json +1 -1
  40. package/src/lib/seam/connect/models/acs/acs-access-group.ts +4 -2
  41. package/src/lib/seam/connect/models/acs/acs-credential.ts +14 -3
  42. package/src/lib/seam/connect/models/acs/acs-system.ts +25 -5
  43. package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +10 -2
  44. package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +3 -1
  45. package/src/lib/seam/connect/models/devices/device-provider.ts +10 -4
  46. package/src/lib/seam/connect/models/devices/device.ts +90 -20
  47. package/src/lib/seam/connect/models/devices/phone.ts +12 -6
  48. package/src/lib/seam/connect/models/devices/unmanaged-device.ts +3 -1
  49. package/src/lib/seam/connect/models/events/access-codes.ts +18 -14
  50. package/src/lib/seam/connect/models/events/acs/entrances.ts +3 -5
  51. package/src/lib/seam/connect/models/events/acs/users.ts +6 -5
  52. package/src/lib/seam/connect/models/events/common.ts +32 -24
  53. package/src/lib/seam/connect/models/thermostats/modes.ts +15 -16
  54. package/src/lib/seam/connect/models/user-identities/user-identity.ts +9 -2
  55. package/src/lib/seam/connect/openapi.ts +641 -96
  56. package/src/lib/seam/connect/route-types.ts +872 -15
@@ -153,6 +153,7 @@ export type Routes = {
153
153
  acs_credential_on_encoder: {
154
154
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
155
155
  created_at: string | null;
156
+ /** Indicates whether the credential has been issued (encoded onto a card). */
156
157
  is_issued: boolean | null;
157
158
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
158
159
  starts_at: string | null;
@@ -198,6 +199,7 @@ export type Routes = {
198
199
  user_identity_id?: string | undefined;
199
200
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
200
201
  connected_account_id: string;
202
+ /** ID of the credential pool to which the credential belongs. */
201
203
  acs_credential_pool_id?: string | undefined;
202
204
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
203
205
  acs_system_id: string;
@@ -318,6 +320,7 @@ export type Routes = {
318
320
  /** Endpoint ID in the Vostio access system. */
319
321
  endpoint_id?: string | undefined;
320
322
  } | undefined;
323
+ /** Indicates whether Seam manages the credential. */
321
324
  is_managed: true;
322
325
  } | {
323
326
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -328,6 +331,7 @@ export type Routes = {
328
331
  user_identity_id?: string | undefined;
329
332
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
330
333
  connected_account_id: string;
334
+ /** ID of the credential pool to which the credential belongs. */
331
335
  acs_credential_pool_id?: string | undefined;
332
336
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
333
337
  acs_system_id: string;
@@ -525,6 +529,7 @@ export type Routes = {
525
529
  user_identity_id?: string | undefined;
526
530
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
527
531
  connected_account_id: string;
532
+ /** ID of the credential pool to which the credential belongs. */
528
533
  acs_credential_pool_id?: string | undefined;
529
534
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
530
535
  acs_system_id: string;
@@ -645,6 +650,7 @@ export type Routes = {
645
650
  /** Endpoint ID in the Vostio access system. */
646
651
  endpoint_id?: string | undefined;
647
652
  } | undefined;
653
+ /** Indicates whether Seam manages the credential. */
648
654
  is_managed: true;
649
655
  } | {
650
656
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -655,6 +661,7 @@ export type Routes = {
655
661
  user_identity_id?: string | undefined;
656
662
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
657
663
  connected_account_id: string;
664
+ /** ID of the credential pool to which the credential belongs. */
658
665
  acs_credential_pool_id?: string | undefined;
659
666
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
660
667
  acs_system_id: string;
@@ -864,6 +871,7 @@ export type Routes = {
864
871
  user_identity_id?: string | undefined;
865
872
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
866
873
  connected_account_id: string;
874
+ /** ID of the credential pool to which the credential belongs. */
867
875
  acs_credential_pool_id?: string | undefined;
868
876
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
869
877
  acs_system_id: string;
@@ -984,6 +992,7 @@ export type Routes = {
984
992
  /** Endpoint ID in the Vostio access system. */
985
993
  endpoint_id?: string | undefined;
986
994
  } | undefined;
995
+ /** Indicates whether Seam manages the credential. */
987
996
  is_managed: true;
988
997
  };
989
998
  } | {
@@ -2908,6 +2917,7 @@ export type Routes = {
2908
2917
  acs_credential_on_encoder: {
2909
2918
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
2910
2919
  created_at: string | null;
2920
+ /** Indicates whether the credential has been issued (encoded onto a card). */
2911
2921
  is_issued: boolean | null;
2912
2922
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
2913
2923
  starts_at: string | null;
@@ -2953,6 +2963,7 @@ export type Routes = {
2953
2963
  user_identity_id?: string | undefined;
2954
2964
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
2955
2965
  connected_account_id: string;
2966
+ /** ID of the credential pool to which the credential belongs. */
2956
2967
  acs_credential_pool_id?: string | undefined;
2957
2968
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
2958
2969
  acs_system_id: string;
@@ -3073,6 +3084,7 @@ export type Routes = {
3073
3084
  /** Endpoint ID in the Vostio access system. */
3074
3085
  endpoint_id?: string | undefined;
3075
3086
  } | undefined;
3087
+ /** Indicates whether Seam manages the credential. */
3076
3088
  is_managed: true;
3077
3089
  } | {
3078
3090
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -3083,6 +3095,7 @@ export type Routes = {
3083
3095
  user_identity_id?: string | undefined;
3084
3096
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
3085
3097
  connected_account_id: string;
3098
+ /** ID of the credential pool to which the credential belongs. */
3086
3099
  acs_credential_pool_id?: string | undefined;
3087
3100
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3088
3101
  acs_system_id: string;
@@ -3280,6 +3293,7 @@ export type Routes = {
3280
3293
  user_identity_id?: string | undefined;
3281
3294
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
3282
3295
  connected_account_id: string;
3296
+ /** ID of the credential pool to which the credential belongs. */
3283
3297
  acs_credential_pool_id?: string | undefined;
3284
3298
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3285
3299
  acs_system_id: string;
@@ -3400,6 +3414,7 @@ export type Routes = {
3400
3414
  /** Endpoint ID in the Vostio access system. */
3401
3415
  endpoint_id?: string | undefined;
3402
3416
  } | undefined;
3417
+ /** Indicates whether Seam manages the credential. */
3403
3418
  is_managed: true;
3404
3419
  } | {
3405
3420
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -3410,6 +3425,7 @@ export type Routes = {
3410
3425
  user_identity_id?: string | undefined;
3411
3426
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
3412
3427
  connected_account_id: string;
3428
+ /** ID of the credential pool to which the credential belongs. */
3413
3429
  acs_credential_pool_id?: string | undefined;
3414
3430
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3415
3431
  acs_system_id: string;
@@ -3619,6 +3635,7 @@ export type Routes = {
3619
3635
  user_identity_id?: string | undefined;
3620
3636
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
3621
3637
  connected_account_id: string;
3638
+ /** ID of the credential pool to which the credential belongs. */
3622
3639
  acs_credential_pool_id?: string | undefined;
3623
3640
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3624
3641
  acs_system_id: string;
@@ -3739,6 +3756,7 @@ export type Routes = {
3739
3756
  /** Endpoint ID in the Vostio access system. */
3740
3757
  endpoint_id?: string | undefined;
3741
3758
  } | undefined;
3759
+ /** Indicates whether Seam manages the credential. */
3742
3760
  is_managed: true;
3743
3761
  };
3744
3762
  } | {
@@ -7304,6 +7322,7 @@ export type Routes = {
7304
7322
  acs_credential_on_encoder: {
7305
7323
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
7306
7324
  created_at: string | null;
7325
+ /** Indicates whether the credential has been issued (encoded onto a card). */
7307
7326
  is_issued: boolean | null;
7308
7327
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
7309
7328
  starts_at: string | null;
@@ -7349,6 +7368,7 @@ export type Routes = {
7349
7368
  user_identity_id?: string | undefined;
7350
7369
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
7351
7370
  connected_account_id: string;
7371
+ /** ID of the credential pool to which the credential belongs. */
7352
7372
  acs_credential_pool_id?: string | undefined;
7353
7373
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7354
7374
  acs_system_id: string;
@@ -7469,6 +7489,7 @@ export type Routes = {
7469
7489
  /** Endpoint ID in the Vostio access system. */
7470
7490
  endpoint_id?: string | undefined;
7471
7491
  } | undefined;
7492
+ /** Indicates whether Seam manages the credential. */
7472
7493
  is_managed: true;
7473
7494
  } | {
7474
7495
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -7479,6 +7500,7 @@ export type Routes = {
7479
7500
  user_identity_id?: string | undefined;
7480
7501
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
7481
7502
  connected_account_id: string;
7503
+ /** ID of the credential pool to which the credential belongs. */
7482
7504
  acs_credential_pool_id?: string | undefined;
7483
7505
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7484
7506
  acs_system_id: string;
@@ -7676,6 +7698,7 @@ export type Routes = {
7676
7698
  user_identity_id?: string | undefined;
7677
7699
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
7678
7700
  connected_account_id: string;
7701
+ /** ID of the credential pool to which the credential belongs. */
7679
7702
  acs_credential_pool_id?: string | undefined;
7680
7703
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7681
7704
  acs_system_id: string;
@@ -7796,6 +7819,7 @@ export type Routes = {
7796
7819
  /** Endpoint ID in the Vostio access system. */
7797
7820
  endpoint_id?: string | undefined;
7798
7821
  } | undefined;
7822
+ /** Indicates whether Seam manages the credential. */
7799
7823
  is_managed: true;
7800
7824
  } | {
7801
7825
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -7806,6 +7830,7 @@ export type Routes = {
7806
7830
  user_identity_id?: string | undefined;
7807
7831
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
7808
7832
  connected_account_id: string;
7833
+ /** ID of the credential pool to which the credential belongs. */
7809
7834
  acs_credential_pool_id?: string | undefined;
7810
7835
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7811
7836
  acs_system_id: string;
@@ -8015,6 +8040,7 @@ export type Routes = {
8015
8040
  user_identity_id?: string | undefined;
8016
8041
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
8017
8042
  connected_account_id: string;
8043
+ /** ID of the credential pool to which the credential belongs. */
8018
8044
  acs_credential_pool_id?: string | undefined;
8019
8045
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
8020
8046
  acs_system_id: string;
@@ -8135,6 +8161,7 @@ export type Routes = {
8135
8161
  /** Endpoint ID in the Vostio access system. */
8136
8162
  endpoint_id?: string | undefined;
8137
8163
  } | undefined;
8164
+ /** Indicates whether Seam manages the credential. */
8138
8165
  is_managed: true;
8139
8166
  };
8140
8167
  } | {
@@ -9939,6 +9966,7 @@ export type Routes = {
9939
9966
  acs_credential_on_encoder: {
9940
9967
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
9941
9968
  created_at: string | null;
9969
+ /** Indicates whether the credential has been issued (encoded onto a card). */
9942
9970
  is_issued: boolean | null;
9943
9971
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
9944
9972
  starts_at: string | null;
@@ -9984,6 +10012,7 @@ export type Routes = {
9984
10012
  user_identity_id?: string | undefined;
9985
10013
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
9986
10014
  connected_account_id: string;
10015
+ /** ID of the credential pool to which the credential belongs. */
9987
10016
  acs_credential_pool_id?: string | undefined;
9988
10017
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
9989
10018
  acs_system_id: string;
@@ -10104,6 +10133,7 @@ export type Routes = {
10104
10133
  /** Endpoint ID in the Vostio access system. */
10105
10134
  endpoint_id?: string | undefined;
10106
10135
  } | undefined;
10136
+ /** Indicates whether Seam manages the credential. */
10107
10137
  is_managed: true;
10108
10138
  } | {
10109
10139
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -10114,6 +10144,7 @@ export type Routes = {
10114
10144
  user_identity_id?: string | undefined;
10115
10145
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
10116
10146
  connected_account_id: string;
10147
+ /** ID of the credential pool to which the credential belongs. */
10117
10148
  acs_credential_pool_id?: string | undefined;
10118
10149
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
10119
10150
  acs_system_id: string;
@@ -10311,6 +10342,7 @@ export type Routes = {
10311
10342
  user_identity_id?: string | undefined;
10312
10343
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
10313
10344
  connected_account_id: string;
10345
+ /** ID of the credential pool to which the credential belongs. */
10314
10346
  acs_credential_pool_id?: string | undefined;
10315
10347
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
10316
10348
  acs_system_id: string;
@@ -10431,6 +10463,7 @@ export type Routes = {
10431
10463
  /** Endpoint ID in the Vostio access system. */
10432
10464
  endpoint_id?: string | undefined;
10433
10465
  } | undefined;
10466
+ /** Indicates whether Seam manages the credential. */
10434
10467
  is_managed: true;
10435
10468
  } | {
10436
10469
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -10441,6 +10474,7 @@ export type Routes = {
10441
10474
  user_identity_id?: string | undefined;
10442
10475
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
10443
10476
  connected_account_id: string;
10477
+ /** ID of the credential pool to which the credential belongs. */
10444
10478
  acs_credential_pool_id?: string | undefined;
10445
10479
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
10446
10480
  acs_system_id: string;
@@ -10650,6 +10684,7 @@ export type Routes = {
10650
10684
  user_identity_id?: string | undefined;
10651
10685
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
10652
10686
  connected_account_id: string;
10687
+ /** ID of the credential pool to which the credential belongs. */
10653
10688
  acs_credential_pool_id?: string | undefined;
10654
10689
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
10655
10690
  acs_system_id: string;
@@ -10770,6 +10805,7 @@ export type Routes = {
10770
10805
  /** Endpoint ID in the Vostio access system. */
10771
10806
  endpoint_id?: string | undefined;
10772
10807
  } | undefined;
10808
+ /** Indicates whether Seam manages the credential. */
10773
10809
  is_managed: true;
10774
10810
  };
10775
10811
  } | {
@@ -11534,6 +11570,7 @@ export type Routes = {
11534
11570
  email_address?: (string | null) | undefined;
11535
11571
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
11536
11572
  phone_number?: (string | null) | undefined;
11573
+ /** Full name of the user associated with the user identity. */
11537
11574
  full_name?: (string | null) | undefined;
11538
11575
  /** Unique key for the user identity. */
11539
11576
  user_identity_key?: (string | null) | undefined;
@@ -13387,25 +13424,45 @@ export type Routes = {
13387
13424
  /** Image URL for the manufacturer logo. */
13388
13425
  image_url?: string | undefined;
13389
13426
  } | undefined;
13427
+ /** Indicates whether the device supports remote unlocking. */
13390
13428
  can_remotely_unlock?: boolean | undefined;
13429
+ /** Indicates whether the device supports remote locking. */
13391
13430
  can_remotely_lock?: boolean | undefined;
13431
+ /** Indicates whether the device supports programming offline access codes. */
13392
13432
  can_program_offline_access_codes?: boolean | undefined;
13433
+ /** Indicates whether the device supports programming online access codes. */
13393
13434
  can_program_online_access_codes?: boolean | undefined;
13435
+ /** Indicates whether the thermostat supports heating. */
13394
13436
  can_hvac_heat?: boolean | undefined;
13437
+ /** Indicates whether the thermostat supports cooling. */
13395
13438
  can_hvac_cool?: boolean | undefined;
13439
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
13396
13440
  can_hvac_heat_cool?: boolean | undefined;
13441
+ /** Indicates whether the thermostat can be turned off. */
13397
13442
  can_turn_off_hvac?: boolean | undefined;
13443
+ /** Indicates whether the device supports simulating removal in a sandbox. */
13398
13444
  can_simulate_removal?: boolean | undefined;
13445
+ /** Indicates whether the device supports simulating connection in a sandbox. */
13399
13446
  can_simulate_connection?: boolean | undefined;
13447
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
13400
13448
  can_simulate_disconnection?: boolean | undefined;
13449
+ /** Indicates whether the lock supports unlocking with an access code. */
13401
13450
  can_unlock_with_code?: boolean | undefined;
13451
+ /** Indicates whether the thermostat supports running climate programs. */
13402
13452
  can_run_thermostat_programs?: boolean | undefined;
13453
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
13403
13454
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
13455
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
13404
13456
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
13457
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
13405
13458
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
13459
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
13406
13460
  can_simulate_hub_connection?: boolean | undefined;
13461
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
13407
13462
  can_simulate_hub_disconnection?: boolean | undefined;
13463
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
13408
13464
  can_simulate_paid_subscription?: boolean | undefined;
13465
+ /** Indicates whether the lock supports configuring automatic locking. */
13409
13466
  can_configure_auto_lock?: boolean | undefined;
13410
13467
  }[] | undefined;
13411
13468
  acs_entrances?: {
@@ -13773,7 +13830,9 @@ export type Routes = {
13773
13830
  default_credential_manager_acs_system_id?: (string | null) | undefined;
13774
13831
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
13775
13832
  acs_system_id: string;
13833
+ /** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
13776
13834
  acs_user_count?: number | undefined;
13835
+ /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
13777
13836
  acs_access_group_count?: number | undefined;
13778
13837
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
13779
13838
  external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
@@ -13781,6 +13840,7 @@ export type Routes = {
13781
13840
  external_type_display_name?: string | undefined;
13782
13841
  /** Indicates whether the `acs_system` is a credential manager. */
13783
13842
  is_credential_manager: boolean;
13843
+ /** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
13784
13844
  visionline_metadata?: {
13785
13845
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
13786
13846
  mobile_access_uuid: string;
@@ -13795,6 +13855,7 @@ export type Routes = {
13795
13855
  /**
13796
13856
  * @deprecated Use `external_type_display_name`.*/
13797
13857
  system_type_display_name?: string | undefined;
13858
+ /** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
13798
13859
  location: {
13799
13860
  /** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
13800
13861
  time_zone: string | null;
@@ -13829,6 +13890,7 @@ export type Routes = {
13829
13890
  message: string;
13830
13891
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13831
13892
  error_code: 'bridge_disconnected';
13893
+ /** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
13832
13894
  is_bridge_error?: boolean | undefined;
13833
13895
  } | {
13834
13896
  /** Date and time at which Seam created the error. */
@@ -13909,7 +13971,9 @@ export type Routes = {
13909
13971
  email_address: string | null;
13910
13972
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
13911
13973
  phone_number: string | null;
13974
+ /** Display name for the user identity. */
13912
13975
  display_name: string;
13976
+ /** Full name of the user associated with the user identity. */
13913
13977
  full_name: string | null;
13914
13978
  /** Date and time at which the user identity was created. */
13915
13979
  created_at: string;
@@ -13964,6 +14028,7 @@ export type Routes = {
13964
14028
  /**
13965
14029
  * @deprecated Use `external_type_display_name`.*/
13966
14030
  access_group_type_display_name: string;
14031
+ /** Display name for the access group. */
13967
14032
  display_name: string;
13968
14033
  /** Brand-specific terminology for the access group type. */
13969
14034
  external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
@@ -14109,6 +14174,7 @@ export type Routes = {
14109
14174
  /** Whether the user is scheduled to be added to or removed from this access group. */
14110
14175
  variant: 'adding' | 'removing';
14111
14176
  })[];
14177
+ /** Indicates whether Seam manages the access group. */
14112
14178
  is_managed: true;
14113
14179
  }[] | undefined;
14114
14180
  access_methods?: {
@@ -15205,6 +15271,7 @@ export type Routes = {
15205
15271
  acs_credential_on_encoder: {
15206
15272
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
15207
15273
  created_at: string | null;
15274
+ /** Indicates whether the credential has been issued (encoded onto a card). */
15208
15275
  is_issued: boolean | null;
15209
15276
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
15210
15277
  starts_at: string | null;
@@ -15250,6 +15317,7 @@ export type Routes = {
15250
15317
  user_identity_id?: string | undefined;
15251
15318
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
15252
15319
  connected_account_id: string;
15320
+ /** ID of the credential pool to which the credential belongs. */
15253
15321
  acs_credential_pool_id?: string | undefined;
15254
15322
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15255
15323
  acs_system_id: string;
@@ -15370,6 +15438,7 @@ export type Routes = {
15370
15438
  /** Endpoint ID in the Vostio access system. */
15371
15439
  endpoint_id?: string | undefined;
15372
15440
  } | undefined;
15441
+ /** Indicates whether Seam manages the credential. */
15373
15442
  is_managed: true;
15374
15443
  } | {
15375
15444
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -15380,6 +15449,7 @@ export type Routes = {
15380
15449
  user_identity_id?: string | undefined;
15381
15450
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
15382
15451
  connected_account_id: string;
15452
+ /** ID of the credential pool to which the credential belongs. */
15383
15453
  acs_credential_pool_id?: string | undefined;
15384
15454
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15385
15455
  acs_system_id: string;
@@ -15577,6 +15647,7 @@ export type Routes = {
15577
15647
  user_identity_id?: string | undefined;
15578
15648
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
15579
15649
  connected_account_id: string;
15650
+ /** ID of the credential pool to which the credential belongs. */
15580
15651
  acs_credential_pool_id?: string | undefined;
15581
15652
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15582
15653
  acs_system_id: string;
@@ -15697,6 +15768,7 @@ export type Routes = {
15697
15768
  /** Endpoint ID in the Vostio access system. */
15698
15769
  endpoint_id?: string | undefined;
15699
15770
  } | undefined;
15771
+ /** Indicates whether Seam manages the credential. */
15700
15772
  is_managed: true;
15701
15773
  } | {
15702
15774
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -15707,6 +15779,7 @@ export type Routes = {
15707
15779
  user_identity_id?: string | undefined;
15708
15780
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
15709
15781
  connected_account_id: string;
15782
+ /** ID of the credential pool to which the credential belongs. */
15710
15783
  acs_credential_pool_id?: string | undefined;
15711
15784
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15712
15785
  acs_system_id: string;
@@ -15916,6 +15989,7 @@ export type Routes = {
15916
15989
  user_identity_id?: string | undefined;
15917
15990
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
15918
15991
  connected_account_id: string;
15992
+ /** ID of the credential pool to which the credential belongs. */
15919
15993
  acs_credential_pool_id?: string | undefined;
15920
15994
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15921
15995
  acs_system_id: string;
@@ -16036,6 +16110,7 @@ export type Routes = {
16036
16110
  /** Endpoint ID in the Vostio access system. */
16037
16111
  endpoint_id?: string | undefined;
16038
16112
  } | undefined;
16113
+ /** Indicates whether Seam manages the credential. */
16039
16114
  is_managed: true;
16040
16115
  };
16041
16116
  } | {
@@ -16897,6 +16972,7 @@ export type Routes = {
16897
16972
  acs_credential_on_encoder: {
16898
16973
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
16899
16974
  created_at: string | null;
16975
+ /** Indicates whether the credential has been issued (encoded onto a card). */
16900
16976
  is_issued: boolean | null;
16901
16977
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
16902
16978
  starts_at: string | null;
@@ -16942,6 +17018,7 @@ export type Routes = {
16942
17018
  user_identity_id?: string | undefined;
16943
17019
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
16944
17020
  connected_account_id: string;
17021
+ /** ID of the credential pool to which the credential belongs. */
16945
17022
  acs_credential_pool_id?: string | undefined;
16946
17023
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
16947
17024
  acs_system_id: string;
@@ -17062,6 +17139,7 @@ export type Routes = {
17062
17139
  /** Endpoint ID in the Vostio access system. */
17063
17140
  endpoint_id?: string | undefined;
17064
17141
  } | undefined;
17142
+ /** Indicates whether Seam manages the credential. */
17065
17143
  is_managed: true;
17066
17144
  } | {
17067
17145
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -17072,6 +17150,7 @@ export type Routes = {
17072
17150
  user_identity_id?: string | undefined;
17073
17151
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
17074
17152
  connected_account_id: string;
17153
+ /** ID of the credential pool to which the credential belongs. */
17075
17154
  acs_credential_pool_id?: string | undefined;
17076
17155
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
17077
17156
  acs_system_id: string;
@@ -17269,6 +17348,7 @@ export type Routes = {
17269
17348
  user_identity_id?: string | undefined;
17270
17349
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
17271
17350
  connected_account_id: string;
17351
+ /** ID of the credential pool to which the credential belongs. */
17272
17352
  acs_credential_pool_id?: string | undefined;
17273
17353
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
17274
17354
  acs_system_id: string;
@@ -17389,6 +17469,7 @@ export type Routes = {
17389
17469
  /** Endpoint ID in the Vostio access system. */
17390
17470
  endpoint_id?: string | undefined;
17391
17471
  } | undefined;
17472
+ /** Indicates whether Seam manages the credential. */
17392
17473
  is_managed: true;
17393
17474
  } | {
17394
17475
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -17399,6 +17480,7 @@ export type Routes = {
17399
17480
  user_identity_id?: string | undefined;
17400
17481
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
17401
17482
  connected_account_id: string;
17483
+ /** ID of the credential pool to which the credential belongs. */
17402
17484
  acs_credential_pool_id?: string | undefined;
17403
17485
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
17404
17486
  acs_system_id: string;
@@ -17608,6 +17690,7 @@ export type Routes = {
17608
17690
  user_identity_id?: string | undefined;
17609
17691
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
17610
17692
  connected_account_id: string;
17693
+ /** ID of the credential pool to which the credential belongs. */
17611
17694
  acs_credential_pool_id?: string | undefined;
17612
17695
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
17613
17696
  acs_system_id: string;
@@ -17728,6 +17811,7 @@ export type Routes = {
17728
17811
  /** Endpoint ID in the Vostio access system. */
17729
17812
  endpoint_id?: string | undefined;
17730
17813
  } | undefined;
17814
+ /** Indicates whether Seam manages the credential. */
17731
17815
  is_managed: true;
17732
17816
  };
17733
17817
  } | {
@@ -19988,25 +20072,45 @@ export type Routes = {
19988
20072
  /** Image URL for the manufacturer logo. */
19989
20073
  image_url?: string | undefined;
19990
20074
  } | undefined;
20075
+ /** Indicates whether the device supports remote unlocking. */
19991
20076
  can_remotely_unlock?: boolean | undefined;
20077
+ /** Indicates whether the device supports remote locking. */
19992
20078
  can_remotely_lock?: boolean | undefined;
20079
+ /** Indicates whether the device supports programming offline access codes. */
19993
20080
  can_program_offline_access_codes?: boolean | undefined;
20081
+ /** Indicates whether the device supports programming online access codes. */
19994
20082
  can_program_online_access_codes?: boolean | undefined;
20083
+ /** Indicates whether the thermostat supports heating. */
19995
20084
  can_hvac_heat?: boolean | undefined;
20085
+ /** Indicates whether the thermostat supports cooling. */
19996
20086
  can_hvac_cool?: boolean | undefined;
20087
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
19997
20088
  can_hvac_heat_cool?: boolean | undefined;
20089
+ /** Indicates whether the thermostat can be turned off. */
19998
20090
  can_turn_off_hvac?: boolean | undefined;
20091
+ /** Indicates whether the device supports simulating removal in a sandbox. */
19999
20092
  can_simulate_removal?: boolean | undefined;
20093
+ /** Indicates whether the device supports simulating connection in a sandbox. */
20000
20094
  can_simulate_connection?: boolean | undefined;
20095
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
20001
20096
  can_simulate_disconnection?: boolean | undefined;
20097
+ /** Indicates whether the lock supports unlocking with an access code. */
20002
20098
  can_unlock_with_code?: boolean | undefined;
20099
+ /** Indicates whether the thermostat supports running climate programs. */
20003
20100
  can_run_thermostat_programs?: boolean | undefined;
20101
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
20004
20102
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
20103
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
20005
20104
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
20105
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
20006
20106
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
20107
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
20007
20108
  can_simulate_hub_connection?: boolean | undefined;
20109
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
20008
20110
  can_simulate_hub_disconnection?: boolean | undefined;
20111
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
20009
20112
  can_simulate_paid_subscription?: boolean | undefined;
20113
+ /** Indicates whether the lock supports configuring automatic locking. */
20010
20114
  can_configure_auto_lock?: boolean | undefined;
20011
20115
  }[] | undefined;
20012
20116
  acs_entrances?: {
@@ -20545,6 +20649,7 @@ export type Routes = {
20545
20649
  user_identity_id?: string | undefined;
20546
20650
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
20547
20651
  connected_account_id: string;
20652
+ /** ID of the credential pool to which the credential belongs. */
20548
20653
  acs_credential_pool_id?: string | undefined;
20549
20654
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
20550
20655
  acs_system_id: string;
@@ -20665,6 +20770,7 @@ export type Routes = {
20665
20770
  /** Endpoint ID in the Vostio access system. */
20666
20771
  endpoint_id?: string | undefined;
20667
20772
  } | undefined;
20773
+ /** Indicates whether Seam manages the credential. */
20668
20774
  is_managed: true;
20669
20775
  }[] | undefined;
20670
20776
  };
@@ -20927,6 +21033,7 @@ export type Routes = {
20927
21033
  acs_credential_on_encoder: {
20928
21034
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
20929
21035
  created_at: string | null;
21036
+ /** Indicates whether the credential has been issued (encoded onto a card). */
20930
21037
  is_issued: boolean | null;
20931
21038
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
20932
21039
  starts_at: string | null;
@@ -20972,6 +21079,7 @@ export type Routes = {
20972
21079
  user_identity_id?: string | undefined;
20973
21080
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
20974
21081
  connected_account_id: string;
21082
+ /** ID of the credential pool to which the credential belongs. */
20975
21083
  acs_credential_pool_id?: string | undefined;
20976
21084
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
20977
21085
  acs_system_id: string;
@@ -21092,6 +21200,7 @@ export type Routes = {
21092
21200
  /** Endpoint ID in the Vostio access system. */
21093
21201
  endpoint_id?: string | undefined;
21094
21202
  } | undefined;
21203
+ /** Indicates whether Seam manages the credential. */
21095
21204
  is_managed: true;
21096
21205
  } | {
21097
21206
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -21102,6 +21211,7 @@ export type Routes = {
21102
21211
  user_identity_id?: string | undefined;
21103
21212
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
21104
21213
  connected_account_id: string;
21214
+ /** ID of the credential pool to which the credential belongs. */
21105
21215
  acs_credential_pool_id?: string | undefined;
21106
21216
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
21107
21217
  acs_system_id: string;
@@ -21299,6 +21409,7 @@ export type Routes = {
21299
21409
  user_identity_id?: string | undefined;
21300
21410
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
21301
21411
  connected_account_id: string;
21412
+ /** ID of the credential pool to which the credential belongs. */
21302
21413
  acs_credential_pool_id?: string | undefined;
21303
21414
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
21304
21415
  acs_system_id: string;
@@ -21419,6 +21530,7 @@ export type Routes = {
21419
21530
  /** Endpoint ID in the Vostio access system. */
21420
21531
  endpoint_id?: string | undefined;
21421
21532
  } | undefined;
21533
+ /** Indicates whether Seam manages the credential. */
21422
21534
  is_managed: true;
21423
21535
  } | {
21424
21536
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -21429,6 +21541,7 @@ export type Routes = {
21429
21541
  user_identity_id?: string | undefined;
21430
21542
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
21431
21543
  connected_account_id: string;
21544
+ /** ID of the credential pool to which the credential belongs. */
21432
21545
  acs_credential_pool_id?: string | undefined;
21433
21546
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
21434
21547
  acs_system_id: string;
@@ -21638,6 +21751,7 @@ export type Routes = {
21638
21751
  user_identity_id?: string | undefined;
21639
21752
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
21640
21753
  connected_account_id: string;
21754
+ /** ID of the credential pool to which the credential belongs. */
21641
21755
  acs_credential_pool_id?: string | undefined;
21642
21756
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
21643
21757
  acs_system_id: string;
@@ -21758,6 +21872,7 @@ export type Routes = {
21758
21872
  /** Endpoint ID in the Vostio access system. */
21759
21873
  endpoint_id?: string | undefined;
21760
21874
  } | undefined;
21875
+ /** Indicates whether Seam manages the credential. */
21761
21876
  is_managed: true;
21762
21877
  };
21763
21878
  } | {
@@ -22796,6 +22911,7 @@ export type Routes = {
22796
22911
  /**
22797
22912
  * @deprecated Use `external_type_display_name`.*/
22798
22913
  access_group_type_display_name: string;
22914
+ /** Display name for the access group. */
22799
22915
  display_name: string;
22800
22916
  /** Brand-specific terminology for the access group type. */
22801
22917
  external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
@@ -22941,6 +23057,7 @@ export type Routes = {
22941
23057
  /** Whether the user is scheduled to be added to or removed from this access group. */
22942
23058
  variant: 'adding' | 'removing';
22943
23059
  })[];
23060
+ /** Indicates whether Seam manages the access group. */
22944
23061
  is_managed: true;
22945
23062
  };
22946
23063
  };
@@ -22980,6 +23097,7 @@ export type Routes = {
22980
23097
  /**
22981
23098
  * @deprecated Use `external_type_display_name`.*/
22982
23099
  access_group_type_display_name: string;
23100
+ /** Display name for the access group. */
22983
23101
  display_name: string;
22984
23102
  /** Brand-specific terminology for the access group type. */
22985
23103
  external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
@@ -23125,6 +23243,7 @@ export type Routes = {
23125
23243
  /** Whether the user is scheduled to be added to or removed from this access group. */
23126
23244
  variant: 'adding' | 'removing';
23127
23245
  })[];
23246
+ /** Indicates whether Seam manages the access group. */
23128
23247
  is_managed: true;
23129
23248
  }[];
23130
23249
  };
@@ -23340,6 +23459,7 @@ export type Routes = {
23340
23459
  acs_user_id: string;
23341
23460
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
23342
23461
  acs_system_id: string;
23462
+ /** ID of the HID access control system associated with the user. */
23343
23463
  hid_acs_system_id?: string | undefined;
23344
23464
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
23345
23465
  workspace_id: string;
@@ -23585,6 +23705,7 @@ export type Routes = {
23585
23705
  email_address?: string | undefined;
23586
23706
  /** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
23587
23707
  phone_number?: string | undefined;
23708
+ /** Indicates whether Seam manages the access system user. */
23588
23709
  is_managed: true;
23589
23710
  }[];
23590
23711
  };
@@ -23636,6 +23757,7 @@ export type Routes = {
23636
23757
  /**
23637
23758
  * @deprecated Use `external_type_display_name`.*/
23638
23759
  access_group_type_display_name: string;
23760
+ /** Display name for the access group. */
23639
23761
  display_name: string;
23640
23762
  /** Brand-specific terminology for the access group type. */
23641
23763
  external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
@@ -23818,6 +23940,7 @@ export type Routes = {
23818
23940
  /**
23819
23941
  * @deprecated Use `external_type_display_name`.*/
23820
23942
  access_group_type_display_name: string;
23943
+ /** Display name for the access group. */
23821
23944
  display_name: string;
23822
23945
  /** Brand-specific terminology for the access group type. */
23823
23946
  external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
@@ -24053,6 +24176,7 @@ export type Routes = {
24053
24176
  user_identity_id?: string | undefined;
24054
24177
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
24055
24178
  connected_account_id: string;
24179
+ /** ID of the credential pool to which the credential belongs. */
24056
24180
  acs_credential_pool_id?: string | undefined;
24057
24181
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24058
24182
  acs_system_id: string;
@@ -24173,6 +24297,7 @@ export type Routes = {
24173
24297
  /** Endpoint ID in the Vostio access system. */
24174
24298
  endpoint_id?: string | undefined;
24175
24299
  } | undefined;
24300
+ /** Indicates whether Seam manages the credential. */
24176
24301
  is_managed: true;
24177
24302
  };
24178
24303
  };
@@ -24256,6 +24381,7 @@ export type Routes = {
24256
24381
  user_identity_id?: string | undefined;
24257
24382
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
24258
24383
  connected_account_id: string;
24384
+ /** ID of the credential pool to which the credential belongs. */
24259
24385
  acs_credential_pool_id?: string | undefined;
24260
24386
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24261
24387
  acs_system_id: string;
@@ -24376,6 +24502,7 @@ export type Routes = {
24376
24502
  /** Endpoint ID in the Vostio access system. */
24377
24503
  endpoint_id?: string | undefined;
24378
24504
  } | undefined;
24505
+ /** Indicates whether Seam manages the credential. */
24379
24506
  is_managed: true;
24380
24507
  };
24381
24508
  };
@@ -24416,6 +24543,7 @@ export type Routes = {
24416
24543
  user_identity_id?: string | undefined;
24417
24544
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
24418
24545
  connected_account_id: string;
24546
+ /** ID of the credential pool to which the credential belongs. */
24419
24547
  acs_credential_pool_id?: string | undefined;
24420
24548
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24421
24549
  acs_system_id: string;
@@ -24536,6 +24664,7 @@ export type Routes = {
24536
24664
  /** Endpoint ID in the Vostio access system. */
24537
24665
  endpoint_id?: string | undefined;
24538
24666
  } | undefined;
24667
+ /** Indicates whether Seam manages the credential. */
24539
24668
  is_managed: true;
24540
24669
  };
24541
24670
  };
@@ -24581,6 +24710,7 @@ export type Routes = {
24581
24710
  user_identity_id?: string | undefined;
24582
24711
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
24583
24712
  connected_account_id: string;
24713
+ /** ID of the credential pool to which the credential belongs. */
24584
24714
  acs_credential_pool_id?: string | undefined;
24585
24715
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24586
24716
  acs_system_id: string;
@@ -24701,6 +24831,7 @@ export type Routes = {
24701
24831
  /** Endpoint ID in the Vostio access system. */
24702
24832
  endpoint_id?: string | undefined;
24703
24833
  } | undefined;
24834
+ /** Indicates whether Seam manages the credential. */
24704
24835
  is_managed: true;
24705
24836
  };
24706
24837
  };
@@ -24748,6 +24879,7 @@ export type Routes = {
24748
24879
  user_identity_id?: string | undefined;
24749
24880
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
24750
24881
  connected_account_id: string;
24882
+ /** ID of the credential pool to which the credential belongs. */
24751
24883
  acs_credential_pool_id?: string | undefined;
24752
24884
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24753
24885
  acs_system_id: string;
@@ -24868,6 +25000,7 @@ export type Routes = {
24868
25000
  /** Endpoint ID in the Vostio access system. */
24869
25001
  endpoint_id?: string | undefined;
24870
25002
  } | undefined;
25003
+ /** Indicates whether Seam manages the credential. */
24871
25004
  is_managed: true;
24872
25005
  }[];
24873
25006
  /** Information about the current page of results. */
@@ -25107,6 +25240,7 @@ export type Routes = {
25107
25240
  user_identity_id?: string | undefined;
25108
25241
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
25109
25242
  connected_account_id: string;
25243
+ /** ID of the credential pool to which the credential belongs. */
25110
25244
  acs_credential_pool_id?: string | undefined;
25111
25245
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25112
25246
  acs_system_id: string;
@@ -25227,6 +25361,7 @@ export type Routes = {
25227
25361
  /** Endpoint ID in the Vostio access system. */
25228
25362
  endpoint_id?: string | undefined;
25229
25363
  } | undefined;
25364
+ /** Indicates whether Seam manages the credential. */
25230
25365
  is_managed: true;
25231
25366
  };
25232
25367
  };
@@ -25253,6 +25388,7 @@ export type Routes = {
25253
25388
  user_identity_id?: string | undefined;
25254
25389
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
25255
25390
  connected_account_id: string;
25391
+ /** ID of the credential pool to which the credential belongs. */
25256
25392
  acs_credential_pool_id?: string | undefined;
25257
25393
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25258
25394
  acs_system_id: string;
@@ -25412,6 +25548,7 @@ export type Routes = {
25412
25548
  user_identity_id?: string | undefined;
25413
25549
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
25414
25550
  connected_account_id: string;
25551
+ /** ID of the credential pool to which the credential belongs. */
25415
25552
  acs_credential_pool_id?: string | undefined;
25416
25553
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25417
25554
  acs_system_id: string;
@@ -25568,6 +25705,7 @@ export type Routes = {
25568
25705
  user_identity_id?: string | undefined;
25569
25706
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
25570
25707
  connected_account_id: string;
25708
+ /** ID of the credential pool to which the credential belongs. */
25571
25709
  acs_credential_pool_id?: string | undefined;
25572
25710
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25573
25711
  acs_system_id: string;
@@ -25688,6 +25826,7 @@ export type Routes = {
25688
25826
  /** Endpoint ID in the Vostio access system. */
25689
25827
  endpoint_id?: string | undefined;
25690
25828
  } | undefined;
25829
+ /** Indicates whether Seam manages the credential. */
25691
25830
  is_managed: true;
25692
25831
  };
25693
25832
  };
@@ -25813,6 +25952,7 @@ export type Routes = {
25813
25952
  acs_credential_on_encoder: {
25814
25953
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
25815
25954
  created_at: string | null;
25955
+ /** Indicates whether the credential has been issued (encoded onto a card). */
25816
25956
  is_issued: boolean | null;
25817
25957
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
25818
25958
  starts_at: string | null;
@@ -25858,6 +25998,7 @@ export type Routes = {
25858
25998
  user_identity_id?: string | undefined;
25859
25999
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
25860
26000
  connected_account_id: string;
26001
+ /** ID of the credential pool to which the credential belongs. */
25861
26002
  acs_credential_pool_id?: string | undefined;
25862
26003
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25863
26004
  acs_system_id: string;
@@ -25978,6 +26119,7 @@ export type Routes = {
25978
26119
  /** Endpoint ID in the Vostio access system. */
25979
26120
  endpoint_id?: string | undefined;
25980
26121
  } | undefined;
26122
+ /** Indicates whether Seam manages the credential. */
25981
26123
  is_managed: true;
25982
26124
  } | {
25983
26125
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -25988,6 +26130,7 @@ export type Routes = {
25988
26130
  user_identity_id?: string | undefined;
25989
26131
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
25990
26132
  connected_account_id: string;
26133
+ /** ID of the credential pool to which the credential belongs. */
25991
26134
  acs_credential_pool_id?: string | undefined;
25992
26135
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25993
26136
  acs_system_id: string;
@@ -26185,6 +26328,7 @@ export type Routes = {
26185
26328
  user_identity_id?: string | undefined;
26186
26329
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
26187
26330
  connected_account_id: string;
26331
+ /** ID of the credential pool to which the credential belongs. */
26188
26332
  acs_credential_pool_id?: string | undefined;
26189
26333
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
26190
26334
  acs_system_id: string;
@@ -26305,6 +26449,7 @@ export type Routes = {
26305
26449
  /** Endpoint ID in the Vostio access system. */
26306
26450
  endpoint_id?: string | undefined;
26307
26451
  } | undefined;
26452
+ /** Indicates whether Seam manages the credential. */
26308
26453
  is_managed: true;
26309
26454
  } | {
26310
26455
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -26315,6 +26460,7 @@ export type Routes = {
26315
26460
  user_identity_id?: string | undefined;
26316
26461
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
26317
26462
  connected_account_id: string;
26463
+ /** ID of the credential pool to which the credential belongs. */
26318
26464
  acs_credential_pool_id?: string | undefined;
26319
26465
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
26320
26466
  acs_system_id: string;
@@ -26524,6 +26670,7 @@ export type Routes = {
26524
26670
  user_identity_id?: string | undefined;
26525
26671
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
26526
26672
  connected_account_id: string;
26673
+ /** ID of the credential pool to which the credential belongs. */
26527
26674
  acs_credential_pool_id?: string | undefined;
26528
26675
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
26529
26676
  acs_system_id: string;
@@ -26644,6 +26791,7 @@ export type Routes = {
26644
26791
  /** Endpoint ID in the Vostio access system. */
26645
26792
  endpoint_id?: string | undefined;
26646
26793
  } | undefined;
26794
+ /** Indicates whether Seam manages the credential. */
26647
26795
  is_managed: true;
26648
26796
  };
26649
26797
  } | {
@@ -27597,6 +27745,7 @@ export type Routes = {
27597
27745
  acs_credential_on_encoder: {
27598
27746
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
27599
27747
  created_at: string | null;
27748
+ /** Indicates whether the credential has been issued (encoded onto a card). */
27600
27749
  is_issued: boolean | null;
27601
27750
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
27602
27751
  starts_at: string | null;
@@ -27642,6 +27791,7 @@ export type Routes = {
27642
27791
  user_identity_id?: string | undefined;
27643
27792
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
27644
27793
  connected_account_id: string;
27794
+ /** ID of the credential pool to which the credential belongs. */
27645
27795
  acs_credential_pool_id?: string | undefined;
27646
27796
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
27647
27797
  acs_system_id: string;
@@ -27762,6 +27912,7 @@ export type Routes = {
27762
27912
  /** Endpoint ID in the Vostio access system. */
27763
27913
  endpoint_id?: string | undefined;
27764
27914
  } | undefined;
27915
+ /** Indicates whether Seam manages the credential. */
27765
27916
  is_managed: true;
27766
27917
  } | {
27767
27918
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -27772,6 +27923,7 @@ export type Routes = {
27772
27923
  user_identity_id?: string | undefined;
27773
27924
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
27774
27925
  connected_account_id: string;
27926
+ /** ID of the credential pool to which the credential belongs. */
27775
27927
  acs_credential_pool_id?: string | undefined;
27776
27928
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
27777
27929
  acs_system_id: string;
@@ -27969,6 +28121,7 @@ export type Routes = {
27969
28121
  user_identity_id?: string | undefined;
27970
28122
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
27971
28123
  connected_account_id: string;
28124
+ /** ID of the credential pool to which the credential belongs. */
27972
28125
  acs_credential_pool_id?: string | undefined;
27973
28126
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
27974
28127
  acs_system_id: string;
@@ -28089,6 +28242,7 @@ export type Routes = {
28089
28242
  /** Endpoint ID in the Vostio access system. */
28090
28243
  endpoint_id?: string | undefined;
28091
28244
  } | undefined;
28245
+ /** Indicates whether Seam manages the credential. */
28092
28246
  is_managed: true;
28093
28247
  } | {
28094
28248
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -28099,6 +28253,7 @@ export type Routes = {
28099
28253
  user_identity_id?: string | undefined;
28100
28254
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
28101
28255
  connected_account_id: string;
28256
+ /** ID of the credential pool to which the credential belongs. */
28102
28257
  acs_credential_pool_id?: string | undefined;
28103
28258
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
28104
28259
  acs_system_id: string;
@@ -28308,6 +28463,7 @@ export type Routes = {
28308
28463
  user_identity_id?: string | undefined;
28309
28464
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
28310
28465
  connected_account_id: string;
28466
+ /** ID of the credential pool to which the credential belongs. */
28311
28467
  acs_credential_pool_id?: string | undefined;
28312
28468
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
28313
28469
  acs_system_id: string;
@@ -28428,6 +28584,7 @@ export type Routes = {
28428
28584
  /** Endpoint ID in the Vostio access system. */
28429
28585
  endpoint_id?: string | undefined;
28430
28586
  } | undefined;
28587
+ /** Indicates whether Seam manages the credential. */
28431
28588
  is_managed: true;
28432
28589
  };
28433
28590
  } | {
@@ -29277,6 +29434,7 @@ export type Routes = {
29277
29434
  acs_credential_on_encoder: {
29278
29435
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
29279
29436
  created_at: string | null;
29437
+ /** Indicates whether the credential has been issued (encoded onto a card). */
29280
29438
  is_issued: boolean | null;
29281
29439
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
29282
29440
  starts_at: string | null;
@@ -29322,6 +29480,7 @@ export type Routes = {
29322
29480
  user_identity_id?: string | undefined;
29323
29481
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
29324
29482
  connected_account_id: string;
29483
+ /** ID of the credential pool to which the credential belongs. */
29325
29484
  acs_credential_pool_id?: string | undefined;
29326
29485
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29327
29486
  acs_system_id: string;
@@ -29442,6 +29601,7 @@ export type Routes = {
29442
29601
  /** Endpoint ID in the Vostio access system. */
29443
29602
  endpoint_id?: string | undefined;
29444
29603
  } | undefined;
29604
+ /** Indicates whether Seam manages the credential. */
29445
29605
  is_managed: true;
29446
29606
  } | {
29447
29607
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -29452,6 +29612,7 @@ export type Routes = {
29452
29612
  user_identity_id?: string | undefined;
29453
29613
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
29454
29614
  connected_account_id: string;
29615
+ /** ID of the credential pool to which the credential belongs. */
29455
29616
  acs_credential_pool_id?: string | undefined;
29456
29617
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29457
29618
  acs_system_id: string;
@@ -29649,6 +29810,7 @@ export type Routes = {
29649
29810
  user_identity_id?: string | undefined;
29650
29811
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
29651
29812
  connected_account_id: string;
29813
+ /** ID of the credential pool to which the credential belongs. */
29652
29814
  acs_credential_pool_id?: string | undefined;
29653
29815
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29654
29816
  acs_system_id: string;
@@ -29769,6 +29931,7 @@ export type Routes = {
29769
29931
  /** Endpoint ID in the Vostio access system. */
29770
29932
  endpoint_id?: string | undefined;
29771
29933
  } | undefined;
29934
+ /** Indicates whether Seam manages the credential. */
29772
29935
  is_managed: true;
29773
29936
  } | {
29774
29937
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -29779,6 +29942,7 @@ export type Routes = {
29779
29942
  user_identity_id?: string | undefined;
29780
29943
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
29781
29944
  connected_account_id: string;
29945
+ /** ID of the credential pool to which the credential belongs. */
29782
29946
  acs_credential_pool_id?: string | undefined;
29783
29947
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29784
29948
  acs_system_id: string;
@@ -29988,6 +30152,7 @@ export type Routes = {
29988
30152
  user_identity_id?: string | undefined;
29989
30153
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
29990
30154
  connected_account_id: string;
30155
+ /** ID of the credential pool to which the credential belongs. */
29991
30156
  acs_credential_pool_id?: string | undefined;
29992
30157
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29993
30158
  acs_system_id: string;
@@ -30108,6 +30273,7 @@ export type Routes = {
30108
30273
  /** Endpoint ID in the Vostio access system. */
30109
30274
  endpoint_id?: string | undefined;
30110
30275
  } | undefined;
30276
+ /** Indicates whether Seam manages the credential. */
30111
30277
  is_managed: true;
30112
30278
  };
30113
30279
  } | {
@@ -31373,6 +31539,7 @@ export type Routes = {
31373
31539
  user_identity_id?: string | undefined;
31374
31540
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
31375
31541
  connected_account_id: string;
31542
+ /** ID of the credential pool to which the credential belongs. */
31376
31543
  acs_credential_pool_id?: string | undefined;
31377
31544
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31378
31545
  acs_system_id: string;
@@ -31493,6 +31660,7 @@ export type Routes = {
31493
31660
  /** Endpoint ID in the Vostio access system. */
31494
31661
  endpoint_id?: string | undefined;
31495
31662
  } | undefined;
31663
+ /** Indicates whether Seam manages the credential. */
31496
31664
  is_managed: true;
31497
31665
  }[];
31498
31666
  };
@@ -31616,6 +31784,7 @@ export type Routes = {
31616
31784
  acs_credential_on_encoder: {
31617
31785
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
31618
31786
  created_at: string | null;
31787
+ /** Indicates whether the credential has been issued (encoded onto a card). */
31619
31788
  is_issued: boolean | null;
31620
31789
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
31621
31790
  starts_at: string | null;
@@ -31661,6 +31830,7 @@ export type Routes = {
31661
31830
  user_identity_id?: string | undefined;
31662
31831
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
31663
31832
  connected_account_id: string;
31833
+ /** ID of the credential pool to which the credential belongs. */
31664
31834
  acs_credential_pool_id?: string | undefined;
31665
31835
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31666
31836
  acs_system_id: string;
@@ -31781,6 +31951,7 @@ export type Routes = {
31781
31951
  /** Endpoint ID in the Vostio access system. */
31782
31952
  endpoint_id?: string | undefined;
31783
31953
  } | undefined;
31954
+ /** Indicates whether Seam manages the credential. */
31784
31955
  is_managed: true;
31785
31956
  } | {
31786
31957
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -31791,6 +31962,7 @@ export type Routes = {
31791
31962
  user_identity_id?: string | undefined;
31792
31963
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
31793
31964
  connected_account_id: string;
31965
+ /** ID of the credential pool to which the credential belongs. */
31794
31966
  acs_credential_pool_id?: string | undefined;
31795
31967
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31796
31968
  acs_system_id: string;
@@ -31988,6 +32160,7 @@ export type Routes = {
31988
32160
  user_identity_id?: string | undefined;
31989
32161
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
31990
32162
  connected_account_id: string;
32163
+ /** ID of the credential pool to which the credential belongs. */
31991
32164
  acs_credential_pool_id?: string | undefined;
31992
32165
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31993
32166
  acs_system_id: string;
@@ -32108,6 +32281,7 @@ export type Routes = {
32108
32281
  /** Endpoint ID in the Vostio access system. */
32109
32282
  endpoint_id?: string | undefined;
32110
32283
  } | undefined;
32284
+ /** Indicates whether Seam manages the credential. */
32111
32285
  is_managed: true;
32112
32286
  } | {
32113
32287
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -32118,6 +32292,7 @@ export type Routes = {
32118
32292
  user_identity_id?: string | undefined;
32119
32293
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
32120
32294
  connected_account_id: string;
32295
+ /** ID of the credential pool to which the credential belongs. */
32121
32296
  acs_credential_pool_id?: string | undefined;
32122
32297
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
32123
32298
  acs_system_id: string;
@@ -32327,6 +32502,7 @@ export type Routes = {
32327
32502
  user_identity_id?: string | undefined;
32328
32503
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
32329
32504
  connected_account_id: string;
32505
+ /** ID of the credential pool to which the credential belongs. */
32330
32506
  acs_credential_pool_id?: string | undefined;
32331
32507
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
32332
32508
  acs_system_id: string;
@@ -32447,6 +32623,7 @@ export type Routes = {
32447
32623
  /** Endpoint ID in the Vostio access system. */
32448
32624
  endpoint_id?: string | undefined;
32449
32625
  } | undefined;
32626
+ /** Indicates whether Seam manages the credential. */
32450
32627
  is_managed: true;
32451
32628
  };
32452
32629
  } | {
@@ -33192,7 +33369,9 @@ export type Routes = {
33192
33369
  default_credential_manager_acs_system_id?: (string | null) | undefined;
33193
33370
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33194
33371
  acs_system_id: string;
33372
+ /** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33195
33373
  acs_user_count?: number | undefined;
33374
+ /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33196
33375
  acs_access_group_count?: number | undefined;
33197
33376
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
33198
33377
  external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
@@ -33200,6 +33379,7 @@ export type Routes = {
33200
33379
  external_type_display_name?: string | undefined;
33201
33380
  /** Indicates whether the `acs_system` is a credential manager. */
33202
33381
  is_credential_manager: boolean;
33382
+ /** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33203
33383
  visionline_metadata?: {
33204
33384
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
33205
33385
  mobile_access_uuid: string;
@@ -33214,6 +33394,7 @@ export type Routes = {
33214
33394
  /**
33215
33395
  * @deprecated Use `external_type_display_name`.*/
33216
33396
  system_type_display_name?: string | undefined;
33397
+ /** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33217
33398
  location: {
33218
33399
  /** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
33219
33400
  time_zone: string | null;
@@ -33248,6 +33429,7 @@ export type Routes = {
33248
33429
  message: string;
33249
33430
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
33250
33431
  error_code: 'bridge_disconnected';
33432
+ /** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
33251
33433
  is_bridge_error?: boolean | undefined;
33252
33434
  } | {
33253
33435
  /** Date and time at which Seam created the error. */
@@ -33342,7 +33524,9 @@ export type Routes = {
33342
33524
  default_credential_manager_acs_system_id?: (string | null) | undefined;
33343
33525
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33344
33526
  acs_system_id: string;
33527
+ /** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33345
33528
  acs_user_count?: number | undefined;
33529
+ /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33346
33530
  acs_access_group_count?: number | undefined;
33347
33531
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
33348
33532
  external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
@@ -33350,6 +33534,7 @@ export type Routes = {
33350
33534
  external_type_display_name?: string | undefined;
33351
33535
  /** Indicates whether the `acs_system` is a credential manager. */
33352
33536
  is_credential_manager: boolean;
33537
+ /** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33353
33538
  visionline_metadata?: {
33354
33539
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
33355
33540
  mobile_access_uuid: string;
@@ -33364,6 +33549,7 @@ export type Routes = {
33364
33549
  /**
33365
33550
  * @deprecated Use `external_type_display_name`.*/
33366
33551
  system_type_display_name?: string | undefined;
33552
+ /** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33367
33553
  location: {
33368
33554
  /** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
33369
33555
  time_zone: string | null;
@@ -33398,6 +33584,7 @@ export type Routes = {
33398
33584
  message: string;
33399
33585
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
33400
33586
  error_code: 'bridge_disconnected';
33587
+ /** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
33401
33588
  is_bridge_error?: boolean | undefined;
33402
33589
  } | {
33403
33590
  /** Date and time at which Seam created the error. */
@@ -33488,7 +33675,9 @@ export type Routes = {
33488
33675
  default_credential_manager_acs_system_id?: (string | null) | undefined;
33489
33676
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33490
33677
  acs_system_id: string;
33678
+ /** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33491
33679
  acs_user_count?: number | undefined;
33680
+ /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33492
33681
  acs_access_group_count?: number | undefined;
33493
33682
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
33494
33683
  external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
@@ -33496,6 +33685,7 @@ export type Routes = {
33496
33685
  external_type_display_name?: string | undefined;
33497
33686
  /** Indicates whether the `acs_system` is a credential manager. */
33498
33687
  is_credential_manager: boolean;
33688
+ /** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33499
33689
  visionline_metadata?: {
33500
33690
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
33501
33691
  mobile_access_uuid: string;
@@ -33510,6 +33700,7 @@ export type Routes = {
33510
33700
  /**
33511
33701
  * @deprecated Use `external_type_display_name`.*/
33512
33702
  system_type_display_name?: string | undefined;
33703
+ /** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
33513
33704
  location: {
33514
33705
  /** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
33515
33706
  time_zone: string | null;
@@ -33544,6 +33735,7 @@ export type Routes = {
33544
33735
  message: string;
33545
33736
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
33546
33737
  error_code: 'bridge_disconnected';
33738
+ /** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
33547
33739
  is_bridge_error?: boolean | undefined;
33548
33740
  } | {
33549
33741
  /** Date and time at which Seam created the error. */
@@ -33710,6 +33902,7 @@ export type Routes = {
33710
33902
  acs_user_id: string;
33711
33903
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
33712
33904
  acs_system_id: string;
33905
+ /** ID of the HID access control system associated with the user. */
33713
33906
  hid_acs_system_id?: string | undefined;
33714
33907
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
33715
33908
  workspace_id: string;
@@ -33955,6 +34148,7 @@ export type Routes = {
33955
34148
  email_address?: string | undefined;
33956
34149
  /** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
33957
34150
  phone_number?: string | undefined;
34151
+ /** Indicates whether Seam manages the access system user. */
33958
34152
  is_managed: true;
33959
34153
  };
33960
34154
  };
@@ -34002,6 +34196,7 @@ export type Routes = {
34002
34196
  acs_user_id: string;
34003
34197
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
34004
34198
  acs_system_id: string;
34199
+ /** ID of the HID access control system associated with the user. */
34005
34200
  hid_acs_system_id?: string | undefined;
34006
34201
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
34007
34202
  workspace_id: string;
@@ -34247,6 +34442,7 @@ export type Routes = {
34247
34442
  email_address?: string | undefined;
34248
34443
  /** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
34249
34444
  phone_number?: string | undefined;
34445
+ /** Indicates whether Seam manages the access system user. */
34250
34446
  is_managed: true;
34251
34447
  };
34252
34448
  };
@@ -34282,6 +34478,7 @@ export type Routes = {
34282
34478
  acs_user_id: string;
34283
34479
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
34284
34480
  acs_system_id: string;
34481
+ /** ID of the HID access control system associated with the user. */
34285
34482
  hid_acs_system_id?: string | undefined;
34286
34483
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
34287
34484
  workspace_id: string;
@@ -34527,6 +34724,7 @@ export type Routes = {
34527
34724
  email_address?: string | undefined;
34528
34725
  /** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
34529
34726
  phone_number?: string | undefined;
34727
+ /** Indicates whether Seam manages the access system user. */
34530
34728
  is_managed: true;
34531
34729
  }[];
34532
34730
  /** Information about the current page of results. */
@@ -34807,6 +35005,7 @@ export type Routes = {
34807
35005
  acs_user_id: string;
34808
35006
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
34809
35007
  acs_system_id: string;
35008
+ /** ID of the HID access control system associated with the user. */
34810
35009
  hid_acs_system_id?: string | undefined;
34811
35010
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
34812
35011
  workspace_id: string;
@@ -35083,6 +35282,7 @@ export type Routes = {
35083
35282
  acs_user_id: string;
35084
35283
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
35085
35284
  acs_system_id: string;
35285
+ /** ID of the HID access control system associated with the user. */
35086
35286
  hid_acs_system_id?: string | undefined;
35087
35287
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
35088
35288
  workspace_id: string;
@@ -35377,6 +35577,7 @@ export type Routes = {
35377
35577
  phone_number?: string | undefined;
35378
35578
  /** Email address of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
35379
35579
  email_address?: string | undefined;
35580
+ /** ID of the HID access control system associated with the user. */
35380
35581
  hid_acs_system_id?: string | undefined;
35381
35582
  };
35382
35583
  commonParams: {};
@@ -35500,6 +35701,7 @@ export type Routes = {
35500
35701
  acs_credential_on_encoder: {
35501
35702
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
35502
35703
  created_at: string | null;
35704
+ /** Indicates whether the credential has been issued (encoded onto a card). */
35503
35705
  is_issued: boolean | null;
35504
35706
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
35505
35707
  starts_at: string | null;
@@ -35545,6 +35747,7 @@ export type Routes = {
35545
35747
  user_identity_id?: string | undefined;
35546
35748
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
35547
35749
  connected_account_id: string;
35750
+ /** ID of the credential pool to which the credential belongs. */
35548
35751
  acs_credential_pool_id?: string | undefined;
35549
35752
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
35550
35753
  acs_system_id: string;
@@ -35665,6 +35868,7 @@ export type Routes = {
35665
35868
  /** Endpoint ID in the Vostio access system. */
35666
35869
  endpoint_id?: string | undefined;
35667
35870
  } | undefined;
35871
+ /** Indicates whether Seam manages the credential. */
35668
35872
  is_managed: true;
35669
35873
  } | {
35670
35874
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -35675,6 +35879,7 @@ export type Routes = {
35675
35879
  user_identity_id?: string | undefined;
35676
35880
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
35677
35881
  connected_account_id: string;
35882
+ /** ID of the credential pool to which the credential belongs. */
35678
35883
  acs_credential_pool_id?: string | undefined;
35679
35884
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
35680
35885
  acs_system_id: string;
@@ -35872,6 +36077,7 @@ export type Routes = {
35872
36077
  user_identity_id?: string | undefined;
35873
36078
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
35874
36079
  connected_account_id: string;
36080
+ /** ID of the credential pool to which the credential belongs. */
35875
36081
  acs_credential_pool_id?: string | undefined;
35876
36082
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
35877
36083
  acs_system_id: string;
@@ -35992,6 +36198,7 @@ export type Routes = {
35992
36198
  /** Endpoint ID in the Vostio access system. */
35993
36199
  endpoint_id?: string | undefined;
35994
36200
  } | undefined;
36201
+ /** Indicates whether Seam manages the credential. */
35995
36202
  is_managed: true;
35996
36203
  } | {
35997
36204
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -36002,6 +36209,7 @@ export type Routes = {
36002
36209
  user_identity_id?: string | undefined;
36003
36210
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
36004
36211
  connected_account_id: string;
36212
+ /** ID of the credential pool to which the credential belongs. */
36005
36213
  acs_credential_pool_id?: string | undefined;
36006
36214
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
36007
36215
  acs_system_id: string;
@@ -36211,6 +36419,7 @@ export type Routes = {
36211
36419
  user_identity_id?: string | undefined;
36212
36420
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
36213
36421
  connected_account_id: string;
36422
+ /** ID of the credential pool to which the credential belongs. */
36214
36423
  acs_credential_pool_id?: string | undefined;
36215
36424
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
36216
36425
  acs_system_id: string;
@@ -36331,6 +36540,7 @@ export type Routes = {
36331
36540
  /** Endpoint ID in the Vostio access system. */
36332
36541
  endpoint_id?: string | undefined;
36333
36542
  } | undefined;
36543
+ /** Indicates whether Seam manages the credential. */
36334
36544
  is_managed: true;
36335
36545
  };
36336
36546
  } | {
@@ -37172,6 +37382,7 @@ export type Routes = {
37172
37382
  acs_credential_on_encoder: {
37173
37383
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
37174
37384
  created_at: string | null;
37385
+ /** Indicates whether the credential has been issued (encoded onto a card). */
37175
37386
  is_issued: boolean | null;
37176
37387
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
37177
37388
  starts_at: string | null;
@@ -37217,6 +37428,7 @@ export type Routes = {
37217
37428
  user_identity_id?: string | undefined;
37218
37429
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37219
37430
  connected_account_id: string;
37431
+ /** ID of the credential pool to which the credential belongs. */
37220
37432
  acs_credential_pool_id?: string | undefined;
37221
37433
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37222
37434
  acs_system_id: string;
@@ -37337,6 +37549,7 @@ export type Routes = {
37337
37549
  /** Endpoint ID in the Vostio access system. */
37338
37550
  endpoint_id?: string | undefined;
37339
37551
  } | undefined;
37552
+ /** Indicates whether Seam manages the credential. */
37340
37553
  is_managed: true;
37341
37554
  } | {
37342
37555
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -37347,6 +37560,7 @@ export type Routes = {
37347
37560
  user_identity_id?: string | undefined;
37348
37561
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37349
37562
  connected_account_id: string;
37563
+ /** ID of the credential pool to which the credential belongs. */
37350
37564
  acs_credential_pool_id?: string | undefined;
37351
37565
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37352
37566
  acs_system_id: string;
@@ -37544,6 +37758,7 @@ export type Routes = {
37544
37758
  user_identity_id?: string | undefined;
37545
37759
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37546
37760
  connected_account_id: string;
37761
+ /** ID of the credential pool to which the credential belongs. */
37547
37762
  acs_credential_pool_id?: string | undefined;
37548
37763
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37549
37764
  acs_system_id: string;
@@ -37664,6 +37879,7 @@ export type Routes = {
37664
37879
  /** Endpoint ID in the Vostio access system. */
37665
37880
  endpoint_id?: string | undefined;
37666
37881
  } | undefined;
37882
+ /** Indicates whether Seam manages the credential. */
37667
37883
  is_managed: true;
37668
37884
  } | {
37669
37885
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -37674,6 +37890,7 @@ export type Routes = {
37674
37890
  user_identity_id?: string | undefined;
37675
37891
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37676
37892
  connected_account_id: string;
37893
+ /** ID of the credential pool to which the credential belongs. */
37677
37894
  acs_credential_pool_id?: string | undefined;
37678
37895
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37679
37896
  acs_system_id: string;
@@ -37883,6 +38100,7 @@ export type Routes = {
37883
38100
  user_identity_id?: string | undefined;
37884
38101
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37885
38102
  connected_account_id: string;
38103
+ /** ID of the credential pool to which the credential belongs. */
37886
38104
  acs_credential_pool_id?: string | undefined;
37887
38105
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37888
38106
  acs_system_id: string;
@@ -38003,6 +38221,7 @@ export type Routes = {
38003
38221
  /** Endpoint ID in the Vostio access system. */
38004
38222
  endpoint_id?: string | undefined;
38005
38223
  } | undefined;
38224
+ /** Indicates whether Seam manages the credential. */
38006
38225
  is_managed: true;
38007
38226
  };
38008
38227
  } | {
@@ -39147,6 +39366,7 @@ export type Routes = {
39147
39366
  connected_account_id: string | null;
39148
39367
  /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
39149
39368
  url: string;
39369
+ /** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
39150
39370
  device_selection_mode: 'none' | 'single' | 'multiple';
39151
39371
  /** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
39152
39372
  accepted_providers: string[];
@@ -39232,6 +39452,7 @@ export type Routes = {
39232
39452
  connected_account_id: string | null;
39233
39453
  /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
39234
39454
  url: string;
39455
+ /** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
39235
39456
  device_selection_mode: 'none' | 'single' | 'multiple';
39236
39457
  /** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
39237
39458
  accepted_providers: string[];
@@ -39305,6 +39526,7 @@ export type Routes = {
39305
39526
  connected_account_id: string | null;
39306
39527
  /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
39307
39528
  url: string;
39529
+ /** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
39308
39530
  device_selection_mode: 'none' | 'single' | 'multiple';
39309
39531
  /** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
39310
39532
  accepted_providers: string[];
@@ -42270,25 +42492,45 @@ export type Routes = {
42270
42492
  /** Image URL for the manufacturer logo. */
42271
42493
  image_url?: string | undefined;
42272
42494
  } | undefined;
42495
+ /** Indicates whether the device supports remote unlocking. */
42273
42496
  can_remotely_unlock?: boolean | undefined;
42497
+ /** Indicates whether the device supports remote locking. */
42274
42498
  can_remotely_lock?: boolean | undefined;
42499
+ /** Indicates whether the device supports programming offline access codes. */
42275
42500
  can_program_offline_access_codes?: boolean | undefined;
42501
+ /** Indicates whether the device supports programming online access codes. */
42276
42502
  can_program_online_access_codes?: boolean | undefined;
42503
+ /** Indicates whether the thermostat supports heating. */
42277
42504
  can_hvac_heat?: boolean | undefined;
42505
+ /** Indicates whether the thermostat supports cooling. */
42278
42506
  can_hvac_cool?: boolean | undefined;
42507
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
42279
42508
  can_hvac_heat_cool?: boolean | undefined;
42509
+ /** Indicates whether the thermostat can be turned off. */
42280
42510
  can_turn_off_hvac?: boolean | undefined;
42511
+ /** Indicates whether the device supports simulating removal in a sandbox. */
42281
42512
  can_simulate_removal?: boolean | undefined;
42513
+ /** Indicates whether the device supports simulating connection in a sandbox. */
42282
42514
  can_simulate_connection?: boolean | undefined;
42515
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
42283
42516
  can_simulate_disconnection?: boolean | undefined;
42517
+ /** Indicates whether the lock supports unlocking with an access code. */
42284
42518
  can_unlock_with_code?: boolean | undefined;
42519
+ /** Indicates whether the thermostat supports running climate programs. */
42285
42520
  can_run_thermostat_programs?: boolean | undefined;
42521
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
42286
42522
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
42523
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
42287
42524
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
42525
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
42288
42526
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
42527
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
42289
42528
  can_simulate_hub_connection?: boolean | undefined;
42529
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
42290
42530
  can_simulate_hub_disconnection?: boolean | undefined;
42531
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
42291
42532
  can_simulate_paid_subscription?: boolean | undefined;
42533
+ /** Indicates whether the lock supports configuring automatic locking. */
42292
42534
  can_configure_auto_lock?: boolean | undefined;
42293
42535
  };
42294
42536
  };
@@ -43692,25 +43934,45 @@ export type Routes = {
43692
43934
  /** Image URL for the manufacturer logo. */
43693
43935
  image_url?: string | undefined;
43694
43936
  } | undefined;
43937
+ /** Indicates whether the device supports remote unlocking. */
43695
43938
  can_remotely_unlock?: boolean | undefined;
43939
+ /** Indicates whether the device supports remote locking. */
43696
43940
  can_remotely_lock?: boolean | undefined;
43941
+ /** Indicates whether the device supports programming offline access codes. */
43697
43942
  can_program_offline_access_codes?: boolean | undefined;
43943
+ /** Indicates whether the device supports programming online access codes. */
43698
43944
  can_program_online_access_codes?: boolean | undefined;
43945
+ /** Indicates whether the thermostat supports heating. */
43699
43946
  can_hvac_heat?: boolean | undefined;
43947
+ /** Indicates whether the thermostat supports cooling. */
43700
43948
  can_hvac_cool?: boolean | undefined;
43949
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
43701
43950
  can_hvac_heat_cool?: boolean | undefined;
43951
+ /** Indicates whether the thermostat can be turned off. */
43702
43952
  can_turn_off_hvac?: boolean | undefined;
43953
+ /** Indicates whether the device supports simulating removal in a sandbox. */
43703
43954
  can_simulate_removal?: boolean | undefined;
43955
+ /** Indicates whether the device supports simulating connection in a sandbox. */
43704
43956
  can_simulate_connection?: boolean | undefined;
43957
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
43705
43958
  can_simulate_disconnection?: boolean | undefined;
43959
+ /** Indicates whether the lock supports unlocking with an access code. */
43706
43960
  can_unlock_with_code?: boolean | undefined;
43961
+ /** Indicates whether the thermostat supports running climate programs. */
43707
43962
  can_run_thermostat_programs?: boolean | undefined;
43963
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
43708
43964
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
43965
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
43709
43966
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
43967
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
43710
43968
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
43969
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
43711
43970
  can_simulate_hub_connection?: boolean | undefined;
43971
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
43712
43972
  can_simulate_hub_disconnection?: boolean | undefined;
43973
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
43713
43974
  can_simulate_paid_subscription?: boolean | undefined;
43975
+ /** Indicates whether the lock supports configuring automatic locking. */
43714
43976
  can_configure_auto_lock?: boolean | undefined;
43715
43977
  }[];
43716
43978
  /** Information about the current page of results. */
@@ -43737,29 +43999,53 @@ export type Routes = {
43737
43999
  formData: {};
43738
44000
  jsonResponse: {
43739
44001
  device_providers: {
44002
+ /** Name of the device provider. */
43740
44003
  device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
44004
+ /** Display name for the device provider. */
43741
44005
  display_name: string;
44006
+ /** Image URL for the device provider. */
43742
44007
  image_url: string;
44008
+ /** List of provider categories to which the device provider belongs, such as `stable`, `consumer_smartlocks`, `thermostats`, and so on. */
43743
44009
  provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors')[];
44010
+ /** Indicates whether the device supports remote unlocking. */
43744
44011
  can_remotely_unlock?: boolean | undefined;
44012
+ /** Indicates whether the device supports remote locking. */
43745
44013
  can_remotely_lock?: boolean | undefined;
44014
+ /** Indicates whether the device supports programming offline access codes. */
43746
44015
  can_program_offline_access_codes?: boolean | undefined;
44016
+ /** Indicates whether the device supports programming online access codes. */
43747
44017
  can_program_online_access_codes?: boolean | undefined;
44018
+ /** Indicates whether the thermostat supports heating. */
43748
44019
  can_hvac_heat?: boolean | undefined;
44020
+ /** Indicates whether the thermostat supports cooling. */
43749
44021
  can_hvac_cool?: boolean | undefined;
44022
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
43750
44023
  can_hvac_heat_cool?: boolean | undefined;
44024
+ /** Indicates whether the thermostat can be turned off. */
43751
44025
  can_turn_off_hvac?: boolean | undefined;
44026
+ /** Indicates whether the device supports simulating removal in a sandbox. */
43752
44027
  can_simulate_removal?: boolean | undefined;
44028
+ /** Indicates whether the device supports simulating connection in a sandbox. */
43753
44029
  can_simulate_connection?: boolean | undefined;
44030
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
43754
44031
  can_simulate_disconnection?: boolean | undefined;
44032
+ /** Indicates whether the lock supports unlocking with an access code. */
43755
44033
  can_unlock_with_code?: boolean | undefined;
44034
+ /** Indicates whether the thermostat supports running climate programs. */
43756
44035
  can_run_thermostat_programs?: boolean | undefined;
44036
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
43757
44037
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
44038
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
43758
44039
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
44040
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
43759
44041
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
44042
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
43760
44043
  can_simulate_hub_connection?: boolean | undefined;
44044
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
43761
44045
  can_simulate_hub_disconnection?: boolean | undefined;
44046
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
43762
44047
  can_simulate_paid_subscription?: boolean | undefined;
44048
+ /** Indicates whether the lock supports configuring automatic locking. */
43763
44049
  can_configure_auto_lock?: boolean | undefined;
43764
44050
  }[];
43765
44051
  };
@@ -44261,6 +44547,7 @@ export type Routes = {
44261
44547
  custom_metadata: {
44262
44548
  [x: string]: string | boolean;
44263
44549
  };
44550
+ /** Indicates that Seam does not manage the device. */
44264
44551
  is_managed: false;
44265
44552
  /** properties of the device. */
44266
44553
  properties: {
@@ -44332,25 +44619,45 @@ export type Routes = {
44332
44619
  accessory_keypad_supported?: boolean | undefined;
44333
44620
  };
44334
44621
  };
44622
+ /** Indicates whether the device supports remote unlocking. */
44335
44623
  can_remotely_unlock?: boolean | undefined;
44624
+ /** Indicates whether the device supports remote locking. */
44336
44625
  can_remotely_lock?: boolean | undefined;
44626
+ /** Indicates whether the device supports programming offline access codes. */
44337
44627
  can_program_offline_access_codes?: boolean | undefined;
44628
+ /** Indicates whether the device supports programming online access codes. */
44338
44629
  can_program_online_access_codes?: boolean | undefined;
44630
+ /** Indicates whether the thermostat supports heating. */
44339
44631
  can_hvac_heat?: boolean | undefined;
44632
+ /** Indicates whether the thermostat supports cooling. */
44340
44633
  can_hvac_cool?: boolean | undefined;
44634
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
44341
44635
  can_hvac_heat_cool?: boolean | undefined;
44636
+ /** Indicates whether the thermostat can be turned off. */
44342
44637
  can_turn_off_hvac?: boolean | undefined;
44638
+ /** Indicates whether the device supports simulating removal in a sandbox. */
44343
44639
  can_simulate_removal?: boolean | undefined;
44640
+ /** Indicates whether the device supports simulating connection in a sandbox. */
44344
44641
  can_simulate_connection?: boolean | undefined;
44642
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
44345
44643
  can_simulate_disconnection?: boolean | undefined;
44644
+ /** Indicates whether the lock supports unlocking with an access code. */
44346
44645
  can_unlock_with_code?: boolean | undefined;
44646
+ /** Indicates whether the thermostat supports running climate programs. */
44347
44647
  can_run_thermostat_programs?: boolean | undefined;
44648
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
44348
44649
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
44650
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
44349
44651
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
44652
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
44350
44653
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
44654
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
44351
44655
  can_simulate_hub_connection?: boolean | undefined;
44656
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
44352
44657
  can_simulate_hub_disconnection?: boolean | undefined;
44658
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
44353
44659
  can_simulate_paid_subscription?: boolean | undefined;
44660
+ /** Indicates whether the lock supports configuring automatic locking. */
44354
44661
  can_configure_auto_lock?: boolean | undefined;
44355
44662
  };
44356
44663
  };
@@ -44777,6 +45084,7 @@ export type Routes = {
44777
45084
  custom_metadata: {
44778
45085
  [x: string]: string | boolean;
44779
45086
  };
45087
+ /** Indicates that Seam does not manage the device. */
44780
45088
  is_managed: false;
44781
45089
  /** properties of the device. */
44782
45090
  properties: {
@@ -44848,25 +45156,45 @@ export type Routes = {
44848
45156
  accessory_keypad_supported?: boolean | undefined;
44849
45157
  };
44850
45158
  };
45159
+ /** Indicates whether the device supports remote unlocking. */
44851
45160
  can_remotely_unlock?: boolean | undefined;
45161
+ /** Indicates whether the device supports remote locking. */
44852
45162
  can_remotely_lock?: boolean | undefined;
45163
+ /** Indicates whether the device supports programming offline access codes. */
44853
45164
  can_program_offline_access_codes?: boolean | undefined;
45165
+ /** Indicates whether the device supports programming online access codes. */
44854
45166
  can_program_online_access_codes?: boolean | undefined;
45167
+ /** Indicates whether the thermostat supports heating. */
44855
45168
  can_hvac_heat?: boolean | undefined;
45169
+ /** Indicates whether the thermostat supports cooling. */
44856
45170
  can_hvac_cool?: boolean | undefined;
45171
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
44857
45172
  can_hvac_heat_cool?: boolean | undefined;
45173
+ /** Indicates whether the thermostat can be turned off. */
44858
45174
  can_turn_off_hvac?: boolean | undefined;
45175
+ /** Indicates whether the device supports simulating removal in a sandbox. */
44859
45176
  can_simulate_removal?: boolean | undefined;
45177
+ /** Indicates whether the device supports simulating connection in a sandbox. */
44860
45178
  can_simulate_connection?: boolean | undefined;
45179
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
44861
45180
  can_simulate_disconnection?: boolean | undefined;
45181
+ /** Indicates whether the lock supports unlocking with an access code. */
44862
45182
  can_unlock_with_code?: boolean | undefined;
45183
+ /** Indicates whether the thermostat supports running climate programs. */
44863
45184
  can_run_thermostat_programs?: boolean | undefined;
45185
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
44864
45186
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
45187
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
44865
45188
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
45189
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
44866
45190
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
45191
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
44867
45192
  can_simulate_hub_connection?: boolean | undefined;
45193
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
44868
45194
  can_simulate_hub_disconnection?: boolean | undefined;
45195
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
44869
45196
  can_simulate_paid_subscription?: boolean | undefined;
45197
+ /** Indicates whether the lock supports configuring automatic locking. */
44870
45198
  can_configure_auto_lock?: boolean | undefined;
44871
45199
  }[];
44872
45200
  /** Information about the current page of results. */
@@ -45600,6 +45928,7 @@ export type Routes = {
45600
45928
  [x: string]: string | boolean;
45601
45929
  } | undefined;
45602
45930
  event_type: 'access_code.backup_access_code_pulled';
45931
+ /** ID of the backup access code that was pulled from the pool. */
45603
45932
  backup_access_code_id: string;
45604
45933
  } | {
45605
45934
  /** ID of the event. */
@@ -46108,6 +46437,7 @@ export type Routes = {
46108
46437
  connected_account_id?: string | undefined;
46109
46438
  /** ID of the access system. */
46110
46439
  acs_system_id: string;
46440
+ /** ID of the affected access system user. */
46111
46441
  acs_user_id: string;
46112
46442
  event_type: 'acs_user.created';
46113
46443
  } | {
@@ -46123,6 +46453,7 @@ export type Routes = {
46123
46453
  connected_account_id?: string | undefined;
46124
46454
  /** ID of the access system. */
46125
46455
  acs_system_id: string;
46456
+ /** ID of the affected access system user. */
46126
46457
  acs_user_id: string;
46127
46458
  event_type: 'acs_user.deleted';
46128
46459
  } | {
@@ -46186,6 +46517,7 @@ export type Routes = {
46186
46517
  connected_account_id?: string | undefined;
46187
46518
  /** ID of the access system. */
46188
46519
  acs_system_id: string;
46520
+ /** ID of the affected entrance. */
46189
46521
  acs_entrance_id: string;
46190
46522
  event_type: 'acs_entrance.added';
46191
46523
  } | {
@@ -46201,6 +46533,7 @@ export type Routes = {
46201
46533
  connected_account_id?: string | undefined;
46202
46534
  /** ID of the access system. */
46203
46535
  acs_system_id: string;
46536
+ /** ID of the affected entrance. */
46204
46537
  acs_entrance_id: string;
46205
46538
  event_type: 'acs_entrance.removed';
46206
46539
  } | {
@@ -48571,6 +48904,7 @@ export type Routes = {
48571
48904
  [x: string]: string | boolean;
48572
48905
  } | undefined;
48573
48906
  event_type: 'access_code.backup_access_code_pulled';
48907
+ /** ID of the backup access code that was pulled from the pool. */
48574
48908
  backup_access_code_id: string;
48575
48909
  } | {
48576
48910
  /** ID of the event. */
@@ -49079,6 +49413,7 @@ export type Routes = {
49079
49413
  connected_account_id?: string | undefined;
49080
49414
  /** ID of the access system. */
49081
49415
  acs_system_id: string;
49416
+ /** ID of the affected access system user. */
49082
49417
  acs_user_id: string;
49083
49418
  event_type: 'acs_user.created';
49084
49419
  } | {
@@ -49094,6 +49429,7 @@ export type Routes = {
49094
49429
  connected_account_id?: string | undefined;
49095
49430
  /** ID of the access system. */
49096
49431
  acs_system_id: string;
49432
+ /** ID of the affected access system user. */
49097
49433
  acs_user_id: string;
49098
49434
  event_type: 'acs_user.deleted';
49099
49435
  } | {
@@ -49157,6 +49493,7 @@ export type Routes = {
49157
49493
  connected_account_id?: string | undefined;
49158
49494
  /** ID of the access system. */
49159
49495
  acs_system_id: string;
49496
+ /** ID of the affected entrance. */
49160
49497
  acs_entrance_id: string;
49161
49498
  event_type: 'acs_entrance.added';
49162
49499
  } | {
@@ -49172,6 +49509,7 @@ export type Routes = {
49172
49509
  connected_account_id?: string | undefined;
49173
49510
  /** ID of the access system. */
49174
49511
  acs_system_id: string;
49512
+ /** ID of the affected entrance. */
49175
49513
  acs_entrance_id: string;
49176
49514
  event_type: 'acs_entrance.removed';
49177
49515
  } | {
@@ -51039,6 +51377,7 @@ export type Routes = {
51039
51377
  acs_credential_on_encoder: {
51040
51378
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
51041
51379
  created_at: string | null;
51380
+ /** Indicates whether the credential has been issued (encoded onto a card). */
51042
51381
  is_issued: boolean | null;
51043
51382
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
51044
51383
  starts_at: string | null;
@@ -51084,6 +51423,7 @@ export type Routes = {
51084
51423
  user_identity_id?: string | undefined;
51085
51424
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51086
51425
  connected_account_id: string;
51426
+ /** ID of the credential pool to which the credential belongs. */
51087
51427
  acs_credential_pool_id?: string | undefined;
51088
51428
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51089
51429
  acs_system_id: string;
@@ -51204,6 +51544,7 @@ export type Routes = {
51204
51544
  /** Endpoint ID in the Vostio access system. */
51205
51545
  endpoint_id?: string | undefined;
51206
51546
  } | undefined;
51547
+ /** Indicates whether Seam manages the credential. */
51207
51548
  is_managed: true;
51208
51549
  } | {
51209
51550
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -51214,6 +51555,7 @@ export type Routes = {
51214
51555
  user_identity_id?: string | undefined;
51215
51556
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51216
51557
  connected_account_id: string;
51558
+ /** ID of the credential pool to which the credential belongs. */
51217
51559
  acs_credential_pool_id?: string | undefined;
51218
51560
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51219
51561
  acs_system_id: string;
@@ -51411,6 +51753,7 @@ export type Routes = {
51411
51753
  user_identity_id?: string | undefined;
51412
51754
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51413
51755
  connected_account_id: string;
51756
+ /** ID of the credential pool to which the credential belongs. */
51414
51757
  acs_credential_pool_id?: string | undefined;
51415
51758
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51416
51759
  acs_system_id: string;
@@ -51531,6 +51874,7 @@ export type Routes = {
51531
51874
  /** Endpoint ID in the Vostio access system. */
51532
51875
  endpoint_id?: string | undefined;
51533
51876
  } | undefined;
51877
+ /** Indicates whether Seam manages the credential. */
51534
51878
  is_managed: true;
51535
51879
  } | {
51536
51880
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -51541,6 +51885,7 @@ export type Routes = {
51541
51885
  user_identity_id?: string | undefined;
51542
51886
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51543
51887
  connected_account_id: string;
51888
+ /** ID of the credential pool to which the credential belongs. */
51544
51889
  acs_credential_pool_id?: string | undefined;
51545
51890
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51546
51891
  acs_system_id: string;
@@ -51750,6 +52095,7 @@ export type Routes = {
51750
52095
  user_identity_id?: string | undefined;
51751
52096
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51752
52097
  connected_account_id: string;
52098
+ /** ID of the credential pool to which the credential belongs. */
51753
52099
  acs_credential_pool_id?: string | undefined;
51754
52100
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51755
52101
  acs_system_id: string;
@@ -51870,6 +52216,7 @@ export type Routes = {
51870
52216
  /** Endpoint ID in the Vostio access system. */
51871
52217
  endpoint_id?: string | undefined;
51872
52218
  } | undefined;
52219
+ /** Indicates whether Seam manages the credential. */
51873
52220
  is_managed: true;
51874
52221
  };
51875
52222
  } | {
@@ -53958,25 +54305,45 @@ export type Routes = {
53958
54305
  /** Image URL for the manufacturer logo. */
53959
54306
  image_url?: string | undefined;
53960
54307
  } | undefined;
54308
+ /** Indicates whether the device supports remote unlocking. */
53961
54309
  can_remotely_unlock?: boolean | undefined;
54310
+ /** Indicates whether the device supports remote locking. */
53962
54311
  can_remotely_lock?: boolean | undefined;
54312
+ /** Indicates whether the device supports programming offline access codes. */
53963
54313
  can_program_offline_access_codes?: boolean | undefined;
54314
+ /** Indicates whether the device supports programming online access codes. */
53964
54315
  can_program_online_access_codes?: boolean | undefined;
54316
+ /** Indicates whether the thermostat supports heating. */
53965
54317
  can_hvac_heat?: boolean | undefined;
54318
+ /** Indicates whether the thermostat supports cooling. */
53966
54319
  can_hvac_cool?: boolean | undefined;
54320
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
53967
54321
  can_hvac_heat_cool?: boolean | undefined;
54322
+ /** Indicates whether the thermostat can be turned off. */
53968
54323
  can_turn_off_hvac?: boolean | undefined;
54324
+ /** Indicates whether the device supports simulating removal in a sandbox. */
53969
54325
  can_simulate_removal?: boolean | undefined;
54326
+ /** Indicates whether the device supports simulating connection in a sandbox. */
53970
54327
  can_simulate_connection?: boolean | undefined;
54328
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
53971
54329
  can_simulate_disconnection?: boolean | undefined;
54330
+ /** Indicates whether the lock supports unlocking with an access code. */
53972
54331
  can_unlock_with_code?: boolean | undefined;
54332
+ /** Indicates whether the thermostat supports running climate programs. */
53973
54333
  can_run_thermostat_programs?: boolean | undefined;
54334
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
53974
54335
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
54336
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
53975
54337
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
54338
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
53976
54339
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
54340
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
53977
54341
  can_simulate_hub_connection?: boolean | undefined;
54342
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
53978
54343
  can_simulate_hub_disconnection?: boolean | undefined;
54344
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
53979
54345
  can_simulate_paid_subscription?: boolean | undefined;
54346
+ /** Indicates whether the lock supports configuring automatic locking. */
53980
54347
  can_configure_auto_lock?: boolean | undefined;
53981
54348
  };
53982
54349
  /** Represents a [device](https://docs.seam.co/core-concepts/devices) that has been connected to Seam. */
@@ -55330,25 +55697,45 @@ export type Routes = {
55330
55697
  /** Image URL for the manufacturer logo. */
55331
55698
  image_url?: string | undefined;
55332
55699
  } | undefined;
55700
+ /** Indicates whether the device supports remote unlocking. */
55333
55701
  can_remotely_unlock?: boolean | undefined;
55702
+ /** Indicates whether the device supports remote locking. */
55334
55703
  can_remotely_lock?: boolean | undefined;
55704
+ /** Indicates whether the device supports programming offline access codes. */
55335
55705
  can_program_offline_access_codes?: boolean | undefined;
55706
+ /** Indicates whether the device supports programming online access codes. */
55336
55707
  can_program_online_access_codes?: boolean | undefined;
55708
+ /** Indicates whether the thermostat supports heating. */
55337
55709
  can_hvac_heat?: boolean | undefined;
55710
+ /** Indicates whether the thermostat supports cooling. */
55338
55711
  can_hvac_cool?: boolean | undefined;
55712
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
55339
55713
  can_hvac_heat_cool?: boolean | undefined;
55714
+ /** Indicates whether the thermostat can be turned off. */
55340
55715
  can_turn_off_hvac?: boolean | undefined;
55716
+ /** Indicates whether the device supports simulating removal in a sandbox. */
55341
55717
  can_simulate_removal?: boolean | undefined;
55718
+ /** Indicates whether the device supports simulating connection in a sandbox. */
55342
55719
  can_simulate_connection?: boolean | undefined;
55720
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
55343
55721
  can_simulate_disconnection?: boolean | undefined;
55722
+ /** Indicates whether the lock supports unlocking with an access code. */
55344
55723
  can_unlock_with_code?: boolean | undefined;
55724
+ /** Indicates whether the thermostat supports running climate programs. */
55345
55725
  can_run_thermostat_programs?: boolean | undefined;
55726
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
55346
55727
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
55728
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
55347
55729
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
55730
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
55348
55731
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
55732
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
55349
55733
  can_simulate_hub_connection?: boolean | undefined;
55734
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
55350
55735
  can_simulate_hub_disconnection?: boolean | undefined;
55736
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
55351
55737
  can_simulate_paid_subscription?: boolean | undefined;
55738
+ /** Indicates whether the lock supports configuring automatic locking. */
55352
55739
  can_configure_auto_lock?: boolean | undefined;
55353
55740
  };
55354
55741
  };
@@ -56752,25 +57139,45 @@ export type Routes = {
56752
57139
  /** Image URL for the manufacturer logo. */
56753
57140
  image_url?: string | undefined;
56754
57141
  } | undefined;
57142
+ /** Indicates whether the device supports remote unlocking. */
56755
57143
  can_remotely_unlock?: boolean | undefined;
57144
+ /** Indicates whether the device supports remote locking. */
56756
57145
  can_remotely_lock?: boolean | undefined;
57146
+ /** Indicates whether the device supports programming offline access codes. */
56757
57147
  can_program_offline_access_codes?: boolean | undefined;
57148
+ /** Indicates whether the device supports programming online access codes. */
56758
57149
  can_program_online_access_codes?: boolean | undefined;
57150
+ /** Indicates whether the thermostat supports heating. */
56759
57151
  can_hvac_heat?: boolean | undefined;
57152
+ /** Indicates whether the thermostat supports cooling. */
56760
57153
  can_hvac_cool?: boolean | undefined;
57154
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
56761
57155
  can_hvac_heat_cool?: boolean | undefined;
57156
+ /** Indicates whether the thermostat can be turned off. */
56762
57157
  can_turn_off_hvac?: boolean | undefined;
57158
+ /** Indicates whether the device supports simulating removal in a sandbox. */
56763
57159
  can_simulate_removal?: boolean | undefined;
57160
+ /** Indicates whether the device supports simulating connection in a sandbox. */
56764
57161
  can_simulate_connection?: boolean | undefined;
57162
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
56765
57163
  can_simulate_disconnection?: boolean | undefined;
57164
+ /** Indicates whether the lock supports unlocking with an access code. */
56766
57165
  can_unlock_with_code?: boolean | undefined;
57166
+ /** Indicates whether the thermostat supports running climate programs. */
56767
57167
  can_run_thermostat_programs?: boolean | undefined;
57168
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
56768
57169
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
57170
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
56769
57171
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
57172
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
56770
57173
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
57174
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
56771
57175
  can_simulate_hub_connection?: boolean | undefined;
57176
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
56772
57177
  can_simulate_hub_disconnection?: boolean | undefined;
57178
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
56773
57179
  can_simulate_paid_subscription?: boolean | undefined;
57180
+ /** Indicates whether the lock supports configuring automatic locking. */
56774
57181
  can_configure_auto_lock?: boolean | undefined;
56775
57182
  }[];
56776
57183
  devices: {
@@ -58123,25 +58530,45 @@ export type Routes = {
58123
58530
  /** Image URL for the manufacturer logo. */
58124
58531
  image_url?: string | undefined;
58125
58532
  } | undefined;
58533
+ /** Indicates whether the device supports remote unlocking. */
58126
58534
  can_remotely_unlock?: boolean | undefined;
58535
+ /** Indicates whether the device supports remote locking. */
58127
58536
  can_remotely_lock?: boolean | undefined;
58537
+ /** Indicates whether the device supports programming offline access codes. */
58128
58538
  can_program_offline_access_codes?: boolean | undefined;
58539
+ /** Indicates whether the device supports programming online access codes. */
58129
58540
  can_program_online_access_codes?: boolean | undefined;
58541
+ /** Indicates whether the thermostat supports heating. */
58130
58542
  can_hvac_heat?: boolean | undefined;
58543
+ /** Indicates whether the thermostat supports cooling. */
58131
58544
  can_hvac_cool?: boolean | undefined;
58545
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
58132
58546
  can_hvac_heat_cool?: boolean | undefined;
58547
+ /** Indicates whether the thermostat can be turned off. */
58133
58548
  can_turn_off_hvac?: boolean | undefined;
58549
+ /** Indicates whether the device supports simulating removal in a sandbox. */
58134
58550
  can_simulate_removal?: boolean | undefined;
58551
+ /** Indicates whether the device supports simulating connection in a sandbox. */
58135
58552
  can_simulate_connection?: boolean | undefined;
58553
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
58136
58554
  can_simulate_disconnection?: boolean | undefined;
58555
+ /** Indicates whether the lock supports unlocking with an access code. */
58137
58556
  can_unlock_with_code?: boolean | undefined;
58557
+ /** Indicates whether the thermostat supports running climate programs. */
58138
58558
  can_run_thermostat_programs?: boolean | undefined;
58559
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
58139
58560
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
58561
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
58140
58562
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
58563
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
58141
58564
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
58565
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
58142
58566
  can_simulate_hub_connection?: boolean | undefined;
58567
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
58143
58568
  can_simulate_hub_disconnection?: boolean | undefined;
58569
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
58144
58570
  can_simulate_paid_subscription?: boolean | undefined;
58571
+ /** Indicates whether the lock supports configuring automatic locking. */
58145
58572
  can_configure_auto_lock?: boolean | undefined;
58146
58573
  }[];
58147
58574
  };
@@ -58265,6 +58692,7 @@ export type Routes = {
58265
58692
  acs_credential_on_encoder: {
58266
58693
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
58267
58694
  created_at: string | null;
58695
+ /** Indicates whether the credential has been issued (encoded onto a card). */
58268
58696
  is_issued: boolean | null;
58269
58697
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
58270
58698
  starts_at: string | null;
@@ -58310,6 +58738,7 @@ export type Routes = {
58310
58738
  user_identity_id?: string | undefined;
58311
58739
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
58312
58740
  connected_account_id: string;
58741
+ /** ID of the credential pool to which the credential belongs. */
58313
58742
  acs_credential_pool_id?: string | undefined;
58314
58743
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
58315
58744
  acs_system_id: string;
@@ -58430,6 +58859,7 @@ export type Routes = {
58430
58859
  /** Endpoint ID in the Vostio access system. */
58431
58860
  endpoint_id?: string | undefined;
58432
58861
  } | undefined;
58862
+ /** Indicates whether Seam manages the credential. */
58433
58863
  is_managed: true;
58434
58864
  } | {
58435
58865
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -58440,6 +58870,7 @@ export type Routes = {
58440
58870
  user_identity_id?: string | undefined;
58441
58871
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
58442
58872
  connected_account_id: string;
58873
+ /** ID of the credential pool to which the credential belongs. */
58443
58874
  acs_credential_pool_id?: string | undefined;
58444
58875
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
58445
58876
  acs_system_id: string;
@@ -58637,6 +59068,7 @@ export type Routes = {
58637
59068
  user_identity_id?: string | undefined;
58638
59069
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
58639
59070
  connected_account_id: string;
59071
+ /** ID of the credential pool to which the credential belongs. */
58640
59072
  acs_credential_pool_id?: string | undefined;
58641
59073
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
58642
59074
  acs_system_id: string;
@@ -58757,6 +59189,7 @@ export type Routes = {
58757
59189
  /** Endpoint ID in the Vostio access system. */
58758
59190
  endpoint_id?: string | undefined;
58759
59191
  } | undefined;
59192
+ /** Indicates whether Seam manages the credential. */
58760
59193
  is_managed: true;
58761
59194
  } | {
58762
59195
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -58767,6 +59200,7 @@ export type Routes = {
58767
59200
  user_identity_id?: string | undefined;
58768
59201
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
58769
59202
  connected_account_id: string;
59203
+ /** ID of the credential pool to which the credential belongs. */
58770
59204
  acs_credential_pool_id?: string | undefined;
58771
59205
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
58772
59206
  acs_system_id: string;
@@ -58976,6 +59410,7 @@ export type Routes = {
58976
59410
  user_identity_id?: string | undefined;
58977
59411
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
58978
59412
  connected_account_id: string;
59413
+ /** ID of the credential pool to which the credential belongs. */
58979
59414
  acs_credential_pool_id?: string | undefined;
58980
59415
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
58981
59416
  acs_system_id: string;
@@ -59096,6 +59531,7 @@ export type Routes = {
59096
59531
  /** Endpoint ID in the Vostio access system. */
59097
59532
  endpoint_id?: string | undefined;
59098
59533
  } | undefined;
59534
+ /** Indicates whether Seam manages the credential. */
59099
59535
  is_managed: true;
59100
59536
  };
59101
59537
  } | {
@@ -59938,6 +60374,7 @@ export type Routes = {
59938
60374
  acs_credential_on_encoder: {
59939
60375
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
59940
60376
  created_at: string | null;
60377
+ /** Indicates whether the credential has been issued (encoded onto a card). */
59941
60378
  is_issued: boolean | null;
59942
60379
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
59943
60380
  starts_at: string | null;
@@ -59983,6 +60420,7 @@ export type Routes = {
59983
60420
  user_identity_id?: string | undefined;
59984
60421
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
59985
60422
  connected_account_id: string;
60423
+ /** ID of the credential pool to which the credential belongs. */
59986
60424
  acs_credential_pool_id?: string | undefined;
59987
60425
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59988
60426
  acs_system_id: string;
@@ -60103,6 +60541,7 @@ export type Routes = {
60103
60541
  /** Endpoint ID in the Vostio access system. */
60104
60542
  endpoint_id?: string | undefined;
60105
60543
  } | undefined;
60544
+ /** Indicates whether Seam manages the credential. */
60106
60545
  is_managed: true;
60107
60546
  } | {
60108
60547
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -60113,6 +60552,7 @@ export type Routes = {
60113
60552
  user_identity_id?: string | undefined;
60114
60553
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
60115
60554
  connected_account_id: string;
60555
+ /** ID of the credential pool to which the credential belongs. */
60116
60556
  acs_credential_pool_id?: string | undefined;
60117
60557
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
60118
60558
  acs_system_id: string;
@@ -60310,6 +60750,7 @@ export type Routes = {
60310
60750
  user_identity_id?: string | undefined;
60311
60751
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
60312
60752
  connected_account_id: string;
60753
+ /** ID of the credential pool to which the credential belongs. */
60313
60754
  acs_credential_pool_id?: string | undefined;
60314
60755
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
60315
60756
  acs_system_id: string;
@@ -60430,6 +60871,7 @@ export type Routes = {
60430
60871
  /** Endpoint ID in the Vostio access system. */
60431
60872
  endpoint_id?: string | undefined;
60432
60873
  } | undefined;
60874
+ /** Indicates whether Seam manages the credential. */
60433
60875
  is_managed: true;
60434
60876
  } | {
60435
60877
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -60440,6 +60882,7 @@ export type Routes = {
60440
60882
  user_identity_id?: string | undefined;
60441
60883
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
60442
60884
  connected_account_id: string;
60885
+ /** ID of the credential pool to which the credential belongs. */
60443
60886
  acs_credential_pool_id?: string | undefined;
60444
60887
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
60445
60888
  acs_system_id: string;
@@ -60649,6 +61092,7 @@ export type Routes = {
60649
61092
  user_identity_id?: string | undefined;
60650
61093
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
60651
61094
  connected_account_id: string;
61095
+ /** ID of the credential pool to which the credential belongs. */
60652
61096
  acs_credential_pool_id?: string | undefined;
60653
61097
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
60654
61098
  acs_system_id: string;
@@ -60769,6 +61213,7 @@ export type Routes = {
60769
61213
  /** Endpoint ID in the Vostio access system. */
60770
61214
  endpoint_id?: string | undefined;
60771
61215
  } | undefined;
61216
+ /** Indicates whether Seam manages the credential. */
60772
61217
  is_managed: true;
60773
61218
  };
60774
61219
  } | {
@@ -61609,6 +62054,7 @@ export type Routes = {
61609
62054
  acs_credential_on_encoder: {
61610
62055
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
61611
62056
  created_at: string | null;
62057
+ /** Indicates whether the credential has been issued (encoded onto a card). */
61612
62058
  is_issued: boolean | null;
61613
62059
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
61614
62060
  starts_at: string | null;
@@ -61654,6 +62100,7 @@ export type Routes = {
61654
62100
  user_identity_id?: string | undefined;
61655
62101
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61656
62102
  connected_account_id: string;
62103
+ /** ID of the credential pool to which the credential belongs. */
61657
62104
  acs_credential_pool_id?: string | undefined;
61658
62105
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61659
62106
  acs_system_id: string;
@@ -61774,6 +62221,7 @@ export type Routes = {
61774
62221
  /** Endpoint ID in the Vostio access system. */
61775
62222
  endpoint_id?: string | undefined;
61776
62223
  } | undefined;
62224
+ /** Indicates whether Seam manages the credential. */
61777
62225
  is_managed: true;
61778
62226
  } | {
61779
62227
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -61784,6 +62232,7 @@ export type Routes = {
61784
62232
  user_identity_id?: string | undefined;
61785
62233
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61786
62234
  connected_account_id: string;
62235
+ /** ID of the credential pool to which the credential belongs. */
61787
62236
  acs_credential_pool_id?: string | undefined;
61788
62237
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61789
62238
  acs_system_id: string;
@@ -61981,6 +62430,7 @@ export type Routes = {
61981
62430
  user_identity_id?: string | undefined;
61982
62431
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61983
62432
  connected_account_id: string;
62433
+ /** ID of the credential pool to which the credential belongs. */
61984
62434
  acs_credential_pool_id?: string | undefined;
61985
62435
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61986
62436
  acs_system_id: string;
@@ -62101,6 +62551,7 @@ export type Routes = {
62101
62551
  /** Endpoint ID in the Vostio access system. */
62102
62552
  endpoint_id?: string | undefined;
62103
62553
  } | undefined;
62554
+ /** Indicates whether Seam manages the credential. */
62104
62555
  is_managed: true;
62105
62556
  } | {
62106
62557
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -62111,6 +62562,7 @@ export type Routes = {
62111
62562
  user_identity_id?: string | undefined;
62112
62563
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
62113
62564
  connected_account_id: string;
62565
+ /** ID of the credential pool to which the credential belongs. */
62114
62566
  acs_credential_pool_id?: string | undefined;
62115
62567
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
62116
62568
  acs_system_id: string;
@@ -62320,6 +62772,7 @@ export type Routes = {
62320
62772
  user_identity_id?: string | undefined;
62321
62773
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
62322
62774
  connected_account_id: string;
62775
+ /** ID of the credential pool to which the credential belongs. */
62323
62776
  acs_credential_pool_id?: string | undefined;
62324
62777
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
62325
62778
  acs_system_id: string;
@@ -62440,6 +62893,7 @@ export type Routes = {
62440
62893
  /** Endpoint ID in the Vostio access system. */
62441
62894
  endpoint_id?: string | undefined;
62442
62895
  } | undefined;
62896
+ /** Indicates whether Seam manages the credential. */
62443
62897
  is_managed: true;
62444
62898
  };
62445
62899
  } | {
@@ -63282,6 +63736,7 @@ export type Routes = {
63282
63736
  acs_credential_on_encoder: {
63283
63737
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
63284
63738
  created_at: string | null;
63739
+ /** Indicates whether the credential has been issued (encoded onto a card). */
63285
63740
  is_issued: boolean | null;
63286
63741
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
63287
63742
  starts_at: string | null;
@@ -63327,6 +63782,7 @@ export type Routes = {
63327
63782
  user_identity_id?: string | undefined;
63328
63783
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
63329
63784
  connected_account_id: string;
63785
+ /** ID of the credential pool to which the credential belongs. */
63330
63786
  acs_credential_pool_id?: string | undefined;
63331
63787
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63332
63788
  acs_system_id: string;
@@ -63447,6 +63903,7 @@ export type Routes = {
63447
63903
  /** Endpoint ID in the Vostio access system. */
63448
63904
  endpoint_id?: string | undefined;
63449
63905
  } | undefined;
63906
+ /** Indicates whether Seam manages the credential. */
63450
63907
  is_managed: true;
63451
63908
  } | {
63452
63909
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -63457,6 +63914,7 @@ export type Routes = {
63457
63914
  user_identity_id?: string | undefined;
63458
63915
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
63459
63916
  connected_account_id: string;
63917
+ /** ID of the credential pool to which the credential belongs. */
63460
63918
  acs_credential_pool_id?: string | undefined;
63461
63919
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63462
63920
  acs_system_id: string;
@@ -63654,6 +64112,7 @@ export type Routes = {
63654
64112
  user_identity_id?: string | undefined;
63655
64113
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
63656
64114
  connected_account_id: string;
64115
+ /** ID of the credential pool to which the credential belongs. */
63657
64116
  acs_credential_pool_id?: string | undefined;
63658
64117
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63659
64118
  acs_system_id: string;
@@ -63774,6 +64233,7 @@ export type Routes = {
63774
64233
  /** Endpoint ID in the Vostio access system. */
63775
64234
  endpoint_id?: string | undefined;
63776
64235
  } | undefined;
64236
+ /** Indicates whether Seam manages the credential. */
63777
64237
  is_managed: true;
63778
64238
  } | {
63779
64239
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -63784,6 +64244,7 @@ export type Routes = {
63784
64244
  user_identity_id?: string | undefined;
63785
64245
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
63786
64246
  connected_account_id: string;
64247
+ /** ID of the credential pool to which the credential belongs. */
63787
64248
  acs_credential_pool_id?: string | undefined;
63788
64249
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63789
64250
  acs_system_id: string;
@@ -63993,6 +64454,7 @@ export type Routes = {
63993
64454
  user_identity_id?: string | undefined;
63994
64455
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
63995
64456
  connected_account_id: string;
64457
+ /** ID of the credential pool to which the credential belongs. */
63996
64458
  acs_credential_pool_id?: string | undefined;
63997
64459
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63998
64460
  acs_system_id: string;
@@ -64113,6 +64575,7 @@ export type Routes = {
64113
64575
  /** Endpoint ID in the Vostio access system. */
64114
64576
  endpoint_id?: string | undefined;
64115
64577
  } | undefined;
64578
+ /** Indicates whether Seam manages the credential. */
64116
64579
  is_managed: true;
64117
64580
  };
64118
64581
  } | {
@@ -66235,25 +66698,45 @@ export type Routes = {
66235
66698
  /** Image URL for the manufacturer logo. */
66236
66699
  image_url?: string | undefined;
66237
66700
  } | undefined;
66701
+ /** Indicates whether the device supports remote unlocking. */
66238
66702
  can_remotely_unlock?: boolean | undefined;
66703
+ /** Indicates whether the device supports remote locking. */
66239
66704
  can_remotely_lock?: boolean | undefined;
66705
+ /** Indicates whether the device supports programming offline access codes. */
66240
66706
  can_program_offline_access_codes?: boolean | undefined;
66707
+ /** Indicates whether the device supports programming online access codes. */
66241
66708
  can_program_online_access_codes?: boolean | undefined;
66709
+ /** Indicates whether the thermostat supports heating. */
66242
66710
  can_hvac_heat?: boolean | undefined;
66711
+ /** Indicates whether the thermostat supports cooling. */
66243
66712
  can_hvac_cool?: boolean | undefined;
66713
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
66244
66714
  can_hvac_heat_cool?: boolean | undefined;
66715
+ /** Indicates whether the thermostat can be turned off. */
66245
66716
  can_turn_off_hvac?: boolean | undefined;
66717
+ /** Indicates whether the device supports simulating removal in a sandbox. */
66246
66718
  can_simulate_removal?: boolean | undefined;
66719
+ /** Indicates whether the device supports simulating connection in a sandbox. */
66247
66720
  can_simulate_connection?: boolean | undefined;
66721
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
66248
66722
  can_simulate_disconnection?: boolean | undefined;
66723
+ /** Indicates whether the lock supports unlocking with an access code. */
66249
66724
  can_unlock_with_code?: boolean | undefined;
66725
+ /** Indicates whether the thermostat supports running climate programs. */
66250
66726
  can_run_thermostat_programs?: boolean | undefined;
66727
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
66251
66728
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
66729
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
66252
66730
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
66731
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
66253
66732
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
66733
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
66254
66734
  can_simulate_hub_connection?: boolean | undefined;
66735
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
66255
66736
  can_simulate_hub_disconnection?: boolean | undefined;
66737
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
66256
66738
  can_simulate_paid_subscription?: boolean | undefined;
66739
+ /** Indicates whether the lock supports configuring automatic locking. */
66257
66740
  can_configure_auto_lock?: boolean | undefined;
66258
66741
  }[];
66259
66742
  devices: {
@@ -67606,25 +68089,45 @@ export type Routes = {
67606
68089
  /** Image URL for the manufacturer logo. */
67607
68090
  image_url?: string | undefined;
67608
68091
  } | undefined;
68092
+ /** Indicates whether the device supports remote unlocking. */
67609
68093
  can_remotely_unlock?: boolean | undefined;
68094
+ /** Indicates whether the device supports remote locking. */
67610
68095
  can_remotely_lock?: boolean | undefined;
68096
+ /** Indicates whether the device supports programming offline access codes. */
67611
68097
  can_program_offline_access_codes?: boolean | undefined;
68098
+ /** Indicates whether the device supports programming online access codes. */
67612
68099
  can_program_online_access_codes?: boolean | undefined;
68100
+ /** Indicates whether the thermostat supports heating. */
67613
68101
  can_hvac_heat?: boolean | undefined;
68102
+ /** Indicates whether the thermostat supports cooling. */
67614
68103
  can_hvac_cool?: boolean | undefined;
68104
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
67615
68105
  can_hvac_heat_cool?: boolean | undefined;
68106
+ /** Indicates whether the thermostat can be turned off. */
67616
68107
  can_turn_off_hvac?: boolean | undefined;
68108
+ /** Indicates whether the device supports simulating removal in a sandbox. */
67617
68109
  can_simulate_removal?: boolean | undefined;
68110
+ /** Indicates whether the device supports simulating connection in a sandbox. */
67618
68111
  can_simulate_connection?: boolean | undefined;
68112
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
67619
68113
  can_simulate_disconnection?: boolean | undefined;
68114
+ /** Indicates whether the lock supports unlocking with an access code. */
67620
68115
  can_unlock_with_code?: boolean | undefined;
68116
+ /** Indicates whether the thermostat supports running climate programs. */
67621
68117
  can_run_thermostat_programs?: boolean | undefined;
68118
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
67622
68119
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
68120
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
67623
68121
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
68122
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
67624
68123
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
68124
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
67625
68125
  can_simulate_hub_connection?: boolean | undefined;
68126
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
67626
68127
  can_simulate_hub_disconnection?: boolean | undefined;
68128
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
67627
68129
  can_simulate_paid_subscription?: boolean | undefined;
68130
+ /** Indicates whether the lock supports configuring automatic locking. */
67628
68131
  can_configure_auto_lock?: boolean | undefined;
67629
68132
  }[];
67630
68133
  };
@@ -67758,6 +68261,7 @@ export type Routes = {
67758
68261
  acs_credential_on_encoder: {
67759
68262
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
67760
68263
  created_at: string | null;
68264
+ /** Indicates whether the credential has been issued (encoded onto a card). */
67761
68265
  is_issued: boolean | null;
67762
68266
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
67763
68267
  starts_at: string | null;
@@ -67803,6 +68307,7 @@ export type Routes = {
67803
68307
  user_identity_id?: string | undefined;
67804
68308
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
67805
68309
  connected_account_id: string;
68310
+ /** ID of the credential pool to which the credential belongs. */
67806
68311
  acs_credential_pool_id?: string | undefined;
67807
68312
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
67808
68313
  acs_system_id: string;
@@ -67923,6 +68428,7 @@ export type Routes = {
67923
68428
  /** Endpoint ID in the Vostio access system. */
67924
68429
  endpoint_id?: string | undefined;
67925
68430
  } | undefined;
68431
+ /** Indicates whether Seam manages the credential. */
67926
68432
  is_managed: true;
67927
68433
  } | {
67928
68434
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -67933,6 +68439,7 @@ export type Routes = {
67933
68439
  user_identity_id?: string | undefined;
67934
68440
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
67935
68441
  connected_account_id: string;
68442
+ /** ID of the credential pool to which the credential belongs. */
67936
68443
  acs_credential_pool_id?: string | undefined;
67937
68444
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
67938
68445
  acs_system_id: string;
@@ -68130,6 +68637,7 @@ export type Routes = {
68130
68637
  user_identity_id?: string | undefined;
68131
68638
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
68132
68639
  connected_account_id: string;
68640
+ /** ID of the credential pool to which the credential belongs. */
68133
68641
  acs_credential_pool_id?: string | undefined;
68134
68642
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
68135
68643
  acs_system_id: string;
@@ -68250,6 +68758,7 @@ export type Routes = {
68250
68758
  /** Endpoint ID in the Vostio access system. */
68251
68759
  endpoint_id?: string | undefined;
68252
68760
  } | undefined;
68761
+ /** Indicates whether Seam manages the credential. */
68253
68762
  is_managed: true;
68254
68763
  } | {
68255
68764
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -68260,6 +68769,7 @@ export type Routes = {
68260
68769
  user_identity_id?: string | undefined;
68261
68770
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
68262
68771
  connected_account_id: string;
68772
+ /** ID of the credential pool to which the credential belongs. */
68263
68773
  acs_credential_pool_id?: string | undefined;
68264
68774
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
68265
68775
  acs_system_id: string;
@@ -68469,6 +68979,7 @@ export type Routes = {
68469
68979
  user_identity_id?: string | undefined;
68470
68980
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
68471
68981
  connected_account_id: string;
68982
+ /** ID of the credential pool to which the credential belongs. */
68472
68983
  acs_credential_pool_id?: string | undefined;
68473
68984
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
68474
68985
  acs_system_id: string;
@@ -68589,6 +69100,7 @@ export type Routes = {
68589
69100
  /** Endpoint ID in the Vostio access system. */
68590
69101
  endpoint_id?: string | undefined;
68591
69102
  } | undefined;
69103
+ /** Indicates whether Seam manages the credential. */
68592
69104
  is_managed: true;
68593
69105
  };
68594
69106
  } | {
@@ -69450,6 +69962,7 @@ export type Routes = {
69450
69962
  acs_credential_on_encoder: {
69451
69963
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
69452
69964
  created_at: string | null;
69965
+ /** Indicates whether the credential has been issued (encoded onto a card). */
69453
69966
  is_issued: boolean | null;
69454
69967
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
69455
69968
  starts_at: string | null;
@@ -69495,6 +70008,7 @@ export type Routes = {
69495
70008
  user_identity_id?: string | undefined;
69496
70009
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
69497
70010
  connected_account_id: string;
70011
+ /** ID of the credential pool to which the credential belongs. */
69498
70012
  acs_credential_pool_id?: string | undefined;
69499
70013
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69500
70014
  acs_system_id: string;
@@ -69615,6 +70129,7 @@ export type Routes = {
69615
70129
  /** Endpoint ID in the Vostio access system. */
69616
70130
  endpoint_id?: string | undefined;
69617
70131
  } | undefined;
70132
+ /** Indicates whether Seam manages the credential. */
69618
70133
  is_managed: true;
69619
70134
  } | {
69620
70135
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -69625,6 +70140,7 @@ export type Routes = {
69625
70140
  user_identity_id?: string | undefined;
69626
70141
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
69627
70142
  connected_account_id: string;
70143
+ /** ID of the credential pool to which the credential belongs. */
69628
70144
  acs_credential_pool_id?: string | undefined;
69629
70145
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69630
70146
  acs_system_id: string;
@@ -69822,6 +70338,7 @@ export type Routes = {
69822
70338
  user_identity_id?: string | undefined;
69823
70339
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
69824
70340
  connected_account_id: string;
70341
+ /** ID of the credential pool to which the credential belongs. */
69825
70342
  acs_credential_pool_id?: string | undefined;
69826
70343
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69827
70344
  acs_system_id: string;
@@ -69942,6 +70459,7 @@ export type Routes = {
69942
70459
  /** Endpoint ID in the Vostio access system. */
69943
70460
  endpoint_id?: string | undefined;
69944
70461
  } | undefined;
70462
+ /** Indicates whether Seam manages the credential. */
69945
70463
  is_managed: true;
69946
70464
  } | {
69947
70465
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -69952,6 +70470,7 @@ export type Routes = {
69952
70470
  user_identity_id?: string | undefined;
69953
70471
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
69954
70472
  connected_account_id: string;
70473
+ /** ID of the credential pool to which the credential belongs. */
69955
70474
  acs_credential_pool_id?: string | undefined;
69956
70475
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69957
70476
  acs_system_id: string;
@@ -70161,6 +70680,7 @@ export type Routes = {
70161
70680
  user_identity_id?: string | undefined;
70162
70681
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
70163
70682
  connected_account_id: string;
70683
+ /** ID of the credential pool to which the credential belongs. */
70164
70684
  acs_credential_pool_id?: string | undefined;
70165
70685
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
70166
70686
  acs_system_id: string;
@@ -70281,6 +70801,7 @@ export type Routes = {
70281
70801
  /** Endpoint ID in the Vostio access system. */
70282
70802
  endpoint_id?: string | undefined;
70283
70803
  } | undefined;
70804
+ /** Indicates whether Seam manages the credential. */
70284
70805
  is_managed: true;
70285
70806
  };
70286
70807
  } | {
@@ -71198,6 +71719,7 @@ export type Routes = {
71198
71719
  acs_credential_on_encoder: {
71199
71720
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
71200
71721
  created_at: string | null;
71722
+ /** Indicates whether the credential has been issued (encoded onto a card). */
71201
71723
  is_issued: boolean | null;
71202
71724
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
71203
71725
  starts_at: string | null;
@@ -71243,6 +71765,7 @@ export type Routes = {
71243
71765
  user_identity_id?: string | undefined;
71244
71766
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
71245
71767
  connected_account_id: string;
71768
+ /** ID of the credential pool to which the credential belongs. */
71246
71769
  acs_credential_pool_id?: string | undefined;
71247
71770
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71248
71771
  acs_system_id: string;
@@ -71363,6 +71886,7 @@ export type Routes = {
71363
71886
  /** Endpoint ID in the Vostio access system. */
71364
71887
  endpoint_id?: string | undefined;
71365
71888
  } | undefined;
71889
+ /** Indicates whether Seam manages the credential. */
71366
71890
  is_managed: true;
71367
71891
  } | {
71368
71892
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -71373,6 +71897,7 @@ export type Routes = {
71373
71897
  user_identity_id?: string | undefined;
71374
71898
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
71375
71899
  connected_account_id: string;
71900
+ /** ID of the credential pool to which the credential belongs. */
71376
71901
  acs_credential_pool_id?: string | undefined;
71377
71902
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71378
71903
  acs_system_id: string;
@@ -71570,6 +72095,7 @@ export type Routes = {
71570
72095
  user_identity_id?: string | undefined;
71571
72096
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
71572
72097
  connected_account_id: string;
72098
+ /** ID of the credential pool to which the credential belongs. */
71573
72099
  acs_credential_pool_id?: string | undefined;
71574
72100
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71575
72101
  acs_system_id: string;
@@ -71690,6 +72216,7 @@ export type Routes = {
71690
72216
  /** Endpoint ID in the Vostio access system. */
71691
72217
  endpoint_id?: string | undefined;
71692
72218
  } | undefined;
72219
+ /** Indicates whether Seam manages the credential. */
71693
72220
  is_managed: true;
71694
72221
  } | {
71695
72222
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -71700,6 +72227,7 @@ export type Routes = {
71700
72227
  user_identity_id?: string | undefined;
71701
72228
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
71702
72229
  connected_account_id: string;
72230
+ /** ID of the credential pool to which the credential belongs. */
71703
72231
  acs_credential_pool_id?: string | undefined;
71704
72232
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71705
72233
  acs_system_id: string;
@@ -71909,6 +72437,7 @@ export type Routes = {
71909
72437
  user_identity_id?: string | undefined;
71910
72438
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
71911
72439
  connected_account_id: string;
72440
+ /** ID of the credential pool to which the credential belongs. */
71912
72441
  acs_credential_pool_id?: string | undefined;
71913
72442
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71914
72443
  acs_system_id: string;
@@ -72029,6 +72558,7 @@ export type Routes = {
72029
72558
  /** Endpoint ID in the Vostio access system. */
72030
72559
  endpoint_id?: string | undefined;
72031
72560
  } | undefined;
72561
+ /** Indicates whether Seam manages the credential. */
72032
72562
  is_managed: true;
72033
72563
  };
72034
72564
  } | {
@@ -72814,20 +73344,21 @@ export type Routes = {
72814
73344
  };
72815
73345
  /** Errors associated with the phone. */
72816
73346
  errors: {
73347
+ /** Unique identifier of the type of error. */
72817
73348
  error_code: string;
73349
+ /** Detailed description of the error. */
72818
73350
  message: string;
72819
73351
  }[];
72820
73352
  /** Warnings associated with the phone. */
72821
73353
  warnings: {
73354
+ /** Unique identifier of the type of warning. */
72822
73355
  warning_code: string;
73356
+ /** Detailed description of the warning. */
72823
73357
  message: string;
72824
73358
  }[];
72825
- /** Device type for phones.
72826
- */
73359
+ /** Type of the phone device, such as `ios_phone` or `android_phone`. */
72827
73360
  device_type: 'ios_phone' | 'android_phone';
72828
- /**
72829
- Properties of the phone.
72830
- */
73361
+ /** Properties of the phone. */
72831
73362
  properties: {
72832
73363
  /** ASSA ABLOY Credential Service metadata for the phone. */
72833
73364
  assa_abloy_credential_service_metadata?: {
@@ -72887,20 +73418,21 @@ export type Routes = {
72887
73418
  };
72888
73419
  /** Errors associated with the phone. */
72889
73420
  errors: {
73421
+ /** Unique identifier of the type of error. */
72890
73422
  error_code: string;
73423
+ /** Detailed description of the error. */
72891
73424
  message: string;
72892
73425
  }[];
72893
73426
  /** Warnings associated with the phone. */
72894
73427
  warnings: {
73428
+ /** Unique identifier of the type of warning. */
72895
73429
  warning_code: string;
73430
+ /** Detailed description of the warning. */
72896
73431
  message: string;
72897
73432
  }[];
72898
- /** Device type for phones.
72899
- */
73433
+ /** Type of the phone device, such as `ios_phone` or `android_phone`. */
72900
73434
  device_type: 'ios_phone' | 'android_phone';
72901
- /**
72902
- Properties of the phone.
72903
- */
73435
+ /** Properties of the phone. */
72904
73436
  properties: {
72905
73437
  /** ASSA ABLOY Credential Service metadata for the phone. */
72906
73438
  assa_abloy_credential_service_metadata?: {
@@ -72987,20 +73519,21 @@ export type Routes = {
72987
73519
  };
72988
73520
  /** Errors associated with the phone. */
72989
73521
  errors: {
73522
+ /** Unique identifier of the type of error. */
72990
73523
  error_code: string;
73524
+ /** Detailed description of the error. */
72991
73525
  message: string;
72992
73526
  }[];
72993
73527
  /** Warnings associated with the phone. */
72994
73528
  warnings: {
73529
+ /** Unique identifier of the type of warning. */
72995
73530
  warning_code: string;
73531
+ /** Detailed description of the warning. */
72996
73532
  message: string;
72997
73533
  }[];
72998
- /** Device type for phones.
72999
- */
73534
+ /** Type of the phone device, such as `ios_phone` or `android_phone`. */
73000
73535
  device_type: 'ios_phone' | 'android_phone';
73001
- /**
73002
- Properties of the phone.
73003
- */
73536
+ /** Properties of the phone. */
73004
73537
  properties: {
73005
73538
  /** ASSA ABLOY Credential Service metadata for the phone. */
73006
73539
  assa_abloy_credential_service_metadata?: {
@@ -74108,6 +74641,7 @@ export type Routes = {
74108
74641
  acs_credential_on_encoder: {
74109
74642
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
74110
74643
  created_at: string | null;
74644
+ /** Indicates whether the credential has been issued (encoded onto a card). */
74111
74645
  is_issued: boolean | null;
74112
74646
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
74113
74647
  starts_at: string | null;
@@ -74153,6 +74687,7 @@ export type Routes = {
74153
74687
  user_identity_id?: string | undefined;
74154
74688
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
74155
74689
  connected_account_id: string;
74690
+ /** ID of the credential pool to which the credential belongs. */
74156
74691
  acs_credential_pool_id?: string | undefined;
74157
74692
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
74158
74693
  acs_system_id: string;
@@ -74273,6 +74808,7 @@ export type Routes = {
74273
74808
  /** Endpoint ID in the Vostio access system. */
74274
74809
  endpoint_id?: string | undefined;
74275
74810
  } | undefined;
74811
+ /** Indicates whether Seam manages the credential. */
74276
74812
  is_managed: true;
74277
74813
  } | {
74278
74814
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -74283,6 +74819,7 @@ export type Routes = {
74283
74819
  user_identity_id?: string | undefined;
74284
74820
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
74285
74821
  connected_account_id: string;
74822
+ /** ID of the credential pool to which the credential belongs. */
74286
74823
  acs_credential_pool_id?: string | undefined;
74287
74824
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
74288
74825
  acs_system_id: string;
@@ -74480,6 +75017,7 @@ export type Routes = {
74480
75017
  user_identity_id?: string | undefined;
74481
75018
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
74482
75019
  connected_account_id: string;
75020
+ /** ID of the credential pool to which the credential belongs. */
74483
75021
  acs_credential_pool_id?: string | undefined;
74484
75022
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
74485
75023
  acs_system_id: string;
@@ -74600,6 +75138,7 @@ export type Routes = {
74600
75138
  /** Endpoint ID in the Vostio access system. */
74601
75139
  endpoint_id?: string | undefined;
74602
75140
  } | undefined;
75141
+ /** Indicates whether Seam manages the credential. */
74603
75142
  is_managed: true;
74604
75143
  } | {
74605
75144
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -74610,6 +75149,7 @@ export type Routes = {
74610
75149
  user_identity_id?: string | undefined;
74611
75150
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
74612
75151
  connected_account_id: string;
75152
+ /** ID of the credential pool to which the credential belongs. */
74613
75153
  acs_credential_pool_id?: string | undefined;
74614
75154
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
74615
75155
  acs_system_id: string;
@@ -74819,6 +75359,7 @@ export type Routes = {
74819
75359
  user_identity_id?: string | undefined;
74820
75360
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
74821
75361
  connected_account_id: string;
75362
+ /** ID of the credential pool to which the credential belongs. */
74822
75363
  acs_credential_pool_id?: string | undefined;
74823
75364
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
74824
75365
  acs_system_id: string;
@@ -74939,6 +75480,7 @@ export type Routes = {
74939
75480
  /** Endpoint ID in the Vostio access system. */
74940
75481
  endpoint_id?: string | undefined;
74941
75482
  } | undefined;
75483
+ /** Indicates whether Seam manages the credential. */
74942
75484
  is_managed: true;
74943
75485
  };
74944
75486
  } | {
@@ -77174,6 +77716,7 @@ export type Routes = {
77174
77716
  [x: string]: string | boolean;
77175
77717
  } | undefined;
77176
77718
  event_type: 'access_code.backup_access_code_pulled';
77719
+ /** ID of the backup access code that was pulled from the pool. */
77177
77720
  backup_access_code_id: string;
77178
77721
  } | {
77179
77722
  /** ID of the event. */
@@ -77682,6 +78225,7 @@ export type Routes = {
77682
78225
  connected_account_id?: string | undefined;
77683
78226
  /** ID of the access system. */
77684
78227
  acs_system_id: string;
78228
+ /** ID of the affected access system user. */
77685
78229
  acs_user_id: string;
77686
78230
  event_type: 'acs_user.created';
77687
78231
  } | {
@@ -77697,6 +78241,7 @@ export type Routes = {
77697
78241
  connected_account_id?: string | undefined;
77698
78242
  /** ID of the access system. */
77699
78243
  acs_system_id: string;
78244
+ /** ID of the affected access system user. */
77700
78245
  acs_user_id: string;
77701
78246
  event_type: 'acs_user.deleted';
77702
78247
  } | {
@@ -77760,6 +78305,7 @@ export type Routes = {
77760
78305
  connected_account_id?: string | undefined;
77761
78306
  /** ID of the access system. */
77762
78307
  acs_system_id: string;
78308
+ /** ID of the affected entrance. */
77763
78309
  acs_entrance_id: string;
77764
78310
  event_type: 'acs_entrance.added';
77765
78311
  } | {
@@ -77775,6 +78321,7 @@ export type Routes = {
77775
78321
  connected_account_id?: string | undefined;
77776
78322
  /** ID of the access system. */
77777
78323
  acs_system_id: string;
78324
+ /** ID of the affected entrance. */
77778
78325
  acs_entrance_id: string;
77779
78326
  event_type: 'acs_entrance.removed';
77780
78327
  } | {
@@ -80742,6 +81289,7 @@ export type Routes = {
80742
81289
  user_identity_id?: string | undefined;
80743
81290
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
80744
81291
  connected_account_id: string;
81292
+ /** ID of the credential pool to which the credential belongs. */
80745
81293
  acs_credential_pool_id?: string | undefined;
80746
81294
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
80747
81295
  acs_system_id: string;
@@ -80862,6 +81410,7 @@ export type Routes = {
80862
81410
  /** Endpoint ID in the Vostio access system. */
80863
81411
  endpoint_id?: string | undefined;
80864
81412
  } | undefined;
81413
+ /** Indicates whether Seam manages the credential. */
80865
81414
  is_managed: true;
80866
81415
  }[];
80867
81416
  };
@@ -80909,6 +81458,7 @@ export type Routes = {
80909
81458
  user_identity_id?: string | undefined;
80910
81459
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
80911
81460
  connected_account_id: string;
81461
+ /** ID of the credential pool to which the credential belongs. */
80912
81462
  acs_credential_pool_id?: string | undefined;
80913
81463
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
80914
81464
  acs_system_id: string;
@@ -81029,6 +81579,7 @@ export type Routes = {
81029
81579
  /** Endpoint ID in the Vostio access system. */
81030
81580
  endpoint_id?: string | undefined;
81031
81581
  } | undefined;
81582
+ /** Indicates whether Seam manages the credential. */
81032
81583
  is_managed: true;
81033
81584
  acs_credential_id: string | null;
81034
81585
  acs_entrances: {
@@ -81223,7 +81774,9 @@ export type Routes = {
81223
81774
  email_address: string | null;
81224
81775
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
81225
81776
  phone_number: string | null;
81777
+ /** Display name for the user identity. */
81226
81778
  display_name: string;
81779
+ /** Full name of the user associated with the user identity. */
81227
81780
  full_name: string | null;
81228
81781
  /** Date and time at which the user identity was created. */
81229
81782
  created_at: string;
@@ -82927,25 +83480,45 @@ export type Routes = {
82927
83480
  /** Image URL for the manufacturer logo. */
82928
83481
  image_url?: string | undefined;
82929
83482
  } | undefined;
83483
+ /** Indicates whether the device supports remote unlocking. */
82930
83484
  can_remotely_unlock?: boolean | undefined;
83485
+ /** Indicates whether the device supports remote locking. */
82931
83486
  can_remotely_lock?: boolean | undefined;
83487
+ /** Indicates whether the device supports programming offline access codes. */
82932
83488
  can_program_offline_access_codes?: boolean | undefined;
83489
+ /** Indicates whether the device supports programming online access codes. */
82933
83490
  can_program_online_access_codes?: boolean | undefined;
83491
+ /** Indicates whether the thermostat supports heating. */
82934
83492
  can_hvac_heat?: boolean | undefined;
83493
+ /** Indicates whether the thermostat supports cooling. */
82935
83494
  can_hvac_cool?: boolean | undefined;
83495
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
82936
83496
  can_hvac_heat_cool?: boolean | undefined;
83497
+ /** Indicates whether the thermostat can be turned off. */
82937
83498
  can_turn_off_hvac?: boolean | undefined;
83499
+ /** Indicates whether the device supports simulating removal in a sandbox. */
82938
83500
  can_simulate_removal?: boolean | undefined;
83501
+ /** Indicates whether the device supports simulating connection in a sandbox. */
82939
83502
  can_simulate_connection?: boolean | undefined;
83503
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
82940
83504
  can_simulate_disconnection?: boolean | undefined;
83505
+ /** Indicates whether the lock supports unlocking with an access code. */
82941
83506
  can_unlock_with_code?: boolean | undefined;
83507
+ /** Indicates whether the thermostat supports running climate programs. */
82942
83508
  can_run_thermostat_programs?: boolean | undefined;
83509
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
82943
83510
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
83511
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
82944
83512
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
83513
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
82945
83514
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
83515
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
82946
83516
  can_simulate_hub_connection?: boolean | undefined;
83517
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
82947
83518
  can_simulate_hub_disconnection?: boolean | undefined;
83519
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
82948
83520
  can_simulate_paid_subscription?: boolean | undefined;
83521
+ /** Indicates whether the lock supports configuring automatic locking. */
82949
83522
  can_configure_auto_lock?: boolean | undefined;
82950
83523
  }[] | undefined;
82951
83524
  acs_entrances?: {
@@ -83313,7 +83886,9 @@ export type Routes = {
83313
83886
  default_credential_manager_acs_system_id?: (string | null) | undefined;
83314
83887
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
83315
83888
  acs_system_id: string;
83889
+ /** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
83316
83890
  acs_user_count?: number | undefined;
83891
+ /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
83317
83892
  acs_access_group_count?: number | undefined;
83318
83893
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
83319
83894
  external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
@@ -83321,6 +83896,7 @@ export type Routes = {
83321
83896
  external_type_display_name?: string | undefined;
83322
83897
  /** Indicates whether the `acs_system` is a credential manager. */
83323
83898
  is_credential_manager: boolean;
83899
+ /** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
83324
83900
  visionline_metadata?: {
83325
83901
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
83326
83902
  mobile_access_uuid: string;
@@ -83335,6 +83911,7 @@ export type Routes = {
83335
83911
  /**
83336
83912
  * @deprecated Use `external_type_display_name`.*/
83337
83913
  system_type_display_name?: string | undefined;
83914
+ /** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
83338
83915
  location: {
83339
83916
  /** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
83340
83917
  time_zone: string | null;
@@ -83369,6 +83946,7 @@ export type Routes = {
83369
83946
  message: string;
83370
83947
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
83371
83948
  error_code: 'bridge_disconnected';
83949
+ /** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
83372
83950
  is_bridge_error?: boolean | undefined;
83373
83951
  } | {
83374
83952
  /** Date and time at which Seam created the error. */
@@ -83880,6 +84458,7 @@ export type Routes = {
83880
84458
  acs_credential_on_encoder: {
83881
84459
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
83882
84460
  created_at: string | null;
84461
+ /** Indicates whether the credential has been issued (encoded onto a card). */
83883
84462
  is_issued: boolean | null;
83884
84463
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
83885
84464
  starts_at: string | null;
@@ -83925,6 +84504,7 @@ export type Routes = {
83925
84504
  user_identity_id?: string | undefined;
83926
84505
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
83927
84506
  connected_account_id: string;
84507
+ /** ID of the credential pool to which the credential belongs. */
83928
84508
  acs_credential_pool_id?: string | undefined;
83929
84509
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
83930
84510
  acs_system_id: string;
@@ -84045,6 +84625,7 @@ export type Routes = {
84045
84625
  /** Endpoint ID in the Vostio access system. */
84046
84626
  endpoint_id?: string | undefined;
84047
84627
  } | undefined;
84628
+ /** Indicates whether Seam manages the credential. */
84048
84629
  is_managed: true;
84049
84630
  } | {
84050
84631
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -84055,6 +84636,7 @@ export type Routes = {
84055
84636
  user_identity_id?: string | undefined;
84056
84637
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
84057
84638
  connected_account_id: string;
84639
+ /** ID of the credential pool to which the credential belongs. */
84058
84640
  acs_credential_pool_id?: string | undefined;
84059
84641
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
84060
84642
  acs_system_id: string;
@@ -84252,6 +84834,7 @@ export type Routes = {
84252
84834
  user_identity_id?: string | undefined;
84253
84835
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
84254
84836
  connected_account_id: string;
84837
+ /** ID of the credential pool to which the credential belongs. */
84255
84838
  acs_credential_pool_id?: string | undefined;
84256
84839
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
84257
84840
  acs_system_id: string;
@@ -84372,6 +84955,7 @@ export type Routes = {
84372
84955
  /** Endpoint ID in the Vostio access system. */
84373
84956
  endpoint_id?: string | undefined;
84374
84957
  } | undefined;
84958
+ /** Indicates whether Seam manages the credential. */
84375
84959
  is_managed: true;
84376
84960
  } | {
84377
84961
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -84382,6 +84966,7 @@ export type Routes = {
84382
84966
  user_identity_id?: string | undefined;
84383
84967
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
84384
84968
  connected_account_id: string;
84969
+ /** ID of the credential pool to which the credential belongs. */
84385
84970
  acs_credential_pool_id?: string | undefined;
84386
84971
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
84387
84972
  acs_system_id: string;
@@ -84591,6 +85176,7 @@ export type Routes = {
84591
85176
  user_identity_id?: string | undefined;
84592
85177
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
84593
85178
  connected_account_id: string;
85179
+ /** ID of the credential pool to which the credential belongs. */
84594
85180
  acs_credential_pool_id?: string | undefined;
84595
85181
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
84596
85182
  acs_system_id: string;
@@ -84711,6 +85297,7 @@ export type Routes = {
84711
85297
  /** Endpoint ID in the Vostio access system. */
84712
85298
  endpoint_id?: string | undefined;
84713
85299
  } | undefined;
85300
+ /** Indicates whether Seam manages the credential. */
84714
85301
  is_managed: true;
84715
85302
  };
84716
85303
  } | {
@@ -85557,6 +86144,7 @@ export type Routes = {
85557
86144
  acs_credential_on_encoder: {
85558
86145
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
85559
86146
  created_at: string | null;
86147
+ /** Indicates whether the credential has been issued (encoded onto a card). */
85560
86148
  is_issued: boolean | null;
85561
86149
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
85562
86150
  starts_at: string | null;
@@ -85602,6 +86190,7 @@ export type Routes = {
85602
86190
  user_identity_id?: string | undefined;
85603
86191
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
85604
86192
  connected_account_id: string;
86193
+ /** ID of the credential pool to which the credential belongs. */
85605
86194
  acs_credential_pool_id?: string | undefined;
85606
86195
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
85607
86196
  acs_system_id: string;
@@ -85722,6 +86311,7 @@ export type Routes = {
85722
86311
  /** Endpoint ID in the Vostio access system. */
85723
86312
  endpoint_id?: string | undefined;
85724
86313
  } | undefined;
86314
+ /** Indicates whether Seam manages the credential. */
85725
86315
  is_managed: true;
85726
86316
  } | {
85727
86317
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -85732,6 +86322,7 @@ export type Routes = {
85732
86322
  user_identity_id?: string | undefined;
85733
86323
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
85734
86324
  connected_account_id: string;
86325
+ /** ID of the credential pool to which the credential belongs. */
85735
86326
  acs_credential_pool_id?: string | undefined;
85736
86327
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
85737
86328
  acs_system_id: string;
@@ -85929,6 +86520,7 @@ export type Routes = {
85929
86520
  user_identity_id?: string | undefined;
85930
86521
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
85931
86522
  connected_account_id: string;
86523
+ /** ID of the credential pool to which the credential belongs. */
85932
86524
  acs_credential_pool_id?: string | undefined;
85933
86525
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
85934
86526
  acs_system_id: string;
@@ -86049,6 +86641,7 @@ export type Routes = {
86049
86641
  /** Endpoint ID in the Vostio access system. */
86050
86642
  endpoint_id?: string | undefined;
86051
86643
  } | undefined;
86644
+ /** Indicates whether Seam manages the credential. */
86052
86645
  is_managed: true;
86053
86646
  } | {
86054
86647
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -86059,6 +86652,7 @@ export type Routes = {
86059
86652
  user_identity_id?: string | undefined;
86060
86653
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
86061
86654
  connected_account_id: string;
86655
+ /** ID of the credential pool to which the credential belongs. */
86062
86656
  acs_credential_pool_id?: string | undefined;
86063
86657
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
86064
86658
  acs_system_id: string;
@@ -86268,6 +86862,7 @@ export type Routes = {
86268
86862
  user_identity_id?: string | undefined;
86269
86863
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
86270
86864
  connected_account_id: string;
86865
+ /** ID of the credential pool to which the credential belongs. */
86271
86866
  acs_credential_pool_id?: string | undefined;
86272
86867
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
86273
86868
  acs_system_id: string;
@@ -86388,6 +86983,7 @@ export type Routes = {
86388
86983
  /** Endpoint ID in the Vostio access system. */
86389
86984
  endpoint_id?: string | undefined;
86390
86985
  } | undefined;
86986
+ /** Indicates whether Seam manages the credential. */
86391
86987
  is_managed: true;
86392
86988
  };
86393
86989
  } | {
@@ -87340,6 +87936,7 @@ export type Routes = {
87340
87936
  acs_credential_on_encoder: {
87341
87937
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
87342
87938
  created_at: string | null;
87939
+ /** Indicates whether the credential has been issued (encoded onto a card). */
87343
87940
  is_issued: boolean | null;
87344
87941
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
87345
87942
  starts_at: string | null;
@@ -87385,6 +87982,7 @@ export type Routes = {
87385
87982
  user_identity_id?: string | undefined;
87386
87983
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
87387
87984
  connected_account_id: string;
87985
+ /** ID of the credential pool to which the credential belongs. */
87388
87986
  acs_credential_pool_id?: string | undefined;
87389
87987
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87390
87988
  acs_system_id: string;
@@ -87505,6 +88103,7 @@ export type Routes = {
87505
88103
  /** Endpoint ID in the Vostio access system. */
87506
88104
  endpoint_id?: string | undefined;
87507
88105
  } | undefined;
88106
+ /** Indicates whether Seam manages the credential. */
87508
88107
  is_managed: true;
87509
88108
  } | {
87510
88109
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -87515,6 +88114,7 @@ export type Routes = {
87515
88114
  user_identity_id?: string | undefined;
87516
88115
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
87517
88116
  connected_account_id: string;
88117
+ /** ID of the credential pool to which the credential belongs. */
87518
88118
  acs_credential_pool_id?: string | undefined;
87519
88119
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87520
88120
  acs_system_id: string;
@@ -87712,6 +88312,7 @@ export type Routes = {
87712
88312
  user_identity_id?: string | undefined;
87713
88313
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
87714
88314
  connected_account_id: string;
88315
+ /** ID of the credential pool to which the credential belongs. */
87715
88316
  acs_credential_pool_id?: string | undefined;
87716
88317
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87717
88318
  acs_system_id: string;
@@ -87832,6 +88433,7 @@ export type Routes = {
87832
88433
  /** Endpoint ID in the Vostio access system. */
87833
88434
  endpoint_id?: string | undefined;
87834
88435
  } | undefined;
88436
+ /** Indicates whether Seam manages the credential. */
87835
88437
  is_managed: true;
87836
88438
  } | {
87837
88439
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -87842,6 +88444,7 @@ export type Routes = {
87842
88444
  user_identity_id?: string | undefined;
87843
88445
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
87844
88446
  connected_account_id: string;
88447
+ /** ID of the credential pool to which the credential belongs. */
87845
88448
  acs_credential_pool_id?: string | undefined;
87846
88449
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87847
88450
  acs_system_id: string;
@@ -88051,6 +88654,7 @@ export type Routes = {
88051
88654
  user_identity_id?: string | undefined;
88052
88655
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
88053
88656
  connected_account_id: string;
88657
+ /** ID of the credential pool to which the credential belongs. */
88054
88658
  acs_credential_pool_id?: string | undefined;
88055
88659
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
88056
88660
  acs_system_id: string;
@@ -88171,6 +88775,7 @@ export type Routes = {
88171
88775
  /** Endpoint ID in the Vostio access system. */
88172
88776
  endpoint_id?: string | undefined;
88173
88777
  } | undefined;
88778
+ /** Indicates whether Seam manages the credential. */
88174
88779
  is_managed: true;
88175
88780
  };
88176
88781
  } | {
@@ -90274,25 +90879,45 @@ export type Routes = {
90274
90879
  /** Image URL for the manufacturer logo. */
90275
90880
  image_url?: string | undefined;
90276
90881
  } | undefined;
90882
+ /** Indicates whether the device supports remote unlocking. */
90277
90883
  can_remotely_unlock?: boolean | undefined;
90884
+ /** Indicates whether the device supports remote locking. */
90278
90885
  can_remotely_lock?: boolean | undefined;
90886
+ /** Indicates whether the device supports programming offline access codes. */
90279
90887
  can_program_offline_access_codes?: boolean | undefined;
90888
+ /** Indicates whether the device supports programming online access codes. */
90280
90889
  can_program_online_access_codes?: boolean | undefined;
90890
+ /** Indicates whether the thermostat supports heating. */
90281
90891
  can_hvac_heat?: boolean | undefined;
90892
+ /** Indicates whether the thermostat supports cooling. */
90282
90893
  can_hvac_cool?: boolean | undefined;
90894
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
90283
90895
  can_hvac_heat_cool?: boolean | undefined;
90896
+ /** Indicates whether the thermostat can be turned off. */
90284
90897
  can_turn_off_hvac?: boolean | undefined;
90898
+ /** Indicates whether the device supports simulating removal in a sandbox. */
90285
90899
  can_simulate_removal?: boolean | undefined;
90900
+ /** Indicates whether the device supports simulating connection in a sandbox. */
90286
90901
  can_simulate_connection?: boolean | undefined;
90902
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
90287
90903
  can_simulate_disconnection?: boolean | undefined;
90904
+ /** Indicates whether the lock supports unlocking with an access code. */
90288
90905
  can_unlock_with_code?: boolean | undefined;
90906
+ /** Indicates whether the thermostat supports running climate programs. */
90289
90907
  can_run_thermostat_programs?: boolean | undefined;
90908
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
90290
90909
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
90910
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
90291
90911
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
90912
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
90292
90913
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
90914
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
90293
90915
  can_simulate_hub_connection?: boolean | undefined;
90916
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
90294
90917
  can_simulate_hub_disconnection?: boolean | undefined;
90918
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
90295
90919
  can_simulate_paid_subscription?: boolean | undefined;
90920
+ /** Indicates whether the lock supports configuring automatic locking. */
90296
90921
  can_configure_auto_lock?: boolean | undefined;
90297
90922
  };
90298
90923
  };
@@ -90420,6 +91045,7 @@ export type Routes = {
90420
91045
  acs_credential_on_encoder: {
90421
91046
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
90422
91047
  created_at: string | null;
91048
+ /** Indicates whether the credential has been issued (encoded onto a card). */
90423
91049
  is_issued: boolean | null;
90424
91050
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
90425
91051
  starts_at: string | null;
@@ -90465,6 +91091,7 @@ export type Routes = {
90465
91091
  user_identity_id?: string | undefined;
90466
91092
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
90467
91093
  connected_account_id: string;
91094
+ /** ID of the credential pool to which the credential belongs. */
90468
91095
  acs_credential_pool_id?: string | undefined;
90469
91096
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90470
91097
  acs_system_id: string;
@@ -90585,6 +91212,7 @@ export type Routes = {
90585
91212
  /** Endpoint ID in the Vostio access system. */
90586
91213
  endpoint_id?: string | undefined;
90587
91214
  } | undefined;
91215
+ /** Indicates whether Seam manages the credential. */
90588
91216
  is_managed: true;
90589
91217
  } | {
90590
91218
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -90595,6 +91223,7 @@ export type Routes = {
90595
91223
  user_identity_id?: string | undefined;
90596
91224
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
90597
91225
  connected_account_id: string;
91226
+ /** ID of the credential pool to which the credential belongs. */
90598
91227
  acs_credential_pool_id?: string | undefined;
90599
91228
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90600
91229
  acs_system_id: string;
@@ -90792,6 +91421,7 @@ export type Routes = {
90792
91421
  user_identity_id?: string | undefined;
90793
91422
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
90794
91423
  connected_account_id: string;
91424
+ /** ID of the credential pool to which the credential belongs. */
90795
91425
  acs_credential_pool_id?: string | undefined;
90796
91426
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90797
91427
  acs_system_id: string;
@@ -90912,6 +91542,7 @@ export type Routes = {
90912
91542
  /** Endpoint ID in the Vostio access system. */
90913
91543
  endpoint_id?: string | undefined;
90914
91544
  } | undefined;
91545
+ /** Indicates whether Seam manages the credential. */
90915
91546
  is_managed: true;
90916
91547
  } | {
90917
91548
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -90922,6 +91553,7 @@ export type Routes = {
90922
91553
  user_identity_id?: string | undefined;
90923
91554
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
90924
91555
  connected_account_id: string;
91556
+ /** ID of the credential pool to which the credential belongs. */
90925
91557
  acs_credential_pool_id?: string | undefined;
90926
91558
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90927
91559
  acs_system_id: string;
@@ -91131,6 +91763,7 @@ export type Routes = {
91131
91763
  user_identity_id?: string | undefined;
91132
91764
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
91133
91765
  connected_account_id: string;
91766
+ /** ID of the credential pool to which the credential belongs. */
91134
91767
  acs_credential_pool_id?: string | undefined;
91135
91768
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91136
91769
  acs_system_id: string;
@@ -91251,6 +91884,7 @@ export type Routes = {
91251
91884
  /** Endpoint ID in the Vostio access system. */
91252
91885
  endpoint_id?: string | undefined;
91253
91886
  } | undefined;
91887
+ /** Indicates whether Seam manages the credential. */
91254
91888
  is_managed: true;
91255
91889
  };
91256
91890
  } | {
@@ -92101,6 +92735,7 @@ export type Routes = {
92101
92735
  acs_credential_on_encoder: {
92102
92736
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
92103
92737
  created_at: string | null;
92738
+ /** Indicates whether the credential has been issued (encoded onto a card). */
92104
92739
  is_issued: boolean | null;
92105
92740
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
92106
92741
  starts_at: string | null;
@@ -92146,6 +92781,7 @@ export type Routes = {
92146
92781
  user_identity_id?: string | undefined;
92147
92782
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92148
92783
  connected_account_id: string;
92784
+ /** ID of the credential pool to which the credential belongs. */
92149
92785
  acs_credential_pool_id?: string | undefined;
92150
92786
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
92151
92787
  acs_system_id: string;
@@ -92266,6 +92902,7 @@ export type Routes = {
92266
92902
  /** Endpoint ID in the Vostio access system. */
92267
92903
  endpoint_id?: string | undefined;
92268
92904
  } | undefined;
92905
+ /** Indicates whether Seam manages the credential. */
92269
92906
  is_managed: true;
92270
92907
  } | {
92271
92908
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -92276,6 +92913,7 @@ export type Routes = {
92276
92913
  user_identity_id?: string | undefined;
92277
92914
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92278
92915
  connected_account_id: string;
92916
+ /** ID of the credential pool to which the credential belongs. */
92279
92917
  acs_credential_pool_id?: string | undefined;
92280
92918
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
92281
92919
  acs_system_id: string;
@@ -92473,6 +93111,7 @@ export type Routes = {
92473
93111
  user_identity_id?: string | undefined;
92474
93112
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92475
93113
  connected_account_id: string;
93114
+ /** ID of the credential pool to which the credential belongs. */
92476
93115
  acs_credential_pool_id?: string | undefined;
92477
93116
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
92478
93117
  acs_system_id: string;
@@ -92593,6 +93232,7 @@ export type Routes = {
92593
93232
  /** Endpoint ID in the Vostio access system. */
92594
93233
  endpoint_id?: string | undefined;
92595
93234
  } | undefined;
93235
+ /** Indicates whether Seam manages the credential. */
92596
93236
  is_managed: true;
92597
93237
  } | {
92598
93238
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -92603,6 +93243,7 @@ export type Routes = {
92603
93243
  user_identity_id?: string | undefined;
92604
93244
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92605
93245
  connected_account_id: string;
93246
+ /** ID of the credential pool to which the credential belongs. */
92606
93247
  acs_credential_pool_id?: string | undefined;
92607
93248
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
92608
93249
  acs_system_id: string;
@@ -92812,6 +93453,7 @@ export type Routes = {
92812
93453
  user_identity_id?: string | undefined;
92813
93454
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92814
93455
  connected_account_id: string;
93456
+ /** ID of the credential pool to which the credential belongs. */
92815
93457
  acs_credential_pool_id?: string | undefined;
92816
93458
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
92817
93459
  acs_system_id: string;
@@ -92932,6 +93574,7 @@ export type Routes = {
92932
93574
  /** Endpoint ID in the Vostio access system. */
92933
93575
  endpoint_id?: string | undefined;
92934
93576
  } | undefined;
93577
+ /** Indicates whether Seam manages the credential. */
92935
93578
  is_managed: true;
92936
93579
  };
92937
93580
  } | {
@@ -95054,25 +95697,45 @@ export type Routes = {
95054
95697
  /** Image URL for the manufacturer logo. */
95055
95698
  image_url?: string | undefined;
95056
95699
  } | undefined;
95700
+ /** Indicates whether the device supports remote unlocking. */
95057
95701
  can_remotely_unlock?: boolean | undefined;
95702
+ /** Indicates whether the device supports remote locking. */
95058
95703
  can_remotely_lock?: boolean | undefined;
95704
+ /** Indicates whether the device supports programming offline access codes. */
95059
95705
  can_program_offline_access_codes?: boolean | undefined;
95706
+ /** Indicates whether the device supports programming online access codes. */
95060
95707
  can_program_online_access_codes?: boolean | undefined;
95708
+ /** Indicates whether the thermostat supports heating. */
95061
95709
  can_hvac_heat?: boolean | undefined;
95710
+ /** Indicates whether the thermostat supports cooling. */
95062
95711
  can_hvac_cool?: boolean | undefined;
95712
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
95063
95713
  can_hvac_heat_cool?: boolean | undefined;
95714
+ /** Indicates whether the thermostat can be turned off. */
95064
95715
  can_turn_off_hvac?: boolean | undefined;
95716
+ /** Indicates whether the device supports simulating removal in a sandbox. */
95065
95717
  can_simulate_removal?: boolean | undefined;
95718
+ /** Indicates whether the device supports simulating connection in a sandbox. */
95066
95719
  can_simulate_connection?: boolean | undefined;
95720
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
95067
95721
  can_simulate_disconnection?: boolean | undefined;
95722
+ /** Indicates whether the lock supports unlocking with an access code. */
95068
95723
  can_unlock_with_code?: boolean | undefined;
95724
+ /** Indicates whether the thermostat supports running climate programs. */
95069
95725
  can_run_thermostat_programs?: boolean | undefined;
95726
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
95070
95727
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
95728
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
95071
95729
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
95730
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
95072
95731
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
95732
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
95073
95733
  can_simulate_hub_connection?: boolean | undefined;
95734
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
95074
95735
  can_simulate_hub_disconnection?: boolean | undefined;
95736
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
95075
95737
  can_simulate_paid_subscription?: boolean | undefined;
95738
+ /** Indicates whether the lock supports configuring automatic locking. */
95076
95739
  can_configure_auto_lock?: boolean | undefined;
95077
95740
  }[];
95078
95741
  devices: {
@@ -96425,25 +97088,45 @@ export type Routes = {
96425
97088
  /** Image URL for the manufacturer logo. */
96426
97089
  image_url?: string | undefined;
96427
97090
  } | undefined;
97091
+ /** Indicates whether the device supports remote unlocking. */
96428
97092
  can_remotely_unlock?: boolean | undefined;
97093
+ /** Indicates whether the device supports remote locking. */
96429
97094
  can_remotely_lock?: boolean | undefined;
97095
+ /** Indicates whether the device supports programming offline access codes. */
96430
97096
  can_program_offline_access_codes?: boolean | undefined;
97097
+ /** Indicates whether the device supports programming online access codes. */
96431
97098
  can_program_online_access_codes?: boolean | undefined;
97099
+ /** Indicates whether the thermostat supports heating. */
96432
97100
  can_hvac_heat?: boolean | undefined;
97101
+ /** Indicates whether the thermostat supports cooling. */
96433
97102
  can_hvac_cool?: boolean | undefined;
97103
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
96434
97104
  can_hvac_heat_cool?: boolean | undefined;
97105
+ /** Indicates whether the thermostat can be turned off. */
96435
97106
  can_turn_off_hvac?: boolean | undefined;
97107
+ /** Indicates whether the device supports simulating removal in a sandbox. */
96436
97108
  can_simulate_removal?: boolean | undefined;
97109
+ /** Indicates whether the device supports simulating connection in a sandbox. */
96437
97110
  can_simulate_connection?: boolean | undefined;
97111
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
96438
97112
  can_simulate_disconnection?: boolean | undefined;
97113
+ /** Indicates whether the lock supports unlocking with an access code. */
96439
97114
  can_unlock_with_code?: boolean | undefined;
97115
+ /** Indicates whether the thermostat supports running climate programs. */
96440
97116
  can_run_thermostat_programs?: boolean | undefined;
97117
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
96441
97118
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
97119
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
96442
97120
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
97121
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
96443
97122
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
97123
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
96444
97124
  can_simulate_hub_connection?: boolean | undefined;
97125
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
96445
97126
  can_simulate_hub_disconnection?: boolean | undefined;
97127
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
96446
97128
  can_simulate_paid_subscription?: boolean | undefined;
97129
+ /** Indicates whether the lock supports configuring automatic locking. */
96447
97130
  can_configure_auto_lock?: boolean | undefined;
96448
97131
  }[];
96449
97132
  };
@@ -96567,6 +97250,7 @@ export type Routes = {
96567
97250
  acs_credential_on_encoder: {
96568
97251
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
96569
97252
  created_at: string | null;
97253
+ /** Indicates whether the credential has been issued (encoded onto a card). */
96570
97254
  is_issued: boolean | null;
96571
97255
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
96572
97256
  starts_at: string | null;
@@ -96612,6 +97296,7 @@ export type Routes = {
96612
97296
  user_identity_id?: string | undefined;
96613
97297
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
96614
97298
  connected_account_id: string;
97299
+ /** ID of the credential pool to which the credential belongs. */
96615
97300
  acs_credential_pool_id?: string | undefined;
96616
97301
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
96617
97302
  acs_system_id: string;
@@ -96732,6 +97417,7 @@ export type Routes = {
96732
97417
  /** Endpoint ID in the Vostio access system. */
96733
97418
  endpoint_id?: string | undefined;
96734
97419
  } | undefined;
97420
+ /** Indicates whether Seam manages the credential. */
96735
97421
  is_managed: true;
96736
97422
  } | {
96737
97423
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -96742,6 +97428,7 @@ export type Routes = {
96742
97428
  user_identity_id?: string | undefined;
96743
97429
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
96744
97430
  connected_account_id: string;
97431
+ /** ID of the credential pool to which the credential belongs. */
96745
97432
  acs_credential_pool_id?: string | undefined;
96746
97433
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
96747
97434
  acs_system_id: string;
@@ -96939,6 +97626,7 @@ export type Routes = {
96939
97626
  user_identity_id?: string | undefined;
96940
97627
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
96941
97628
  connected_account_id: string;
97629
+ /** ID of the credential pool to which the credential belongs. */
96942
97630
  acs_credential_pool_id?: string | undefined;
96943
97631
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
96944
97632
  acs_system_id: string;
@@ -97059,6 +97747,7 @@ export type Routes = {
97059
97747
  /** Endpoint ID in the Vostio access system. */
97060
97748
  endpoint_id?: string | undefined;
97061
97749
  } | undefined;
97750
+ /** Indicates whether Seam manages the credential. */
97062
97751
  is_managed: true;
97063
97752
  } | {
97064
97753
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -97069,6 +97758,7 @@ export type Routes = {
97069
97758
  user_identity_id?: string | undefined;
97070
97759
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
97071
97760
  connected_account_id: string;
97761
+ /** ID of the credential pool to which the credential belongs. */
97072
97762
  acs_credential_pool_id?: string | undefined;
97073
97763
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
97074
97764
  acs_system_id: string;
@@ -97278,6 +97968,7 @@ export type Routes = {
97278
97968
  user_identity_id?: string | undefined;
97279
97969
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
97280
97970
  connected_account_id: string;
97971
+ /** ID of the credential pool to which the credential belongs. */
97281
97972
  acs_credential_pool_id?: string | undefined;
97282
97973
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
97283
97974
  acs_system_id: string;
@@ -97398,6 +98089,7 @@ export type Routes = {
97398
98089
  /** Endpoint ID in the Vostio access system. */
97399
98090
  endpoint_id?: string | undefined;
97400
98091
  } | undefined;
98092
+ /** Indicates whether Seam manages the credential. */
97401
98093
  is_managed: true;
97402
98094
  };
97403
98095
  } | {
@@ -98443,6 +99135,7 @@ export type Routes = {
98443
99135
  acs_credential_on_encoder: {
98444
99136
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
98445
99137
  created_at: string | null;
99138
+ /** Indicates whether the credential has been issued (encoded onto a card). */
98446
99139
  is_issued: boolean | null;
98447
99140
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
98448
99141
  starts_at: string | null;
@@ -98488,6 +99181,7 @@ export type Routes = {
98488
99181
  user_identity_id?: string | undefined;
98489
99182
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
98490
99183
  connected_account_id: string;
99184
+ /** ID of the credential pool to which the credential belongs. */
98491
99185
  acs_credential_pool_id?: string | undefined;
98492
99186
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
98493
99187
  acs_system_id: string;
@@ -98608,6 +99302,7 @@ export type Routes = {
98608
99302
  /** Endpoint ID in the Vostio access system. */
98609
99303
  endpoint_id?: string | undefined;
98610
99304
  } | undefined;
99305
+ /** Indicates whether Seam manages the credential. */
98611
99306
  is_managed: true;
98612
99307
  } | {
98613
99308
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -98618,6 +99313,7 @@ export type Routes = {
98618
99313
  user_identity_id?: string | undefined;
98619
99314
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
98620
99315
  connected_account_id: string;
99316
+ /** ID of the credential pool to which the credential belongs. */
98621
99317
  acs_credential_pool_id?: string | undefined;
98622
99318
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
98623
99319
  acs_system_id: string;
@@ -98815,6 +99511,7 @@ export type Routes = {
98815
99511
  user_identity_id?: string | undefined;
98816
99512
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
98817
99513
  connected_account_id: string;
99514
+ /** ID of the credential pool to which the credential belongs. */
98818
99515
  acs_credential_pool_id?: string | undefined;
98819
99516
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
98820
99517
  acs_system_id: string;
@@ -98935,6 +99632,7 @@ export type Routes = {
98935
99632
  /** Endpoint ID in the Vostio access system. */
98936
99633
  endpoint_id?: string | undefined;
98937
99634
  } | undefined;
99635
+ /** Indicates whether Seam manages the credential. */
98938
99636
  is_managed: true;
98939
99637
  } | {
98940
99638
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -98945,6 +99643,7 @@ export type Routes = {
98945
99643
  user_identity_id?: string | undefined;
98946
99644
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
98947
99645
  connected_account_id: string;
99646
+ /** ID of the credential pool to which the credential belongs. */
98948
99647
  acs_credential_pool_id?: string | undefined;
98949
99648
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
98950
99649
  acs_system_id: string;
@@ -99154,6 +99853,7 @@ export type Routes = {
99154
99853
  user_identity_id?: string | undefined;
99155
99854
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
99156
99855
  connected_account_id: string;
99856
+ /** ID of the credential pool to which the credential belongs. */
99157
99857
  acs_credential_pool_id?: string | undefined;
99158
99858
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99159
99859
  acs_system_id: string;
@@ -99274,6 +99974,7 @@ export type Routes = {
99274
99974
  /** Endpoint ID in the Vostio access system. */
99275
99975
  endpoint_id?: string | undefined;
99276
99976
  } | undefined;
99977
+ /** Indicates whether Seam manages the credential. */
99277
99978
  is_managed: true;
99278
99979
  };
99279
99980
  } | {
@@ -100147,6 +100848,7 @@ export type Routes = {
100147
100848
  acs_credential_on_encoder: {
100148
100849
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
100149
100850
  created_at: string | null;
100851
+ /** Indicates whether the credential has been issued (encoded onto a card). */
100150
100852
  is_issued: boolean | null;
100151
100853
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
100152
100854
  starts_at: string | null;
@@ -100192,6 +100894,7 @@ export type Routes = {
100192
100894
  user_identity_id?: string | undefined;
100193
100895
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100194
100896
  connected_account_id: string;
100897
+ /** ID of the credential pool to which the credential belongs. */
100195
100898
  acs_credential_pool_id?: string | undefined;
100196
100899
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100197
100900
  acs_system_id: string;
@@ -100312,6 +101015,7 @@ export type Routes = {
100312
101015
  /** Endpoint ID in the Vostio access system. */
100313
101016
  endpoint_id?: string | undefined;
100314
101017
  } | undefined;
101018
+ /** Indicates whether Seam manages the credential. */
100315
101019
  is_managed: true;
100316
101020
  } | {
100317
101021
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -100322,6 +101026,7 @@ export type Routes = {
100322
101026
  user_identity_id?: string | undefined;
100323
101027
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100324
101028
  connected_account_id: string;
101029
+ /** ID of the credential pool to which the credential belongs. */
100325
101030
  acs_credential_pool_id?: string | undefined;
100326
101031
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100327
101032
  acs_system_id: string;
@@ -100519,6 +101224,7 @@ export type Routes = {
100519
101224
  user_identity_id?: string | undefined;
100520
101225
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100521
101226
  connected_account_id: string;
101227
+ /** ID of the credential pool to which the credential belongs. */
100522
101228
  acs_credential_pool_id?: string | undefined;
100523
101229
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100524
101230
  acs_system_id: string;
@@ -100639,6 +101345,7 @@ export type Routes = {
100639
101345
  /** Endpoint ID in the Vostio access system. */
100640
101346
  endpoint_id?: string | undefined;
100641
101347
  } | undefined;
101348
+ /** Indicates whether Seam manages the credential. */
100642
101349
  is_managed: true;
100643
101350
  } | {
100644
101351
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -100649,6 +101356,7 @@ export type Routes = {
100649
101356
  user_identity_id?: string | undefined;
100650
101357
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100651
101358
  connected_account_id: string;
101359
+ /** ID of the credential pool to which the credential belongs. */
100652
101360
  acs_credential_pool_id?: string | undefined;
100653
101361
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100654
101362
  acs_system_id: string;
@@ -100858,6 +101566,7 @@ export type Routes = {
100858
101566
  user_identity_id?: string | undefined;
100859
101567
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100860
101568
  connected_account_id: string;
101569
+ /** ID of the credential pool to which the credential belongs. */
100861
101570
  acs_credential_pool_id?: string | undefined;
100862
101571
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100863
101572
  acs_system_id: string;
@@ -100978,6 +101687,7 @@ export type Routes = {
100978
101687
  /** Endpoint ID in the Vostio access system. */
100979
101688
  endpoint_id?: string | undefined;
100980
101689
  } | undefined;
101690
+ /** Indicates whether Seam manages the credential. */
100981
101691
  is_managed: true;
100982
101692
  };
100983
101693
  } | {
@@ -101963,6 +102673,7 @@ export type Routes = {
101963
102673
  acs_credential_on_encoder: {
101964
102674
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
101965
102675
  created_at: string | null;
102676
+ /** Indicates whether the credential has been issued (encoded onto a card). */
101966
102677
  is_issued: boolean | null;
101967
102678
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
101968
102679
  starts_at: string | null;
@@ -102008,6 +102719,7 @@ export type Routes = {
102008
102719
  user_identity_id?: string | undefined;
102009
102720
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102010
102721
  connected_account_id: string;
102722
+ /** ID of the credential pool to which the credential belongs. */
102011
102723
  acs_credential_pool_id?: string | undefined;
102012
102724
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102013
102725
  acs_system_id: string;
@@ -102128,6 +102840,7 @@ export type Routes = {
102128
102840
  /** Endpoint ID in the Vostio access system. */
102129
102841
  endpoint_id?: string | undefined;
102130
102842
  } | undefined;
102843
+ /** Indicates whether Seam manages the credential. */
102131
102844
  is_managed: true;
102132
102845
  } | {
102133
102846
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -102138,6 +102851,7 @@ export type Routes = {
102138
102851
  user_identity_id?: string | undefined;
102139
102852
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102140
102853
  connected_account_id: string;
102854
+ /** ID of the credential pool to which the credential belongs. */
102141
102855
  acs_credential_pool_id?: string | undefined;
102142
102856
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102143
102857
  acs_system_id: string;
@@ -102335,6 +103049,7 @@ export type Routes = {
102335
103049
  user_identity_id?: string | undefined;
102336
103050
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102337
103051
  connected_account_id: string;
103052
+ /** ID of the credential pool to which the credential belongs. */
102338
103053
  acs_credential_pool_id?: string | undefined;
102339
103054
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102340
103055
  acs_system_id: string;
@@ -102455,6 +103170,7 @@ export type Routes = {
102455
103170
  /** Endpoint ID in the Vostio access system. */
102456
103171
  endpoint_id?: string | undefined;
102457
103172
  } | undefined;
103173
+ /** Indicates whether Seam manages the credential. */
102458
103174
  is_managed: true;
102459
103175
  } | {
102460
103176
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -102465,6 +103181,7 @@ export type Routes = {
102465
103181
  user_identity_id?: string | undefined;
102466
103182
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102467
103183
  connected_account_id: string;
103184
+ /** ID of the credential pool to which the credential belongs. */
102468
103185
  acs_credential_pool_id?: string | undefined;
102469
103186
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102470
103187
  acs_system_id: string;
@@ -102674,6 +103391,7 @@ export type Routes = {
102674
103391
  user_identity_id?: string | undefined;
102675
103392
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102676
103393
  connected_account_id: string;
103394
+ /** ID of the credential pool to which the credential belongs. */
102677
103395
  acs_credential_pool_id?: string | undefined;
102678
103396
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102679
103397
  acs_system_id: string;
@@ -102794,6 +103512,7 @@ export type Routes = {
102794
103512
  /** Endpoint ID in the Vostio access system. */
102795
103513
  endpoint_id?: string | undefined;
102796
103514
  } | undefined;
103515
+ /** Indicates whether Seam manages the credential. */
102797
103516
  is_managed: true;
102798
103517
  };
102799
103518
  } | {
@@ -103748,7 +104467,9 @@ export type Routes = {
103748
104467
  email_address: string | null;
103749
104468
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
103750
104469
  phone_number: string | null;
104470
+ /** Display name for the user identity. */
103751
104471
  display_name: string;
104472
+ /** Full name of the user associated with the user identity. */
103752
104473
  full_name: string | null;
103753
104474
  /** Date and time at which the user identity was created. */
103754
104475
  created_at: string;
@@ -103973,7 +104694,9 @@ export type Routes = {
103973
104694
  email_address: string | null;
103974
104695
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
103975
104696
  phone_number: string | null;
104697
+ /** Display name for the user identity. */
103976
104698
  display_name: string;
104699
+ /** Full name of the user associated with the user identity. */
103977
104700
  full_name: string | null;
103978
104701
  /** Date and time at which the user identity was created. */
103979
104702
  created_at: string;
@@ -104059,7 +104782,9 @@ export type Routes = {
104059
104782
  email_address: string | null;
104060
104783
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
104061
104784
  phone_number: string | null;
104785
+ /** Display name for the user identity. */
104062
104786
  display_name: string;
104787
+ /** Full name of the user associated with the user identity. */
104063
104788
  full_name: string | null;
104064
104789
  /** Date and time at which the user identity was created. */
104065
104790
  created_at: string;
@@ -105470,25 +106195,45 @@ export type Routes = {
105470
106195
  /** Image URL for the manufacturer logo. */
105471
106196
  image_url?: string | undefined;
105472
106197
  } | undefined;
106198
+ /** Indicates whether the device supports remote unlocking. */
105473
106199
  can_remotely_unlock?: boolean | undefined;
106200
+ /** Indicates whether the device supports remote locking. */
105474
106201
  can_remotely_lock?: boolean | undefined;
106202
+ /** Indicates whether the device supports programming offline access codes. */
105475
106203
  can_program_offline_access_codes?: boolean | undefined;
106204
+ /** Indicates whether the device supports programming online access codes. */
105476
106205
  can_program_online_access_codes?: boolean | undefined;
106206
+ /** Indicates whether the thermostat supports heating. */
105477
106207
  can_hvac_heat?: boolean | undefined;
106208
+ /** Indicates whether the thermostat supports cooling. */
105478
106209
  can_hvac_cool?: boolean | undefined;
106210
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
105479
106211
  can_hvac_heat_cool?: boolean | undefined;
106212
+ /** Indicates whether the thermostat can be turned off. */
105480
106213
  can_turn_off_hvac?: boolean | undefined;
106214
+ /** Indicates whether the device supports simulating removal in a sandbox. */
105481
106215
  can_simulate_removal?: boolean | undefined;
106216
+ /** Indicates whether the device supports simulating connection in a sandbox. */
105482
106217
  can_simulate_connection?: boolean | undefined;
106218
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
105483
106219
  can_simulate_disconnection?: boolean | undefined;
106220
+ /** Indicates whether the lock supports unlocking with an access code. */
105484
106221
  can_unlock_with_code?: boolean | undefined;
106222
+ /** Indicates whether the thermostat supports running climate programs. */
105485
106223
  can_run_thermostat_programs?: boolean | undefined;
106224
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
105486
106225
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
106226
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
105487
106227
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
106228
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
105488
106229
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
106230
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
105489
106231
  can_simulate_hub_connection?: boolean | undefined;
106232
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
105490
106233
  can_simulate_hub_disconnection?: boolean | undefined;
106234
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
105491
106235
  can_simulate_paid_subscription?: boolean | undefined;
106236
+ /** Indicates whether the lock supports configuring automatic locking. */
105492
106237
  can_configure_auto_lock?: boolean | undefined;
105493
106238
  }[];
105494
106239
  /**
@@ -106843,25 +107588,45 @@ export type Routes = {
106843
107588
  /** Image URL for the manufacturer logo. */
106844
107589
  image_url?: string | undefined;
106845
107590
  } | undefined;
107591
+ /** Indicates whether the device supports remote unlocking. */
106846
107592
  can_remotely_unlock?: boolean | undefined;
107593
+ /** Indicates whether the device supports remote locking. */
106847
107594
  can_remotely_lock?: boolean | undefined;
107595
+ /** Indicates whether the device supports programming offline access codes. */
106848
107596
  can_program_offline_access_codes?: boolean | undefined;
107597
+ /** Indicates whether the device supports programming online access codes. */
106849
107598
  can_program_online_access_codes?: boolean | undefined;
107599
+ /** Indicates whether the thermostat supports heating. */
106850
107600
  can_hvac_heat?: boolean | undefined;
107601
+ /** Indicates whether the thermostat supports cooling. */
106851
107602
  can_hvac_cool?: boolean | undefined;
107603
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
106852
107604
  can_hvac_heat_cool?: boolean | undefined;
107605
+ /** Indicates whether the thermostat can be turned off. */
106853
107606
  can_turn_off_hvac?: boolean | undefined;
107607
+ /** Indicates whether the device supports simulating removal in a sandbox. */
106854
107608
  can_simulate_removal?: boolean | undefined;
107609
+ /** Indicates whether the device supports simulating connection in a sandbox. */
106855
107610
  can_simulate_connection?: boolean | undefined;
107611
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
106856
107612
  can_simulate_disconnection?: boolean | undefined;
107613
+ /** Indicates whether the lock supports unlocking with an access code. */
106857
107614
  can_unlock_with_code?: boolean | undefined;
107615
+ /** Indicates whether the thermostat supports running climate programs. */
106858
107616
  can_run_thermostat_programs?: boolean | undefined;
107617
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
106859
107618
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
107619
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
106860
107620
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
107621
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
106861
107622
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
107623
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
106862
107624
  can_simulate_hub_connection?: boolean | undefined;
107625
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
106863
107626
  can_simulate_hub_disconnection?: boolean | undefined;
107627
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
106864
107628
  can_simulate_paid_subscription?: boolean | undefined;
107629
+ /** Indicates whether the lock supports configuring automatic locking. */
106865
107630
  can_configure_auto_lock?: boolean | undefined;
106866
107631
  }[];
106867
107632
  };
@@ -107077,7 +107842,9 @@ export type Routes = {
107077
107842
  default_credential_manager_acs_system_id?: (string | null) | undefined;
107078
107843
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
107079
107844
  acs_system_id: string;
107845
+ /** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
107080
107846
  acs_user_count?: number | undefined;
107847
+ /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
107081
107848
  acs_access_group_count?: number | undefined;
107082
107849
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
107083
107850
  external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
@@ -107085,6 +107852,7 @@ export type Routes = {
107085
107852
  external_type_display_name?: string | undefined;
107086
107853
  /** Indicates whether the `acs_system` is a credential manager. */
107087
107854
  is_credential_manager: boolean;
107855
+ /** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
107088
107856
  visionline_metadata?: {
107089
107857
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
107090
107858
  mobile_access_uuid: string;
@@ -107099,6 +107867,7 @@ export type Routes = {
107099
107867
  /**
107100
107868
  * @deprecated Use `external_type_display_name`.*/
107101
107869
  system_type_display_name?: string | undefined;
107870
+ /** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
107102
107871
  location: {
107103
107872
  /** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
107104
107873
  time_zone: string | null;
@@ -107133,6 +107902,7 @@ export type Routes = {
107133
107902
  message: string;
107134
107903
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
107135
107904
  error_code: 'bridge_disconnected';
107905
+ /** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
107136
107906
  is_bridge_error?: boolean | undefined;
107137
107907
  } | {
107138
107908
  /** Date and time at which Seam created the error. */
@@ -107223,6 +107993,7 @@ export type Routes = {
107223
107993
  acs_user_id: string;
107224
107994
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
107225
107995
  acs_system_id: string;
107996
+ /** ID of the HID access control system associated with the user. */
107226
107997
  hid_acs_system_id?: string | undefined;
107227
107998
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
107228
107999
  workspace_id: string;
@@ -107468,6 +108239,7 @@ export type Routes = {
107468
108239
  email_address?: string | undefined;
107469
108240
  /** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
107470
108241
  phone_number?: string | undefined;
108242
+ /** Indicates whether Seam manages the access system user. */
107471
108243
  is_managed: true;
107472
108244
  }[];
107473
108245
  };
@@ -107522,7 +108294,9 @@ export type Routes = {
107522
108294
  email_address: string | null;
107523
108295
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
107524
108296
  phone_number: string | null;
108297
+ /** Display name for the user identity. */
107525
108298
  display_name: string;
108299
+ /** Full name of the user associated with the user identity. */
107526
108300
  full_name: string | null;
107527
108301
  /** Date and time at which the user identity was created. */
107528
108302
  created_at: string;
@@ -107587,7 +108361,9 @@ export type Routes = {
107587
108361
  email_address: string | null;
107588
108362
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
107589
108363
  phone_number: string | null;
108364
+ /** Display name for the user identity. */
107590
108365
  display_name: string;
108366
+ /** Full name of the user associated with the user identity. */
107591
108367
  full_name: string | null;
107592
108368
  /** Date and time at which the user identity was created. */
107593
108369
  created_at: string;
@@ -108037,7 +108813,9 @@ export type Routes = {
108037
108813
  email_address: string | null;
108038
108814
  /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
108039
108815
  phone_number: string | null;
108816
+ /** Display name for the user identity. */
108040
108817
  display_name: string;
108818
+ /** Full name of the user associated with the user identity. */
108041
108819
  full_name: string | null;
108042
108820
  /** Date and time at which the user identity was created. */
108043
108821
  created_at: string;
@@ -109458,25 +110236,45 @@ export type Routes = {
109458
110236
  /** Image URL for the manufacturer logo. */
109459
110237
  image_url?: string | undefined;
109460
110238
  } | undefined;
110239
+ /** Indicates whether the device supports remote unlocking. */
109461
110240
  can_remotely_unlock?: boolean | undefined;
110241
+ /** Indicates whether the device supports remote locking. */
109462
110242
  can_remotely_lock?: boolean | undefined;
110243
+ /** Indicates whether the device supports programming offline access codes. */
109463
110244
  can_program_offline_access_codes?: boolean | undefined;
110245
+ /** Indicates whether the device supports programming online access codes. */
109464
110246
  can_program_online_access_codes?: boolean | undefined;
110247
+ /** Indicates whether the thermostat supports heating. */
109465
110248
  can_hvac_heat?: boolean | undefined;
110249
+ /** Indicates whether the thermostat supports cooling. */
109466
110250
  can_hvac_cool?: boolean | undefined;
110251
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
109467
110252
  can_hvac_heat_cool?: boolean | undefined;
110253
+ /** Indicates whether the thermostat can be turned off. */
109468
110254
  can_turn_off_hvac?: boolean | undefined;
110255
+ /** Indicates whether the device supports simulating removal in a sandbox. */
109469
110256
  can_simulate_removal?: boolean | undefined;
110257
+ /** Indicates whether the device supports simulating connection in a sandbox. */
109470
110258
  can_simulate_connection?: boolean | undefined;
110259
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
109471
110260
  can_simulate_disconnection?: boolean | undefined;
110261
+ /** Indicates whether the lock supports unlocking with an access code. */
109472
110262
  can_unlock_with_code?: boolean | undefined;
110263
+ /** Indicates whether the thermostat supports running climate programs. */
109473
110264
  can_run_thermostat_programs?: boolean | undefined;
110265
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
109474
110266
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
110267
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
109475
110268
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
110269
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
109476
110270
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
110271
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
109477
110272
  can_simulate_hub_connection?: boolean | undefined;
110273
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
109478
110274
  can_simulate_hub_disconnection?: boolean | undefined;
110275
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
109479
110276
  can_simulate_paid_subscription?: boolean | undefined;
110277
+ /** Indicates whether the lock supports configuring automatic locking. */
109480
110278
  can_configure_auto_lock?: boolean | undefined;
109481
110279
  }[] | undefined;
109482
110280
  acs_entrances?: {
@@ -109664,7 +110462,9 @@ export type Routes = {
109664
110462
  default_credential_manager_acs_system_id?: (string | null) | undefined;
109665
110463
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
109666
110464
  acs_system_id: string;
110465
+ /** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
109667
110466
  acs_user_count?: number | undefined;
110467
+ /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
109668
110468
  acs_access_group_count?: number | undefined;
109669
110469
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
109670
110470
  external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
@@ -109672,6 +110472,7 @@ export type Routes = {
109672
110472
  external_type_display_name?: string | undefined;
109673
110473
  /** Indicates whether the `acs_system` is a credential manager. */
109674
110474
  is_credential_manager: boolean;
110475
+ /** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
109675
110476
  visionline_metadata?: {
109676
110477
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
109677
110478
  mobile_access_uuid: string;
@@ -109686,6 +110487,7 @@ export type Routes = {
109686
110487
  /**
109687
110488
  * @deprecated Use `external_type_display_name`.*/
109688
110489
  system_type_display_name?: string | undefined;
110490
+ /** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
109689
110491
  location: {
109690
110492
  /** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
109691
110493
  time_zone: string | null;
@@ -109720,6 +110522,7 @@ export type Routes = {
109720
110522
  message: string;
109721
110523
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
109722
110524
  error_code: 'bridge_disconnected';
110525
+ /** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
109723
110526
  is_bridge_error?: boolean | undefined;
109724
110527
  } | {
109725
110528
  /** Date and time at which Seam created the error. */
@@ -109796,6 +110599,7 @@ export type Routes = {
109796
110599
  acs_user_id: string;
109797
110600
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
109798
110601
  acs_system_id: string;
110602
+ /** ID of the HID access control system associated with the user. */
109799
110603
  hid_acs_system_id?: string | undefined;
109800
110604
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
109801
110605
  workspace_id: string;
@@ -110041,6 +110845,7 @@ export type Routes = {
110041
110845
  email_address?: string | undefined;
110042
110846
  /** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
110043
110847
  phone_number?: string | undefined;
110848
+ /** Indicates whether Seam manages the access system user. */
110044
110849
  is_managed: true;
110045
110850
  }[] | undefined;
110046
110851
  acs_access_groups?: {
@@ -110060,6 +110865,7 @@ export type Routes = {
110060
110865
  /**
110061
110866
  * @deprecated Use `external_type_display_name`.*/
110062
110867
  access_group_type_display_name: string;
110868
+ /** Display name for the access group. */
110063
110869
  display_name: string;
110064
110870
  /** Brand-specific terminology for the access group type. */
110065
110871
  external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
@@ -110205,6 +111011,7 @@ export type Routes = {
110205
111011
  /** Whether the user is scheduled to be added to or removed from this access group. */
110206
111012
  variant: 'adding' | 'removing';
110207
111013
  })[];
111014
+ /** Indicates whether Seam manages the access group. */
110208
111015
  is_managed: true;
110209
111016
  }[] | undefined;
110210
111017
  acs_encoders?: {
@@ -110330,6 +111137,7 @@ export type Routes = {
110330
111137
  acs_credential_on_encoder: {
110331
111138
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
110332
111139
  created_at: string | null;
111140
+ /** Indicates whether the credential has been issued (encoded onto a card). */
110333
111141
  is_issued: boolean | null;
110334
111142
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
110335
111143
  starts_at: string | null;
@@ -110375,6 +111183,7 @@ export type Routes = {
110375
111183
  user_identity_id?: string | undefined;
110376
111184
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
110377
111185
  connected_account_id: string;
111186
+ /** ID of the credential pool to which the credential belongs. */
110378
111187
  acs_credential_pool_id?: string | undefined;
110379
111188
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110380
111189
  acs_system_id: string;
@@ -110495,6 +111304,7 @@ export type Routes = {
110495
111304
  /** Endpoint ID in the Vostio access system. */
110496
111305
  endpoint_id?: string | undefined;
110497
111306
  } | undefined;
111307
+ /** Indicates whether Seam manages the credential. */
110498
111308
  is_managed: true;
110499
111309
  } | {
110500
111310
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -110505,6 +111315,7 @@ export type Routes = {
110505
111315
  user_identity_id?: string | undefined;
110506
111316
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
110507
111317
  connected_account_id: string;
111318
+ /** ID of the credential pool to which the credential belongs. */
110508
111319
  acs_credential_pool_id?: string | undefined;
110509
111320
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110510
111321
  acs_system_id: string;
@@ -110702,6 +111513,7 @@ export type Routes = {
110702
111513
  user_identity_id?: string | undefined;
110703
111514
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
110704
111515
  connected_account_id: string;
111516
+ /** ID of the credential pool to which the credential belongs. */
110705
111517
  acs_credential_pool_id?: string | undefined;
110706
111518
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110707
111519
  acs_system_id: string;
@@ -110822,6 +111634,7 @@ export type Routes = {
110822
111634
  /** Endpoint ID in the Vostio access system. */
110823
111635
  endpoint_id?: string | undefined;
110824
111636
  } | undefined;
111637
+ /** Indicates whether Seam manages the credential. */
110825
111638
  is_managed: true;
110826
111639
  } | {
110827
111640
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -110832,6 +111645,7 @@ export type Routes = {
110832
111645
  user_identity_id?: string | undefined;
110833
111646
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
110834
111647
  connected_account_id: string;
111648
+ /** ID of the credential pool to which the credential belongs. */
110835
111649
  acs_credential_pool_id?: string | undefined;
110836
111650
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110837
111651
  acs_system_id: string;
@@ -111041,6 +111855,7 @@ export type Routes = {
111041
111855
  user_identity_id?: string | undefined;
111042
111856
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
111043
111857
  connected_account_id: string;
111858
+ /** ID of the credential pool to which the credential belongs. */
111044
111859
  acs_credential_pool_id?: string | undefined;
111045
111860
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
111046
111861
  acs_system_id: string;
@@ -111161,6 +111976,7 @@ export type Routes = {
111161
111976
  /** Endpoint ID in the Vostio access system. */
111162
111977
  endpoint_id?: string | undefined;
111163
111978
  } | undefined;
111979
+ /** Indicates whether Seam manages the credential. */
111164
111980
  is_managed: true;
111165
111981
  };
111166
111982
  } | {
@@ -111914,6 +112730,7 @@ export type Routes = {
111914
112730
  acs_user_id: string;
111915
112731
  /** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
111916
112732
  acs_system_id: string;
112733
+ /** ID of the HID access control system associated with the user. */
111917
112734
  hid_acs_system_id?: string | undefined;
111918
112735
  /** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
111919
112736
  workspace_id: string;
@@ -112178,6 +112995,7 @@ export type Routes = {
112178
112995
  /**
112179
112996
  * @deprecated Use `external_type_display_name`.*/
112180
112997
  access_group_type_display_name: string;
112998
+ /** Display name for the access group. */
112181
112999
  display_name: string;
112182
113000
  /** Brand-specific terminology for the access group type. */
112183
113001
  external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
@@ -112698,6 +113516,7 @@ export type Routes = {
112698
113516
  custom_metadata: {
112699
113517
  [x: string]: string | boolean;
112700
113518
  };
113519
+ /** Indicates that Seam does not manage the device. */
112701
113520
  is_managed: false;
112702
113521
  /** properties of the device. */
112703
113522
  properties: {
@@ -112769,25 +113588,45 @@ export type Routes = {
112769
113588
  accessory_keypad_supported?: boolean | undefined;
112770
113589
  };
112771
113590
  };
113591
+ /** Indicates whether the device supports remote unlocking. */
112772
113592
  can_remotely_unlock?: boolean | undefined;
113593
+ /** Indicates whether the device supports remote locking. */
112773
113594
  can_remotely_lock?: boolean | undefined;
113595
+ /** Indicates whether the device supports programming offline access codes. */
112774
113596
  can_program_offline_access_codes?: boolean | undefined;
113597
+ /** Indicates whether the device supports programming online access codes. */
112775
113598
  can_program_online_access_codes?: boolean | undefined;
113599
+ /** Indicates whether the thermostat supports heating. */
112776
113600
  can_hvac_heat?: boolean | undefined;
113601
+ /** Indicates whether the thermostat supports cooling. */
112777
113602
  can_hvac_cool?: boolean | undefined;
113603
+ /** Indicates whether the thermostat supports simultaneous heating and cooling. */
112778
113604
  can_hvac_heat_cool?: boolean | undefined;
113605
+ /** Indicates whether the thermostat can be turned off. */
112779
113606
  can_turn_off_hvac?: boolean | undefined;
113607
+ /** Indicates whether the device supports simulating removal in a sandbox. */
112780
113608
  can_simulate_removal?: boolean | undefined;
113609
+ /** Indicates whether the device supports simulating connection in a sandbox. */
112781
113610
  can_simulate_connection?: boolean | undefined;
113611
+ /** Indicates whether the device supports simulating disconnection in a sandbox. */
112782
113612
  can_simulate_disconnection?: boolean | undefined;
113613
+ /** Indicates whether the lock supports unlocking with an access code. */
112783
113614
  can_unlock_with_code?: boolean | undefined;
113615
+ /** Indicates whether the thermostat supports running climate programs. */
112784
113616
  can_run_thermostat_programs?: boolean | undefined;
113617
+ /** Indicates whether the thermostat supports weekday/weekend climate programs. */
112785
113618
  can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
113619
+ /** Indicates whether the thermostat supports different climate programs for each day of the week. */
112786
113620
  can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
113621
+ /** Indicates whether the thermostat supports a single climate program applied to every day. */
112787
113622
  can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
113623
+ /** Indicates whether the hub supports simulating connection in a sandbox. */
112788
113624
  can_simulate_hub_connection?: boolean | undefined;
113625
+ /** Indicates whether the hub supports simulating disconnection in a sandbox. */
112789
113626
  can_simulate_hub_disconnection?: boolean | undefined;
113627
+ /** Indicates whether the device supports simulating a paid subscription in a sandbox. */
112790
113628
  can_simulate_paid_subscription?: boolean | undefined;
113629
+ /** Indicates whether the lock supports configuring automatic locking. */
112791
113630
  can_configure_auto_lock?: boolean | undefined;
112792
113631
  }[] | undefined;
112793
113632
  connect_webviews?: {
@@ -112801,6 +113640,7 @@ export type Routes = {
112801
113640
  connected_account_id: string | null;
112802
113641
  /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
112803
113642
  url: string;
113643
+ /** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
112804
113644
  device_selection_mode: 'none' | 'single' | 'multiple';
112805
113645
  /** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
112806
113646
  accepted_providers: string[];
@@ -114009,6 +114849,7 @@ export type Routes = {
114009
114849
  [x: string]: string | boolean;
114010
114850
  } | undefined;
114011
114851
  event_type: 'access_code.backup_access_code_pulled';
114852
+ /** ID of the backup access code that was pulled from the pool. */
114012
114853
  backup_access_code_id: string;
114013
114854
  } | {
114014
114855
  /** ID of the event. */
@@ -114517,6 +115358,7 @@ export type Routes = {
114517
115358
  connected_account_id?: string | undefined;
114518
115359
  /** ID of the access system. */
114519
115360
  acs_system_id: string;
115361
+ /** ID of the affected access system user. */
114520
115362
  acs_user_id: string;
114521
115363
  event_type: 'acs_user.created';
114522
115364
  } | {
@@ -114532,6 +115374,7 @@ export type Routes = {
114532
115374
  connected_account_id?: string | undefined;
114533
115375
  /** ID of the access system. */
114534
115376
  acs_system_id: string;
115377
+ /** ID of the affected access system user. */
114535
115378
  acs_user_id: string;
114536
115379
  event_type: 'acs_user.deleted';
114537
115380
  } | {
@@ -114595,6 +115438,7 @@ export type Routes = {
114595
115438
  connected_account_id?: string | undefined;
114596
115439
  /** ID of the access system. */
114597
115440
  acs_system_id: string;
115441
+ /** ID of the affected entrance. */
114598
115442
  acs_entrance_id: string;
114599
115443
  event_type: 'acs_entrance.added';
114600
115444
  } | {
@@ -114610,6 +115454,7 @@ export type Routes = {
114610
115454
  connected_account_id?: string | undefined;
114611
115455
  /** ID of the access system. */
114612
115456
  acs_system_id: string;
115457
+ /** ID of the affected entrance. */
114613
115458
  acs_entrance_id: string;
114614
115459
  event_type: 'acs_entrance.removed';
114615
115460
  } | {
@@ -116290,6 +117135,7 @@ export type Routes = {
116290
117135
  user_identity_id?: string | undefined;
116291
117136
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
116292
117137
  connected_account_id: string;
117138
+ /** ID of the credential pool to which the credential belongs. */
116293
117139
  acs_credential_pool_id?: string | undefined;
116294
117140
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116295
117141
  acs_system_id: string;
@@ -116410,6 +117256,7 @@ export type Routes = {
116410
117256
  /** Endpoint ID in the Vostio access system. */
116411
117257
  endpoint_id?: string | undefined;
116412
117258
  } | undefined;
117259
+ /** Indicates whether Seam manages the credential. */
116413
117260
  is_managed: true;
116414
117261
  }[] | undefined;
116415
117262
  unmanaged_acs_credentials?: {
@@ -116421,6 +117268,7 @@ export type Routes = {
116421
117268
  user_identity_id?: string | undefined;
116422
117269
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
116423
117270
  connected_account_id: string;
117271
+ /** ID of the credential pool to which the credential belongs. */
116424
117272
  acs_credential_pool_id?: string | undefined;
116425
117273
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116426
117274
  acs_system_id: string;
@@ -117771,6 +118619,7 @@ export type Routes = {
117771
118619
  acs_credential_on_encoder: {
117772
118620
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
117773
118621
  created_at: string | null;
118622
+ /** Indicates whether the credential has been issued (encoded onto a card). */
117774
118623
  is_issued: boolean | null;
117775
118624
  /** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
117776
118625
  starts_at: string | null;
@@ -117816,6 +118665,7 @@ export type Routes = {
117816
118665
  user_identity_id?: string | undefined;
117817
118666
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
117818
118667
  connected_account_id: string;
118668
+ /** ID of the credential pool to which the credential belongs. */
117819
118669
  acs_credential_pool_id?: string | undefined;
117820
118670
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
117821
118671
  acs_system_id: string;
@@ -117936,6 +118786,7 @@ export type Routes = {
117936
118786
  /** Endpoint ID in the Vostio access system. */
117937
118787
  endpoint_id?: string | undefined;
117938
118788
  } | undefined;
118789
+ /** Indicates whether Seam manages the credential. */
117939
118790
  is_managed: true;
117940
118791
  } | {
117941
118792
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -117946,6 +118797,7 @@ export type Routes = {
117946
118797
  user_identity_id?: string | undefined;
117947
118798
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
117948
118799
  connected_account_id: string;
118800
+ /** ID of the credential pool to which the credential belongs. */
117949
118801
  acs_credential_pool_id?: string | undefined;
117950
118802
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
117951
118803
  acs_system_id: string;
@@ -118143,6 +118995,7 @@ export type Routes = {
118143
118995
  user_identity_id?: string | undefined;
118144
118996
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
118145
118997
  connected_account_id: string;
118998
+ /** ID of the credential pool to which the credential belongs. */
118146
118999
  acs_credential_pool_id?: string | undefined;
118147
119000
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118148
119001
  acs_system_id: string;
@@ -118263,6 +119116,7 @@ export type Routes = {
118263
119116
  /** Endpoint ID in the Vostio access system. */
118264
119117
  endpoint_id?: string | undefined;
118265
119118
  } | undefined;
119119
+ /** Indicates whether Seam manages the credential. */
118266
119120
  is_managed: true;
118267
119121
  } | {
118268
119122
  /** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
@@ -118273,6 +119127,7 @@ export type Routes = {
118273
119127
  user_identity_id?: string | undefined;
118274
119128
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
118275
119129
  connected_account_id: string;
119130
+ /** ID of the credential pool to which the credential belongs. */
118276
119131
  acs_credential_pool_id?: string | undefined;
118277
119132
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118278
119133
  acs_system_id: string;
@@ -118482,6 +119337,7 @@ export type Routes = {
118482
119337
  user_identity_id?: string | undefined;
118483
119338
  /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
118484
119339
  connected_account_id: string;
119340
+ /** ID of the credential pool to which the credential belongs. */
118485
119341
  acs_credential_pool_id?: string | undefined;
118486
119342
  /** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118487
119343
  acs_system_id: string;
@@ -118602,6 +119458,7 @@ export type Routes = {
118602
119458
  /** Endpoint ID in the Vostio access system. */
118603
119459
  endpoint_id?: string | undefined;
118604
119460
  } | undefined;
119461
+ /** Indicates whether Seam manages the credential. */
118605
119462
  is_managed: true;
118606
119463
  };
118607
119464
  } | {