@atlaskit/ads-mcp 1.0.0 → 1.2.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 +19 -0
- package/dist/cjs/index.js +27 -1
- package/dist/cjs/tools/get-all-components/components.codegen.js +2 -2
- package/dist/cjs/tools/get-all-components/types.js +5 -1
- package/dist/cjs/tools/get-atlaskit-components/atlaskit-components.codegen.js +35 -6
- package/dist/cjs/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.js +206 -0
- package/dist/cjs/tools/get-atlaskit-hooks/get-atlaskit-hooks-tool.js +40 -0
- package/dist/cjs/tools/get-atlaskit-hooks/list-get-atlaskit-hooks-tool.js +22 -0
- package/dist/cjs/tools/get-atlaskit-hooks/types.js +5 -0
- package/dist/cjs/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.js +836 -0
- package/dist/cjs/tools/get-atlaskit-utilities/get-atlaskit-utilities-tool.js +40 -0
- package/dist/cjs/tools/get-atlaskit-utilities/list-get-atlaskit-utilities-tool.js +22 -0
- package/dist/cjs/tools/get-atlaskit-utilities/types.js +5 -0
- package/dist/cjs/tools/get-guidelines/guidelines-structured-content.codegen.js +4 -4
- package/dist/cjs/tools/get-lint-rules/lint-rules-structured-content.codegen.js +31 -11
- package/dist/cjs/tools/i18n-conversion/guide.js +7 -7
- package/dist/cjs/tools/i18n-conversion/list-i18n-conversion-tool.js +1 -1
- package/dist/cjs/tools/search-atlaskit-hooks/list-search-atlaskit-hooks-tool.js +22 -0
- package/dist/cjs/tools/search-atlaskit-hooks/search-atlaskit-hooks-input-schema.js +11 -0
- package/dist/cjs/tools/search-atlaskit-hooks/search-atlaskit-hooks-tool.js +109 -0
- package/dist/cjs/tools/search-atlaskit-utilities/list-search-atlaskit-utilities-tool.js +22 -0
- package/dist/cjs/tools/search-atlaskit-utilities/search-atlaskit-utilities-input-schema.js +11 -0
- package/dist/cjs/tools/search-atlaskit-utilities/search-atlaskit-utilities-tool.js +111 -0
- package/dist/cjs/tools/types.js +1 -0
- package/dist/es2019/index.js +30 -0
- package/dist/es2019/tools/get-all-components/components.codegen.js +2 -2
- package/dist/es2019/tools/get-all-components/types.js +1 -0
- package/dist/es2019/tools/get-atlaskit-components/atlaskit-components.codegen.js +35 -6
- package/dist/es2019/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.js +200 -0
- package/dist/es2019/tools/get-atlaskit-hooks/get-atlaskit-hooks-tool.js +14 -0
- package/dist/es2019/tools/get-atlaskit-hooks/list-get-atlaskit-hooks-tool.js +21 -0
- package/dist/es2019/tools/get-atlaskit-hooks/types.js +1 -0
- package/dist/es2019/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.js +830 -0
- package/dist/es2019/tools/get-atlaskit-utilities/get-atlaskit-utilities-tool.js +14 -0
- package/dist/es2019/tools/get-atlaskit-utilities/list-get-atlaskit-utilities-tool.js +21 -0
- package/dist/es2019/tools/get-atlaskit-utilities/types.js +1 -0
- package/dist/es2019/tools/get-guidelines/guidelines-structured-content.codegen.js +4 -4
- package/dist/es2019/tools/get-lint-rules/lint-rules-structured-content.codegen.js +31 -11
- package/dist/es2019/tools/i18n-conversion/guide.js +7 -7
- package/dist/es2019/tools/i18n-conversion/list-i18n-conversion-tool.js +1 -1
- package/dist/es2019/tools/search-atlaskit-hooks/list-search-atlaskit-hooks-tool.js +19 -0
- package/dist/es2019/tools/search-atlaskit-hooks/search-atlaskit-hooks-input-schema.js +5 -0
- package/dist/es2019/tools/search-atlaskit-hooks/search-atlaskit-hooks-tool.js +79 -0
- package/dist/es2019/tools/search-atlaskit-utilities/list-search-atlaskit-utilities-tool.js +19 -0
- package/dist/es2019/tools/search-atlaskit-utilities/search-atlaskit-utilities-input-schema.js +5 -0
- package/dist/es2019/tools/search-atlaskit-utilities/search-atlaskit-utilities-tool.js +81 -0
- package/dist/es2019/tools/types.js +0 -0
- package/dist/esm/index.js +27 -1
- package/dist/esm/tools/get-all-components/components.codegen.js +2 -2
- package/dist/esm/tools/get-all-components/types.js +1 -0
- package/dist/esm/tools/get-atlaskit-components/atlaskit-components.codegen.js +35 -6
- package/dist/esm/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.js +200 -0
- package/dist/esm/tools/get-atlaskit-hooks/get-atlaskit-hooks-tool.js +32 -0
- package/dist/esm/tools/get-atlaskit-hooks/list-get-atlaskit-hooks-tool.js +16 -0
- package/dist/esm/tools/get-atlaskit-hooks/types.js +1 -0
- package/dist/esm/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.js +830 -0
- package/dist/esm/tools/get-atlaskit-utilities/get-atlaskit-utilities-tool.js +32 -0
- package/dist/esm/tools/get-atlaskit-utilities/list-get-atlaskit-utilities-tool.js +16 -0
- package/dist/esm/tools/get-atlaskit-utilities/types.js +1 -0
- package/dist/esm/tools/get-guidelines/guidelines-structured-content.codegen.js +4 -4
- package/dist/esm/tools/get-lint-rules/lint-rules-structured-content.codegen.js +31 -11
- package/dist/esm/tools/i18n-conversion/guide.js +7 -7
- package/dist/esm/tools/i18n-conversion/list-i18n-conversion-tool.js +1 -1
- package/dist/esm/tools/search-atlaskit-hooks/list-search-atlaskit-hooks-tool.js +16 -0
- package/dist/esm/tools/search-atlaskit-hooks/search-atlaskit-hooks-input-schema.js +5 -0
- package/dist/esm/tools/search-atlaskit-hooks/search-atlaskit-hooks-tool.js +102 -0
- package/dist/esm/tools/search-atlaskit-utilities/list-search-atlaskit-utilities-tool.js +16 -0
- package/dist/esm/tools/search-atlaskit-utilities/search-atlaskit-utilities-input-schema.js +5 -0
- package/dist/esm/tools/search-atlaskit-utilities/search-atlaskit-utilities-tool.js +106 -0
- package/dist/esm/tools/types.js +0 -0
- package/dist/types/tools/get-all-components/components.codegen.d.ts +1 -1
- package/dist/types/tools/get-all-components/types.d.ts +2 -1
- package/dist/types/tools/get-atlaskit-components/atlaskit-components.codegen.d.ts +1 -1
- package/dist/types/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.d.ts +10 -0
- package/dist/types/tools/get-atlaskit-hooks/get-atlaskit-hooks-tool.d.ts +6 -0
- package/dist/types/tools/get-atlaskit-hooks/list-get-atlaskit-hooks-tool.d.ts +2 -0
- package/dist/types/tools/get-atlaskit-hooks/types.d.ts +14 -0
- package/dist/types/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.d.ts +10 -0
- package/dist/types/tools/get-atlaskit-utilities/get-atlaskit-utilities-tool.d.ts +6 -0
- package/dist/types/tools/get-atlaskit-utilities/list-get-atlaskit-utilities-tool.d.ts +2 -0
- package/dist/types/tools/get-atlaskit-utilities/types.d.ts +41 -0
- package/dist/types/tools/get-guidelines/guidelines-structured-content.codegen.d.ts +1 -1
- package/dist/types/tools/get-lint-rules/lint-rules-structured-content.codegen.d.ts +1 -1
- package/dist/types/tools/search-atlaskit-hooks/list-search-atlaskit-hooks-tool.d.ts +2 -0
- package/dist/types/tools/search-atlaskit-hooks/search-atlaskit-hooks-input-schema.d.ts +11 -0
- package/dist/types/tools/search-atlaskit-hooks/search-atlaskit-hooks-tool.d.ts +4 -0
- package/dist/types/tools/search-atlaskit-utilities/list-search-atlaskit-utilities-tool.d.ts +2 -0
- package/dist/types/tools/search-atlaskit-utilities/search-atlaskit-utilities-input-schema.d.ts +11 -0
- package/dist/types/tools/search-atlaskit-utilities/search-atlaskit-utilities-tool.d.ts +4 -0
- package/dist/types/tools/types.d.ts +12 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/ads-mcp
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3439f139ad289`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3439f139ad289) -
|
|
8
|
+
Refresh ADS MCP generated component metadata for updated ADS references, including token-aware
|
|
9
|
+
type signatures and latest component/guideline surfaces.
|
|
10
|
+
|
|
11
|
+
## 1.1.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`e912dc2ccd014`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e912dc2ccd014) -
|
|
16
|
+
add atlaskit-hooks and atlaskit-utilities
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 1.0.0
|
|
4
23
|
|
|
5
24
|
### Major Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -31,6 +31,10 @@ var _getAllTokensTool = require("./tools/get-all-tokens/get-all-tokens-tool");
|
|
|
31
31
|
var _listGetAllTokensTool = require("./tools/get-all-tokens/list-get-all-tokens-tool");
|
|
32
32
|
var _getAtlaskitComponentsTool = require("./tools/get-atlaskit-components/get-atlaskit-components-tool");
|
|
33
33
|
var _listGetAtlaskitComponentsTool = require("./tools/get-atlaskit-components/list-get-atlaskit-components-tool");
|
|
34
|
+
var _getAtlaskitHooksTool = require("./tools/get-atlaskit-hooks/get-atlaskit-hooks-tool");
|
|
35
|
+
var _listGetAtlaskitHooksTool = require("./tools/get-atlaskit-hooks/list-get-atlaskit-hooks-tool");
|
|
36
|
+
var _getAtlaskitUtilitiesTool = require("./tools/get-atlaskit-utilities/get-atlaskit-utilities-tool");
|
|
37
|
+
var _listGetAtlaskitUtilitiesTool = require("./tools/get-atlaskit-utilities/list-get-atlaskit-utilities-tool");
|
|
34
38
|
var _getGuidelinesInputSchema = require("./tools/get-guidelines/get-guidelines-input-schema");
|
|
35
39
|
var _getGuidelinesTool = require("./tools/get-guidelines/get-guidelines-tool");
|
|
36
40
|
var _listGetGuidelinesTool = require("./tools/get-guidelines/list-get-guidelines-tool");
|
|
@@ -49,6 +53,12 @@ var _planTool = require("./tools/plan/plan-tool");
|
|
|
49
53
|
var _listSearchAtlaskitComponentsTool = require("./tools/search-atlaskit-components/list-search-atlaskit-components-tool");
|
|
50
54
|
var _searchAtlaskitComponentsInputSchema = require("./tools/search-atlaskit-components/search-atlaskit-components-input-schema");
|
|
51
55
|
var _searchAtlaskitComponentsTool = require("./tools/search-atlaskit-components/search-atlaskit-components-tool");
|
|
56
|
+
var _listSearchAtlaskitHooksTool = require("./tools/search-atlaskit-hooks/list-search-atlaskit-hooks-tool");
|
|
57
|
+
var _searchAtlaskitHooksInputSchema = require("./tools/search-atlaskit-hooks/search-atlaskit-hooks-input-schema");
|
|
58
|
+
var _searchAtlaskitHooksTool = require("./tools/search-atlaskit-hooks/search-atlaskit-hooks-tool");
|
|
59
|
+
var _listSearchAtlaskitUtilitiesTool = require("./tools/search-atlaskit-utilities/list-search-atlaskit-utilities-tool");
|
|
60
|
+
var _searchAtlaskitUtilitiesInputSchema = require("./tools/search-atlaskit-utilities/search-atlaskit-utilities-input-schema");
|
|
61
|
+
var _searchAtlaskitUtilitiesTool = require("./tools/search-atlaskit-utilities/search-atlaskit-utilities-tool");
|
|
52
62
|
var _listSearchComponentsTool = require("./tools/search-components/list-search-components-tool");
|
|
53
63
|
var _searchComponentsInputSchema = require("./tools/search-components/search-components-input-schema");
|
|
54
64
|
var _searchComponentsTool = require("./tools/search-components/search-components-tool");
|
|
@@ -139,7 +149,7 @@ var getToolRegistry = exports.getToolRegistry = function getToolRegistry() {
|
|
|
139
149
|
handler: _migrationGuidesTool.migrationGuidesTool,
|
|
140
150
|
inputSchema: _migrationGuidesInputSchema.migrationGuidesInputSchema,
|
|
141
151
|
tool: _listMigrationGuidesTool.listMigrationGuidesTool
|
|
142
|
-
}), (0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)(_registry, _listI18nConversionTool.listI18nConversionTool.name, {
|
|
152
|
+
}), (0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)(_registry, _listI18nConversionTool.listI18nConversionTool.name, {
|
|
143
153
|
handler: _i18nConversionTool.i18nConversionTool,
|
|
144
154
|
inputSchema: _i18nConversionInputSchema.i18nConversionInputSchema,
|
|
145
155
|
tool: _listI18nConversionTool.listI18nConversionTool
|
|
@@ -167,6 +177,22 @@ var getToolRegistry = exports.getToolRegistry = function getToolRegistry() {
|
|
|
167
177
|
handler: _searchAtlaskitComponentsTool.searchAtlaskitComponentsTool,
|
|
168
178
|
inputSchema: _searchAtlaskitComponentsInputSchema.searchAtlaskitComponentsInputSchema,
|
|
169
179
|
tool: _listSearchAtlaskitComponentsTool.listSearchAtlaskitComponentsTool
|
|
180
|
+
}), _listGetAtlaskitUtilitiesTool.listGetAtlaskitUtilitiesTool.name, {
|
|
181
|
+
handler: _getAtlaskitUtilitiesTool.getAtlaskitUtilitiesTool,
|
|
182
|
+
inputSchema: null,
|
|
183
|
+
tool: _listGetAtlaskitUtilitiesTool.listGetAtlaskitUtilitiesTool
|
|
184
|
+
}), _listSearchAtlaskitUtilitiesTool.listSearchAtlaskitUtilitiesTool.name, {
|
|
185
|
+
handler: _searchAtlaskitUtilitiesTool.searchAtlaskitUtilitiesTool,
|
|
186
|
+
inputSchema: _searchAtlaskitUtilitiesInputSchema.searchAtlaskitUtilitiesInputSchema,
|
|
187
|
+
tool: _listSearchAtlaskitUtilitiesTool.listSearchAtlaskitUtilitiesTool
|
|
188
|
+
}), _listGetAtlaskitHooksTool.listGetAtlaskitHooksTool.name, {
|
|
189
|
+
handler: _getAtlaskitHooksTool.getAtlaskitHooksTool,
|
|
190
|
+
inputSchema: null,
|
|
191
|
+
tool: _listGetAtlaskitHooksTool.listGetAtlaskitHooksTool
|
|
192
|
+
}), (0, _defineProperty2.default)(_registry, _listSearchAtlaskitHooksTool.listSearchAtlaskitHooksTool.name, {
|
|
193
|
+
handler: _searchAtlaskitHooksTool.searchAtlaskitHooksTool,
|
|
194
|
+
inputSchema: _searchAtlaskitHooksInputSchema.searchAtlaskitHooksInputSchema,
|
|
195
|
+
tool: _listSearchAtlaskitHooksTool.listSearchAtlaskitHooksTool
|
|
170
196
|
}));
|
|
171
197
|
return registry;
|
|
172
198
|
};
|