Hiyve Components - v1.0.0
    Preparing search index...

    Variable DEFAULT_HIYVE_ERROR_MESSAGESConst

    DEFAULT_HIYVE_ERROR_MESSAGES: Record<string, string> = ...

    Default error message mappings used by formatHiyveError.

    Each key is a lowercase substring to match against the error message. The first matching key wins (checked in iteration order).

    import { DEFAULT_HIYVE_ERROR_MESSAGES } from '@hiyve/utilities';

    // Extend with your own mappings
    const myMessages = {
    ...DEFAULT_HIYVE_ERROR_MESSAGES,
    'rate limit': 'Too many requests. Please wait a moment and try again.',
    };