fleeta-api-lib
Version:
A comprehensive library for fleet management applications - API, Auth, Device management
13 lines • 976 B
TypeScript
/**
* BlackVue Fleeta Device List API
* Central export point for device management functionality
*/
export { getDeviceList, isDeviceApiReady, getDeviceStatus, isDeviceAvailableForRegistration } from './api';
export { getDeviceList as getMockDeviceList } from './mockApi';
export { getAuthConfigFromStore, isAuthConfigured, isAuthConfigValid, getAuthHeaders } from '../auth/authUtils';
export type { DeviceListParams, DeviceListResponse, DeviceListItem, DeviceInfo, DeviceGroupData, DeviceListStatistics, DeviceStatusParams, DeviceStatusResponse, DeviceRegistrationInfo, BatteryInfo, CareInfo } from './types';
export type { AuthConfig } from '../auth/authUtils';
export { DEVICE_LIST_ERROR_MESSAGES, DEVICE_STATUS_ERROR_MESSAGES, DEVICE_MODE_NAMES, COMMUNICATION_TYPE_NAMES, DEVICE_STATUS_NAMES } from './types';
export declare const DEVICE_API_VERSION = "1.0.0";
export declare const DEVICE_API_NAME = "BlackVue Fleeta Device List API";
//# sourceMappingURL=index.d.ts.map