2025-09-05 17:49:48 +02:00
|
|
|
/**
|
|
|
|
|
* Main API exports for clean imports
|
|
|
|
|
* Export all services, types, and hooks
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Client
|
|
|
|
|
export { apiClient } from './client';
|
|
|
|
|
export type { ApiError } from './client';
|
|
|
|
|
|
|
|
|
|
// Services
|
|
|
|
|
export { authService } from './services/auth';
|
|
|
|
|
export { userService } from './services/user';
|
|
|
|
|
export { onboardingService } from './services/onboarding';
|
|
|
|
|
export { tenantService } from './services/tenant';
|
|
|
|
|
export { subscriptionService } from './services/subscription';
|
|
|
|
|
export { salesService } from './services/sales';
|
|
|
|
|
export { dataImportService } from './services/dataImport';
|
|
|
|
|
export { inventoryService } from './services/inventory';
|
|
|
|
|
export { classificationService } from './services/classification';
|
|
|
|
|
export { inventoryDashboardService } from './services/inventoryDashboard';
|
|
|
|
|
export { foodSafetyService } from './services/foodSafety';
|
|
|
|
|
|
2025-09-05 22:46:28 +02:00
|
|
|
// New API Services
|
|
|
|
|
export { trainingService } from './services/training';
|
|
|
|
|
export { alertProcessorService } from './services/alert_processor';
|
|
|
|
|
export { suppliersService } from './services/suppliers';
|
2025-09-09 08:30:06 +02:00
|
|
|
export { OrdersService } from './services/orders';
|
2025-09-05 22:46:28 +02:00
|
|
|
|
2025-09-05 17:49:48 +02:00
|
|
|
// Types - Auth
|
|
|
|
|
export type {
|
|
|
|
|
User,
|
|
|
|
|
UserRegistration,
|
|
|
|
|
UserLogin,
|
|
|
|
|
TokenResponse,
|
|
|
|
|
RefreshTokenRequest,
|
|
|
|
|
PasswordChange,
|
|
|
|
|
PasswordReset,
|
|
|
|
|
UserResponse,
|
|
|
|
|
UserUpdate as AuthUserUpdate,
|
|
|
|
|
TokenVerificationResponse,
|
|
|
|
|
AuthHealthResponse,
|
|
|
|
|
} from './types/auth';
|
|
|
|
|
|
|
|
|
|
// Types - User
|
|
|
|
|
export type {
|
|
|
|
|
UserUpdate,
|
|
|
|
|
AdminDeleteRequest,
|
|
|
|
|
AdminDeleteResponse,
|
|
|
|
|
} from './types/user';
|
|
|
|
|
|
|
|
|
|
// Types - Onboarding
|
|
|
|
|
export type {
|
|
|
|
|
OnboardingStepStatus,
|
|
|
|
|
UserProgress,
|
|
|
|
|
UpdateStepRequest,
|
|
|
|
|
} from './types/onboarding';
|
|
|
|
|
|
|
|
|
|
// Types - Tenant
|
|
|
|
|
export type {
|
|
|
|
|
BakeryRegistration,
|
|
|
|
|
TenantResponse,
|
|
|
|
|
TenantAccessResponse,
|
|
|
|
|
TenantUpdate,
|
|
|
|
|
TenantMemberResponse,
|
|
|
|
|
TenantStatistics,
|
|
|
|
|
TenantSearchParams,
|
|
|
|
|
TenantNearbyParams,
|
|
|
|
|
} from './types/tenant';
|
|
|
|
|
|
|
|
|
|
// Types - Subscription
|
|
|
|
|
export type {
|
|
|
|
|
SubscriptionLimits,
|
|
|
|
|
FeatureCheckResponse,
|
|
|
|
|
UsageCheckResponse,
|
|
|
|
|
} from './types/subscription';
|
|
|
|
|
|
|
|
|
|
// Types - Sales
|
|
|
|
|
export type {
|
|
|
|
|
SalesDataCreate,
|
|
|
|
|
SalesDataUpdate,
|
|
|
|
|
SalesDataResponse,
|
|
|
|
|
SalesDataQuery,
|
|
|
|
|
SalesAnalytics,
|
|
|
|
|
SalesValidationRequest,
|
|
|
|
|
} from './types/sales';
|
|
|
|
|
|
|
|
|
|
// Types - Data Import
|
|
|
|
|
export type {
|
|
|
|
|
ImportValidationRequest,
|
|
|
|
|
ImportValidationResponse,
|
|
|
|
|
ImportProcessRequest,
|
|
|
|
|
ImportProcessResponse,
|
|
|
|
|
ImportStatusResponse,
|
|
|
|
|
} from './types/dataImport';
|
|
|
|
|
|
|
|
|
|
// Types - Inventory
|
|
|
|
|
export type {
|
|
|
|
|
IngredientCreate,
|
|
|
|
|
IngredientUpdate,
|
|
|
|
|
IngredientResponse,
|
|
|
|
|
StockCreate,
|
|
|
|
|
StockUpdate,
|
|
|
|
|
StockResponse,
|
|
|
|
|
StockMovementCreate,
|
|
|
|
|
StockMovementResponse,
|
|
|
|
|
InventoryFilter,
|
|
|
|
|
StockFilter,
|
|
|
|
|
StockConsumptionRequest,
|
|
|
|
|
StockConsumptionResponse,
|
|
|
|
|
PaginatedResponse,
|
|
|
|
|
} from './types/inventory';
|
|
|
|
|
|
|
|
|
|
// Types - Classification
|
|
|
|
|
export type {
|
|
|
|
|
ProductClassificationRequest,
|
|
|
|
|
BatchClassificationRequest,
|
|
|
|
|
ProductSuggestionResponse,
|
|
|
|
|
BusinessModelAnalysisResponse,
|
|
|
|
|
ClassificationApprovalRequest,
|
|
|
|
|
ClassificationApprovalResponse,
|
|
|
|
|
} from './types/classification';
|
|
|
|
|
|
|
|
|
|
// Types - Dashboard
|
|
|
|
|
export type {
|
|
|
|
|
InventoryDashboardSummary,
|
|
|
|
|
InventoryAnalytics,
|
|
|
|
|
BusinessModelInsights,
|
|
|
|
|
DashboardFilter,
|
|
|
|
|
AlertsFilter,
|
|
|
|
|
RecentActivity,
|
|
|
|
|
StockMovementSummary,
|
|
|
|
|
CategorySummary,
|
|
|
|
|
AlertSummary,
|
|
|
|
|
StockStatusSummary,
|
|
|
|
|
} from './types/dashboard';
|
|
|
|
|
|
|
|
|
|
// Types - Food Safety
|
|
|
|
|
export type {
|
|
|
|
|
FoodSafetyComplianceCreate,
|
|
|
|
|
FoodSafetyComplianceUpdate,
|
|
|
|
|
FoodSafetyComplianceResponse,
|
|
|
|
|
TemperatureLogCreate,
|
|
|
|
|
BulkTemperatureLogCreate,
|
|
|
|
|
TemperatureLogResponse,
|
|
|
|
|
FoodSafetyAlertCreate,
|
|
|
|
|
FoodSafetyAlertUpdate,
|
|
|
|
|
FoodSafetyAlertResponse,
|
|
|
|
|
FoodSafetyFilter,
|
|
|
|
|
TemperatureMonitoringFilter,
|
|
|
|
|
FoodSafetyMetrics,
|
|
|
|
|
TemperatureAnalytics,
|
|
|
|
|
FoodSafetyDashboard,
|
|
|
|
|
} from './types/foodSafety';
|
|
|
|
|
|
2025-09-05 22:46:28 +02:00
|
|
|
// Types - Training
|
|
|
|
|
export type {
|
|
|
|
|
TrainingJobRequest,
|
|
|
|
|
TrainingJobResponse,
|
|
|
|
|
TrainingJobStatus,
|
|
|
|
|
SingleProductTrainingRequest,
|
|
|
|
|
TrainingResults,
|
|
|
|
|
TrainingMetrics,
|
|
|
|
|
ActiveModelResponse,
|
|
|
|
|
ModelMetricsResponse,
|
|
|
|
|
TrainedModelResponse,
|
|
|
|
|
TenantStatistics as TrainingTenantStatistics,
|
|
|
|
|
ModelPerformanceResponse,
|
|
|
|
|
TrainingProgressMessage,
|
|
|
|
|
TrainingCompletedMessage,
|
|
|
|
|
TrainingErrorMessage,
|
|
|
|
|
TrainingWebSocketMessage,
|
|
|
|
|
ModelsQueryParams,
|
|
|
|
|
} from './types/training';
|
|
|
|
|
|
|
|
|
|
export { TrainingStatus } from './types/training';
|
|
|
|
|
|
|
|
|
|
// Types - Alert Processor
|
|
|
|
|
export type {
|
|
|
|
|
AlertMessage,
|
|
|
|
|
AlertResponse,
|
|
|
|
|
AlertUpdateRequest,
|
|
|
|
|
AlertQueryParams,
|
|
|
|
|
AlertDashboardData,
|
|
|
|
|
NotificationSettings,
|
|
|
|
|
ChannelRoutingConfig,
|
|
|
|
|
WebhookConfig,
|
|
|
|
|
AlertProcessingStatus,
|
|
|
|
|
ProcessingMetrics,
|
|
|
|
|
AlertAction,
|
|
|
|
|
BusinessHours,
|
|
|
|
|
} from './types/alert_processor';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
AlertItemType,
|
|
|
|
|
AlertType,
|
|
|
|
|
AlertSeverity,
|
|
|
|
|
AlertService,
|
|
|
|
|
NotificationChannel,
|
|
|
|
|
} from './types/alert_processor';
|
|
|
|
|
|
|
|
|
|
// Types - Suppliers
|
|
|
|
|
export type {
|
|
|
|
|
SupplierCreate,
|
|
|
|
|
SupplierUpdate,
|
|
|
|
|
SupplierResponse,
|
|
|
|
|
SupplierSummary,
|
|
|
|
|
SupplierApproval,
|
|
|
|
|
SupplierQueryParams,
|
|
|
|
|
SupplierStatistics,
|
|
|
|
|
TopSuppliersResponse,
|
|
|
|
|
PurchaseOrderCreate,
|
|
|
|
|
PurchaseOrderUpdate,
|
|
|
|
|
PurchaseOrderResponse,
|
|
|
|
|
PurchaseOrderApproval,
|
|
|
|
|
PurchaseOrderQueryParams,
|
|
|
|
|
DeliveryCreate,
|
|
|
|
|
DeliveryUpdate,
|
|
|
|
|
DeliveryResponse,
|
|
|
|
|
DeliveryReceiptConfirmation,
|
|
|
|
|
DeliveryQueryParams,
|
|
|
|
|
PerformanceCalculationRequest,
|
|
|
|
|
PerformanceMetrics,
|
|
|
|
|
PerformanceAlert,
|
|
|
|
|
PurchaseOrderItem,
|
|
|
|
|
DeliveryItem,
|
|
|
|
|
} from './types/suppliers';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
SupplierType,
|
|
|
|
|
SupplierStatus,
|
|
|
|
|
PaymentTerms,
|
|
|
|
|
PurchaseOrderStatus,
|
|
|
|
|
DeliveryStatus,
|
|
|
|
|
OrderPriority,
|
|
|
|
|
PerformanceMetricType,
|
|
|
|
|
} from './types/suppliers';
|
|
|
|
|
|
2025-09-09 08:30:06 +02:00
|
|
|
// Types - Orders
|
|
|
|
|
export type {
|
|
|
|
|
CustomerType,
|
|
|
|
|
DeliveryMethod,
|
|
|
|
|
PaymentTerms as OrdersPaymentTerms,
|
|
|
|
|
PaymentMethod,
|
|
|
|
|
PaymentStatus,
|
|
|
|
|
CustomerSegment,
|
|
|
|
|
PriorityLevel,
|
|
|
|
|
OrderType,
|
|
|
|
|
OrderStatus,
|
|
|
|
|
OrderSource,
|
|
|
|
|
SalesChannel,
|
|
|
|
|
BusinessModel,
|
|
|
|
|
CustomerBase,
|
|
|
|
|
CustomerCreate,
|
|
|
|
|
CustomerUpdate,
|
|
|
|
|
CustomerResponse,
|
|
|
|
|
OrderItemBase,
|
|
|
|
|
OrderItemCreate,
|
|
|
|
|
OrderItemUpdate,
|
|
|
|
|
OrderItemResponse,
|
|
|
|
|
OrderBase,
|
|
|
|
|
OrderCreate,
|
|
|
|
|
OrderUpdate,
|
|
|
|
|
OrderResponse,
|
|
|
|
|
OrdersDashboardSummary,
|
|
|
|
|
DemandRequirements,
|
|
|
|
|
BusinessModelDetection,
|
|
|
|
|
ServiceStatus,
|
|
|
|
|
GetOrdersParams,
|
|
|
|
|
GetCustomersParams,
|
|
|
|
|
UpdateOrderStatusParams,
|
|
|
|
|
GetDemandRequirementsParams,
|
|
|
|
|
} from './types/orders';
|
|
|
|
|
|
2025-09-05 17:49:48 +02:00
|
|
|
// Hooks - Auth
|
|
|
|
|
export {
|
|
|
|
|
useAuthProfile,
|
|
|
|
|
useAuthHealth,
|
|
|
|
|
useVerifyToken,
|
|
|
|
|
useRegister,
|
|
|
|
|
useLogin,
|
|
|
|
|
useRefreshToken,
|
|
|
|
|
useLogout,
|
|
|
|
|
useChangePassword,
|
|
|
|
|
useResetPassword,
|
|
|
|
|
useUpdateProfile,
|
|
|
|
|
useVerifyEmail,
|
|
|
|
|
authKeys,
|
|
|
|
|
} from './hooks/auth';
|
|
|
|
|
|
|
|
|
|
// Hooks - User
|
|
|
|
|
export {
|
|
|
|
|
useCurrentUser,
|
|
|
|
|
useAllUsers,
|
|
|
|
|
useUserById,
|
|
|
|
|
useUpdateUser,
|
|
|
|
|
useDeleteUser,
|
|
|
|
|
useAdminDeleteUser,
|
|
|
|
|
userKeys,
|
|
|
|
|
} from './hooks/user';
|
|
|
|
|
|
|
|
|
|
// Hooks - Onboarding
|
|
|
|
|
export {
|
|
|
|
|
useUserProgress,
|
|
|
|
|
useAllSteps,
|
|
|
|
|
useStepDetails,
|
|
|
|
|
useUpdateStep,
|
|
|
|
|
useMarkStepCompleted,
|
|
|
|
|
useResetProgress,
|
|
|
|
|
onboardingKeys,
|
|
|
|
|
} from './hooks/onboarding';
|
|
|
|
|
|
|
|
|
|
// Hooks - Tenant
|
|
|
|
|
export {
|
|
|
|
|
useTenant,
|
|
|
|
|
useTenantBySubdomain,
|
|
|
|
|
useUserTenants,
|
|
|
|
|
useUserOwnedTenants,
|
|
|
|
|
useTenantAccess,
|
|
|
|
|
useSearchTenants,
|
|
|
|
|
useNearbyTenants,
|
|
|
|
|
useTeamMembers,
|
|
|
|
|
useTenantStatistics,
|
|
|
|
|
useRegisterBakery,
|
|
|
|
|
useUpdateTenant,
|
|
|
|
|
useDeactivateTenant,
|
|
|
|
|
useActivateTenant,
|
|
|
|
|
useUpdateModelStatus,
|
|
|
|
|
useAddTeamMember,
|
|
|
|
|
useUpdateMemberRole,
|
|
|
|
|
useRemoveTeamMember,
|
|
|
|
|
tenantKeys,
|
|
|
|
|
} from './hooks/tenant';
|
|
|
|
|
|
|
|
|
|
// Hooks - Sales
|
|
|
|
|
export {
|
|
|
|
|
useSalesRecords,
|
|
|
|
|
useSalesRecord,
|
|
|
|
|
useSalesAnalytics,
|
|
|
|
|
useProductSales,
|
|
|
|
|
useProductCategories,
|
|
|
|
|
useCreateSalesRecord,
|
|
|
|
|
useUpdateSalesRecord,
|
|
|
|
|
useDeleteSalesRecord,
|
|
|
|
|
useValidateSalesRecord,
|
|
|
|
|
salesKeys,
|
|
|
|
|
} from './hooks/sales';
|
|
|
|
|
|
|
|
|
|
// Hooks - Inventory
|
|
|
|
|
export {
|
|
|
|
|
useIngredients,
|
|
|
|
|
useIngredient,
|
|
|
|
|
useIngredientsByCategory,
|
|
|
|
|
useLowStockIngredients,
|
|
|
|
|
useStock,
|
|
|
|
|
useStockByIngredient,
|
|
|
|
|
useExpiringStock,
|
|
|
|
|
useExpiredStock,
|
|
|
|
|
useStockMovements,
|
|
|
|
|
useStockAnalytics,
|
|
|
|
|
useCreateIngredient,
|
|
|
|
|
useUpdateIngredient,
|
|
|
|
|
useDeleteIngredient,
|
|
|
|
|
useAddStock,
|
|
|
|
|
useUpdateStock,
|
|
|
|
|
useConsumeStock,
|
|
|
|
|
useCreateStockMovement,
|
|
|
|
|
inventoryKeys,
|
|
|
|
|
} from './hooks/inventory';
|
|
|
|
|
|
|
|
|
|
// Hooks - Classification
|
|
|
|
|
export {
|
|
|
|
|
useClassifyProduct,
|
|
|
|
|
useClassifyProductsBatch,
|
|
|
|
|
classificationKeys,
|
|
|
|
|
} from './hooks/classification';
|
|
|
|
|
|
|
|
|
|
// Hooks - Inventory Dashboard
|
|
|
|
|
export {
|
|
|
|
|
useInventoryDashboardSummary,
|
|
|
|
|
useInventoryAnalytics,
|
|
|
|
|
useBusinessModelInsights,
|
|
|
|
|
useRecentActivity,
|
|
|
|
|
useInventoryAlerts,
|
|
|
|
|
useStockSummary,
|
|
|
|
|
useTopCategories,
|
|
|
|
|
useExpiryCalendar,
|
|
|
|
|
inventoryDashboardKeys,
|
|
|
|
|
} from './hooks/inventoryDashboard';
|
|
|
|
|
|
|
|
|
|
// Hooks - Food Safety
|
|
|
|
|
export {
|
|
|
|
|
useComplianceRecords,
|
|
|
|
|
useComplianceRecord,
|
|
|
|
|
useTemperatureLogs,
|
|
|
|
|
useTemperatureAnalytics,
|
|
|
|
|
useTemperatureViolations,
|
|
|
|
|
useFoodSafetyAlerts,
|
|
|
|
|
useFoodSafetyAlert,
|
|
|
|
|
useFoodSafetyDashboard,
|
|
|
|
|
useFoodSafetyMetrics,
|
|
|
|
|
useComplianceRate,
|
|
|
|
|
useCreateComplianceRecord,
|
|
|
|
|
useUpdateComplianceRecord,
|
|
|
|
|
useCreateTemperatureLog,
|
|
|
|
|
useCreateBulkTemperatureLogs,
|
|
|
|
|
useCreateFoodSafetyAlert,
|
|
|
|
|
useUpdateFoodSafetyAlert,
|
|
|
|
|
foodSafetyKeys,
|
|
|
|
|
} from './hooks/foodSafety';
|
|
|
|
|
|
2025-09-05 22:46:28 +02:00
|
|
|
// Hooks - Data Import
|
|
|
|
|
export {
|
|
|
|
|
useImportStatus,
|
|
|
|
|
useValidateJsonData,
|
|
|
|
|
useValidateCsvFile,
|
|
|
|
|
useImportJsonData,
|
|
|
|
|
useImportCsvFile,
|
2025-09-06 19:40:47 +02:00
|
|
|
useValidateFileOnly,
|
2025-09-05 22:46:28 +02:00
|
|
|
useValidateAndImportFile,
|
|
|
|
|
dataImportKeys,
|
|
|
|
|
} from './hooks/dataImport';
|
|
|
|
|
|
|
|
|
|
// Hooks - Training
|
|
|
|
|
export {
|
|
|
|
|
useTrainingJobStatus,
|
|
|
|
|
useActiveModel,
|
|
|
|
|
useModels,
|
|
|
|
|
useModelMetrics,
|
|
|
|
|
useModelPerformance,
|
|
|
|
|
useTenantTrainingStatistics,
|
|
|
|
|
useCreateTrainingJob,
|
|
|
|
|
useTrainSingleProduct,
|
|
|
|
|
useDeleteAllTenantModels,
|
|
|
|
|
useTrainingWebSocket,
|
|
|
|
|
useIsTrainingInProgress,
|
|
|
|
|
useTrainingProgress,
|
|
|
|
|
trainingKeys,
|
|
|
|
|
} from './hooks/training';
|
|
|
|
|
|
|
|
|
|
// Hooks - Alert Processor
|
|
|
|
|
export {
|
|
|
|
|
useAlerts,
|
|
|
|
|
useAlert,
|
|
|
|
|
useAlertDashboardData,
|
|
|
|
|
useAlertProcessingStatus,
|
|
|
|
|
useNotificationSettings,
|
|
|
|
|
useChannelRoutingConfig,
|
|
|
|
|
useWebhooks,
|
|
|
|
|
useProcessingMetrics,
|
|
|
|
|
useUpdateAlert,
|
|
|
|
|
useDismissAlert,
|
|
|
|
|
useAcknowledgeAlert,
|
|
|
|
|
useResolveAlert,
|
|
|
|
|
useUpdateNotificationSettings,
|
|
|
|
|
useCreateWebhook,
|
|
|
|
|
useUpdateWebhook,
|
|
|
|
|
useDeleteWebhook,
|
|
|
|
|
useTestWebhook,
|
|
|
|
|
useAlertSSE,
|
|
|
|
|
useActiveAlertsCount,
|
|
|
|
|
useAlertsByPriority,
|
|
|
|
|
useUnreadAlertsCount,
|
|
|
|
|
alertProcessorKeys,
|
|
|
|
|
} from './hooks/alert_processor';
|
|
|
|
|
|
|
|
|
|
// Hooks - Suppliers
|
|
|
|
|
export {
|
|
|
|
|
useSuppliers,
|
|
|
|
|
useSupplier,
|
|
|
|
|
useSupplierStatistics,
|
|
|
|
|
useActiveSuppliers,
|
|
|
|
|
useTopSuppliers,
|
|
|
|
|
usePendingApprovalSuppliers,
|
|
|
|
|
useSuppliersByType,
|
|
|
|
|
usePurchaseOrders,
|
|
|
|
|
usePurchaseOrder,
|
|
|
|
|
useDeliveries,
|
|
|
|
|
useDelivery,
|
|
|
|
|
useSupplierPerformanceMetrics,
|
|
|
|
|
usePerformanceAlerts,
|
|
|
|
|
useCreateSupplier,
|
|
|
|
|
useUpdateSupplier,
|
|
|
|
|
useDeleteSupplier,
|
|
|
|
|
useApproveSupplier,
|
|
|
|
|
useCreatePurchaseOrder,
|
|
|
|
|
useUpdatePurchaseOrder,
|
|
|
|
|
useApprovePurchaseOrder,
|
|
|
|
|
useCreateDelivery,
|
|
|
|
|
useUpdateDelivery,
|
|
|
|
|
useConfirmDeliveryReceipt,
|
|
|
|
|
useCalculateSupplierPerformance,
|
|
|
|
|
useEvaluatePerformanceAlerts,
|
|
|
|
|
useSuppliersByStatus,
|
|
|
|
|
useSuppliersCount,
|
|
|
|
|
useActiveSuppliersCount,
|
|
|
|
|
usePendingOrdersCount,
|
|
|
|
|
suppliersKeys,
|
|
|
|
|
} from './hooks/suppliers';
|
|
|
|
|
|
2025-09-09 08:30:06 +02:00
|
|
|
// Hooks - Orders
|
|
|
|
|
export {
|
|
|
|
|
useOrders,
|
|
|
|
|
useOrder,
|
|
|
|
|
useCustomers,
|
|
|
|
|
useCustomer,
|
|
|
|
|
useOrdersDashboard,
|
|
|
|
|
useDemandRequirements,
|
|
|
|
|
useBusinessModelDetection,
|
|
|
|
|
useOrdersServiceStatus,
|
|
|
|
|
useCreateOrder,
|
|
|
|
|
useUpdateOrderStatus,
|
|
|
|
|
useCreateCustomer,
|
|
|
|
|
useUpdateCustomer,
|
|
|
|
|
useInvalidateOrders,
|
|
|
|
|
ordersKeys,
|
|
|
|
|
} from './hooks/orders';
|
|
|
|
|
|
2025-09-05 17:49:48 +02:00
|
|
|
// Query Key Factories (for advanced usage)
|
|
|
|
|
export {
|
|
|
|
|
authKeys,
|
|
|
|
|
userKeys,
|
|
|
|
|
onboardingKeys,
|
|
|
|
|
tenantKeys,
|
|
|
|
|
salesKeys,
|
|
|
|
|
inventoryKeys,
|
|
|
|
|
classificationKeys,
|
|
|
|
|
inventoryDashboardKeys,
|
|
|
|
|
foodSafetyKeys,
|
2025-09-05 22:46:28 +02:00
|
|
|
trainingKeys,
|
|
|
|
|
alertProcessorKeys,
|
|
|
|
|
suppliersKeys,
|
2025-09-09 08:30:06 +02:00
|
|
|
ordersKeys,
|
2025-09-05 22:46:28 +02:00
|
|
|
dataImportKeys,
|
2025-09-05 17:49:48 +02:00
|
|
|
};
|