fal-endpoint-types 1.3.45 → 1.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/fal/endpoints/components.d.ts +27 -8
- package/types/fal/endpoints/index.d.ts +205 -10
- package/types/fal/endpoints/schema.d.ts +9902 -2146
package/package.json
CHANGED
|
@@ -1745,6 +1745,19 @@ export interface Validation {
|
|
|
1745
1745
|
prompt: string;
|
|
1746
1746
|
}
|
|
1747
1747
|
|
|
1748
|
+
export interface V2VValidation {
|
|
1749
|
+
/**
|
|
1750
|
+
* Prompt
|
|
1751
|
+
* @description The prompt to use for validation.
|
|
1752
|
+
*/
|
|
1753
|
+
prompt: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* Reference Video Url
|
|
1756
|
+
* @description URL to reference video for IC-LoRA validation. This is the input video that will be transformed.
|
|
1757
|
+
*/
|
|
1758
|
+
reference_video_url: string;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1748
1761
|
export interface UsageInfo_1 {
|
|
1749
1762
|
/**
|
|
1750
1763
|
* Decode Time Ms
|
|
@@ -3254,13 +3267,19 @@ export interface MoondreamInputParam {
|
|
|
3254
3267
|
prompt?: string;
|
|
3255
3268
|
}
|
|
3256
3269
|
|
|
3257
|
-
export interface
|
|
3270
|
+
export interface ModelUrls_3 {
|
|
3258
3271
|
fbx?: File;
|
|
3259
3272
|
glb?: File;
|
|
3260
3273
|
obj?: File;
|
|
3261
3274
|
usdz?: File;
|
|
3262
3275
|
}
|
|
3263
3276
|
|
|
3277
|
+
export interface ModelUrls_2 {
|
|
3278
|
+
base_model?: File;
|
|
3279
|
+
glb?: File;
|
|
3280
|
+
pbr_model?: File;
|
|
3281
|
+
}
|
|
3282
|
+
|
|
3264
3283
|
export interface ModelUrls_1 {
|
|
3265
3284
|
fbx?: File;
|
|
3266
3285
|
glb?: File;
|
|
@@ -3611,7 +3630,7 @@ export interface LoRAInput_2 {
|
|
|
3611
3630
|
export interface LoRAInput_1 {
|
|
3612
3631
|
/**
|
|
3613
3632
|
* Path
|
|
3614
|
-
* @description URL, HuggingFace repo ID (owner/repo) to
|
|
3633
|
+
* @description URL, HuggingFace repo ID (owner/repo), or local path to LoRA weights.
|
|
3615
3634
|
*/
|
|
3616
3635
|
path: string;
|
|
3617
3636
|
/**
|
|
@@ -3620,17 +3639,12 @@ export interface LoRAInput_1 {
|
|
|
3620
3639
|
* @default 1
|
|
3621
3640
|
*/
|
|
3622
3641
|
scale?: number;
|
|
3623
|
-
/**
|
|
3624
|
-
* Weight Name
|
|
3625
|
-
* @description Name of the LoRA weight. Only used if `path` is a HuggingFace repository, and is only required when the repository contains multiple LoRA weights.
|
|
3626
|
-
*/
|
|
3627
|
-
weight_name?: string;
|
|
3628
3642
|
}
|
|
3629
3643
|
|
|
3630
3644
|
export interface LoRAInput {
|
|
3631
3645
|
/**
|
|
3632
3646
|
* Path
|
|
3633
|
-
* @description URL, HuggingFace repo ID (owner/repo)
|
|
3647
|
+
* @description URL, HuggingFace repo ID (owner/repo) to lora weights.
|
|
3634
3648
|
*/
|
|
3635
3649
|
path: string;
|
|
3636
3650
|
/**
|
|
@@ -3639,6 +3653,11 @@ export interface LoRAInput {
|
|
|
3639
3653
|
* @default 1
|
|
3640
3654
|
*/
|
|
3641
3655
|
scale?: number;
|
|
3656
|
+
/**
|
|
3657
|
+
* Weight Name
|
|
3658
|
+
* @description Name of the LoRA weight. Only used if `path` is a HuggingFace repository, and is only required when the repository contains multiple LoRA weights.
|
|
3659
|
+
*/
|
|
3660
|
+
weight_name?: string;
|
|
3642
3661
|
}
|
|
3643
3662
|
|
|
3644
3663
|
export interface LightingDetails {
|
|
@@ -134,6 +134,31 @@ declare global {
|
|
|
134
134
|
output: falEndpoints.Tripo3dTripoV25ImageTo3dOutput;
|
|
135
135
|
};
|
|
136
136
|
|
|
137
|
+
'tripo3d/p1/text-to-3d': {
|
|
138
|
+
input: falEndpoints.Tripo3dP1TextTo3dInput;
|
|
139
|
+
output: falEndpoints.Tripo3dP1TextTo3dOutput;
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
'tripo3d/p1/image-to-3d': {
|
|
143
|
+
input: falEndpoints.Tripo3dP1ImageTo3dInput;
|
|
144
|
+
output: falEndpoints.Tripo3dP1ImageTo3dOutput;
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
'tripo3d/h3.1/text-to-3d': {
|
|
148
|
+
input: falEndpoints.Tripo3dH31TextTo3dInput;
|
|
149
|
+
output: falEndpoints.Tripo3dH31TextTo3dOutput;
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
'tripo3d/h3.1/multiview-to-3d': {
|
|
153
|
+
input: falEndpoints.Tripo3dH31MultiviewTo3dInput;
|
|
154
|
+
output: falEndpoints.Tripo3dH31MultiviewTo3dOutput;
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
'tripo3d/h3.1/image-to-3d': {
|
|
158
|
+
input: falEndpoints.Tripo3dH31ImageTo3dInput;
|
|
159
|
+
output: falEndpoints.Tripo3dH31ImageTo3dOutput;
|
|
160
|
+
};
|
|
161
|
+
|
|
137
162
|
'sonauto/v2/text-to-music': {
|
|
138
163
|
input: falEndpoints.SonautoV2TextToMusicInput;
|
|
139
164
|
output: falEndpoints.SonautoV2TextToMusicOutput;
|
|
@@ -299,6 +324,11 @@ declare global {
|
|
|
299
324
|
output: falEndpoints.MireloaiSfxV15VideoToAudioOutput;
|
|
300
325
|
};
|
|
301
326
|
|
|
327
|
+
'imagineart/imagineart-2.0-preview/text-to-image': {
|
|
328
|
+
input: falEndpoints.ImagineartImagineart20PreviewTextToImageInput;
|
|
329
|
+
output: falEndpoints.ImagineartImagineart20PreviewTextToImageOutput;
|
|
330
|
+
};
|
|
331
|
+
|
|
302
332
|
'imagineart/imagineart-1.5-pro-preview/text-to-image': {
|
|
303
333
|
input: falEndpoints.ImagineartImagineart15ProPreviewTextToImageInput;
|
|
304
334
|
output: falEndpoints.ImagineartImagineart15ProPreviewTextToImageOutput;
|
|
@@ -794,6 +824,11 @@ declare global {
|
|
|
794
824
|
output: falEndpoints.Wan22ImageTrainerOutput;
|
|
795
825
|
};
|
|
796
826
|
|
|
827
|
+
'fal-ai/void-video-inpainting': {
|
|
828
|
+
input: falEndpoints.VoidVideoInpaintingInput;
|
|
829
|
+
output: falEndpoints.VoidVideoInpaintingOutput;
|
|
830
|
+
};
|
|
831
|
+
|
|
797
832
|
'fal-ai/vidu/template-to-video': {
|
|
798
833
|
input: falEndpoints.ViduTemplateToVideoInput;
|
|
799
834
|
output: falEndpoints.ViduTemplateToVideoOutput;
|
|
@@ -2379,6 +2414,11 @@ declare global {
|
|
|
2379
2414
|
output: falEndpoints.ObjectRemovalOutput;
|
|
2380
2415
|
};
|
|
2381
2416
|
|
|
2417
|
+
'fal-ai/nucleus-image': {
|
|
2418
|
+
input: falEndpoints.NucleusImageInput;
|
|
2419
|
+
output: falEndpoints.NucleusImageOutput;
|
|
2420
|
+
};
|
|
2421
|
+
|
|
2382
2422
|
'fal-ai/nova-sr': {
|
|
2383
2423
|
input: falEndpoints.NovaSrInput;
|
|
2384
2424
|
output: falEndpoints.NovaSrOutput;
|
|
@@ -2899,6 +2939,16 @@ declare global {
|
|
|
2899
2939
|
output: falEndpoints.Ltxv13b098DistilledOutput;
|
|
2900
2940
|
};
|
|
2901
2941
|
|
|
2942
|
+
'fal-ai/ltx23-video-trainer': {
|
|
2943
|
+
input: falEndpoints.Ltx23VideoTrainerInput;
|
|
2944
|
+
output: falEndpoints.Ltx23VideoTrainerOutput;
|
|
2945
|
+
};
|
|
2946
|
+
|
|
2947
|
+
'fal-ai/ltx23-v2v-trainer': {
|
|
2948
|
+
input: falEndpoints.Ltx23V2vTrainerInput;
|
|
2949
|
+
output: falEndpoints.Ltx23V2vTrainerOutput;
|
|
2950
|
+
};
|
|
2951
|
+
|
|
2902
2952
|
'fal-ai/ltx2-video-trainer': {
|
|
2903
2953
|
input: falEndpoints.Ltx2VideoTrainerInput;
|
|
2904
2954
|
output: falEndpoints.Ltx2VideoTrainerOutput;
|
|
@@ -3059,6 +3109,116 @@ declare global {
|
|
|
3059
3109
|
output: falEndpoints.Ltx23AudioToVideoOutput;
|
|
3060
3110
|
};
|
|
3061
3111
|
|
|
3112
|
+
'fal-ai/ltx-2.3-22b/video-to-video/lora': {
|
|
3113
|
+
input: falEndpoints.Ltx2322bVideoToVideoLoraInput;
|
|
3114
|
+
output: falEndpoints.Ltx2322bVideoToVideoLoraOutput;
|
|
3115
|
+
};
|
|
3116
|
+
|
|
3117
|
+
'fal-ai/ltx-2.3-22b/video-to-video': {
|
|
3118
|
+
input: falEndpoints.Ltx2322bVideoToVideoInput;
|
|
3119
|
+
output: falEndpoints.Ltx2322bVideoToVideoOutput;
|
|
3120
|
+
};
|
|
3121
|
+
|
|
3122
|
+
'fal-ai/ltx-2.3-22b/text-to-video/lora': {
|
|
3123
|
+
input: falEndpoints.Ltx2322bTextToVideoLoraInput;
|
|
3124
|
+
output: falEndpoints.Ltx2322bTextToVideoLoraOutput;
|
|
3125
|
+
};
|
|
3126
|
+
|
|
3127
|
+
'fal-ai/ltx-2.3-22b/text-to-video': {
|
|
3128
|
+
input: falEndpoints.Ltx2322bTextToVideoInput;
|
|
3129
|
+
output: falEndpoints.Ltx2322bTextToVideoOutput;
|
|
3130
|
+
};
|
|
3131
|
+
|
|
3132
|
+
'fal-ai/ltx-2.3-22b/reference-video-to-video/lora': {
|
|
3133
|
+
input: falEndpoints.Ltx2322bReferenceVideoToVideoLoraInput;
|
|
3134
|
+
output: falEndpoints.Ltx2322bReferenceVideoToVideoLoraOutput;
|
|
3135
|
+
};
|
|
3136
|
+
|
|
3137
|
+
'fal-ai/ltx-2.3-22b/reference-video-to-video': {
|
|
3138
|
+
input: falEndpoints.Ltx2322bReferenceVideoToVideoInput;
|
|
3139
|
+
output: falEndpoints.Ltx2322bReferenceVideoToVideoOutput;
|
|
3140
|
+
};
|
|
3141
|
+
|
|
3142
|
+
'fal-ai/ltx-2.3-22b/image-to-video/lora': {
|
|
3143
|
+
input: falEndpoints.Ltx2322bImageToVideoLoraInput;
|
|
3144
|
+
output: falEndpoints.Ltx2322bImageToVideoLoraOutput;
|
|
3145
|
+
};
|
|
3146
|
+
|
|
3147
|
+
'fal-ai/ltx-2.3-22b/image-to-video': {
|
|
3148
|
+
input: falEndpoints.Ltx2322bImageToVideoInput;
|
|
3149
|
+
output: falEndpoints.Ltx2322bImageToVideoOutput;
|
|
3150
|
+
};
|
|
3151
|
+
|
|
3152
|
+
'fal-ai/ltx-2.3-22b/extend-video/lora': {
|
|
3153
|
+
input: falEndpoints.Ltx2322bExtendVideoLoraInput;
|
|
3154
|
+
output: falEndpoints.Ltx2322bExtendVideoLoraOutput;
|
|
3155
|
+
};
|
|
3156
|
+
|
|
3157
|
+
'fal-ai/ltx-2.3-22b/extend-video': {
|
|
3158
|
+
input: falEndpoints.Ltx2322bExtendVideoInput;
|
|
3159
|
+
output: falEndpoints.Ltx2322bExtendVideoOutput;
|
|
3160
|
+
};
|
|
3161
|
+
|
|
3162
|
+
'fal-ai/ltx-2.3-22b/distilled/video-to-video/lora': {
|
|
3163
|
+
input: falEndpoints.Ltx2322bDistilledVideoToVideoLoraInput;
|
|
3164
|
+
output: falEndpoints.Ltx2322bDistilledVideoToVideoLoraOutput;
|
|
3165
|
+
};
|
|
3166
|
+
|
|
3167
|
+
'fal-ai/ltx-2.3-22b/distilled/video-to-video': {
|
|
3168
|
+
input: falEndpoints.Ltx2322bDistilledVideoToVideoInput;
|
|
3169
|
+
output: falEndpoints.Ltx2322bDistilledVideoToVideoOutput;
|
|
3170
|
+
};
|
|
3171
|
+
|
|
3172
|
+
'fal-ai/ltx-2.3-22b/distilled/text-to-video/lora': {
|
|
3173
|
+
input: falEndpoints.Ltx2322bDistilledTextToVideoLoraInput;
|
|
3174
|
+
output: falEndpoints.Ltx2322bDistilledTextToVideoLoraOutput;
|
|
3175
|
+
};
|
|
3176
|
+
|
|
3177
|
+
'fal-ai/ltx-2.3-22b/distilled/text-to-video': {
|
|
3178
|
+
input: falEndpoints.Ltx2322bDistilledTextToVideoInput;
|
|
3179
|
+
output: falEndpoints.Ltx2322bDistilledTextToVideoOutput;
|
|
3180
|
+
};
|
|
3181
|
+
|
|
3182
|
+
'fal-ai/ltx-2.3-22b/distilled/reference-video-to-video/lora': {
|
|
3183
|
+
input: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoLoraInput;
|
|
3184
|
+
output: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoLoraOutput;
|
|
3185
|
+
};
|
|
3186
|
+
|
|
3187
|
+
'fal-ai/ltx-2.3-22b/distilled/reference-video-to-video': {
|
|
3188
|
+
input: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoInput;
|
|
3189
|
+
output: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoOutput;
|
|
3190
|
+
};
|
|
3191
|
+
|
|
3192
|
+
'fal-ai/ltx-2.3-22b/distilled/image-to-video/lora': {
|
|
3193
|
+
input: falEndpoints.Ltx2322bDistilledImageToVideoLoraInput;
|
|
3194
|
+
output: falEndpoints.Ltx2322bDistilledImageToVideoLoraOutput;
|
|
3195
|
+
};
|
|
3196
|
+
|
|
3197
|
+
'fal-ai/ltx-2.3-22b/distilled/image-to-video': {
|
|
3198
|
+
input: falEndpoints.Ltx2322bDistilledImageToVideoInput;
|
|
3199
|
+
output: falEndpoints.Ltx2322bDistilledImageToVideoOutput;
|
|
3200
|
+
};
|
|
3201
|
+
|
|
3202
|
+
'fal-ai/ltx-2.3-22b/distilled/audio-to-video/lora': {
|
|
3203
|
+
input: falEndpoints.Ltx2322bDistilledAudioToVideoLoraInput;
|
|
3204
|
+
output: falEndpoints.Ltx2322bDistilledAudioToVideoLoraOutput;
|
|
3205
|
+
};
|
|
3206
|
+
|
|
3207
|
+
'fal-ai/ltx-2.3-22b/distilled/audio-to-video': {
|
|
3208
|
+
input: falEndpoints.Ltx2322bDistilledAudioToVideoInput;
|
|
3209
|
+
output: falEndpoints.Ltx2322bDistilledAudioToVideoOutput;
|
|
3210
|
+
};
|
|
3211
|
+
|
|
3212
|
+
'fal-ai/ltx-2.3-22b/audio-to-video/lora': {
|
|
3213
|
+
input: falEndpoints.Ltx2322bAudioToVideoLoraInput;
|
|
3214
|
+
output: falEndpoints.Ltx2322bAudioToVideoLoraOutput;
|
|
3215
|
+
};
|
|
3216
|
+
|
|
3217
|
+
'fal-ai/ltx-2.3-22b/audio-to-video': {
|
|
3218
|
+
input: falEndpoints.Ltx2322bAudioToVideoInput;
|
|
3219
|
+
output: falEndpoints.Ltx2322bAudioToVideoOutput;
|
|
3220
|
+
};
|
|
3221
|
+
|
|
3062
3222
|
'fal-ai/ltx-2-19b/video-to-video/lora': {
|
|
3063
3223
|
input: falEndpoints.Ltx219bVideoToVideoLoraInput;
|
|
3064
3224
|
output: falEndpoints.Ltx219bVideoToVideoLoraOutput;
|
|
@@ -4464,6 +4624,21 @@ declare global {
|
|
|
4464
4624
|
output: falEndpoints.HidreamE11Output;
|
|
4465
4625
|
};
|
|
4466
4626
|
|
|
4627
|
+
'fal-ai/heygen/v3/video-agent': {
|
|
4628
|
+
input: falEndpoints.HeygenV3VideoAgentInput;
|
|
4629
|
+
output: falEndpoints.HeygenV3VideoAgentOutput;
|
|
4630
|
+
};
|
|
4631
|
+
|
|
4632
|
+
'fal-ai/heygen/v3/lipsync/speed': {
|
|
4633
|
+
input: falEndpoints.HeygenV3LipsyncSpeedInput;
|
|
4634
|
+
output: falEndpoints.HeygenV3LipsyncSpeedOutput;
|
|
4635
|
+
};
|
|
4636
|
+
|
|
4637
|
+
'fal-ai/heygen/v3/lipsync/precision': {
|
|
4638
|
+
input: falEndpoints.HeygenV3LipsyncPrecisionInput;
|
|
4639
|
+
output: falEndpoints.HeygenV3LipsyncPrecisionOutput;
|
|
4640
|
+
};
|
|
4641
|
+
|
|
4467
4642
|
'fal-ai/heygen/v2/video-agent': {
|
|
4468
4643
|
input: falEndpoints.HeygenV2VideoAgentInput;
|
|
4469
4644
|
output: falEndpoints.HeygenV2VideoAgentOutput;
|
|
@@ -4574,6 +4749,11 @@ declare global {
|
|
|
4574
4749
|
output: falEndpoints.GeminiFlashEditOutput;
|
|
4575
4750
|
};
|
|
4576
4751
|
|
|
4752
|
+
'fal-ai/gemini-3.1-flash-tts': {
|
|
4753
|
+
input: falEndpoints.Gemini31FlashTtsInput;
|
|
4754
|
+
output: falEndpoints.Gemini31FlashTtsOutput;
|
|
4755
|
+
};
|
|
4756
|
+
|
|
4577
4757
|
'fal-ai/gemini-3.1-flash-image-preview/edit': {
|
|
4578
4758
|
input: falEndpoints.Gemini31FlashImagePreviewEditInput;
|
|
4579
4759
|
output: falEndpoints.Gemini31FlashImagePreviewEditOutput;
|
|
@@ -5514,6 +5694,31 @@ declare global {
|
|
|
5514
5694
|
output: falEndpoints.EsrganOutput;
|
|
5515
5695
|
};
|
|
5516
5696
|
|
|
5697
|
+
'fal-ai/ernie-image/turbo': {
|
|
5698
|
+
input: falEndpoints.ErnieImageTurboInput;
|
|
5699
|
+
output: falEndpoints.ErnieImageTurboOutput;
|
|
5700
|
+
};
|
|
5701
|
+
|
|
5702
|
+
'fal-ai/ernie-image/lora/turbo': {
|
|
5703
|
+
input: falEndpoints.ErnieImageLoraTurboInput;
|
|
5704
|
+
output: falEndpoints.ErnieImageLoraTurboOutput;
|
|
5705
|
+
};
|
|
5706
|
+
|
|
5707
|
+
'fal-ai/ernie-image/lora': {
|
|
5708
|
+
input: falEndpoints.ErnieImageLoraInput;
|
|
5709
|
+
output: falEndpoints.ErnieImageLoraOutput;
|
|
5710
|
+
};
|
|
5711
|
+
|
|
5712
|
+
'fal-ai/ernie-image-trainer': {
|
|
5713
|
+
input: falEndpoints.ErnieImageTrainerInput;
|
|
5714
|
+
output: falEndpoints.ErnieImageTrainerOutput;
|
|
5715
|
+
};
|
|
5716
|
+
|
|
5717
|
+
'fal-ai/ernie-image': {
|
|
5718
|
+
input: falEndpoints.ErnieImageInput;
|
|
5719
|
+
output: falEndpoints.ErnieImageOutput;
|
|
5720
|
+
};
|
|
5721
|
+
|
|
5517
5722
|
'fal-ai/era-3d': {
|
|
5518
5723
|
input: falEndpoints.Era3dInput;
|
|
5519
5724
|
output: falEndpoints.Era3dOutput;
|
|
@@ -6139,16 +6344,6 @@ declare global {
|
|
|
6139
6344
|
output: falEndpoints.DecartLucyEditProOutput;
|
|
6140
6345
|
};
|
|
6141
6346
|
|
|
6142
|
-
'decart/lucy-edit/fast': {
|
|
6143
|
-
input: falEndpoints.DecartLucyEditFastInput;
|
|
6144
|
-
output: falEndpoints.DecartLucyEditFastOutput;
|
|
6145
|
-
};
|
|
6146
|
-
|
|
6147
|
-
'decart/lucy-edit/dev': {
|
|
6148
|
-
input: falEndpoints.DecartLucyEditDevInput;
|
|
6149
|
-
output: falEndpoints.DecartLucyEditDevOutput;
|
|
6150
|
-
};
|
|
6151
|
-
|
|
6152
6347
|
'clarityai/crystal-video-upscaler': {
|
|
6153
6348
|
input: falEndpoints.ClarityaiCrystalVideoUpscalerInput;
|
|
6154
6349
|
output: falEndpoints.ClarityaiCrystalVideoUpscalerOutput;
|