/** * This file was auto-generated by Fern from our API Definition. */ import * as environments from "./environments.js"; import * as core from "./core/index.js"; import { Context } from "./api/resources/context/client/Client.js"; import { Graph } from "./api/resources/graph/client/Client.js"; import { Project } from "./api/resources/project/client/Client.js"; import { Task } from "./api/resources/task/client/Client.js"; import { Thread } from "./api/resources/thread/client/Client.js"; import { User } from "./api/resources/user/client/Client.js"; export declare namespace ZepClient { interface Options { environment?: core.Supplier; /** Specify a custom URL to connect the client to. */ baseUrl?: core.Supplier; apiKey?: core.Supplier; /** Additional headers to include in requests. */ headers?: Record | undefined>; fetcher?: core.FetchFunction; } interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; /** The number of times to retry the request. Defaults to 2. */ maxRetries?: number; /** A hook to abort the request. */ abortSignal?: AbortSignal; /** Additional headers to include in the request. */ headers?: Record | undefined>; } } export declare class ZepClient { protected readonly _options: ZepClient.Options; protected _context: Context | undefined; protected _graph: Graph | undefined; protected _project: Project | undefined; protected _task: Task | undefined; protected _thread: Thread | undefined; protected _user: User | undefined; constructor(_options?: ZepClient.Options); get context(): Context; get graph(): Graph; get project(): Project; get task(): Task; get thread(): Thread; get user(): User; }