backlog-mcp-server 0.15.1 → 0.16.0

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.
Files changed (82) hide show
  1. package/README.ja.md +16 -8
  2. package/README.md +16 -8
  3. package/build/createBacklogMcpServer.d.ts +3 -3
  4. package/build/createBacklogMcpServer.js +4 -4
  5. package/build/createDescriptionHelper.d.ts +18 -0
  6. package/build/{createTranslationHelper.js → createDescriptionHelper.js} +1 -1
  7. package/build/index.js +23 -11
  8. package/build/lib.d.ts +4 -4
  9. package/build/lib.js +3 -3
  10. package/build/{loadTranslationOverrides.d.ts → loadDescriptionOverrides.d.ts} +3 -3
  11. package/build/{loadTranslationOverrides.js → loadDescriptionOverrides.js} +3 -3
  12. package/build/tools/addDocument.d.ts +3 -3
  13. package/build/tools/addIssue.d.ts +3 -3
  14. package/build/tools/addIssueComment.d.ts +3 -3
  15. package/build/tools/addProject.d.ts +3 -3
  16. package/build/tools/addPullRequest.d.ts +3 -3
  17. package/build/tools/addPullRequestComment.d.ts +3 -3
  18. package/build/tools/addRelatedIssue.d.ts +3 -3
  19. package/build/tools/addVersionMilestone.d.ts +3 -3
  20. package/build/tools/addWatching.d.ts +3 -3
  21. package/build/tools/addWiki.d.ts +3 -3
  22. package/build/tools/countIssues.d.ts +3 -3
  23. package/build/tools/deleteIssue.d.ts +3 -3
  24. package/build/tools/deleteProject.d.ts +3 -3
  25. package/build/tools/deleteVersion.d.ts +3 -3
  26. package/build/tools/deleteWatching.d.ts +3 -3
  27. package/build/tools/dynamicTools/organizations.d.ts +3 -3
  28. package/build/tools/dynamicTools/toolsets.d.ts +7 -7
  29. package/build/tools/getCategories.d.ts +3 -3
  30. package/build/tools/getCustomFields.d.ts +3 -3
  31. package/build/tools/getDocument.d.ts +3 -3
  32. package/build/tools/getDocumentTree.d.ts +3 -3
  33. package/build/tools/getDocuments.d.ts +3 -3
  34. package/build/tools/getGitRepositories.d.ts +3 -3
  35. package/build/tools/getGitRepository.d.ts +3 -3
  36. package/build/tools/getIssue.d.ts +3 -3
  37. package/build/tools/getIssueComments.d.ts +3 -3
  38. package/build/tools/getIssueTypes.d.ts +3 -3
  39. package/build/tools/getIssues.d.ts +3 -3
  40. package/build/tools/getMyself.d.ts +3 -3
  41. package/build/tools/getNotifications.d.ts +3 -3
  42. package/build/tools/getNotificationsCount.d.ts +3 -3
  43. package/build/tools/getPriorities.d.ts +3 -3
  44. package/build/tools/getProject.d.ts +3 -3
  45. package/build/tools/getProjectList.d.ts +3 -3
  46. package/build/tools/getProjectUsers.d.ts +3 -3
  47. package/build/tools/getPullRequest.d.ts +3 -3
  48. package/build/tools/getPullRequestComments.d.ts +3 -3
  49. package/build/tools/getPullRequests.d.ts +3 -3
  50. package/build/tools/getPullRequestsCount.d.ts +3 -3
  51. package/build/tools/getRelatedIssues.d.ts +3 -3
  52. package/build/tools/getResolutions.d.ts +3 -3
  53. package/build/tools/getSpace.d.ts +3 -3
  54. package/build/tools/getSpaceActivities.d.ts +3 -3
  55. package/build/tools/getUserRecentUpdates.d.ts +3 -3
  56. package/build/tools/getUserStarsCount.d.ts +3 -3
  57. package/build/tools/getUsers.d.ts +3 -3
  58. package/build/tools/getVersionMilestoneList.d.ts +3 -3
  59. package/build/tools/getWatchingListCount.d.ts +3 -3
  60. package/build/tools/getWatchingListItems.d.ts +3 -3
  61. package/build/tools/getWiki.d.ts +3 -3
  62. package/build/tools/getWikiPages.d.ts +3 -3
  63. package/build/tools/getWikisCount.d.ts +3 -3
  64. package/build/tools/markNotificationAsRead.d.ts +3 -3
  65. package/build/tools/markWatchingAsRead.d.ts +3 -3
  66. package/build/tools/removeRelatedIssue.d.ts +3 -3
  67. package/build/tools/resetUnreadNotificationCount.d.ts +3 -3
  68. package/build/tools/shared/customFieldFiltersSchema.d.ts +2 -2
  69. package/build/tools/tools.d.ts +2 -2
  70. package/build/tools/updateIssue.d.ts +3 -3
  71. package/build/tools/updateIssueComment.d.ts +3 -3
  72. package/build/tools/updateProject.d.ts +3 -3
  73. package/build/tools/updatePullRequest.d.ts +3 -3
  74. package/build/tools/updatePullRequestComment.d.ts +3 -3
  75. package/build/tools/updateVersionMilestone.d.ts +3 -3
  76. package/build/tools/updateWatching.d.ts +3 -3
  77. package/build/tools/updateWiki.d.ts +3 -3
  78. package/build/types/tool.d.ts +2 -2
  79. package/build/utils/resolveIdOrKey.d.ts +3 -3
  80. package/build/utils/toolsetUtils.d.ts +2 -2
  81. package/package.json +2 -2
  82. package/build/createTranslationHelper.d.ts +0 -16
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { ProjectSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const deleteProjectSchema: (t: TranslationHelper["t"]) => {
6
+ declare const deleteProjectSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const deleteProjectTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof deleteProjectSchema>, (typeof ProjectSchema)["shape"]>;
10
+ export declare const deleteProjectTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof deleteProjectSchema>, (typeof ProjectSchema)["shape"]>;
11
11
  export {};
@@ -1,12 +1,12 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { VersionSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const deleteVersionSchema: (t: TranslationHelper["t"]) => {
6
+ declare const deleteVersionSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  id: z.ZodNumber;
10
10
  };
11
- export declare const deleteVersionTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof deleteVersionSchema>, (typeof VersionSchema)["shape"]>;
11
+ export declare const deleteVersionTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof deleteVersionSchema>, (typeof VersionSchema)["shape"]>;
12
12
  export {};
@@ -1,10 +1,10 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { WatchingListItemSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const deleteWatchingSchema: (t: TranslationHelper["t"]) => {
6
+ declare const deleteWatchingSchema: (t: DescriptionHelper["t"]) => {
7
7
  watchId: z.ZodNumber;
8
8
  };
9
- export declare const deleteWatchingTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof deleteWatchingSchema>, (typeof WatchingListItemSchema)["shape"]>;
9
+ export declare const deleteWatchingTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof deleteWatchingSchema>, (typeof WatchingListItemSchema)["shape"]>;
10
10
  export {};
@@ -1,6 +1,6 @@
1
- import { TranslationHelper } from '../../createTranslationHelper.js';
1
+ import { DescriptionHelper } from '../../createDescriptionHelper.js';
2
2
  import { BacklogClientRegistry } from '../../utils/backlogClientRegistry.js';
3
3
  import { DynamicToolDefinition } from '../../types/tool.js';
4
4
  import { DynamicToolsetGroup } from '../../types/toolsets.js';
5
- export declare function organizationTools(registry: BacklogClientRegistry, { t }: TranslationHelper): DynamicToolsetGroup;
6
- export declare function listOrganizationsTool(registry: BacklogClientRegistry, t: TranslationHelper['t']): DynamicToolDefinition<Record<string, never>>;
5
+ export declare function organizationTools(registry: BacklogClientRegistry, { t }: DescriptionHelper): DynamicToolsetGroup;
6
+ export declare function listOrganizationsTool(registry: BacklogClientRegistry, t: DescriptionHelper['t']): DynamicToolDefinition<Record<string, never>>;
@@ -1,15 +1,15 @@
1
1
  import { z } from 'zod';
2
2
  import { DynamicToolDefinition, ToolRegistrar } from '../../types/tool.js';
3
3
  import { DynamicToolsetGroup, ToolsetGroup } from '../../types/toolsets.js';
4
- import { TranslationHelper } from '../../createTranslationHelper.js';
5
- export declare const dynamicTools: (toolRegistrar: ToolRegistrar, helper: TranslationHelper, toolsetGroup: ToolsetGroup) => DynamicToolsetGroup;
6
- declare const enableToolsetSchema: (t: TranslationHelper["t"]) => {
4
+ import { DescriptionHelper } from '../../createDescriptionHelper.js';
5
+ export declare const dynamicTools: (toolRegistrar: ToolRegistrar, helper: DescriptionHelper, toolsetGroup: ToolsetGroup) => DynamicToolsetGroup;
6
+ declare const enableToolsetSchema: (t: DescriptionHelper["t"]) => {
7
7
  toolset: z.ZodString;
8
8
  };
9
- export declare const enableToolsetTool: (toolRegistrar: ToolRegistrar, { t }: TranslationHelper) => DynamicToolDefinition<ReturnType<typeof enableToolsetSchema>>;
10
- export declare const listAvailableToolsets: ({ t }: TranslationHelper, toolsetGroup: ToolsetGroup) => DynamicToolDefinition<Record<string, never>>;
11
- declare const getToolsetToolsSchema: (t: TranslationHelper["t"]) => {
9
+ export declare const enableToolsetTool: (toolRegistrar: ToolRegistrar, { t }: DescriptionHelper) => DynamicToolDefinition<ReturnType<typeof enableToolsetSchema>>;
10
+ export declare const listAvailableToolsets: ({ t }: DescriptionHelper, toolsetGroup: ToolsetGroup) => DynamicToolDefinition<Record<string, never>>;
11
+ declare const getToolsetToolsSchema: (t: DescriptionHelper["t"]) => {
12
12
  toolset: z.ZodString;
13
13
  };
14
- export declare const getToolsetTools: ({ t }: TranslationHelper, toolsetGroup: ToolsetGroup) => DynamicToolDefinition<ReturnType<typeof getToolsetToolsSchema>>;
14
+ export declare const getToolsetTools: ({ t }: DescriptionHelper, toolsetGroup: ToolsetGroup) => DynamicToolDefinition<ReturnType<typeof getToolsetToolsSchema>>;
15
15
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { CategorySchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getCategoriesSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getCategoriesSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getCategoriesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getCategoriesSchema>, (typeof CategorySchema)["shape"]>;
10
+ export declare const getCategoriesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getCategoriesSchema>, (typeof CategorySchema)["shape"]>;
11
11
  export {};
@@ -1,12 +1,12 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { z } from 'zod';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { CustomFieldSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getCustomFieldsInputSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getCustomFieldsInputSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getCustomFieldsTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getCustomFieldsInputSchema>, // Shape for input schema
10
+ export declare const getCustomFieldsTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getCustomFieldsInputSchema>, // Shape for input schema
11
11
  (typeof CustomFieldSchema)["shape"]>;
12
12
  export {};
@@ -1,10 +1,10 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { z } from 'zod';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { DocumentItemSchema } from '../types/zod/backlogOutputDefinition.js';
5
5
  import { ToolDefinition } from '../types/tool.js';
6
- declare const getDocumentSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getDocumentSchema: (t: DescriptionHelper["t"]) => {
7
7
  documentId: z.ZodString;
8
8
  };
9
- export declare const getDocumentTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getDocumentSchema>, (typeof DocumentItemSchema)["shape"]>;
9
+ export declare const getDocumentTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getDocumentSchema>, (typeof DocumentItemSchema)["shape"]>;
10
10
  export {};
@@ -1,10 +1,10 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { z } from 'zod';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { DocumentTreeFullSchema } from '../types/zod/backlogOutputDefinition.js';
5
5
  import { ToolDefinition } from '../types/tool.js';
6
- declare const getDocumentTreeSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getDocumentTreeSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectIdOrKey: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
8
8
  };
9
- export declare const getDocumentTreeTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getDocumentTreeSchema>, typeof DocumentTreeFullSchema>;
9
+ export declare const getDocumentTreeTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getDocumentTreeSchema>, typeof DocumentTreeFullSchema>;
10
10
  export {};
@@ -1,11 +1,11 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { z } from 'zod';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { DocumentItemSchema } from '../types/zod/backlogOutputDefinition.js';
5
5
  import { ToolDefinition } from '../types/tool.js';
6
- declare const getDocumentsSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getDocumentsSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectIds: z.ZodArray<z.ZodNumber>;
8
8
  offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
9
9
  };
10
- export declare const getDocumentsTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getDocumentsSchema>, (typeof DocumentItemSchema)["shape"]>;
10
+ export declare const getDocumentsTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getDocumentsSchema>, (typeof DocumentItemSchema)["shape"]>;
11
11
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { GitRepositorySchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getGitRepositoriesSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getGitRepositoriesSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getGitRepositoriesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getGitRepositoriesSchema>, (typeof GitRepositorySchema)["shape"]>;
10
+ export declare const getGitRepositoriesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getGitRepositoriesSchema>, (typeof GitRepositorySchema)["shape"]>;
11
11
  export {};
@@ -1,13 +1,13 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { GitRepositorySchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getGitRepositorySchema: (t: TranslationHelper["t"]) => {
6
+ declare const getGitRepositorySchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  repoId: z.ZodOptional<z.ZodNumber>;
10
10
  repoName: z.ZodOptional<z.ZodString>;
11
11
  };
12
- export declare const getGitRepositoryTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getGitRepositorySchema>, (typeof GitRepositorySchema)["shape"]>;
12
+ export declare const getGitRepositoryTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getGitRepositorySchema>, (typeof GitRepositorySchema)["shape"]>;
13
13
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { IssueSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getIssueSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getIssueSchema: (t: DescriptionHelper["t"]) => {
7
7
  issueId: z.ZodOptional<z.ZodNumber>;
8
8
  issueKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getIssueTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getIssueSchema>, (typeof IssueSchema)["shape"]>;
10
+ export declare const getIssueTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getIssueSchema>, (typeof IssueSchema)["shape"]>;
11
11
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { IssueCommentSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getIssueCommentsSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getIssueCommentsSchema: (t: DescriptionHelper["t"]) => {
7
7
  issueId: z.ZodOptional<z.ZodNumber>;
8
8
  issueKey: z.ZodOptional<z.ZodString>;
9
9
  minId: z.ZodOptional<z.ZodNumber>;
@@ -14,5 +14,5 @@ declare const getIssueCommentsSchema: (t: TranslationHelper["t"]) => {
14
14
  desc: "desc";
15
15
  }>>;
16
16
  };
17
- export declare const getIssueCommentsTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getIssueCommentsSchema>, (typeof IssueCommentSchema)["shape"]>;
17
+ export declare const getIssueCommentsTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getIssueCommentsSchema>, (typeof IssueCommentSchema)["shape"]>;
18
18
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { IssueTypeSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getIssueTypesSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getIssueTypesSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getIssueTypesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getIssueTypesSchema>, (typeof IssueTypeSchema)["shape"]>;
10
+ export declare const getIssueTypesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getIssueTypesSchema>, (typeof IssueTypeSchema)["shape"]>;
11
11
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { IssueSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getIssuesSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getIssuesSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
8
8
  issueTypeId: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
9
9
  categoryId: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
@@ -71,5 +71,5 @@ declare const getIssuesSchema: (t: TranslationHelper["t"]) => {
71
71
  value: z.ZodUnion<readonly [z.ZodNumber, z.ZodArray<z.ZodNumber>]>;
72
72
  }, z.core.$strip>], "type">>>;
73
73
  };
74
- export declare const getIssuesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getIssuesSchema>, (typeof IssueSchema)["shape"]>;
74
+ export declare const getIssuesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getIssuesSchema>, (typeof IssueSchema)["shape"]>;
75
75
  export {};
@@ -1,7 +1,7 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { ToolDefinition } from '../types/tool.js';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { UserSchema } from '../types/zod/backlogOutputDefinition.js';
5
- declare const getMyselfSchema: (t: TranslationHelper["t"]) => {};
6
- export declare const getMyselfTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getMyselfSchema>, (typeof UserSchema)["shape"]>;
5
+ declare const getMyselfSchema: (t: DescriptionHelper["t"]) => {};
6
+ export declare const getMyselfTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getMyselfSchema>, (typeof UserSchema)["shape"]>;
7
7
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { NotificationSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getNotificationsSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getNotificationsSchema: (t: DescriptionHelper["t"]) => {
7
7
  minId: z.ZodOptional<z.ZodNumber>;
8
8
  maxId: z.ZodOptional<z.ZodNumber>;
9
9
  count: z.ZodOptional<z.ZodNumber>;
@@ -12,5 +12,5 @@ declare const getNotificationsSchema: (t: TranslationHelper["t"]) => {
12
12
  desc: "desc";
13
13
  }>>;
14
14
  };
15
- export declare const getNotificationsTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getNotificationsSchema>, (typeof NotificationSchema)["shape"]>;
15
+ export declare const getNotificationsTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getNotificationsSchema>, (typeof NotificationSchema)["shape"]>;
16
16
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { NotificationCountSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getNotificationsCountSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getNotificationsCountSchema: (t: DescriptionHelper["t"]) => {
7
7
  alreadyRead: z.ZodBoolean;
8
8
  resourceAlreadyRead: z.ZodBoolean;
9
9
  };
10
- export declare const getNotificationsCountTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getNotificationsCountSchema>, (typeof NotificationCountSchema)["shape"]>;
10
+ export declare const getNotificationsCountTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getNotificationsCountSchema>, (typeof NotificationCountSchema)["shape"]>;
11
11
  export {};
@@ -1,7 +1,7 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { ToolDefinition } from '../types/tool.js';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { PrioritySchema } from '../types/zod/backlogOutputDefinition.js';
5
- declare const getPrioritiesSchema: (t: TranslationHelper["t"]) => {};
6
- export declare const getPrioritiesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getPrioritiesSchema>, (typeof PrioritySchema)["shape"]>;
5
+ declare const getPrioritiesSchema: (t: DescriptionHelper["t"]) => {};
6
+ export declare const getPrioritiesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getPrioritiesSchema>, (typeof PrioritySchema)["shape"]>;
7
7
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { ProjectSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getProjectSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getProjectSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getProjectTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getProjectSchema>, (typeof ProjectSchema)["shape"]>;
10
+ export declare const getProjectTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getProjectSchema>, (typeof ProjectSchema)["shape"]>;
11
11
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { ProjectSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getProjectListSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getProjectListSchema: (t: DescriptionHelper["t"]) => {
7
7
  archived: z.ZodOptional<z.ZodBoolean>;
8
8
  all: z.ZodOptional<z.ZodBoolean>;
9
9
  };
10
- export declare const getProjectListTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getProjectListSchema>, (typeof ProjectSchema)["shape"]>;
10
+ export declare const getProjectListTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getProjectListSchema>, (typeof ProjectSchema)["shape"]>;
11
11
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { UserSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getProjectUsersSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getProjectUsersSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getProjectUsersTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getProjectUsersSchema>, (typeof UserSchema)["shape"]>;
10
+ export declare const getProjectUsersTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getProjectUsersSchema>, (typeof UserSchema)["shape"]>;
11
11
  export {};
@@ -1,14 +1,14 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { PullRequestSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getPullRequestSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getPullRequestSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  repoId: z.ZodOptional<z.ZodNumber>;
10
10
  repoName: z.ZodOptional<z.ZodString>;
11
11
  number: z.ZodNumber;
12
12
  };
13
- export declare const getPullRequestTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getPullRequestSchema>, (typeof PullRequestSchema)["shape"]>;
13
+ export declare const getPullRequestTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getPullRequestSchema>, (typeof PullRequestSchema)["shape"]>;
14
14
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { PullRequestCommentSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getPullRequestCommentsSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getPullRequestCommentsSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  repoId: z.ZodOptional<z.ZodNumber>;
@@ -17,5 +17,5 @@ declare const getPullRequestCommentsSchema: (t: TranslationHelper["t"]) => {
17
17
  desc: "desc";
18
18
  }>>;
19
19
  };
20
- export declare const getPullRequestCommentsTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getPullRequestCommentsSchema>, (typeof PullRequestCommentSchema)["shape"]>;
20
+ export declare const getPullRequestCommentsTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getPullRequestCommentsSchema>, (typeof PullRequestCommentSchema)["shape"]>;
21
21
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { PullRequestSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getPullRequestsSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getPullRequestsSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  repoId: z.ZodOptional<z.ZodNumber>;
@@ -15,5 +15,5 @@ declare const getPullRequestsSchema: (t: TranslationHelper["t"]) => {
15
15
  offset: z.ZodOptional<z.ZodNumber>;
16
16
  count: z.ZodOptional<z.ZodNumber>;
17
17
  };
18
- export declare const getPullRequestsTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getPullRequestsSchema>, (typeof PullRequestSchema)["shape"]>;
18
+ export declare const getPullRequestsTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getPullRequestsSchema>, (typeof PullRequestSchema)["shape"]>;
19
19
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { PullRequestCountSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getPullRequestsCountSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getPullRequestsCountSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  repoId: z.ZodOptional<z.ZodNumber>;
@@ -13,5 +13,5 @@ declare const getPullRequestsCountSchema: (t: TranslationHelper["t"]) => {
13
13
  issueId: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
14
14
  createdUserId: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
15
15
  };
16
- export declare const getPullRequestsCountTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getPullRequestsCountSchema>, (typeof PullRequestCountSchema)["shape"]>;
16
+ export declare const getPullRequestsCountTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getPullRequestsCountSchema>, (typeof PullRequestCountSchema)["shape"]>;
17
17
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { RelatedIssueSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getRelatedIssuesSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getRelatedIssuesSchema: (t: DescriptionHelper["t"]) => {
7
7
  issueId: z.ZodOptional<z.ZodNumber>;
8
8
  issueKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getRelatedIssuesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getRelatedIssuesSchema>, (typeof RelatedIssueSchema)["shape"]>;
10
+ export declare const getRelatedIssuesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getRelatedIssuesSchema>, (typeof RelatedIssueSchema)["shape"]>;
11
11
  export {};
@@ -1,7 +1,7 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { ToolDefinition } from '../types/tool.js';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { ResolutionSchema } from '../types/zod/backlogOutputDefinition.js';
5
- declare const getResolutionsSchema: (t: TranslationHelper["t"]) => {};
6
- export declare const getResolutionsTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getResolutionsSchema>, (typeof ResolutionSchema)["shape"]>;
5
+ declare const getResolutionsSchema: (t: DescriptionHelper["t"]) => {};
6
+ export declare const getResolutionsTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getResolutionsSchema>, (typeof ResolutionSchema)["shape"]>;
7
7
  export {};
@@ -1,7 +1,7 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { ToolDefinition } from '../types/tool.js';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { SpaceSchema } from '../types/zod/backlogOutputDefinition.js';
5
- declare const getSpaceSchema: (t: TranslationHelper["t"]) => {};
6
- export declare const getSpaceTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getSpaceSchema>, (typeof SpaceSchema)["shape"]>;
5
+ declare const getSpaceSchema: (t: DescriptionHelper["t"]) => {};
6
+ export declare const getSpaceTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getSpaceSchema>, (typeof SpaceSchema)["shape"]>;
7
7
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { ActivitySchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getSpaceActivitiesSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getSpaceActivitiesSchema: (t: DescriptionHelper["t"]) => {
7
7
  activityTypeId: z.ZodOptional<z.ZodArray<z.ZodEnum<{
8
8
  Undefined: number;
9
9
  IssueCreated: number;
@@ -41,5 +41,5 @@ declare const getSpaceActivitiesSchema: (t: TranslationHelper["t"]) => {
41
41
  desc: "desc";
42
42
  }>>;
43
43
  };
44
- export declare const getSpaceActivitiesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getSpaceActivitiesSchema>, (typeof ActivitySchema)["shape"]>;
44
+ export declare const getSpaceActivitiesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getSpaceActivitiesSchema>, (typeof ActivitySchema)["shape"]>;
45
45
  export {};
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { ActivitySchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getUserRecentUpdatesSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getUserRecentUpdatesSchema: (t: DescriptionHelper["t"]) => {
7
7
  userId: z.ZodNumber;
8
8
  activityTypeId: z.ZodOptional<z.ZodArray<z.ZodEnum<{
9
9
  Undefined: number;
@@ -42,5 +42,5 @@ declare const getUserRecentUpdatesSchema: (t: TranslationHelper["t"]) => {
42
42
  desc: "desc";
43
43
  }>>>;
44
44
  };
45
- export declare const getUserRecentUpdatesTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getUserRecentUpdatesSchema>, (typeof ActivitySchema)["shape"]>;
45
+ export declare const getUserRecentUpdatesTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getUserRecentUpdatesSchema>, (typeof ActivitySchema)["shape"]>;
46
46
  export {};
@@ -1,12 +1,12 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { StarCountSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getUserStarsCountSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getUserStarsCountSchema: (t: DescriptionHelper["t"]) => {
7
7
  userId: z.ZodNumber;
8
8
  since: z.ZodOptional<z.ZodString>;
9
9
  until: z.ZodOptional<z.ZodString>;
10
10
  };
11
- export declare const getUserStarsCountTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getUserStarsCountSchema>, (typeof StarCountSchema)["shape"]>;
11
+ export declare const getUserStarsCountTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getUserStarsCountSchema>, (typeof StarCountSchema)["shape"]>;
12
12
  export {};
@@ -1,7 +1,7 @@
1
1
  import { Backlog } from 'backlog-js';
2
2
  import { ToolDefinition } from '../types/tool.js';
3
- import { TranslationHelper } from '../createTranslationHelper.js';
3
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
4
4
  import { UserSchema } from '../types/zod/backlogOutputDefinition.js';
5
- declare const getUsersSchema: (t: TranslationHelper["t"]) => {};
6
- export declare const getUsersTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getUsersSchema>, (typeof UserSchema)["shape"]>;
5
+ declare const getUsersSchema: (t: DescriptionHelper["t"]) => {};
6
+ export declare const getUsersTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getUsersSchema>, (typeof UserSchema)["shape"]>;
7
7
  export {};
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { Backlog } from 'backlog-js';
3
3
  import { ToolDefinition } from '../types/tool.js';
4
- import { TranslationHelper } from '../createTranslationHelper.js';
4
+ import { DescriptionHelper } from '../createDescriptionHelper.js';
5
5
  import { VersionSchema } from '../types/zod/backlogOutputDefinition.js';
6
- declare const getVersionMilestoneListSchema: (t: TranslationHelper["t"]) => {
6
+ declare const getVersionMilestoneListSchema: (t: DescriptionHelper["t"]) => {
7
7
  projectId: z.ZodOptional<z.ZodNumber>;
8
8
  projectKey: z.ZodOptional<z.ZodString>;
9
9
  };
10
- export declare const getVersionMilestoneListTool: (backlog: Backlog, { t }: TranslationHelper) => ToolDefinition<ReturnType<typeof getVersionMilestoneListSchema>, (typeof VersionSchema)["shape"]>;
10
+ export declare const getVersionMilestoneListTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getVersionMilestoneListSchema>, (typeof VersionSchema)["shape"]>;
11
11
  export {};