@azure-devops/mcp 2.7.0-nightly.20260608 → 2.7.0-nightly.20260609
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/dist/tools/repositories.js +2 -2
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -1287,7 +1287,7 @@ function configureRepoTools(server, tokenProvider, connectionProvider, userAgent
|
|
|
1287
1287
|
rightFileStartOffset: z
|
|
1288
1288
|
.number()
|
|
1289
1289
|
.optional()
|
|
1290
|
-
.describe("
|
|
1290
|
+
.describe("Start character offset of the thread's span within the line in the right file. The character offset of a thread's position inside of a line. Starts at 1. Must be set if rightFileStartLine is also specified. (optional)"),
|
|
1291
1291
|
rightFileEndLine: z
|
|
1292
1292
|
.number()
|
|
1293
1293
|
.optional()
|
|
@@ -1295,7 +1295,7 @@ function configureRepoTools(server, tokenProvider, connectionProvider, userAgent
|
|
|
1295
1295
|
rightFileEndOffset: z
|
|
1296
1296
|
.number()
|
|
1297
1297
|
.optional()
|
|
1298
|
-
.describe("
|
|
1298
|
+
.describe("Exclusive end character offset of the thread's span within the line in the right file. This value is exclusive: to cover the entire line, set it to (length of the original line text) + 1. When posting a suggestion, always calculate this from the existing file content being replaced, not from the suggestion or replacement text. Must be set if rightFileEndLine is also specified. (optional)"),
|
|
1299
1299
|
}, async ({ repositoryId, pullRequestId, content, project, filePath, status, rightFileStartLine, rightFileStartOffset, rightFileEndLine, rightFileEndOffset }) => {
|
|
1300
1300
|
try {
|
|
1301
1301
|
const connection = await connectionProvider();
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = "2.7.0-nightly.
|
|
1
|
+
export const packageVersion = "2.7.0-nightly.20260609";
|