@togglhq/mcp 1.5.35 → 1.5.37
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-DShukv3n.js → src-7favWAYS.js} +15 -14
- package/package.json +1 -1
package/build/cli.js
CHANGED
package/build/index.js
CHANGED
|
@@ -28983,19 +28983,9 @@ 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(),
|
|
28988
28986
|
tag_ids: /* @__PURE__ */ array(/* @__PURE__ */ number()),
|
|
28989
28987
|
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(),
|
|
28995
28988
|
toggl_user_id: /* @__PURE__ */ number(),
|
|
28996
|
-
total_blocked_time: /* @__PURE__ */ number(),
|
|
28997
|
-
total_scheduled_blocked_time: /* @__PURE__ */ number(),
|
|
28998
|
-
total_tracked_time: /* @__PURE__ */ number(),
|
|
28999
28989
|
workspace_id: /* @__PURE__ */ number(),
|
|
29000
28990
|
archived_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime())),
|
|
29001
28991
|
assignee_user_ids: /* @__PURE__ */ optional(/* @__PURE__ */ array(/* @__PURE__ */ number())),
|
|
@@ -29025,6 +29015,16 @@ const TaskWithParentAndAggregationsSchema = /* @__PURE__ */ object({
|
|
|
29025
29015
|
start_date: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDate())),
|
|
29026
29016
|
status: /* @__PURE__ */ optional(StatusLiteSchema),
|
|
29027
29017
|
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,7 +29308,6 @@ 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(),
|
|
29312
29311
|
id: /* @__PURE__ */ number(),
|
|
29313
29312
|
start: /* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime()),
|
|
29314
29313
|
task_id: /* @__PURE__ */ number(),
|
|
@@ -29320,6 +29319,7 @@ const PaginatedTimeBlockAggregateWithTasksSchema = /* @__PURE__ */ object({
|
|
|
29320
29319
|
deleted_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime())),
|
|
29321
29320
|
description: /* @__PURE__ */ optional(/* @__PURE__ */ string()),
|
|
29322
29321
|
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()))
|
|
@@ -35990,7 +35990,8 @@ const generatedFocusOperations = [
|
|
|
35990
35990
|
tag_ids: /* @__PURE__ */ array$1(/* @__PURE__ */ number$2()),
|
|
35991
35991
|
target_seconds: /* @__PURE__ */ number$2(),
|
|
35992
35992
|
task_ids: /* @__PURE__ */ array$1(/* @__PURE__ */ number$2()),
|
|
35993
|
-
weekdays: /* @__PURE__ */ array$1(/* @__PURE__ */ number$2())
|
|
35993
|
+
weekdays: /* @__PURE__ */ array$1(/* @__PURE__ */ number$2()),
|
|
35994
|
+
description: /* @__PURE__ */ optional$1(/* @__PURE__ */ string$1())
|
|
35994
35995
|
}) }),
|
|
35995
35996
|
execute: (input, { client }) => {
|
|
35996
35997
|
const data = input;
|
|
@@ -45631,7 +45632,7 @@ import_main.default.config({
|
|
|
45631
45632
|
quiet: true,
|
|
45632
45633
|
ignore: ["MISSING_ENV_FILE"]
|
|
45633
45634
|
});
|
|
45634
|
-
const packageVersion = "1.5.
|
|
45635
|
+
const packageVersion = "1.5.37";
|
|
45635
45636
|
function resolvePublicUrls() {
|
|
45636
45637
|
return {
|
|
45637
45638
|
focusApiUrl: process.env.TOGGL_FOCUS_API_URL ?? "https://focus.toggl.com",
|
|
@@ -45696,4 +45697,4 @@ function bootstrapServer(options = {}) {
|
|
|
45696
45697
|
//#endregion
|
|
45697
45698
|
export { runMcpCli as n, bootstrapServer as t };
|
|
45698
45699
|
|
|
45699
|
-
//# sourceMappingURL=src-
|
|
45700
|
+
//# sourceMappingURL=src-7favWAYS.js.map
|