@seamapi/types 1.423.4 → 1.425.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 (47) hide show
  1. package/dist/connect.cjs +225 -24
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +602 -12
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
  8. package/lib/seam/connect/models/acs/acs-credential.js +4 -0
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
  11. package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
  12. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-system.js +4 -1
  14. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  15. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
  16. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
  17. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
  18. package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -4
  19. package/lib/seam/connect/models/connect-webviews/connect-webview.js +3 -9
  20. package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
  21. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
  22. package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
  23. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  24. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
  25. package/lib/seam/connect/models/index.d.ts +1 -0
  26. package/lib/seam/connect/models/index.js +1 -0
  27. package/lib/seam/connect/models/index.js.map +1 -1
  28. package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
  29. package/lib/seam/connect/models/provider-capability.d.ts +3 -0
  30. package/lib/seam/connect/models/provider-capability.js +11 -0
  31. package/lib/seam/connect/models/provider-capability.js.map +1 -0
  32. package/lib/seam/connect/openapi.d.ts +263 -5
  33. package/lib/seam/connect/openapi.js +190 -11
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +292 -3
  36. package/package.json +1 -1
  37. package/src/lib/seam/connect/internal/schemas.ts +2 -0
  38. package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
  39. package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
  40. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
  41. package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +3 -16
  42. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
  43. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -2
  44. package/src/lib/seam/connect/models/index.ts +1 -0
  45. package/src/lib/seam/connect/models/provider-capability.ts +13 -0
  46. package/src/lib/seam/connect/openapi.ts +217 -11
  47. package/src/lib/seam/connect/route-types.ts +298 -3
@@ -35,6 +35,8 @@ export interface Routes {
35
35
  is_external_modification_allowed?: boolean | undefined;
36
36
  /** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
37
37
  preferred_code_length?: number | undefined;
38
+ /**
39
+ * @deprecated Use `is_offline_access_code` instead. */
38
40
  use_offline_access_code?: boolean | undefined;
39
41
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
40
42
  is_offline_access_code?: boolean | undefined;
@@ -186,6 +188,8 @@ export interface Routes {
186
188
  acs_credential_id: string;
187
189
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
188
190
  acs_user_id?: string | undefined;
191
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
192
+ connected_account_id: string;
189
193
  acs_credential_pool_id?: string | undefined;
190
194
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
191
195
  acs_system_id: string;
@@ -312,6 +316,8 @@ export interface Routes {
312
316
  acs_credential_id: string;
313
317
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
314
318
  acs_user_id?: string | undefined;
319
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
320
+ connected_account_id: string;
315
321
  acs_credential_pool_id?: string | undefined;
316
322
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
317
323
  acs_system_id: string;
@@ -561,6 +567,8 @@ export interface Routes {
561
567
  acs_credential_id: string;
562
568
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
563
569
  acs_user_id?: string | undefined;
570
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
571
+ connected_account_id: string;
564
572
  acs_credential_pool_id?: string | undefined;
565
573
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
566
574
  acs_system_id: string;
@@ -687,6 +695,8 @@ export interface Routes {
687
695
  acs_credential_id: string;
688
696
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
689
697
  acs_user_id?: string | undefined;
698
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
699
+ connected_account_id: string;
690
700
  acs_credential_pool_id?: string | undefined;
691
701
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
692
702
  acs_system_id: string;
@@ -1894,6 +1904,8 @@ export interface Routes {
1894
1904
  allow_external_modification?: boolean | undefined;
1895
1905
  /** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
1896
1906
  is_external_modification_allowed?: boolean | undefined;
1907
+ /**
1908
+ * @deprecated Use `is_offline_access_code` instead. */
1897
1909
  use_offline_access_code?: boolean | undefined;
1898
1910
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
1899
1911
  is_offline_access_code?: boolean | undefined;
@@ -2567,6 +2579,8 @@ export interface Routes {
2567
2579
  acs_credential_id: string;
2568
2580
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2569
2581
  acs_user_id?: string | undefined;
2582
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2583
+ connected_account_id: string;
2570
2584
  acs_credential_pool_id?: string | undefined;
2571
2585
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
2572
2586
  acs_system_id: string;
@@ -2693,6 +2707,8 @@ export interface Routes {
2693
2707
  acs_credential_id: string;
2694
2708
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2695
2709
  acs_user_id?: string | undefined;
2710
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2711
+ connected_account_id: string;
2696
2712
  acs_credential_pool_id?: string | undefined;
2697
2713
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
2698
2714
  acs_system_id: string;
@@ -2942,6 +2958,8 @@ export interface Routes {
2942
2958
  acs_credential_id: string;
2943
2959
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2944
2960
  acs_user_id?: string | undefined;
2961
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2962
+ connected_account_id: string;
2945
2963
  acs_credential_pool_id?: string | undefined;
2946
2964
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
2947
2965
  acs_system_id: string;
@@ -3068,6 +3086,8 @@ export interface Routes {
3068
3086
  acs_credential_id: string;
3069
3087
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3070
3088
  acs_user_id?: string | undefined;
3089
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3090
+ connected_account_id: string;
3071
3091
  acs_credential_pool_id?: string | undefined;
3072
3092
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
3073
3093
  acs_system_id: string;
@@ -6554,6 +6574,8 @@ export interface Routes {
6554
6574
  acs_credential_id: string;
6555
6575
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
6556
6576
  acs_user_id?: string | undefined;
6577
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
6578
+ connected_account_id: string;
6557
6579
  acs_credential_pool_id?: string | undefined;
6558
6580
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
6559
6581
  acs_system_id: string;
@@ -6680,6 +6702,8 @@ export interface Routes {
6680
6702
  acs_credential_id: string;
6681
6703
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
6682
6704
  acs_user_id?: string | undefined;
6705
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
6706
+ connected_account_id: string;
6683
6707
  acs_credential_pool_id?: string | undefined;
6684
6708
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
6685
6709
  acs_system_id: string;
@@ -6929,6 +6953,8 @@ export interface Routes {
6929
6953
  acs_credential_id: string;
6930
6954
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
6931
6955
  acs_user_id?: string | undefined;
6956
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
6957
+ connected_account_id: string;
6932
6958
  acs_credential_pool_id?: string | undefined;
6933
6959
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
6934
6960
  acs_system_id: string;
@@ -7055,6 +7081,8 @@ export interface Routes {
7055
7081
  acs_credential_id: string;
7056
7082
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7057
7083
  acs_user_id?: string | undefined;
7084
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7085
+ connected_account_id: string;
7058
7086
  acs_credential_pool_id?: string | undefined;
7059
7087
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
7060
7088
  acs_system_id: string;
@@ -8784,6 +8812,8 @@ export interface Routes {
8784
8812
  is_external_modification_allowed?: boolean | undefined;
8785
8813
  /** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
8786
8814
  preferred_code_length?: number | undefined;
8815
+ /**
8816
+ * @deprecated Use `is_offline_access_code` instead. */
8787
8817
  use_offline_access_code?: boolean | undefined;
8788
8818
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
8789
8819
  is_offline_access_code?: boolean | undefined;
@@ -8943,6 +8973,8 @@ export interface Routes {
8943
8973
  acs_credential_id: string;
8944
8974
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
8945
8975
  acs_user_id?: string | undefined;
8976
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
8977
+ connected_account_id: string;
8946
8978
  acs_credential_pool_id?: string | undefined;
8947
8979
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
8948
8980
  acs_system_id: string;
@@ -9069,6 +9101,8 @@ export interface Routes {
9069
9101
  acs_credential_id: string;
9070
9102
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
9071
9103
  acs_user_id?: string | undefined;
9104
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
9105
+ connected_account_id: string;
9072
9106
  acs_credential_pool_id?: string | undefined;
9073
9107
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
9074
9108
  acs_system_id: string;
@@ -9318,6 +9352,8 @@ export interface Routes {
9318
9352
  acs_credential_id: string;
9319
9353
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
9320
9354
  acs_user_id?: string | undefined;
9355
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
9356
+ connected_account_id: string;
9321
9357
  acs_credential_pool_id?: string | undefined;
9322
9358
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
9323
9359
  acs_system_id: string;
@@ -9444,6 +9480,8 @@ export interface Routes {
9444
9480
  acs_credential_id: string;
9445
9481
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
9446
9482
  acs_user_id?: string | undefined;
9483
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
9484
+ connected_account_id: string;
9447
9485
  acs_credential_pool_id?: string | undefined;
9448
9486
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
9449
9487
  acs_system_id: string;
@@ -10643,6 +10681,12 @@ export interface Routes {
10643
10681
  /** Description of the door in the Salto Space access system. */
10644
10682
  door_description?: string | undefined;
10645
10683
  } | undefined;
10684
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
10685
+ can_unlock_with_mobile_key?: boolean | undefined;
10686
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
10687
+ can_unlock_with_card?: boolean | undefined;
10688
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
10689
+ can_unlock_with_code?: boolean | undefined;
10646
10690
  }>;
10647
10691
  };
10648
10692
  };
@@ -11059,6 +11103,8 @@ export interface Routes {
11059
11103
  acs_credential_id: string;
11060
11104
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11061
11105
  acs_user_id?: string | undefined;
11106
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11107
+ connected_account_id: string;
11062
11108
  acs_credential_pool_id?: string | undefined;
11063
11109
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
11064
11110
  acs_system_id: string;
@@ -11250,6 +11296,8 @@ export interface Routes {
11250
11296
  acs_credential_id: string;
11251
11297
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11252
11298
  acs_user_id?: string | undefined;
11299
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11300
+ connected_account_id: string;
11253
11301
  acs_credential_pool_id?: string | undefined;
11254
11302
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
11255
11303
  acs_system_id: string;
@@ -11403,6 +11451,8 @@ export interface Routes {
11403
11451
  acs_credential_id: string;
11404
11452
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11405
11453
  acs_user_id?: string | undefined;
11454
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11455
+ connected_account_id: string;
11406
11456
  acs_credential_pool_id?: string | undefined;
11407
11457
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
11408
11458
  acs_system_id: string;
@@ -11560,6 +11610,8 @@ export interface Routes {
11560
11610
  acs_credential_id: string;
11561
11611
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11562
11612
  acs_user_id?: string | undefined;
11613
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11614
+ connected_account_id: string;
11563
11615
  acs_credential_pool_id?: string | undefined;
11564
11616
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
11565
11617
  acs_system_id: string;
@@ -11718,6 +11770,8 @@ export interface Routes {
11718
11770
  acs_credential_id: string;
11719
11771
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11720
11772
  acs_user_id?: string | undefined;
11773
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11774
+ connected_account_id: string;
11721
11775
  acs_credential_pool_id?: string | undefined;
11722
11776
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
11723
11777
  acs_system_id: string;
@@ -11942,6 +11996,12 @@ export interface Routes {
11942
11996
  /** Description of the door in the Salto Space access system. */
11943
11997
  door_description?: string | undefined;
11944
11998
  } | undefined;
11999
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
12000
+ can_unlock_with_mobile_key?: boolean | undefined;
12001
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
12002
+ can_unlock_with_card?: boolean | undefined;
12003
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
12004
+ can_unlock_with_code?: boolean | undefined;
11945
12005
  }>;
11946
12006
  };
11947
12007
  };
@@ -11970,6 +12030,8 @@ export interface Routes {
11970
12030
  acs_credential_id: string;
11971
12031
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
11972
12032
  acs_user_id?: string | undefined;
12033
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12034
+ connected_account_id: string;
11973
12035
  acs_credential_pool_id?: string | undefined;
11974
12036
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
11975
12037
  acs_system_id: string;
@@ -12111,6 +12173,8 @@ export interface Routes {
12111
12173
  acs_credential_id: string;
12112
12174
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12113
12175
  acs_user_id?: string | undefined;
12176
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12177
+ connected_account_id: string;
12114
12178
  acs_credential_pool_id?: string | undefined;
12115
12179
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12116
12180
  acs_system_id: string;
@@ -12262,6 +12326,8 @@ export interface Routes {
12262
12326
  acs_credential_id: string;
12263
12327
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12264
12328
  acs_user_id?: string | undefined;
12329
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12330
+ connected_account_id: string;
12265
12331
  acs_credential_pool_id?: string | undefined;
12266
12332
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12267
12333
  acs_system_id: string;
@@ -12411,6 +12477,8 @@ export interface Routes {
12411
12477
  acs_credential_id: string;
12412
12478
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12413
12479
  acs_user_id?: string | undefined;
12480
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12481
+ connected_account_id: string;
12414
12482
  acs_credential_pool_id?: string | undefined;
12415
12483
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12416
12484
  acs_system_id: string;
@@ -12688,6 +12756,8 @@ export interface Routes {
12688
12756
  acs_credential_id: string;
12689
12757
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12690
12758
  acs_user_id?: string | undefined;
12759
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12760
+ connected_account_id: string;
12691
12761
  acs_credential_pool_id?: string | undefined;
12692
12762
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12693
12763
  acs_system_id: string;
@@ -12814,6 +12884,8 @@ export interface Routes {
12814
12884
  acs_credential_id: string;
12815
12885
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12816
12886
  acs_user_id?: string | undefined;
12887
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12888
+ connected_account_id: string;
12817
12889
  acs_credential_pool_id?: string | undefined;
12818
12890
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12819
12891
  acs_system_id: string;
@@ -13063,6 +13135,8 @@ export interface Routes {
13063
13135
  acs_credential_id: string;
13064
13136
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13065
13137
  acs_user_id?: string | undefined;
13138
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13139
+ connected_account_id: string;
13066
13140
  acs_credential_pool_id?: string | undefined;
13067
13141
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
13068
13142
  acs_system_id: string;
@@ -13189,6 +13263,8 @@ export interface Routes {
13189
13263
  acs_credential_id: string;
13190
13264
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13191
13265
  acs_user_id?: string | undefined;
13266
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13267
+ connected_account_id: string;
13192
13268
  acs_credential_pool_id?: string | undefined;
13193
13269
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
13194
13270
  acs_system_id: string;
@@ -14003,6 +14079,8 @@ export interface Routes {
14003
14079
  acs_credential_id: string;
14004
14080
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14005
14081
  acs_user_id?: string | undefined;
14082
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14083
+ connected_account_id: string;
14006
14084
  acs_credential_pool_id?: string | undefined;
14007
14085
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14008
14086
  acs_system_id: string;
@@ -14129,6 +14207,8 @@ export interface Routes {
14129
14207
  acs_credential_id: string;
14130
14208
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14131
14209
  acs_user_id?: string | undefined;
14210
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14211
+ connected_account_id: string;
14132
14212
  acs_credential_pool_id?: string | undefined;
14133
14213
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14134
14214
  acs_system_id: string;
@@ -14378,6 +14458,8 @@ export interface Routes {
14378
14458
  acs_credential_id: string;
14379
14459
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14380
14460
  acs_user_id?: string | undefined;
14461
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14462
+ connected_account_id: string;
14381
14463
  acs_credential_pool_id?: string | undefined;
14382
14464
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14383
14465
  acs_system_id: string;
@@ -14504,6 +14586,8 @@ export interface Routes {
14504
14586
  acs_credential_id: string;
14505
14587
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14506
14588
  acs_user_id?: string | undefined;
14589
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14590
+ connected_account_id: string;
14507
14591
  acs_credential_pool_id?: string | undefined;
14508
14592
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14509
14593
  acs_system_id: string;
@@ -15414,6 +15498,8 @@ export interface Routes {
15414
15498
  acs_credential_id: string;
15415
15499
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15416
15500
  acs_user_id?: string | undefined;
15501
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15502
+ connected_account_id: string;
15417
15503
  acs_credential_pool_id?: string | undefined;
15418
15504
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
15419
15505
  acs_system_id: string;
@@ -15540,6 +15626,8 @@ export interface Routes {
15540
15626
  acs_credential_id: string;
15541
15627
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15542
15628
  acs_user_id?: string | undefined;
15629
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15630
+ connected_account_id: string;
15543
15631
  acs_credential_pool_id?: string | undefined;
15544
15632
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
15545
15633
  acs_system_id: string;
@@ -15789,6 +15877,8 @@ export interface Routes {
15789
15877
  acs_credential_id: string;
15790
15878
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15791
15879
  acs_user_id?: string | undefined;
15880
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15881
+ connected_account_id: string;
15792
15882
  acs_credential_pool_id?: string | undefined;
15793
15883
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
15794
15884
  acs_system_id: string;
@@ -15915,6 +16005,8 @@ export interface Routes {
15915
16005
  acs_credential_id: string;
15916
16006
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15917
16007
  acs_user_id?: string | undefined;
16008
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
16009
+ connected_account_id: string;
15918
16010
  acs_credential_pool_id?: string | undefined;
15919
16011
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
15920
16012
  acs_system_id: string;
@@ -16758,6 +16850,12 @@ export interface Routes {
16758
16850
  /** Description of the door in the Salto Space access system. */
16759
16851
  door_description?: string | undefined;
16760
16852
  } | undefined;
16853
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
16854
+ can_unlock_with_mobile_key?: boolean | undefined;
16855
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
16856
+ can_unlock_with_card?: boolean | undefined;
16857
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
16858
+ can_unlock_with_code?: boolean | undefined;
16761
16859
  };
16762
16860
  };
16763
16861
  };
@@ -16888,6 +16986,12 @@ export interface Routes {
16888
16986
  /** Description of the door in the Salto Space access system. */
16889
16987
  door_description?: string | undefined;
16890
16988
  } | undefined;
16989
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
16990
+ can_unlock_with_mobile_key?: boolean | undefined;
16991
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
16992
+ can_unlock_with_card?: boolean | undefined;
16993
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
16994
+ can_unlock_with_code?: boolean | undefined;
16891
16995
  }>;
16892
16996
  };
16893
16997
  };
@@ -16909,6 +17013,8 @@ export interface Routes {
16909
17013
  acs_credential_id: string;
16910
17014
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
16911
17015
  acs_user_id?: string | undefined;
17016
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
17017
+ connected_account_id: string;
16912
17018
  acs_credential_pool_id?: string | undefined;
16913
17019
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
16914
17020
  acs_system_id: string;
@@ -18285,6 +18391,12 @@ export interface Routes {
18285
18391
  /** Description of the door in the Salto Space access system. */
18286
18392
  door_description?: string | undefined;
18287
18393
  } | undefined;
18394
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
18395
+ can_unlock_with_mobile_key?: boolean | undefined;
18396
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
18397
+ can_unlock_with_card?: boolean | undefined;
18398
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
18399
+ can_unlock_with_code?: boolean | undefined;
18288
18400
  }>;
18289
18401
  };
18290
18402
  };
@@ -18987,6 +19099,8 @@ export interface Routes {
18987
19099
  acs_credential_id: string;
18988
19100
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
18989
19101
  acs_user_id?: string | undefined;
19102
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19103
+ connected_account_id: string;
18990
19104
  acs_credential_pool_id?: string | undefined;
18991
19105
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
18992
19106
  acs_system_id: string;
@@ -19113,6 +19227,8 @@ export interface Routes {
19113
19227
  acs_credential_id: string;
19114
19228
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19115
19229
  acs_user_id?: string | undefined;
19230
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19231
+ connected_account_id: string;
19116
19232
  acs_credential_pool_id?: string | undefined;
19117
19233
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
19118
19234
  acs_system_id: string;
@@ -19362,6 +19478,8 @@ export interface Routes {
19362
19478
  acs_credential_id: string;
19363
19479
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19364
19480
  acs_user_id?: string | undefined;
19481
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19482
+ connected_account_id: string;
19365
19483
  acs_credential_pool_id?: string | undefined;
19366
19484
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
19367
19485
  acs_system_id: string;
@@ -19488,6 +19606,8 @@ export interface Routes {
19488
19606
  acs_credential_id: string;
19489
19607
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19490
19608
  acs_user_id?: string | undefined;
19609
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19610
+ connected_account_id: string;
19491
19611
  acs_credential_pool_id?: string | undefined;
19492
19612
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
19493
19613
  acs_system_id: string;
@@ -20295,6 +20415,8 @@ export interface Routes {
20295
20415
  acs_credential_id: string;
20296
20416
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20297
20417
  acs_user_id?: string | undefined;
20418
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20419
+ connected_account_id: string;
20298
20420
  acs_credential_pool_id?: string | undefined;
20299
20421
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
20300
20422
  acs_system_id: string;
@@ -20421,6 +20543,8 @@ export interface Routes {
20421
20543
  acs_credential_id: string;
20422
20544
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20423
20545
  acs_user_id?: string | undefined;
20546
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20547
+ connected_account_id: string;
20424
20548
  acs_credential_pool_id?: string | undefined;
20425
20549
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
20426
20550
  acs_system_id: string;
@@ -20670,6 +20794,8 @@ export interface Routes {
20670
20794
  acs_credential_id: string;
20671
20795
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20672
20796
  acs_user_id?: string | undefined;
20797
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20798
+ connected_account_id: string;
20673
20799
  acs_credential_pool_id?: string | undefined;
20674
20800
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
20675
20801
  acs_system_id: string;
@@ -20796,6 +20922,8 @@ export interface Routes {
20796
20922
  acs_credential_id: string;
20797
20923
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20798
20924
  acs_user_id?: string | undefined;
20925
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
20926
+ connected_account_id: string;
20799
20927
  acs_credential_pool_id?: string | undefined;
20800
20928
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
20801
20929
  acs_system_id: string;
@@ -21854,7 +21982,6 @@ export interface Routes {
21854
21982
  connected_account_id: string | null;
21855
21983
  /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
21856
21984
  url: string;
21857
- /** */
21858
21985
  device_selection_mode: 'none' | 'single' | 'multiple';
21859
21986
  /** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
21860
21987
  accepted_providers: string[];
@@ -21934,7 +22061,6 @@ export interface Routes {
21934
22061
  connected_account_id: string | null;
21935
22062
  /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
21936
22063
  url: string;
21937
- /** */
21938
22064
  device_selection_mode: 'none' | 'single' | 'multiple';
21939
22065
  /** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
21940
22066
  accepted_providers: string[];
@@ -21998,7 +22124,6 @@ export interface Routes {
21998
22124
  connected_account_id: string | null;
21999
22125
  /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
22000
22126
  url: string;
22001
- /** */
22002
22127
  device_selection_mode: 'none' | 'single' | 'multiple';
22003
22128
  /** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
22004
22129
  accepted_providers: string[];
@@ -22196,6 +22321,8 @@ export interface Routes {
22196
22321
  automatically_manage_new_devices: boolean;
22197
22322
  /** Your unique key for the customer associated with this connected account. */
22198
22323
  customer_key?: string | undefined;
22324
+ /** List of capabilities that were accepted during the account connection process. */
22325
+ accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
22199
22326
  };
22200
22327
  };
22201
22328
  };
@@ -22342,6 +22469,8 @@ export interface Routes {
22342
22469
  automatically_manage_new_devices: boolean;
22343
22470
  /** Your unique key for the customer associated with this connected account. */
22344
22471
  customer_key?: string | undefined;
22472
+ /** List of capabilities that were accepted during the account connection process. */
22473
+ accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
22345
22474
  }>;
22346
22475
  /** Information about the current page of results. */
22347
22476
  pagination: {
@@ -22507,6 +22636,8 @@ export interface Routes {
22507
22636
  automatically_manage_new_devices: boolean;
22508
22637
  /** Your unique key for the customer associated with this connected account. */
22509
22638
  customer_key?: string | undefined;
22639
+ /** List of capabilities that were accepted during the account connection process. */
22640
+ accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
22510
22641
  };
22511
22642
  };
22512
22643
  };
@@ -24210,6 +24341,8 @@ export interface Routes {
24210
24341
  unstable_location_id?: (string | null) | undefined;
24211
24342
  /** ID of the space for which you want to list devices. */
24212
24343
  space_id?: string | undefined;
24344
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
24345
+ search?: string | undefined;
24213
24346
  };
24214
24347
  formData: {};
24215
24348
  jsonResponse: {
@@ -25843,6 +25976,8 @@ export interface Routes {
25843
25976
  unstable_location_id?: (string | null) | undefined;
25844
25977
  /** ID of the space for which you want to list devices. */
25845
25978
  space_id?: string | undefined;
25979
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
25980
+ search?: string | undefined;
25846
25981
  };
25847
25982
  formData: {};
25848
25983
  jsonResponse: {
@@ -31392,6 +31527,8 @@ export interface Routes {
31392
31527
  unstable_location_id?: (string | null) | undefined;
31393
31528
  /** ID of the space for which you want to list devices. */
31394
31529
  space_id?: string | undefined;
31530
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
31531
+ search?: string | undefined;
31395
31532
  };
31396
31533
  formData: {};
31397
31534
  jsonResponse: {
@@ -33770,6 +33907,8 @@ export interface Routes {
33770
33907
  acs_credential_id: string;
33771
33908
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
33772
33909
  acs_user_id?: string | undefined;
33910
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
33911
+ connected_account_id: string;
33773
33912
  acs_credential_pool_id?: string | undefined;
33774
33913
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
33775
33914
  acs_system_id: string;
@@ -33896,6 +34035,8 @@ export interface Routes {
33896
34035
  acs_credential_id: string;
33897
34036
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
33898
34037
  acs_user_id?: string | undefined;
34038
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
34039
+ connected_account_id: string;
33899
34040
  acs_credential_pool_id?: string | undefined;
33900
34041
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
33901
34042
  acs_system_id: string;
@@ -34145,6 +34286,8 @@ export interface Routes {
34145
34286
  acs_credential_id: string;
34146
34287
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
34147
34288
  acs_user_id?: string | undefined;
34289
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
34290
+ connected_account_id: string;
34148
34291
  acs_credential_pool_id?: string | undefined;
34149
34292
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
34150
34293
  acs_system_id: string;
@@ -34271,6 +34414,8 @@ export interface Routes {
34271
34414
  acs_credential_id: string;
34272
34415
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
34273
34416
  acs_user_id?: string | undefined;
34417
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
34418
+ connected_account_id: string;
34274
34419
  acs_credential_pool_id?: string | undefined;
34275
34420
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
34276
34421
  acs_system_id: string;
@@ -35085,6 +35230,8 @@ export interface Routes {
35085
35230
  acs_credential_id: string;
35086
35231
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35087
35232
  acs_user_id?: string | undefined;
35233
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35234
+ connected_account_id: string;
35088
35235
  acs_credential_pool_id?: string | undefined;
35089
35236
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
35090
35237
  acs_system_id: string;
@@ -35211,6 +35358,8 @@ export interface Routes {
35211
35358
  acs_credential_id: string;
35212
35359
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35213
35360
  acs_user_id?: string | undefined;
35361
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35362
+ connected_account_id: string;
35214
35363
  acs_credential_pool_id?: string | undefined;
35215
35364
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
35216
35365
  acs_system_id: string;
@@ -35460,6 +35609,8 @@ export interface Routes {
35460
35609
  acs_credential_id: string;
35461
35610
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35462
35611
  acs_user_id?: string | undefined;
35612
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35613
+ connected_account_id: string;
35463
35614
  acs_credential_pool_id?: string | undefined;
35464
35615
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
35465
35616
  acs_system_id: string;
@@ -35586,6 +35737,8 @@ export interface Routes {
35586
35737
  acs_credential_id: string;
35587
35738
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35588
35739
  acs_user_id?: string | undefined;
35740
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
35741
+ connected_account_id: string;
35589
35742
  acs_credential_pool_id?: string | undefined;
35590
35743
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
35591
35744
  acs_system_id: string;
@@ -36398,6 +36551,8 @@ export interface Routes {
36398
36551
  acs_credential_id: string;
36399
36552
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
36400
36553
  acs_user_id?: string | undefined;
36554
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
36555
+ connected_account_id: string;
36401
36556
  acs_credential_pool_id?: string | undefined;
36402
36557
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
36403
36558
  acs_system_id: string;
@@ -36524,6 +36679,8 @@ export interface Routes {
36524
36679
  acs_credential_id: string;
36525
36680
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
36526
36681
  acs_user_id?: string | undefined;
36682
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
36683
+ connected_account_id: string;
36527
36684
  acs_credential_pool_id?: string | undefined;
36528
36685
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
36529
36686
  acs_system_id: string;
@@ -36773,6 +36930,8 @@ export interface Routes {
36773
36930
  acs_credential_id: string;
36774
36931
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
36775
36932
  acs_user_id?: string | undefined;
36933
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
36934
+ connected_account_id: string;
36776
36935
  acs_credential_pool_id?: string | undefined;
36777
36936
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
36778
36937
  acs_system_id: string;
@@ -36899,6 +37058,8 @@ export interface Routes {
36899
37058
  acs_credential_id: string;
36900
37059
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
36901
37060
  acs_user_id?: string | undefined;
37061
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
37062
+ connected_account_id: string;
36902
37063
  acs_credential_pool_id?: string | undefined;
36903
37064
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
36904
37065
  acs_system_id: string;
@@ -37713,6 +37874,8 @@ export interface Routes {
37713
37874
  acs_credential_id: string;
37714
37875
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
37715
37876
  acs_user_id?: string | undefined;
37877
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
37878
+ connected_account_id: string;
37716
37879
  acs_credential_pool_id?: string | undefined;
37717
37880
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
37718
37881
  acs_system_id: string;
@@ -37839,6 +38002,8 @@ export interface Routes {
37839
38002
  acs_credential_id: string;
37840
38003
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
37841
38004
  acs_user_id?: string | undefined;
38005
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
38006
+ connected_account_id: string;
37842
38007
  acs_credential_pool_id?: string | undefined;
37843
38008
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
37844
38009
  acs_system_id: string;
@@ -38088,6 +38253,8 @@ export interface Routes {
38088
38253
  acs_credential_id: string;
38089
38254
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
38090
38255
  acs_user_id?: string | undefined;
38256
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
38257
+ connected_account_id: string;
38091
38258
  acs_credential_pool_id?: string | undefined;
38092
38259
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
38093
38260
  acs_system_id: string;
@@ -38214,6 +38381,8 @@ export interface Routes {
38214
38381
  acs_credential_id: string;
38215
38382
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
38216
38383
  acs_user_id?: string | undefined;
38384
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
38385
+ connected_account_id: string;
38217
38386
  acs_credential_pool_id?: string | undefined;
38218
38387
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
38219
38388
  acs_system_id: string;
@@ -38950,6 +39119,8 @@ export interface Routes {
38950
39119
  unstable_location_id?: (string | null) | undefined;
38951
39120
  /** ID of the space for which you want to list devices. */
38952
39121
  space_id?: string | undefined;
39122
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
39123
+ search?: string | undefined;
38953
39124
  };
38954
39125
  formData: {};
38955
39126
  jsonResponse: {
@@ -41338,6 +41509,8 @@ export interface Routes {
41338
41509
  acs_credential_id: string;
41339
41510
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41340
41511
  acs_user_id?: string | undefined;
41512
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41513
+ connected_account_id: string;
41341
41514
  acs_credential_pool_id?: string | undefined;
41342
41515
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
41343
41516
  acs_system_id: string;
@@ -41464,6 +41637,8 @@ export interface Routes {
41464
41637
  acs_credential_id: string;
41465
41638
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41466
41639
  acs_user_id?: string | undefined;
41640
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41641
+ connected_account_id: string;
41467
41642
  acs_credential_pool_id?: string | undefined;
41468
41643
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
41469
41644
  acs_system_id: string;
@@ -41713,6 +41888,8 @@ export interface Routes {
41713
41888
  acs_credential_id: string;
41714
41889
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41715
41890
  acs_user_id?: string | undefined;
41891
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41892
+ connected_account_id: string;
41716
41893
  acs_credential_pool_id?: string | undefined;
41717
41894
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
41718
41895
  acs_system_id: string;
@@ -41839,6 +42016,8 @@ export interface Routes {
41839
42016
  acs_credential_id: string;
41840
42017
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41841
42018
  acs_user_id?: string | undefined;
42019
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42020
+ connected_account_id: string;
41842
42021
  acs_credential_pool_id?: string | undefined;
41843
42022
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
41844
42023
  acs_system_id: string;
@@ -42672,6 +42851,8 @@ export interface Routes {
42672
42851
  acs_credential_id: string;
42673
42852
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42674
42853
  acs_user_id?: string | undefined;
42854
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42855
+ connected_account_id: string;
42675
42856
  acs_credential_pool_id?: string | undefined;
42676
42857
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
42677
42858
  acs_system_id: string;
@@ -42798,6 +42979,8 @@ export interface Routes {
42798
42979
  acs_credential_id: string;
42799
42980
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42800
42981
  acs_user_id?: string | undefined;
42982
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42983
+ connected_account_id: string;
42801
42984
  acs_credential_pool_id?: string | undefined;
42802
42985
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
42803
42986
  acs_system_id: string;
@@ -43047,6 +43230,8 @@ export interface Routes {
43047
43230
  acs_credential_id: string;
43048
43231
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43049
43232
  acs_user_id?: string | undefined;
43233
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43234
+ connected_account_id: string;
43050
43235
  acs_credential_pool_id?: string | undefined;
43051
43236
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
43052
43237
  acs_system_id: string;
@@ -43173,6 +43358,8 @@ export interface Routes {
43173
43358
  acs_credential_id: string;
43174
43359
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43175
43360
  acs_user_id?: string | undefined;
43361
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43362
+ connected_account_id: string;
43176
43363
  acs_credential_pool_id?: string | undefined;
43177
43364
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
43178
43365
  acs_system_id: string;
@@ -44060,6 +44247,8 @@ export interface Routes {
44060
44247
  acs_credential_id: string;
44061
44248
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44062
44249
  acs_user_id?: string | undefined;
44250
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44251
+ connected_account_id: string;
44063
44252
  acs_credential_pool_id?: string | undefined;
44064
44253
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
44065
44254
  acs_system_id: string;
@@ -44186,6 +44375,8 @@ export interface Routes {
44186
44375
  acs_credential_id: string;
44187
44376
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44188
44377
  acs_user_id?: string | undefined;
44378
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44379
+ connected_account_id: string;
44189
44380
  acs_credential_pool_id?: string | undefined;
44190
44381
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
44191
44382
  acs_system_id: string;
@@ -44435,6 +44626,8 @@ export interface Routes {
44435
44626
  acs_credential_id: string;
44436
44627
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44437
44628
  acs_user_id?: string | undefined;
44629
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44630
+ connected_account_id: string;
44438
44631
  acs_credential_pool_id?: string | undefined;
44439
44632
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
44440
44633
  acs_system_id: string;
@@ -44561,6 +44754,8 @@ export interface Routes {
44561
44754
  acs_credential_id: string;
44562
44755
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44563
44756
  acs_user_id?: string | undefined;
44757
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44758
+ connected_account_id: string;
44564
44759
  acs_credential_pool_id?: string | undefined;
44565
44760
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
44566
44761
  acs_system_id: string;
@@ -45894,6 +46089,8 @@ export interface Routes {
45894
46089
  acs_credential_id: string;
45895
46090
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
45896
46091
  acs_user_id?: string | undefined;
46092
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
46093
+ connected_account_id: string;
45897
46094
  acs_credential_pool_id?: string | undefined;
45898
46095
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
45899
46096
  acs_system_id: string;
@@ -46056,6 +46253,8 @@ export interface Routes {
46056
46253
  acs_credentials: Array<{
46057
46254
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
46058
46255
  acs_user_id?: string | undefined;
46256
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
46257
+ connected_account_id: string;
46059
46258
  acs_credential_pool_id?: string | undefined;
46060
46259
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
46061
46260
  acs_system_id: string;
@@ -46267,6 +46466,12 @@ export interface Routes {
46267
46466
  /** Description of the door in the Salto Space access system. */
46268
46467
  door_description?: string | undefined;
46269
46468
  } | undefined;
46469
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
46470
+ can_unlock_with_mobile_key?: boolean | undefined;
46471
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
46472
+ can_unlock_with_card?: boolean | undefined;
46473
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
46474
+ can_unlock_with_code?: boolean | undefined;
46270
46475
  }>;
46271
46476
  }>;
46272
46477
  }>;
@@ -46627,6 +46832,8 @@ export interface Routes {
46627
46832
  acs_credential_id: string;
46628
46833
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
46629
46834
  acs_user_id?: string | undefined;
46835
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
46836
+ connected_account_id: string;
46630
46837
  acs_credential_pool_id?: string | undefined;
46631
46838
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
46632
46839
  acs_system_id: string;
@@ -46753,6 +46960,8 @@ export interface Routes {
46753
46960
  acs_credential_id: string;
46754
46961
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
46755
46962
  acs_user_id?: string | undefined;
46963
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
46964
+ connected_account_id: string;
46756
46965
  acs_credential_pool_id?: string | undefined;
46757
46966
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
46758
46967
  acs_system_id: string;
@@ -47002,6 +47211,8 @@ export interface Routes {
47002
47211
  acs_credential_id: string;
47003
47212
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
47004
47213
  acs_user_id?: string | undefined;
47214
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
47215
+ connected_account_id: string;
47005
47216
  acs_credential_pool_id?: string | undefined;
47006
47217
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
47007
47218
  acs_system_id: string;
@@ -47128,6 +47339,8 @@ export interface Routes {
47128
47339
  acs_credential_id: string;
47129
47340
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
47130
47341
  acs_user_id?: string | undefined;
47342
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
47343
+ connected_account_id: string;
47131
47344
  acs_credential_pool_id?: string | undefined;
47132
47345
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
47133
47346
  acs_system_id: string;
@@ -47946,6 +48159,8 @@ export interface Routes {
47946
48159
  acs_credential_id: string;
47947
48160
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
47948
48161
  acs_user_id?: string | undefined;
48162
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48163
+ connected_account_id: string;
47949
48164
  acs_credential_pool_id?: string | undefined;
47950
48165
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
47951
48166
  acs_system_id: string;
@@ -48072,6 +48287,8 @@ export interface Routes {
48072
48287
  acs_credential_id: string;
48073
48288
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48074
48289
  acs_user_id?: string | undefined;
48290
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48291
+ connected_account_id: string;
48075
48292
  acs_credential_pool_id?: string | undefined;
48076
48293
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
48077
48294
  acs_system_id: string;
@@ -48321,6 +48538,8 @@ export interface Routes {
48321
48538
  acs_credential_id: string;
48322
48539
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48323
48540
  acs_user_id?: string | undefined;
48541
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48542
+ connected_account_id: string;
48324
48543
  acs_credential_pool_id?: string | undefined;
48325
48544
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
48326
48545
  acs_system_id: string;
@@ -48447,6 +48666,8 @@ export interface Routes {
48447
48666
  acs_credential_id: string;
48448
48667
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48449
48668
  acs_user_id?: string | undefined;
48669
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48670
+ connected_account_id: string;
48450
48671
  acs_credential_pool_id?: string | undefined;
48451
48672
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
48452
48673
  acs_system_id: string;
@@ -49353,6 +49574,8 @@ export interface Routes {
49353
49574
  acs_credential_id: string;
49354
49575
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49355
49576
  acs_user_id?: string | undefined;
49577
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49578
+ connected_account_id: string;
49356
49579
  acs_credential_pool_id?: string | undefined;
49357
49580
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
49358
49581
  acs_system_id: string;
@@ -49479,6 +49702,8 @@ export interface Routes {
49479
49702
  acs_credential_id: string;
49480
49703
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49481
49704
  acs_user_id?: string | undefined;
49705
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49706
+ connected_account_id: string;
49482
49707
  acs_credential_pool_id?: string | undefined;
49483
49708
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
49484
49709
  acs_system_id: string;
@@ -49728,6 +49953,8 @@ export interface Routes {
49728
49953
  acs_credential_id: string;
49729
49954
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49730
49955
  acs_user_id?: string | undefined;
49956
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49957
+ connected_account_id: string;
49731
49958
  acs_credential_pool_id?: string | undefined;
49732
49959
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
49733
49960
  acs_system_id: string;
@@ -49854,6 +50081,8 @@ export interface Routes {
49854
50081
  acs_credential_id: string;
49855
50082
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49856
50083
  acs_user_id?: string | undefined;
50084
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
50085
+ connected_account_id: string;
49857
50086
  acs_credential_pool_id?: string | undefined;
49858
50087
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
49859
50088
  acs_system_id: string;
@@ -51812,6 +52041,8 @@ export interface Routes {
51812
52041
  acs_credential_id: string;
51813
52042
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51814
52043
  acs_user_id?: string | undefined;
52044
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52045
+ connected_account_id: string;
51815
52046
  acs_credential_pool_id?: string | undefined;
51816
52047
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
51817
52048
  acs_system_id: string;
@@ -51938,6 +52169,8 @@ export interface Routes {
51938
52169
  acs_credential_id: string;
51939
52170
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51940
52171
  acs_user_id?: string | undefined;
52172
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52173
+ connected_account_id: string;
51941
52174
  acs_credential_pool_id?: string | undefined;
51942
52175
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
51943
52176
  acs_system_id: string;
@@ -52187,6 +52420,8 @@ export interface Routes {
52187
52420
  acs_credential_id: string;
52188
52421
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52189
52422
  acs_user_id?: string | undefined;
52423
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52424
+ connected_account_id: string;
52190
52425
  acs_credential_pool_id?: string | undefined;
52191
52426
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
52192
52427
  acs_system_id: string;
@@ -52313,6 +52548,8 @@ export interface Routes {
52313
52548
  acs_credential_id: string;
52314
52549
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52315
52550
  acs_user_id?: string | undefined;
52551
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52552
+ connected_account_id: string;
52316
52553
  acs_credential_pool_id?: string | undefined;
52317
52554
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
52318
52555
  acs_system_id: string;
@@ -53135,6 +53372,8 @@ export interface Routes {
53135
53372
  acs_credential_id: string;
53136
53373
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53137
53374
  acs_user_id?: string | undefined;
53375
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53376
+ connected_account_id: string;
53138
53377
  acs_credential_pool_id?: string | undefined;
53139
53378
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
53140
53379
  acs_system_id: string;
@@ -53261,6 +53500,8 @@ export interface Routes {
53261
53500
  acs_credential_id: string;
53262
53501
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53263
53502
  acs_user_id?: string | undefined;
53503
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53504
+ connected_account_id: string;
53264
53505
  acs_credential_pool_id?: string | undefined;
53265
53506
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
53266
53507
  acs_system_id: string;
@@ -53510,6 +53751,8 @@ export interface Routes {
53510
53751
  acs_credential_id: string;
53511
53752
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53512
53753
  acs_user_id?: string | undefined;
53754
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53755
+ connected_account_id: string;
53513
53756
  acs_credential_pool_id?: string | undefined;
53514
53757
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
53515
53758
  acs_system_id: string;
@@ -53636,6 +53879,8 @@ export interface Routes {
53636
53879
  acs_credential_id: string;
53637
53880
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53638
53881
  acs_user_id?: string | undefined;
53882
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53883
+ connected_account_id: string;
53639
53884
  acs_credential_pool_id?: string | undefined;
53640
53885
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
53641
53886
  acs_system_id: string;
@@ -54337,6 +54582,8 @@ export interface Routes {
54337
54582
  unstable_location_id?: (string | null) | undefined;
54338
54583
  /** ID of the space for which you want to list devices. */
54339
54584
  space_id?: string | undefined;
54585
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
54586
+ search?: string | undefined;
54340
54587
  };
54341
54588
  formData: {};
54342
54589
  jsonResponse: {
@@ -56715,6 +56962,8 @@ export interface Routes {
56715
56962
  acs_credential_id: string;
56716
56963
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56717
56964
  acs_user_id?: string | undefined;
56965
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56966
+ connected_account_id: string;
56718
56967
  acs_credential_pool_id?: string | undefined;
56719
56968
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
56720
56969
  acs_system_id: string;
@@ -56841,6 +57090,8 @@ export interface Routes {
56841
57090
  acs_credential_id: string;
56842
57091
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56843
57092
  acs_user_id?: string | undefined;
57093
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57094
+ connected_account_id: string;
56844
57095
  acs_credential_pool_id?: string | undefined;
56845
57096
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
56846
57097
  acs_system_id: string;
@@ -57090,6 +57341,8 @@ export interface Routes {
57090
57341
  acs_credential_id: string;
57091
57342
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57092
57343
  acs_user_id?: string | undefined;
57344
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57345
+ connected_account_id: string;
57093
57346
  acs_credential_pool_id?: string | undefined;
57094
57347
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
57095
57348
  acs_system_id: string;
@@ -57216,6 +57469,8 @@ export interface Routes {
57216
57469
  acs_credential_id: string;
57217
57470
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57218
57471
  acs_user_id?: string | undefined;
57472
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57473
+ connected_account_id: string;
57219
57474
  acs_credential_pool_id?: string | undefined;
57220
57475
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
57221
57476
  acs_system_id: string;
@@ -58227,6 +58482,8 @@ export interface Routes {
58227
58482
  acs_credential_id: string;
58228
58483
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58229
58484
  acs_user_id?: string | undefined;
58485
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58486
+ connected_account_id: string;
58230
58487
  acs_credential_pool_id?: string | undefined;
58231
58488
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
58232
58489
  acs_system_id: string;
@@ -58353,6 +58610,8 @@ export interface Routes {
58353
58610
  acs_credential_id: string;
58354
58611
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58355
58612
  acs_user_id?: string | undefined;
58613
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58614
+ connected_account_id: string;
58356
58615
  acs_credential_pool_id?: string | undefined;
58357
58616
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
58358
58617
  acs_system_id: string;
@@ -58602,6 +58861,8 @@ export interface Routes {
58602
58861
  acs_credential_id: string;
58603
58862
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58604
58863
  acs_user_id?: string | undefined;
58864
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58865
+ connected_account_id: string;
58605
58866
  acs_credential_pool_id?: string | undefined;
58606
58867
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
58607
58868
  acs_system_id: string;
@@ -58728,6 +58989,8 @@ export interface Routes {
58728
58989
  acs_credential_id: string;
58729
58990
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58730
58991
  acs_user_id?: string | undefined;
58992
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58993
+ connected_account_id: string;
58731
58994
  acs_credential_pool_id?: string | undefined;
58732
58995
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
58733
58996
  acs_system_id: string;
@@ -59569,6 +59832,8 @@ export interface Routes {
59569
59832
  acs_credential_id: string;
59570
59833
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
59571
59834
  acs_user_id?: string | undefined;
59835
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
59836
+ connected_account_id: string;
59572
59837
  acs_credential_pool_id?: string | undefined;
59573
59838
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
59574
59839
  acs_system_id: string;
@@ -59695,6 +59960,8 @@ export interface Routes {
59695
59960
  acs_credential_id: string;
59696
59961
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
59697
59962
  acs_user_id?: string | undefined;
59963
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
59964
+ connected_account_id: string;
59698
59965
  acs_credential_pool_id?: string | undefined;
59699
59966
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
59700
59967
  acs_system_id: string;
@@ -59944,6 +60211,8 @@ export interface Routes {
59944
60211
  acs_credential_id: string;
59945
60212
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
59946
60213
  acs_user_id?: string | undefined;
60214
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60215
+ connected_account_id: string;
59947
60216
  acs_credential_pool_id?: string | undefined;
59948
60217
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
59949
60218
  acs_system_id: string;
@@ -60070,6 +60339,8 @@ export interface Routes {
60070
60339
  acs_credential_id: string;
60071
60340
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60072
60341
  acs_user_id?: string | undefined;
60342
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60343
+ connected_account_id: string;
60073
60344
  acs_credential_pool_id?: string | undefined;
60074
60345
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
60075
60346
  acs_system_id: string;
@@ -61008,6 +61279,8 @@ export interface Routes {
61008
61279
  acs_credential_id: string;
61009
61280
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61010
61281
  acs_user_id?: string | undefined;
61282
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61283
+ connected_account_id: string;
61011
61284
  acs_credential_pool_id?: string | undefined;
61012
61285
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
61013
61286
  acs_system_id: string;
@@ -61134,6 +61407,8 @@ export interface Routes {
61134
61407
  acs_credential_id: string;
61135
61408
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61136
61409
  acs_user_id?: string | undefined;
61410
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61411
+ connected_account_id: string;
61137
61412
  acs_credential_pool_id?: string | undefined;
61138
61413
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
61139
61414
  acs_system_id: string;
@@ -61383,6 +61658,8 @@ export interface Routes {
61383
61658
  acs_credential_id: string;
61384
61659
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61385
61660
  acs_user_id?: string | undefined;
61661
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61662
+ connected_account_id: string;
61386
61663
  acs_credential_pool_id?: string | undefined;
61387
61664
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
61388
61665
  acs_system_id: string;
@@ -61509,6 +61786,8 @@ export interface Routes {
61509
61786
  acs_credential_id: string;
61510
61787
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61511
61788
  acs_user_id?: string | undefined;
61789
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61790
+ connected_account_id: string;
61512
61791
  acs_credential_pool_id?: string | undefined;
61513
61792
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
61514
61793
  acs_system_id: string;
@@ -63088,6 +63367,8 @@ export interface Routes {
63088
63367
  queryParams: {};
63089
63368
  jsonBody: {};
63090
63369
  commonParams: {
63370
+ /** String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
63371
+ search?: string | undefined;
63091
63372
  /** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
63092
63373
  credential_manager_acs_system_id?: string | undefined;
63093
63374
  };
@@ -66151,6 +66432,8 @@ export interface Routes {
66151
66432
  acs_credential_id: string;
66152
66433
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66153
66434
  acs_user_id?: string | undefined;
66435
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66436
+ connected_account_id: string;
66154
66437
  acs_credential_pool_id?: string | undefined;
66155
66438
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66156
66439
  acs_system_id: string;
@@ -66277,6 +66560,8 @@ export interface Routes {
66277
66560
  acs_credential_id: string;
66278
66561
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66279
66562
  acs_user_id?: string | undefined;
66563
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66564
+ connected_account_id: string;
66280
66565
  acs_credential_pool_id?: string | undefined;
66281
66566
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66282
66567
  acs_system_id: string;
@@ -66526,6 +66811,8 @@ export interface Routes {
66526
66811
  acs_credential_id: string;
66527
66812
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66528
66813
  acs_user_id?: string | undefined;
66814
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66815
+ connected_account_id: string;
66529
66816
  acs_credential_pool_id?: string | undefined;
66530
66817
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66531
66818
  acs_system_id: string;
@@ -66652,6 +66939,8 @@ export interface Routes {
66652
66939
  acs_credential_id: string;
66653
66940
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66654
66941
  acs_user_id?: string | undefined;
66942
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66943
+ connected_account_id: string;
66655
66944
  acs_credential_pool_id?: string | undefined;
66656
66945
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66657
66946
  acs_system_id: string;