diff --git a/src/lib/seam/connect/models/devices/unmanaged-device.ts b/src/lib/seam/connect/models/devices/unmanaged-device.ts index 3a4eb34a..142a3a97 100644 --- a/src/lib/seam/connect/models/devices/unmanaged-device.ts +++ b/src/lib/seam/connect/models/devices/unmanaged-device.ts @@ -18,6 +18,7 @@ export const unmanaged_device = device warnings: true, created_at: true, custom_metadata: true, + display_name: true, }) .extend({ is_managed: z diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 415c07de..e3730b38 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -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.', @@ -36227,6 +36232,7 @@ const openapi: OpenAPISpec = { 'warnings', 'created_at', 'custom_metadata', + 'display_name', 'is_managed', 'properties', ], diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 1d7134df..7901996d 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -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. */ @@ -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. */ @@ -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. */