buena-typescript-sdk
Version:
Official TypeScript SDK for Buena.ai API - LinkedIn automation and lead management
28 lines (27 loc) • 888 B
JavaScript
/*
* 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 } from "../tools.js";
const args = {
request: models.CreateLeadRequest$inboundSchema,
};
export const tool$createLead = {
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);
},
};
//# sourceMappingURL=createLead.js.map