@firfi/huly-mcp 0.1.6 → 0.1.7
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.cjs +3 -3
- package/package.json +2 -1
package/dist/index.cjs
CHANGED
|
@@ -142955,7 +142955,7 @@ var createIssue = (params) => Effect_exports.gen(function* () {
|
|
|
142955
142955
|
return { identifier: identifier2 };
|
|
142956
142956
|
});
|
|
142957
142957
|
var updateIssue = (params) => Effect_exports.gen(function* () {
|
|
142958
|
-
const { client,
|
|
142958
|
+
const { client, issue: issue2, project: project3 } = yield* findProjectAndIssue(params);
|
|
142959
142959
|
const updateOps = {};
|
|
142960
142960
|
if (params.title !== void 0) {
|
|
142961
142961
|
updateOps.title = params.title;
|
|
@@ -143017,7 +143017,7 @@ var updateIssue = (params) => Effect_exports.gen(function* () {
|
|
|
143017
143017
|
return { identifier: issue2.identifier, updated: true };
|
|
143018
143018
|
});
|
|
143019
143019
|
var addLabel = (params) => Effect_exports.gen(function* () {
|
|
143020
|
-
const { client,
|
|
143020
|
+
const { client, issue: issue2, project: project3 } = yield* findProjectAndIssue(params);
|
|
143021
143021
|
const existingLabels = yield* client.findAll(
|
|
143022
143022
|
tags3.class.TagReference,
|
|
143023
143023
|
{
|
|
@@ -143079,7 +143079,7 @@ var addLabel = (params) => Effect_exports.gen(function* () {
|
|
|
143079
143079
|
return { identifier: issue2.identifier, labelAdded: true };
|
|
143080
143080
|
});
|
|
143081
143081
|
var deleteIssue = (params) => Effect_exports.gen(function* () {
|
|
143082
|
-
const { client,
|
|
143082
|
+
const { client, issue: issue2, project: project3 } = yield* findProjectAndIssue(params);
|
|
143083
143083
|
yield* client.removeDoc(
|
|
143084
143084
|
tracker.class.Issue,
|
|
143085
143085
|
project3._id,
|
package/package.json
CHANGED