UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

41 lines 1.95 kB
import { BaseServiceClient } from '../../core/base-client'; import type { HTTPClient } from '../../core/client'; import { type HealthCheckResource, type HealthCheckDataResource, type AkashaResource, type AkashaDataResource, type JoomlaResource, type JoomlaDataResource, type MicroservicesResource, type MicroservicesDataResource, type RubricsResource, type RubricsDataResource, type OllamaResource, type OllamaDataResource } from './resources'; /** * AGR Info Service Client * * Provides access to AGR info service endpoints for AI-powered content generation, * microservice management, rubrics, and Ollama integration. * * @service agr-info * @domain ai-content-generation */ export declare class AgrInfoClient extends BaseServiceClient { /** Health check resource */ readonly healthCheck: HealthCheckResource; /** Health check data resource (data-only) */ readonly healthCheckData: HealthCheckDataResource; /** Akasha AI generation resource */ readonly akasha: AkashaResource; /** Akasha data resource (data-only) */ readonly akashaData: AkashaDataResource; /** Joomla AI generation resource */ readonly joomla: JoomlaResource; /** Joomla data resource (data-only) */ readonly joomlaData: JoomlaDataResource; /** Microservices management resource */ readonly microservices: MicroservicesResource; /** Microservices data resource (data-only) */ readonly microservicesData: MicroservicesDataResource; /** Rubrics management resource */ readonly rubrics: RubricsResource; /** Rubrics data resource (data-only) */ readonly rubricsData: RubricsDataResource; /** Ollama AI model management resource */ readonly ollama: OllamaResource; /** Ollama data resource (data-only) */ readonly ollamaData: OllamaDataResource; constructor(http: HTTPClient, baseUrl?: string); protected getServiceDescription(): string; } //# sourceMappingURL=client.d.ts.map