AppFeedback (TypeScript)
    Preparing search index...

    Interface RelayRequest

    The wire payload accepted by handleFeedback.

    Note on attachments: the AppFeedback spec defines an optional attachments field, but this reference handler does NOT process uploads — it only opens a GitHub issue from the text fields below. If you need attachment support, implement the upload yourself in your adapter (store the file, then embed the resulting URL in description/extraFields before calling this handler).

    interface RelayRequest {
        captchaToken?: string | null;
        contactEmail?: string | null;
        description: string;
        deviceInfo: DeviceInfo;
        extraFields?: Record<string, string>;
        title: string;
        type: FeedbackType;
    }
    Index

    Properties

    captchaToken?: string | null
    contactEmail?: string | null
    description: string
    deviceInfo: DeviceInfo
    extraFields?: Record<string, string>
    title: string