(pluginFunId: string)
| 1 | import { request } from "../utils/index"; |
| 2 | const deletePlugin = async (pluginFunId: string) => { |
| 3 | return await request.delete(`api/v1/bundle_instances/${pluginFunId}`); |
| 4 | }; |
| 5 | const bundleList = async (params) => { |
| 6 | const str = Object.entries(params) |
| 7 | .filter(([_key, value]) => value) |
no test coverage detected