@devvai/devv-code-backend
Version:
Backend SDK for Devv Code - Provides authentication, data management, email and AI capabilities
28 lines (27 loc) • 1.56 kB
TypeScript
export { DevvAuth } from './auth';
export { ProjectTable } from './table';
export { FileUpload } from './upload';
export { DevvEmail } from './email';
export { DevvAI } from './ai';
export { OpenRouterAI } from './openrouter';
export { DevvImageGen } from './imageGen';
export { DevvWebSearch } from './webSearch';
export { DevvWebReader } from './webReader';
export { DevvTTS } from './tts';
export type { User, AuthResponse, QueryOperator, QueryValue, QueryCondition, GetItemsOptions, GetItemsResponse, ItemData, ApiResponse, UploadFileRequest, UploadFileSuccessResponse, ErrorResponse, UploadFileResponse, EmailTag, EmailAttachment, SendEmailOptions, EmailResponse, ImageAspectRatio, ImageOutputFormat, TextToImageOptions, TextToImageResponse, WebSearchOptions, WebSearchResponse, WebSearchResult, WebReaderOptions, WebReaderResponse, WebReaderData, TextToSpeechOptions, TextToSpeechResponse } from './types';
import { DevvAuth } from './auth';
import { ProjectTable } from './table';
import { FileUpload } from './upload';
import { DevvEmail } from './email';
import { DevvImageGen } from './imageGen';
import { DevvWebSearch } from './webSearch';
import { DevvWebReader } from './webReader';
import { DevvTTS } from './tts';
export declare const auth: DevvAuth;
export declare const table: ProjectTable;
export declare const upload: FileUpload;
export declare const email: DevvEmail;
export declare const imageGen: DevvImageGen;
export declare const webSearch: DevvWebSearch;
export declare const webReader: DevvWebReader;
export declare const tts: DevvTTS;