@seamapi/types 1.404.0 → 1.404.1

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.
@@ -18332,8 +18332,10 @@ export interface Routes {
18332
18332
  queryParams: {}
18333
18333
  jsonBody: {}
18334
18334
  commonParams: {
18335
- /** ID of the access system user that you want to remove from an access group. */
18336
- acs_user_id: string
18335
+ /** ID of the access system user that you want to remove from an access group. You can only provide acs_user_id or user_identity_id. */
18336
+ acs_user_id?: string | undefined
18337
+ /** ID of the user identity that you want to remove from an access group. You can only provide acs_user_id or user_identity_id. */
18338
+ user_identity_id?: string | undefined
18337
18339
  /** ID of the access group from which you want to remove an access system user. */
18338
18340
  acs_access_group_id: string
18339
18341
  }
@@ -21834,12 +21836,18 @@ export interface Routes {
21834
21836
 
21835
21837
  To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
21836
21838
  connect_webview: {
21839
+ /** ID of the Connect Webview. */
21837
21840
  connect_webview_id: string
21841
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
21838
21842
  workspace_id: string
21843
+ /** Date and time at which the Connect Webview was created. */
21839
21844
  created_at: string
21845
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
21840
21846
  connected_account_id: string | null
21847
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
21841
21848
  url: string
21842
21849
  device_selection_mode: 'none' | 'single' | 'multiple'
21850
+ /** 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). */
21843
21851
  accepted_providers: string[]
21844
21852
  /**
21845
21853
  * @deprecated Unused. Will be removed. */
@@ -21847,15 +21855,25 @@ export interface Routes {
21847
21855
  /**
21848
21856
  * @deprecated Unused. Will be removed. */
21849
21857
  any_device_allowed: boolean
21858
+ /** Indicates whether any provider is allowed. */
21850
21859
  any_provider_allowed: boolean
21860
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
21851
21861
  login_successful: boolean
21862
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
21852
21863
  status: 'pending' | 'failed' | 'authorized'
21864
+ /** 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. */
21853
21865
  custom_redirect_url: string | null
21866
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
21854
21867
  custom_redirect_failure_url: string | null
21868
+ /** 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. */
21855
21869
  custom_metadata: Record<string, string | boolean>
21870
+ /** 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. */
21856
21871
  automatically_manage_new_devices: boolean
21872
+ /** 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. */
21857
21873
  wait_for_device_creation: boolean
21874
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
21858
21875
  authorized_at: string | null
21876
+ /** 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). */
21859
21877
  selected_provider: string | null
21860
21878
  }
21861
21879
  }
@@ -21895,12 +21913,18 @@ export interface Routes {
21895
21913
 
21896
21914
  To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
21897
21915
  connect_webview: {
21916
+ /** ID of the Connect Webview. */
21898
21917
  connect_webview_id: string
21918
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
21899
21919
  workspace_id: string
21920
+ /** Date and time at which the Connect Webview was created. */
21900
21921
  created_at: string
21922
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
21901
21923
  connected_account_id: string | null
21924
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
21902
21925
  url: string
21903
21926
  device_selection_mode: 'none' | 'single' | 'multiple'
21927
+ /** 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). */
21904
21928
  accepted_providers: string[]
21905
21929
  /**
21906
21930
  * @deprecated Unused. Will be removed. */
@@ -21908,15 +21932,25 @@ export interface Routes {
21908
21932
  /**
21909
21933
  * @deprecated Unused. Will be removed. */
21910
21934
  any_device_allowed: boolean
21935
+ /** Indicates whether any provider is allowed. */
21911
21936
  any_provider_allowed: boolean
21937
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
21912
21938
  login_successful: boolean
21939
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
21913
21940
  status: 'pending' | 'failed' | 'authorized'
21941
+ /** 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. */
21914
21942
  custom_redirect_url: string | null
21943
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
21915
21944
  custom_redirect_failure_url: string | null
21945
+ /** 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. */
21916
21946
  custom_metadata: Record<string, string | boolean>
21947
+ /** 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. */
21917
21948
  automatically_manage_new_devices: boolean
21949
+ /** 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. */
21918
21950
  wait_for_device_creation: boolean
21951
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
21919
21952
  authorized_at: string | null
21953
+ /** 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). */
21920
21954
  selected_provider: string | null
21921
21955
  }
21922
21956
  }
@@ -21937,12 +21971,18 @@ export interface Routes {
21937
21971
  formData: {}
21938
21972
  jsonResponse: {
21939
21973
  connect_webviews: Array<{
21974
+ /** ID of the Connect Webview. */
21940
21975
  connect_webview_id: string
21976
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
21941
21977
  workspace_id: string
21978
+ /** Date and time at which the Connect Webview was created. */
21942
21979
  created_at: string
21980
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
21943
21981
  connected_account_id: string | null
21982
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
21944
21983
  url: string
21945
21984
  device_selection_mode: 'none' | 'single' | 'multiple'
21985
+ /** 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). */
21946
21986
  accepted_providers: string[]
21947
21987
  /**
21948
21988
  * @deprecated Unused. Will be removed. */
@@ -21950,15 +21990,25 @@ export interface Routes {
21950
21990
  /**
21951
21991
  * @deprecated Unused. Will be removed. */
21952
21992
  any_device_allowed: boolean
21993
+ /** Indicates whether any provider is allowed. */
21953
21994
  any_provider_allowed: boolean
21995
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
21954
21996
  login_successful: boolean
21997
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
21955
21998
  status: 'pending' | 'failed' | 'authorized'
21999
+ /** 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. */
21956
22000
  custom_redirect_url: string | null
22001
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
21957
22002
  custom_redirect_failure_url: string | null
22003
+ /** 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. */
21958
22004
  custom_metadata: Record<string, string | boolean>
22005
+ /** 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. */
21959
22006
  automatically_manage_new_devices: boolean
22007
+ /** 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. */
21960
22008
  wait_for_device_creation: boolean
22009
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
21961
22010
  authorized_at: string | null
22011
+ /** 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). */
21962
22012
  selected_provider: string | null
21963
22013
  }>
21964
22014
  }
@@ -22085,6 +22135,7 @@ export interface Routes {
22085
22135
  }
22086
22136
  }
22087
22137
  >
22138
+ /** 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. */
22088
22139
  custom_metadata: Record<string, string | boolean>
22089
22140
  automatically_manage_new_devices: boolean
22090
22141
  }
@@ -22199,6 +22250,7 @@ export interface Routes {
22199
22250
  }
22200
22251
  }
22201
22252
  >
22253
+ /** 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. */
22202
22254
  custom_metadata: Record<string, string | boolean>
22203
22255
  automatically_manage_new_devices: boolean
22204
22256
  }>
@@ -22320,6 +22372,7 @@ export interface Routes {
22320
22372
  }
22321
22373
  }
22322
22374
  >
22375
+ /** 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. */
22323
22376
  custom_metadata: Record<string, string | boolean>
22324
22377
  automatically_manage_new_devices: boolean
22325
22378
  }
@@ -23326,6 +23379,7 @@ export interface Routes {
23326
23379
  created_at: string
23327
23380
  /** Indicates whether Seam manages the device. */
23328
23381
  is_managed: true
23382
+ /** 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. */
23329
23383
  custom_metadata: Record<string, string | boolean>
23330
23384
  can_remotely_unlock?: boolean | undefined
23331
23385
  can_remotely_lock?: boolean | undefined
@@ -24509,6 +24563,7 @@ export interface Routes {
24509
24563
  created_at: string
24510
24564
  /** Indicates whether Seam manages the device. */
24511
24565
  is_managed: true
24566
+ /** 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. */
24512
24567
  custom_metadata: Record<string, string | boolean>
24513
24568
  can_remotely_unlock?: boolean | undefined
24514
24569
  can_remotely_lock?: boolean | undefined
@@ -29763,6 +29818,7 @@ export interface Routes {
29763
29818
  created_at: string
29764
29819
  /** Indicates whether Seam manages the device. */
29765
29820
  is_managed: true
29821
+ /** 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. */
29766
29822
  custom_metadata: Record<string, string | boolean>
29767
29823
  can_remotely_unlock?: boolean | undefined
29768
29824
  can_remotely_lock?: boolean | undefined
@@ -30752,6 +30808,7 @@ export interface Routes {
30752
30808
  created_at: string
30753
30809
  /** Indicates whether Seam manages the device. */
30754
30810
  is_managed: true
30811
+ /** 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. */
30755
30812
  custom_metadata: Record<string, string | boolean>
30756
30813
  can_remotely_unlock?: boolean | undefined
30757
30814
  can_remotely_lock?: boolean | undefined
@@ -31900,6 +31957,7 @@ export interface Routes {
31900
31957
  created_at: string
31901
31958
  /** Indicates whether Seam manages the device. */
31902
31959
  is_managed: true
31960
+ /** 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. */
31903
31961
  custom_metadata: Record<string, string | boolean>
31904
31962
  can_remotely_unlock?: boolean | undefined
31905
31963
  can_remotely_lock?: boolean | undefined
@@ -32888,6 +32946,7 @@ export interface Routes {
32888
32946
  created_at: string
32889
32947
  /** Indicates whether Seam manages the device. */
32890
32948
  is_managed: true
32949
+ /** 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. */
32891
32950
  custom_metadata: Record<string, string | boolean>
32892
32951
  can_remotely_unlock?: boolean | undefined
32893
32952
  can_remotely_lock?: boolean | undefined
@@ -39202,6 +39261,7 @@ export interface Routes {
39202
39261
  created_at: string
39203
39262
  /** Indicates whether Seam manages the device. */
39204
39263
  is_managed: true
39264
+ /** 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. */
39205
39265
  custom_metadata: Record<string, string | boolean>
39206
39266
  can_remotely_unlock?: boolean | undefined
39207
39267
  can_remotely_lock?: boolean | undefined
@@ -40190,6 +40250,7 @@ export interface Routes {
40190
40250
  created_at: string
40191
40251
  /** Indicates whether Seam manages the device. */
40192
40252
  is_managed: true
40253
+ /** 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. */
40193
40254
  custom_metadata: Record<string, string | boolean>
40194
40255
  can_remotely_unlock?: boolean | undefined
40195
40256
  can_remotely_lock?: boolean | undefined
@@ -50128,6 +50189,7 @@ export interface Routes {
50128
50189
  created_at: string
50129
50190
  /** Indicates whether Seam manages the device. */
50130
50191
  is_managed: true
50192
+ /** 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. */
50131
50193
  custom_metadata: Record<string, string | boolean>
50132
50194
  can_remotely_unlock?: boolean | undefined
50133
50195
  can_remotely_lock?: boolean | undefined
@@ -53832,6 +53894,7 @@ export interface Routes {
53832
53894
  created_at: string
53833
53895
  /** Indicates whether Seam manages the device. */
53834
53896
  is_managed: true
53897
+ /** 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. */
53835
53898
  custom_metadata: Record<string, string | boolean>
53836
53899
  can_remotely_unlock?: boolean | undefined
53837
53900
  can_remotely_lock?: boolean | undefined
@@ -54820,6 +54883,7 @@ export interface Routes {
54820
54883
  created_at: string
54821
54884
  /** Indicates whether Seam manages the device. */
54822
54885
  is_managed: true
54886
+ /** 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. */
54823
54887
  custom_metadata: Record<string, string | boolean>
54824
54888
  can_remotely_unlock?: boolean | undefined
54825
54889
  can_remotely_lock?: boolean | undefined
@@ -62132,6 +62196,7 @@ export interface Routes {
62132
62196
  created_at: string
62133
62197
  /** Indicates whether Seam manages the device. */
62134
62198
  is_managed: true
62199
+ /** 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. */
62135
62200
  custom_metadata: Record<string, string | boolean>
62136
62201
  can_remotely_unlock?: boolean | undefined
62137
62202
  can_remotely_lock?: boolean | undefined
@@ -63122,6 +63187,7 @@ export interface Routes {
63122
63187
  created_at: string
63123
63188
  /** Indicates whether Seam manages the device. */
63124
63189
  is_managed: true
63190
+ /** 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. */
63125
63191
  custom_metadata: Record<string, string | boolean>
63126
63192
  can_remotely_unlock?: boolean | undefined
63127
63193
  can_remotely_lock?: boolean | undefined