UNPKG

buena-typescript-sdk

Version:

Official TypeScript SDK for Buena.ai API - LinkedIn automation and lead management

38 lines (30 loc) 866 B
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { createLead } from "../../funcs/createLead.js"; import * as models from "../../models/index.js"; import { formatResult, ToolDefinition } from "../tools.js"; const args = { request: models.CreateLeadRequest$inboundSchema, }; export const tool$createLead: ToolDefinition<typeof args> = { name: "create-lead", description: `Create Lead Create a new lead`, args, tool: async (client, args, ctx) => { const [result, apiCall] = await createLead( client, args.request, { fetchOptions: { signal: ctx.signal } }, ).$inspect(); if (!result.ok) { return { content: [{ type: "text", text: result.error.message }], isError: true, }; } const value = result.value; return formatResult(value, apiCall); }, };