CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface FeedbackDraft

    Payload submitted by the user when submitting bug reports, suggestions, or feedback.

    const draft: FeedbackDraft = {
    title: 'Audio stutter during bluetooth reconnection',
    description: 'When reconnecting AirPods Pro 2 while a track is playing, audio glitches for 2 seconds.',
    reporterName: 'Jordan Doe',
    reporterEmail: 'jordan@example.com',
    appVersion: '2.4.0',
    buildNumber: '108',
    metadata: {
    audioCodec: 'AAC-ELD',
    deviceModel: 'iPhone 16 Pro',
    },
    };
    interface FeedbackDraft {
        appVersion?: string;
        attachments?: FeedbackAttachment[];
        buildNumber?: string;
        description: string;
        metadata?: Record<string, string>;
        platform?: FeedbackPlatform;
        reporterEmail?: string;
        reporterName?: string;
        title: string;
    }
    Index
    appVersion?: string

    Semantic version string of the host application (e.g., "1.2.0").

    attachments?: FeedbackAttachment[]

    Array of previously uploaded file attachments to associate with this submission.

    buildNumber?: string

    Internal build number of the host application (e.g., "42").

    description: string

    In-depth description detailing reproduction steps, expected behavior, or context (minimum 5 characters).

    metadata?: Record<string, string>

    Custom key-value dictionary for environment variables, user flags, or device diagnostics.

    platform?: FeedbackPlatform

    Target platform for the report. Defaults to runtime OS if omitted.

    reporterEmail?: string

    Optional email address for follow-up responses and status updates.

    reporterName?: string

    Optional full or display name of the submitting user.

    title: string

    Concise summary of the feedback or issue (minimum 3 characters).