Files
llink/js/desktop/src/lib/constants.ts
T
Arjun Patel 92c12ad0bd feat: add limits to recordings on destop (#291)
* feat: add limits to recordings on destop

* code review
2026-06-20 17:22:22 -07:00

17 lines
622 B
TypeScript

/** Maximum file size for attachments (25 MB). */
export const MAX_ATTACHMENT_SIZE_BYTES = 25 * 1024 * 1024;
/** Maximum number of file attachments per particle. */
export const MAX_ATTACHMENTS = 10;
/** Maximum duration for a media (audio/video) recording, in seconds. */
export const RECORDING_MAX_DURATION_SECONDS = 60;
/** When this many seconds or fewer remain, show the red warning state. */
export const RECORDING_WARNING_SECONDS = 10;
export const SUPPORT_EMAIL = 'team@flowylabs.ai';
export const PRIVACY_URL = 'https://flowylabs.ai/llink/privacy';
export const TERMS_URL = 'https://flowylabs.ai/llink/tos';