@archastro/sdk
    Preparing search index...

    Interface SolutionInstance

    A customer-keyed instance stamped from an installed solution template.

    interface SolutionInstance {
        agent?: string | null;
        agent_name?: string | null;
        attachment_ref?: Record<string, unknown> | null;
        created_at: string;
        customer_key: string;
        customer_label?: string | null;
        id: string;
        local_edit_count?: number | null;
        pinned_template_version?: string | null;
        pinned_version_number?: number | null;
        solution_template_config: string;
        status: "active" | "archived";
        updated_at: string;
    }
    Index

    Properties

    agent?: string | null

    Materialized agent for this customer (agi_...). null for a row without an agent.

    agent_name?: string | null

    Human-readable display name of the materialized agent. null when no agent is visible.

    attachment_ref?: Record<string, unknown> | null

    Opaque tagged reference to the deployment target. Consumers interpret its kind.

    created_at: string

    When this instance was stamped.

    customer_key: string

    Stable vendor-defined key for the customer.

    customer_label?: string | null

    Human-readable customer label. null when the vendor did not provide one.

    id: string

    Solution instance ID (sli_...).

    local_edit_count?: number | null

    Count of local agent edits relative to the pinned template. null when unavailable.

    pinned_template_version?: string | null

    Pinned template version record (cfv_...). null when no version is pinned.

    pinned_version_number?: number | null

    Human-readable version number of the pinned template. null when unavailable.

    solution_template_config: string

    Installed solution template config that stamped this instance (cfg_...).

    status: "active" | "archived"

    Lifecycle status of this stamped instance.

    updated_at: string

    When this instance was last updated.