@sourcebot/mcp 1.0.17 → 1.0.18
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/CHANGELOG.md +6 -0
- package/dist/client.d.ts +11 -11
- package/dist/env.d.ts +1 -1
- package/dist/schemas.d.ts +73 -995
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.18] - 2026-02-28
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Bumped `@modelcontextprotocol/sdk` from 1.10.2 to 1.26.0. [#958](https://github.com/sourcebot-dev/sourcebot/pull/958)
|
|
14
|
+
- Bumped `zod` from `^3.24.3` to `^4.3.6`. [#964](https://github.com/sourcebot-dev/sourcebot/pull/964)
|
|
15
|
+
|
|
10
16
|
## [1.0.17] - 2026-02-19
|
|
11
17
|
|
|
12
18
|
### Added
|
package/dist/client.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ export declare const search: (request: SearchRequest) => Promise<{
|
|
|
24
24
|
flushReason: string;
|
|
25
25
|
};
|
|
26
26
|
files: {
|
|
27
|
-
webUrl: string;
|
|
28
27
|
fileName: {
|
|
29
28
|
text: string;
|
|
30
29
|
matchRanges: {
|
|
@@ -40,10 +39,12 @@ export declare const search: (request: SearchRequest) => Promise<{
|
|
|
40
39
|
};
|
|
41
40
|
}[];
|
|
42
41
|
};
|
|
42
|
+
webUrl: string;
|
|
43
43
|
repository: string;
|
|
44
44
|
repositoryId: number;
|
|
45
45
|
language: string;
|
|
46
46
|
chunks: {
|
|
47
|
+
content: string;
|
|
47
48
|
matchRanges: {
|
|
48
49
|
start: {
|
|
49
50
|
byteOffset: number;
|
|
@@ -56,7 +57,6 @@ export declare const search: (request: SearchRequest) => Promise<{
|
|
|
56
57
|
column: number;
|
|
57
58
|
};
|
|
58
59
|
}[];
|
|
59
|
-
content: string;
|
|
60
60
|
contentStart: {
|
|
61
61
|
byteOffset: number;
|
|
62
62
|
lineNumber: number;
|
|
@@ -72,8 +72,8 @@ export declare const search: (request: SearchRequest) => Promise<{
|
|
|
72
72
|
}[] | undefined;
|
|
73
73
|
}[];
|
|
74
74
|
externalWebUrl?: string | undefined;
|
|
75
|
-
content?: string | undefined;
|
|
76
75
|
branches?: string[] | undefined;
|
|
76
|
+
content?: string | undefined;
|
|
77
77
|
}[];
|
|
78
78
|
repositoryInfo: {
|
|
79
79
|
id: number;
|
|
@@ -87,13 +87,13 @@ export declare const search: (request: SearchRequest) => Promise<{
|
|
|
87
87
|
export declare const listRepos: (queryParams?: ListReposQueryParams) => Promise<{
|
|
88
88
|
repos: {
|
|
89
89
|
codeHostType: string;
|
|
90
|
-
webUrl: string;
|
|
91
90
|
repoId: number;
|
|
92
91
|
repoName: string;
|
|
92
|
+
webUrl: string;
|
|
93
93
|
isFork: boolean;
|
|
94
94
|
isArchived: boolean;
|
|
95
|
-
externalWebUrl?: string | undefined;
|
|
96
95
|
repoDisplayName?: string | undefined;
|
|
96
|
+
externalWebUrl?: string | undefined;
|
|
97
97
|
imageUrl?: string | undefined;
|
|
98
98
|
indexedAt?: Date | undefined;
|
|
99
99
|
pushedAt?: Date | undefined;
|
|
@@ -102,21 +102,21 @@ export declare const listRepos: (queryParams?: ListReposQueryParams) => Promise<
|
|
|
102
102
|
totalCount: number;
|
|
103
103
|
}>;
|
|
104
104
|
export declare const getFileSource: (request: FileSourceRequest) => Promise<{
|
|
105
|
-
|
|
106
|
-
webUrl: string;
|
|
105
|
+
source: string;
|
|
107
106
|
language: string;
|
|
107
|
+
path: string;
|
|
108
108
|
repo: string;
|
|
109
|
-
source: string;
|
|
110
109
|
repoCodeHostType: string;
|
|
111
|
-
|
|
110
|
+
webUrl: string;
|
|
112
111
|
repoDisplayName?: string | undefined;
|
|
113
112
|
repoExternalWebUrl?: string | undefined;
|
|
113
|
+
externalWebUrl?: string | undefined;
|
|
114
114
|
}>;
|
|
115
115
|
export declare const listCommits: (queryParams: ListCommitsQueryParamsSchema) => Promise<{
|
|
116
116
|
commits: {
|
|
117
|
-
message: string;
|
|
118
|
-
date: string;
|
|
119
117
|
hash: string;
|
|
118
|
+
date: string;
|
|
119
|
+
message: string;
|
|
120
120
|
refs: string;
|
|
121
121
|
body: string;
|
|
122
122
|
author_name: string;
|
package/dist/env.d.ts
CHANGED