fal-endpoint-types 1.3.28 → 1.3.30
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 +278 -62
- package/types/fal/endpoints/index.d.ts +105 -25
- package/types/fal/endpoints/schema.d.ts +3638 -2800
|
@@ -964,6 +964,11 @@ declare global {
|
|
|
964
964
|
output: falEndpoints.TrellisMultiOutput;
|
|
965
965
|
};
|
|
966
966
|
|
|
967
|
+
'fal-ai/trellis-2/retexture': {
|
|
968
|
+
input: falEndpoints.Trellis2RetextureInput;
|
|
969
|
+
output: falEndpoints.Trellis2RetextureOutput;
|
|
970
|
+
};
|
|
971
|
+
|
|
967
972
|
'fal-ai/trellis-2': {
|
|
968
973
|
input: falEndpoints.Trellis2Input;
|
|
969
974
|
output: falEndpoints.Trellis2Output;
|
|
@@ -1364,31 +1369,6 @@ declare global {
|
|
|
1364
1369
|
output: falEndpoints.RifeOutput;
|
|
1365
1370
|
};
|
|
1366
1371
|
|
|
1367
|
-
'fal-ai/reve/text-to-image': {
|
|
1368
|
-
input: falEndpoints.ReveTextToImageInput;
|
|
1369
|
-
output: falEndpoints.ReveTextToImageOutput;
|
|
1370
|
-
};
|
|
1371
|
-
|
|
1372
|
-
'fal-ai/reve/remix': {
|
|
1373
|
-
input: falEndpoints.ReveRemixInput;
|
|
1374
|
-
output: falEndpoints.ReveRemixOutput;
|
|
1375
|
-
};
|
|
1376
|
-
|
|
1377
|
-
'fal-ai/reve/fast/remix': {
|
|
1378
|
-
input: falEndpoints.ReveFastRemixInput;
|
|
1379
|
-
output: falEndpoints.ReveFastRemixOutput;
|
|
1380
|
-
};
|
|
1381
|
-
|
|
1382
|
-
'fal-ai/reve/fast/edit': {
|
|
1383
|
-
input: falEndpoints.ReveFastEditInput;
|
|
1384
|
-
output: falEndpoints.ReveFastEditOutput;
|
|
1385
|
-
};
|
|
1386
|
-
|
|
1387
|
-
'fal-ai/reve/edit': {
|
|
1388
|
-
input: falEndpoints.ReveEditInput;
|
|
1389
|
-
output: falEndpoints.ReveEditOutput;
|
|
1390
|
-
};
|
|
1391
|
-
|
|
1392
1372
|
'fal-ai/retoucher': {
|
|
1393
1373
|
input: falEndpoints.RetoucherInput;
|
|
1394
1374
|
output: falEndpoints.RetoucherOutput;
|
|
@@ -1689,6 +1669,26 @@ declare global {
|
|
|
1689
1669
|
output: falEndpoints.QwenImage2512Output;
|
|
1690
1670
|
};
|
|
1691
1671
|
|
|
1672
|
+
'fal-ai/qwen-image-2/text-to-image': {
|
|
1673
|
+
input: falEndpoints.QwenImage2TextToImageInput;
|
|
1674
|
+
output: falEndpoints.QwenImage2TextToImageOutput;
|
|
1675
|
+
};
|
|
1676
|
+
|
|
1677
|
+
'fal-ai/qwen-image-2/pro/text-to-image': {
|
|
1678
|
+
input: falEndpoints.QwenImage2ProTextToImageInput;
|
|
1679
|
+
output: falEndpoints.QwenImage2ProTextToImageOutput;
|
|
1680
|
+
};
|
|
1681
|
+
|
|
1682
|
+
'fal-ai/qwen-image-2/pro/edit': {
|
|
1683
|
+
input: falEndpoints.QwenImage2ProEditInput;
|
|
1684
|
+
output: falEndpoints.QwenImage2ProEditOutput;
|
|
1685
|
+
};
|
|
1686
|
+
|
|
1687
|
+
'fal-ai/qwen-image-2/edit': {
|
|
1688
|
+
input: falEndpoints.QwenImage2EditInput;
|
|
1689
|
+
output: falEndpoints.QwenImage2EditOutput;
|
|
1690
|
+
};
|
|
1691
|
+
|
|
1692
1692
|
'fal-ai/qwen-image': {
|
|
1693
1693
|
input: falEndpoints.QwenImageInput;
|
|
1694
1694
|
output: falEndpoints.QwenImageOutput;
|
|
@@ -2054,6 +2054,11 @@ declare global {
|
|
|
2054
2054
|
output: falEndpoints.PhotomakerOutput;
|
|
2055
2055
|
};
|
|
2056
2056
|
|
|
2057
|
+
'fal-ai/personaplex/realtime': {
|
|
2058
|
+
input: falEndpoints.PersonaplexRealtimeInput;
|
|
2059
|
+
output: falEndpoints.PersonaplexRealtimeOutput;
|
|
2060
|
+
};
|
|
2061
|
+
|
|
2057
2062
|
'fal-ai/personaplex': {
|
|
2058
2063
|
input: falEndpoints.PersonaplexInput;
|
|
2059
2064
|
output: falEndpoints.PersonaplexOutput;
|
|
@@ -2084,6 +2089,11 @@ declare global {
|
|
|
2084
2089
|
output: falEndpoints.OrpheusTtsOutput;
|
|
2085
2090
|
};
|
|
2086
2091
|
|
|
2092
|
+
'fal-ai/onereward': {
|
|
2093
|
+
input: falEndpoints.OnerewardInput;
|
|
2094
|
+
output: falEndpoints.OnerewardOutput;
|
|
2095
|
+
};
|
|
2096
|
+
|
|
2087
2097
|
'fal-ai/one-to-all-animation/14b': {
|
|
2088
2098
|
input: falEndpoints.OneToAllAnimation14bInput;
|
|
2089
2099
|
output: falEndpoints.OneToAllAnimation14bOutput;
|
|
@@ -2749,6 +2759,51 @@ declare global {
|
|
|
2749
2759
|
output: falEndpoints.Ltx2ImageToVideoOutput;
|
|
2750
2760
|
};
|
|
2751
2761
|
|
|
2762
|
+
'fal-ai/ltx-2/extend-video': {
|
|
2763
|
+
input: falEndpoints.Ltx2ExtendVideoInput;
|
|
2764
|
+
output: falEndpoints.Ltx2ExtendVideoOutput;
|
|
2765
|
+
};
|
|
2766
|
+
|
|
2767
|
+
'fal-ai/ltx-2/audio-to-video': {
|
|
2768
|
+
input: falEndpoints.Ltx2AudioToVideoInput;
|
|
2769
|
+
output: falEndpoints.Ltx2AudioToVideoOutput;
|
|
2770
|
+
};
|
|
2771
|
+
|
|
2772
|
+
'fal-ai/ltx-2.3/text-to-video/fast': {
|
|
2773
|
+
input: falEndpoints.Ltx23TextToVideoFastInput;
|
|
2774
|
+
output: falEndpoints.Ltx23TextToVideoFastOutput;
|
|
2775
|
+
};
|
|
2776
|
+
|
|
2777
|
+
'fal-ai/ltx-2.3/text-to-video': {
|
|
2778
|
+
input: falEndpoints.Ltx23TextToVideoInput;
|
|
2779
|
+
output: falEndpoints.Ltx23TextToVideoOutput;
|
|
2780
|
+
};
|
|
2781
|
+
|
|
2782
|
+
'fal-ai/ltx-2.3/retake-video': {
|
|
2783
|
+
input: falEndpoints.Ltx23RetakeVideoInput;
|
|
2784
|
+
output: falEndpoints.Ltx23RetakeVideoOutput;
|
|
2785
|
+
};
|
|
2786
|
+
|
|
2787
|
+
'fal-ai/ltx-2.3/image-to-video/fast': {
|
|
2788
|
+
input: falEndpoints.Ltx23ImageToVideoFastInput;
|
|
2789
|
+
output: falEndpoints.Ltx23ImageToVideoFastOutput;
|
|
2790
|
+
};
|
|
2791
|
+
|
|
2792
|
+
'fal-ai/ltx-2.3/image-to-video': {
|
|
2793
|
+
input: falEndpoints.Ltx23ImageToVideoInput;
|
|
2794
|
+
output: falEndpoints.Ltx23ImageToVideoOutput;
|
|
2795
|
+
};
|
|
2796
|
+
|
|
2797
|
+
'fal-ai/ltx-2.3/extend-video': {
|
|
2798
|
+
input: falEndpoints.Ltx23ExtendVideoInput;
|
|
2799
|
+
output: falEndpoints.Ltx23ExtendVideoOutput;
|
|
2800
|
+
};
|
|
2801
|
+
|
|
2802
|
+
'fal-ai/ltx-2.3/audio-to-video': {
|
|
2803
|
+
input: falEndpoints.Ltx23AudioToVideoInput;
|
|
2804
|
+
output: falEndpoints.Ltx23AudioToVideoOutput;
|
|
2805
|
+
};
|
|
2806
|
+
|
|
2752
2807
|
'fal-ai/ltx-2-19b/video-to-video/lora': {
|
|
2753
2808
|
input: falEndpoints.Ltx219bVideoToVideoLoraInput;
|
|
2754
2809
|
output: falEndpoints.Ltx219bVideoToVideoLoraOutput;
|
|
@@ -3084,6 +3139,11 @@ declare global {
|
|
|
3084
3139
|
output: falEndpoints.KlingVideoV3StandardTextToVideoOutput;
|
|
3085
3140
|
};
|
|
3086
3141
|
|
|
3142
|
+
'fal-ai/kling-video/v3/standard/motion-control': {
|
|
3143
|
+
input: falEndpoints.KlingVideoV3StandardMotionControlInput;
|
|
3144
|
+
output: falEndpoints.KlingVideoV3StandardMotionControlOutput;
|
|
3145
|
+
};
|
|
3146
|
+
|
|
3087
3147
|
'fal-ai/kling-video/v3/standard/image-to-video': {
|
|
3088
3148
|
input: falEndpoints.KlingVideoV3StandardImageToVideoInput;
|
|
3089
3149
|
output: falEndpoints.KlingVideoV3StandardImageToVideoOutput;
|
|
@@ -3094,6 +3154,11 @@ declare global {
|
|
|
3094
3154
|
output: falEndpoints.KlingVideoV3ProTextToVideoOutput;
|
|
3095
3155
|
};
|
|
3096
3156
|
|
|
3157
|
+
'fal-ai/kling-video/v3/pro/motion-control': {
|
|
3158
|
+
input: falEndpoints.KlingVideoV3ProMotionControlInput;
|
|
3159
|
+
output: falEndpoints.KlingVideoV3ProMotionControlOutput;
|
|
3160
|
+
};
|
|
3161
|
+
|
|
3097
3162
|
'fal-ai/kling-video/v3/pro/image-to-video': {
|
|
3098
3163
|
input: falEndpoints.KlingVideoV3ProImageToVideoInput;
|
|
3099
3164
|
output: falEndpoints.KlingVideoV3ProImageToVideoOutput;
|
|
@@ -4924,6 +4989,11 @@ declare global {
|
|
|
4924
4989
|
output: falEndpoints.FlashvsrUpscaleVideoOutput;
|
|
4925
4990
|
};
|
|
4926
4991
|
|
|
4992
|
+
'fal-ai/firered-image-edit-v1.1': {
|
|
4993
|
+
input: falEndpoints.FireredImageEditV11Input;
|
|
4994
|
+
output: falEndpoints.FireredImageEditV11Output;
|
|
4995
|
+
};
|
|
4996
|
+
|
|
4927
4997
|
'fal-ai/firered-image-edit': {
|
|
4928
4998
|
input: falEndpoints.FireredImageEditInput;
|
|
4929
4999
|
output: falEndpoints.FireredImageEditOutput;
|
|
@@ -5284,6 +5354,11 @@ declare global {
|
|
|
5284
5354
|
output: falEndpoints.DiaTtsOutput;
|
|
5285
5355
|
};
|
|
5286
5356
|
|
|
5357
|
+
'fal-ai/depth-anything-video': {
|
|
5358
|
+
input: falEndpoints.DepthAnythingVideoInput;
|
|
5359
|
+
output: falEndpoints.DepthAnythingVideoOutput;
|
|
5360
|
+
};
|
|
5361
|
+
|
|
5287
5362
|
'fal-ai/demucs': {
|
|
5288
5363
|
input: falEndpoints.DemucsInput;
|
|
5289
5364
|
output: falEndpoints.DemucsOutput;
|
|
@@ -5924,6 +5999,11 @@ declare global {
|
|
|
5924
5999
|
output: falEndpoints.BriaFiboEditAdd_object_by_textOutput;
|
|
5925
6000
|
};
|
|
5926
6001
|
|
|
6002
|
+
'bria/fibo-bbq-preview/generate': {
|
|
6003
|
+
input: falEndpoints.BriaFiboBbqPreviewGenerateInput;
|
|
6004
|
+
output: falEndpoints.BriaFiboBbqPreviewGenerateOutput;
|
|
6005
|
+
};
|
|
6006
|
+
|
|
5927
6007
|
'bria/embed-product': {
|
|
5928
6008
|
input: falEndpoints.BriaEmbedProductInput;
|
|
5929
6009
|
output: falEndpoints.BriaEmbedProductOutput;
|