agent-ecosystem/src/shared/constants/index.ts
iliya b20b69066e feat(attachments): expand file support and enhance attachment handling
- Added support for additional attachment types: PDF and plain text.
- Updated the TeamProvisioningService to handle new attachment types with appropriate content blocks.
- Enhanced AttachmentDisplay and AttachmentPreview components to differentiate between image and non-image files.
- Modified DropZoneOverlay and SendMessageDialog to reflect changes in file handling and messaging.
- Improved user experience by allowing file previews for non-image attachments and updating error messages accordingly.
- Refactored attachment validation logic to categorize unsupported files and handle them gracefully.
2026-03-23 17:24:48 +02:00

15 lines
363 B
TypeScript

/**
* Shared constants barrel export.
*/
export * from './agentBlocks';
export * from './attachments';
export * from './cache';
export * from './cli';
export * from './crossTeam';
export * from './kanban';
export * from './memberColors';
export * from './teamLimits';
export * from './trafficLights';
export * from './triggerColors';
export * from './window';