21 lines
541 B
TypeScript
21 lines
541 B
TypeScript
/**
|
|
* @glam/api-client - API clients for GLAM backend services
|
|
*
|
|
* This package provides typed API clients for:
|
|
* - FastAPI backend services (ports 8000-8003)
|
|
* - Oxigraph SPARQL endpoint (port 7878)
|
|
* - DuckLake analytics (port 8765)
|
|
* - Qdrant vector search (port 6333)
|
|
*/
|
|
|
|
// Core API client with configuration
|
|
export * from './clients/base';
|
|
export * from './clients/sparql';
|
|
export * from './clients/geocoding';
|
|
export * from './clients/custodian';
|
|
|
|
// Types
|
|
export * from './types';
|
|
|
|
// Configuration
|
|
export * from './config';
|