assetsGenerateArchive.ts•1.1 kB
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import { assetsGenerateArchive } from "../../funcs/assetsGenerateArchive.js";
import { GenerateArchiveRequest$zodSchema } from "../../models/generatearchiveop.js";
import { formatResult, ToolDefinition } from "../tools.js";
const args = {
request: GenerateArchiveRequest$zodSchema,
};
export const tool$assetsGenerateArchive: ToolDefinition<typeof args> = {
name: "generate-archive",
description:
`Creates an archive (ZIP or TGZ file) that contains a set of assets from
Creates a downloadable ZIP or other archive format containing the specified resources.`,
scopes: ["librarian"],
args,
tool: async (client, args, ctx) => {
const [result, apiCall] = await assetsGenerateArchive(
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);
},
};