Interface ISessionInfo

A Cascade session (conversation/trajectory).

interface ISessionInfo {
    createdAt: Date;
    id: string;
    isActive: boolean;
    lastActiveAt: Date;
    tags: string[];
    title: string;
    type: TrajectoryType;
}

Properties

createdAt: Date

When the session was created

id: string

Unique session/cascade ID

isActive: boolean

Whether the session is currently active

lastActiveAt: Date

When the session was last active

tags: string[]

Tags applied to this session

title: string

Session title (auto-generated or user-set)

Type of trajectory