fal-endpoint-types 1.3.39 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fal-endpoint-types",
3
- "version": "1.3.39",
3
+ "version": "1.3.40",
4
4
  "description": "TypeScript types for Fal AI endpoints generated from the OpenAPI schemas.",
5
5
  "homepage": "https://github.com/rawpixel-vincent/fal-endpoint-types#readme",
6
6
  "bugs": {
@@ -1899,7 +1899,7 @@ export interface Track {
1899
1899
  keyframes: Keyframe[];
1900
1900
  /**
1901
1901
  * Type
1902
- * @description Type of track ('video' or 'audio')
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
@@ -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,11 +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
6227
  'argil/avatars/text-to-video': {
6178
6228
  input: falEndpoints.ArgilAvatarsTextToVideoInput;
6179
6229
  output: falEndpoints.ArgilAvatarsTextToVideoOutput;