Is it me or transient assistants are being depreca...
# general-english
m
Is it me or transient assistants are being deprecated @Vapi ? I upgraded vapi server sdk to this version
"@vapi-ai/server-sdk": "^0.6.6",
and the typescript definition of
Assistant
interface expects a assistantId
Copy code
/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface Assistant {
    type: "assistant";
    assistantId: string;
    name: string;
    /** This is for metadata you want to store on the task. */
    metadata?: Record<string, unknown>;
    serverMessages?: unknown;
}