@mutagent/cli 0.1.14 → 0.1.15
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 +4 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -288,7 +288,7 @@ var init_errors = __esm(() => {
|
|
|
288
288
|
ApiError = class ApiError extends MutagentError {
|
|
289
289
|
statusCode;
|
|
290
290
|
constructor(status, message) {
|
|
291
|
-
super(`API_${status}`, message, status === 401 ? "Check your API key with: mutagent auth status" : undefined, 1);
|
|
291
|
+
super(`API_${String(status)}`, message, status === 401 ? "Check your API key with: mutagent auth status" : undefined, 1);
|
|
292
292
|
this.statusCode = status;
|
|
293
293
|
}
|
|
294
294
|
};
|
|
@@ -6695,5 +6695,5 @@ program.addCommand(createExploreCommand());
|
|
|
6695
6695
|
program.addCommand(createSkillsCommand());
|
|
6696
6696
|
program.parse();
|
|
6697
6697
|
|
|
6698
|
-
//# debugId=
|
|
6698
|
+
//# debugId=A683D38662CECE3C64756E2164756E21
|
|
6699
6699
|
//# sourceMappingURL=cli.js.map
|