We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a1ed0a commit 788ff21Copy full SHA for 788ff21
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@carbonhost/typescript",
3
- "version": "0.0.88",
+ "version": "0.0.89",
4
"main": "dist/index.js",
5
"module": "dist/index.mjs",
6
"types": "dist/index.d.ts",
src/file-manager/index.ts
@@ -48,7 +48,7 @@ export class FileManager {
48
}
49
50
async deleteFile(params: { path?: string, paths?: string[] }) {
51
- return this.axios.delete("/files", { data: params })
+ return this.axios.delete("/files", { params })
52
53
54
async createFile(parentDirectory: string, fileName: string) {
0 commit comments