@mutagent/cli 0.1.53 → 0.1.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/cli.js +2 -2
- package/dist/bin/cli.js.map +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -608,7 +608,7 @@ class SDKClientWrapper {
|
|
|
608
608
|
async deletePrompt(id, options) {
|
|
609
609
|
try {
|
|
610
610
|
if (options?.force) {
|
|
611
|
-
await this.request(`/api/
|
|
611
|
+
await this.request(`/api/prompt/${id}?force=true`, { method: "DELETE" });
|
|
612
612
|
} else {
|
|
613
613
|
await this.sdk.prompt.deletePrompt({ id: parseInt(id, 10) });
|
|
614
614
|
}
|
|
@@ -8563,5 +8563,5 @@ program.addCommand(createUsageCommand());
|
|
|
8563
8563
|
program.addCommand(createHooksCommand());
|
|
8564
8564
|
program.parse();
|
|
8565
8565
|
|
|
8566
|
-
//# debugId=
|
|
8566
|
+
//# debugId=06C6B1AF1D5EF60164756E2164756E21
|
|
8567
8567
|
//# sourceMappingURL=cli.js.map
|