Interface StudioMcpDraftExperimental

Mirrors StudioPackageDraft restricted to the fields a session reads.

interface StudioMcpDraft {
    draftId: string;
    envelope?: {
        body?: Record<string, unknown>;
        family?: string;
        format?: string;
        schemaVersion?: string;
    };
    generation: number;
    packageKey?: string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

draftId: string
envelope?: {
    body?: Record<string, unknown>;
    family?: string;
    format?: string;
    schemaVersion?: string;
}
generation: number
packageKey?: string