@meltstudio/meltctl 4.90.0 → 4.92.0
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/index.js +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var CLI_VERSION;
|
|
|
14
14
|
var init_version = __esm({
|
|
15
15
|
"src/utils/version.ts"() {
|
|
16
16
|
"use strict";
|
|
17
|
-
CLI_VERSION = "4.
|
|
17
|
+
CLI_VERSION = "4.92.0";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -917,6 +917,11 @@ function createPmResource(config2) {
|
|
|
917
917
|
async getAuditCatalog() {
|
|
918
918
|
const res = await apiFetch(config2, `/pm/project-audit-catalog`);
|
|
919
919
|
return unwrap("get audit catalog", res);
|
|
920
|
+
},
|
|
921
|
+
/** Manager-triggered immediate audit run for a single project. Returns the same summary the cron would produce. */
|
|
922
|
+
async runProjectAudit(projectId) {
|
|
923
|
+
const res = await apiFetch(config2, `/pm/project-audit/run/${projectId}`, { method: "POST" });
|
|
924
|
+
return unwrap("run project audit", res);
|
|
920
925
|
}
|
|
921
926
|
};
|
|
922
927
|
}
|
package/package.json
CHANGED