velora-mcp-server 1.1.1 → 1.1.2
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/build/index.js +7 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -414,6 +414,11 @@ ${p.features.map((f) => ` - ${f}`).join("\n")}`;
|
|
|
414
414
|
.optional()
|
|
415
415
|
.default("auto")
|
|
416
416
|
.describe("Overall style/theme of the video. 'auto' lets Velora AI choose the best style for your topic."),
|
|
417
|
+
media_mix: zod_1.z
|
|
418
|
+
.enum(["mixed", "stock_only", "ai_only"])
|
|
419
|
+
.optional()
|
|
420
|
+
.default("mixed")
|
|
421
|
+
.describe("Controls the type of visuals used in the video. 'mixed' uses both. 'stock_only' uses 100% stock footage (no AI generation). 'ai_only' uses 100% AI generated video clips."),
|
|
417
422
|
script: zod_1.z
|
|
418
423
|
.string()
|
|
419
424
|
.optional()
|
|
@@ -427,7 +432,7 @@ ${p.features.map((f) => ` - ${f}`).join("\n")}`;
|
|
|
427
432
|
.string()
|
|
428
433
|
.optional()
|
|
429
434
|
.describe("Optional webhook URL to receive a POST callback when the video is completed. The callback payload will include video_id and output_url."),
|
|
430
|
-
}, async ({ api_key, topic, language, duration_minutes, aspect_ratio, voice_type, video_model, include_subtitles, subtitle_style, video_style, script, include_background_music, webhook_url, }) => {
|
|
435
|
+
}, async ({ api_key, topic, language, duration_minutes, aspect_ratio, voice_type, video_model, include_subtitles, subtitle_style, video_style, media_mix, script, include_background_music, webhook_url, }) => {
|
|
431
436
|
try {
|
|
432
437
|
const payload = {
|
|
433
438
|
topic,
|
|
@@ -435,6 +440,7 @@ ${p.features.map((f) => ` - ${f}`).join("\n")}`;
|
|
|
435
440
|
duration_minutes,
|
|
436
441
|
theme: video_style === "auto" ? "documentary" : video_style,
|
|
437
442
|
aspect_ratio,
|
|
443
|
+
media_mix,
|
|
438
444
|
};
|
|
439
445
|
if (webhook_url)
|
|
440
446
|
payload.webhook_url = webhook_url;
|
package/package.json
CHANGED