createLinkApiV1LinksPostParams.ts
1 /** 2 * Generated by orval v7.9.0 🍺 3 * Do not edit manually. 4 * Cogni API 5 * A minimal FastAPI that directly passes user queries to OpenAI, augmented with Cogni memory. 6 * OpenAPI spec version: 0.1.0 7 */ 8 import type { CreateLinkApiV1LinksPostRelation } from './createLinkApiV1LinksPostRelation'; 9 10 export type CreateLinkApiV1LinksPostParams = { 11 from_id: string; 12 to_id: string; 13 relation: CreateLinkApiV1LinksPostRelation; 14 priority?: number; 15 created_by?: string | null; 16 };