AutoBE
    Preparing search index...

    Interface AutoBeDebugStartEvent

    Event fired when the Debug phase starts runtime validation.

    interface AutoBeDebugStartEvent {
        created_at: string & Format<"date-time">;
        id: string;
        realizeHistoryId: string;
        reason: string;
        step: number;
        testHistoryId: string;
        type: "debugStart";
    }

    Hierarchy

    • AutoBeEventBase<"debugStart">
      • AutoBeDebugStartEvent
    Index

    Properties

    created_at: string & Format<"date-time">

    Timestamp when the event was created.

    ISO 8601 formatted date-time string indicating when this event was emitted by the system. This timestamp is crucial for event ordering, performance analysis, and debugging the agent workflow execution timeline.

    Format: "YYYY-MM-DDTHH:mm:ss.sssZ" (e.g., "2024-01-15T14:30:45.123Z")

    id: string

    A unique identifier for the event.

    realizeHistoryId: string

    Identifier of the Realize history that will be validated.

    reason: string

    Reason why the Debug phase was activated through function calling.

    step: number

    Iteration number of the requirements analysis this run validates.

    testHistoryId: string

    Identifier of the Test history that will be executed.

    type: "debugStart"

    Unique identifier for the event type.

    A literal string that discriminates between different event types in the AutoBE system. This field enables TypeScript's discriminated union feature, allowing type-safe event handling through switch statements or conditional checks.

    Examples: "analyzeWrite", "databaseSchema", "interfaceOperation", "testScenario"