fal-endpoint-types 1.3.28 → 1.3.31
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 +287 -62
- package/types/fal/endpoints/index.d.ts +120 -25
- package/types/fal/endpoints/schema.d.ts +4894 -3557
|
@@ -189,6 +189,11 @@ declare global {
|
|
|
189
189
|
output: falEndpoints.ResembleaiChatterboxhdSpeechToSpeechOutput;
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
+
'pixelcut/background-removal': {
|
|
193
|
+
input: falEndpoints.PixelcutBackgroundRemovalInput;
|
|
194
|
+
output: falEndpoints.PixelcutBackgroundRemovalOutput;
|
|
195
|
+
};
|
|
196
|
+
|
|
192
197
|
'perceptron/isaac-01/openai/v1/chat/completions': {
|
|
193
198
|
input: { [x in string]: any };
|
|
194
199
|
output: { [x in string]: any };
|
|
@@ -934,6 +939,16 @@ declare global {
|
|
|
934
939
|
output: falEndpoints.Veo2Output;
|
|
935
940
|
};
|
|
936
941
|
|
|
942
|
+
'fal-ai/vecglypher/image-to-svg': {
|
|
943
|
+
input: falEndpoints.VecglypherImageToSvgInput;
|
|
944
|
+
output: falEndpoints.VecglypherImageToSvgOutput;
|
|
945
|
+
};
|
|
946
|
+
|
|
947
|
+
'fal-ai/vecglypher': {
|
|
948
|
+
input: falEndpoints.VecglypherInput;
|
|
949
|
+
output: falEndpoints.VecglypherOutput;
|
|
950
|
+
};
|
|
951
|
+
|
|
937
952
|
'fal-ai/uso': {
|
|
938
953
|
input: falEndpoints.UsoInput;
|
|
939
954
|
output: falEndpoints.UsoOutput;
|
|
@@ -964,6 +979,11 @@ declare global {
|
|
|
964
979
|
output: falEndpoints.TrellisMultiOutput;
|
|
965
980
|
};
|
|
966
981
|
|
|
982
|
+
'fal-ai/trellis-2/retexture': {
|
|
983
|
+
input: falEndpoints.Trellis2RetextureInput;
|
|
984
|
+
output: falEndpoints.Trellis2RetextureOutput;
|
|
985
|
+
};
|
|
986
|
+
|
|
967
987
|
'fal-ai/trellis-2': {
|
|
968
988
|
input: falEndpoints.Trellis2Input;
|
|
969
989
|
output: falEndpoints.Trellis2Output;
|
|
@@ -1364,31 +1384,6 @@ declare global {
|
|
|
1364
1384
|
output: falEndpoints.RifeOutput;
|
|
1365
1385
|
};
|
|
1366
1386
|
|
|
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
1387
|
'fal-ai/retoucher': {
|
|
1393
1388
|
input: falEndpoints.RetoucherInput;
|
|
1394
1389
|
output: falEndpoints.RetoucherOutput;
|
|
@@ -1689,6 +1684,26 @@ declare global {
|
|
|
1689
1684
|
output: falEndpoints.QwenImage2512Output;
|
|
1690
1685
|
};
|
|
1691
1686
|
|
|
1687
|
+
'fal-ai/qwen-image-2/text-to-image': {
|
|
1688
|
+
input: falEndpoints.QwenImage2TextToImageInput;
|
|
1689
|
+
output: falEndpoints.QwenImage2TextToImageOutput;
|
|
1690
|
+
};
|
|
1691
|
+
|
|
1692
|
+
'fal-ai/qwen-image-2/pro/text-to-image': {
|
|
1693
|
+
input: falEndpoints.QwenImage2ProTextToImageInput;
|
|
1694
|
+
output: falEndpoints.QwenImage2ProTextToImageOutput;
|
|
1695
|
+
};
|
|
1696
|
+
|
|
1697
|
+
'fal-ai/qwen-image-2/pro/edit': {
|
|
1698
|
+
input: falEndpoints.QwenImage2ProEditInput;
|
|
1699
|
+
output: falEndpoints.QwenImage2ProEditOutput;
|
|
1700
|
+
};
|
|
1701
|
+
|
|
1702
|
+
'fal-ai/qwen-image-2/edit': {
|
|
1703
|
+
input: falEndpoints.QwenImage2EditInput;
|
|
1704
|
+
output: falEndpoints.QwenImage2EditOutput;
|
|
1705
|
+
};
|
|
1706
|
+
|
|
1692
1707
|
'fal-ai/qwen-image': {
|
|
1693
1708
|
input: falEndpoints.QwenImageInput;
|
|
1694
1709
|
output: falEndpoints.QwenImageOutput;
|
|
@@ -2054,6 +2069,11 @@ declare global {
|
|
|
2054
2069
|
output: falEndpoints.PhotomakerOutput;
|
|
2055
2070
|
};
|
|
2056
2071
|
|
|
2072
|
+
'fal-ai/personaplex/realtime': {
|
|
2073
|
+
input: falEndpoints.PersonaplexRealtimeInput;
|
|
2074
|
+
output: falEndpoints.PersonaplexRealtimeOutput;
|
|
2075
|
+
};
|
|
2076
|
+
|
|
2057
2077
|
'fal-ai/personaplex': {
|
|
2058
2078
|
input: falEndpoints.PersonaplexInput;
|
|
2059
2079
|
output: falEndpoints.PersonaplexOutput;
|
|
@@ -2084,6 +2104,11 @@ declare global {
|
|
|
2084
2104
|
output: falEndpoints.OrpheusTtsOutput;
|
|
2085
2105
|
};
|
|
2086
2106
|
|
|
2107
|
+
'fal-ai/onereward': {
|
|
2108
|
+
input: falEndpoints.OnerewardInput;
|
|
2109
|
+
output: falEndpoints.OnerewardOutput;
|
|
2110
|
+
};
|
|
2111
|
+
|
|
2087
2112
|
'fal-ai/one-to-all-animation/14b': {
|
|
2088
2113
|
input: falEndpoints.OneToAllAnimation14bInput;
|
|
2089
2114
|
output: falEndpoints.OneToAllAnimation14bOutput;
|
|
@@ -2749,6 +2774,51 @@ declare global {
|
|
|
2749
2774
|
output: falEndpoints.Ltx2ImageToVideoOutput;
|
|
2750
2775
|
};
|
|
2751
2776
|
|
|
2777
|
+
'fal-ai/ltx-2/extend-video': {
|
|
2778
|
+
input: falEndpoints.Ltx2ExtendVideoInput;
|
|
2779
|
+
output: falEndpoints.Ltx2ExtendVideoOutput;
|
|
2780
|
+
};
|
|
2781
|
+
|
|
2782
|
+
'fal-ai/ltx-2/audio-to-video': {
|
|
2783
|
+
input: falEndpoints.Ltx2AudioToVideoInput;
|
|
2784
|
+
output: falEndpoints.Ltx2AudioToVideoOutput;
|
|
2785
|
+
};
|
|
2786
|
+
|
|
2787
|
+
'fal-ai/ltx-2.3/text-to-video/fast': {
|
|
2788
|
+
input: falEndpoints.Ltx23TextToVideoFastInput;
|
|
2789
|
+
output: falEndpoints.Ltx23TextToVideoFastOutput;
|
|
2790
|
+
};
|
|
2791
|
+
|
|
2792
|
+
'fal-ai/ltx-2.3/text-to-video': {
|
|
2793
|
+
input: falEndpoints.Ltx23TextToVideoInput;
|
|
2794
|
+
output: falEndpoints.Ltx23TextToVideoOutput;
|
|
2795
|
+
};
|
|
2796
|
+
|
|
2797
|
+
'fal-ai/ltx-2.3/retake-video': {
|
|
2798
|
+
input: falEndpoints.Ltx23RetakeVideoInput;
|
|
2799
|
+
output: falEndpoints.Ltx23RetakeVideoOutput;
|
|
2800
|
+
};
|
|
2801
|
+
|
|
2802
|
+
'fal-ai/ltx-2.3/image-to-video/fast': {
|
|
2803
|
+
input: falEndpoints.Ltx23ImageToVideoFastInput;
|
|
2804
|
+
output: falEndpoints.Ltx23ImageToVideoFastOutput;
|
|
2805
|
+
};
|
|
2806
|
+
|
|
2807
|
+
'fal-ai/ltx-2.3/image-to-video': {
|
|
2808
|
+
input: falEndpoints.Ltx23ImageToVideoInput;
|
|
2809
|
+
output: falEndpoints.Ltx23ImageToVideoOutput;
|
|
2810
|
+
};
|
|
2811
|
+
|
|
2812
|
+
'fal-ai/ltx-2.3/extend-video': {
|
|
2813
|
+
input: falEndpoints.Ltx23ExtendVideoInput;
|
|
2814
|
+
output: falEndpoints.Ltx23ExtendVideoOutput;
|
|
2815
|
+
};
|
|
2816
|
+
|
|
2817
|
+
'fal-ai/ltx-2.3/audio-to-video': {
|
|
2818
|
+
input: falEndpoints.Ltx23AudioToVideoInput;
|
|
2819
|
+
output: falEndpoints.Ltx23AudioToVideoOutput;
|
|
2820
|
+
};
|
|
2821
|
+
|
|
2752
2822
|
'fal-ai/ltx-2-19b/video-to-video/lora': {
|
|
2753
2823
|
input: falEndpoints.Ltx219bVideoToVideoLoraInput;
|
|
2754
2824
|
output: falEndpoints.Ltx219bVideoToVideoLoraOutput;
|
|
@@ -3084,6 +3154,11 @@ declare global {
|
|
|
3084
3154
|
output: falEndpoints.KlingVideoV3StandardTextToVideoOutput;
|
|
3085
3155
|
};
|
|
3086
3156
|
|
|
3157
|
+
'fal-ai/kling-video/v3/standard/motion-control': {
|
|
3158
|
+
input: falEndpoints.KlingVideoV3StandardMotionControlInput;
|
|
3159
|
+
output: falEndpoints.KlingVideoV3StandardMotionControlOutput;
|
|
3160
|
+
};
|
|
3161
|
+
|
|
3087
3162
|
'fal-ai/kling-video/v3/standard/image-to-video': {
|
|
3088
3163
|
input: falEndpoints.KlingVideoV3StandardImageToVideoInput;
|
|
3089
3164
|
output: falEndpoints.KlingVideoV3StandardImageToVideoOutput;
|
|
@@ -3094,6 +3169,11 @@ declare global {
|
|
|
3094
3169
|
output: falEndpoints.KlingVideoV3ProTextToVideoOutput;
|
|
3095
3170
|
};
|
|
3096
3171
|
|
|
3172
|
+
'fal-ai/kling-video/v3/pro/motion-control': {
|
|
3173
|
+
input: falEndpoints.KlingVideoV3ProMotionControlInput;
|
|
3174
|
+
output: falEndpoints.KlingVideoV3ProMotionControlOutput;
|
|
3175
|
+
};
|
|
3176
|
+
|
|
3097
3177
|
'fal-ai/kling-video/v3/pro/image-to-video': {
|
|
3098
3178
|
input: falEndpoints.KlingVideoV3ProImageToVideoInput;
|
|
3099
3179
|
output: falEndpoints.KlingVideoV3ProImageToVideoOutput;
|
|
@@ -4924,6 +5004,11 @@ declare global {
|
|
|
4924
5004
|
output: falEndpoints.FlashvsrUpscaleVideoOutput;
|
|
4925
5005
|
};
|
|
4926
5006
|
|
|
5007
|
+
'fal-ai/firered-image-edit-v1.1': {
|
|
5008
|
+
input: falEndpoints.FireredImageEditV11Input;
|
|
5009
|
+
output: falEndpoints.FireredImageEditV11Output;
|
|
5010
|
+
};
|
|
5011
|
+
|
|
4927
5012
|
'fal-ai/firered-image-edit': {
|
|
4928
5013
|
input: falEndpoints.FireredImageEditInput;
|
|
4929
5014
|
output: falEndpoints.FireredImageEditOutput;
|
|
@@ -5284,6 +5369,11 @@ declare global {
|
|
|
5284
5369
|
output: falEndpoints.DiaTtsOutput;
|
|
5285
5370
|
};
|
|
5286
5371
|
|
|
5372
|
+
'fal-ai/depth-anything-video': {
|
|
5373
|
+
input: falEndpoints.DepthAnythingVideoInput;
|
|
5374
|
+
output: falEndpoints.DepthAnythingVideoOutput;
|
|
5375
|
+
};
|
|
5376
|
+
|
|
5287
5377
|
'fal-ai/demucs': {
|
|
5288
5378
|
input: falEndpoints.DemucsInput;
|
|
5289
5379
|
output: falEndpoints.DemucsOutput;
|
|
@@ -5924,6 +6014,11 @@ declare global {
|
|
|
5924
6014
|
output: falEndpoints.BriaFiboEditAdd_object_by_textOutput;
|
|
5925
6015
|
};
|
|
5926
6016
|
|
|
6017
|
+
'bria/fibo-bbq-preview/generate': {
|
|
6018
|
+
input: falEndpoints.BriaFiboBbqPreviewGenerateInput;
|
|
6019
|
+
output: falEndpoints.BriaFiboBbqPreviewGenerateOutput;
|
|
6020
|
+
};
|
|
6021
|
+
|
|
5927
6022
|
'bria/embed-product': {
|
|
5928
6023
|
input: falEndpoints.BriaEmbedProductInput;
|
|
5929
6024
|
output: falEndpoints.BriaEmbedProductOutput;
|