@daghis/teamcity-mcp 1.10.4 → 1.10.5
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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.10.5](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v1.10.4...teamcity-mcp-v1.10.5) (2025-10-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **teamcity:** set dependency types when adding via tool ([#231](https://github.com/Daghis/teamcity-mcp/issues/231)) ([702764a](https://github.com/Daghis/teamcity-mcp/commit/702764a19de0a649e394d5b4679dc8ea6373dcf2))
|
|
9
|
+
|
|
3
10
|
## [1.10.4](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v1.10.3...teamcity-mcp-v1.10.4) (2025-10-04)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.js
CHANGED
|
@@ -2329,9 +2329,9 @@ var JSON_GET_HEADERS2 = {
|
|
|
2329
2329
|
var defaultTypeFor = (dependencyType) => {
|
|
2330
2330
|
switch (dependencyType) {
|
|
2331
2331
|
case "artifact":
|
|
2332
|
-
return
|
|
2332
|
+
return "artifactDependency";
|
|
2333
2333
|
case "snapshot":
|
|
2334
|
-
return
|
|
2334
|
+
return "snapshotDependency";
|
|
2335
2335
|
default:
|
|
2336
2336
|
return void 0;
|
|
2337
2337
|
}
|