Add tenantId to device and asset profile info objects

This commit is contained in:
Igor Kulikov 2023-03-17 14:18:34 +02:00
parent eac7ce25a8
commit c03865e50b
2 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,7 @@ export interface AssetProfile extends BaseData<AssetProfileId>, ExportableEntity
}
export interface AssetProfileInfo extends EntityInfoData {
tenantId: TenantId;
image?: string;
defaultDashboardId?: DashboardId;
}

View File

@ -587,6 +587,7 @@ export interface DeviceProfile extends BaseData<DeviceProfileId>, ExportableEnti
}
export interface DeviceProfileInfo extends EntityInfoData {
tenantId: TenantId;
type: DeviceProfileType;
transportType: DeviceTransportType;
image?: string;