@musallam/ffs-photoshop-client 2.0.1 → 2.1.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/package.json +8 -2
- package/src/tools/index.ts +7 -0
- package/src/tools/openapi-tools.gen.ts +7063 -0
- package/src/tools/openapi-tools.json +7055 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@musallam/ffs-photoshop-client",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Adobe Photoshop API SDK",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,13 +20,19 @@
|
|
|
20
20
|
"import": "./dist/sdk.mjs",
|
|
21
21
|
"require": "./dist/sdk.cjs",
|
|
22
22
|
"types": "./dist/sdk.d.mts"
|
|
23
|
+
},
|
|
24
|
+
"./tools": {
|
|
25
|
+
"types": "./src/tools/index.ts",
|
|
26
|
+
"import": "./src/tools/index.ts",
|
|
27
|
+
"require": "./src/tools/index.ts"
|
|
23
28
|
}
|
|
24
29
|
},
|
|
25
30
|
"publishConfig": {
|
|
26
31
|
"access": "public"
|
|
27
32
|
},
|
|
28
33
|
"files": [
|
|
29
|
-
"dist"
|
|
34
|
+
"dist",
|
|
35
|
+
"src/tools"
|
|
30
36
|
],
|
|
31
37
|
"scripts": {
|
|
32
38
|
"build": "tsdown --config ../../tsdown.config.ts",
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MCP tool definitions extracted from the package OpenAPI spec (openapi-mcp-generator).
|
|
3
|
+
* @generated by scripts/generate-openapi-mcp-tools.mjs
|
|
4
|
+
*/
|
|
5
|
+
export type { OpenapiMcpTool } from './openapi-tools.gen.js';
|
|
6
|
+
export { openapiMcpTools } from './openapi-tools.gen.js';
|
|
7
|
+
|