@squidcloud/client
    Preparing search index...

    Interface AiAgentRevision

    Represents a single agent revision entry.

    interface AiAgentRevision {
        action: AiAgentRevisionAction;
        agentId: string;
        agentSnapshot: AiAgent;
        createdAt: Date;
        revisionNumber: number;
    }
    Index

    Properties

    The action that triggered this revision (created, updated, or deleted).

    agentId: string

    The ID of the agent this revision belongs to.

    agentSnapshot: AiAgent

    Snapshot of the agent data at the time of the revision.

    createdAt: Date

    Timestamp when this revision was created.

    revisionNumber: number

    The revision number, incremented for each change to the agent.