dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
13 lines (12 loc) • 633 B
TypeScript
import { IContext, IResponse } from '../../types';
import { IGenAiAgentRoute, IGenAiAgentRouteCreateRequest } from '..';
export interface IAttachAgentRouteApiResponse {
agent_route: IGenAiAgentRoute;
}
export interface IAttachAgentRouteApiRequest {
parent_agent_uuid: string;
child_agent_uuid: string;
route: IGenAiAgentRouteCreateRequest;
}
export type AttachAgentRouteResponse = IResponse<IAttachAgentRouteApiResponse>;
export declare const attachAgentRoute: ({ httpClient }: IContext) => ({ parent_agent_uuid, child_agent_uuid, route }: IAttachAgentRouteApiRequest) => Promise<Readonly<AttachAgentRouteResponse>>;