ISPO SDK
    Preparing search index...

    Interface CloudSupportIssueCreateArgs

    Markdown
    interface CloudSupportIssueCreateArgs {
        actual: string;
        category?: "bug" | "ui" | "crash" | "performance" | "other";
        evidenceRefs?: string[];
        expected: string;
        repro: string;
        severity?: "high" | "medium" | "low";
        surface: "project" | "host" | "community";
        title: string;
    }
    Index
    actual: string
    category?: "bug" | "ui" | "crash" | "performance" | "other"
    evidenceRefs?: string[]

    Opaque evidence refs from collectEvidence, claimed by this issue. Must belong to the caller and be unattached, or the create is invalid. At most 8 (CLOUD_SUPPORT_MAX_EVIDENCE_REFS) — a longer list is invalid too, so an app should not offer a ninth capture.

    expected: string
    repro: string
    severity?: "high" | "medium" | "low"
    surface: "project" | "host" | "community"
    title: string