@clipform/mcp-server 1.24.1 → 1.25.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/dist/{chunk-GDPSZSHN.js → chunk-2SXOLMHL.js} +5 -9
- package/dist/{chunk-GDPSZSHN.js.map → chunk-2SXOLMHL.js.map} +1 -1
- package/dist/{chunk-P46TFJ3P.js → chunk-H7XSNUKI.js} +2 -2
- package/dist/{chunk-U4BWWHDU.js → chunk-WGIWNARP.js} +2 -2
- package/dist/{chunk-HIINYZLX.js → chunk-X5HRS3GG.js} +5 -5
- package/dist/chunk-X5HRS3GG.js.map +1 -0
- package/dist/index.js +4 -4
- package/dist/prompts.js +2 -2
- package/dist/resources.js +2 -2
- package/dist/server.js +4 -4
- package/package.json +1 -1
- package/dist/chunk-HIINYZLX.js.map +0 -1
- /package/dist/{chunk-P46TFJ3P.js.map → chunk-H7XSNUKI.js.map} +0 -0
- /package/dist/{chunk-U4BWWHDU.js.map → chunk-WGIWNARP.js.map} +0 -0
|
@@ -6,14 +6,14 @@ import {
|
|
|
6
6
|
getWorkflowText,
|
|
7
7
|
objectType,
|
|
8
8
|
registerPrompts
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-H7XSNUKI.js";
|
|
10
10
|
import {
|
|
11
11
|
GUIDE_TYPES,
|
|
12
12
|
QUIZ_VARIANTS,
|
|
13
13
|
getGuideContent,
|
|
14
14
|
getGuideUri,
|
|
15
15
|
registerResources
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-WGIWNARP.js";
|
|
17
17
|
import {
|
|
18
18
|
BUSINESS,
|
|
19
19
|
CONTACT_FIELDS,
|
|
@@ -29,7 +29,7 @@ import {
|
|
|
29
29
|
errorResult,
|
|
30
30
|
resolveFormType,
|
|
31
31
|
textResult
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-X5HRS3GG.js";
|
|
33
33
|
import {
|
|
34
34
|
__commonJS,
|
|
35
35
|
__export,
|
|
@@ -17399,7 +17399,6 @@ function registerUpdateFormTool(server) {
|
|
|
17399
17399
|
description: external_exports.string().nullable().optional().describe("SEO description (meta description, og:description). Set null to clear."),
|
|
17400
17400
|
author: external_exports.string().nullable().optional().describe("AI-PROTECTED: Only set when the user explicitly provides an author name. Set null to clear."),
|
|
17401
17401
|
logo_url: external_exports.string().nullable().optional().describe("AI-PROTECTED: Only set when the user explicitly provides a logo URL. Set null to clear."),
|
|
17402
|
-
embed_autoplay: external_exports.boolean().optional().describe("Auto-play video when embed loads. Default false."),
|
|
17403
17402
|
show_branding: external_exports.boolean().optional().describe("Show Clipform branding. Set false to remove (Pro plan)."),
|
|
17404
17403
|
brand_name: external_exports.string().nullable().optional().describe("AI-PROTECTED: Custom brand name shown in footer. Only set when user explicitly provides."),
|
|
17405
17404
|
tags: external_exports.array(external_exports.string()).optional().describe("Replace all tags on this form. Pass the full desired set (e.g. ['quiz', 'trivia', 'slug:elephants']). Omit to leave tags unchanged.")
|
|
@@ -17411,7 +17410,7 @@ function registerUpdateFormTool(server) {
|
|
|
17411
17410
|
openWorldHint: true
|
|
17412
17411
|
}
|
|
17413
17412
|
},
|
|
17414
|
-
async ({ form_id, title, is_live, show_step_counter, disable_back_navigation, total_steps, primary_color, background_color, font_family, description, author, logo_url,
|
|
17413
|
+
async ({ form_id, title, is_live, show_step_counter, disable_back_navigation, total_steps, primary_color, background_color, font_family, description, author, logo_url, show_branding, brand_name, tags }) => {
|
|
17415
17414
|
const body = {};
|
|
17416
17415
|
if (title !== void 0) body.title = title;
|
|
17417
17416
|
if (is_live !== void 0) body.is_live = is_live;
|
|
@@ -17424,7 +17423,6 @@ function registerUpdateFormTool(server) {
|
|
|
17424
17423
|
if (description !== void 0) body.description = description;
|
|
17425
17424
|
if (author !== void 0) body.author = author;
|
|
17426
17425
|
if (logo_url !== void 0) body.logo_url = logo_url;
|
|
17427
|
-
if (embed_autoplay !== void 0 && FEATURES.embed_autoplay.enabled) body.embed_autoplay = embed_autoplay;
|
|
17428
17426
|
if (show_branding !== void 0) body.show_branding = show_branding;
|
|
17429
17427
|
if (brand_name !== void 0) body.brand_name = brand_name;
|
|
17430
17428
|
if (Object.keys(body).length > 0) {
|
|
@@ -17467,8 +17465,6 @@ function registerUpdateFormTool(server) {
|
|
|
17467
17465
|
updates.push(`Author \u2192 ${author === null ? "cleared" : `"${author}"`}`);
|
|
17468
17466
|
if (logo_url !== void 0)
|
|
17469
17467
|
updates.push(`Logo URL \u2192 ${logo_url === null ? "cleared" : logo_url}`);
|
|
17470
|
-
if (embed_autoplay !== void 0)
|
|
17471
|
-
updates.push(`Embed autoplay \u2192 ${embed_autoplay}`);
|
|
17472
17468
|
if (show_branding !== void 0)
|
|
17473
17469
|
updates.push(`Show branding \u2192 ${show_branding}`);
|
|
17474
17470
|
if (brand_name !== void 0)
|
|
@@ -18711,4 +18707,4 @@ export {
|
|
|
18711
18707
|
JSONRPCMessageSchema,
|
|
18712
18708
|
createServer
|
|
18713
18709
|
};
|
|
18714
|
-
//# sourceMappingURL=chunk-
|
|
18710
|
+
//# sourceMappingURL=chunk-2SXOLMHL.js.map
|