@archastro/sdk
    Preparing search index...

    Interface BugReport

    A bug report or freeform feedback submission from any ArchAstro client. Bug reports are write-only for the submitting user and are not returned by any public list or show endpoint.

    interface BugReport {
        app?: string;
        client: string;
        client_version: string;
        context?: Record<string, unknown>;
        created_at?: string;
        description: string;
        id: string;
        org?: string;
        sandbox?: string;
        team?: string;
        updated_at?: string;
    }
    Index

    Properties

    app?: string

    App ID (dap_...) of the developer app through which the report was submitted.

    client: string

    The client application that submitted this report. One of "agent_network_web", "cli", or "developer_portal".

    client_version: string

    Version string of the submitting client at the time of submission, e.g. "1.4.2".

    context?: Record<string, unknown>

    Optional free-form JSON object providing additional context captured by the client (e.g. viewport size, active route). null when no context was provided. Maximum 5 KB when serialized.

    created_at?: string

    When the bug report was submitted (ISO 8601).

    description: string

    Freeform text describing the issue or feedback, as entered by the user. Up to 10,000 characters.

    id: string

    Bug report ID (bgr_...).

    org?: string

    Organization ID (org_...) scoping this report. null when the user's account is not part of an organization.

    sandbox?: string

    Sandbox ID (dsb_...) active at submission time. null when the report was not submitted from a sandbox context.

    team?: string

    Team ID (tem_...) of the team the submitting user belonged to at submission time. null when the user had no active team.

    updated_at?: string

    When the bug report record was last modified (ISO 8601).