@runloop/api-client - v1.4.0
    Preparing search index...

    Interface RepositoryInspectionDetails

    interface RepositoryInspectionDetails {
        id: string;
        commit_sha: string;
        inspected_at: number;
        repository_manifest: RepositoryManifestView;
        status:
            | "invalid"
            | "repo_auth_pending"
            | "repo_authentication_failure"
            | "repo_access_failure"
            | "inspection_pending"
            | "inspection_failed"
            | "inspection_success"
            | "inspection_user_manifest_added";
        blueprint_id?: string
        | null;
        blueprint_name?: string | null;
        build_status?:
            | "image_building"
            | "image_build_success"
            | "image_build_failure"
            | null;
        user_manifest?: RepositoryManifestView
        | null;
        workflow_contexts?:
            | { [key: string]: RepositoryInspectionDetails.WorkflowContexts }
            | null;
    }
    Index

    Properties

    id: string

    The ID of the inspection.

    commit_sha: string

    The sha of the inspected version of the Repository.

    inspected_at: number

    Inspection time of the Repository Version (Unix timestamp milliseconds).

    repository_manifest: RepositoryManifestView

    Repository manifest containing container config and workspace details.

    status:
        | "invalid"
        | "repo_auth_pending"
        | "repo_authentication_failure"
        | "repo_access_failure"
        | "inspection_pending"
        | "inspection_failed"
        | "inspection_success"
        | "inspection_user_manifest_added"

    The status of the repository inspection.

    blueprint_id?: string | null

    The blueprint ID associated with this inspection if successful.

    blueprint_name?: string | null

    The blueprint name associated with this inspection if successful.

    build_status?:
        | "image_building"
        | "image_build_success"
        | "image_build_failure"
        | null

    The status of the linked Blueprint build.

    user_manifest?: RepositoryManifestView | null

    User uploaded repository manifest containing container config and workspace details.

    workflow_contexts?:
        | { [key: string]: RepositoryInspectionDetails.WorkflowContexts }
        | null

    Workflow contexts mapping workflow names to their processing details.