50 lines
1 KiB
TypeScript
Executable file
50 lines
1 KiB
TypeScript
Executable file
/**
|
|
* Mock Data Exports
|
|
*
|
|
* Central export point for all mock data factories and fixtures.
|
|
*/
|
|
|
|
export { MOCK_USERS, createMockUser, type MockUser } from './users'
|
|
export {
|
|
MOCK_NOTIFICATIONS,
|
|
createMockNotification,
|
|
type MockNotification,
|
|
} from './notifications'
|
|
export {
|
|
MOCK_WEBSITES,
|
|
createMockWebsite,
|
|
createMockWebsiteApp,
|
|
websiteStore,
|
|
} from './websites'
|
|
export {
|
|
MOCK_BLOG_POSTS,
|
|
MOCK_BLOG_CATEGORIES,
|
|
createMockBlogPost,
|
|
type MockBlogPost,
|
|
type MockBlogCategory,
|
|
} from './blog'
|
|
export {
|
|
MOCK_PROVIDERS,
|
|
createMockProvider,
|
|
type MockProvider,
|
|
} from './providers'
|
|
export {
|
|
MOCK_REVIEWS,
|
|
MOCK_PROVIDER_STATS,
|
|
createMockReview,
|
|
type MockReview,
|
|
type MockProviderStats,
|
|
} from './reviews'
|
|
export {
|
|
MOCK_BOOKINGS,
|
|
MOCK_AVAILABILITY_SLOTS,
|
|
createMockBooking,
|
|
type MockBooking,
|
|
type MockAvailabilitySlot,
|
|
} from './bookings'
|
|
export {
|
|
MOCK_ATTRIBUTE_DEFINITIONS,
|
|
MOCK_ATTRIBUTE_VALUES,
|
|
type MockAttributeDefinition,
|
|
type MockAttributeValue,
|
|
} from './attributes'
|