@gptmarket/temporal-types 0.0.27 → 0.0.28
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 +477 -0
- package/schemas/SaaSLoomInput.json +409 -0
- package/schemas/SaaSLoomOutput.json +252 -0
- package/schemas/SaaSVideoInput.json +157 -0
- package/schemas/SaaSVideoOutput.json +55 -0
- package/types.ts +230 -0
package/package.json
CHANGED
package/registry.ts
CHANGED
|
@@ -366,6 +366,477 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
|
|
|
366
366
|
],
|
|
367
367
|
};
|
|
368
368
|
|
|
369
|
+
export const saa_s_loom: WorkflowDefinition<
|
|
370
|
+
Types.SaaSLoomInput,
|
|
371
|
+
Types.SaaSLoomOutput
|
|
372
|
+
> = {
|
|
373
|
+
id: "saa_s_loom",
|
|
374
|
+
name: "Saa S Loom",
|
|
375
|
+
description: "SaaS Loom Video Generator Workflow.",
|
|
376
|
+
workflowClass: "SaaSLoomWorkflow",
|
|
377
|
+
inputType: "SaaSLoomInput",
|
|
378
|
+
outputType: "SaaSLoomOutput",
|
|
379
|
+
fields: [
|
|
380
|
+
{
|
|
381
|
+
name: "secret_key",
|
|
382
|
+
type: "text",
|
|
383
|
+
label: "Secret Key",
|
|
384
|
+
description:
|
|
385
|
+
"Secret key for authentication (required when WORKFLOW_SECRET_ENABLED=True)",
|
|
386
|
+
required: false,
|
|
387
|
+
default: null,
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
name: "rewrite_enabled",
|
|
391
|
+
type: "checkbox",
|
|
392
|
+
label: "Rewrite Enabled",
|
|
393
|
+
description:
|
|
394
|
+
"Make your content appear as fresh, original uploads. Bypasses duplicate detection and AI content filters on social platforms.",
|
|
395
|
+
required: false,
|
|
396
|
+
default: false,
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
name: "rewrite_device",
|
|
400
|
+
type: "select",
|
|
401
|
+
label: "Rewrite Device",
|
|
402
|
+
description:
|
|
403
|
+
"Make media appear as if created on this device. Adds authenticity and helps bypass platform detection. Random device if not specified.",
|
|
404
|
+
required: false,
|
|
405
|
+
default: null,
|
|
406
|
+
options: [
|
|
407
|
+
{ value: "iPhone 17 Pro Max", label: "Iphone 17 Pro Max" },
|
|
408
|
+
{ value: "iPhone 17 Pro", label: "Iphone 17 Pro" },
|
|
409
|
+
{ value: "iPhone 17 Plus", label: "Iphone 17 Plus" },
|
|
410
|
+
{ value: "iPhone 17", label: "Iphone 17" },
|
|
411
|
+
{ value: "iPhone 16 Pro Max", label: "Iphone 16 Pro Max" },
|
|
412
|
+
{ value: "iPhone 16 Pro", label: "Iphone 16 Pro" },
|
|
413
|
+
{ value: "iPhone 16 Plus", label: "Iphone 16 Plus" },
|
|
414
|
+
{ value: "iPhone 16", label: "Iphone 16" },
|
|
415
|
+
{ value: "iPhone 15 Pro Max", label: "Iphone 15 Pro Max" },
|
|
416
|
+
{ value: "iPhone 15 Pro", label: "Iphone 15 Pro" },
|
|
417
|
+
{ value: "iPhone 15 Plus", label: "Iphone 15 Plus" },
|
|
418
|
+
{ value: "iPhone 15", label: "Iphone 15" },
|
|
419
|
+
{ value: "iPhone 14 Pro Max", label: "Iphone 14 Pro Max" },
|
|
420
|
+
{ value: "iPhone 14 Pro", label: "Iphone 14 Pro" },
|
|
421
|
+
{ value: "iPhone 14 Plus", label: "Iphone 14 Plus" },
|
|
422
|
+
{ value: "iPhone 14", label: "Iphone 14" },
|
|
423
|
+
{ value: "iPhone 13 Pro Max", label: "Iphone 13 Pro Max" },
|
|
424
|
+
{ value: "iPhone 13 Pro", label: "Iphone 13 Pro" },
|
|
425
|
+
{ value: "iPhone 13", label: "Iphone 13" },
|
|
426
|
+
{ value: "iPhone 13 mini", label: "Iphone 13 Mini" },
|
|
427
|
+
{
|
|
428
|
+
value: "Ray-Ban Meta Smart Glasses",
|
|
429
|
+
label: "Ray-Ban Meta Smart Glasses",
|
|
430
|
+
},
|
|
431
|
+
],
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
name: "topic",
|
|
435
|
+
type: "text",
|
|
436
|
+
label: "Topic",
|
|
437
|
+
description:
|
|
438
|
+
"Video topic. If not provided, will be generated from niche.",
|
|
439
|
+
required: false,
|
|
440
|
+
default: null,
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
name: "niche",
|
|
444
|
+
type: "text",
|
|
445
|
+
label: "Niche",
|
|
446
|
+
description:
|
|
447
|
+
"Niche/industry for topic generation (used if topic not provided)",
|
|
448
|
+
required: false,
|
|
449
|
+
default: "SaaS",
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
name: "target_audience",
|
|
453
|
+
type: "text",
|
|
454
|
+
label: "Target Audience",
|
|
455
|
+
description: "Target audience for the video",
|
|
456
|
+
required: false,
|
|
457
|
+
default: "startup founders and product managers",
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
name: "target_duration",
|
|
461
|
+
type: "select",
|
|
462
|
+
label: "Target Duration",
|
|
463
|
+
description: "Target video duration in minutes (1, 5, 10, 15, 20, or 30)",
|
|
464
|
+
required: false,
|
|
465
|
+
default: 10,
|
|
466
|
+
options: [
|
|
467
|
+
{ value: "1", label: "1" },
|
|
468
|
+
{ value: "5", label: "5" },
|
|
469
|
+
{ value: "10", label: "10" },
|
|
470
|
+
{ value: "15", label: "15" },
|
|
471
|
+
{ value: "20", label: "20" },
|
|
472
|
+
{ value: "30", label: "30" },
|
|
473
|
+
],
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
name: "include_talking_head",
|
|
477
|
+
type: "checkbox",
|
|
478
|
+
label: "Include Talking Head",
|
|
479
|
+
description:
|
|
480
|
+
"Include talking head overlay. If False, generates voiceover-only video.",
|
|
481
|
+
required: false,
|
|
482
|
+
default: true,
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
name: "avatar_image_url",
|
|
486
|
+
type: "text",
|
|
487
|
+
label: "Avatar Image Url",
|
|
488
|
+
description: "URL of avatar image. If not provided, will generate one.",
|
|
489
|
+
required: false,
|
|
490
|
+
default: null,
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
name: "avatar_prompt",
|
|
494
|
+
type: "textarea",
|
|
495
|
+
label: "Avatar Prompt",
|
|
496
|
+
description:
|
|
497
|
+
"Prompt for avatar generation (if avatar_image_url not provided)",
|
|
498
|
+
required: false,
|
|
499
|
+
default: null,
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
name: "gender",
|
|
503
|
+
type: "select",
|
|
504
|
+
label: "Gender",
|
|
505
|
+
description: "Avatar gender",
|
|
506
|
+
required: false,
|
|
507
|
+
default: "female",
|
|
508
|
+
options: [
|
|
509
|
+
{ value: "male", label: "Male" },
|
|
510
|
+
{ value: "female", label: "Female" },
|
|
511
|
+
],
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
name: "presenter_position",
|
|
515
|
+
type: "select",
|
|
516
|
+
label: "Presenter Position",
|
|
517
|
+
description:
|
|
518
|
+
"Position of presenter bubble (only used if include_talking_head=True)",
|
|
519
|
+
required: false,
|
|
520
|
+
default: "topLeft",
|
|
521
|
+
options: [
|
|
522
|
+
{ value: "bottomLeft", label: "Bottomleft" },
|
|
523
|
+
{ value: "bottomRight", label: "Bottomright" },
|
|
524
|
+
{ value: "topLeft", label: "Topleft" },
|
|
525
|
+
{ value: "topRight", label: "Topright" },
|
|
526
|
+
],
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
name: "presenter_size",
|
|
530
|
+
type: "select",
|
|
531
|
+
label: "Presenter Size",
|
|
532
|
+
description: "Size of presenter (only used if include_talking_head=True)",
|
|
533
|
+
required: false,
|
|
534
|
+
default: "medium",
|
|
535
|
+
options: [
|
|
536
|
+
{ value: "small", label: "Small" },
|
|
537
|
+
{ value: "medium", label: "Medium" },
|
|
538
|
+
{ value: "large", label: "Large" },
|
|
539
|
+
],
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
name: "theme",
|
|
543
|
+
type: "text",
|
|
544
|
+
label: "Theme",
|
|
545
|
+
description: "Centralized theme configuration for all visuals",
|
|
546
|
+
required: false,
|
|
547
|
+
default: null,
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
name: "voice_id",
|
|
551
|
+
type: "text",
|
|
552
|
+
label: "Voice Id",
|
|
553
|
+
description: "ElevenLabs voice ID",
|
|
554
|
+
required: false,
|
|
555
|
+
default: "JBFqnCBsd6RMkjVDRZzb",
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
name: "voice_stability",
|
|
559
|
+
type: "number",
|
|
560
|
+
label: "Voice Stability",
|
|
561
|
+
description: "",
|
|
562
|
+
required: false,
|
|
563
|
+
default: 0.35,
|
|
564
|
+
validation: { min: 0.0, max: 1.0 },
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
name: "voice_similarity",
|
|
568
|
+
type: "number",
|
|
569
|
+
label: "Voice Similarity",
|
|
570
|
+
description: "",
|
|
571
|
+
required: false,
|
|
572
|
+
default: 0.75,
|
|
573
|
+
validation: { min: 0.0, max: 1.0 },
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
name: "voice_style",
|
|
577
|
+
type: "number",
|
|
578
|
+
label: "Voice Style",
|
|
579
|
+
description: "",
|
|
580
|
+
required: false,
|
|
581
|
+
default: 0.45,
|
|
582
|
+
validation: { min: 0.0, max: 1.0 },
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
name: "voice_speed",
|
|
586
|
+
type: "number",
|
|
587
|
+
label: "Voice Speed",
|
|
588
|
+
description: "",
|
|
589
|
+
required: false,
|
|
590
|
+
default: 1.0,
|
|
591
|
+
validation: { min: 0.5, max: 2.0 },
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
name: "aspect_ratio",
|
|
595
|
+
type: "select",
|
|
596
|
+
label: "Aspect Ratio",
|
|
597
|
+
description: "Video aspect ratio",
|
|
598
|
+
required: false,
|
|
599
|
+
default: "16:9",
|
|
600
|
+
options: [
|
|
601
|
+
{ value: "16:9", label: "16:9" },
|
|
602
|
+
{ value: "9:16", label: "9:16" },
|
|
603
|
+
{ value: "1:1", label: "1:1" },
|
|
604
|
+
],
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
name: "fps",
|
|
608
|
+
type: "number",
|
|
609
|
+
label: "Fps",
|
|
610
|
+
description: "Frames per second",
|
|
611
|
+
required: false,
|
|
612
|
+
default: 30,
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
name: "image_model",
|
|
616
|
+
type: "text",
|
|
617
|
+
label: "Image Model",
|
|
618
|
+
description: "Image model for avatar/visuals",
|
|
619
|
+
required: false,
|
|
620
|
+
default: "nano-banana",
|
|
621
|
+
hidden: true,
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
name: "video_model",
|
|
625
|
+
type: "text",
|
|
626
|
+
label: "Video Model",
|
|
627
|
+
description: "Video model for talking head/broll",
|
|
628
|
+
required: false,
|
|
629
|
+
default: "kling-v2.6",
|
|
630
|
+
hidden: true,
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
name: "llm_model",
|
|
634
|
+
type: "text",
|
|
635
|
+
label: "Llm Model",
|
|
636
|
+
description: "LLM for content generation",
|
|
637
|
+
required: false,
|
|
638
|
+
default: "claude-sonnet",
|
|
639
|
+
hidden: true,
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
name: "longerpost_api_url",
|
|
643
|
+
type: "text",
|
|
644
|
+
label: "Longerpost Api Url",
|
|
645
|
+
description: "LongerPost API URL",
|
|
646
|
+
required: false,
|
|
647
|
+
default: "http://localhost:3000",
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
name: "longerpost_api_key",
|
|
651
|
+
type: "text",
|
|
652
|
+
label: "Longerpost Api Key",
|
|
653
|
+
description: "LongerPost API key",
|
|
654
|
+
required: false,
|
|
655
|
+
default: null,
|
|
656
|
+
},
|
|
657
|
+
],
|
|
658
|
+
};
|
|
659
|
+
|
|
660
|
+
export const saa_s_video: WorkflowDefinition<
|
|
661
|
+
Types.SaaSVideoInput,
|
|
662
|
+
Types.SaaSVideoOutput
|
|
663
|
+
> = {
|
|
664
|
+
id: "saa_s_video",
|
|
665
|
+
name: "Saa S Video",
|
|
666
|
+
description: "SaaS Video Generator Workflow.",
|
|
667
|
+
workflowClass: "SaaSVideoWorkflow",
|
|
668
|
+
inputType: "SaaSVideoInput",
|
|
669
|
+
outputType: "SaaSVideoOutput",
|
|
670
|
+
fields: [
|
|
671
|
+
{
|
|
672
|
+
name: "secret_key",
|
|
673
|
+
type: "text",
|
|
674
|
+
label: "Secret Key",
|
|
675
|
+
description:
|
|
676
|
+
"Secret key for authentication (required when WORKFLOW_SECRET_ENABLED=True)",
|
|
677
|
+
required: false,
|
|
678
|
+
default: null,
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
name: "rewrite_enabled",
|
|
682
|
+
type: "checkbox",
|
|
683
|
+
label: "Rewrite Enabled",
|
|
684
|
+
description:
|
|
685
|
+
"Make your content appear as fresh, original uploads. Bypasses duplicate detection and AI content filters on social platforms.",
|
|
686
|
+
required: false,
|
|
687
|
+
default: false,
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
name: "rewrite_device",
|
|
691
|
+
type: "select",
|
|
692
|
+
label: "Rewrite Device",
|
|
693
|
+
description:
|
|
694
|
+
"Make media appear as if created on this device. Adds authenticity and helps bypass platform detection. Random device if not specified.",
|
|
695
|
+
required: false,
|
|
696
|
+
default: null,
|
|
697
|
+
options: [
|
|
698
|
+
{ value: "iPhone 17 Pro Max", label: "Iphone 17 Pro Max" },
|
|
699
|
+
{ value: "iPhone 17 Pro", label: "Iphone 17 Pro" },
|
|
700
|
+
{ value: "iPhone 17 Plus", label: "Iphone 17 Plus" },
|
|
701
|
+
{ value: "iPhone 17", label: "Iphone 17" },
|
|
702
|
+
{ value: "iPhone 16 Pro Max", label: "Iphone 16 Pro Max" },
|
|
703
|
+
{ value: "iPhone 16 Pro", label: "Iphone 16 Pro" },
|
|
704
|
+
{ value: "iPhone 16 Plus", label: "Iphone 16 Plus" },
|
|
705
|
+
{ value: "iPhone 16", label: "Iphone 16" },
|
|
706
|
+
{ value: "iPhone 15 Pro Max", label: "Iphone 15 Pro Max" },
|
|
707
|
+
{ value: "iPhone 15 Pro", label: "Iphone 15 Pro" },
|
|
708
|
+
{ value: "iPhone 15 Plus", label: "Iphone 15 Plus" },
|
|
709
|
+
{ value: "iPhone 15", label: "Iphone 15" },
|
|
710
|
+
{ value: "iPhone 14 Pro Max", label: "Iphone 14 Pro Max" },
|
|
711
|
+
{ value: "iPhone 14 Pro", label: "Iphone 14 Pro" },
|
|
712
|
+
{ value: "iPhone 14 Plus", label: "Iphone 14 Plus" },
|
|
713
|
+
{ value: "iPhone 14", label: "Iphone 14" },
|
|
714
|
+
{ value: "iPhone 13 Pro Max", label: "Iphone 13 Pro Max" },
|
|
715
|
+
{ value: "iPhone 13 Pro", label: "Iphone 13 Pro" },
|
|
716
|
+
{ value: "iPhone 13", label: "Iphone 13" },
|
|
717
|
+
{ value: "iPhone 13 mini", label: "Iphone 13 Mini" },
|
|
718
|
+
{
|
|
719
|
+
value: "Ray-Ban Meta Smart Glasses",
|
|
720
|
+
label: "Ray-Ban Meta Smart Glasses",
|
|
721
|
+
},
|
|
722
|
+
],
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
name: "topic",
|
|
726
|
+
type: "text",
|
|
727
|
+
label: "Topic",
|
|
728
|
+
description:
|
|
729
|
+
'SaaS company name or topic (e.g., "Stripe", "AI for Sales")',
|
|
730
|
+
required: true,
|
|
731
|
+
default: null,
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
name: "company_url",
|
|
735
|
+
type: "text",
|
|
736
|
+
label: "Company Url",
|
|
737
|
+
description: "Company website URL for research",
|
|
738
|
+
required: false,
|
|
739
|
+
default: null,
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
name: "target_duration_seconds",
|
|
743
|
+
type: "number",
|
|
744
|
+
label: "Target Duration Seconds",
|
|
745
|
+
description: "Target video duration (30-300 seconds)",
|
|
746
|
+
required: false,
|
|
747
|
+
default: 60,
|
|
748
|
+
validation: { min: 30, max: 300 },
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
name: "aspect_ratio",
|
|
752
|
+
type: "select",
|
|
753
|
+
label: "Aspect Ratio",
|
|
754
|
+
description:
|
|
755
|
+
"Video aspect ratio (16:9 for YouTube, 9:16 for TikTok/Reels)",
|
|
756
|
+
required: false,
|
|
757
|
+
default: "16:9",
|
|
758
|
+
options: [
|
|
759
|
+
{ value: "16:9", label: "16:9" },
|
|
760
|
+
{ value: "9:16", label: "9:16" },
|
|
761
|
+
{ value: "1:1", label: "1:1" },
|
|
762
|
+
],
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
name: "style",
|
|
766
|
+
type: "select",
|
|
767
|
+
label: "Style",
|
|
768
|
+
description: "Visual style for the video",
|
|
769
|
+
required: false,
|
|
770
|
+
default: "modern",
|
|
771
|
+
options: [
|
|
772
|
+
{ value: "modern", label: "Modern" },
|
|
773
|
+
{ value: "corporate", label: "Corporate" },
|
|
774
|
+
{ value: "playful", label: "Playful" },
|
|
775
|
+
{ value: "minimal", label: "Minimal" },
|
|
776
|
+
{ value: "bold", label: "Bold" },
|
|
777
|
+
],
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
name: "voice_id",
|
|
781
|
+
type: "text",
|
|
782
|
+
label: "Voice Id",
|
|
783
|
+
description: "ElevenLabs voice ID for narration",
|
|
784
|
+
required: false,
|
|
785
|
+
default: "EXAVITQu4vr4xnSDxMaL",
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
name: "generate_voiceover",
|
|
789
|
+
type: "checkbox",
|
|
790
|
+
label: "Generate Voiceover",
|
|
791
|
+
description: "Generate TTS voiceover",
|
|
792
|
+
required: false,
|
|
793
|
+
default: true,
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
name: "generate_images",
|
|
797
|
+
type: "checkbox",
|
|
798
|
+
label: "Generate Images",
|
|
799
|
+
description: "Generate AI images",
|
|
800
|
+
required: false,
|
|
801
|
+
default: true,
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
name: "include_stats",
|
|
805
|
+
type: "checkbox",
|
|
806
|
+
label: "Include Stats",
|
|
807
|
+
description: "Include statistics/metrics sections",
|
|
808
|
+
required: false,
|
|
809
|
+
default: true,
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
name: "include_testimonials",
|
|
813
|
+
type: "checkbox",
|
|
814
|
+
label: "Include Testimonials",
|
|
815
|
+
description: "Include customer quotes",
|
|
816
|
+
required: false,
|
|
817
|
+
default: false,
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
name: "llm_model",
|
|
821
|
+
type: "text",
|
|
822
|
+
label: "Llm Model",
|
|
823
|
+
description: "LLM model for content generation",
|
|
824
|
+
required: false,
|
|
825
|
+
default: "gpt-4o",
|
|
826
|
+
hidden: true,
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
name: "image_model",
|
|
830
|
+
type: "text",
|
|
831
|
+
label: "Image Model",
|
|
832
|
+
description: "Image generation model",
|
|
833
|
+
required: false,
|
|
834
|
+
default: "flux-pro",
|
|
835
|
+
hidden: true,
|
|
836
|
+
},
|
|
837
|
+
],
|
|
838
|
+
};
|
|
839
|
+
|
|
369
840
|
export const slideshow_to_video: WorkflowDefinition<
|
|
370
841
|
Types.SlideshowToVideoInput,
|
|
371
842
|
Types.SlideshowToVideoOutput
|
|
@@ -1667,6 +2138,8 @@ export const speaking_priest: WorkflowDefinition<
|
|
|
1667
2138
|
|
|
1668
2139
|
export const workflowRegistry = {
|
|
1669
2140
|
ruby,
|
|
2141
|
+
saa_s_loom,
|
|
2142
|
+
saa_s_video,
|
|
1670
2143
|
slideshow_to_video,
|
|
1671
2144
|
slideshows_pinterest,
|
|
1672
2145
|
speaking_doctor,
|
|
@@ -1697,6 +2170,8 @@ export function getWorkflowIds(): WorkflowId[] {
|
|
|
1697
2170
|
// Type mappings
|
|
1698
2171
|
export type WorkflowInputMap = {
|
|
1699
2172
|
ruby: Types.RubyInput;
|
|
2173
|
+
saa_s_loom: Types.SaaSLoomInput;
|
|
2174
|
+
saa_s_video: Types.SaaSVideoInput;
|
|
1700
2175
|
slideshow_to_video: Types.SlideshowToVideoInput;
|
|
1701
2176
|
slideshows_pinterest: Types.SlideshowsPinterestInput;
|
|
1702
2177
|
speaking_doctor: Types.SpeakingDoctorInput;
|
|
@@ -1706,6 +2181,8 @@ export type WorkflowInputMap = {
|
|
|
1706
2181
|
|
|
1707
2182
|
export type WorkflowOutputMap = {
|
|
1708
2183
|
ruby: Types.RubyOutput;
|
|
2184
|
+
saa_s_loom: Types.SaaSLoomOutput;
|
|
2185
|
+
saa_s_video: Types.SaaSVideoOutput;
|
|
1709
2186
|
slideshow_to_video: Types.SlideshowToVideoOutput;
|
|
1710
2187
|
slideshows_pinterest: Types.SlideshowsPinterestOutput;
|
|
1711
2188
|
speaking_doctor: Types.SpeakingDoctorOutput;
|