diff --git a/web/packages/teleport/src/DeviceTrust/types.ts b/web/packages/teleport/src/DeviceTrust/types.ts index f857fdde0a665..062656e4c9699 100644 --- a/web/packages/teleport/src/DeviceTrust/types.ts +++ b/web/packages/teleport/src/DeviceTrust/types.ts @@ -22,7 +22,8 @@ export type TrustedDevice = { id: string; assetTag: string; osType: TrustedDeviceOSType; - enrollStatus: string; + enrollStatus: 'enrolled' | 'not enrolled'; + owner?: string; }; export type TrustedDeviceOSType = 'Windows' | 'Linux' | 'macOS';