export interface ApiCollection { key: string endpoints: Array wip?: boolean } export interface ApiRoute { method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' path: string, parameters?: any, body?: Array, tooltips?: Record } export interface Body { key: string label: string required?: boolean defaultValue?: any }