@togglhq/mcp 1.5.47 → 1.5.49
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
package/build/index.js
CHANGED
|
@@ -29182,7 +29182,7 @@ const TimeEntrySchema = /* @__PURE__ */ object({
|
|
|
29182
29182
|
created_at: /* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime()),
|
|
29183
29183
|
id: /* @__PURE__ */ number(),
|
|
29184
29184
|
toggl_user_id: /* @__PURE__ */ number(),
|
|
29185
|
-
type: TimeEntryTypeSchema,
|
|
29185
|
+
type: /* @__PURE__ */ pipe(TimeEntryTypeSchema, /* @__PURE__ */ description("The type of time entry: either an activity or a break.")),
|
|
29186
29186
|
workspace_id: /* @__PURE__ */ number(),
|
|
29187
29187
|
archived_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime())),
|
|
29188
29188
|
billable: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
@@ -29332,7 +29332,7 @@ const PaginatedTimeEntryWithTasksSchema = /* @__PURE__ */ object({
|
|
|
29332
29332
|
created_at: /* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime()),
|
|
29333
29333
|
id: /* @__PURE__ */ number(),
|
|
29334
29334
|
toggl_user_id: /* @__PURE__ */ number(),
|
|
29335
|
-
type: TimeEntryTypeSchema,
|
|
29335
|
+
type: /* @__PURE__ */ pipe(TimeEntryTypeSchema, /* @__PURE__ */ description("The type of time entry: either an activity or a break.")),
|
|
29336
29336
|
workspace_id: /* @__PURE__ */ number(),
|
|
29337
29337
|
archived_at: /* @__PURE__ */ optional(/* @__PURE__ */ pipe(/* @__PURE__ */ string(), /* @__PURE__ */ isoDateTime())),
|
|
29338
29338
|
billable: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
@@ -29633,7 +29633,7 @@ const TimeBlockPartialUpdatePayloadWithIDSchema = /* @__PURE__ */ object({
|
|
|
29633
29633
|
task_id: /* @__PURE__ */ optional(/* @__PURE__ */ number())
|
|
29634
29634
|
});
|
|
29635
29635
|
const TimeEntryBulkCreatePayloadSchema = /* @__PURE__ */ object({
|
|
29636
|
-
type: TimeEntryTypeSchema,
|
|
29636
|
+
type: /* @__PURE__ */ pipe(TimeEntryTypeSchema, /* @__PURE__ */ description("The type of time entry. This could either be an activity, or a break.")),
|
|
29637
29637
|
billable: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
29638
29638
|
calendar_event_id: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
29639
29639
|
description: /* @__PURE__ */ optional(/* @__PURE__ */ string()),
|
|
@@ -45725,7 +45725,7 @@ import_main.default.config({
|
|
|
45725
45725
|
quiet: true,
|
|
45726
45726
|
ignore: ["MISSING_ENV_FILE"]
|
|
45727
45727
|
});
|
|
45728
|
-
const packageVersion = "1.5.
|
|
45728
|
+
const packageVersion = "1.5.49";
|
|
45729
45729
|
function resolvePublicUrls() {
|
|
45730
45730
|
return {
|
|
45731
45731
|
focusApiUrl: process.env.TOGGL_FOCUS_API_URL ?? "https://focus.toggl.com",
|
|
@@ -45790,4 +45790,4 @@ function bootstrapServer(options = {}) {
|
|
|
45790
45790
|
//#endregion
|
|
45791
45791
|
export { runMcpCli as n, bootstrapServer as t };
|
|
45792
45792
|
|
|
45793
|
-
//# sourceMappingURL=src-
|
|
45793
|
+
//# sourceMappingURL=src-BNbBf82U.js.map
|