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.
- package/README.ja.md +16 -8
- package/README.md +16 -8
- package/build/createBacklogMcpServer.d.ts +3 -3
- package/build/createBacklogMcpServer.js +4 -4
- package/build/createDescriptionHelper.d.ts +18 -0
- package/build/{createTranslationHelper.js → createDescriptionHelper.js} +1 -1
- package/build/index.js +23 -11
- package/build/lib.d.ts +4 -4
- package/build/lib.js +3 -3
- package/build/{loadTranslationOverrides.d.ts → loadDescriptionOverrides.d.ts} +3 -3
- package/build/{loadTranslationOverrides.js → loadDescriptionOverrides.js} +3 -3
- package/build/tools/addDocument.d.ts +3 -3
- package/build/tools/addIssue.d.ts +3 -3
- package/build/tools/addIssueComment.d.ts +3 -3
- package/build/tools/addProject.d.ts +3 -3
- package/build/tools/addPullRequest.d.ts +3 -3
- package/build/tools/addPullRequestComment.d.ts +3 -3
- package/build/tools/addRelatedIssue.d.ts +3 -3
- package/build/tools/addVersionMilestone.d.ts +3 -3
- package/build/tools/addWatching.d.ts +3 -3
- package/build/tools/addWiki.d.ts +3 -3
- package/build/tools/countIssues.d.ts +3 -3
- package/build/tools/deleteIssue.d.ts +3 -3
- package/build/tools/deleteProject.d.ts +3 -3
- package/build/tools/deleteVersion.d.ts +3 -3
- package/build/tools/deleteWatching.d.ts +3 -3
- package/build/tools/dynamicTools/organizations.d.ts +3 -3
- package/build/tools/dynamicTools/toolsets.d.ts +7 -7
- package/build/tools/getCategories.d.ts +3 -3
- package/build/tools/getCustomFields.d.ts +3 -3
- package/build/tools/getDocument.d.ts +3 -3
- package/build/tools/getDocumentTree.d.ts +3 -3
- package/build/tools/getDocuments.d.ts +3 -3
- package/build/tools/getGitRepositories.d.ts +3 -3
- package/build/tools/getGitRepository.d.ts +3 -3
- package/build/tools/getIssue.d.ts +3 -3
- package/build/tools/getIssueComments.d.ts +3 -3
- package/build/tools/getIssueTypes.d.ts +3 -3
- package/build/tools/getIssues.d.ts +3 -3
- package/build/tools/getMyself.d.ts +3 -3
- package/build/tools/getNotifications.d.ts +3 -3
- package/build/tools/getNotificationsCount.d.ts +3 -3
- package/build/tools/getPriorities.d.ts +3 -3
- package/build/tools/getProject.d.ts +3 -3
- package/build/tools/getProjectList.d.ts +3 -3
- package/build/tools/getProjectUsers.d.ts +3 -3
- package/build/tools/getPullRequest.d.ts +3 -3
- package/build/tools/getPullRequestComments.d.ts +3 -3
- package/build/tools/getPullRequests.d.ts +3 -3
- package/build/tools/getPullRequestsCount.d.ts +3 -3
- package/build/tools/getRelatedIssues.d.ts +3 -3
- package/build/tools/getResolutions.d.ts +3 -3
- package/build/tools/getSpace.d.ts +3 -3
- package/build/tools/getSpaceActivities.d.ts +3 -3
- package/build/tools/getUserRecentUpdates.d.ts +3 -3
- package/build/tools/getUserStarsCount.d.ts +3 -3
- package/build/tools/getUsers.d.ts +3 -3
- package/build/tools/getVersionMilestoneList.d.ts +3 -3
- package/build/tools/getWatchingListCount.d.ts +3 -3
- package/build/tools/getWatchingListItems.d.ts +3 -3
- package/build/tools/getWiki.d.ts +3 -3
- package/build/tools/getWikiPages.d.ts +3 -3
- package/build/tools/getWikisCount.d.ts +3 -3
- package/build/tools/markNotificationAsRead.d.ts +3 -3
- package/build/tools/markWatchingAsRead.d.ts +3 -3
- package/build/tools/removeRelatedIssue.d.ts +3 -3
- package/build/tools/resetUnreadNotificationCount.d.ts +3 -3
- package/build/tools/shared/customFieldFiltersSchema.d.ts +2 -2
- package/build/tools/tools.d.ts +2 -2
- package/build/tools/updateIssue.d.ts +3 -3
- package/build/tools/updateIssueComment.d.ts +3 -3
- package/build/tools/updateProject.d.ts +3 -3
- package/build/tools/updatePullRequest.d.ts +3 -3
- package/build/tools/updatePullRequestComment.d.ts +3 -3
- package/build/tools/updateVersionMilestone.d.ts +3 -3
- package/build/tools/updateWatching.d.ts +3 -3
- package/build/tools/updateWiki.d.ts +3 -3
- package/build/types/tool.d.ts +2 -2
- package/build/utils/resolveIdOrKey.d.ts +3 -3
- package/build/utils/toolsetUtils.d.ts +2 -2
- package/package.json +2 -2
- 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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { ProjectSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const deleteProjectSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { VersionSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const deleteVersionSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { WatchingListItemSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const deleteWatchingSchema: (t:
|
|
6
|
+
declare const deleteWatchingSchema: (t: DescriptionHelper["t"]) => {
|
|
7
7
|
watchId: z.ZodNumber;
|
|
8
8
|
};
|
|
9
|
-
export declare const deleteWatchingTool: (backlog: Backlog, { t }:
|
|
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 {
|
|
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 }:
|
|
6
|
-
export declare function listOrganizationsTool(registry: BacklogClientRegistry, t:
|
|
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 {
|
|
5
|
-
export declare const dynamicTools: (toolRegistrar: ToolRegistrar, helper:
|
|
6
|
-
declare const enableToolsetSchema: (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 }:
|
|
10
|
-
export declare const listAvailableToolsets: ({ t }:
|
|
11
|
-
declare const getToolsetToolsSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { CategorySchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getCategoriesSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { CustomFieldSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getCustomFieldsInputSchema: (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 }:
|
|
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 {
|
|
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:
|
|
6
|
+
declare const getDocumentSchema: (t: DescriptionHelper["t"]) => {
|
|
7
7
|
documentId: z.ZodString;
|
|
8
8
|
};
|
|
9
|
-
export declare const getDocumentTool: (backlog: Backlog, { t }:
|
|
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 {
|
|
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:
|
|
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 }:
|
|
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 {
|
|
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:
|
|
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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { GitRepositorySchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getGitRepositoriesSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { GitRepositorySchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getGitRepositorySchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { IssueSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getIssueSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { IssueCommentSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getIssueCommentsSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { IssueTypeSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getIssueTypesSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { IssueSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getIssuesSchema: (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 }:
|
|
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 {
|
|
3
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
4
4
|
import { UserSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
5
|
-
declare const getMyselfSchema: (t:
|
|
6
|
-
export declare const getMyselfTool: (backlog: Backlog, { t }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { NotificationSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getNotificationsSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { NotificationCountSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getNotificationsCountSchema: (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 }:
|
|
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 {
|
|
3
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
4
4
|
import { PrioritySchema } from '../types/zod/backlogOutputDefinition.js';
|
|
5
|
-
declare const getPrioritiesSchema: (t:
|
|
6
|
-
export declare const getPrioritiesTool: (backlog: Backlog, { t }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { ProjectSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getProjectSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { ProjectSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getProjectListSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { UserSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getProjectUsersSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { PullRequestSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getPullRequestSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { PullRequestCommentSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getPullRequestCommentsSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { PullRequestSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getPullRequestsSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { PullRequestCountSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getPullRequestsCountSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { RelatedIssueSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getRelatedIssuesSchema: (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 }:
|
|
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 {
|
|
3
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
4
4
|
import { ResolutionSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
5
|
-
declare const getResolutionsSchema: (t:
|
|
6
|
-
export declare const getResolutionsTool: (backlog: Backlog, { t }:
|
|
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 {
|
|
3
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
4
4
|
import { SpaceSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
5
|
-
declare const getSpaceSchema: (t:
|
|
6
|
-
export declare const getSpaceTool: (backlog: Backlog, { t }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { ActivitySchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getSpaceActivitiesSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { ActivitySchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getUserRecentUpdatesSchema: (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 }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { StarCountSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getUserStarsCountSchema: (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 }:
|
|
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 {
|
|
3
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
4
4
|
import { UserSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
5
|
-
declare const getUsersSchema: (t:
|
|
6
|
-
export declare const getUsersTool: (backlog: Backlog, { t }:
|
|
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 {
|
|
4
|
+
import { DescriptionHelper } from '../createDescriptionHelper.js';
|
|
5
5
|
import { VersionSchema } from '../types/zod/backlogOutputDefinition.js';
|
|
6
|
-
declare const getVersionMilestoneListSchema: (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 }:
|
|
10
|
+
export declare const getVersionMilestoneListTool: (backlog: Backlog, { t }: DescriptionHelper) => ToolDefinition<ReturnType<typeof getVersionMilestoneListSchema>, (typeof VersionSchema)["shape"]>;
|
|
11
11
|
export {};
|