import client from "../client"; import type { GetCategoriesQueryResponse } from "../models/GetCategories"; /** * @description A list of all methodology categories used to delineate every project in the marketplace. A project may belong to one or more of these categories. * @summary Categories * @link /categories */ export function getCategories( options: Partial[0]> = {} ): Promise { return client({ method: "get", url: `/categories`, ...options, }); }