13 lines
428 B
TypeScript
13 lines
428 B
TypeScript
/**
|
|
* @deprecated This legacy API client has been refactored into domain-specific clients.
|
|
* Please use the new API client from './api' instead.
|
|
*
|
|
* TODO: Remove this file once all consumers have migrated to the new API client structure.
|
|
*/
|
|
|
|
// Re-export the new API client for backward compatibility
|
|
export { api as apiClient } from './api';
|
|
|
|
// Re-export DTO types for backward compatibility
|
|
export type * from './dtos';
|