fal-endpoint-types 1.3.49 → 1.3.50

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.
@@ -2466,6 +2466,19 @@ export interface SharedType_f51 {
2466
2466
  prompt: string;
2467
2467
  }
2468
2468
 
2469
+ export interface SharedType_f4a {
2470
+ /**
2471
+ * @description The generated video.
2472
+ * @example {
2473
+ * "file_name": "output.mp4",
2474
+ * "file_size": 13096952,
2475
+ * "content_type": "video/mp4",
2476
+ * "url": "https://v3b.fal.media/files/b/0a8d04e2/idOb9V-Q9ujlggPSKqsfS_output.mp4"
2477
+ * }
2478
+ */
2479
+ video: Components.File;
2480
+ }
2481
+
2469
2482
  export interface SharedType_f38 {
2470
2483
  /**
2471
2484
  * @description The generated video file.
@@ -2479,6 +2492,19 @@ export interface SharedType_f38 {
2479
2492
  video: Components.File;
2480
2493
  }
2481
2494
 
2495
+ export interface SharedType_f29 {
2496
+ /**
2497
+ * @description The generated video
2498
+ * @example {
2499
+ * "file_name": "output.mp4",
2500
+ * "url": "https://fal.media/files/lion/_fVEU5nzHND_fHGQUhXEm_output.mp4",
2501
+ * "file_size": 5485412,
2502
+ * "content_type": "video/mp4"
2503
+ * }
2504
+ */
2505
+ video: Components.File;
2506
+ }
2507
+
2482
2508
  export interface SharedType_f11 {
2483
2509
  /**
2484
2510
  * Create Masks
@@ -2644,6 +2670,112 @@ export interface SharedType_eef {
2644
2670
  scores?: number[];
2645
2671
  }
2646
2672
 
2673
+ export interface SharedType_eea {
2674
+ /**
2675
+ * Animation Action Id
2676
+ * @description Animation preset ID from Meshy's library (500+ presets). Only used when enable_animation is true. See https://docs.meshy.ai/en/api/animation-library for available action IDs.
2677
+ * @default 1001
2678
+ * @example 1001
2679
+ */
2680
+ animation_action_id?: number;
2681
+ /**
2682
+ * Enable Animation
2683
+ * @description Apply an animation preset to the rigged model. Requires enable_rigging to be true.
2684
+ * @default false
2685
+ */
2686
+ enable_animation?: boolean;
2687
+ /**
2688
+ * Enable Pbr
2689
+ * @description Generate PBR Maps (metallic, roughness, normal) in addition to base color. Requires should_texture to be true.
2690
+ * @default false
2691
+ */
2692
+ enable_pbr?: boolean;
2693
+ /**
2694
+ * Enable Rigging
2695
+ * @description Automatically rig the generated model as a humanoid character. Includes basic walking and running animations. Best results with humanoid characters that have clearly defined limbs.
2696
+ * @default false
2697
+ */
2698
+ enable_rigging?: boolean;
2699
+ /**
2700
+ * Enable Safety Checker
2701
+ * @description If set to true, input data will be checked for safety before processing.
2702
+ * @default true
2703
+ */
2704
+ enable_safety_checker?: boolean;
2705
+ /**
2706
+ * Image Urls
2707
+ * @description 1 to 4 images for 3D model creation. All images should depict the same object from different angles. Supports .jpg, .jpeg, .png formats, and AVIF/HEIF which will be automatically converted. If more than 4 images are provided, only the first 4 will be used.
2708
+ * @example [
2709
+ * "https://v3b.fal.media/files/b/kangaroo/cPyD3-por0XI7jDa9F9vP_image%20(3).png",
2710
+ * "https://v3b.fal.media/files/b/elephant/9sd5JWAOJBcR7G3NMjPVs_image%20(2).png",
2711
+ * "https://v3b.fal.media/files/b/tiger/TP4sTzPATX_w1Tn4m6kYM_image%20(1).png"
2712
+ * ]
2713
+ */
2714
+ image_urls: string[];
2715
+ /**
2716
+ * Is A T Pose
2717
+ * @deprecated
2718
+ * @description Deprecated: use pose_mode instead. When true, generates a T-pose model.
2719
+ * @default false
2720
+ */
2721
+ is_a_t_pose?: boolean;
2722
+ /**
2723
+ * Pose Mode
2724
+ * @description Pose mode for the generated model. 'a-pose' generates an A-pose, 't-pose' generates a T-pose, empty string for no specific pose.
2725
+ * @default
2726
+ * @enum {string}
2727
+ */
2728
+ pose_mode?: 'a-pose' | 't-pose' | '';
2729
+ /**
2730
+ * Rigging Height Meters
2731
+ * @description Approximate height of the character in meters. Only used when enable_rigging is true.
2732
+ * @default 1.7
2733
+ */
2734
+ rigging_height_meters?: number;
2735
+ /**
2736
+ * Should Remesh
2737
+ * @description Whether to enable the remesh phase. When false, returns triangular mesh ignoring topology and target_polycount.
2738
+ * @default true
2739
+ */
2740
+ should_remesh?: boolean;
2741
+ /**
2742
+ * Should Texture
2743
+ * @description Whether to generate textures. False provides mesh without textures for 5 credits, True adds texture generation for additional 10 credits.
2744
+ * @default true
2745
+ */
2746
+ should_texture?: boolean;
2747
+ /**
2748
+ * Symmetry Mode
2749
+ * @description Controls symmetry behavior during model generation.
2750
+ * @default auto
2751
+ * @enum {string}
2752
+ */
2753
+ symmetry_mode?: 'off' | 'auto' | 'on';
2754
+ /**
2755
+ * Target Polycount
2756
+ * @description Target number of polygons in the generated model
2757
+ * @default 30000
2758
+ */
2759
+ target_polycount?: number;
2760
+ /**
2761
+ * Texture Image Url
2762
+ * @description 2D image to guide the texturing process. Requires should_texture to be true.
2763
+ */
2764
+ texture_image_url?: string;
2765
+ /**
2766
+ * Texture Prompt
2767
+ * @description Text prompt to guide the texturing process. Requires should_texture to be true.
2768
+ */
2769
+ texture_prompt?: string;
2770
+ /**
2771
+ * Topology
2772
+ * @description Specify the topology of the generated model. Quad for smooth surfaces, Triangle for detailed geometry.
2773
+ * @default triangle
2774
+ * @enum {string}
2775
+ */
2776
+ topology?: 'quad' | 'triangle';
2777
+ }
2778
+
2647
2779
  export interface SharedType_ee7 {
2648
2780
  /**
2649
2781
  * Has Nsfw Concepts
@@ -2729,6 +2861,90 @@ export interface SharedType_eb2 {
2729
2861
  video: Components.File;
2730
2862
  }
2731
2863
 
2864
+ export interface SharedType_ea7 {
2865
+ animation_fbx?: Components.File;
2866
+ animation_glb?: Components.File;
2867
+ basic_animations?: Components.BasicAnimations;
2868
+ /**
2869
+ * @description Generated 3D object in GLB format.
2870
+ * @example {
2871
+ * "file_name": "model.glb",
2872
+ * "file_size": 9242744,
2873
+ * "content_type": "model/gltf-binary",
2874
+ * "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
2875
+ * }
2876
+ */
2877
+ model_glb: Components.File;
2878
+ /**
2879
+ * @description URLs for different 3D model formats
2880
+ * @example {
2881
+ * "obj": {
2882
+ * "file_name": "model.obj",
2883
+ * "file_size": 2744413,
2884
+ * "content_type": "text/plain",
2885
+ * "url": "https://v3b.fal.media/files/b/koala/_Vg0d084-hd3EdpIJDf7U_model.obj"
2886
+ * },
2887
+ * "glb": {
2888
+ * "file_name": "model.glb",
2889
+ * "file_size": 9242744,
2890
+ * "content_type": "model/gltf-binary",
2891
+ * "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
2892
+ * },
2893
+ * "fbx": {
2894
+ * "file_name": "model.fbx",
2895
+ * "file_size": 5427052,
2896
+ * "content_type": "application/octet-stream",
2897
+ * "url": "https://v3b.fal.media/files/b/kangaroo/4Q2qdpTvfLVdzAKH1-72v_model.fbx"
2898
+ * },
2899
+ * "usdz": {
2900
+ * "file_name": "model.usdz",
2901
+ * "file_size": 9991969,
2902
+ * "content_type": "model/vnd.usdz+zip",
2903
+ * "url": "https://v3b.fal.media/files/b/lion/RgJG9EBQ_GAHMVWV3wCis_model.usdz"
2904
+ * }
2905
+ * }
2906
+ */
2907
+ model_urls: Components.ModelUrls;
2908
+ /**
2909
+ * Rig Task Id
2910
+ * @description Rigging task ID. Only present when enable_rigging is true.
2911
+ */
2912
+ rig_task_id?: string;
2913
+ rigged_character_fbx?: Components.File;
2914
+ rigged_character_glb?: Components.File;
2915
+ /**
2916
+ * Seed
2917
+ * @description The seed used for generation (if available)
2918
+ * @example 2009275957
2919
+ */
2920
+ seed?: number;
2921
+ /**
2922
+ * Texture Urls
2923
+ * @description Array of texture file objects, matching Meshy API structure
2924
+ * @example [
2925
+ * {
2926
+ * "base_color": {
2927
+ * "file_name": "texture_0.png",
2928
+ * "file_size": 4328755,
2929
+ * "content_type": "image/png",
2930
+ * "url": "https://v3b.fal.media/files/b/tiger/NkgxcEom_42V4_8UUXiRR_texture_0.png"
2931
+ * }
2932
+ * }
2933
+ * ]
2934
+ */
2935
+ texture_urls?: Components.TextureFiles[];
2936
+ /**
2937
+ * @description Preview thumbnail of the generated model
2938
+ * @example {
2939
+ * "file_name": "preview.png",
2940
+ * "file_size": 54279,
2941
+ * "content_type": "image/png",
2942
+ * "url": "https://v3b.fal.media/files/b/penguin/rfnS6ClmeEWgDXp_oD5tN_preview.png"
2943
+ * }
2944
+ */
2945
+ thumbnail?: Components.File;
2946
+ }
2947
+
2732
2948
  export interface SharedType_e9f {
2733
2949
  /**
2734
2950
  * @description The generated video
@@ -2739,6 +2955,19 @@ export interface SharedType_e9f {
2739
2955
  video: Components.File;
2740
2956
  }
2741
2957
 
2958
+ export interface SharedType_e90 {
2959
+ /**
2960
+ * @description The generated video
2961
+ * @example {
2962
+ * "file_name": "output.mp4",
2963
+ * "url": "https://fal.media/files/panda/5KmKS-mh1vO-htbqE5oex_output.mp4",
2964
+ * "file_size": 3890360,
2965
+ * "content_type": "video/mp4"
2966
+ * }
2967
+ */
2968
+ video: Components.File;
2969
+ }
2970
+
2742
2971
  export interface SharedType_e8e {
2743
2972
  /**
2744
2973
  * @description Generated FBX animation file.
@@ -2801,7 +3030,7 @@ export interface SharedType_e74 {
2801
3030
  sync_mode?: boolean;
2802
3031
  }
2803
3032
 
2804
- export interface SharedType_e73 {
3033
+ export interface SharedType_e731 {
2805
3034
  /**
2806
3035
  * Has Nsfw Concepts
2807
3036
  * @description Whether the generated images contain NSFW concepts.
@@ -2839,6 +3068,29 @@ export interface SharedType_e73 {
2839
3068
  };
2840
3069
  }
2841
3070
 
3071
+ export interface SharedType_e73 {
3072
+ /**
3073
+ * Actual Prompt
3074
+ * @description The actual prompt used if prompt rewriting was enabled
3075
+ * @example The white dragon warrior stands still in a grand cathedral-like structure, its glowing golden eyes fixed forward. The camera slowly moves closer, focusing on the warrior's armored chest and face. It then begins to circle around the warrior, capturing the intricate details of the white scale armor with gold accents. The warrior maintains a strong, determined posture. Ambient sounds and soft choral tones fill the background, enhancing the majestic atmosphere. The camera continues its slow circular motion, emphasizing the warrior's heroic presence before ending with a close-up of the face.
3076
+ */
3077
+ actual_prompt?: string;
3078
+ /**
3079
+ * Seed
3080
+ * @description The seed used for generation
3081
+ * @example 175932751
3082
+ */
3083
+ seed: number;
3084
+ /**
3085
+ * @description The generated video file
3086
+ * @example {
3087
+ * "content_type": "video/mp4",
3088
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/wan-25-i2v-output.mp4"
3089
+ * }
3090
+ */
3091
+ video: Components.VideoFile;
3092
+ }
3093
+
2842
3094
  export interface SharedType_e70 {
2843
3095
  /**
2844
3096
  * Aspect Ratio
@@ -2984,7 +3236,7 @@ export interface SharedType_e34 {
2984
3236
  sync_mode?: boolean;
2985
3237
  }
2986
3238
 
2987
- export interface SharedType_e181 {
3239
+ export interface SharedType_e18 {
2988
3240
  /**
2989
3241
  * Default Caption
2990
3242
  * @description Default caption to use when caption files are missing. If None, missing captions will cause an error.
@@ -3027,127 +3279,6 @@ export interface SharedType_e181 {
3027
3279
  steps?: number;
3028
3280
  }
3029
3281
 
3030
- export interface SharedType_e18 {
3031
- /**
3032
- * Animation Action Id
3033
- * @description Animation preset ID from Meshy's library (500+ presets). Only used when enable_animation is true. See https://docs.meshy.ai/en/api/animation-library for available action IDs.
3034
- * @default 1001
3035
- * @example 1001
3036
- */
3037
- animation_action_id?: number;
3038
- /**
3039
- * Art Style
3040
- * @description Desired art style of the object. Note: only 'realistic' is supported for Meshy-6 (latest model); 'sculpture' will be rejected with a 422. For older models, 'sculpture' is supported but enable_pbr should be false when using it.
3041
- * @default realistic
3042
- * @enum {string}
3043
- */
3044
- art_style?: 'realistic' | 'sculpture';
3045
- /**
3046
- * Enable Animation
3047
- * @description Apply an animation preset to the rigged model. Requires enable_rigging to be true.
3048
- * @default false
3049
- */
3050
- enable_animation?: boolean;
3051
- /**
3052
- * Enable Pbr
3053
- * @description Generate PBR Maps (metallic, roughness, normal) in addition to base color. Should be false for sculpture style.
3054
- * @default false
3055
- */
3056
- enable_pbr?: boolean;
3057
- /**
3058
- * Enable Prompt Expansion
3059
- * @description Whether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
3060
- * @default false
3061
- */
3062
- enable_prompt_expansion?: boolean;
3063
- /**
3064
- * Enable Rigging
3065
- * @description Automatically rig the generated model as a humanoid character. Includes basic walking and running animations. Best results with humanoid characters that have clearly defined limbs.
3066
- * @default false
3067
- */
3068
- enable_rigging?: boolean;
3069
- /**
3070
- * Enable Safety Checker
3071
- * @description If set to true, input data will be checked for safety before processing.
3072
- * @default true
3073
- */
3074
- enable_safety_checker?: boolean;
3075
- /**
3076
- * Is A T Pose
3077
- * @deprecated
3078
- * @description Deprecated: use pose_mode instead. When true, generates a T-pose model.
3079
- * @default false
3080
- */
3081
- is_a_t_pose?: boolean;
3082
- /**
3083
- * Mode
3084
- * @description Generation mode. 'preview' returns untextured geometry only, 'full' returns textured model (preview + refine).
3085
- * @default full
3086
- * @enum {string}
3087
- */
3088
- mode?: 'preview' | 'full';
3089
- /**
3090
- * Pose Mode
3091
- * @description Pose mode for the generated model. 'a-pose' generates an A-pose, 't-pose' generates a T-pose, empty string for no specific pose.
3092
- * @default
3093
- * @enum {string}
3094
- */
3095
- pose_mode?: 'a-pose' | 't-pose' | '';
3096
- /**
3097
- * Prompt
3098
- * @description Describe what kind of object the 3D model is. Maximum 600 characters.
3099
- * @example A rustic, antique wooden treasure chest with a curved, domed lid, constructed from weathered, dark brown planks exhibiting prominent wood grain and subtle distress. It's heavily reinforced with broad, dark grey, oxidized metal bands secured by numerous circular rivets. Ornate, dark iron decorative elements featuring swirling foliate patterns and dragon motifs adorn the corners and lid. A prominent, circular, intricately carved metal lock plate with a central keyhole dominates the front, flanked by two large, dark metallic pull rings.
3100
- */
3101
- prompt: string;
3102
- /**
3103
- * Rigging Height Meters
3104
- * @description Approximate height of the character in meters. Only used when enable_rigging is true.
3105
- * @default 1.7
3106
- */
3107
- rigging_height_meters?: number;
3108
- /**
3109
- * Seed
3110
- * @description Seed for reproducible results. Same prompt and seed usually generate the same result.
3111
- */
3112
- seed?: number;
3113
- /**
3114
- * Should Remesh
3115
- * @description Whether to enable the remesh phase. When false, returns unprocessed triangular mesh.
3116
- * @default true
3117
- */
3118
- should_remesh?: boolean;
3119
- /**
3120
- * Symmetry Mode
3121
- * @description Controls symmetry behavior during model generation.
3122
- * @default auto
3123
- * @enum {string}
3124
- */
3125
- symmetry_mode?: 'off' | 'auto' | 'on';
3126
- /**
3127
- * Target Polycount
3128
- * @description Target number of polygons in the generated model
3129
- * @default 30000
3130
- */
3131
- target_polycount?: number;
3132
- /**
3133
- * Texture Image Url
3134
- * @description 2D image to guide the texturing process (only used in 'full' mode)
3135
- */
3136
- texture_image_url?: string;
3137
- /**
3138
- * Texture Prompt
3139
- * @description Additional text prompt to guide the texturing process (only used in 'full' mode)
3140
- */
3141
- texture_prompt?: string;
3142
- /**
3143
- * Topology
3144
- * @description Specify the topology of the generated model. Quad for smooth surfaces, Triangle for detailed geometry.
3145
- * @default triangle
3146
- * @enum {string}
3147
- */
3148
- topology?: 'quad' | 'triangle';
3149
- }
3150
-
3151
3282
  export interface SharedType_e17 {
3152
3283
  /**
3153
3284
  * Prompt
@@ -3423,6 +3554,19 @@ export interface SharedType_df1 {
3423
3554
  textured_mesh?: boolean;
3424
3555
  }
3425
3556
 
3557
+ export interface SharedType_dec {
3558
+ /**
3559
+ * @description The generated video
3560
+ * @example {
3561
+ * "file_name": "out.mp4",
3562
+ * "file_size": 8431922,
3563
+ * "content_type": "video/mp4",
3564
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/pro-i2v/out.mp4"
3565
+ * }
3566
+ */
3567
+ video: Components.File;
3568
+ }
3569
+
3426
3570
  export interface SharedType_de6 {
3427
3571
  /**
3428
3572
  * Images
@@ -3754,19 +3898,6 @@ export interface SharedType_d72 {
3754
3898
  };
3755
3899
  }
3756
3900
 
3757
- export interface SharedType_d6f {
3758
- /**
3759
- * @description The generated video
3760
- * @example {
3761
- * "file_size": 2995630,
3762
- * "url": "https://fal.media/files/zebra/11UahivZ3XZ1tRlcEcgPq_output.mp4",
3763
- * "file_name": "output.mp4",
3764
- * "content_type": "video/mp4"
3765
- * }
3766
- */
3767
- video: Components.File;
3768
- }
3769
-
3770
3901
  export interface SharedType_d4c {
3771
3902
  /**
3772
3903
  * Images
@@ -3890,101 +4021,6 @@ export interface SharedType_d09 {
3890
4021
  image: Components.File;
3891
4022
  }
3892
4023
 
3893
- export interface SharedType_d03 {
3894
- /**
3895
- * Actual Prompt
3896
- * @description The actual prompt used if prompt expansion was enabled
3897
- */
3898
- actual_prompt?: string;
3899
- animation_fbx?: Components.File;
3900
- animation_glb?: Components.File;
3901
- basic_animations?: Components.BasicAnimations;
3902
- /**
3903
- * @description Generated 3D object in GLB format.
3904
- * @example {
3905
- * "file_name": "model.glb",
3906
- * "content_type": "model/gltf-binary",
3907
- * "file_size": 9314028,
3908
- * "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
3909
- * }
3910
- */
3911
- model_glb: Components.File;
3912
- /**
3913
- * @description URLs for different 3D model formats
3914
- * @example {
3915
- * "glb": {
3916
- * "file_name": "model.glb",
3917
- * "content_type": "model/gltf-binary",
3918
- * "file_size": 9314028,
3919
- * "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
3920
- * },
3921
- * "usdz": {
3922
- * "file_name": "model.usdz",
3923
- * "content_type": "model/vnd.usdz+zip",
3924
- * "file_size": 9834246,
3925
- * "url": "https://v3b.fal.media/files/b/panda/XcC-mIJywUvH7coyrzENU_model.usdz"
3926
- * },
3927
- * "obj": {
3928
- * "file_name": "model.obj",
3929
- * "content_type": "text/plain",
3930
- * "file_size": 2755145,
3931
- * "url": "https://v3b.fal.media/files/b/monkey/cCNMHqUbKSNtDN1iGmiYm_model.obj"
3932
- * },
3933
- * "fbx": {
3934
- * "file_name": "model.fbx",
3935
- * "content_type": "application/octet-stream",
3936
- * "file_size": 5444380,
3937
- * "url": "https://v3b.fal.media/files/b/kangaroo/7nUUw5dHN9a0DKlOpAKbP_model.fbx"
3938
- * }
3939
- * }
3940
- */
3941
- model_urls: Components.ModelUrls;
3942
- /**
3943
- * Prompt
3944
- * @description The text prompt used for generation
3945
- * @example A rustic, antique wooden treasure chest with a curved, domed lid, constructed from weathered, dark brown planks exhibiting prominent wood grain and subtle distress. It's heavily reinforced with broad, dark grey, oxidized metal bands secured by numerous circular rivets. Ornate, dark iron decorative elements featuring swirling foliate patterns and dragon motifs adorn the corners and lid. A prominent, circular, intricately carved metal lock plate with a central keyhole dominates the front, flanked by two large, dark metallic pull rings.
3946
- */
3947
- prompt: string;
3948
- /**
3949
- * Rig Task Id
3950
- * @description Rigging task ID. Only present when enable_rigging is true.
3951
- */
3952
- rig_task_id?: string;
3953
- rigged_character_fbx?: Components.File;
3954
- rigged_character_glb?: Components.File;
3955
- /**
3956
- * Seed
3957
- * @description The seed used for generation
3958
- * @example 4002110719
3959
- */
3960
- seed?: number;
3961
- /**
3962
- * Texture Urls
3963
- * @description Array of texture file objects
3964
- * @example [
3965
- * {
3966
- * "base_color": {
3967
- * "file_name": "texture_0.png",
3968
- * "content_type": "image/png",
3969
- * "file_size": 4254502,
3970
- * "url": "https://v3b.fal.media/files/b/panda/DoPKAuZY0tTjnr6C9ee-Q_texture_0.png"
3971
- * }
3972
- * }
3973
- * ]
3974
- */
3975
- texture_urls?: Components.TextureFiles[];
3976
- /**
3977
- * @description Preview thumbnail of the generated model
3978
- * @example {
3979
- * "file_name": "preview.png",
3980
- * "content_type": "image/png",
3981
- * "file_size": 173792,
3982
- * "url": "https://v3b.fal.media/files/b/koala/6LJISu4ilkZXcdOETwl_d_preview.png"
3983
- * }
3984
- */
3985
- thumbnail?: Components.File;
3986
- }
3987
-
3988
4024
  export interface SharedType_cfd {
3989
4025
  /**
3990
4026
  * Aspect Ratio
@@ -4035,6 +4071,19 @@ export interface SharedType_cfd {
4035
4071
  sync_mode?: boolean;
4036
4072
  }
4037
4073
 
4074
+ export interface SharedType_cf0 {
4075
+ /**
4076
+ * @description The extended video
4077
+ * @example {
4078
+ * "file_name": "output.mp4",
4079
+ * "url": "https://v3.fal.media/files/rabbit/88-jI3VWXU4Q8kSNrWo3c_output.mp4",
4080
+ * "file_size": 1163040,
4081
+ * "content_type": "video/mp4"
4082
+ * }
4083
+ */
4084
+ video: Components.File;
4085
+ }
4086
+
4038
4087
  export interface SharedType_ceb {
4039
4088
  /**
4040
4089
  * Acceleration
@@ -4580,19 +4629,6 @@ export interface SharedType_c97 {
4580
4629
  video: Components.File;
4581
4630
  }
4582
4631
 
4583
- export interface SharedType_c91 {
4584
- /**
4585
- * @description The generated video.
4586
- * @example {
4587
- * "file_name": "output.mp4",
4588
- * "content_type": "video/mp4",
4589
- * "url": "https://v3b.fal.media/files/b/0a8d04e2/idOb9V-Q9ujlggPSKqsfS_output.mp4",
4590
- * "file_size": 13096952
4591
- * }
4592
- */
4593
- video: Components.File;
4594
- }
4595
-
4596
4632
  export interface SharedType_c8e1 {
4597
4633
  config_file: Components.File;
4598
4634
  lora_file: Components.File;
@@ -4922,6 +4958,19 @@ export interface SharedType_c3a {
4922
4958
  speakers: Components.VibeVoiceSpeaker[];
4923
4959
  }
4924
4960
 
4961
+ export interface SharedType_bfb {
4962
+ /**
4963
+ * @description The generated video
4964
+ * @example {
4965
+ * "file_name": "output.mp4",
4966
+ * "url": "https://fal.media/files/koala/HEWK7BBwqWrz7F5nAZzp7_output.mp4",
4967
+ * "file_size": 6420765,
4968
+ * "content_type": "video/mp4"
4969
+ * }
4970
+ */
4971
+ video: Components.File;
4972
+ }
4973
+
4925
4974
  export interface SharedType_bdf {
4926
4975
  /**
4927
4976
  * @description The generated video
@@ -4977,6 +5026,19 @@ export interface SharedType_bda {
4977
5026
  video_url: string;
4978
5027
  }
4979
5028
 
5029
+ export interface SharedType_bc6 {
5030
+ /**
5031
+ * @description The generated video
5032
+ * @example {
5033
+ * "file_name": "output.mp4",
5034
+ * "file_size": 35299865,
5035
+ * "content_type": "video/mp4",
5036
+ * "url": "https://v3b.fal.media/files/b/0a875336/8p3rFiXtx3fE2TLoh59KP_output.mp4"
5037
+ * }
5038
+ */
5039
+ video: Components.File;
5040
+ }
5041
+
4980
5042
  export interface SharedType_bb31 {
4981
5043
  /**
4982
5044
  * Aspect Ratio
@@ -5307,19 +5369,6 @@ export interface SharedType_b63 {
5307
5369
  images: Components.Image[];
5308
5370
  }
5309
5371
 
5310
- export interface SharedType_b5a {
5311
- /**
5312
- * @description The generated video
5313
- * @example {
5314
- * "file_size": 6420765,
5315
- * "url": "https://fal.media/files/koala/HEWK7BBwqWrz7F5nAZzp7_output.mp4",
5316
- * "file_name": "output.mp4",
5317
- * "content_type": "video/mp4"
5318
- * }
5319
- */
5320
- video: Components.File;
5321
- }
5322
-
5323
5372
  export interface SharedType_b59 {
5324
5373
  /**
5325
5374
  * Aspect Ratio
@@ -5719,19 +5768,6 @@ export interface SharedType_ada {
5719
5768
  audio: Components.File;
5720
5769
  }
5721
5770
 
5722
- export interface SharedType_acf {
5723
- /**
5724
- * @description The generated video.
5725
- * @example {
5726
- * "file_name": "output.mp4",
5727
- * "content_type": "video/mp4",
5728
- * "url": "https://v3b.fal.media/files/b/panda/oVdiICFXY03Vbam-08Aj8_output.mp4",
5729
- * "file_size": 47359974
5730
- * }
5731
- */
5732
- video: Components.File;
5733
- }
5734
-
5735
5771
  export interface SharedType_ab0 {
5736
5772
  /**
5737
5773
  * Aspect Ratio
@@ -5760,6 +5796,90 @@ export interface SharedType_ab0 {
5760
5796
  strength: number;
5761
5797
  }
5762
5798
 
5799
+ export interface SharedType_aa9 {
5800
+ animation_fbx?: Components.File;
5801
+ animation_glb?: Components.File;
5802
+ basic_animations?: Components.BasicAnimations;
5803
+ /**
5804
+ * @description Generated 3D object in GLB format.
5805
+ * @example {
5806
+ * "file_name": "model.glb",
5807
+ * "file_size": 7875308,
5808
+ * "content_type": "model/gltf-binary",
5809
+ * "url": "https://v3b.fal.media/files/b/tiger/62QMEQqZ3pjUds4DfuVtX_model.glb"
5810
+ * }
5811
+ */
5812
+ model_glb: Components.File;
5813
+ /**
5814
+ * @description URLs for different 3D model formats
5815
+ * @example {
5816
+ * "obj": {
5817
+ * "file_name": "model.obj",
5818
+ * "file_size": 2761323,
5819
+ * "content_type": "text/plain",
5820
+ * "url": "https://v3b.fal.media/files/b/koala/xmOnmSeePfuROe3pqHpf0_model.obj"
5821
+ * },
5822
+ * "glb": {
5823
+ * "file_name": "model.glb",
5824
+ * "file_size": 7875308,
5825
+ * "content_type": "model/gltf-binary",
5826
+ * "url": "https://v3b.fal.media/files/b/tiger/62QMEQqZ3pjUds4DfuVtX_model.glb"
5827
+ * },
5828
+ * "fbx": {
5829
+ * "file_name": "model.fbx",
5830
+ * "file_size": 5574540,
5831
+ * "content_type": "application/octet-stream",
5832
+ * "url": "https://v3b.fal.media/files/b/koala/R7vPBgkecVvcnbNpRAy9x_model.fbx"
5833
+ * },
5834
+ * "usdz": {
5835
+ * "file_name": "model.usdz",
5836
+ * "file_size": 8631497,
5837
+ * "content_type": "model/vnd.usdz+zip",
5838
+ * "url": "https://v3b.fal.media/files/b/panda/fSGLGmtgzUjhepklN06Zw_model.usdz"
5839
+ * }
5840
+ * }
5841
+ */
5842
+ model_urls: Components.ModelUrls;
5843
+ /**
5844
+ * Rig Task Id
5845
+ * @description Rigging task ID. Only present when enable_rigging is true.
5846
+ */
5847
+ rig_task_id?: string;
5848
+ rigged_character_fbx?: Components.File;
5849
+ rigged_character_glb?: Components.File;
5850
+ /**
5851
+ * Seed
5852
+ * @description The seed used for generation (if available)
5853
+ * @example 783032043
5854
+ */
5855
+ seed?: number;
5856
+ /**
5857
+ * Texture Urls
5858
+ * @description Array of texture file objects
5859
+ * @example [
5860
+ * {
5861
+ * "base_color": {
5862
+ * "file_name": "texture_0.png",
5863
+ * "file_size": 4464364,
5864
+ * "content_type": "image/png",
5865
+ * "url": "https://v3b.fal.media/files/b/panda/OVrRor7IgeNK9w2i5-NDf_texture_0.png"
5866
+ * }
5867
+ * }
5868
+ * ]
5869
+ */
5870
+ texture_urls?: Components.TextureFiles[];
5871
+ /**
5872
+ * @description Preview thumbnail of the generated model
5873
+ * @example {
5874
+ * "file_name": "preview.png",
5875
+ * "file_size": 70958,
5876
+ * "content_type": "image/png",
5877
+ * "url": "https://v3b.fal.media/files/b/koala/2NI_hEd7jXzS5rLQhnRga_preview.png"
5878
+ * }
5879
+ */
5880
+ thumbnail?: Components.File;
5881
+ }
5882
+
5763
5883
  export interface SharedType_a9b {
5764
5884
  /**
5765
5885
  * Aspect Ratio
@@ -5981,19 +6101,6 @@ export interface SharedType_a53 {
5981
6101
  video: Components.File;
5982
6102
  }
5983
6103
 
5984
- export interface SharedType_a42 {
5985
- /**
5986
- * @description The generated video.
5987
- * @example {
5988
- * "file_name": "output.mp4",
5989
- * "content_type": "video/mp4",
5990
- * "url": "https://v3b.fal.media/files/b/0a86603b/YAlbB2535l07BTy1wpDeI_output.mp4",
5991
- * "file_size": 7533071
5992
- * }
5993
- */
5994
- video: Components.File;
5995
- }
5996
-
5997
6104
  export interface SharedType_a3d {
5998
6105
  /**
5999
6106
  * Default Caption
@@ -6135,19 +6242,6 @@ export interface SharedType_a31 {
6135
6242
  voice?: string;
6136
6243
  }
6137
6244
 
6138
- export interface SharedType_a2f {
6139
- /**
6140
- * @description The generated video
6141
- * @example {
6142
- * "file_name": "output.mp4",
6143
- * "content_type": "video/mp4",
6144
- * "url": "https://v3b.fal.media/files/b/0a875336/8p3rFiXtx3fE2TLoh59KP_output.mp4",
6145
- * "file_size": 35299865
6146
- * }
6147
- */
6148
- video: Components.File;
6149
- }
6150
-
6151
6245
  export interface SharedType_a1f {
6152
6246
  /**
6153
6247
  * Has Nsfw Concepts
@@ -6511,7 +6605,7 @@ export interface SharedType_9ce {
6511
6605
  seed: number;
6512
6606
  }
6513
6607
 
6514
- export interface SharedType_9cd {
6608
+ export interface SharedType_9cd1 {
6515
6609
  /**
6516
6610
  * @description The generated video.
6517
6611
  * @example {
@@ -6521,6 +6615,19 @@ export interface SharedType_9cd {
6521
6615
  video: Components.File;
6522
6616
  }
6523
6617
 
6618
+ export interface SharedType_9cd {
6619
+ /**
6620
+ * @description The generated video
6621
+ * @example {
6622
+ * "file_name": "output.mp4",
6623
+ * "url": "https://fal.media/files/zebra/11UahivZ3XZ1tRlcEcgPq_output.mp4",
6624
+ * "file_size": 2995630,
6625
+ * "content_type": "video/mp4"
6626
+ * }
6627
+ */
6628
+ video: Components.File;
6629
+ }
6630
+
6524
6631
  export interface SharedType_9a6 {
6525
6632
  config_file: Components.File;
6526
6633
  diffusers_lora_file: Components.File;
@@ -6576,19 +6683,6 @@ export interface SharedType_98a {
6576
6683
  };
6577
6684
  }
6578
6685
 
6579
- export interface SharedType_987 {
6580
- /**
6581
- * @description The generated video
6582
- * @example {
6583
- * "file_size": 4060052,
6584
- * "url": "https://fal.media/files/tiger/8V9H8RLyFiWjmJDOxGbcG_output.mp4",
6585
- * "file_name": "output.mp4",
6586
- * "content_type": "video/mp4"
6587
- * }
6588
- */
6589
- video: Components.File;
6590
- }
6591
-
6592
6686
  export interface SharedType_981 {
6593
6687
  audio_setting?: Components.AudioSetting;
6594
6688
  /**
@@ -6728,6 +6822,120 @@ export interface SharedType_94e {
6728
6822
  video: Components.File;
6729
6823
  }
6730
6824
 
6825
+ export interface SharedType_93f {
6826
+ /**
6827
+ * Animation Action Id
6828
+ * @description Animation preset ID from Meshy's library (500+ presets). Only used when enable_animation is true. See https://docs.meshy.ai/en/api/animation-library for available action IDs.
6829
+ * @default 1001
6830
+ * @example 1001
6831
+ */
6832
+ animation_action_id?: number;
6833
+ /**
6834
+ * Enable Animation
6835
+ * @description Apply an animation preset to the rigged model. Requires enable_rigging to be true.
6836
+ * @default false
6837
+ */
6838
+ enable_animation?: boolean;
6839
+ /**
6840
+ * Enable Pbr
6841
+ * @description Generate PBR Maps (metallic, roughness, normal) in addition to base color.
6842
+ * @default false
6843
+ */
6844
+ enable_pbr?: boolean;
6845
+ /**
6846
+ * Enable Prompt Expansion
6847
+ * @description Whether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
6848
+ * @default false
6849
+ */
6850
+ enable_prompt_expansion?: boolean;
6851
+ /**
6852
+ * Enable Rigging
6853
+ * @description Automatically rig the generated model as a humanoid character. Includes basic walking and running animations. Best results with humanoid characters that have clearly defined limbs.
6854
+ * @default false
6855
+ */
6856
+ enable_rigging?: boolean;
6857
+ /**
6858
+ * Enable Safety Checker
6859
+ * @description If set to true, input data will be checked for safety before processing.
6860
+ * @default true
6861
+ */
6862
+ enable_safety_checker?: boolean;
6863
+ /**
6864
+ * Is A T Pose
6865
+ * @deprecated
6866
+ * @description Deprecated: use pose_mode instead. When true, generates a T-pose model.
6867
+ * @default false
6868
+ */
6869
+ is_a_t_pose?: boolean;
6870
+ /**
6871
+ * Mode
6872
+ * @description Generation mode. 'preview' returns untextured geometry only, 'full' returns textured model (preview + refine).
6873
+ * @default full
6874
+ * @enum {string}
6875
+ */
6876
+ mode?: 'preview' | 'full';
6877
+ /**
6878
+ * Pose Mode
6879
+ * @description Pose mode for the generated model. 'a-pose' generates an A-pose, 't-pose' generates a T-pose, empty string for no specific pose.
6880
+ * @default
6881
+ * @enum {string}
6882
+ */
6883
+ pose_mode?: 'a-pose' | 't-pose' | '';
6884
+ /**
6885
+ * Prompt
6886
+ * @description Describe what kind of object the 3D model is. Maximum 600 characters.
6887
+ * @example A rustic, antique wooden treasure chest with a curved, domed lid, constructed from weathered, dark brown planks exhibiting prominent wood grain and subtle distress. It's heavily reinforced with broad, dark grey, oxidized metal bands secured by numerous circular rivets. Ornate, dark iron decorative elements featuring swirling foliate patterns and dragon motifs adorn the corners and lid. A prominent, circular, intricately carved metal lock plate with a central keyhole dominates the front, flanked by two large, dark metallic pull rings.
6888
+ */
6889
+ prompt: string;
6890
+ /**
6891
+ * Rigging Height Meters
6892
+ * @description Approximate height of the character in meters. Only used when enable_rigging is true.
6893
+ * @default 1.7
6894
+ */
6895
+ rigging_height_meters?: number;
6896
+ /**
6897
+ * Seed
6898
+ * @description Seed for reproducible results. Same prompt and seed usually generate the same result.
6899
+ */
6900
+ seed?: number;
6901
+ /**
6902
+ * Should Remesh
6903
+ * @description Whether to enable the remesh phase. When false, returns unprocessed triangular mesh.
6904
+ * @default true
6905
+ */
6906
+ should_remesh?: boolean;
6907
+ /**
6908
+ * Symmetry Mode
6909
+ * @description Controls symmetry behavior during model generation.
6910
+ * @default auto
6911
+ * @enum {string}
6912
+ */
6913
+ symmetry_mode?: 'off' | 'auto' | 'on';
6914
+ /**
6915
+ * Target Polycount
6916
+ * @description Target number of polygons in the generated model
6917
+ * @default 30000
6918
+ */
6919
+ target_polycount?: number;
6920
+ /**
6921
+ * Texture Image Url
6922
+ * @description 2D image to guide the texturing process (only used in 'full' mode)
6923
+ */
6924
+ texture_image_url?: string;
6925
+ /**
6926
+ * Texture Prompt
6927
+ * @description Additional text prompt to guide the texturing process (only used in 'full' mode)
6928
+ */
6929
+ texture_prompt?: string;
6930
+ /**
6931
+ * Topology
6932
+ * @description Specify the topology of the generated model. Quad for smooth surfaces, Triangle for detailed geometry.
6933
+ * @default triangle
6934
+ * @enum {string}
6935
+ */
6936
+ topology?: 'quad' | 'triangle';
6937
+ }
6938
+
6731
6939
  export interface SharedType_938 {
6732
6940
  /**
6733
6941
  * Has Nsfw Concepts
@@ -7255,19 +7463,6 @@ export interface SharedType_905 {
7255
7463
  seed?: number;
7256
7464
  }
7257
7465
 
7258
- export interface SharedType_8ed1 {
7259
- /**
7260
- * @description The generated video
7261
- * @example {
7262
- * "file_size": 5485412,
7263
- * "url": "https://storage.googleapis.com/falserverless/model_tests/video_models/output-4.mp4",
7264
- * "file_name": "output.mp4",
7265
- * "content_type": "video/mp4"
7266
- * }
7267
- */
7268
- video: Components.File;
7269
- }
7270
-
7271
7466
  export interface SharedType_8ed {
7272
7467
  /**
7273
7468
  * Aspect Ratio
@@ -7353,6 +7548,81 @@ export interface SharedType_8eb {
7353
7548
  };
7354
7549
  }
7355
7550
 
7551
+ export interface SharedType_8e1 {
7552
+ /**
7553
+ * Cfg Scale
7554
+ * @description The CFG (Classifier Free Guidance) scale is a measure of how close you want
7555
+ * the model to stick to your prompt.
7556
+ * @default 0.5
7557
+ */
7558
+ cfg_scale?: number;
7559
+ /**
7560
+ * Duration
7561
+ * @description The duration of the generated video in seconds
7562
+ * @default 5
7563
+ * @example 12
7564
+ * @enum {string}
7565
+ */
7566
+ duration?: '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15';
7567
+ /**
7568
+ * Elements
7569
+ * @description Elements (characters/objects) to include in the video. Each example can either be an image set (frontal + reference images) or a video. Reference in prompt as @Element1, @Element2, etc.
7570
+ * @example [
7571
+ * {
7572
+ * "reference_image_urls": [
7573
+ * "https://v3b.fal.media/files/b/0a8cfd62/psPCmzrD1y9vDgdyNfKAL_glasses_back.png"
7574
+ * ],
7575
+ * "frontal_image_url": "https://v3b.fal.media/files/b/0a8cfd5f/-kZL-ha3Iuelku5IHXC-A_glasses.png"
7576
+ * },
7577
+ * {
7578
+ * "video_url": "https://v3b.fal.media/files/b/0a8cfd66/b03SOiQvKLlFx_jqdNZ9z_child_video.mp4"
7579
+ * }
7580
+ * ]
7581
+ */
7582
+ elements?: Components.KlingV3ComboElementInput[];
7583
+ /**
7584
+ * End Image Url
7585
+ * @description URL of the image to be used for the end of the video
7586
+ */
7587
+ end_image_url?: string;
7588
+ /**
7589
+ * Generate Audio
7590
+ * @description Whether to generate native audio for the video. Supports Chinese and English voice output. Other languages are automatically translated to English. For English speech, use lowercase letters; for acronyms or proper nouns, use uppercase.
7591
+ * @default true
7592
+ */
7593
+ generate_audio?: boolean;
7594
+ /**
7595
+ * Multi Prompt
7596
+ * @description List of prompts for multi-shot video generation. If provided, divides the video into multiple shots.
7597
+ * @example null
7598
+ */
7599
+ multi_prompt?: Components.KlingV3MultiPromptElement[];
7600
+ /**
7601
+ * Negative Prompt
7602
+ * @default blur, distort, and low quality
7603
+ */
7604
+ negative_prompt?: string;
7605
+ /**
7606
+ * Prompt
7607
+ * @description Text prompt for video generation. Either prompt or multi_prompt must be provided, but not both.
7608
+ * @example The craftsman slowly examines the bowl, turning it gently in his weathered hands. His eyes reflect years of wisdom. Subtle smile forms on his face. Dust particles drift in warm light. Breathing motion, blinking eyes.
7609
+ */
7610
+ prompt?: string;
7611
+ /**
7612
+ * Shot Type
7613
+ * @description The type of multi-shot video generation. Required when multi_prompt is provided.
7614
+ * @default customize
7615
+ * @constant
7616
+ */
7617
+ shot_type?: 'customize';
7618
+ /**
7619
+ * Start Image Url
7620
+ * @description URL of the image to be used for the video
7621
+ * @example https://storage.googleapis.com/falserverless/example_inputs/kling-v3/pro-i2v/start_image.png
7622
+ */
7623
+ start_image_url: string;
7624
+ }
7625
+
7356
7626
  export interface SharedType_8d5 {
7357
7627
  /**
7358
7628
  * Image Guidance Scale
@@ -7455,29 +7725,6 @@ export interface SharedType_8c2 {
7455
7725
  video: Components.File;
7456
7726
  }
7457
7727
 
7458
- export interface SharedType_8bc {
7459
- /**
7460
- * Actual Prompt
7461
- * @description The actual prompt used if prompt rewriting was enabled
7462
- * @example The white dragon warrior stands still in a grand cathedral-like structure, its glowing golden eyes fixed forward. The camera slowly moves closer, focusing on the warrior's armored chest and face. It then begins to circle around the warrior, capturing the intricate details of the white scale armor with gold accents. The warrior maintains a strong, determined posture. Ambient sounds and soft choral tones fill the background, enhancing the majestic atmosphere. The camera continues its slow circular motion, emphasizing the warrior's heroic presence before ending with a close-up of the face.
7463
- */
7464
- actual_prompt?: string;
7465
- /**
7466
- * Seed
7467
- * @description The seed used for generation
7468
- * @example 175932751
7469
- */
7470
- seed: number;
7471
- /**
7472
- * @description The generated video file
7473
- * @example {
7474
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/wan-25-i2v-output.mp4",
7475
- * "content_type": "video/mp4"
7476
- * }
7477
- */
7478
- video: Components.VideoFile;
7479
- }
7480
-
7481
7728
  export interface SharedType_8b9 {
7482
7729
  /**
7483
7730
  * Prompt
@@ -7542,7 +7789,7 @@ export interface SharedType_896 {
7542
7789
  style?: 'anime' | '3d_animation' | 'clay' | 'comic' | 'cyberpunk';
7543
7790
  }
7544
7791
 
7545
- export interface SharedType_893 {
7792
+ export interface SharedType_8931 {
7546
7793
  /**
7547
7794
  * Has Nsfw Concepts
7548
7795
  * @description Whether the generated images contain NSFW concepts.
@@ -7580,6 +7827,19 @@ export interface SharedType_893 {
7580
7827
  };
7581
7828
  }
7582
7829
 
7830
+ export interface SharedType_893 {
7831
+ /**
7832
+ * @description The generated video
7833
+ * @example {
7834
+ * "file_name": "output.mp4",
7835
+ * "file_size": 8062911,
7836
+ * "content_type": "video/mp4",
7837
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/pro-t2v/out.mp4"
7838
+ * }
7839
+ */
7840
+ video: Components.File;
7841
+ }
7842
+
7583
7843
  export interface SharedType_870 {
7584
7844
  /**
7585
7845
  * @description The generated audio file.
@@ -8700,19 +8960,6 @@ export interface SharedType_79c {
8700
8960
  seed?: number;
8701
8961
  }
8702
8962
 
8703
- export interface SharedType_78e {
8704
- /**
8705
- * @description The generated video
8706
- * @example {
8707
- * "file_size": 3890360,
8708
- * "url": "https://storage.googleapis.com/falserverless/model_tests/video_models/output-2.mp4",
8709
- * "file_name": "output.mp4",
8710
- * "content_type": "video/mp4"
8711
- * }
8712
- */
8713
- video: Components.File;
8714
- }
8715
-
8716
8963
  export interface SharedType_778 {
8717
8964
  /**
8718
8965
  * Character Orientation
@@ -8951,19 +9198,6 @@ export interface SharedType_6cd {
8951
9198
  sync_mode?: boolean;
8952
9199
  }
8953
9200
 
8954
- export interface SharedType_6c1 {
8955
- /**
8956
- * @description The generated video.
8957
- * @example {
8958
- * "file_name": "output.mp4",
8959
- * "content_type": "video/mp4",
8960
- * "url": "https://v3b.fal.media/files/b/kangaroo/3n_Lpxm_SjK5NYyBobRdS_output.mp4",
8961
- * "file_size": 28472159
8962
- * }
8963
- */
8964
- video: Components.File;
8965
- }
8966
-
8967
9201
  export interface SharedType_6bf {
8968
9202
  /**
8969
9203
  * Has Nsfw Concepts
@@ -9266,6 +9500,19 @@ export interface SharedType_680 {
9266
9500
  video: Components.File;
9267
9501
  }
9268
9502
 
9503
+ export interface SharedType_67c {
9504
+ /**
9505
+ * @description The generated video
9506
+ * @example {
9507
+ * "file_name": "output.mp4",
9508
+ * "url": "https://storage.googleapis.com/falserverless/model_tests/video_models/output-4.mp4",
9509
+ * "file_size": 5485412,
9510
+ * "content_type": "video/mp4"
9511
+ * }
9512
+ */
9513
+ video: Components.File;
9514
+ }
9515
+
9269
9516
  export interface SharedType_678 {
9270
9517
  image: Components.Image;
9271
9518
  /**
@@ -9648,6 +9895,32 @@ export interface SharedType_5f3 {
9648
9895
  sync_mode?: boolean;
9649
9896
  }
9650
9897
 
9898
+ export interface SharedType_5e3 {
9899
+ /**
9900
+ * @description The generated video
9901
+ * @example {
9902
+ * "file_name": "output.mp4",
9903
+ * "url": "https://fal.media/files/koala/awGY1lJd7lVsqQeSqjWqn_output.mp4",
9904
+ * "file_size": 3232402,
9905
+ * "content_type": "video/mp4"
9906
+ * }
9907
+ */
9908
+ video: Components.File;
9909
+ }
9910
+
9911
+ export interface SharedType_5db {
9912
+ /**
9913
+ * @description The generated video
9914
+ * @example {
9915
+ * "file_name": "output.mp4",
9916
+ * "url": "https://fal.media/files/tiger/8V9H8RLyFiWjmJDOxGbcG_output.mp4",
9917
+ * "file_size": 4060052,
9918
+ * "content_type": "video/mp4"
9919
+ * }
9920
+ */
9921
+ video: Components.File;
9922
+ }
9923
+
9651
9924
  export interface SharedType_5d8 {
9652
9925
  /**
9653
9926
  * Enable Prompt Expansion
@@ -9709,14 +9982,40 @@ export interface SharedType_5d8 {
9709
9982
  seed?: number;
9710
9983
  }
9711
9984
 
9712
- export interface SharedType_5ce {
9985
+ export interface SharedType_5d3 {
9713
9986
  /**
9714
9987
  * @description The generated video
9715
9988
  * @example {
9716
9989
  * "file_name": "output.mp4",
9990
+ * "url": "https://storage.googleapis.com/falserverless/model_tests/video_models/output-3.mp4",
9991
+ * "file_size": 6420765,
9992
+ * "content_type": "video/mp4"
9993
+ * }
9994
+ */
9995
+ video: Components.File;
9996
+ }
9997
+
9998
+ export interface SharedType_5c7 {
9999
+ /**
10000
+ * @description The generated video.
10001
+ * @example {
10002
+ * "file_name": "output.mp4",
10003
+ * "file_size": 28472159,
9717
10004
  * "content_type": "video/mp4",
9718
- * "url": "https://v3.fal.media/files/penguin/twy6u1yv09NvqsX0mMFM2_output.mp4",
9719
- * "file_size": 3910577
10005
+ * "url": "https://v3b.fal.media/files/b/kangaroo/3n_Lpxm_SjK5NYyBobRdS_output.mp4"
10006
+ * }
10007
+ */
10008
+ video: Components.File;
10009
+ }
10010
+
10011
+ export interface SharedType_5ad {
10012
+ /**
10013
+ * @description The generated video.
10014
+ * @example {
10015
+ * "file_name": "output.mp4",
10016
+ * "file_size": 18468404,
10017
+ * "content_type": "video/mp4",
10018
+ * "url": "https://v3b.fal.media/files/b/0a8d1c8a/ZxdKrvPb3CQEmeuS-u_kU_output.mp4"
9720
10019
  * }
9721
10020
  */
9722
10021
  video: Components.File;
@@ -9917,19 +10216,6 @@ export interface SharedType_5a8 {
9917
10216
  wide_angle_lens?: boolean;
9918
10217
  }
9919
10218
 
9920
- export interface SharedType_5a1 {
9921
- /**
9922
- * @description The generated video
9923
- * @example {
9924
- * "file_size": 5485412,
9925
- * "url": "https://fal.media/files/lion/_fVEU5nzHND_fHGQUhXEm_output.mp4",
9926
- * "file_name": "output.mp4",
9927
- * "content_type": "video/mp4"
9928
- * }
9929
- */
9930
- video: Components.File;
9931
- }
9932
-
9933
10219
  export interface SharedType_59f {
9934
10220
  model_mesh: Components.File;
9935
10221
  model_urls: Components.ModelUrls_2;
@@ -10273,6 +10559,19 @@ export interface SharedType_578 {
10273
10559
  video: Components.File;
10274
10560
  }
10275
10561
 
10562
+ export interface SharedType_575 {
10563
+ /**
10564
+ * @description The generated video.
10565
+ * @example {
10566
+ * "file_name": "output.mp4",
10567
+ * "file_size": 7533071,
10568
+ * "content_type": "video/mp4",
10569
+ * "url": "https://v3b.fal.media/files/b/0a86603b/YAlbB2535l07BTy1wpDeI_output.mp4"
10570
+ * }
10571
+ */
10572
+ video: Components.File;
10573
+ }
10574
+
10276
10575
  export interface SharedType_554 {
10277
10576
  boundingbox_frames_zip?: Components.File;
10278
10577
  /**
@@ -10648,6 +10947,19 @@ export interface SharedType_51a {
10648
10947
  seed: number;
10649
10948
  }
10650
10949
 
10950
+ export interface SharedType_515 {
10951
+ /**
10952
+ * @description The generated video.
10953
+ * @example {
10954
+ * "file_name": "output.mp4",
10955
+ * "file_size": 47359974,
10956
+ * "content_type": "video/mp4",
10957
+ * "url": "https://v3b.fal.media/files/b/panda/oVdiICFXY03Vbam-08Aj8_output.mp4"
10958
+ * }
10959
+ */
10960
+ video: Components.File;
10961
+ }
10962
+
10651
10963
  export interface SharedType_514 {
10652
10964
  /**
10653
10965
  * @example {
@@ -10668,6 +10980,19 @@ export interface SharedType_50b {
10668
10980
  video: Components.File;
10669
10981
  }
10670
10982
 
10983
+ export interface SharedType_5081 {
10984
+ /**
10985
+ * @description The generated video.
10986
+ * @example {
10987
+ * "file_name": "output.mp4",
10988
+ * "file_size": 12037975,
10989
+ * "content_type": "video/mp4",
10990
+ * "url": "https://v3b.fal.media/files/b/0a8d0278/pgIO9yOXTFCTetKBsqDwX_output.mp4"
10991
+ * }
10992
+ */
10993
+ video: Components.File;
10994
+ }
10995
+
10671
10996
  export interface SharedType_508 {
10672
10997
  /**
10673
10998
  * Generated Text
@@ -10748,6 +11073,101 @@ export interface SharedType_503 {
10748
11073
  seed?: number;
10749
11074
  }
10750
11075
 
11076
+ export interface SharedType_4e4 {
11077
+ /**
11078
+ * Actual Prompt
11079
+ * @description The actual prompt used if prompt expansion was enabled
11080
+ */
11081
+ actual_prompt?: string;
11082
+ animation_fbx?: Components.File;
11083
+ animation_glb?: Components.File;
11084
+ basic_animations?: Components.BasicAnimations;
11085
+ /**
11086
+ * @description Generated 3D object in GLB format.
11087
+ * @example {
11088
+ * "file_name": "model.glb",
11089
+ * "file_size": 9314028,
11090
+ * "content_type": "model/gltf-binary",
11091
+ * "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
11092
+ * }
11093
+ */
11094
+ model_glb: Components.File;
11095
+ /**
11096
+ * @description URLs for different 3D model formats
11097
+ * @example {
11098
+ * "obj": {
11099
+ * "file_name": "model.obj",
11100
+ * "file_size": 2755145,
11101
+ * "content_type": "text/plain",
11102
+ * "url": "https://v3b.fal.media/files/b/monkey/cCNMHqUbKSNtDN1iGmiYm_model.obj"
11103
+ * },
11104
+ * "glb": {
11105
+ * "file_name": "model.glb",
11106
+ * "file_size": 9314028,
11107
+ * "content_type": "model/gltf-binary",
11108
+ * "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
11109
+ * },
11110
+ * "fbx": {
11111
+ * "file_name": "model.fbx",
11112
+ * "file_size": 5444380,
11113
+ * "content_type": "application/octet-stream",
11114
+ * "url": "https://v3b.fal.media/files/b/kangaroo/7nUUw5dHN9a0DKlOpAKbP_model.fbx"
11115
+ * },
11116
+ * "usdz": {
11117
+ * "file_name": "model.usdz",
11118
+ * "file_size": 9834246,
11119
+ * "content_type": "model/vnd.usdz+zip",
11120
+ * "url": "https://v3b.fal.media/files/b/panda/XcC-mIJywUvH7coyrzENU_model.usdz"
11121
+ * }
11122
+ * }
11123
+ */
11124
+ model_urls: Components.ModelUrls;
11125
+ /**
11126
+ * Prompt
11127
+ * @description The text prompt used for generation
11128
+ * @example A rustic, antique wooden treasure chest with a curved, domed lid, constructed from weathered, dark brown planks exhibiting prominent wood grain and subtle distress. It's heavily reinforced with broad, dark grey, oxidized metal bands secured by numerous circular rivets. Ornate, dark iron decorative elements featuring swirling foliate patterns and dragon motifs adorn the corners and lid. A prominent, circular, intricately carved metal lock plate with a central keyhole dominates the front, flanked by two large, dark metallic pull rings.
11129
+ */
11130
+ prompt: string;
11131
+ /**
11132
+ * Rig Task Id
11133
+ * @description Rigging task ID. Only present when enable_rigging is true.
11134
+ */
11135
+ rig_task_id?: string;
11136
+ rigged_character_fbx?: Components.File;
11137
+ rigged_character_glb?: Components.File;
11138
+ /**
11139
+ * Seed
11140
+ * @description The seed used for generation
11141
+ * @example 4002110719
11142
+ */
11143
+ seed?: number;
11144
+ /**
11145
+ * Texture Urls
11146
+ * @description Array of texture file objects
11147
+ * @example [
11148
+ * {
11149
+ * "base_color": {
11150
+ * "file_name": "texture_0.png",
11151
+ * "file_size": 4254502,
11152
+ * "content_type": "image/png",
11153
+ * "url": "https://v3b.fal.media/files/b/panda/DoPKAuZY0tTjnr6C9ee-Q_texture_0.png"
11154
+ * }
11155
+ * }
11156
+ * ]
11157
+ */
11158
+ texture_urls?: Components.TextureFiles[];
11159
+ /**
11160
+ * @description Preview thumbnail of the generated model
11161
+ * @example {
11162
+ * "file_name": "preview.png",
11163
+ * "file_size": 173792,
11164
+ * "content_type": "image/png",
11165
+ * "url": "https://v3b.fal.media/files/b/koala/6LJISu4ilkZXcdOETwl_d_preview.png"
11166
+ * }
11167
+ */
11168
+ thumbnail?: Components.File;
11169
+ }
11170
+
10751
11171
  export interface SharedType_4c9 {
10752
11172
  /**
10753
11173
  * Control Lora Image Url
@@ -11037,6 +11457,60 @@ export interface SharedType_4b2 {
11037
11457
  video: Components.File;
11038
11458
  }
11039
11459
 
11460
+ export interface SharedType_4ae {
11461
+ /**
11462
+ * Aspect Ratio
11463
+ * @description The aspect ratio of the generated video frame
11464
+ * @default 16:9
11465
+ * @enum {string}
11466
+ */
11467
+ aspect_ratio?: '16:9' | '9:16' | '1:1';
11468
+ /**
11469
+ * Cfg Scale
11470
+ * @description The CFG (Classifier Free Guidance) scale is a measure of how close you want
11471
+ * the model to stick to your prompt.
11472
+ * @default 0.5
11473
+ */
11474
+ cfg_scale?: number;
11475
+ /**
11476
+ * Duration
11477
+ * @description The duration of the generated video in seconds
11478
+ * @default 5
11479
+ * @enum {string}
11480
+ */
11481
+ duration?: '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15';
11482
+ /**
11483
+ * Generate Audio
11484
+ * @description Whether to generate native audio for the video. Supports Chinese and English voice output. Other languages are automatically translated to English. For English speech, use lowercase letters; for acronyms or proper nouns, use uppercase.
11485
+ * @default true
11486
+ */
11487
+ generate_audio?: boolean;
11488
+ /**
11489
+ * Multi Prompt
11490
+ * @description List of prompts for multi-shot video generation. If provided, overrides the single prompt and divides the video into multiple shots with specified prompts and durations.
11491
+ * @example null
11492
+ */
11493
+ multi_prompt?: Components.KlingV3MultiPromptElement[];
11494
+ /**
11495
+ * Negative Prompt
11496
+ * @default blur, distort, and low quality
11497
+ */
11498
+ negative_prompt?: string;
11499
+ /**
11500
+ * Prompt
11501
+ * @description Text prompt for video generation. Either prompt or multi_prompt must be provided, but not both.
11502
+ * @example Close-up of glowing fireflies dancing in a dark forest at twilight. Soft bioluminescent particles float through the air. Shallow depth of field, bokeh lights in background. Magical atmosphere, gentle movement.
11503
+ */
11504
+ prompt?: string;
11505
+ /**
11506
+ * Shot Type
11507
+ * @description The type of multi-shot video generation
11508
+ * @default customize
11509
+ * @enum {string}
11510
+ */
11511
+ shot_type?: 'customize' | 'intelligent';
11512
+ }
11513
+
11040
11514
  export interface SharedType_4aa {
11041
11515
  image?: Components.Image;
11042
11516
  results: Components.PolygonOutput;
@@ -11156,19 +11630,6 @@ export interface SharedType_49b {
11156
11630
  sync_mode?: boolean;
11157
11631
  }
11158
11632
 
11159
- export interface SharedType_49a {
11160
- /**
11161
- * @description The generated video
11162
- * @example {
11163
- * "file_size": 3890360,
11164
- * "url": "https://fal.media/files/panda/5KmKS-mh1vO-htbqE5oex_output.mp4",
11165
- * "file_name": "output.mp4",
11166
- * "content_type": "video/mp4"
11167
- * }
11168
- */
11169
- video: Components.File;
11170
- }
11171
-
11172
11633
  export interface SharedType_480 {
11173
11634
  /**
11174
11635
  * @description The generated video from image using the Q2 model
@@ -11306,19 +11767,6 @@ export interface SharedType_467 {
11306
11767
  seed: number;
11307
11768
  }
11308
11769
 
11309
- export interface SharedType_44b {
11310
- /**
11311
- * @description The extended video
11312
- * @example {
11313
- * "file_size": 1163040,
11314
- * "url": "https://v3.fal.media/files/rabbit/88-jI3VWXU4Q8kSNrWo3c_output.mp4",
11315
- * "file_name": "output.mp4",
11316
- * "content_type": "video/mp4"
11317
- * }
11318
- */
11319
- video: Components.File;
11320
- }
11321
-
11322
11770
  export interface SharedType_444 {
11323
11771
  /**
11324
11772
  * Images
@@ -11589,19 +12037,6 @@ export interface SharedType_3ce {
11589
12037
  };
11590
12038
  }
11591
12039
 
11592
- export interface SharedType_3b1 {
11593
- /**
11594
- * @description The generated video
11595
- * @example {
11596
- * "file_size": 6420765,
11597
- * "url": "https://storage.googleapis.com/falserverless/model_tests/video_models/output-3.mp4",
11598
- * "file_name": "output.mp4",
11599
- * "content_type": "video/mp4"
11600
- * }
11601
- */
11602
- video: Components.File;
11603
- }
11604
-
11605
12040
  export interface SharedType_38d {
11606
12041
  /**
11607
12042
  * Image Url
@@ -12308,6 +12743,19 @@ export interface SharedType_26e {
12308
12743
  };
12309
12744
  }
12310
12745
 
12746
+ export interface SharedType_26d {
12747
+ /**
12748
+ * @description The generated video.
12749
+ * @example {
12750
+ * "file_name": "output.mp4",
12751
+ * "file_size": 27588984,
12752
+ * "content_type": "video/mp4",
12753
+ * "url": "https://v3b.fal.media/files/b/koala/knryyyGF3ZVyMMrGr77CL_output.mp4"
12754
+ * }
12755
+ */
12756
+ video: Components.File;
12757
+ }
12758
+
12311
12759
  export interface SharedType_266 {
12312
12760
  /**
12313
12761
  * Prompt
@@ -12372,19 +12820,6 @@ export interface SharedType_25d {
12372
12820
  shot_type?: 'customize';
12373
12821
  }
12374
12822
 
12375
- export interface SharedType_24e {
12376
- /**
12377
- * @description The generated video.
12378
- * @example {
12379
- * "file_name": "output.mp4",
12380
- * "content_type": "video/mp4",
12381
- * "url": "https://v3b.fal.media/files/b/0a8d0278/pgIO9yOXTFCTetKBsqDwX_output.mp4",
12382
- * "file_size": 12037975
12383
- * }
12384
- */
12385
- video: Components.File;
12386
- }
12387
-
12388
12823
  export interface SharedType_246 {
12389
12824
  /**
12390
12825
  * Enable Safety Checker
@@ -12462,19 +12897,6 @@ export interface SharedType_246 {
12462
12897
  sync_mode?: boolean;
12463
12898
  }
12464
12899
 
12465
- export interface SharedType_233 {
12466
- /**
12467
- * @description The generated video.
12468
- * @example {
12469
- * "file_name": "output.mp4",
12470
- * "content_type": "video/mp4",
12471
- * "url": "https://v3b.fal.media/files/b/koala/knryyyGF3ZVyMMrGr77CL_output.mp4",
12472
- * "file_size": 27588984
12473
- * }
12474
- */
12475
- video: Components.File;
12476
- }
12477
-
12478
12900
  export interface SharedType_21d {
12479
12901
  /**
12480
12902
  * Enable Safety Checker
@@ -12837,103 +13259,6 @@ export interface SharedType_20d {
12837
13259
  seed: number;
12838
13260
  }
12839
13261
 
12840
- export interface SharedType_1ea {
12841
- /**
12842
- * @description The generated video
12843
- * @example {
12844
- * "file_size": 3232402,
12845
- * "url": "https://fal.media/files/koala/awGY1lJd7lVsqQeSqjWqn_output.mp4",
12846
- * "file_name": "output.mp4",
12847
- * "content_type": "video/mp4"
12848
- * }
12849
- */
12850
- video: Components.File;
12851
- }
12852
-
12853
- export interface SharedType_1c9 {
12854
- animation_fbx?: Components.File;
12855
- animation_glb?: Components.File;
12856
- basic_animations?: Components.BasicAnimations;
12857
- /**
12858
- * @description Generated 3D object in GLB format.
12859
- * @example {
12860
- * "file_name": "model.glb",
12861
- * "content_type": "model/gltf-binary",
12862
- * "file_size": 9242744,
12863
- * "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
12864
- * }
12865
- */
12866
- model_glb: Components.File;
12867
- /**
12868
- * @description URLs for different 3D model formats
12869
- * @example {
12870
- * "glb": {
12871
- * "file_name": "model.glb",
12872
- * "content_type": "model/gltf-binary",
12873
- * "file_size": 9242744,
12874
- * "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
12875
- * },
12876
- * "usdz": {
12877
- * "file_name": "model.usdz",
12878
- * "content_type": "model/vnd.usdz+zip",
12879
- * "file_size": 9991969,
12880
- * "url": "https://v3b.fal.media/files/b/lion/RgJG9EBQ_GAHMVWV3wCis_model.usdz"
12881
- * },
12882
- * "obj": {
12883
- * "file_name": "model.obj",
12884
- * "content_type": "text/plain",
12885
- * "file_size": 2744413,
12886
- * "url": "https://v3b.fal.media/files/b/koala/_Vg0d084-hd3EdpIJDf7U_model.obj"
12887
- * },
12888
- * "fbx": {
12889
- * "file_name": "model.fbx",
12890
- * "content_type": "application/octet-stream",
12891
- * "file_size": 5427052,
12892
- * "url": "https://v3b.fal.media/files/b/kangaroo/4Q2qdpTvfLVdzAKH1-72v_model.fbx"
12893
- * }
12894
- * }
12895
- */
12896
- model_urls: Components.ModelUrls;
12897
- /**
12898
- * Rig Task Id
12899
- * @description Rigging task ID. Only present when enable_rigging is true.
12900
- */
12901
- rig_task_id?: string;
12902
- rigged_character_fbx?: Components.File;
12903
- rigged_character_glb?: Components.File;
12904
- /**
12905
- * Seed
12906
- * @description The seed used for generation (if available)
12907
- * @example 2009275957
12908
- */
12909
- seed?: number;
12910
- /**
12911
- * Texture Urls
12912
- * @description Array of texture file objects, matching Meshy API structure
12913
- * @example [
12914
- * {
12915
- * "base_color": {
12916
- * "file_name": "texture_0.png",
12917
- * "content_type": "image/png",
12918
- * "file_size": 4328755,
12919
- * "url": "https://v3b.fal.media/files/b/tiger/NkgxcEom_42V4_8UUXiRR_texture_0.png"
12920
- * }
12921
- * }
12922
- * ]
12923
- */
12924
- texture_urls?: Components.TextureFiles[];
12925
- /**
12926
- * @description Preview thumbnail of the generated model
12927
- * @example {
12928
- * "file_name": "preview.png",
12929
- * "content_type": "image/png",
12930
- * "file_size": 54279,
12931
- * "url": "https://v3b.fal.media/files/b/penguin/rfnS6ClmeEWgDXp_oD5tN_preview.png"
12932
- * }
12933
- */
12934
- thumbnail?: Components.File;
12935
- }
12936
-
12937
13262
  export interface SharedType_1bc {
12938
13263
  /**
12939
13264
  * Has Nsfw Concepts
@@ -13176,6 +13501,19 @@ export interface SharedType_187 {
13176
13501
  steps?: number;
13177
13502
  }
13178
13503
 
13504
+ export interface SharedType_17b {
13505
+ /**
13506
+ * @description The generated video
13507
+ * @example {
13508
+ * "file_name": "output.mp4",
13509
+ * "url": "https://storage.googleapis.com/falserverless/model_tests/video_models/output-2.mp4",
13510
+ * "file_size": 3890360,
13511
+ * "content_type": "video/mp4"
13512
+ * }
13513
+ */
13514
+ video: Components.File;
13515
+ }
13516
+
13179
13517
  export interface SharedType_16d {
13180
13518
  /**
13181
13519
  * Aspect Ratio
@@ -13767,6 +14105,19 @@ export interface SharedType_0b3 {
13767
14105
  region: Components.Region;
13768
14106
  }
13769
14107
 
14108
+ export interface SharedType_0a8 {
14109
+ /**
14110
+ * @description The generated video
14111
+ * @example {
14112
+ * "file_name": "output.mp4",
14113
+ * "file_size": 3910577,
14114
+ * "content_type": "video/mp4",
14115
+ * "url": "https://v3.fal.media/files/penguin/twy6u1yv09NvqsX0mMFM2_output.mp4"
14116
+ * }
14117
+ */
14118
+ video: Components.File;
14119
+ }
14120
+
13770
14121
  export interface SharedType_099 {
13771
14122
  /**
13772
14123
  * Prompt
@@ -16557,7 +16908,7 @@ export interface ZImageTurboImageToImageLoraInput {
16557
16908
  sync_mode?: boolean;
16558
16909
  }
16559
16910
 
16560
- export interface ZImageTurboImageToImageLoraOutput extends SharedType_e73 {}
16911
+ export interface ZImageTurboImageToImageLoraOutput extends SharedType_e731 {}
16561
16912
 
16562
16913
  export interface ZImageTurboImageToImageInput {
16563
16914
  /**
@@ -16646,7 +16997,7 @@ export interface ZImageTurboImageToImageInput {
16646
16997
  sync_mode?: boolean;
16647
16998
  }
16648
16999
 
16649
- export interface ZImageTurboImageToImageOutput extends SharedType_e73 {}
17000
+ export interface ZImageTurboImageToImageOutput extends SharedType_e731 {}
16650
17001
 
16651
17002
  export interface ZImageTurboControlnetLoraInput {
16652
17003
  /**
@@ -16760,7 +17111,7 @@ export interface ZImageTurboControlnetLoraInput {
16760
17111
  sync_mode?: boolean;
16761
17112
  }
16762
17113
 
16763
- export interface ZImageTurboControlnetLoraOutput extends SharedType_893 {}
17114
+ export interface ZImageTurboControlnetLoraOutput extends SharedType_8931 {}
16764
17115
 
16765
17116
  export interface ZImageTurboControlnetInput {
16766
17117
  /**
@@ -16868,7 +17219,7 @@ export interface ZImageTurboControlnetInput {
16868
17219
  sync_mode?: boolean;
16869
17220
  }
16870
17221
 
16871
- export interface ZImageTurboControlnetOutput extends SharedType_893 {}
17222
+ export interface ZImageTurboControlnetOutput extends SharedType_8931 {}
16872
17223
 
16873
17224
  export interface ZImageTurboInput {
16874
17225
  /**
@@ -23064,7 +23415,7 @@ export interface Wan25PreviewTextToVideoInput {
23064
23415
  seed?: number;
23065
23416
  }
23066
23417
 
23067
- export interface Wan25PreviewTextToVideoOutput extends SharedType_8bc {}
23418
+ export interface Wan25PreviewTextToVideoOutput extends SharedType_e73 {}
23068
23419
 
23069
23420
  export interface Wan25PreviewTextToImageInput {
23070
23421
  /**
@@ -23140,8 +23491,8 @@ export interface Wan25PreviewTextToImageOutput {
23140
23491
  * @description The generated images
23141
23492
  * @example [
23142
23493
  * {
23143
- * "url": "https://v3.fal.media/files/penguin/4VZ7I1ZK5XNv33LV2JBxg.png",
23144
- * "content_type": "image/png"
23494
+ * "content_type": "image/png",
23495
+ * "url": "https://v3.fal.media/files/penguin/4VZ7I1ZK5XNv33LV2JBxg.png"
23145
23496
  * }
23146
23497
  * ]
23147
23498
  */
@@ -23224,7 +23575,7 @@ export interface Wan25PreviewImageToVideoInput {
23224
23575
  seed?: number;
23225
23576
  }
23226
23577
 
23227
- export interface Wan25PreviewImageToVideoOutput extends SharedType_8bc {}
23578
+ export interface Wan25PreviewImageToVideoOutput extends SharedType_e73 {}
23228
23579
 
23229
23580
  export interface Wan25PreviewImageToImageInput {
23230
23581
  /**
@@ -23302,8 +23653,8 @@ export interface Wan25PreviewImageToImageOutput {
23302
23653
  * @description The edited images
23303
23654
  * @example [
23304
23655
  * {
23305
- * "url": "https://v3.fal.media/files/rabbit/BM4J8xpV5ogtOQE9xGtft.png",
23306
- * "content_type": "image/png"
23656
+ * "content_type": "image/png",
23657
+ * "url": "https://v3.fal.media/files/rabbit/BM4J8xpV5ogtOQE9xGtft.png"
23307
23658
  * }
23308
23659
  * ]
23309
23660
  */
@@ -24721,11 +25072,11 @@ export interface VibevoiceOutput extends SharedType_51a1 {}
24721
25072
 
24722
25073
  export interface Veo3ImageToVideoInput extends SharedType_01c {}
24723
25074
 
24724
- export interface Veo3ImageToVideoOutput extends SharedType_9cd {}
25075
+ export interface Veo3ImageToVideoOutput extends SharedType_9cd1 {}
24725
25076
 
24726
25077
  export interface Veo3FastImageToVideoInput extends SharedType_01c {}
24727
25078
 
24728
- export interface Veo3FastImageToVideoOutput extends SharedType_9cd {}
25079
+ export interface Veo3FastImageToVideoOutput extends SharedType_9cd1 {}
24729
25080
 
24730
25081
  export interface Veo3FastInput extends SharedType_fce {}
24731
25082
 
@@ -36110,7 +36461,7 @@ export interface PixverseV6TransitionInput {
36110
36461
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36111
36462
  }
36112
36463
 
36113
- export interface PixverseV6TransitionOutput extends SharedType_78e {}
36464
+ export interface PixverseV6TransitionOutput extends SharedType_17b {}
36114
36465
 
36115
36466
  export interface PixverseV6TextToVideoInput {
36116
36467
  /**
@@ -36175,7 +36526,7 @@ export interface PixverseV6TextToVideoInput {
36175
36526
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36176
36527
  }
36177
36528
 
36178
- export interface PixverseV6TextToVideoOutput extends SharedType_8ed1 {}
36529
+ export interface PixverseV6TextToVideoOutput extends SharedType_67c {}
36179
36530
 
36180
36531
  export interface PixverseV6ImageToVideoInput {
36181
36532
  /**
@@ -36239,7 +36590,7 @@ export interface PixverseV6ImageToVideoInput {
36239
36590
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36240
36591
  }
36241
36592
 
36242
- export interface PixverseV6ImageToVideoOutput extends SharedType_3b1 {}
36593
+ export interface PixverseV6ImageToVideoOutput extends SharedType_5d3 {}
36243
36594
 
36244
36595
  export interface PixverseV6ExtendInput {
36245
36596
  /**
@@ -36291,15 +36642,15 @@ export interface PixverseV6ExtendInput {
36291
36642
  video_url: string;
36292
36643
  }
36293
36644
 
36294
- export interface PixverseV6ExtendOutput extends SharedType_44b {}
36645
+ export interface PixverseV6ExtendOutput extends SharedType_cf0 {}
36295
36646
 
36296
36647
  export interface PixverseV5TransitionInput extends SharedType_9ed {}
36297
36648
 
36298
- export interface PixverseV5TransitionOutput extends SharedType_78e {}
36649
+ export interface PixverseV5TransitionOutput extends SharedType_17b {}
36299
36650
 
36300
36651
  export interface PixverseV5TextToVideoInput extends SharedType_8ed {}
36301
36652
 
36302
- export interface PixverseV5TextToVideoOutput extends SharedType_8ed1 {}
36653
+ export interface PixverseV5TextToVideoOutput extends SharedType_67c {}
36303
36654
 
36304
36655
  export interface PixverseV5ImageToVideoInput {
36305
36656
  /**
@@ -36347,11 +36698,11 @@ export interface PixverseV5ImageToVideoInput {
36347
36698
  style?: 'anime' | '3d_animation' | 'clay' | 'comic' | 'cyberpunk';
36348
36699
  }
36349
36700
 
36350
- export interface PixverseV5ImageToVideoOutput extends SharedType_3b1 {}
36701
+ export interface PixverseV5ImageToVideoOutput extends SharedType_5d3 {}
36351
36702
 
36352
36703
  export interface PixverseV5EffectsInput extends SharedType_4b21 {}
36353
36704
 
36354
- export interface PixverseV5EffectsOutput extends SharedType_1ea {}
36705
+ export interface PixverseV5EffectsOutput extends SharedType_5e3 {}
36355
36706
 
36356
36707
  export interface PixverseV56TransitionInput {
36357
36708
  /**
@@ -36424,7 +36775,7 @@ export interface PixverseV56TransitionInput {
36424
36775
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36425
36776
  }
36426
36777
 
36427
- export interface PixverseV56TransitionOutput extends SharedType_78e {}
36778
+ export interface PixverseV56TransitionOutput extends SharedType_17b {}
36428
36779
 
36429
36780
  export interface PixverseV56TextToVideoInput {
36430
36781
  /**
@@ -36484,7 +36835,7 @@ export interface PixverseV56TextToVideoInput {
36484
36835
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36485
36836
  }
36486
36837
 
36487
- export interface PixverseV56TextToVideoOutput extends SharedType_8ed1 {}
36838
+ export interface PixverseV56TextToVideoOutput extends SharedType_67c {}
36488
36839
 
36489
36840
  export interface PixverseV56ImageToVideoInput {
36490
36841
  /**
@@ -36543,7 +36894,7 @@ export interface PixverseV56ImageToVideoInput {
36543
36894
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36544
36895
  }
36545
36896
 
36546
- export interface PixverseV56ImageToVideoOutput extends SharedType_3b1 {}
36897
+ export interface PixverseV56ImageToVideoOutput extends SharedType_5d3 {}
36547
36898
 
36548
36899
  export interface PixverseV55TransitionInput {
36549
36900
  /**
@@ -36616,7 +36967,7 @@ export interface PixverseV55TransitionInput {
36616
36967
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36617
36968
  }
36618
36969
 
36619
- export interface PixverseV55TransitionOutput extends SharedType_78e {}
36970
+ export interface PixverseV55TransitionOutput extends SharedType_17b {}
36620
36971
 
36621
36972
  export interface PixverseV55TextToVideoInput {
36622
36973
  /**
@@ -36682,7 +37033,7 @@ export interface PixverseV55TextToVideoInput {
36682
37033
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36683
37034
  }
36684
37035
 
36685
- export interface PixverseV55TextToVideoOutput extends SharedType_8ed1 {}
37036
+ export interface PixverseV55TextToVideoOutput extends SharedType_67c {}
36686
37037
 
36687
37038
  export interface PixverseV55ImageToVideoInput {
36688
37039
  /**
@@ -36747,7 +37098,7 @@ export interface PixverseV55ImageToVideoInput {
36747
37098
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36748
37099
  }
36749
37100
 
36750
- export interface PixverseV55ImageToVideoOutput extends SharedType_3b1 {}
37101
+ export interface PixverseV55ImageToVideoOutput extends SharedType_5d3 {}
36751
37102
 
36752
37103
  export interface PixverseV55EffectsInput {
36753
37104
  /**
@@ -36885,63 +37236,63 @@ export interface PixverseV55EffectsInput {
36885
37236
  thinking_type?: 'enabled' | 'disabled' | 'auto';
36886
37237
  }
36887
37238
 
36888
- export interface PixverseV55EffectsOutput extends SharedType_1ea {}
37239
+ export interface PixverseV55EffectsOutput extends SharedType_5e3 {}
36889
37240
 
36890
37241
  export interface PixverseV4TextToVideoFastInput extends SharedType_896 {}
36891
37242
 
36892
- export interface PixverseV4TextToVideoFastOutput extends SharedType_5a1 {}
37243
+ export interface PixverseV4TextToVideoFastOutput extends SharedType_f29 {}
36893
37244
 
36894
37245
  export interface PixverseV4TextToVideoInput extends SharedType_8ed {}
36895
37246
 
36896
- export interface PixverseV4TextToVideoOutput extends SharedType_5a1 {}
37247
+ export interface PixverseV4TextToVideoOutput extends SharedType_f29 {}
36897
37248
 
36898
37249
  export interface PixverseV4ImageToVideoFastInput extends SharedType_013 {}
36899
37250
 
36900
- export interface PixverseV4ImageToVideoFastOutput extends SharedType_b5a {}
37251
+ export interface PixverseV4ImageToVideoFastOutput extends SharedType_bfb {}
36901
37252
 
36902
37253
  export interface PixverseV4ImageToVideoInput extends SharedType_2ac {}
36903
37254
 
36904
- export interface PixverseV4ImageToVideoOutput extends SharedType_b5a {}
37255
+ export interface PixverseV4ImageToVideoOutput extends SharedType_bfb {}
36905
37256
 
36906
37257
  export interface PixverseV4EffectsInput extends SharedType_4b21 {}
36907
37258
 
36908
- export interface PixverseV4EffectsOutput extends SharedType_1ea {}
37259
+ export interface PixverseV4EffectsOutput extends SharedType_5e3 {}
36909
37260
 
36910
37261
  export interface PixverseV45TransitionInput extends SharedType_9ed {}
36911
37262
 
36912
- export interface PixverseV45TransitionOutput extends SharedType_49a {}
37263
+ export interface PixverseV45TransitionOutput extends SharedType_e90 {}
36913
37264
 
36914
37265
  export interface PixverseV45TextToVideoFastInput extends SharedType_896 {}
36915
37266
 
36916
- export interface PixverseV45TextToVideoFastOutput extends SharedType_5a1 {}
37267
+ export interface PixverseV45TextToVideoFastOutput extends SharedType_f29 {}
36917
37268
 
36918
37269
  export interface PixverseV45TextToVideoInput extends SharedType_8ed {}
36919
37270
 
36920
- export interface PixverseV45TextToVideoOutput extends SharedType_5a1 {}
37271
+ export interface PixverseV45TextToVideoOutput extends SharedType_f29 {}
36921
37272
 
36922
37273
  export interface PixverseV45ImageToVideoFastInput extends SharedType_013 {}
36923
37274
 
36924
- export interface PixverseV45ImageToVideoFastOutput extends SharedType_b5a {}
37275
+ export interface PixverseV45ImageToVideoFastOutput extends SharedType_bfb {}
36925
37276
 
36926
37277
  export interface PixverseV45ImageToVideoInput extends SharedType_2ac {}
36927
37278
 
36928
- export interface PixverseV45ImageToVideoOutput extends SharedType_b5a {}
37279
+ export interface PixverseV45ImageToVideoOutput extends SharedType_bfb {}
36929
37280
 
36930
37281
  export interface PixverseV45EffectsInput extends SharedType_4b21 {}
36931
37282
 
36932
- export interface PixverseV45EffectsOutput extends SharedType_1ea {}
37283
+ export interface PixverseV45EffectsOutput extends SharedType_5e3 {}
36933
37284
 
36934
37285
  export interface PixverseV35TransitionInput extends SharedType_9ed {}
36935
37286
 
36936
- export interface PixverseV35TransitionOutput extends SharedType_49a {}
37287
+ export interface PixverseV35TransitionOutput extends SharedType_e90 {}
36937
37288
 
36938
37289
  export interface PixverseV35TextToVideoFastInput extends SharedType_896 {}
36939
37290
 
36940
- export interface PixverseV35TextToVideoFastOutput extends SharedType_d6f {}
37291
+ export interface PixverseV35TextToVideoFastOutput extends SharedType_9cd {}
36941
37292
 
36942
37293
  export interface PixverseV35TextToVideoInput extends SharedType_8ed {}
36943
37294
 
36944
- export interface PixverseV35TextToVideoOutput extends SharedType_d6f {}
37295
+ export interface PixverseV35TextToVideoOutput extends SharedType_9cd {}
36945
37296
 
36946
37297
  export interface PixverseV35ImageToVideoFastInput {
36947
37298
  /**
@@ -36982,7 +37333,7 @@ export interface PixverseV35ImageToVideoFastInput {
36982
37333
  style?: 'anime' | '3d_animation' | 'clay' | 'comic' | 'cyberpunk';
36983
37334
  }
36984
37335
 
36985
- export interface PixverseV35ImageToVideoFastOutput extends SharedType_987 {}
37336
+ export interface PixverseV35ImageToVideoFastOutput extends SharedType_5db {}
36986
37337
 
36987
37338
  export interface PixverseV35ImageToVideoInput {
36988
37339
  /**
@@ -37030,11 +37381,11 @@ export interface PixverseV35ImageToVideoInput {
37030
37381
  style?: 'anime' | '3d_animation' | 'clay' | 'comic' | 'cyberpunk';
37031
37382
  }
37032
37383
 
37033
- export interface PixverseV35ImageToVideoOutput extends SharedType_987 {}
37384
+ export interface PixverseV35ImageToVideoOutput extends SharedType_5db {}
37034
37385
 
37035
37386
  export interface PixverseV35EffectsInput extends SharedType_4b21 {}
37036
37387
 
37037
- export interface PixverseV35EffectsOutput extends SharedType_1ea {}
37388
+ export interface PixverseV35EffectsOutput extends SharedType_5e3 {}
37038
37389
 
37039
37390
  export interface PixverseSwapInput {
37040
37391
  /**
@@ -37086,9 +37437,9 @@ export interface PixverseSwapOutput {
37086
37437
  /**
37087
37438
  * @description The generated swapped video
37088
37439
  * @example {
37089
- * "file_size": 1234567,
37090
- * "url": "https://v3b.fal.media/files/b/elephant/BdQvPf9T6puy3Co1_ZXeu_output.mp4",
37091
37440
  * "file_name": "output.mp4",
37441
+ * "url": "https://v3b.fal.media/files/b/elephant/BdQvPf9T6puy3Co1_ZXeu_output.mp4",
37442
+ * "file_size": 1234567,
37092
37443
  * "content_type": "video/mp4"
37093
37444
  * }
37094
37445
  */
@@ -37123,9 +37474,9 @@ export interface PixverseSoundEffectsOutput {
37123
37474
  /**
37124
37475
  * @description The video with added sound effects
37125
37476
  * @example {
37126
- * "file_size": 1534052,
37127
- * "url": "https://v3.fal.media/files/kangaroo/bBQr_DUeICo6_Ty_b_Y0I_output.mp4",
37128
37477
  * "file_name": "output.mp4",
37478
+ * "url": "https://v3.fal.media/files/kangaroo/bBQr_DUeICo6_Ty_b_Y0I_output.mp4",
37479
+ * "file_size": 1534052,
37129
37480
  * "content_type": "video/mp4"
37130
37481
  * }
37131
37482
  */
@@ -37179,9 +37530,9 @@ export interface PixverseLipsyncOutput {
37179
37530
  /**
37180
37531
  * @description The generated video
37181
37532
  * @example {
37182
- * "file_size": 1732359,
37183
- * "url": "https://v3.fal.media/files/penguin/hsR_KXBJjuF3IIVYIIDA2_output.mp4",
37184
37533
  * "file_name": "output.mp4",
37534
+ * "url": "https://v3.fal.media/files/penguin/hsR_KXBJjuF3IIVYIIDA2_output.mp4",
37535
+ * "file_size": 1732359,
37185
37536
  * "content_type": "video/mp4"
37186
37537
  * }
37187
37538
  */
@@ -37239,7 +37590,7 @@ export interface PixverseExtendFastInput {
37239
37590
  video_url: string;
37240
37591
  }
37241
37592
 
37242
- export interface PixverseExtendFastOutput extends SharedType_44b {}
37593
+ export interface PixverseExtendFastOutput extends SharedType_cf0 {}
37243
37594
 
37244
37595
  export interface PixverseExtendInput {
37245
37596
  /**
@@ -37299,7 +37650,7 @@ export interface PixverseExtendInput {
37299
37650
  video_url: string;
37300
37651
  }
37301
37652
 
37302
- export interface PixverseExtendOutput extends SharedType_44b {}
37653
+ export interface PixverseExtendOutput extends SharedType_cf0 {}
37303
37654
 
37304
37655
  export interface PixverseC1TransitionInput {
37305
37656
  /**
@@ -40161,9 +40512,9 @@ export interface NanoBananaProEditOutput {
40161
40512
  * @description The edited images.
40162
40513
  * @example [
40163
40514
  * {
40515
+ * "file_name": "nano-banana-pro-edit-output.png",
40164
40516
  * "content_type": "image/png",
40165
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/nano-banana-pro-edit-output.png",
40166
- * "file_name": "nano-banana-pro-edit-output.png"
40517
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/nano-banana-pro-edit-output.png"
40167
40518
  * }
40168
40519
  * ]
40169
40520
  */
@@ -40183,9 +40534,9 @@ export interface NanoBananaProOutput {
40183
40534
  * @description The generated images.
40184
40535
  * @example [
40185
40536
  * {
40537
+ * "file_name": "nano-banana-pro-t2i-output.png",
40186
40538
  * "content_type": "image/png",
40187
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/nano-banana-pro-t2i-output.png",
40188
- * "file_name": "nano-banana-pro-t2i-output.png"
40539
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/nano-banana-pro-t2i-output.png"
40189
40540
  * }
40190
40541
  * ]
40191
40542
  */
@@ -42315,21 +42666,25 @@ export interface MinimaxMusicOutput {
42315
42666
  audio: Components.File;
42316
42667
  }
42317
42668
 
42318
- export interface MeshyV6TextTo3dInput extends SharedType_e18 {}
42669
+ export interface MeshyV6TextTo3dInput extends SharedType_93f {}
42319
42670
 
42320
- export interface MeshyV6TextTo3dOutput extends SharedType_d03 {}
42671
+ export interface MeshyV6TextTo3dOutput extends SharedType_4e4 {}
42672
+
42673
+ export interface MeshyV6MultiImageTo3dInput extends SharedType_eea {}
42674
+
42675
+ export interface MeshyV6MultiImageTo3dOutput extends SharedType_aa9 {}
42321
42676
 
42322
42677
  export interface MeshyV6ImageTo3dInput extends SharedType_7ca {}
42323
42678
 
42324
- export interface MeshyV6ImageTo3dOutput extends SharedType_1c9 {}
42679
+ export interface MeshyV6ImageTo3dOutput extends SharedType_ea7 {}
42325
42680
 
42326
- export interface MeshyV6PreviewTextTo3dInput extends SharedType_e18 {}
42681
+ export interface MeshyV6PreviewTextTo3dInput extends SharedType_93f {}
42327
42682
 
42328
- export interface MeshyV6PreviewTextTo3dOutput extends SharedType_d03 {}
42683
+ export interface MeshyV6PreviewTextTo3dOutput extends SharedType_4e4 {}
42329
42684
 
42330
42685
  export interface MeshyV6PreviewImageTo3dInput extends SharedType_7ca {}
42331
42686
 
42332
- export interface MeshyV6PreviewImageTo3dOutput extends SharedType_1c9 {}
42687
+ export interface MeshyV6PreviewImageTo3dOutput extends SharedType_ea7 {}
42333
42688
 
42334
42689
  export interface MeshyV5RetextureInput {
42335
42690
  /**
@@ -42379,8 +42734,8 @@ export interface MeshyV5RetextureOutput {
42379
42734
  * @description Retextured 3D object in GLB format.
42380
42735
  * @example {
42381
42736
  * "file_name": "model.glb",
42382
- * "content_type": "model/gltf-binary",
42383
42737
  * "file_size": 4097640,
42738
+ * "content_type": "model/gltf-binary",
42384
42739
  * "url": "https://v3b.fal.media/files/b/tiger/pU0TtsRTxXM6VnKEYTHSV_model.glb"
42385
42740
  * }
42386
42741
  */
@@ -42388,29 +42743,29 @@ export interface MeshyV5RetextureOutput {
42388
42743
  /**
42389
42744
  * @description URLs for different 3D model formats
42390
42745
  * @example {
42391
- * "glb": {
42392
- * "file_name": "model.glb",
42393
- * "content_type": "model/gltf-binary",
42394
- * "file_size": 4097640,
42395
- * "url": "https://v3b.fal.media/files/b/tiger/pU0TtsRTxXM6VnKEYTHSV_model.glb"
42396
- * },
42397
- * "usdz": {
42398
- * "file_name": "model.usdz",
42399
- * "content_type": "model/vnd.usdz+zip",
42400
- * "file_size": 3886518,
42401
- * "url": "https://v3b.fal.media/files/b/panda/4ItUhLHiH4foEw30qcWZv_model.usdz"
42402
- * },
42403
42746
  * "obj": {
42404
42747
  * "file_name": "model.obj",
42405
- * "content_type": "text/plain",
42406
42748
  * "file_size": 2964508,
42749
+ * "content_type": "text/plain",
42407
42750
  * "url": "https://v3b.fal.media/files/b/zebra/M5aK_b6vKH7KeGCZoSLq7_model.obj"
42408
42751
  * },
42752
+ * "glb": {
42753
+ * "file_name": "model.glb",
42754
+ * "file_size": 4097640,
42755
+ * "content_type": "model/gltf-binary",
42756
+ * "url": "https://v3b.fal.media/files/b/tiger/pU0TtsRTxXM6VnKEYTHSV_model.glb"
42757
+ * },
42409
42758
  * "fbx": {
42410
42759
  * "file_name": "model.fbx",
42411
- * "content_type": "application/octet-stream",
42412
42760
  * "file_size": 4713692,
42761
+ * "content_type": "application/octet-stream",
42413
42762
  * "url": "https://v3b.fal.media/files/b/rabbit/agzKf8N8zeVnteg72NiF4_model.fbx"
42763
+ * },
42764
+ * "usdz": {
42765
+ * "file_name": "model.usdz",
42766
+ * "file_size": 3886518,
42767
+ * "content_type": "model/vnd.usdz+zip",
42768
+ * "url": "https://v3b.fal.media/files/b/panda/4ItUhLHiH4foEw30qcWZv_model.usdz"
42414
42769
  * }
42415
42770
  * }
42416
42771
  */
@@ -42428,8 +42783,8 @@ export interface MeshyV5RetextureOutput {
42428
42783
  * {
42429
42784
  * "base_color": {
42430
42785
  * "file_name": "texture_0.png",
42431
- * "content_type": "image/png",
42432
42786
  * "file_size": 3455709,
42787
+ * "content_type": "image/png",
42433
42788
  * "url": "https://v3b.fal.media/files/b/zebra/opBcVy7AK-GOlCTUz-_GZ_texture_0.png"
42434
42789
  * }
42435
42790
  * }
@@ -42440,8 +42795,8 @@ export interface MeshyV5RetextureOutput {
42440
42795
  * @description Preview thumbnail of the retextured model
42441
42796
  * @example {
42442
42797
  * "file_name": "preview.png",
42443
- * "content_type": "image/png",
42444
42798
  * "file_size": 124859,
42799
+ * "content_type": "image/png",
42445
42800
  * "url": "https://v3b.fal.media/files/b/lion/jFrzgIJMbaPQi_4HCEa8u_preview.png"
42446
42801
  * }
42447
42802
  */
@@ -42500,8 +42855,8 @@ export interface MeshyV5RemeshOutput {
42500
42855
  * @description Remeshed 3D object in GLB format (if GLB was requested).
42501
42856
  * @example {
42502
42857
  * "file_name": "model.glb",
42503
- * "content_type": "model/gltf-binary",
42504
42858
  * "file_size": 3294196,
42859
+ * "content_type": "model/gltf-binary",
42505
42860
  * "url": "https://v3b.fal.media/files/b/panda/hu-dDvUIPdoHSxR7QcBZw_model.glb"
42506
42861
  * }
42507
42862
  */
@@ -42511,14 +42866,14 @@ export interface MeshyV5RemeshOutput {
42511
42866
  * @example {
42512
42867
  * "glb": {
42513
42868
  * "file_name": "model.glb",
42514
- * "content_type": "model/gltf-binary",
42515
42869
  * "file_size": 3294196,
42870
+ * "content_type": "model/gltf-binary",
42516
42871
  * "url": "https://v3b.fal.media/files/b/panda/hu-dDvUIPdoHSxR7QcBZw_model.glb"
42517
42872
  * },
42518
42873
  * "fbx": {
42519
42874
  * "file_name": "model.fbx",
42520
- * "content_type": "application/octet-stream",
42521
42875
  * "file_size": 3476092,
42876
+ * "content_type": "application/octet-stream",
42522
42877
  * "url": "https://v3b.fal.media/files/b/kangaroo/Kw7C1w2Uccg3zKQ5axnwk_model.fbx"
42523
42878
  * }
42524
42879
  * }
@@ -42526,195 +42881,9 @@ export interface MeshyV5RemeshOutput {
42526
42881
  model_urls: Components.ModelUrls;
42527
42882
  }
42528
42883
 
42529
- export interface MeshyV5MultiImageTo3dInput {
42530
- /**
42531
- * Animation Action Id
42532
- * @description Animation preset ID from Meshy's library (500+ presets). Only used when enable_animation is true. See https://docs.meshy.ai/en/api/animation-library for available action IDs.
42533
- * @default 1001
42534
- * @example 1001
42535
- */
42536
- animation_action_id?: number;
42537
- /**
42538
- * Enable Animation
42539
- * @description Apply an animation preset to the rigged model. Requires enable_rigging to be true.
42540
- * @default false
42541
- */
42542
- enable_animation?: boolean;
42543
- /**
42544
- * Enable Pbr
42545
- * @description Generate PBR Maps (metallic, roughness, normal) in addition to base color. Requires should_texture to be true.
42546
- * @default false
42547
- */
42548
- enable_pbr?: boolean;
42549
- /**
42550
- * Enable Rigging
42551
- * @description Automatically rig the generated model as a humanoid character. Includes basic walking and running animations. Best results with humanoid characters that have clearly defined limbs.
42552
- * @default false
42553
- */
42554
- enable_rigging?: boolean;
42555
- /**
42556
- * Enable Safety Checker
42557
- * @description If set to true, input data will be checked for safety before processing.
42558
- * @default true
42559
- */
42560
- enable_safety_checker?: boolean;
42561
- /**
42562
- * Image Urls
42563
- * @description 1 to 4 images for 3D model creation. All images should depict the same object from different angles. Supports .jpg, .jpeg, .png formats, and AVIF/HEIF which will be automatically converted. If more than 4 images are provided, only the first 4 will be used.
42564
- * @example [
42565
- * "https://v3b.fal.media/files/b/kangaroo/cPyD3-por0XI7jDa9F9vP_image%20(3).png",
42566
- * "https://v3b.fal.media/files/b/elephant/9sd5JWAOJBcR7G3NMjPVs_image%20(2).png",
42567
- * "https://v3b.fal.media/files/b/tiger/TP4sTzPATX_w1Tn4m6kYM_image%20(1).png"
42568
- * ]
42569
- */
42570
- image_urls: string[];
42571
- /**
42572
- * Is A T Pose
42573
- * @deprecated
42574
- * @description Deprecated: use pose_mode instead. When true, generates a T-pose model.
42575
- * @default false
42576
- */
42577
- is_a_t_pose?: boolean;
42578
- /**
42579
- * Pose Mode
42580
- * @description Pose mode for the generated model. 'a-pose' generates an A-pose, 't-pose' generates a T-pose, empty string for no specific pose.
42581
- * @default
42582
- * @enum {string}
42583
- */
42584
- pose_mode?: 'a-pose' | 't-pose' | '';
42585
- /**
42586
- * Rigging Height Meters
42587
- * @description Approximate height of the character in meters. Only used when enable_rigging is true.
42588
- * @default 1.7
42589
- */
42590
- rigging_height_meters?: number;
42591
- /**
42592
- * Should Remesh
42593
- * @description Whether to enable the remesh phase. When false, returns triangular mesh ignoring topology and target_polycount.
42594
- * @default true
42595
- */
42596
- should_remesh?: boolean;
42597
- /**
42598
- * Should Texture
42599
- * @description Whether to generate textures. False provides mesh without textures for 5 credits, True adds texture generation for additional 10 credits.
42600
- * @default true
42601
- */
42602
- should_texture?: boolean;
42603
- /**
42604
- * Symmetry Mode
42605
- * @description Controls symmetry behavior during model generation.
42606
- * @default auto
42607
- * @enum {string}
42608
- */
42609
- symmetry_mode?: 'off' | 'auto' | 'on';
42610
- /**
42611
- * Target Polycount
42612
- * @description Target number of polygons in the generated model
42613
- * @default 30000
42614
- */
42615
- target_polycount?: number;
42616
- /**
42617
- * Texture Image Url
42618
- * @description 2D image to guide the texturing process. Requires should_texture to be true.
42619
- */
42620
- texture_image_url?: string;
42621
- /**
42622
- * Texture Prompt
42623
- * @description Text prompt to guide the texturing process. Requires should_texture to be true.
42624
- */
42625
- texture_prompt?: string;
42626
- /**
42627
- * Topology
42628
- * @description Specify the topology of the generated model. Quad for smooth surfaces, Triangle for detailed geometry.
42629
- * @default triangle
42630
- * @enum {string}
42631
- */
42632
- topology?: 'quad' | 'triangle';
42633
- }
42884
+ export interface MeshyV5MultiImageTo3dInput extends SharedType_eea {}
42634
42885
 
42635
- export interface MeshyV5MultiImageTo3dOutput {
42636
- animation_fbx?: Components.File;
42637
- animation_glb?: Components.File;
42638
- basic_animations?: Components.BasicAnimations;
42639
- /**
42640
- * @description Generated 3D object in GLB format.
42641
- * @example {
42642
- * "file_name": "model.glb",
42643
- * "content_type": "model/gltf-binary",
42644
- * "file_size": 7875308,
42645
- * "url": "https://v3b.fal.media/files/b/tiger/62QMEQqZ3pjUds4DfuVtX_model.glb"
42646
- * }
42647
- */
42648
- model_glb: Components.File;
42649
- /**
42650
- * @description URLs for different 3D model formats
42651
- * @example {
42652
- * "glb": {
42653
- * "file_name": "model.glb",
42654
- * "content_type": "model/gltf-binary",
42655
- * "file_size": 7875308,
42656
- * "url": "https://v3b.fal.media/files/b/tiger/62QMEQqZ3pjUds4DfuVtX_model.glb"
42657
- * },
42658
- * "usdz": {
42659
- * "file_name": "model.usdz",
42660
- * "content_type": "model/vnd.usdz+zip",
42661
- * "file_size": 8631497,
42662
- * "url": "https://v3b.fal.media/files/b/panda/fSGLGmtgzUjhepklN06Zw_model.usdz"
42663
- * },
42664
- * "obj": {
42665
- * "file_name": "model.obj",
42666
- * "content_type": "text/plain",
42667
- * "file_size": 2761323,
42668
- * "url": "https://v3b.fal.media/files/b/koala/xmOnmSeePfuROe3pqHpf0_model.obj"
42669
- * },
42670
- * "fbx": {
42671
- * "file_name": "model.fbx",
42672
- * "content_type": "application/octet-stream",
42673
- * "file_size": 5574540,
42674
- * "url": "https://v3b.fal.media/files/b/koala/R7vPBgkecVvcnbNpRAy9x_model.fbx"
42675
- * }
42676
- * }
42677
- */
42678
- model_urls: Components.ModelUrls;
42679
- /**
42680
- * Rig Task Id
42681
- * @description Rigging task ID. Only present when enable_rigging is true.
42682
- */
42683
- rig_task_id?: string;
42684
- rigged_character_fbx?: Components.File;
42685
- rigged_character_glb?: Components.File;
42686
- /**
42687
- * Seed
42688
- * @description The seed used for generation (if available)
42689
- * @example 783032043
42690
- */
42691
- seed?: number;
42692
- /**
42693
- * Texture Urls
42694
- * @description Array of texture file objects
42695
- * @example [
42696
- * {
42697
- * "base_color": {
42698
- * "file_name": "texture_0.png",
42699
- * "content_type": "image/png",
42700
- * "file_size": 4464364,
42701
- * "url": "https://v3b.fal.media/files/b/panda/OVrRor7IgeNK9w2i5-NDf_texture_0.png"
42702
- * }
42703
- * }
42704
- * ]
42705
- */
42706
- texture_urls?: Components.TextureFiles[];
42707
- /**
42708
- * @description Preview thumbnail of the generated model
42709
- * @example {
42710
- * "file_name": "preview.png",
42711
- * "content_type": "image/png",
42712
- * "file_size": 70958,
42713
- * "url": "https://v3b.fal.media/files/b/koala/2NI_hEd7jXzS5rLQhnRga_preview.png"
42714
- * }
42715
- */
42716
- thumbnail?: Components.File;
42717
- }
42886
+ export interface MeshyV5MultiImageTo3dOutput extends SharedType_aa9 {}
42718
42887
 
42719
42888
  export interface MayaStreamInput {
42720
42889
  /**
@@ -58985,9 +59154,9 @@ export interface KlingVideoV3StandardTextToVideoOutput {
58985
59154
  * @description The generated video
58986
59155
  * @example {
58987
59156
  * "file_name": "output.mp4",
59157
+ * "file_size": 6797486,
58988
59158
  * "content_type": "video/mp4",
58989
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/standard-t2v/out.mp4",
58990
- * "file_size": 6797486
59159
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/standard-t2v/out.mp4"
58991
59160
  * }
58992
59161
  */
58993
59162
  video: Components.File;
@@ -59099,211 +59268,7 @@ export interface KlingVideoV3StandardImageToVideoInput {
59099
59268
  /**
59100
59269
  * Prompt
59101
59270
  * @description Text prompt for video generation. Either prompt or multi_prompt must be provided, but not both.
59102
- * @example Camera slowly orbits around the vase. Soft light shifts across the ceramic surface. The pampas grass sways gently. Shadows move elegantly. Smooth continuous motion, premium feel.
59103
- */
59104
- prompt?: string;
59105
- /**
59106
- * Shot Type
59107
- * @description The type of multi-shot video generation. Required when multi_prompt is provided.
59108
- * @default customize
59109
- * @constant
59110
- */
59111
- shot_type?: 'customize';
59112
- /**
59113
- * Start Image Url
59114
- * @description URL of the image to be used for the video
59115
- * @example https://storage.googleapis.com/falserverless/example_inputs/kling-v3/standard-i2v/start_image.png
59116
- */
59117
- start_image_url: string;
59118
- }
59119
-
59120
- export interface KlingVideoV3StandardImageToVideoOutput {
59121
- /**
59122
- * @description The generated video
59123
- * @example {
59124
- * "file_name": "out.mp4",
59125
- * "content_type": "video/mp4",
59126
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/standard-i2v/out.mp4",
59127
- * "file_size": 3149129
59128
- * }
59129
- */
59130
- video: Components.File;
59131
- }
59132
-
59133
- export interface KlingVideoV3ProTextToVideoInput {
59134
- /**
59135
- * Aspect Ratio
59136
- * @description The aspect ratio of the generated video frame
59137
- * @default 16:9
59138
- * @enum {string}
59139
- */
59140
- aspect_ratio?: '16:9' | '9:16' | '1:1';
59141
- /**
59142
- * Cfg Scale
59143
- * @description The CFG (Classifier Free Guidance) scale is a measure of how close you want
59144
- * the model to stick to your prompt.
59145
- * @default 0.5
59146
- */
59147
- cfg_scale?: number;
59148
- /**
59149
- * Duration
59150
- * @description The duration of the generated video in seconds
59151
- * @default 5
59152
- * @enum {string}
59153
- */
59154
- duration?: '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15';
59155
- /**
59156
- * Generate Audio
59157
- * @description Whether to generate native audio for the video. Supports Chinese and English voice output. Other languages are automatically translated to English. For English speech, use lowercase letters; for acronyms or proper nouns, use uppercase.
59158
- * @default true
59159
- */
59160
- generate_audio?: boolean;
59161
- /**
59162
- * Multi Prompt
59163
- * @description List of prompts for multi-shot video generation. If provided, overrides the single prompt and divides the video into multiple shots with specified prompts and durations.
59164
- * @example null
59165
- */
59166
- multi_prompt?: Components.KlingV3MultiPromptElement[];
59167
- /**
59168
- * Negative Prompt
59169
- * @default blur, distort, and low quality
59170
- */
59171
- negative_prompt?: string;
59172
- /**
59173
- * Prompt
59174
- * @description Text prompt for video generation. Either prompt or multi_prompt must be provided, but not both.
59175
- * @example Close-up of glowing fireflies dancing in a dark forest at twilight. Soft bioluminescent particles float through the air. Shallow depth of field, bokeh lights in background. Magical atmosphere, gentle movement.
59176
- */
59177
- prompt?: string;
59178
- /**
59179
- * Shot Type
59180
- * @description The type of multi-shot video generation
59181
- * @default customize
59182
- * @enum {string}
59183
- */
59184
- shot_type?: 'customize' | 'intelligent';
59185
- }
59186
-
59187
- export interface KlingVideoV3ProTextToVideoOutput {
59188
- /**
59189
- * @description The generated video
59190
- * @example {
59191
- * "file_name": "output.mp4",
59192
- * "content_type": "video/mp4",
59193
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/pro-t2v/out.mp4",
59194
- * "file_size": 8062911
59195
- * }
59196
- */
59197
- video: Components.File;
59198
- }
59199
-
59200
- export interface KlingVideoV3ProMotionControlInput {
59201
- /**
59202
- * Character Orientation
59203
- * @description Controls whether the output character's orientation matches the reference image or video. 'video': orientation matches reference video - better for complex motions (max 30s). 'image': orientation matches reference image - better for following camera movements (max 10s).
59204
- * @example image
59205
- * @enum {string}
59206
- */
59207
- character_orientation: 'image' | 'video';
59208
- /**
59209
- * Elements
59210
- * @description Optional element for facial consistency binding. Upload a facial element to enhance identity preservation in the generated video. Only 1 element is supported. Reference in prompt as @Element1. Element binding is only supported when character_orientation is 'video'.
59211
- * @example null
59212
- */
59213
- elements?: Components.KlingV3ImageElementInput[];
59214
- /**
59215
- * Image Url
59216
- * @description Reference image URL. The characters, backgrounds, and other elements in the generated video are based on this reference image. Characters should have clear body proportions, avoid occlusion, and occupy more than 5% of the image area.
59217
- * @example https://v3b.fal.media/files/b/0a90ffa7/TNErq9yD7ZxGRATjfAqnh_EIgJSN67.png
59218
- */
59219
- image_url: string;
59220
- /**
59221
- * Keep Original Sound
59222
- * @description Whether to keep the original sound from the reference video.
59223
- * @default true
59224
- */
59225
- keep_original_sound?: boolean;
59226
- /**
59227
- * Prompt
59228
- * @example A man dancing
59229
- */
59230
- prompt?: string;
59231
- /**
59232
- * Video Url
59233
- * @description Reference video URL. The character actions in the generated video will be consistent with this reference video. Should contain a realistic style character with entire body or upper body visible, including head, without obstruction. Duration limit depends on character_orientation: 10s max for 'image', 30s max for 'video'.
59234
- * @example https://v3b.fal.media/files/b/0a90ff92/hklvF__w53diz6Rve7f5__JuDW2xl0mr6sJ_Kjz3Vxe_vidoeook%20(1)_1.mp4
59235
- */
59236
- video_url: string;
59237
- }
59238
-
59239
- export interface KlingVideoV3ProMotionControlOutput {
59240
- /**
59241
- * @description The generated video
59242
- * @example {
59243
- * "url": "https://v3b.fal.media/files/b/0a90ffb9/CnmmxIvK05VAq4gG8WiEQ_output.mp4"
59244
- * }
59245
- */
59246
- video: Components.File;
59247
- }
59248
-
59249
- export interface KlingVideoV3ProImageToVideoInput {
59250
- /**
59251
- * Cfg Scale
59252
- * @description The CFG (Classifier Free Guidance) scale is a measure of how close you want
59253
- * the model to stick to your prompt.
59254
- * @default 0.5
59255
- */
59256
- cfg_scale?: number;
59257
- /**
59258
- * Duration
59259
- * @description The duration of the generated video in seconds
59260
- * @default 5
59261
- * @example 12
59262
- * @enum {string}
59263
- */
59264
- duration?: '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15';
59265
- /**
59266
- * Elements
59267
- * @description Elements (characters/objects) to include in the video. Each example can either be an image set (frontal + reference images) or a video. Reference in prompt as @Element1, @Element2, etc.
59268
- * @example [
59269
- * {
59270
- * "reference_image_urls": [
59271
- * "https://v3b.fal.media/files/b/0a8cfd62/psPCmzrD1y9vDgdyNfKAL_glasses_back.png"
59272
- * ],
59273
- * "frontal_image_url": "https://v3b.fal.media/files/b/0a8cfd5f/-kZL-ha3Iuelku5IHXC-A_glasses.png"
59274
- * },
59275
- * {
59276
- * "video_url": "https://v3b.fal.media/files/b/0a8cfd66/b03SOiQvKLlFx_jqdNZ9z_child_video.mp4"
59277
- * }
59278
- * ]
59279
- */
59280
- elements?: Components.KlingV3ComboElementInput[];
59281
- /**
59282
- * End Image Url
59283
- * @description URL of the image to be used for the end of the video
59284
- */
59285
- end_image_url?: string;
59286
- /**
59287
- * Generate Audio
59288
- * @description Whether to generate native audio for the video. Supports Chinese and English voice output. Other languages are automatically translated to English. For English speech, use lowercase letters; for acronyms or proper nouns, use uppercase.
59289
- * @default true
59290
- */
59291
- generate_audio?: boolean;
59292
- /**
59293
- * Multi Prompt
59294
- * @description List of prompts for multi-shot video generation. If provided, divides the video into multiple shots.
59295
- * @example null
59296
- */
59297
- multi_prompt?: Components.KlingV3MultiPromptElement[];
59298
- /**
59299
- * Negative Prompt
59300
- * @default blur, distort, and low quality
59301
- */
59302
- negative_prompt?: string;
59303
- /**
59304
- * Prompt
59305
- * @description Text prompt for video generation. Either prompt or multi_prompt must be provided, but not both.
59306
- * @example The craftsman slowly examines the bowl, turning it gently in his weathered hands. His eyes reflect years of wisdom. Subtle smile forms on his face. Dust particles drift in warm light. Breathing motion, blinking eyes.
59271
+ * @example Camera slowly orbits around the vase. Soft light shifts across the ceramic surface. The pampas grass sways gently. Shadows move elegantly. Smooth continuous motion, premium feel.
59307
59272
  */
59308
59273
  prompt?: string;
59309
59274
  /**
@@ -59316,24 +59281,89 @@ export interface KlingVideoV3ProImageToVideoInput {
59316
59281
  /**
59317
59282
  * Start Image Url
59318
59283
  * @description URL of the image to be used for the video
59319
- * @example https://storage.googleapis.com/falserverless/example_inputs/kling-v3/pro-i2v/start_image.png
59284
+ * @example https://storage.googleapis.com/falserverless/example_inputs/kling-v3/standard-i2v/start_image.png
59320
59285
  */
59321
59286
  start_image_url: string;
59322
59287
  }
59323
59288
 
59324
- export interface KlingVideoV3ProImageToVideoOutput {
59289
+ export interface KlingVideoV3StandardImageToVideoOutput {
59325
59290
  /**
59326
59291
  * @description The generated video
59327
59292
  * @example {
59328
59293
  * "file_name": "out.mp4",
59294
+ * "file_size": 3149129,
59329
59295
  * "content_type": "video/mp4",
59330
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/pro-i2v/out.mp4",
59331
- * "file_size": 8431922
59296
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-v3/standard-i2v/out.mp4"
59297
+ * }
59298
+ */
59299
+ video: Components.File;
59300
+ }
59301
+
59302
+ export interface KlingVideoV3ProTextToVideoInput extends SharedType_4ae {}
59303
+
59304
+ export interface KlingVideoV3ProTextToVideoOutput extends SharedType_893 {}
59305
+
59306
+ export interface KlingVideoV3ProMotionControlInput {
59307
+ /**
59308
+ * Character Orientation
59309
+ * @description Controls whether the output character's orientation matches the reference image or video. 'video': orientation matches reference video - better for complex motions (max 30s). 'image': orientation matches reference image - better for following camera movements (max 10s).
59310
+ * @example image
59311
+ * @enum {string}
59312
+ */
59313
+ character_orientation: 'image' | 'video';
59314
+ /**
59315
+ * Elements
59316
+ * @description Optional element for facial consistency binding. Upload a facial element to enhance identity preservation in the generated video. Only 1 element is supported. Reference in prompt as @Element1. Element binding is only supported when character_orientation is 'video'.
59317
+ * @example null
59318
+ */
59319
+ elements?: Components.KlingV3ImageElementInput[];
59320
+ /**
59321
+ * Image Url
59322
+ * @description Reference image URL. The characters, backgrounds, and other elements in the generated video are based on this reference image. Characters should have clear body proportions, avoid occlusion, and occupy more than 5% of the image area.
59323
+ * @example https://v3b.fal.media/files/b/0a90ffa7/TNErq9yD7ZxGRATjfAqnh_EIgJSN67.png
59324
+ */
59325
+ image_url: string;
59326
+ /**
59327
+ * Keep Original Sound
59328
+ * @description Whether to keep the original sound from the reference video.
59329
+ * @default true
59330
+ */
59331
+ keep_original_sound?: boolean;
59332
+ /**
59333
+ * Prompt
59334
+ * @example A man dancing
59335
+ */
59336
+ prompt?: string;
59337
+ /**
59338
+ * Video Url
59339
+ * @description Reference video URL. The character actions in the generated video will be consistent with this reference video. Should contain a realistic style character with entire body or upper body visible, including head, without obstruction. Duration limit depends on character_orientation: 10s max for 'image', 30s max for 'video'.
59340
+ * @example https://v3b.fal.media/files/b/0a90ff92/hklvF__w53diz6Rve7f5__JuDW2xl0mr6sJ_Kjz3Vxe_vidoeook%20(1)_1.mp4
59341
+ */
59342
+ video_url: string;
59343
+ }
59344
+
59345
+ export interface KlingVideoV3ProMotionControlOutput {
59346
+ /**
59347
+ * @description The generated video
59348
+ * @example {
59349
+ * "url": "https://v3b.fal.media/files/b/0a90ffb9/CnmmxIvK05VAq4gG8WiEQ_output.mp4"
59332
59350
  * }
59333
59351
  */
59334
59352
  video: Components.File;
59335
59353
  }
59336
59354
 
59355
+ export interface KlingVideoV3ProImageToVideoInput extends SharedType_8e1 {}
59356
+
59357
+ export interface KlingVideoV3ProImageToVideoOutput extends SharedType_dec {}
59358
+
59359
+ export interface KlingVideoV34kTextToVideoInput extends SharedType_4ae {}
59360
+
59361
+ export interface KlingVideoV34kTextToVideoOutput extends SharedType_893 {}
59362
+
59363
+ export interface KlingVideoV34kImageToVideoInput extends SharedType_8e1 {}
59364
+
59365
+ export interface KlingVideoV34kImageToVideoOutput extends SharedType_dec {}
59366
+
59337
59367
  export interface KlingVideoV2MasterTextToVideoInput {
59338
59368
  /**
59339
59369
  * Aspect Ratio
@@ -59423,7 +59453,7 @@ export interface KlingVideoV2MasterImageToVideoOutput {
59423
59453
 
59424
59454
  export interface KlingVideoV26StandardMotionControlInput extends SharedType_778 {}
59425
59455
 
59426
- export interface KlingVideoV26StandardMotionControlOutput extends SharedType_a2f {}
59456
+ export interface KlingVideoV26StandardMotionControlOutput extends SharedType_bc6 {}
59427
59457
 
59428
59458
  export interface KlingVideoV26ProTextToVideoInput {
59429
59459
  /**
@@ -59470,9 +59500,9 @@ export interface KlingVideoV26ProTextToVideoOutput {
59470
59500
  * @description The generated video
59471
59501
  * @example {
59472
59502
  * "file_name": "output.mp4",
59503
+ * "file_size": 8195664,
59473
59504
  * "content_type": "video/mp4",
59474
- * "url": "https://v3b.fal.media/files/b/0a84ab71/8hPbLs7n59WhWY-BN69yX_output.mp4",
59475
- * "file_size": 8195664
59505
+ * "url": "https://v3b.fal.media/files/b/0a84ab71/8hPbLs7n59WhWY-BN69yX_output.mp4"
59476
59506
  * }
59477
59507
  */
59478
59508
  video: Components.File;
@@ -59480,7 +59510,7 @@ export interface KlingVideoV26ProTextToVideoOutput {
59480
59510
 
59481
59511
  export interface KlingVideoV26ProMotionControlInput extends SharedType_778 {}
59482
59512
 
59483
- export interface KlingVideoV26ProMotionControlOutput extends SharedType_a2f {}
59513
+ export interface KlingVideoV26ProMotionControlOutput extends SharedType_bc6 {}
59484
59514
 
59485
59515
  export interface KlingVideoV26ProImageToVideoInput {
59486
59516
  /**
@@ -59529,9 +59559,9 @@ export interface KlingVideoV26ProImageToVideoOutput {
59529
59559
  * @description The generated video
59530
59560
  * @example {
59531
59561
  * "file_name": "output.mp4",
59562
+ * "file_size": 11814817,
59532
59563
  * "content_type": "video/mp4",
59533
- * "url": "https://v3b.fal.media/files/b/0a84ab51/Qr1twf8UgtD5rZHpNXC2P_output.mp4",
59534
- * "file_size": 11814817
59564
+ * "url": "https://v3b.fal.media/files/b/0a84ab51/Qr1twf8UgtD5rZHpNXC2P_output.mp4"
59535
59565
  * }
59536
59566
  */
59537
59567
  video: Components.File;
@@ -59555,7 +59585,7 @@ export interface KlingVideoV25TurboStandardImageToVideoInput {
59555
59585
  /**
59556
59586
  * Image Url
59557
59587
  * @description URL of the image to be used for the video
59558
- * @example https://storage.googleapis.com/falserverless/example_inputs/kling_v25_std_i2v_input.png
59588
+ * @example https://v3b.fal.media/files/b/0a975417/w4qtfMTu-mh_KUgHIZNAH__4BUACOxwlMAEVXDfeYbj_2UxyAg3W.jpg
59559
59589
  */
59560
59590
  image_url: string;
59561
59591
  /**
@@ -59565,7 +59595,7 @@ export interface KlingVideoV25TurboStandardImageToVideoInput {
59565
59595
  negative_prompt?: string;
59566
59596
  /**
59567
59597
  * Prompt
59568
- * @example In a dimly lit room, a playful cat's eyes light up, fixated on a dancing red dot. With boundless energy, it pounces and leaps, chasing the elusive beam across the floor and up the walls. The simple joy of the hunt unfolds in clear, uncomplicated visuals.
59598
+ * @example Fine grains of salt drift across the flats in a slow, low wind, streaming past the figure's feet. The figure's robe ripples. Light crawls down the face of the monolith as the sun rises millimeter by millimeter a slow wash of coral replacing indigo. The figure tilts their head upward. Camera creeps forward almost imperceptibly. Monumental, spiritual, glacial.
59569
59599
  */
59570
59600
  prompt: string;
59571
59601
  }
@@ -59574,7 +59604,10 @@ export interface KlingVideoV25TurboStandardImageToVideoOutput {
59574
59604
  /**
59575
59605
  * @description The generated video
59576
59606
  * @example {
59577
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling_v25_std_i2v_output.mp4"
59607
+ * "file_name": "output.mp4",
59608
+ * "file_size": 16536912,
59609
+ * "content_type": "video/mp4",
59610
+ * "url": "https://v3b.fal.media/files/b/0a97541e/EiyjY6_Fjf7XPgR7nUli5_output.mp4"
59578
59611
  * }
59579
59612
  */
59580
59613
  video: Components.File;
@@ -60074,7 +60107,7 @@ export interface KlingVideoV16StandardImageToVideoOutput extends SharedType_94e
60074
60107
 
60075
60108
  export interface KlingVideoV16StandardElementsInput extends SharedType_6bb {}
60076
60109
 
60077
- export interface KlingVideoV16StandardElementsOutput extends SharedType_5ce {}
60110
+ export interface KlingVideoV16StandardElementsOutput extends SharedType_0a8 {}
60078
60111
 
60079
60112
  export interface KlingVideoV16StandardEffectsInput extends SharedType_9db {}
60080
60113
 
@@ -60132,7 +60165,7 @@ export interface KlingVideoV16ProImageToVideoOutput extends SharedType_94e {}
60132
60165
 
60133
60166
  export interface KlingVideoV16ProElementsInput extends SharedType_6bb {}
60134
60167
 
60135
- export interface KlingVideoV16ProElementsOutput extends SharedType_5ce {}
60168
+ export interface KlingVideoV16ProElementsOutput extends SharedType_0a8 {}
60136
60169
 
60137
60170
  export interface KlingVideoV16ProEffectsInput extends SharedType_9db {}
60138
60171
 
@@ -60276,9 +60309,9 @@ export interface KlingVideoO3StandardVideoToVideoReferenceOutput {
60276
60309
  * @description The generated video.
60277
60310
  * @example {
60278
60311
  * "file_name": "output.mp4",
60312
+ * "file_size": 7992288,
60279
60313
  * "content_type": "video/mp4",
60280
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/standard-v2v-reference/output.mp4",
60281
- * "file_size": 7992288
60314
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/standard-v2v-reference/output.mp4"
60282
60315
  * }
60283
60316
  */
60284
60317
  video: Components.File;
@@ -60336,9 +60369,9 @@ export interface KlingVideoO3StandardVideoToVideoEditOutput {
60336
60369
  * @description The generated video.
60337
60370
  * @example {
60338
60371
  * "file_name": "output.mp4",
60372
+ * "file_size": 4322769,
60339
60373
  * "content_type": "video/mp4",
60340
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/standard-v2v-edit/output.mp4",
60341
- * "file_size": 4322769
60374
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/standard-v2v-edit/output.mp4"
60342
60375
  * }
60343
60376
  */
60344
60377
  video: Components.File;
@@ -60346,7 +60379,7 @@ export interface KlingVideoO3StandardVideoToVideoEditOutput {
60346
60379
 
60347
60380
  export interface KlingVideoO3StandardTextToVideoInput extends SharedType_25d {}
60348
60381
 
60349
- export interface KlingVideoO3StandardTextToVideoOutput extends SharedType_c91 {}
60382
+ export interface KlingVideoO3StandardTextToVideoOutput extends SharedType_f4a {}
60350
60383
 
60351
60384
  export interface KlingVideoO3StandardReferenceToVideoInput {
60352
60385
  /**
@@ -60434,9 +60467,9 @@ export interface KlingVideoO3StandardReferenceToVideoOutput {
60434
60467
  * @description The generated video.
60435
60468
  * @example {
60436
60469
  * "file_name": "output.mp4",
60470
+ * "file_size": 3192162,
60437
60471
  * "content_type": "video/mp4",
60438
- * "url": "https://v3b.fal.media/files/b/0a8d200d/ejCxI5DalzOPlP4yf6uP3_output.mp4",
60439
- * "file_size": 3192162
60472
+ * "url": "https://v3b.fal.media/files/b/0a8d200d/ejCxI5DalzOPlP4yf6uP3_output.mp4"
60440
60473
  * }
60441
60474
  */
60442
60475
  video: Components.File;
@@ -60444,7 +60477,7 @@ export interface KlingVideoO3StandardReferenceToVideoOutput {
60444
60477
 
60445
60478
  export interface KlingVideoO3StandardImageToVideoInput extends SharedType_816 {}
60446
60479
 
60447
- export interface KlingVideoO3StandardImageToVideoOutput extends SharedType_24e {}
60480
+ export interface KlingVideoO3StandardImageToVideoOutput extends SharedType_5081 {}
60448
60481
 
60449
60482
  export interface KlingVideoO3ProVideoToVideoReferenceInput {
60450
60483
  /**
@@ -60516,9 +60549,9 @@ export interface KlingVideoO3ProVideoToVideoReferenceOutput {
60516
60549
  * @description The generated video.
60517
60550
  * @example {
60518
60551
  * "file_name": "output.mp4",
60552
+ * "file_size": 15809901,
60519
60553
  * "content_type": "video/mp4",
60520
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/pro-v2v-reference/output.mp4",
60521
- * "file_size": 15809901
60554
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/pro-v2v-reference/output.mp4"
60522
60555
  * }
60523
60556
  */
60524
60557
  video: Components.File;
@@ -60578,9 +60611,9 @@ export interface KlingVideoO3ProVideoToVideoEditOutput {
60578
60611
  * @description The generated video.
60579
60612
  * @example {
60580
60613
  * "file_name": "output.mp4",
60614
+ * "file_size": 4322769,
60581
60615
  * "content_type": "video/mp4",
60582
- * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/pro-v2v-edit/output.mp4",
60583
- * "file_size": 4322769
60616
+ * "url": "https://storage.googleapis.com/falserverless/example_outputs/kling-o3/pro-v2v-edit/output.mp4"
60584
60617
  * }
60585
60618
  */
60586
60619
  video: Components.File;
@@ -60588,7 +60621,7 @@ export interface KlingVideoO3ProVideoToVideoEditOutput {
60588
60621
 
60589
60622
  export interface KlingVideoO3ProTextToVideoInput extends SharedType_25d {}
60590
60623
 
60591
- export interface KlingVideoO3ProTextToVideoOutput extends SharedType_c91 {}
60624
+ export interface KlingVideoO3ProTextToVideoOutput extends SharedType_f4a {}
60592
60625
 
60593
60626
  export interface KlingVideoO3ProReferenceToVideoInput {
60594
60627
  /**
@@ -60668,54 +60701,120 @@ export interface KlingVideoO3ProReferenceToVideoInput {
60668
60701
  start_image_url?: string;
60669
60702
  }
60670
60703
 
60671
- export interface KlingVideoO3ProReferenceToVideoOutput {
60704
+ export interface KlingVideoO3ProReferenceToVideoOutput extends SharedType_5ad {}
60705
+
60706
+ export interface KlingVideoO3ProImageToVideoInput extends SharedType_816 {}
60707
+
60708
+ export interface KlingVideoO3ProImageToVideoOutput extends SharedType_5081 {}
60709
+
60710
+ export interface KlingVideoO34kTextToVideoInput extends SharedType_25d {}
60711
+
60712
+ export interface KlingVideoO34kTextToVideoOutput extends SharedType_f4a {}
60713
+
60714
+ export interface KlingVideoO34kReferenceToVideoInput {
60672
60715
  /**
60673
- * @description The generated video.
60674
- * @example {
60675
- * "file_name": "output.mp4",
60676
- * "content_type": "video/mp4",
60677
- * "url": "https://v3b.fal.media/files/b/0a8d1c8a/ZxdKrvPb3CQEmeuS-u_kU_output.mp4",
60678
- * "file_size": 18468404
60679
- * }
60716
+ * Aspect Ratio
60717
+ * @description The aspect ratio of the generated video frame.
60718
+ * @default 16:9
60719
+ * @enum {string}
60680
60720
  */
60681
- video: Components.File;
60721
+ aspect_ratio?: '16:9' | '9:16' | '1:1';
60722
+ /**
60723
+ * Duration
60724
+ * @description Video duration in seconds (3-15s).
60725
+ * @default 5
60726
+ * @example 8
60727
+ * @enum {string}
60728
+ */
60729
+ duration?: '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15';
60730
+ /**
60731
+ * Elements
60732
+ * @description Elements (characters/objects) to include. Reference in prompt as @Element1, @Element2.
60733
+ * @example null
60734
+ */
60735
+ elements?: Components.KlingV3ComboElementInput[];
60736
+ /**
60737
+ * End Image Url
60738
+ * @description Image to use as the last frame of the video.
60739
+ * @example https://v3b.fal.media/files/b/tiger/BwHi22qoQnqaTNMMhe533.png
60740
+ */
60741
+ end_image_url?: string;
60742
+ /**
60743
+ * Generate Audio
60744
+ * @description Whether to generate native audio for the video.
60745
+ * @default false
60746
+ */
60747
+ generate_audio?: boolean;
60748
+ /**
60749
+ * Image Urls
60750
+ * @description Reference images for style/appearance. Reference in prompt as @Image1, @Image2, etc. Maximum 7 total (elements + reference images) is allowed.
60751
+ * @example null
60752
+ */
60753
+ image_urls?: string[];
60754
+ /**
60755
+ * Multi Prompt
60756
+ * @description List of prompts for multi-shot video generation.
60757
+ * @example null
60758
+ */
60759
+ multi_prompt?: Components.KlingV3MultiPromptElement[];
60760
+ /**
60761
+ * Prompt
60762
+ * @description Text prompt for video generation. Either prompt or multi_prompt must be provided, but not both.
60763
+ * @example @Element1 and @Element2 enters the scene from two sides. Elephant starts to play with the ball
60764
+ */
60765
+ prompt?: string;
60766
+ /**
60767
+ * Shot Type
60768
+ * @description The type of multi-shot video generation.
60769
+ * @default customize
60770
+ * @constant
60771
+ */
60772
+ shot_type?: 'customize';
60773
+ /**
60774
+ * Start Image Url
60775
+ * @description Image to use as the first frame of the video.
60776
+ * @example https://v3b.fal.media/files/b/rabbit/NaslJIC7F2WodS6DFZRRJ.png
60777
+ */
60778
+ start_image_url?: string;
60682
60779
  }
60683
60780
 
60684
- export interface KlingVideoO3ProImageToVideoInput extends SharedType_816 {}
60781
+ export interface KlingVideoO34kReferenceToVideoOutput extends SharedType_5ad {}
60782
+
60783
+ export interface KlingVideoO34kImageToVideoInput extends SharedType_816 {}
60685
60784
 
60686
- export interface KlingVideoO3ProImageToVideoOutput extends SharedType_24e {}
60785
+ export interface KlingVideoO34kImageToVideoOutput extends SharedType_5081 {}
60687
60786
 
60688
60787
  export interface KlingVideoO1VideoToVideoReferenceInput extends SharedType_cc5 {}
60689
60788
 
60690
- export interface KlingVideoO1VideoToVideoReferenceOutput extends SharedType_6c1 {}
60789
+ export interface KlingVideoO1VideoToVideoReferenceOutput extends SharedType_5c7 {}
60691
60790
 
60692
60791
  export interface KlingVideoO1VideoToVideoEditInput extends SharedType_bda {}
60693
60792
 
60694
- export interface KlingVideoO1VideoToVideoEditOutput extends SharedType_a42 {}
60793
+ export interface KlingVideoO1VideoToVideoEditOutput extends SharedType_575 {}
60695
60794
 
60696
60795
  export interface KlingVideoO1StandardVideoToVideoReferenceInput extends SharedType_cc5 {}
60697
60796
 
60698
- export interface KlingVideoO1StandardVideoToVideoReferenceOutput extends SharedType_6c1 {}
60797
+ export interface KlingVideoO1StandardVideoToVideoReferenceOutput extends SharedType_5c7 {}
60699
60798
 
60700
60799
  export interface KlingVideoO1StandardVideoToVideoEditInput extends SharedType_bda {}
60701
60800
 
60702
- export interface KlingVideoO1StandardVideoToVideoEditOutput extends SharedType_a42 {}
60801
+ export interface KlingVideoO1StandardVideoToVideoEditOutput extends SharedType_575 {}
60703
60802
 
60704
60803
  export interface KlingVideoO1StandardReferenceToVideoInput extends SharedType_ca4 {}
60705
60804
 
60706
- export interface KlingVideoO1StandardReferenceToVideoOutput extends SharedType_acf {}
60805
+ export interface KlingVideoO1StandardReferenceToVideoOutput extends SharedType_515 {}
60707
60806
 
60708
60807
  export interface KlingVideoO1StandardImageToVideoInput extends SharedType_732 {}
60709
60808
 
60710
- export interface KlingVideoO1StandardImageToVideoOutput extends SharedType_233 {}
60809
+ export interface KlingVideoO1StandardImageToVideoOutput extends SharedType_26d {}
60711
60810
 
60712
60811
  export interface KlingVideoO1ReferenceToVideoInput extends SharedType_ca4 {}
60713
60812
 
60714
- export interface KlingVideoO1ReferenceToVideoOutput extends SharedType_acf {}
60813
+ export interface KlingVideoO1ReferenceToVideoOutput extends SharedType_515 {}
60715
60814
 
60716
60815
  export interface KlingVideoO1ImageToVideoInput extends SharedType_732 {}
60717
60816
 
60718
- export interface KlingVideoO1ImageToVideoOutput extends SharedType_233 {}
60817
+ export interface KlingVideoO1ImageToVideoOutput extends SharedType_26d {}
60719
60818
 
60720
60819
  export interface KlingVideoLipsyncTextToVideoInput {
60721
60820
  /**
@@ -66292,6 +66391,118 @@ export interface IdeogramUpscaleOutput {
66292
66391
  seed: number;
66293
66392
  }
66294
66393
 
66394
+ export interface IdeogramCustomModelsGenerateInput {
66395
+ /**
66396
+ * Aspect Ratio
66397
+ * @description The aspect ratio of the generated image.
66398
+ * @default 1:1
66399
+ * @enum {string}
66400
+ */
66401
+ aspect_ratio?:
66402
+ | '1:3'
66403
+ | '3:1'
66404
+ | '1:2'
66405
+ | '2:1'
66406
+ | '9:16'
66407
+ | '16:9'
66408
+ | '10:16'
66409
+ | '16:10'
66410
+ | '2:3'
66411
+ | '3:2'
66412
+ | '3:4'
66413
+ | '4:3'
66414
+ | '4:5'
66415
+ | '5:4'
66416
+ | '1:1';
66417
+ /**
66418
+ * Expand Prompt
66419
+ * @description Whether to expand the prompt with MagicPrompt functionality.
66420
+ * @default true
66421
+ */
66422
+ expand_prompt?: boolean;
66423
+ /**
66424
+ * Model Id
66425
+ * @description The id of a trained custom model returned by /train. The model must have finished training (status COMPLETED).
66426
+ */
66427
+ model_id: string;
66428
+ /**
66429
+ * Negative Prompt
66430
+ * @description Description of what to exclude from the image. Descriptions in the prompt take precedence over descriptions in the negative prompt.
66431
+ * @default
66432
+ */
66433
+ negative_prompt?: string;
66434
+ /**
66435
+ * Num Images
66436
+ * @description Number of images to generate.
66437
+ * @default 1
66438
+ */
66439
+ num_images?: number;
66440
+ /**
66441
+ * Prompt
66442
+ * @description Text prompt describing the image to generate.
66443
+ * @example A photo in my custom style
66444
+ */
66445
+ prompt: string;
66446
+ /**
66447
+ * Rendering Speed
66448
+ * @description The rendering speed to use.
66449
+ * @default BALANCED
66450
+ * @enum {string}
66451
+ */
66452
+ rendering_speed?: 'TURBO' | 'BALANCED' | 'QUALITY';
66453
+ /**
66454
+ * Seed
66455
+ * @description Seed for the random number generator.
66456
+ */
66457
+ seed?: number;
66458
+ /**
66459
+ * Sync Mode
66460
+ * @description If `True`, the media will be returned as a data URI and the output data won't be available in the request history.
66461
+ * @default false
66462
+ */
66463
+ sync_mode?: boolean;
66464
+ }
66465
+
66466
+ export interface IdeogramCustomModelsGenerateOutput {
66467
+ /**
66468
+ * Images
66469
+ * @description The generated images.
66470
+ * @example [
66471
+ * {
66472
+ * "url": "https://v3.fal.media/files/penguin/lHdRabS80guysb8Zw1kul_image.png"
66473
+ * }
66474
+ * ]
66475
+ */
66476
+ images: Components.File[];
66477
+ /**
66478
+ * Seed
66479
+ * @description Seed used for the random number generator.
66480
+ * @example 123456
66481
+ */
66482
+ seed: number;
66483
+ }
66484
+
66485
+ export interface IdeogramCustomModelsInput {
66486
+ /**
66487
+ * Images Data Url
66488
+ * @description URL of a ZIP archive of training images. The archive must contain between 10 and 100 images (JPEG, PNG, or WebP). You may include caption sidecar files (``<stem>.txt``) to guide training -- captions are matched to images by filename stem.
66489
+ */
66490
+ images_data_url: string;
66491
+ }
66492
+
66493
+ export interface IdeogramCustomModelsOutput {
66494
+ /**
66495
+ * Custom Model Uri
66496
+ * @description The trained model's URI. ``/generate`` resolves this automatically from the ``model_id``, but it is surfaced here for callers that use the ``custom_model_uri`` on the public Ideogram v3 generate endpoint directly.
66497
+ */
66498
+ custom_model_uri: string;
66499
+ /**
66500
+ * Model Id
66501
+ * @description The Ideogram model id. Pass this to /generate.
66502
+ */
66503
+ model_id: string;
66504
+ }
66505
+
66295
66506
  export interface IdeogramCharacterRemixInput {
66296
66507
  color_palette?: Components.ColorPalette;
66297
66508
  /**
@@ -66840,6 +67051,11 @@ export interface Hyper3dRodinV2Output {
66840
67051
  * }
66841
67052
  */
66842
67053
  model_mesh: Components.File;
67054
+ /**
67055
+ * Model Meshes
67056
+ * @description Additional generated 3D object files returned by Hyper3D besides model_mesh.
67057
+ */
67058
+ model_meshes?: Components.File[];
66843
67059
  /**
66844
67060
  * Seed
66845
67061
  * @description Seed value used for generation.
@@ -71166,8 +71382,8 @@ export interface HeygenAvatar4ImageToVideoOutput {
71166
71382
  /**
71167
71383
  * @description The generated video file
71168
71384
  * @example {
71169
- * "url": "https://v3b.fal.media/files/b/0a900636/DUES0_z4i7FWnife02ieH_output.mp4",
71170
71385
  * "file_name": "output.mp4",
71386
+ * "url": "https://v3b.fal.media/files/b/0a900636/DUES0_z4i7FWnife02ieH_output.mp4",
71171
71387
  * "file_size": 2466524,
71172
71388
  * "content_type": "video/mp4"
71173
71389
  * }
@@ -71408,10 +71624,10 @@ export interface GptImage15EditOutput {
71408
71624
  * @description The generated images.
71409
71625
  * @example [
71410
71626
  * {
71411
- * "content_type": "image/png",
71412
71627
  * "width": 1024,
71413
- * "url": "https://v3b.fal.media/files/b/0a8691b0/yUt7tifLSbg1WzWWgfj2o.png",
71414
71628
  * "file_name": "yUt7tifLSbg1WzWWgfj2o.png",
71629
+ * "content_type": "image/png",
71630
+ * "url": "https://v3b.fal.media/files/b/0a8691b0/yUt7tifLSbg1WzWWgfj2o.png",
71415
71631
  * "height": 1024
71416
71632
  * }
71417
71633
  * ]
@@ -71475,10 +71691,10 @@ export interface GptImage15Output {
71475
71691
  * @description The generated images.
71476
71692
  * @example [
71477
71693
  * {
71478
- * "content_type": "image/png",
71479
71694
  * "width": 1024,
71480
- * "url": "https://v3b.fal.media/files/b/0a869129/EnWrO3XWjPE0nxBDpaQrj.png",
71481
71695
  * "file_name": "EnWrO3XWjPE0nxBDpaQrj.png",
71696
+ * "content_type": "image/png",
71697
+ * "url": "https://v3b.fal.media/files/b/0a869129/EnWrO3XWjPE0nxBDpaQrj.png",
71482
71698
  * "height": 1024
71483
71699
  * }
71484
71700
  * ]
@@ -72614,8 +72830,8 @@ export interface Gemini3ProImagePreviewEditOutput {
72614
72830
  * @example [
72615
72831
  * {
72616
72832
  * "url": "https://storage.googleapis.com/falserverless/example_outputs/nano-banana-pro-edit-output.png",
72617
- * "content_type": "image/png",
72618
- * "file_name": "nano-banana-pro-edit-output.png"
72833
+ * "file_name": "nano-banana-pro-edit-output.png",
72834
+ * "content_type": "image/png"
72619
72835
  * }
72620
72836
  * ]
72621
72837
  */
@@ -72636,8 +72852,8 @@ export interface Gemini3ProImagePreviewOutput {
72636
72852
  * @example [
72637
72853
  * {
72638
72854
  * "url": "https://storage.googleapis.com/falserverless/example_outputs/nano-banana-pro-t2i-output.png",
72639
- * "content_type": "image/png",
72640
- * "file_name": "nano-banana-pro-t2i-output.png"
72855
+ * "file_name": "nano-banana-pro-t2i-output.png",
72856
+ * "content_type": "image/png"
72641
72857
  * }
72642
72858
  * ]
72643
72859
  */
@@ -79927,11 +80143,11 @@ export interface Flux2TrainerV2EditInput extends SharedType_a3d {}
79927
80143
 
79928
80144
  export interface Flux2TrainerV2EditOutput extends SharedType_9a6 {}
79929
80145
 
79930
- export interface Flux2TrainerV2Input extends SharedType_e181 {}
80146
+ export interface Flux2TrainerV2Input extends SharedType_e18 {}
79931
80147
 
79932
80148
  export interface Flux2TrainerV2Output extends SharedType_9a6 {}
79933
80149
 
79934
- export interface Flux2TrainerInput extends SharedType_e181 {}
80150
+ export interface Flux2TrainerInput extends SharedType_e18 {}
79935
80151
 
79936
80152
  export interface Flux2TrainerOutput extends SharedType_9a6 {}
79937
80153
 
@@ -81444,7 +81660,7 @@ export interface Flux2Klein9bBaseTrainerEditInput extends SharedType_a3d {}
81444
81660
 
81445
81661
  export interface Flux2Klein9bBaseTrainerEditOutput extends SharedType_9a6 {}
81446
81662
 
81447
- export interface Flux2Klein9bBaseTrainerInput extends SharedType_e181 {}
81663
+ export interface Flux2Klein9bBaseTrainerInput extends SharedType_e18 {}
81448
81664
 
81449
81665
  export interface Flux2Klein9bBaseTrainerOutput extends SharedType_9a6 {}
81450
81666
 
@@ -81452,7 +81668,7 @@ export interface Flux2Klein4bBaseTrainerEditInput extends SharedType_a3d {}
81452
81668
 
81453
81669
  export interface Flux2Klein4bBaseTrainerEditOutput extends SharedType_9a6 {}
81454
81670
 
81455
- export interface Flux2Klein4bBaseTrainerInput extends SharedType_e181 {}
81671
+ export interface Flux2Klein4bBaseTrainerInput extends SharedType_e18 {}
81456
81672
 
81457
81673
  export interface Flux2Klein4bBaseTrainerOutput extends SharedType_9a6 {}
81458
81674
 
@@ -89142,6 +89358,63 @@ export interface ControlnextInput {
89142
89358
 
89143
89359
  export interface ControlnextOutput extends SharedType_751 {}
89144
89360
 
89361
+ export interface CohereTranscribeInput {
89362
+ /**
89363
+ * Audio Url
89364
+ * @description URL of the audio file to transcribe. Supported formats: mp3, mp4, mpeg, mpga, m4a, wav, webm, ogg, flac.
89365
+ * @example https://storage.googleapis.com/falserverless/model_tests/whisper/dinner_conversation.mp3
89366
+ */
89367
+ audio_url: string;
89368
+ /**
89369
+ * Language
89370
+ * @description Language of the audio (ISO 639-1 code). Supported: en, fr, de, it, es, pt, el, nl, pl, zh, ja, ko, vi, ar.
89371
+ * @default en
89372
+ * @enum {string}
89373
+ */
89374
+ language?:
89375
+ | 'en'
89376
+ | 'fr'
89377
+ | 'de'
89378
+ | 'it'
89379
+ | 'es'
89380
+ | 'pt'
89381
+ | 'el'
89382
+ | 'nl'
89383
+ | 'pl'
89384
+ | 'zh'
89385
+ | 'ja'
89386
+ | 'ko'
89387
+ | 'vi'
89388
+ | 'ar';
89389
+ /**
89390
+ * Max New Tokens
89391
+ * @description Maximum number of tokens to generate per audio chunk.
89392
+ * @default 256
89393
+ */
89394
+ max_new_tokens?: number;
89395
+ /**
89396
+ * Punctuation
89397
+ * @description Whether to include punctuation and capitalization in the output.
89398
+ * @default true
89399
+ */
89400
+ punctuation?: boolean;
89401
+ }
89402
+
89403
+ export interface CohereTranscribeOutput {
89404
+ /**
89405
+ * Text
89406
+ * @description Transcribed text from the audio file.
89407
+ */
89408
+ text: string;
89409
+ /**
89410
+ * Timings
89411
+ * @description Performance timing breakdown in seconds.
89412
+ */
89413
+ timings?: {
89414
+ [key: string]: number;
89415
+ };
89416
+ }
89417
+
89145
89418
  export interface Cogview4Input {
89146
89419
  /**
89147
89420
  * Enable Safety Checker