mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 09:19:39 +02:00
Add new Inventory management app with: - Backend NestJS setup with Drizzle schema for items, categories, locations - Web SvelteKit app with item management UI - Shared branding config (logo, icon, colors) - Storage bucket configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
787 B
TypeScript
43 lines
787 B
TypeScript
// Main client
|
|
export { StorageClient } from './client';
|
|
|
|
// Factory functions
|
|
export {
|
|
createStorageClient,
|
|
getStorageConfig,
|
|
createPictureStorage,
|
|
createChatStorage,
|
|
createManaDeckStorage,
|
|
createNutriPhiStorage,
|
|
createPresiStorage,
|
|
createCalendarStorage,
|
|
createContactsStorage,
|
|
createStorageStorage,
|
|
createMailStorage,
|
|
createInventoryStorage,
|
|
} from './factory';
|
|
|
|
// Utilities
|
|
export {
|
|
generateFileKey,
|
|
generateUserFileKey,
|
|
getContentType,
|
|
validateFileSize,
|
|
validateFileExtension,
|
|
IMAGE_EXTENSIONS,
|
|
DOCUMENT_EXTENSIONS,
|
|
AUDIO_EXTENSIONS,
|
|
VIDEO_EXTENSIONS,
|
|
} from './utils';
|
|
|
|
// Types
|
|
export {
|
|
BUCKETS,
|
|
type StorageConfig,
|
|
type BucketConfig,
|
|
type BucketName,
|
|
type UploadOptions,
|
|
type PresignedUrlOptions,
|
|
type UploadResult,
|
|
type FileInfo,
|
|
} from './types';
|