fal-endpoint-types 1.3.38 → 1.3.40
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 -70
- package/types/fal/endpoints/index.d.ts +55 -10
- package/types/fal/endpoints/schema.d.ts +3937 -3215
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
|
|
@@ -4264,33 +4222,6 @@ export interface ForceParams {
|
|
|
4264
4222
|
y: number;
|
|
4265
4223
|
}
|
|
4266
4224
|
|
|
4267
|
-
export interface File_2 {
|
|
4268
|
-
/**
|
|
4269
|
-
* Content Type
|
|
4270
|
-
* @description The mime type of the file.
|
|
4271
|
-
* @example image/png
|
|
4272
|
-
*/
|
|
4273
|
-
content_type: string;
|
|
4274
|
-
/**
|
|
4275
|
-
* File Name
|
|
4276
|
-
* @description The name of the file. It will be auto-generated if not provided.
|
|
4277
|
-
* @example z9RV14K95DvU.png
|
|
4278
|
-
*/
|
|
4279
|
-
file_name: string;
|
|
4280
|
-
/**
|
|
4281
|
-
* File Size
|
|
4282
|
-
* @description The size of the file in bytes.
|
|
4283
|
-
* @example 4404019
|
|
4284
|
-
*/
|
|
4285
|
-
file_size: number;
|
|
4286
|
-
/**
|
|
4287
|
-
* Url
|
|
4288
|
-
* @description The URL where the file can be downloaded from.
|
|
4289
|
-
* @example https://url.to/generated/file/z9RV14K95DvU.png
|
|
4290
|
-
*/
|
|
4291
|
-
url: string;
|
|
4292
|
-
}
|
|
4293
|
-
|
|
4294
4225
|
export interface File_1 {
|
|
4295
4226
|
/**
|
|
4296
4227
|
* Content Type
|
|
@@ -909,6 +909,21 @@ declare global {
|
|
|
909
909
|
output: falEndpoints.Veo31ReferenceToVideoOutput;
|
|
910
910
|
};
|
|
911
911
|
|
|
912
|
+
'fal-ai/veo3.1/lite/image-to-video': {
|
|
913
|
+
input: falEndpoints.Veo31LiteImageToVideoInput;
|
|
914
|
+
output: falEndpoints.Veo31LiteImageToVideoOutput;
|
|
915
|
+
};
|
|
916
|
+
|
|
917
|
+
'fal-ai/veo3.1/lite/first-last-frame-to-video': {
|
|
918
|
+
input: falEndpoints.Veo31LiteFirstLastFrameToVideoInput;
|
|
919
|
+
output: falEndpoints.Veo31LiteFirstLastFrameToVideoOutput;
|
|
920
|
+
};
|
|
921
|
+
|
|
922
|
+
'fal-ai/veo3.1/lite': {
|
|
923
|
+
input: falEndpoints.Veo31LiteInput;
|
|
924
|
+
output: falEndpoints.Veo31LiteOutput;
|
|
925
|
+
};
|
|
926
|
+
|
|
912
927
|
'fal-ai/veo3.1/image-to-video': {
|
|
913
928
|
input: falEndpoints.Veo31ImageToVideoInput;
|
|
914
929
|
output: falEndpoints.Veo31ImageToVideoOutput;
|
|
@@ -1384,6 +1399,26 @@ declare global {
|
|
|
1384
1399
|
output: falEndpoints.Sam33dAlignOutput;
|
|
1385
1400
|
};
|
|
1386
1401
|
|
|
1402
|
+
'fal-ai/sam-3-1/video-rle': {
|
|
1403
|
+
input: falEndpoints.Sam31VideoRleInput;
|
|
1404
|
+
output: falEndpoints.Sam31VideoRleOutput;
|
|
1405
|
+
};
|
|
1406
|
+
|
|
1407
|
+
'fal-ai/sam-3-1/video': {
|
|
1408
|
+
input: falEndpoints.Sam31VideoInput;
|
|
1409
|
+
output: falEndpoints.Sam31VideoOutput;
|
|
1410
|
+
};
|
|
1411
|
+
|
|
1412
|
+
'fal-ai/sam-3-1/image-rle': {
|
|
1413
|
+
input: falEndpoints.Sam31ImageRleInput;
|
|
1414
|
+
output: falEndpoints.Sam31ImageRleOutput;
|
|
1415
|
+
};
|
|
1416
|
+
|
|
1417
|
+
'fal-ai/sam-3-1/image': {
|
|
1418
|
+
input: falEndpoints.Sam31ImageInput;
|
|
1419
|
+
output: falEndpoints.Sam31ImageOutput;
|
|
1420
|
+
};
|
|
1421
|
+
|
|
1387
1422
|
'fal-ai/sadtalker/reference': {
|
|
1388
1423
|
input: falEndpoints.SadtalkerReferenceInput;
|
|
1389
1424
|
output: falEndpoints.SadtalkerReferenceOutput;
|
|
@@ -1879,6 +1914,26 @@ declare global {
|
|
|
1879
1914
|
output: falEndpoints.PlaygroundV25Output;
|
|
1880
1915
|
};
|
|
1881
1916
|
|
|
1917
|
+
'fal-ai/pixverse/v6/transition': {
|
|
1918
|
+
input: falEndpoints.PixverseV6TransitionInput;
|
|
1919
|
+
output: falEndpoints.PixverseV6TransitionOutput;
|
|
1920
|
+
};
|
|
1921
|
+
|
|
1922
|
+
'fal-ai/pixverse/v6/text-to-video': {
|
|
1923
|
+
input: falEndpoints.PixverseV6TextToVideoInput;
|
|
1924
|
+
output: falEndpoints.PixverseV6TextToVideoOutput;
|
|
1925
|
+
};
|
|
1926
|
+
|
|
1927
|
+
'fal-ai/pixverse/v6/image-to-video': {
|
|
1928
|
+
input: falEndpoints.PixverseV6ImageToVideoInput;
|
|
1929
|
+
output: falEndpoints.PixverseV6ImageToVideoOutput;
|
|
1930
|
+
};
|
|
1931
|
+
|
|
1932
|
+
'fal-ai/pixverse/v6/extend': {
|
|
1933
|
+
input: falEndpoints.PixverseV6ExtendInput;
|
|
1934
|
+
output: falEndpoints.PixverseV6ExtendOutput;
|
|
1935
|
+
};
|
|
1936
|
+
|
|
1882
1937
|
'fal-ai/pixverse/v5/transition': {
|
|
1883
1938
|
input: falEndpoints.PixverseV5TransitionInput;
|
|
1884
1939
|
output: falEndpoints.PixverseV5TransitionOutput;
|
|
@@ -6169,16 +6224,6 @@ declare global {
|
|
|
6169
6224
|
output: falEndpoints.BriaBria_video_eraserEraseKeypointsOutput;
|
|
6170
6225
|
};
|
|
6171
6226
|
|
|
6172
|
-
'beatoven/sound-effect-generation': {
|
|
6173
|
-
input: falEndpoints.BeatovenSoundEffectGenerationInput;
|
|
6174
|
-
output: falEndpoints.BeatovenSoundEffectGenerationOutput;
|
|
6175
|
-
};
|
|
6176
|
-
|
|
6177
|
-
'beatoven/music-generation': {
|
|
6178
|
-
input: falEndpoints.BeatovenMusicGenerationInput;
|
|
6179
|
-
output: falEndpoints.BeatovenMusicGenerationOutput;
|
|
6180
|
-
};
|
|
6181
|
-
|
|
6182
6227
|
'argil/avatars/text-to-video': {
|
|
6183
6228
|
input: falEndpoints.ArgilAvatarsTextToVideoInput;
|
|
6184
6229
|
output: falEndpoints.ArgilAvatarsTextToVideoOutput;
|