@seamapi/types 1.403.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.
- package/dist/connect.cjs +120 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +107 -5
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +55 -15
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/custom-metadata.js +5 -2
- package/lib/seam/connect/models/custom-metadata.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +33 -1
- package/lib/seam/connect/openapi.js +76 -15
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +74 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +79 -15
- package/src/lib/seam/connect/models/custom-metadata.ts +8 -4
- package/src/lib/seam/connect/openapi.ts +95 -15
- package/src/lib/seam/connect/route-types.ts +74 -4
|
@@ -18230,8 +18230,12 @@ export interface Routes {
|
|
|
18230
18230
|
queryParams: {}
|
|
18231
18231
|
jsonBody: {}
|
|
18232
18232
|
commonParams: {
|
|
18233
|
-
/** ID of the access system user for whom you want to list accessible entrances. */
|
|
18234
|
-
acs_user_id
|
|
18233
|
+
/** ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
|
|
18234
|
+
acs_user_id?: string | undefined
|
|
18235
|
+
/** ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
|
|
18236
|
+
user_identity_id?: string | undefined
|
|
18237
|
+
/** ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id. */
|
|
18238
|
+
acs_system_id?: string | undefined
|
|
18235
18239
|
}
|
|
18236
18240
|
formData: {}
|
|
18237
18241
|
jsonResponse: {
|
|
@@ -18328,8 +18332,10 @@ export interface Routes {
|
|
|
18328
18332
|
queryParams: {}
|
|
18329
18333
|
jsonBody: {}
|
|
18330
18334
|
commonParams: {
|
|
18331
|
-
/** ID of the access system user that you want to remove from an access group. */
|
|
18332
|
-
acs_user_id
|
|
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
|
|
18333
18339
|
/** ID of the access group from which you want to remove an access system user. */
|
|
18334
18340
|
acs_access_group_id: string
|
|
18335
18341
|
}
|
|
@@ -21830,12 +21836,18 @@ export interface Routes {
|
|
|
21830
21836
|
|
|
21831
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. */
|
|
21832
21838
|
connect_webview: {
|
|
21839
|
+
/** ID of the Connect Webview. */
|
|
21833
21840
|
connect_webview_id: string
|
|
21841
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
|
|
21834
21842
|
workspace_id: string
|
|
21843
|
+
/** Date and time at which the Connect Webview was created. */
|
|
21835
21844
|
created_at: string
|
|
21845
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
|
|
21836
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. */
|
|
21837
21848
|
url: string
|
|
21838
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). */
|
|
21839
21851
|
accepted_providers: string[]
|
|
21840
21852
|
/**
|
|
21841
21853
|
* @deprecated Unused. Will be removed. */
|
|
@@ -21843,15 +21855,25 @@ export interface Routes {
|
|
|
21843
21855
|
/**
|
|
21844
21856
|
* @deprecated Unused. Will be removed. */
|
|
21845
21857
|
any_device_allowed: boolean
|
|
21858
|
+
/** Indicates whether any provider is allowed. */
|
|
21846
21859
|
any_provider_allowed: boolean
|
|
21860
|
+
/** Indicates whether the user logged in successfully using the Connect Webview. */
|
|
21847
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. */
|
|
21848
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. */
|
|
21849
21865
|
custom_redirect_url: string | null
|
|
21866
|
+
/** URL to which the Connect Webview should redirect when an unexpected error occurs. */
|
|
21850
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. */
|
|
21851
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. */
|
|
21852
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. */
|
|
21853
21873
|
wait_for_device_creation: boolean
|
|
21874
|
+
/** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
|
|
21854
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). */
|
|
21855
21877
|
selected_provider: string | null
|
|
21856
21878
|
}
|
|
21857
21879
|
}
|
|
@@ -21891,12 +21913,18 @@ export interface Routes {
|
|
|
21891
21913
|
|
|
21892
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. */
|
|
21893
21915
|
connect_webview: {
|
|
21916
|
+
/** ID of the Connect Webview. */
|
|
21894
21917
|
connect_webview_id: string
|
|
21918
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
|
|
21895
21919
|
workspace_id: string
|
|
21920
|
+
/** Date and time at which the Connect Webview was created. */
|
|
21896
21921
|
created_at: string
|
|
21922
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
|
|
21897
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. */
|
|
21898
21925
|
url: string
|
|
21899
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). */
|
|
21900
21928
|
accepted_providers: string[]
|
|
21901
21929
|
/**
|
|
21902
21930
|
* @deprecated Unused. Will be removed. */
|
|
@@ -21904,15 +21932,25 @@ export interface Routes {
|
|
|
21904
21932
|
/**
|
|
21905
21933
|
* @deprecated Unused. Will be removed. */
|
|
21906
21934
|
any_device_allowed: boolean
|
|
21935
|
+
/** Indicates whether any provider is allowed. */
|
|
21907
21936
|
any_provider_allowed: boolean
|
|
21937
|
+
/** Indicates whether the user logged in successfully using the Connect Webview. */
|
|
21908
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. */
|
|
21909
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. */
|
|
21910
21942
|
custom_redirect_url: string | null
|
|
21943
|
+
/** URL to which the Connect Webview should redirect when an unexpected error occurs. */
|
|
21911
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. */
|
|
21912
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. */
|
|
21913
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. */
|
|
21914
21950
|
wait_for_device_creation: boolean
|
|
21951
|
+
/** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
|
|
21915
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). */
|
|
21916
21954
|
selected_provider: string | null
|
|
21917
21955
|
}
|
|
21918
21956
|
}
|
|
@@ -21933,12 +21971,18 @@ export interface Routes {
|
|
|
21933
21971
|
formData: {}
|
|
21934
21972
|
jsonResponse: {
|
|
21935
21973
|
connect_webviews: Array<{
|
|
21974
|
+
/** ID of the Connect Webview. */
|
|
21936
21975
|
connect_webview_id: string
|
|
21976
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
|
|
21937
21977
|
workspace_id: string
|
|
21978
|
+
/** Date and time at which the Connect Webview was created. */
|
|
21938
21979
|
created_at: string
|
|
21980
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
|
|
21939
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. */
|
|
21940
21983
|
url: string
|
|
21941
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). */
|
|
21942
21986
|
accepted_providers: string[]
|
|
21943
21987
|
/**
|
|
21944
21988
|
* @deprecated Unused. Will be removed. */
|
|
@@ -21946,15 +21990,25 @@ export interface Routes {
|
|
|
21946
21990
|
/**
|
|
21947
21991
|
* @deprecated Unused. Will be removed. */
|
|
21948
21992
|
any_device_allowed: boolean
|
|
21993
|
+
/** Indicates whether any provider is allowed. */
|
|
21949
21994
|
any_provider_allowed: boolean
|
|
21995
|
+
/** Indicates whether the user logged in successfully using the Connect Webview. */
|
|
21950
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. */
|
|
21951
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. */
|
|
21952
22000
|
custom_redirect_url: string | null
|
|
22001
|
+
/** URL to which the Connect Webview should redirect when an unexpected error occurs. */
|
|
21953
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. */
|
|
21954
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. */
|
|
21955
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. */
|
|
21956
22008
|
wait_for_device_creation: boolean
|
|
22009
|
+
/** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
|
|
21957
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). */
|
|
21958
22012
|
selected_provider: string | null
|
|
21959
22013
|
}>
|
|
21960
22014
|
}
|
|
@@ -22081,6 +22135,7 @@ export interface Routes {
|
|
|
22081
22135
|
}
|
|
22082
22136
|
}
|
|
22083
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. */
|
|
22084
22139
|
custom_metadata: Record<string, string | boolean>
|
|
22085
22140
|
automatically_manage_new_devices: boolean
|
|
22086
22141
|
}
|
|
@@ -22195,6 +22250,7 @@ export interface Routes {
|
|
|
22195
22250
|
}
|
|
22196
22251
|
}
|
|
22197
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. */
|
|
22198
22254
|
custom_metadata: Record<string, string | boolean>
|
|
22199
22255
|
automatically_manage_new_devices: boolean
|
|
22200
22256
|
}>
|
|
@@ -22316,6 +22372,7 @@ export interface Routes {
|
|
|
22316
22372
|
}
|
|
22317
22373
|
}
|
|
22318
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. */
|
|
22319
22376
|
custom_metadata: Record<string, string | boolean>
|
|
22320
22377
|
automatically_manage_new_devices: boolean
|
|
22321
22378
|
}
|
|
@@ -23322,6 +23379,7 @@ export interface Routes {
|
|
|
23322
23379
|
created_at: string
|
|
23323
23380
|
/** Indicates whether Seam manages the device. */
|
|
23324
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. */
|
|
23325
23383
|
custom_metadata: Record<string, string | boolean>
|
|
23326
23384
|
can_remotely_unlock?: boolean | undefined
|
|
23327
23385
|
can_remotely_lock?: boolean | undefined
|
|
@@ -24505,6 +24563,7 @@ export interface Routes {
|
|
|
24505
24563
|
created_at: string
|
|
24506
24564
|
/** Indicates whether Seam manages the device. */
|
|
24507
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. */
|
|
24508
24567
|
custom_metadata: Record<string, string | boolean>
|
|
24509
24568
|
can_remotely_unlock?: boolean | undefined
|
|
24510
24569
|
can_remotely_lock?: boolean | undefined
|
|
@@ -29759,6 +29818,7 @@ export interface Routes {
|
|
|
29759
29818
|
created_at: string
|
|
29760
29819
|
/** Indicates whether Seam manages the device. */
|
|
29761
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. */
|
|
29762
29822
|
custom_metadata: Record<string, string | boolean>
|
|
29763
29823
|
can_remotely_unlock?: boolean | undefined
|
|
29764
29824
|
can_remotely_lock?: boolean | undefined
|
|
@@ -30748,6 +30808,7 @@ export interface Routes {
|
|
|
30748
30808
|
created_at: string
|
|
30749
30809
|
/** Indicates whether Seam manages the device. */
|
|
30750
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. */
|
|
30751
30812
|
custom_metadata: Record<string, string | boolean>
|
|
30752
30813
|
can_remotely_unlock?: boolean | undefined
|
|
30753
30814
|
can_remotely_lock?: boolean | undefined
|
|
@@ -31896,6 +31957,7 @@ export interface Routes {
|
|
|
31896
31957
|
created_at: string
|
|
31897
31958
|
/** Indicates whether Seam manages the device. */
|
|
31898
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. */
|
|
31899
31961
|
custom_metadata: Record<string, string | boolean>
|
|
31900
31962
|
can_remotely_unlock?: boolean | undefined
|
|
31901
31963
|
can_remotely_lock?: boolean | undefined
|
|
@@ -32884,6 +32946,7 @@ export interface Routes {
|
|
|
32884
32946
|
created_at: string
|
|
32885
32947
|
/** Indicates whether Seam manages the device. */
|
|
32886
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. */
|
|
32887
32950
|
custom_metadata: Record<string, string | boolean>
|
|
32888
32951
|
can_remotely_unlock?: boolean | undefined
|
|
32889
32952
|
can_remotely_lock?: boolean | undefined
|
|
@@ -39198,6 +39261,7 @@ export interface Routes {
|
|
|
39198
39261
|
created_at: string
|
|
39199
39262
|
/** Indicates whether Seam manages the device. */
|
|
39200
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. */
|
|
39201
39265
|
custom_metadata: Record<string, string | boolean>
|
|
39202
39266
|
can_remotely_unlock?: boolean | undefined
|
|
39203
39267
|
can_remotely_lock?: boolean | undefined
|
|
@@ -40186,6 +40250,7 @@ export interface Routes {
|
|
|
40186
40250
|
created_at: string
|
|
40187
40251
|
/** Indicates whether Seam manages the device. */
|
|
40188
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. */
|
|
40189
40254
|
custom_metadata: Record<string, string | boolean>
|
|
40190
40255
|
can_remotely_unlock?: boolean | undefined
|
|
40191
40256
|
can_remotely_lock?: boolean | undefined
|
|
@@ -50124,6 +50189,7 @@ export interface Routes {
|
|
|
50124
50189
|
created_at: string
|
|
50125
50190
|
/** Indicates whether Seam manages the device. */
|
|
50126
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. */
|
|
50127
50193
|
custom_metadata: Record<string, string | boolean>
|
|
50128
50194
|
can_remotely_unlock?: boolean | undefined
|
|
50129
50195
|
can_remotely_lock?: boolean | undefined
|
|
@@ -53828,6 +53894,7 @@ export interface Routes {
|
|
|
53828
53894
|
created_at: string
|
|
53829
53895
|
/** Indicates whether Seam manages the device. */
|
|
53830
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. */
|
|
53831
53898
|
custom_metadata: Record<string, string | boolean>
|
|
53832
53899
|
can_remotely_unlock?: boolean | undefined
|
|
53833
53900
|
can_remotely_lock?: boolean | undefined
|
|
@@ -54816,6 +54883,7 @@ export interface Routes {
|
|
|
54816
54883
|
created_at: string
|
|
54817
54884
|
/** Indicates whether Seam manages the device. */
|
|
54818
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. */
|
|
54819
54887
|
custom_metadata: Record<string, string | boolean>
|
|
54820
54888
|
can_remotely_unlock?: boolean | undefined
|
|
54821
54889
|
can_remotely_lock?: boolean | undefined
|
|
@@ -62128,6 +62196,7 @@ export interface Routes {
|
|
|
62128
62196
|
created_at: string
|
|
62129
62197
|
/** Indicates whether Seam manages the device. */
|
|
62130
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. */
|
|
62131
62200
|
custom_metadata: Record<string, string | boolean>
|
|
62132
62201
|
can_remotely_unlock?: boolean | undefined
|
|
62133
62202
|
can_remotely_lock?: boolean | undefined
|
|
@@ -63118,6 +63187,7 @@ export interface Routes {
|
|
|
63118
63187
|
created_at: string
|
|
63119
63188
|
/** Indicates whether Seam manages the device. */
|
|
63120
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. */
|
|
63121
63191
|
custom_metadata: Record<string, string | boolean>
|
|
63122
63192
|
can_remotely_unlock?: boolean | undefined
|
|
63123
63193
|
can_remotely_lock?: boolean | undefined
|