@togglhq/mcp 1.5.34 → 1.5.35
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 +1 -1
- package/build/index.js +1 -1
- package/build/{src-CGvLAr3f.js → src-DShukv3n.js} +13 -13
- package/package.json +1 -1
package/build/cli.js
CHANGED
package/build/index.js
CHANGED
|
@@ -28983,9 +28983,19 @@ const TaskWithParentAndAggregationsSchema = /* @__PURE__ */ object({
|
|
|
28983
28983
|
private: /* @__PURE__ */ boolean(),
|
|
28984
28984
|
source: /* @__PURE__ */ string(),
|
|
28985
28985
|
status_id: /* @__PURE__ */ number(),
|
|
28986
|
+
sub_task_done_count: /* @__PURE__ */ number(),
|
|
28987
|
+
sub_task_total_count: /* @__PURE__ */ number(),
|
|
28986
28988
|
tag_ids: /* @__PURE__ */ array(/* @__PURE__ */ number()),
|
|
28987
28989
|
tags: /* @__PURE__ */ array(TagLiteSchema),
|
|
28990
|
+
time_block_completed_count: /* @__PURE__ */ number(),
|
|
28991
|
+
time_block_scheduled_completed_count: /* @__PURE__ */ number(),
|
|
28992
|
+
time_block_scheduled_total_count: /* @__PURE__ */ number(),
|
|
28993
|
+
time_block_total_count: /* @__PURE__ */ number(),
|
|
28994
|
+
time_entry_total_count: /* @__PURE__ */ number(),
|
|
28988
28995
|
toggl_user_id: /* @__PURE__ */ number(),
|
|
28996
|
+
total_blocked_time: /* @__PURE__ */ number(),
|
|
28997
|
+
total_scheduled_blocked_time: /* @__PURE__ */ number(),
|
|
28998
|
+
total_tracked_time: /* @__PURE__ */ number(),
|
|
28989
28999
|
workspace_id: /* @__PURE__ */ number(),
|
|
28990
29000
|
archived_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime())),
|
|
28991
29001
|
assignee_user_ids: /* @__PURE__ */ optional(/* @__PURE__ */ array(/* @__PURE__ */ number())),
|
|
@@ -29015,16 +29025,6 @@ const TaskWithParentAndAggregationsSchema = /* @__PURE__ */ object({
|
|
|
29015
29025
|
start_date: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDate())),
|
|
29016
29026
|
status: /* @__PURE__ */ optional(StatusLiteSchema),
|
|
29017
29027
|
status_updated_at: /* @__PURE__ */ optional(/* @__PURE__ */ string()),
|
|
29018
|
-
sub_task_done_count: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29019
|
-
sub_task_total_count: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29020
|
-
time_block_completed_count: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29021
|
-
time_block_scheduled_completed_count: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29022
|
-
time_block_scheduled_total_count: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29023
|
-
time_block_total_count: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ number(), /* @__PURE__ */ description("TODO: Set as `required` after FE adjusts things on their end"))),
|
|
29024
|
-
time_entry_total_count: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29025
|
-
total_blocked_time: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29026
|
-
total_scheduled_blocked_time: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29027
|
-
total_tracked_time: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29028
29028
|
updated_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime()))
|
|
29029
29029
|
});
|
|
29030
29030
|
const PaginatedTasksWithMetaAndTotalSchema = /* @__PURE__ */ object({
|
|
@@ -29308,6 +29308,7 @@ const PaginatedStatussSchema = /* @__PURE__ */ object({
|
|
|
29308
29308
|
const PaginatedTimeBlockAggregateWithTasksSchema = /* @__PURE__ */ object({
|
|
29309
29309
|
data: /* @__PURE__ */ array(/* @__PURE__ */ object({
|
|
29310
29310
|
created_at: /* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime()),
|
|
29311
|
+
has_time_entry: /* @__PURE__ */ boolean(),
|
|
29311
29312
|
id: /* @__PURE__ */ number(),
|
|
29312
29313
|
start: /* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime()),
|
|
29313
29314
|
task_id: /* @__PURE__ */ number(),
|
|
@@ -29319,7 +29320,6 @@ const PaginatedTimeBlockAggregateWithTasksSchema = /* @__PURE__ */ object({
|
|
|
29319
29320
|
deleted_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime())),
|
|
29320
29321
|
description: /* @__PURE__ */ optional(/* @__PURE__ */ string()),
|
|
29321
29322
|
duration: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29322
|
-
has_time_entry: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
29323
29323
|
task: /* @__PURE__ */ optional(TaskSchema),
|
|
29324
29324
|
timezone: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ description("Timezone is the effective IANA timezone hydrated on reads: the workspace timezone snapshotted at creation when set, else the creator's snapshot; NULL when unresolved."))),
|
|
29325
29325
|
updated_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime()))
|
|
@@ -45631,7 +45631,7 @@ import_main.default.config({
|
|
|
45631
45631
|
quiet: true,
|
|
45632
45632
|
ignore: ["MISSING_ENV_FILE"]
|
|
45633
45633
|
});
|
|
45634
|
-
const packageVersion = "1.5.
|
|
45634
|
+
const packageVersion = "1.5.35";
|
|
45635
45635
|
function resolvePublicUrls() {
|
|
45636
45636
|
return {
|
|
45637
45637
|
focusApiUrl: process.env.TOGGL_FOCUS_API_URL ?? "https://focus.toggl.com",
|
|
@@ -45696,4 +45696,4 @@ function bootstrapServer(options = {}) {
|
|
|
45696
45696
|
//#endregion
|
|
45697
45697
|
export { runMcpCli as n, bootstrapServer as t };
|
|
45698
45698
|
|
|
45699
|
-
//# sourceMappingURL=src-
|
|
45699
|
+
//# sourceMappingURL=src-DShukv3n.js.map
|