interface CmvSnapshot {
    branches: CmvBranch[];
    created_at: string;
    description: string;
    estimated_tokens: null | number;
    id: string;
    message_count: null | number;
    name: string;
    parent_snapshot: null | string;
    session_active_at_capture: boolean;
    snapshot_dir: string;
    source_project_path: string;
    source_session_id: string;
    tags: string[];
}

Properties

branches: CmvBranch[]
created_at: string
description: string
estimated_tokens: null | number
id: string
message_count: null | number
name: string
parent_snapshot: null | string
session_active_at_capture: boolean
snapshot_dir: string
source_project_path: string
source_session_id: string
tags: string[]