@togglhq/mcp 1.11.32 → 1.11.34
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/build/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as initProductAnalytics, c as shutdownProductAnalytics, i as getProductAnalyticsDistinctId, n as runMcpCli, o as redactUnsafeSentryMessages, r as captureToolInvocation, s as resolveProductAnalyticsDistinctId } from "./src-
|
|
2
|
+
import { a as initProductAnalytics, c as shutdownProductAnalytics, i as getProductAnalyticsDistinctId, n as runMcpCli, o as redactUnsafeSentryMessages, r as captureToolInvocation, s as resolveProductAnalyticsDistinctId } from "./src-X1or7-7J.js";
|
|
3
3
|
import * as Sentry from "@sentry/node";
|
|
4
4
|
//#region src/analytics-tool-metadata.ts
|
|
5
5
|
/**
|
|
@@ -165,7 +165,7 @@ function wrapServerWithProductAnalytics(server) {
|
|
|
165
165
|
}
|
|
166
166
|
//#endregion
|
|
167
167
|
//#region src/cli.ts
|
|
168
|
-
const packageVersion = "1.11.
|
|
168
|
+
const packageVersion = "1.11.34";
|
|
169
169
|
let sentryEnabled = false;
|
|
170
170
|
let productAnalyticsEnabled = false;
|
|
171
171
|
runMcpCli({
|
package/build/index.js
CHANGED
|
@@ -42705,7 +42705,7 @@ async function restoreMilestone(httpClient, workspace_id, milestone_id, signal)
|
|
|
42705
42705
|
}
|
|
42706
42706
|
//#endregion
|
|
42707
42707
|
//#region ../focus-queries/dist/project-groups/requests.ts
|
|
42708
|
-
async function getProjectGroupsClassic(httpClient, organization_id, workspace_id, group, { page, per_page, order_by, project_order_by, projects_per_group, include_group_totals, include_unassigned, archived, completed, private: private_, name, client_id, creator_id, tag_id, parent_project_id, assignee_user_id, project_id, start_date, end_date, user_id, only_me, include_drafts, cf_filter } = {}, signal) {
|
|
42708
|
+
async function getProjectGroupsClassic(httpClient, organization_id, workspace_id, group, { page, per_page, order_by, project_order_by, projects_per_group, include_group_totals, include_unassigned, archived, completed, private: private_, name, client_id, creator_id, tag_id, parent_project_id, assignee_user_id, project_id, start_date, end_date, user_id, only_me, include_drafts, include_recurring_series, cf_filter } = {}, signal) {
|
|
42709
42709
|
return await httpClient.get(`organizations/${organization_id}/workspaces/${workspace_id}/projects/groups/${group}`, {
|
|
42710
42710
|
signal,
|
|
42711
42711
|
searchParams: buildSearchParams$2({
|
|
@@ -42731,6 +42731,7 @@ async function getProjectGroupsClassic(httpClient, organization_id, workspace_id
|
|
|
42731
42731
|
user_id,
|
|
42732
42732
|
only_me,
|
|
42733
42733
|
include_drafts,
|
|
42734
|
+
include_recurring_series,
|
|
42734
42735
|
cf_filter
|
|
42735
42736
|
})
|
|
42736
42737
|
}).json();
|
|
@@ -46118,6 +46119,7 @@ const generatedFocusOperations = [
|
|
|
46118
46119
|
group: /* @__PURE__ */ string$1(),
|
|
46119
46120
|
include_drafts: /* @__PURE__ */ optional$1(/* @__PURE__ */ unknown$1()),
|
|
46120
46121
|
include_group_totals: /* @__PURE__ */ optional$1(/* @__PURE__ */ unknown$1()),
|
|
46122
|
+
include_recurring_series: /* @__PURE__ */ optional$1(/* @__PURE__ */ unknown$1()),
|
|
46121
46123
|
include_unassigned: /* @__PURE__ */ optional$1(/* @__PURE__ */ unknown$1()),
|
|
46122
46124
|
name: /* @__PURE__ */ optional$1(/* @__PURE__ */ unknown$1()),
|
|
46123
46125
|
only_me: /* @__PURE__ */ optional$1(/* @__PURE__ */ unknown$1()),
|
|
@@ -55131,7 +55133,7 @@ function registerWorkspaceTools(server) {
|
|
|
55131
55133
|
//#region src/package-version.ts
|
|
55132
55134
|
function mcpPackageVersion() {
|
|
55133
55135
|
try {
|
|
55134
|
-
return "1.11.
|
|
55136
|
+
return "1.11.34";
|
|
55135
55137
|
} catch {
|
|
55136
55138
|
return "unknown";
|
|
55137
55139
|
}
|
|
@@ -55306,7 +55308,7 @@ import_main.default.config({
|
|
|
55306
55308
|
quiet: true,
|
|
55307
55309
|
ignore: ["MISSING_ENV_FILE"]
|
|
55308
55310
|
});
|
|
55309
|
-
const packageVersion = "1.11.
|
|
55311
|
+
const packageVersion = "1.11.34";
|
|
55310
55312
|
function resolvePublicUrls() {
|
|
55311
55313
|
return {
|
|
55312
55314
|
focusApiUrl: process.env.TOGGL_FOCUS_API_URL ?? "https://focus.toggl.com",
|
|
@@ -55371,4 +55373,4 @@ function bootstrapServer(options = {}) {
|
|
|
55371
55373
|
//#endregion
|
|
55372
55374
|
export { initProductAnalytics as a, shutdownProductAnalytics as c, getProductAnalyticsDistinctId as i, runMcpCli as n, redactUnsafeSentryMessages as o, captureToolInvocation as r, resolveProductAnalyticsDistinctId as s, bootstrapServer as t };
|
|
55373
55375
|
|
|
55374
|
-
//# sourceMappingURL=src-
|
|
55376
|
+
//# sourceMappingURL=src-X1or7-7J.js.map
|