@umbraco-cms/mcp-dev 17.2.0 → 17.2.1
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/{chunk-O5JJAK7Z.js → chunk-7U4TTAJQ.js} +7 -6
- package/dist/{chunk-O5JJAK7Z.js.map → chunk-7U4TTAJQ.js.map} +1 -1
- package/dist/{chunk-UHEUCBCR.cjs → chunk-JDDQAEQJ.cjs} +7 -6
- package/dist/chunk-JDDQAEQJ.cjs.map +1 -0
- package/dist/collections.cjs +2 -2
- package/dist/collections.js +1 -1
- package/dist/index.cjs +309 -126
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +195 -12
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
- package/dist/chunk-UHEUCBCR.cjs.map +0 -1
|
@@ -18634,7 +18634,7 @@ var createMediaSchema = z66.object({
|
|
|
18634
18634
|
name: z66.string().describe("The name of the media item"),
|
|
18635
18635
|
mediaTypeName: z66.string().describe(`Media type: '${MEDIA_TYPE_IMAGE2}', '${MEDIA_TYPE_ARTICLE}', '${MEDIA_TYPE_AUDIO}', '${MEDIA_TYPE_VIDEO}', '${MEDIA_TYPE_VECTOR_GRAPHICS2}', '${MEDIA_TYPE_FILE}', or custom media type name`),
|
|
18636
18636
|
filePath: z66.string().optional().describe("Absolute path to the file (required if sourceType is 'filePath')"),
|
|
18637
|
-
fileUrl: z66.string().url().optional().describe("URL to fetch the file from (required if sourceType is 'url')"),
|
|
18637
|
+
fileUrl: z66.string().url().optional().describe("[raw] URL to fetch the file from (required if sourceType is 'url')"),
|
|
18638
18638
|
fileAsBase64: z66.string().optional().describe("Base64 encoded file data (required if sourceType is 'base64')"),
|
|
18639
18639
|
parentId: z66.string().uuid().optional().describe("Parent folder ID (defaults to root)")
|
|
18640
18640
|
});
|
|
@@ -21257,7 +21257,7 @@ import {
|
|
|
21257
21257
|
var createPartialViewSchema = z106.object({
|
|
21258
21258
|
name: z106.string().min(1, "Name is required"),
|
|
21259
21259
|
path: z106.string().optional(),
|
|
21260
|
-
content: z106.string().min(1, "Content is required")
|
|
21260
|
+
content: z106.string().min(1, "Content is required").describe("[raw]")
|
|
21261
21261
|
});
|
|
21262
21262
|
var createPartialViewOutputSchema = z106.object({
|
|
21263
21263
|
message: z106.string(),
|
|
@@ -22127,7 +22127,7 @@ import {
|
|
|
22127
22127
|
var createScriptSchema = z116.object({
|
|
22128
22128
|
name: z116.string().min(1, "Name is required"),
|
|
22129
22129
|
path: z116.string().optional(),
|
|
22130
|
-
content: z116.string().min(1, "Content is required")
|
|
22130
|
+
content: z116.string().min(1, "Content is required").describe("[raw]")
|
|
22131
22131
|
});
|
|
22132
22132
|
var createScriptOutputSchema = z116.object({
|
|
22133
22133
|
message: z116.string(),
|
|
@@ -22771,7 +22771,7 @@ import {
|
|
|
22771
22771
|
var createStylesheetSchema = z122.object({
|
|
22772
22772
|
name: z122.string().min(1, "Name is required"),
|
|
22773
22773
|
path: z122.string().optional(),
|
|
22774
|
-
content: z122.string().min(1, "Content is required")
|
|
22774
|
+
content: z122.string().min(1, "Content is required").describe("[raw]")
|
|
22775
22775
|
});
|
|
22776
22776
|
var createStylesheetOutputSchema = z122.object({
|
|
22777
22777
|
message: z122.string(),
|
|
@@ -22918,7 +22918,8 @@ import {
|
|
|
22918
22918
|
} from "@umbraco-cms/mcp-server-sdk";
|
|
22919
22919
|
var updateStylesheetSchema = z124.object({
|
|
22920
22920
|
...putStylesheetByPathParams.shape,
|
|
22921
|
-
...putStylesheetByPathBody.shape
|
|
22921
|
+
...putStylesheetByPathBody.shape,
|
|
22922
|
+
content: putStylesheetByPathBody.shape.content.describe("[raw]")
|
|
22922
22923
|
});
|
|
22923
22924
|
var UpdateStylesheetTool = {
|
|
22924
22925
|
name: "update-stylesheet",
|
|
@@ -24870,4 +24871,4 @@ export {
|
|
|
24870
24871
|
allModeNames,
|
|
24871
24872
|
allSliceNames
|
|
24872
24873
|
};
|
|
24873
|
-
//# sourceMappingURL=chunk-
|
|
24874
|
+
//# sourceMappingURL=chunk-7U4TTAJQ.js.map
|