modulo de agente pessoal de IA

This commit is contained in:
Vitex Tecnologia
2026-01-14 20:10:42 -03:00
parent ee7204982c
commit 76cbd80eef
25 changed files with 3619 additions and 3 deletions
+21
View File
@@ -6,7 +6,28 @@ export { apiService } from './api';
export { transcriptionService } from './transcription';
export { audioGenerationService, VOICE_OPTIONS } from './audioGeneration';
export { imageGenerationService, IMAGE_SIZE_OPTIONS } from './imageGeneration';
export { userProfileService } from './userProfile';
export { asanaService } from './asana';
export type { TranscriptionResponse, TranscriptionRequest } from './transcription';
export type { AudioGenerationResponse, AudioGenerationRequest, VoiceType } from './audioGeneration';
export type { ImageGenerationResponse, ImageGenerationRequest, ImageSize } from './imageGeneration';
export type {
UserProfile,
CreateUserRequest,
UpdateUserRequest,
FinancialIndicators,
ExpenseItem,
ExpensesResponse,
ExpensesFilters,
ExpenseCategory
} from './userProfile';
export type {
AsanaWorkspace,
AsanaWorkspaceResponse,
AsanaWorkspacesResponse,
AsanaUser,
AsanaUserResponse,
AsanaUsersResponse,
AsanaIntegrationResponse
} from './asana';
export type { ApiResponse, UserConfig, ApiError } from './types';