index.ts 669 Bytes
import { defHttp } from '/@/utils/http/axios';

// 获取设备配置
export const getDeviceProfile = () => {
  return defHttp.get({
    url: '/deviceProfile/me/list',
  });
};

export const getDeviceHistoryInfo = (params) => {
  return defHttp.get(
    {
      url: `/plugins/telemetry/DEVICE/${params.entityId}/values/timeseries`,
      params: { ...params, entityId: null, orderBy: 'ASC' },
    },
    {
      joinPrefix: false,
    }
  );
};

// 获取设备数据的keys
export const getDeviceDataKeys = (id: string) => {
  return defHttp.get(
    {
      url: `/plugins/telemetry/DEVICE/${id}/keys/timeseries`,
    },
    {
      joinPrefix: false,
    }
  );
};