- Fix incorrect API endpoint paths (removed /api prefix) - Improve TypeScript strict typing with explicit metadata interfaces - Update SKILL.md with clear trigger phrases and examples - Fix README installation path reference - Add clarification about API URL format (no /api suffix needed) - Export new metadata type interfaces
21 lines
390 B
TypeScript
21 lines
390 B
TypeScript
/**
|
|
* Mosaic Stack Gantt Plugin - Main exports
|
|
*/
|
|
|
|
export {
|
|
GanttClient,
|
|
createGanttClientFromEnv,
|
|
type GanttClientConfig,
|
|
type Project,
|
|
type ProjectMetadata,
|
|
type Task,
|
|
type TaskMetadata,
|
|
type ProjectStatus,
|
|
type TaskStatus,
|
|
type TaskPriority,
|
|
type PaginatedResponse,
|
|
type ProjectTimeline,
|
|
type DependencyChain,
|
|
type CriticalPath,
|
|
} from './gantt-client.js';
|