@meltstudio/meltctl 5.1.0 → 5.2.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 +11 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7450,7 +7450,7 @@ var CLI_VERSION;
|
|
|
7450
7450
|
var init_version = __esm({
|
|
7451
7451
|
"src/utils/version.ts"() {
|
|
7452
7452
|
"use strict";
|
|
7453
|
-
CLI_VERSION = "5.
|
|
7453
|
+
CLI_VERSION = "5.2.0";
|
|
7454
7454
|
}
|
|
7455
7455
|
});
|
|
7456
7456
|
|
|
@@ -27188,6 +27188,11 @@ function createPmResource(config2) {
|
|
|
27188
27188
|
const res = await apiFetch(config2, `/pm/features/${id}`);
|
|
27189
27189
|
return unwrap("get feature", res);
|
|
27190
27190
|
},
|
|
27191
|
+
/** Every project's primary active phase, for the cross-project overview. */
|
|
27192
|
+
async listActivePhases() {
|
|
27193
|
+
const res = await apiFetch(config2, `/pm/active-phases`);
|
|
27194
|
+
return unwrap("list active phases", res);
|
|
27195
|
+
},
|
|
27191
27196
|
async createFeature(input) {
|
|
27192
27197
|
const res = await apiFetch(config2, `/pm/features`, {
|
|
27193
27198
|
method: "POST",
|
|
@@ -53430,6 +53435,11 @@ function createPmResource2(config2) {
|
|
|
53430
53435
|
const res = await apiFetch2(config2, `/pm/features/${id}`);
|
|
53431
53436
|
return unwrap2("get feature", res);
|
|
53432
53437
|
},
|
|
53438
|
+
/** Every project's primary active phase, for the cross-project overview. */
|
|
53439
|
+
async listActivePhases() {
|
|
53440
|
+
const res = await apiFetch2(config2, `/pm/active-phases`);
|
|
53441
|
+
return unwrap2("list active phases", res);
|
|
53442
|
+
},
|
|
53433
53443
|
async createFeature(input) {
|
|
53434
53444
|
const res = await apiFetch2(config2, `/pm/features`, {
|
|
53435
53445
|
method: "POST",
|
package/package.json
CHANGED