fal-endpoint-types 1.3.39 → 1.3.41
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 +1 -43
- package/types/fal/endpoints/index.d.ts +110 -5
- package/types/fal/endpoints/schema.d.ts +4284 -2990
package/package.json
CHANGED
|
@@ -1899,7 +1899,7 @@ export interface Track {
|
|
|
1899
1899
|
keyframes: Keyframe[];
|
|
1900
1900
|
/**
|
|
1901
1901
|
* Type
|
|
1902
|
-
* @description Type of track ('video' or '
|
|
1902
|
+
* @description Type of track ('video', 'audio', or 'image')
|
|
1903
1903
|
*/
|
|
1904
1904
|
type: string;
|
|
1905
1905
|
}
|
|
@@ -3936,48 +3936,6 @@ export interface ImageFillInput {
|
|
|
3936
3936
|
fill_image_url?: string | string[];
|
|
3937
3937
|
}
|
|
3938
3938
|
|
|
3939
|
-
export interface ImageFile_1 {
|
|
3940
|
-
/**
|
|
3941
|
-
* Content Type
|
|
3942
|
-
* @description The mime type of the file.
|
|
3943
|
-
* @example image/png
|
|
3944
|
-
*/
|
|
3945
|
-
content_type?: string;
|
|
3946
|
-
/**
|
|
3947
|
-
* File Data
|
|
3948
|
-
* Format: binary
|
|
3949
|
-
* @description File data
|
|
3950
|
-
*/
|
|
3951
|
-
file_data?: string;
|
|
3952
|
-
/**
|
|
3953
|
-
* File Name
|
|
3954
|
-
* @description The name of the file. It will be auto-generated if not provided.
|
|
3955
|
-
* @example z9RV14K95DvU.png
|
|
3956
|
-
*/
|
|
3957
|
-
file_name?: string;
|
|
3958
|
-
/**
|
|
3959
|
-
* File Size
|
|
3960
|
-
* @description The size of the file in bytes.
|
|
3961
|
-
* @example 4404019
|
|
3962
|
-
*/
|
|
3963
|
-
file_size?: number;
|
|
3964
|
-
/**
|
|
3965
|
-
* Height
|
|
3966
|
-
* @description The height of the image
|
|
3967
|
-
*/
|
|
3968
|
-
height?: number;
|
|
3969
|
-
/**
|
|
3970
|
-
* Url
|
|
3971
|
-
* @description The URL where the file can be downloaded from.
|
|
3972
|
-
*/
|
|
3973
|
-
url: string;
|
|
3974
|
-
/**
|
|
3975
|
-
* Width
|
|
3976
|
-
* @description The width of the image
|
|
3977
|
-
*/
|
|
3978
|
-
width?: number;
|
|
3979
|
-
}
|
|
3980
|
-
|
|
3981
3939
|
export interface ImageFile {
|
|
3982
3940
|
/**
|
|
3983
3941
|
* Content Type
|
|
@@ -454,6 +454,26 @@ declare global {
|
|
|
454
454
|
output: falEndpoints.WhisperOutput;
|
|
455
455
|
};
|
|
456
456
|
|
|
457
|
+
'fal-ai/wan/v2.7/text-to-image': {
|
|
458
|
+
input: falEndpoints.WanV27TextToImageInput;
|
|
459
|
+
output: falEndpoints.WanV27TextToImageOutput;
|
|
460
|
+
};
|
|
461
|
+
|
|
462
|
+
'fal-ai/wan/v2.7/pro/text-to-image': {
|
|
463
|
+
input: falEndpoints.WanV27ProTextToImageInput;
|
|
464
|
+
output: falEndpoints.WanV27ProTextToImageOutput;
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
'fal-ai/wan/v2.7/pro/edit': {
|
|
468
|
+
input: falEndpoints.WanV27ProEditInput;
|
|
469
|
+
output: falEndpoints.WanV27ProEditOutput;
|
|
470
|
+
};
|
|
471
|
+
|
|
472
|
+
'fal-ai/wan/v2.7/edit': {
|
|
473
|
+
input: falEndpoints.WanV27EditInput;
|
|
474
|
+
output: falEndpoints.WanV27EditOutput;
|
|
475
|
+
};
|
|
476
|
+
|
|
457
477
|
'fal-ai/wan/v2.2-a14b/video-to-video': {
|
|
458
478
|
input: falEndpoints.WanV22A14bVideoToVideoInput;
|
|
459
479
|
output: falEndpoints.WanV22A14bVideoToVideoOutput;
|
|
@@ -909,6 +929,21 @@ declare global {
|
|
|
909
929
|
output: falEndpoints.Veo31ReferenceToVideoOutput;
|
|
910
930
|
};
|
|
911
931
|
|
|
932
|
+
'fal-ai/veo3.1/lite/image-to-video': {
|
|
933
|
+
input: falEndpoints.Veo31LiteImageToVideoInput;
|
|
934
|
+
output: falEndpoints.Veo31LiteImageToVideoOutput;
|
|
935
|
+
};
|
|
936
|
+
|
|
937
|
+
'fal-ai/veo3.1/lite/first-last-frame-to-video': {
|
|
938
|
+
input: falEndpoints.Veo31LiteFirstLastFrameToVideoInput;
|
|
939
|
+
output: falEndpoints.Veo31LiteFirstLastFrameToVideoOutput;
|
|
940
|
+
};
|
|
941
|
+
|
|
942
|
+
'fal-ai/veo3.1/lite': {
|
|
943
|
+
input: falEndpoints.Veo31LiteInput;
|
|
944
|
+
output: falEndpoints.Veo31LiteOutput;
|
|
945
|
+
};
|
|
946
|
+
|
|
912
947
|
'fal-ai/veo3.1/image-to-video': {
|
|
913
948
|
input: falEndpoints.Veo31ImageToVideoInput;
|
|
914
949
|
output: falEndpoints.Veo31ImageToVideoOutput;
|
|
@@ -1384,6 +1419,26 @@ declare global {
|
|
|
1384
1419
|
output: falEndpoints.Sam33dAlignOutput;
|
|
1385
1420
|
};
|
|
1386
1421
|
|
|
1422
|
+
'fal-ai/sam-3-1/video-rle': {
|
|
1423
|
+
input: falEndpoints.Sam31VideoRleInput;
|
|
1424
|
+
output: falEndpoints.Sam31VideoRleOutput;
|
|
1425
|
+
};
|
|
1426
|
+
|
|
1427
|
+
'fal-ai/sam-3-1/video': {
|
|
1428
|
+
input: falEndpoints.Sam31VideoInput;
|
|
1429
|
+
output: falEndpoints.Sam31VideoOutput;
|
|
1430
|
+
};
|
|
1431
|
+
|
|
1432
|
+
'fal-ai/sam-3-1/image-rle': {
|
|
1433
|
+
input: falEndpoints.Sam31ImageRleInput;
|
|
1434
|
+
output: falEndpoints.Sam31ImageRleOutput;
|
|
1435
|
+
};
|
|
1436
|
+
|
|
1437
|
+
'fal-ai/sam-3-1/image': {
|
|
1438
|
+
input: falEndpoints.Sam31ImageInput;
|
|
1439
|
+
output: falEndpoints.Sam31ImageOutput;
|
|
1440
|
+
};
|
|
1441
|
+
|
|
1387
1442
|
'fal-ai/sadtalker/reference': {
|
|
1388
1443
|
input: falEndpoints.SadtalkerReferenceInput;
|
|
1389
1444
|
output: falEndpoints.SadtalkerReferenceOutput;
|
|
@@ -1879,6 +1934,26 @@ declare global {
|
|
|
1879
1934
|
output: falEndpoints.PlaygroundV25Output;
|
|
1880
1935
|
};
|
|
1881
1936
|
|
|
1937
|
+
'fal-ai/pixverse/v6/transition': {
|
|
1938
|
+
input: falEndpoints.PixverseV6TransitionInput;
|
|
1939
|
+
output: falEndpoints.PixverseV6TransitionOutput;
|
|
1940
|
+
};
|
|
1941
|
+
|
|
1942
|
+
'fal-ai/pixverse/v6/text-to-video': {
|
|
1943
|
+
input: falEndpoints.PixverseV6TextToVideoInput;
|
|
1944
|
+
output: falEndpoints.PixverseV6TextToVideoOutput;
|
|
1945
|
+
};
|
|
1946
|
+
|
|
1947
|
+
'fal-ai/pixverse/v6/image-to-video': {
|
|
1948
|
+
input: falEndpoints.PixverseV6ImageToVideoInput;
|
|
1949
|
+
output: falEndpoints.PixverseV6ImageToVideoOutput;
|
|
1950
|
+
};
|
|
1951
|
+
|
|
1952
|
+
'fal-ai/pixverse/v6/extend': {
|
|
1953
|
+
input: falEndpoints.PixverseV6ExtendInput;
|
|
1954
|
+
output: falEndpoints.PixverseV6ExtendOutput;
|
|
1955
|
+
};
|
|
1956
|
+
|
|
1882
1957
|
'fal-ai/pixverse/v5/transition': {
|
|
1883
1958
|
input: falEndpoints.PixverseV5TransitionInput;
|
|
1884
1959
|
output: falEndpoints.PixverseV5TransitionOutput;
|
|
@@ -5519,6 +5594,11 @@ declare global {
|
|
|
5519
5594
|
output: falEndpoints.DdcolorOutput;
|
|
5520
5595
|
};
|
|
5521
5596
|
|
|
5597
|
+
'fal-ai/davinci-magihuman': {
|
|
5598
|
+
input: falEndpoints.DavinciMagihumanInput;
|
|
5599
|
+
output: falEndpoints.DavinciMagihumanOutput;
|
|
5600
|
+
};
|
|
5601
|
+
|
|
5522
5602
|
'fal-ai/csm-1b': {
|
|
5523
5603
|
input: falEndpoints.Csm1bInput;
|
|
5524
5604
|
output: falEndpoints.Csm1bOutput;
|
|
@@ -6004,6 +6084,36 @@ declare global {
|
|
|
6004
6084
|
output: falEndpoints.CassetteaiMusicGeneratorOutput;
|
|
6005
6085
|
};
|
|
6006
6086
|
|
|
6087
|
+
'bytedance/seedance-2.0/text-to-video': {
|
|
6088
|
+
input: falEndpoints.BytedanceSeedance20TextToVideoInput;
|
|
6089
|
+
output: falEndpoints.BytedanceSeedance20TextToVideoOutput;
|
|
6090
|
+
};
|
|
6091
|
+
|
|
6092
|
+
'bytedance/seedance-2.0/reference-to-video': {
|
|
6093
|
+
input: falEndpoints.BytedanceSeedance20ReferenceToVideoInput;
|
|
6094
|
+
output: falEndpoints.BytedanceSeedance20ReferenceToVideoOutput;
|
|
6095
|
+
};
|
|
6096
|
+
|
|
6097
|
+
'bytedance/seedance-2.0/image-to-video': {
|
|
6098
|
+
input: falEndpoints.BytedanceSeedance20ImageToVideoInput;
|
|
6099
|
+
output: falEndpoints.BytedanceSeedance20ImageToVideoOutput;
|
|
6100
|
+
};
|
|
6101
|
+
|
|
6102
|
+
'bytedance/seedance-2.0/fast/text-to-video': {
|
|
6103
|
+
input: falEndpoints.BytedanceSeedance20FastTextToVideoInput;
|
|
6104
|
+
output: falEndpoints.BytedanceSeedance20FastTextToVideoOutput;
|
|
6105
|
+
};
|
|
6106
|
+
|
|
6107
|
+
'bytedance/seedance-2.0/fast/reference-to-video': {
|
|
6108
|
+
input: falEndpoints.BytedanceSeedance20FastReferenceToVideoInput;
|
|
6109
|
+
output: falEndpoints.BytedanceSeedance20FastReferenceToVideoOutput;
|
|
6110
|
+
};
|
|
6111
|
+
|
|
6112
|
+
'bytedance/seedance-2.0/fast/image-to-video': {
|
|
6113
|
+
input: falEndpoints.BytedanceSeedance20FastImageToVideoInput;
|
|
6114
|
+
output: falEndpoints.BytedanceSeedance20FastImageToVideoOutput;
|
|
6115
|
+
};
|
|
6116
|
+
|
|
6007
6117
|
'bytedance/lynx': {
|
|
6008
6118
|
input: falEndpoints.BytedanceLynxInput;
|
|
6009
6119
|
output: falEndpoints.BytedanceLynxOutput;
|
|
@@ -6169,11 +6279,6 @@ declare global {
|
|
|
6169
6279
|
output: falEndpoints.BriaBria_video_eraserEraseKeypointsOutput;
|
|
6170
6280
|
};
|
|
6171
6281
|
|
|
6172
|
-
'beatoven/sound-effect-generation': {
|
|
6173
|
-
input: falEndpoints.BeatovenSoundEffectGenerationInput;
|
|
6174
|
-
output: falEndpoints.BeatovenSoundEffectGenerationOutput;
|
|
6175
|
-
};
|
|
6176
|
-
|
|
6177
6282
|
'argil/avatars/text-to-video': {
|
|
6178
6283
|
input: falEndpoints.ArgilAvatarsTextToVideoInput;
|
|
6179
6284
|
output: falEndpoints.ArgilAvatarsTextToVideoOutput;
|