25 lines
634 B
TypeScript
25 lines
634 B
TypeScript
/**
|
|
* API Mock Data Factories
|
|
*
|
|
* Typed mock objects matching backend DTOs for route interception.
|
|
* Each export matches the exact shape returned by the corresponding API endpoint.
|
|
*
|
|
* This file re-exports from domain-specific modules for better organization.
|
|
*
|
|
* @module fixtures/api-data
|
|
*/
|
|
|
|
// Re-export vote-related data
|
|
export * from './api-data-votes'
|
|
|
|
// Re-export product-related data
|
|
export * from './api-data-products'
|
|
|
|
// Re-export idea-related data
|
|
export * from './api-data-ideas'
|
|
|
|
// Re-export auth-related data
|
|
export * from './api-data-auth'
|
|
|
|
// Re-export order-related data
|
|
export * from './api-data-orders'
|