@atlaskit/ads-mcp 0.13.9 → 0.15.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/CHANGELOG.md +15 -0
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/tools/get-icons/icon-structured-content.codegen.js +3 -2580
- package/dist/cjs/tools/get-lint-rules/index.js +126 -0
- package/dist/cjs/tools/get-lint-rules/lint-rules-structured-content.codegen.js +345 -0
- package/dist/es2019/index.js +6 -0
- package/dist/es2019/tools/get-icons/icon-structured-content.codegen.js +2 -2573
- package/dist/es2019/tools/get-lint-rules/index.js +97 -0
- package/dist/es2019/tools/get-lint-rules/lint-rules-structured-content.codegen.js +339 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/tools/get-icons/icon-structured-content.codegen.js +2 -2573
- package/dist/esm/tools/get-lint-rules/index.js +119 -0
- package/dist/esm/tools/get-lint-rules/lint-rules-structured-content.codegen.js +339 -0
- package/dist/types/tools/get-icons/icon-structured-content.codegen.d.ts +1 -1
- package/dist/types/tools/get-lint-rules/index.d.ts +27 -0
- package/dist/types/tools/get-lint-rules/lint-rules-structured-content.codegen.d.ts +13 -0
- package/dist/types-ts4.5/tools/get-icons/icon-structured-content.codegen.d.ts +1 -1
- package/dist/types-ts4.5/tools/get-lint-rules/index.d.ts +27 -0
- package/dist/types-ts4.5/tools/get-lint-rules/lint-rules-structured-content.codegen.d.ts +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/ads-mcp
|
|
2
2
|
|
|
3
|
+
## 0.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`1a24c2cadbbd8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a24c2cadbbd8) -
|
|
8
|
+
Include icon labs icons in the MCP's icon tool.
|
|
9
|
+
|
|
10
|
+
## 0.14.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`9450f7060eda0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9450f7060eda0) -
|
|
15
|
+
Created "lint rule" tool that documents lint rules in ADS MCP. It sources its content from the
|
|
16
|
+
structured docs.
|
|
17
|
+
|
|
3
18
|
## 0.13.9
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -21,6 +21,7 @@ var _getAllIcons = require("./tools/get-all-icons");
|
|
|
21
21
|
var _getAllTokens = require("./tools/get-all-tokens");
|
|
22
22
|
var _getComponents = require("./tools/get-components");
|
|
23
23
|
var _getIcons = require("./tools/get-icons");
|
|
24
|
+
var _getLintRules = require("./tools/get-lint-rules");
|
|
24
25
|
var _getTokens = require("./tools/get-tokens");
|
|
25
26
|
var _i18nConversion = require("./tools/i18n-conversion");
|
|
26
27
|
var _migrationGuides = require("./tools/migration-guides");
|
|
@@ -109,6 +110,11 @@ var getToolRegistry = exports.getToolRegistry = function getToolRegistry() {
|
|
|
109
110
|
inputSchema: _getIcons.getIconsInputSchema,
|
|
110
111
|
tool: _getIcons.listGetIconsTool
|
|
111
112
|
};
|
|
113
|
+
baseTools[_getLintRules.listGetLintRulesTool.name] = {
|
|
114
|
+
handler: _getLintRules.getLintRulesTool,
|
|
115
|
+
inputSchema: _getLintRules.getLintRulesInputSchema,
|
|
116
|
+
tool: _getLintRules.listGetLintRulesTool
|
|
117
|
+
};
|
|
112
118
|
} else {
|
|
113
119
|
baseTools[_getAllTokens.listGetAllTokensTool.name] = {
|
|
114
120
|
handler: _getAllTokens.getAllTokensTool,
|