MCPcopy Index your code
hub / github.com/TaskingAI/TaskingAI / bundleList

Function bundleList

frontend/src/axios/plugin.ts:5–11  ·  view source on GitHub ↗
(params)

Source from the content-addressed store, hash-verified

3 return await request.delete(`api/v1/bundle_instances/${pluginFunId}`);
4};
5const bundleList = async (params) => {
6 const str = Object.entries(params)
7 .filter(([_key, value]) => value)
8 .map(([key, value]) => `${key}=${value}`)
9 .join("&");
10 return await request.get(`api/v1/bundles?${str}`);
11};
12const getPluginDetail = async (pluginFunId: string) => {
13 return await request.get(`api/v1/plugins?bundle_id=${pluginFunId}`);
14};

Callers 2

getBundleListFunction · 0.90
getBundleListFunction · 0.90

Calls 2

filterMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected