@meltstudio/meltctl 4.195.0 → 4.197.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 +17 -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.197.0";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -1182,6 +1182,14 @@ function createPmResource(config) {
|
|
|
1182
1182
|
const res = await apiFetch(config, `/pm/project-audit/run/${projectId}`, { method: "POST" });
|
|
1183
1183
|
return unwrap("run project audit", res);
|
|
1184
1184
|
},
|
|
1185
|
+
/** Open (unresolved) project audit flags — what the nightly project audit
|
|
1186
|
+
* wrote. Read-only; flags auto-resolve when the underlying issue clears
|
|
1187
|
+
* (#460 dropped per-item dismissal). The unified Roadmap tool groups the
|
|
1188
|
+
* phase-tagged ones under each phase. Manager-only. */
|
|
1189
|
+
async listProjectAuditFlags(projectId) {
|
|
1190
|
+
const res = await apiFetch(config, `/pm/projects/${projectId}/audit-flags`);
|
|
1191
|
+
return unwrap("list project audit flags", res);
|
|
1192
|
+
},
|
|
1185
1193
|
/**
|
|
1186
1194
|
* Composite project-health snapshot — wraps every dimension that goes
|
|
1187
1195
|
* into the dashboard's health-score for one project (audit freshness,
|
|
@@ -4490,6 +4498,14 @@ function createPmResource2(config) {
|
|
|
4490
4498
|
const res = await apiFetch2(config, `/pm/project-audit/run/${projectId}`, { method: "POST" });
|
|
4491
4499
|
return unwrap2("run project audit", res);
|
|
4492
4500
|
},
|
|
4501
|
+
/** Open (unresolved) project audit flags — what the nightly project audit
|
|
4502
|
+
* wrote. Read-only; flags auto-resolve when the underlying issue clears
|
|
4503
|
+
* (#460 dropped per-item dismissal). The unified Roadmap tool groups the
|
|
4504
|
+
* phase-tagged ones under each phase. Manager-only. */
|
|
4505
|
+
async listProjectAuditFlags(projectId) {
|
|
4506
|
+
const res = await apiFetch2(config, `/pm/projects/${projectId}/audit-flags`);
|
|
4507
|
+
return unwrap2("list project audit flags", res);
|
|
4508
|
+
},
|
|
4493
4509
|
/**
|
|
4494
4510
|
* Composite project-health snapshot — wraps every dimension that goes
|
|
4495
4511
|
* into the dashboard's health-score for one project (audit freshness,
|
package/package.json
CHANGED