@seamapi/types 1.462.0 → 1.464.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 (73) hide show
  1. package/dist/connect.cjs +179 -146
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +354 -316
  4. package/dist/index.cjs +179 -146
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +4 -4
  7. package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -2
  8. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  9. package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -6
  10. package/lib/seam/connect/models/access-grants/access-grant.js +1 -2
  11. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-access-group.d.ts +2 -2
  13. package/lib/seam/connect/models/acs/acs-access-group.js +1 -1
  14. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  15. package/lib/seam/connect/models/acs/acs-credential.d.ts +2 -2
  16. package/lib/seam/connect/models/acs/acs-credential.js +1 -1
  17. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  18. package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
  19. package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
  20. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  21. package/lib/seam/connect/models/acs/acs-system.d.ts +12 -11
  22. package/lib/seam/connect/models/acs/acs-system.js +3 -2
  23. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  24. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +5 -4
  25. package/lib/seam/connect/models/acs/acs-users/acs-user.js +2 -2
  26. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
  27. package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +3 -2
  28. package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +1 -1
  29. package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
  30. package/lib/seam/connect/models/batch.d.ts +266 -243
  31. package/lib/seam/connect/models/batch.js +3 -0
  32. package/lib/seam/connect/models/batch.js.map +1 -1
  33. package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +2 -2
  34. package/lib/seam/connect/models/bridges/bridge-client-session.js +1 -1
  35. package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
  36. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +4 -4
  37. package/lib/seam/connect/models/connected-accounts/connected-account.js +2 -2
  38. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  39. package/lib/seam/connect/models/customer/customer-portal.d.ts +34 -0
  40. package/lib/seam/connect/models/customer/customer-portal.js +18 -0
  41. package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
  42. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  43. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  44. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  45. package/lib/seam/connect/models/devices/device.d.ts +4 -62
  46. package/lib/seam/connect/models/devices/device.js +2 -16
  47. package/lib/seam/connect/models/devices/device.js.map +1 -1
  48. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -21
  49. package/lib/seam/connect/models/user-identities/user-identity.d.ts +5 -4
  50. package/lib/seam/connect/models/user-identities/user-identity.js +2 -2
  51. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  52. package/lib/seam/connect/openapi.d.ts +82 -2
  53. package/lib/seam/connect/openapi.js +84 -46
  54. package/lib/seam/connect/openapi.js.map +1 -1
  55. package/lib/seam/connect/route-types.d.ts +136 -179
  56. package/package.json +1 -1
  57. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +4 -4
  58. package/src/lib/seam/connect/models/access-grants/access-grant.ts +1 -2
  59. package/src/lib/seam/connect/models/acs/acs-access-group.ts +2 -2
  60. package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -2
  61. package/src/lib/seam/connect/models/acs/acs-encoder.ts +2 -2
  62. package/src/lib/seam/connect/models/acs/acs-system.ts +5 -4
  63. package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +4 -4
  64. package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +2 -2
  65. package/src/lib/seam/connect/models/batch.ts +3 -0
  66. package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +2 -2
  67. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +4 -4
  68. package/src/lib/seam/connect/models/customer/customer-portal.ts +23 -0
  69. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  70. package/src/lib/seam/connect/models/devices/device.ts +4 -19
  71. package/src/lib/seam/connect/models/user-identities/user-identity.ts +4 -4
  72. package/src/lib/seam/connect/openapi.ts +88 -54
  73. package/src/lib/seam/connect/route-types.ts +148 -182
@@ -9981,7 +9981,7 @@ export interface Routes {
9981
9981
  /** Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
9982
9982
  starts_at?: string | undefined;
9983
9983
  /** Date and time at which the validity of the new grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
9984
- ends_at?: string | undefined;
9984
+ ends_at?: (string | undefined) | null;
9985
9985
  };
9986
9986
  formData: {};
9987
9987
  jsonResponse: {
@@ -10024,9 +10024,9 @@ export interface Routes {
10024
10024
  /** Date and time at which the Access Grant was created. */
10025
10025
  created_at: string;
10026
10026
  /** Date and time at which the Access Grant starts. */
10027
- starts_at?: string | undefined;
10027
+ starts_at: string;
10028
10028
  /** Date and time at which the Access Grant ends. */
10029
- ends_at?: string | undefined;
10029
+ ends_at: string | null;
10030
10030
  };
10031
10031
  };
10032
10032
  };
@@ -10095,9 +10095,9 @@ export interface Routes {
10095
10095
  /** Date and time at which the Access Grant was created. */
10096
10096
  created_at: string;
10097
10097
  /** Date and time at which the Access Grant starts. */
10098
- starts_at?: string | undefined;
10098
+ starts_at: string;
10099
10099
  /** Date and time at which the Access Grant ends. */
10100
- ends_at?: string | undefined;
10100
+ ends_at: string | null;
10101
10101
  };
10102
10102
  };
10103
10103
  };
@@ -11226,13 +11226,6 @@ export interface Routes {
11226
11226
  created_at: string;
11227
11227
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11228
11228
  warning_code: 'third_party_integration_detected';
11229
- } | {
11230
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11231
- message: string;
11232
- /** Date and time at which Seam created the warning. */
11233
- created_at: string;
11234
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11235
- warning_code: 'nest_thermostat_in_manual_eco_mode';
11236
11229
  } | {
11237
11230
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11238
11231
  message: string;
@@ -11623,7 +11616,7 @@ export interface Routes {
11623
11616
  acs_user_count?: number | undefined;
11624
11617
  acs_access_group_count?: number | undefined;
11625
11618
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
11626
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
11619
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
11627
11620
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
11628
11621
  external_type_display_name?: string | undefined;
11629
11622
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -11638,7 +11631,7 @@ export interface Routes {
11638
11631
  } | undefined;
11639
11632
  /**
11640
11633
  * @deprecated Use `external_type`. */
11641
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
11634
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
11642
11635
  /**
11643
11636
  * @deprecated Use `external_type_display_name`. */
11644
11637
  system_type_display_name?: string | undefined;
@@ -11796,9 +11789,9 @@ export interface Routes {
11796
11789
  /** Date and time at which the Access Grant was created. */
11797
11790
  created_at: string;
11798
11791
  /** Date and time at which the Access Grant starts. */
11799
- starts_at?: string | undefined;
11792
+ starts_at: string;
11800
11793
  /** Date and time at which the Access Grant ends. */
11801
- ends_at?: string | undefined;
11794
+ ends_at: string | null;
11802
11795
  }>;
11803
11796
  };
11804
11797
  };
@@ -11813,7 +11806,7 @@ export interface Routes {
11813
11806
  /** ID of the Access Grant to update. */
11814
11807
  access_grant_id: string;
11815
11808
  /** Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
11816
- starts_at?: (string | null) | undefined;
11809
+ starts_at?: string | undefined;
11817
11810
  /** Date and time at which the validity of the grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
11818
11811
  ends_at?: (string | null) | undefined;
11819
11812
  };
@@ -14330,13 +14323,6 @@ export interface Routes {
14330
14323
  created_at: string;
14331
14324
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14332
14325
  warning_code: 'third_party_integration_detected';
14333
- } | {
14334
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
14335
- message: string;
14336
- /** Date and time at which Seam created the warning. */
14337
- created_at: string;
14338
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14339
- warning_code: 'nest_thermostat_in_manual_eco_mode';
14340
14326
  } | {
14341
14327
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
14342
14328
  message: string;
@@ -14552,7 +14538,7 @@ export interface Routes {
14552
14538
  acs_user_count?: number | undefined;
14553
14539
  acs_access_group_count?: number | undefined;
14554
14540
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
14555
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
14541
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
14556
14542
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
14557
14543
  external_type_display_name?: string | undefined;
14558
14544
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -14567,7 +14553,7 @@ export interface Routes {
14567
14553
  } | undefined;
14568
14554
  /**
14569
14555
  * @deprecated Use `external_type`. */
14570
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
14556
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
14571
14557
  /**
14572
14558
  * @deprecated Use `external_type_display_name`. */
14573
14559
  system_type_display_name?: string | undefined;
@@ -16650,13 +16636,6 @@ export interface Routes {
16650
16636
  created_at: string;
16651
16637
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16652
16638
  warning_code: 'third_party_integration_detected';
16653
- } | {
16654
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
16655
- message: string;
16656
- /** Date and time at which Seam created the warning. */
16657
- created_at: string;
16658
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
16659
- warning_code: 'nest_thermostat_in_manual_eco_mode';
16660
16639
  } | {
16661
16640
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
16662
16641
  message: string;
@@ -16826,6 +16805,51 @@ export interface Routes {
16826
16805
  can_simulate_disconnection?: boolean | undefined;
16827
16806
  can_unlock_with_code?: boolean | undefined;
16828
16807
  }> | undefined;
16808
+ connect_webviews?: Array<{
16809
+ /** ID of the Connect Webview. */
16810
+ connect_webview_id: string;
16811
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
16812
+ workspace_id: string;
16813
+ /** Date and time at which the Connect Webview was created. */
16814
+ created_at: string;
16815
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
16816
+ connected_account_id: string | null;
16817
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
16818
+ url: string;
16819
+ device_selection_mode: 'none' | 'single' | 'multiple';
16820
+ /** 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). */
16821
+ accepted_providers: string[];
16822
+ /** High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`. */
16823
+ accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
16824
+ /**
16825
+ * @deprecated Unused. Will be removed. */
16826
+ accepted_devices: string[];
16827
+ /**
16828
+ * @deprecated Unused. Will be removed. */
16829
+ any_device_allowed: boolean;
16830
+ /** Indicates whether any provider is allowed. */
16831
+ any_provider_allowed: boolean;
16832
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
16833
+ login_successful: boolean;
16834
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
16835
+ status: 'pending' | 'failed' | 'authorized';
16836
+ /** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
16837
+ custom_redirect_url: string | null;
16838
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
16839
+ custom_redirect_failure_url: string | null;
16840
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
16841
+ custom_metadata: Record<string, string | boolean>;
16842
+ /** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
16843
+ automatically_manage_new_devices: boolean;
16844
+ /** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
16845
+ wait_for_device_creation: boolean;
16846
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
16847
+ authorized_at: string | null;
16848
+ /** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
16849
+ selected_provider: string | null;
16850
+ /** The customer key associated with this webview, if any. */
16851
+ customer_key?: string | undefined;
16852
+ }> | undefined;
16829
16853
  };
16830
16854
  };
16831
16855
  };
@@ -22182,7 +22206,7 @@ export interface Routes {
22182
22206
  acs_user_count?: number | undefined;
22183
22207
  acs_access_group_count?: number | undefined;
22184
22208
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
22185
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22209
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22186
22210
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
22187
22211
  external_type_display_name?: string | undefined;
22188
22212
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -22197,7 +22221,7 @@ export interface Routes {
22197
22221
  } | undefined;
22198
22222
  /**
22199
22223
  * @deprecated Use `external_type`. */
22200
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22224
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22201
22225
  /**
22202
22226
  * @deprecated Use `external_type_display_name`. */
22203
22227
  system_type_display_name?: string | undefined;
@@ -22313,7 +22337,7 @@ export interface Routes {
22313
22337
  acs_user_count?: number | undefined;
22314
22338
  acs_access_group_count?: number | undefined;
22315
22339
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
22316
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22340
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22317
22341
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
22318
22342
  external_type_display_name?: string | undefined;
22319
22343
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -22328,7 +22352,7 @@ export interface Routes {
22328
22352
  } | undefined;
22329
22353
  /**
22330
22354
  * @deprecated Use `external_type`. */
22331
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22355
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22332
22356
  /**
22333
22357
  * @deprecated Use `external_type_display_name`. */
22334
22358
  system_type_display_name?: string | undefined;
@@ -22444,7 +22468,7 @@ export interface Routes {
22444
22468
  acs_user_count?: number | undefined;
22445
22469
  acs_access_group_count?: number | undefined;
22446
22470
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
22447
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22471
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22448
22472
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
22449
22473
  external_type_display_name?: string | undefined;
22450
22474
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -22459,7 +22483,7 @@ export interface Routes {
22459
22483
  } | undefined;
22460
22484
  /**
22461
22485
  * @deprecated Use `external_type`. */
22462
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22486
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
22463
22487
  /**
22464
22488
  * @deprecated Use `external_type_display_name`. */
22465
22489
  system_type_display_name?: string | undefined;
@@ -26846,7 +26870,7 @@ export interface Routes {
26846
26870
  /** Optional unique string key that can be used to identify the customer. If provided, the customer will be created or retrieved based on this key. */
26847
26871
  customer_key?: string | undefined;
26848
26872
  /** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters. */
26849
- accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
26873
+ accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
26850
26874
  /** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
26851
26875
  provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
26852
26876
  /** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
@@ -27574,6 +27598,15 @@ export interface Routes {
27574
27598
  /** Whether to exclude this feature from the portal. */
27575
27599
  exclude?: boolean;
27576
27600
  };
27601
+ /** Configuration for the configure feature. */
27602
+ configure?: {
27603
+ /** Whether to exclude this feature from the portal. */
27604
+ exclude?: boolean;
27605
+ /** Indicates whether the customer can customize the access automation rules for their properties. */
27606
+ allow_access_automation_rule_customization?: boolean;
27607
+ /** Indicates whether the customer can customize the Instant Key profile for their properties. */
27608
+ allow_instant_key_customization?: boolean;
27609
+ };
27577
27610
  };
27578
27611
  /** Whether the portal is embedded in another application. */
27579
27612
  is_embedded?: boolean;
@@ -29192,13 +29225,6 @@ export interface Routes {
29192
29225
  created_at: string;
29193
29226
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29194
29227
  warning_code: 'third_party_integration_detected';
29195
- } | {
29196
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
29197
- message: string;
29198
- /** Date and time at which Seam created the warning. */
29199
- created_at: string;
29200
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29201
- warning_code: 'nest_thermostat_in_manual_eco_mode';
29202
29228
  } | {
29203
29229
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
29204
29230
  message: string;
@@ -30444,13 +30470,6 @@ export interface Routes {
30444
30470
  created_at: string;
30445
30471
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30446
30472
  warning_code: 'third_party_integration_detected';
30447
- } | {
30448
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30449
- message: string;
30450
- /** Date and time at which Seam created the warning. */
30451
- created_at: string;
30452
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30453
- warning_code: 'nest_thermostat_in_manual_eco_mode';
30454
30473
  } | {
30455
30474
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30456
30475
  message: string;
@@ -30578,7 +30597,7 @@ export interface Routes {
30578
30597
  formData: {};
30579
30598
  jsonResponse: {
30580
30599
  device_providers: Array<{
30581
- device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest';
30600
+ device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance';
30582
30601
  display_name: string;
30583
30602
  image_url: string;
30584
30603
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
@@ -30883,13 +30902,6 @@ export interface Routes {
30883
30902
  created_at: string;
30884
30903
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30885
30904
  warning_code: 'third_party_integration_detected';
30886
- } | {
30887
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30888
- message: string;
30889
- /** Date and time at which Seam created the warning. */
30890
- created_at: string;
30891
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
30892
- warning_code: 'nest_thermostat_in_manual_eco_mode';
30893
30905
  } | {
30894
30906
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
30895
30907
  message: string;
@@ -31320,13 +31332,6 @@ export interface Routes {
31320
31332
  created_at: string;
31321
31333
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31322
31334
  warning_code: 'third_party_integration_detected';
31323
- } | {
31324
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31325
- message: string;
31326
- /** Date and time at which Seam created the warning. */
31327
- created_at: string;
31328
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31329
- warning_code: 'nest_thermostat_in_manual_eco_mode';
31330
31335
  } | {
31331
31336
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
31332
31337
  message: string;
@@ -35981,13 +35986,6 @@ export interface Routes {
35981
35986
  created_at: string;
35982
35987
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35983
35988
  warning_code: 'third_party_integration_detected';
35984
- } | {
35985
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35986
- message: string;
35987
- /** Date and time at which Seam created the warning. */
35988
- created_at: string;
35989
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35990
- warning_code: 'nest_thermostat_in_manual_eco_mode';
35991
35989
  } | {
35992
35990
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35993
35991
  message: string;
@@ -37185,13 +37183,6 @@ export interface Routes {
37185
37183
  created_at: string;
37186
37184
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
37187
37185
  warning_code: 'third_party_integration_detected';
37188
- } | {
37189
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
37190
- message: string;
37191
- /** Date and time at which Seam created the warning. */
37192
- created_at: string;
37193
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
37194
- warning_code: 'nest_thermostat_in_manual_eco_mode';
37195
37186
  } | {
37196
37187
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
37197
37188
  message: string;
@@ -38437,13 +38428,6 @@ export interface Routes {
38437
38428
  created_at: string;
38438
38429
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38439
38430
  warning_code: 'third_party_integration_detected';
38440
- } | {
38441
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38442
- message: string;
38443
- /** Date and time at which Seam created the warning. */
38444
- created_at: string;
38445
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38446
- warning_code: 'nest_thermostat_in_manual_eco_mode';
38447
38431
  } | {
38448
38432
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38449
38433
  message: string;
@@ -39640,13 +39624,6 @@ export interface Routes {
39640
39624
  created_at: string;
39641
39625
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
39642
39626
  warning_code: 'third_party_integration_detected';
39643
- } | {
39644
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
39645
- message: string;
39646
- /** Date and time at which Seam created the warning. */
39647
- created_at: string;
39648
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
39649
- warning_code: 'nest_thermostat_in_manual_eco_mode';
39650
39627
  } | {
39651
39628
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
39652
39629
  message: string;
@@ -45930,13 +45907,6 @@ export interface Routes {
45930
45907
  created_at: string;
45931
45908
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
45932
45909
  warning_code: 'third_party_integration_detected';
45933
- } | {
45934
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
45935
- message: string;
45936
- /** Date and time at which Seam created the warning. */
45937
- created_at: string;
45938
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
45939
- warning_code: 'nest_thermostat_in_manual_eco_mode';
45940
45910
  } | {
45941
45911
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
45942
45912
  message: string;
@@ -47133,13 +47103,6 @@ export interface Routes {
47133
47103
  created_at: string;
47134
47104
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
47135
47105
  warning_code: 'third_party_integration_detected';
47136
- } | {
47137
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
47138
- message: string;
47139
- /** Date and time at which Seam created the warning. */
47140
- created_at: string;
47141
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
47142
- warning_code: 'nest_thermostat_in_manual_eco_mode';
47143
47106
  } | {
47144
47107
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
47145
47108
  message: string;
@@ -51851,6 +51814,11 @@ export interface Routes {
51851
51814
  organize?: {
51852
51815
  exclude?: boolean | undefined;
51853
51816
  } | undefined;
51817
+ configure?: {
51818
+ exclude?: boolean | undefined;
51819
+ allow_access_automation_rule_customization?: boolean | undefined;
51820
+ allow_instant_key_customization?: boolean | undefined;
51821
+ } | undefined;
51854
51822
  } | undefined;
51855
51823
  is_embedded?: boolean | undefined;
51856
51824
  /** Business vertical of the customer portal. */
@@ -53649,13 +53617,6 @@ export interface Routes {
53649
53617
  created_at: string;
53650
53618
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
53651
53619
  warning_code: 'third_party_integration_detected';
53652
- } | {
53653
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
53654
- message: string;
53655
- /** Date and time at which Seam created the warning. */
53656
- created_at: string;
53657
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
53658
- warning_code: 'nest_thermostat_in_manual_eco_mode';
53659
53620
  } | {
53660
53621
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
53661
53622
  message: string;
@@ -53999,7 +53960,7 @@ export interface Routes {
53999
53960
  acs_user_count?: number | undefined;
54000
53961
  acs_access_group_count?: number | undefined;
54001
53962
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
54002
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
53963
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
54003
53964
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
54004
53965
  external_type_display_name?: string | undefined;
54005
53966
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -54014,7 +53975,7 @@ export interface Routes {
54014
53975
  } | undefined;
54015
53976
  /**
54016
53977
  * @deprecated Use `external_type`. */
54017
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
53978
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
54018
53979
  /**
54019
53980
  * @deprecated Use `external_type_display_name`. */
54020
53981
  system_type_display_name?: string | undefined;
@@ -59226,13 +59187,6 @@ export interface Routes {
59226
59187
  created_at: string;
59227
59188
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
59228
59189
  warning_code: 'third_party_integration_detected';
59229
- } | {
59230
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
59231
- message: string;
59232
- /** Date and time at which Seam created the warning. */
59233
- created_at: string;
59234
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
59235
- warning_code: 'nest_thermostat_in_manual_eco_mode';
59236
59190
  } | {
59237
59191
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
59238
59192
  message: string;
@@ -63010,13 +62964,6 @@ export interface Routes {
63010
62964
  created_at: string;
63011
62965
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
63012
62966
  warning_code: 'third_party_integration_detected';
63013
- } | {
63014
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
63015
- message: string;
63016
- /** Date and time at which Seam created the warning. */
63017
- created_at: string;
63018
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
63019
- warning_code: 'nest_thermostat_in_manual_eco_mode';
63020
62967
  } | {
63021
62968
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
63022
62969
  message: string;
@@ -64213,13 +64160,6 @@ export interface Routes {
64213
64160
  created_at: string;
64214
64161
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
64215
64162
  warning_code: 'third_party_integration_detected';
64216
- } | {
64217
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
64218
- message: string;
64219
- /** Date and time at which Seam created the warning. */
64220
- created_at: string;
64221
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
64222
- warning_code: 'nest_thermostat_in_manual_eco_mode';
64223
64163
  } | {
64224
64164
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
64225
64165
  message: string;
@@ -69821,9 +69761,9 @@ export interface Routes {
69821
69761
  /** Date and time at which the Access Grant was created. */
69822
69762
  created_at: string;
69823
69763
  /** Date and time at which the Access Grant starts. */
69824
- starts_at?: string | undefined;
69764
+ starts_at: string;
69825
69765
  /** Date and time at which the Access Grant ends. */
69826
- ends_at?: string | undefined;
69766
+ ends_at: string | null;
69827
69767
  };
69828
69768
  };
69829
69769
  };
@@ -69889,9 +69829,9 @@ export interface Routes {
69889
69829
  /** Date and time at which the Access Grant was created. */
69890
69830
  created_at: string;
69891
69831
  /** Date and time at which the Access Grant starts. */
69892
- starts_at?: string | undefined;
69832
+ starts_at: string;
69893
69833
  /** Date and time at which the Access Grant ends. */
69894
- ends_at?: string | undefined;
69834
+ ends_at: string | null;
69895
69835
  };
69896
69836
  };
69897
69837
  };
@@ -69953,9 +69893,9 @@ export interface Routes {
69953
69893
  /** Date and time at which the Access Grant was created. */
69954
69894
  created_at: string;
69955
69895
  /** Date and time at which the Access Grant starts. */
69956
- starts_at?: string | undefined;
69896
+ starts_at: string;
69957
69897
  /** Date and time at which the Access Grant ends. */
69958
- ends_at?: string | undefined;
69898
+ ends_at: string | null;
69959
69899
  }>;
69960
69900
  };
69961
69901
  };
@@ -71876,13 +71816,6 @@ export interface Routes {
71876
71816
  created_at: string;
71877
71817
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
71878
71818
  warning_code: 'third_party_integration_detected';
71879
- } | {
71880
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
71881
- message: string;
71882
- /** Date and time at which Seam created the warning. */
71883
- created_at: string;
71884
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
71885
- warning_code: 'nest_thermostat_in_manual_eco_mode';
71886
71819
  } | {
71887
71820
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
71888
71821
  message: string;
@@ -73081,13 +73014,6 @@ export interface Routes {
73081
73014
  created_at: string;
73082
73015
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
73083
73016
  warning_code: 'third_party_integration_detected';
73084
- } | {
73085
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
73086
- message: string;
73087
- /** Date and time at which Seam created the warning. */
73088
- created_at: string;
73089
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
73090
- warning_code: 'nest_thermostat_in_manual_eco_mode';
73091
73017
  } | {
73092
73018
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
73093
73019
  message: string;
@@ -73213,7 +73139,7 @@ export interface Routes {
73213
73139
  acs_user_count?: number | undefined;
73214
73140
  acs_access_group_count?: number | undefined;
73215
73141
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
73216
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
73142
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
73217
73143
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
73218
73144
  external_type_display_name?: string | undefined;
73219
73145
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -73228,7 +73154,7 @@ export interface Routes {
73228
73154
  } | undefined;
73229
73155
  /**
73230
73156
  * @deprecated Use `external_type`. */
73231
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
73157
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
73232
73158
  /**
73233
73159
  * @deprecated Use `external_type_display_name`. */
73234
73160
  system_type_display_name?: string | undefined;
@@ -74957,13 +74883,6 @@ export interface Routes {
74957
74883
  created_at: string;
74958
74884
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74959
74885
  warning_code: 'third_party_integration_detected';
74960
- } | {
74961
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74962
- message: string;
74963
- /** Date and time at which Seam created the warning. */
74964
- created_at: string;
74965
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74966
- warning_code: 'nest_thermostat_in_manual_eco_mode';
74967
74886
  } | {
74968
74887
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74969
74888
  message: string;
@@ -75179,7 +75098,7 @@ export interface Routes {
75179
75098
  acs_user_count?: number | undefined;
75180
75099
  acs_access_group_count?: number | undefined;
75181
75100
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
75182
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
75101
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
75183
75102
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
75184
75103
  external_type_display_name?: string | undefined;
75185
75104
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -75194,7 +75113,7 @@ export interface Routes {
75194
75113
  } | undefined;
75195
75114
  /**
75196
75115
  * @deprecated Use `external_type`. */
75197
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
75116
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
75198
75117
  /**
75199
75118
  * @deprecated Use `external_type_display_name`. */
75200
75119
  system_type_display_name?: string | undefined;
@@ -77277,13 +77196,6 @@ export interface Routes {
77277
77196
  created_at: string;
77278
77197
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
77279
77198
  warning_code: 'third_party_integration_detected';
77280
- } | {
77281
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
77282
- message: string;
77283
- /** Date and time at which Seam created the warning. */
77284
- created_at: string;
77285
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
77286
- warning_code: 'nest_thermostat_in_manual_eco_mode';
77287
77199
  } | {
77288
77200
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
77289
77201
  message: string;
@@ -77453,6 +77365,51 @@ export interface Routes {
77453
77365
  can_simulate_disconnection?: boolean | undefined;
77454
77366
  can_unlock_with_code?: boolean | undefined;
77455
77367
  }> | undefined;
77368
+ connect_webviews?: Array<{
77369
+ /** ID of the Connect Webview. */
77370
+ connect_webview_id: string;
77371
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
77372
+ workspace_id: string;
77373
+ /** Date and time at which the Connect Webview was created. */
77374
+ created_at: string;
77375
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
77376
+ connected_account_id: string | null;
77377
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
77378
+ url: string;
77379
+ device_selection_mode: 'none' | 'single' | 'multiple';
77380
+ /** 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). */
77381
+ accepted_providers: string[];
77382
+ /** High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`. */
77383
+ accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
77384
+ /**
77385
+ * @deprecated Unused. Will be removed. */
77386
+ accepted_devices: string[];
77387
+ /**
77388
+ * @deprecated Unused. Will be removed. */
77389
+ any_device_allowed: boolean;
77390
+ /** Indicates whether any provider is allowed. */
77391
+ any_provider_allowed: boolean;
77392
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
77393
+ login_successful: boolean;
77394
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
77395
+ status: 'pending' | 'failed' | 'authorized';
77396
+ /** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
77397
+ custom_redirect_url: string | null;
77398
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
77399
+ custom_redirect_failure_url: string | null;
77400
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
77401
+ custom_metadata: Record<string, string | boolean>;
77402
+ /** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
77403
+ automatically_manage_new_devices: boolean;
77404
+ /** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
77405
+ wait_for_device_creation: boolean;
77406
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
77407
+ authorized_at: string | null;
77408
+ /** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
77409
+ selected_provider: string | null;
77410
+ /** The customer key associated with this webview, if any. */
77411
+ customer_key?: string | undefined;
77412
+ }> | undefined;
77456
77413
  };
77457
77414
  };
77458
77415
  };