Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lib/seam/connect/models/devices/unmanaged-device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export const unmanaged_device = device
warnings: true,
created_at: true,
custom_metadata: true,
display_name: true,
})
.extend({
is_managed: z
Expand Down
6 changes: 6 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34719,6 +34719,11 @@ const openapi: OpenAPISpec = {
},
],
},
display_name: {
description:
'Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices.',
type: 'string',
},
errors: {
description:
'Array of errors associated with the device. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
Expand Down Expand Up @@ -36227,6 +36232,7 @@ const openapi: OpenAPISpec = {
'warnings',
'created_at',
'custom_metadata',
'display_name',
'is_managed',
'properties',
],
Expand Down
6 changes: 6 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56339,6 +56339,8 @@ export type Routes = {
custom_metadata: {
[x: string]: string | boolean
}
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
display_name: string
/** Indicates that Seam does not manage the device. */
is_managed: false
/** properties of the device. */
Expand Down Expand Up @@ -57160,6 +57162,8 @@ export type Routes = {
custom_metadata: {
[x: string]: string | boolean
}
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
display_name: string
/** Indicates that Seam does not manage the device. */
is_managed: false
/** properties of the device. */
Expand Down Expand Up @@ -144947,6 +144951,8 @@ export type Routes = {
custom_metadata: {
[x: string]: string | boolean
}
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
display_name: string
/** Indicates that Seam does not manage the device. */
is_managed: false
/** properties of the device. */
Expand Down
Loading