UNPKG

@flavoai/fastfold

Version:

Flavo frontend package

22 lines 1.27 kB
// ============================================================================ // FASTFOLD CLIENT - Modern React Query Powered API // ============================================================================ // Main hooks for data fetching and mutations export { useQuery, useQueryOne, useCreate, useUpdate, useDelete } from './react-query'; // AI hooks for chat, completion, streaming, and structured generation export { useAIChat, useAIStream, useAIObject, useAICompletion, useAIEmbed, configureAIClient, } from './ai'; // Provider and configuration export { FastfoldProvider, createFastfoldQueryClient, configureFastfold, forwardErrorToParent } from './react-query'; // Cache utilities for advanced use cases export { useInvalidateCache, useUpdateCache } from './react-query'; // Flavo Auth - Delegated OAuth via Flavo export { useFlavoAuth, FlavoAuthProvider, FlavoAuthCallback, ProtectedRoute, } from './auth'; // Observability - Analytics & Error Tracking export { observability } from './observability'; // Types export * from '../types'; // Security export { Security } from '../security'; // Re-export React Query utilities for power users export { useQueryClient, useMutation, QueryClient } from '@tanstack/react-query'; //# sourceMappingURL=index.js.map