@gptmarket/temporal-types 0.0.28 → 0.0.29
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 +1 -1
- package/registry.ts +52 -6
- package/schemas/SaaSLoomInput.json +68 -6
- package/types.ts +13 -3
package/package.json
CHANGED
package/registry.ts
CHANGED
|
@@ -472,6 +472,39 @@ export const saa_s_loom: WorkflowDefinition<
|
|
|
472
472
|
{ value: "30", label: "30" },
|
|
473
473
|
],
|
|
474
474
|
},
|
|
475
|
+
{
|
|
476
|
+
name: "product_name",
|
|
477
|
+
type: "text",
|
|
478
|
+
label: "Product Name",
|
|
479
|
+
description:
|
|
480
|
+
'Name of the product/SaaS being promoted (e.g., "TopYappers")',
|
|
481
|
+
required: false,
|
|
482
|
+
default: null,
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
name: "product_url",
|
|
486
|
+
type: "text",
|
|
487
|
+
label: "Product Url",
|
|
488
|
+
description: 'URL of the product website (e.g., "topyappers.com")',
|
|
489
|
+
required: false,
|
|
490
|
+
default: null,
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
name: "product_tagline",
|
|
494
|
+
type: "text",
|
|
495
|
+
label: "Product Tagline",
|
|
496
|
+
description: "Product tagline or value proposition",
|
|
497
|
+
required: false,
|
|
498
|
+
default: null,
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
name: "company_name",
|
|
502
|
+
type: "text",
|
|
503
|
+
label: "Company Name",
|
|
504
|
+
description: "Company name if different from product name",
|
|
505
|
+
required: false,
|
|
506
|
+
default: null,
|
|
507
|
+
},
|
|
475
508
|
{
|
|
476
509
|
name: "include_talking_head",
|
|
477
510
|
type: "checkbox",
|
|
@@ -550,9 +583,9 @@ export const saa_s_loom: WorkflowDefinition<
|
|
|
550
583
|
name: "voice_id",
|
|
551
584
|
type: "text",
|
|
552
585
|
label: "Voice Id",
|
|
553
|
-
description: "ElevenLabs voice ID",
|
|
586
|
+
description: "ElevenLabs voice ID (default: Rachel - US female)",
|
|
554
587
|
required: false,
|
|
555
|
-
default: "
|
|
588
|
+
default: "21m00Tcm4TlvDq8ikWAM",
|
|
556
589
|
},
|
|
557
590
|
{
|
|
558
591
|
name: "voice_stability",
|
|
@@ -624,18 +657,31 @@ export const saa_s_loom: WorkflowDefinition<
|
|
|
624
657
|
name: "video_model",
|
|
625
658
|
type: "text",
|
|
626
659
|
label: "Video Model",
|
|
627
|
-
description: "Video model for
|
|
660
|
+
description: "Video model for b-roll generation",
|
|
628
661
|
required: false,
|
|
629
|
-
default: "
|
|
662
|
+
default: "seedance-1.5-pro",
|
|
630
663
|
hidden: true,
|
|
631
664
|
},
|
|
632
665
|
{
|
|
633
666
|
name: "llm_model",
|
|
634
667
|
type: "text",
|
|
635
668
|
label: "Llm Model",
|
|
636
|
-
description: "LLM for content generation",
|
|
669
|
+
description: "LLM for content generation (must support vision)",
|
|
637
670
|
required: false,
|
|
638
|
-
default: "
|
|
671
|
+
default: "gemini/gemini-2.0-flash",
|
|
672
|
+
hidden: true,
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
name: "lipsync_model",
|
|
676
|
+
type: "select",
|
|
677
|
+
label: "Lipsync Model",
|
|
678
|
+
description: "Lipsync model: pixverse (quality) or latentsync (cheaper)",
|
|
679
|
+
required: false,
|
|
680
|
+
default: "pixverse",
|
|
681
|
+
options: [
|
|
682
|
+
{ value: "pixverse", label: "Pixverse" },
|
|
683
|
+
{ value: "latentsync", label: "Latentsync" },
|
|
684
|
+
],
|
|
639
685
|
hidden: true,
|
|
640
686
|
},
|
|
641
687
|
{
|
|
@@ -246,6 +246,58 @@
|
|
|
246
246
|
"title": "Target Duration",
|
|
247
247
|
"type": "integer"
|
|
248
248
|
},
|
|
249
|
+
"product_name": {
|
|
250
|
+
"anyOf": [
|
|
251
|
+
{
|
|
252
|
+
"type": "string"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"type": "null"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"default": null,
|
|
259
|
+
"description": "Name of the product/SaaS being promoted (e.g., \"TopYappers\")",
|
|
260
|
+
"title": "Product Name"
|
|
261
|
+
},
|
|
262
|
+
"product_url": {
|
|
263
|
+
"anyOf": [
|
|
264
|
+
{
|
|
265
|
+
"type": "string"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"type": "null"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"default": null,
|
|
272
|
+
"description": "URL of the product website (e.g., \"topyappers.com\")",
|
|
273
|
+
"title": "Product Url"
|
|
274
|
+
},
|
|
275
|
+
"product_tagline": {
|
|
276
|
+
"anyOf": [
|
|
277
|
+
{
|
|
278
|
+
"type": "string"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"type": "null"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
"default": null,
|
|
285
|
+
"description": "Product tagline or value proposition",
|
|
286
|
+
"title": "Product Tagline"
|
|
287
|
+
},
|
|
288
|
+
"company_name": {
|
|
289
|
+
"anyOf": [
|
|
290
|
+
{
|
|
291
|
+
"type": "string"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"type": "null"
|
|
295
|
+
}
|
|
296
|
+
],
|
|
297
|
+
"default": null,
|
|
298
|
+
"description": "Company name if different from product name",
|
|
299
|
+
"title": "Company Name"
|
|
300
|
+
},
|
|
249
301
|
"include_talking_head": {
|
|
250
302
|
"default": true,
|
|
251
303
|
"description": "Include talking head overlay. If False, generates voiceover-only video.",
|
|
@@ -316,8 +368,8 @@
|
|
|
316
368
|
"description": "Centralized theme configuration for all visuals"
|
|
317
369
|
},
|
|
318
370
|
"voice_id": {
|
|
319
|
-
"default": "
|
|
320
|
-
"description": "ElevenLabs voice ID",
|
|
371
|
+
"default": "21m00Tcm4TlvDq8ikWAM",
|
|
372
|
+
"description": "ElevenLabs voice ID (default: Rachel - US female)",
|
|
321
373
|
"title": "Voice Id",
|
|
322
374
|
"type": "string"
|
|
323
375
|
},
|
|
@@ -373,17 +425,27 @@
|
|
|
373
425
|
"type": "string"
|
|
374
426
|
},
|
|
375
427
|
"video_model": {
|
|
376
|
-
"default": "
|
|
377
|
-
"description": "Video model for
|
|
428
|
+
"default": "seedance-1.5-pro",
|
|
429
|
+
"description": "Video model for b-roll generation",
|
|
378
430
|
"title": "Video Model",
|
|
379
431
|
"type": "string"
|
|
380
432
|
},
|
|
381
433
|
"llm_model": {
|
|
382
|
-
"default": "
|
|
383
|
-
"description": "LLM for content generation",
|
|
434
|
+
"default": "gemini/gemini-2.0-flash",
|
|
435
|
+
"description": "LLM for content generation (must support vision)",
|
|
384
436
|
"title": "Llm Model",
|
|
385
437
|
"type": "string"
|
|
386
438
|
},
|
|
439
|
+
"lipsync_model": {
|
|
440
|
+
"default": "pixverse",
|
|
441
|
+
"description": "Lipsync model: pixverse (quality) or latentsync (cheaper)",
|
|
442
|
+
"enum": [
|
|
443
|
+
"pixverse",
|
|
444
|
+
"latentsync"
|
|
445
|
+
],
|
|
446
|
+
"title": "Lipsync Model",
|
|
447
|
+
"type": "string"
|
|
448
|
+
},
|
|
387
449
|
"longerpost_api_url": {
|
|
388
450
|
"default": "http://localhost:3000",
|
|
389
451
|
"description": "LongerPost API URL",
|
package/types.ts
CHANGED
|
@@ -238,6 +238,14 @@ export interface SaaSLoomInput {
|
|
|
238
238
|
target_audience?: string;
|
|
239
239
|
/** Target video duration in minutes (1, 5, 10, 15, 20, or 30) */
|
|
240
240
|
target_duration?: 1 | 5 | 10 | 15 | 20 | 30;
|
|
241
|
+
/** Name of the product/SaaS being promoted (e.g., "TopYappers") */
|
|
242
|
+
product_name?: string | null;
|
|
243
|
+
/** URL of the product website (e.g., "topyappers.com") */
|
|
244
|
+
product_url?: string | null;
|
|
245
|
+
/** Product tagline or value proposition */
|
|
246
|
+
product_tagline?: string | null;
|
|
247
|
+
/** Company name if different from product name */
|
|
248
|
+
company_name?: string | null;
|
|
241
249
|
/** Include talking head overlay. If False, generates voiceover-only video. */
|
|
242
250
|
include_talking_head?: boolean;
|
|
243
251
|
/** URL of avatar image. If not provided, will generate one. */
|
|
@@ -272,7 +280,7 @@ export interface SaaSLoomInput {
|
|
|
272
280
|
presenter_border_color?: string | null;
|
|
273
281
|
presenter_shadow?: boolean;
|
|
274
282
|
};
|
|
275
|
-
/** ElevenLabs voice ID */
|
|
283
|
+
/** ElevenLabs voice ID (default: Rachel - US female) */
|
|
276
284
|
voice_id?: string;
|
|
277
285
|
voice_stability?: number;
|
|
278
286
|
voice_similarity?: number;
|
|
@@ -284,10 +292,12 @@ export interface SaaSLoomInput {
|
|
|
284
292
|
fps?: number;
|
|
285
293
|
/** Image model for avatar/visuals */
|
|
286
294
|
image_model?: string;
|
|
287
|
-
/** Video model for
|
|
295
|
+
/** Video model for b-roll generation */
|
|
288
296
|
video_model?: string;
|
|
289
|
-
/** LLM for content generation */
|
|
297
|
+
/** LLM for content generation (must support vision) */
|
|
290
298
|
llm_model?: string;
|
|
299
|
+
/** Lipsync model: pixverse (quality) or latentsync (cheaper) */
|
|
300
|
+
lipsync_model?: "pixverse" | "latentsync";
|
|
291
301
|
/** LongerPost API URL */
|
|
292
302
|
longerpost_api_url?: string;
|
|
293
303
|
/** LongerPost API key */
|