fal-endpoint-types 1.3.21 → 1.3.23
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
|
@@ -3674,7 +3674,7 @@ export interface AudioSetting {
|
|
|
3674
3674
|
sample_rate?: 8000 | 16000 | 22050 | 24000 | 32000 | 44100;
|
|
3675
3675
|
}
|
|
3676
3676
|
|
|
3677
|
-
export interface
|
|
3677
|
+
export interface AudioFile_2 {
|
|
3678
3678
|
/**
|
|
3679
3679
|
* Content Type
|
|
3680
3680
|
* @default audio/wav
|
|
@@ -3700,58 +3700,6 @@ export interface AudioFile_3 {
|
|
|
3700
3700
|
url: string;
|
|
3701
3701
|
}
|
|
3702
3702
|
|
|
3703
|
-
export interface AudioFile_2 {
|
|
3704
|
-
/**
|
|
3705
|
-
* Bitrate
|
|
3706
|
-
* @description The bitrate of the audio
|
|
3707
|
-
*/
|
|
3708
|
-
bitrate?: string;
|
|
3709
|
-
/**
|
|
3710
|
-
* Channels
|
|
3711
|
-
* @description The number of channels in the audio
|
|
3712
|
-
*/
|
|
3713
|
-
channels?: number;
|
|
3714
|
-
/**
|
|
3715
|
-
* Content Type
|
|
3716
|
-
* @description The mime type of the file.
|
|
3717
|
-
* @example image/png
|
|
3718
|
-
*/
|
|
3719
|
-
content_type?: string;
|
|
3720
|
-
/**
|
|
3721
|
-
* Duration
|
|
3722
|
-
* @description The duration of the audio
|
|
3723
|
-
*/
|
|
3724
|
-
duration?: number;
|
|
3725
|
-
/**
|
|
3726
|
-
* File Data
|
|
3727
|
-
* Format: binary
|
|
3728
|
-
* @description File data
|
|
3729
|
-
*/
|
|
3730
|
-
file_data?: string;
|
|
3731
|
-
/**
|
|
3732
|
-
* File Name
|
|
3733
|
-
* @description The name of the file. It will be auto-generated if not provided.
|
|
3734
|
-
* @example z9RV14K95DvU.png
|
|
3735
|
-
*/
|
|
3736
|
-
file_name?: string;
|
|
3737
|
-
/**
|
|
3738
|
-
* File Size
|
|
3739
|
-
* @description The size of the file in bytes.
|
|
3740
|
-
* @example 4404019
|
|
3741
|
-
*/
|
|
3742
|
-
file_size?: number;
|
|
3743
|
-
/**
|
|
3744
|
-
* Sample Rate
|
|
3745
|
-
* @description The sample rate of the audio
|
|
3746
|
-
*/
|
|
3747
|
-
sample_rate?: number;
|
|
3748
|
-
/**
|
|
3749
|
-
* Url
|
|
3750
|
-
* @description The URL where the file can be downloaded from.
|
|
3751
|
-
*/
|
|
3752
|
-
url: string;
|
|
3753
|
-
}
|
|
3754
|
-
|
|
3755
3703
|
export interface AudioFile_1 {
|
|
3756
3704
|
/**
|
|
3757
3705
|
* Content Type
|
|
@@ -414,6 +414,11 @@ declare global {
|
|
|
414
414
|
output: falEndpoints.WorkflowUtilitiesTrimVideoOutput;
|
|
415
415
|
};
|
|
416
416
|
|
|
417
|
+
'fal-ai/workflow-utilities/scale-video': {
|
|
418
|
+
input: falEndpoints.WorkflowUtilitiesScaleVideoInput;
|
|
419
|
+
output: falEndpoints.WorkflowUtilitiesScaleVideoOutput;
|
|
420
|
+
};
|
|
421
|
+
|
|
417
422
|
'fal-ai/workflow-utilities/interleave-video': {
|
|
418
423
|
input: falEndpoints.WorkflowUtilitiesInterleaveVideoInput;
|
|
419
424
|
output: falEndpoints.WorkflowUtilitiesInterleaveVideoOutput;
|
|
@@ -759,11 +764,21 @@ declare global {
|
|
|
759
764
|
output: falEndpoints.ViduReferenceToImageOutput;
|
|
760
765
|
};
|
|
761
766
|
|
|
767
|
+
'fal-ai/vidu/q3/text-to-video/turbo': {
|
|
768
|
+
input: falEndpoints.ViduQ3TextToVideoTurboInput;
|
|
769
|
+
output: falEndpoints.ViduQ3TextToVideoTurboOutput;
|
|
770
|
+
};
|
|
771
|
+
|
|
762
772
|
'fal-ai/vidu/q3/text-to-video': {
|
|
763
773
|
input: falEndpoints.ViduQ3TextToVideoInput;
|
|
764
774
|
output: falEndpoints.ViduQ3TextToVideoOutput;
|
|
765
775
|
};
|
|
766
776
|
|
|
777
|
+
'fal-ai/vidu/q3/image-to-video/turbo': {
|
|
778
|
+
input: falEndpoints.ViduQ3ImageToVideoTurboInput;
|
|
779
|
+
output: falEndpoints.ViduQ3ImageToVideoTurboOutput;
|
|
780
|
+
};
|
|
781
|
+
|
|
767
782
|
'fal-ai/vidu/q3/image-to-video': {
|
|
768
783
|
input: falEndpoints.ViduQ3ImageToVideoInput;
|
|
769
784
|
output: falEndpoints.ViduQ3ImageToVideoOutput;
|
|
@@ -1404,6 +1419,26 @@ declare global {
|
|
|
1404
1419
|
output: falEndpoints.RecraftVectorizeOutput;
|
|
1405
1420
|
};
|
|
1406
1421
|
|
|
1422
|
+
'fal-ai/recraft/v4/text-to-vector': {
|
|
1423
|
+
input: falEndpoints.RecraftV4TextToVectorInput;
|
|
1424
|
+
output: falEndpoints.RecraftV4TextToVectorOutput;
|
|
1425
|
+
};
|
|
1426
|
+
|
|
1427
|
+
'fal-ai/recraft/v4/text-to-image': {
|
|
1428
|
+
input: falEndpoints.RecraftV4TextToImageInput;
|
|
1429
|
+
output: falEndpoints.RecraftV4TextToImageOutput;
|
|
1430
|
+
};
|
|
1431
|
+
|
|
1432
|
+
'fal-ai/recraft/v4/pro/text-to-vector': {
|
|
1433
|
+
input: falEndpoints.RecraftV4ProTextToVectorInput;
|
|
1434
|
+
output: falEndpoints.RecraftV4ProTextToVectorOutput;
|
|
1435
|
+
};
|
|
1436
|
+
|
|
1437
|
+
'fal-ai/recraft/v4/pro/text-to-image': {
|
|
1438
|
+
input: falEndpoints.RecraftV4ProTextToImageInput;
|
|
1439
|
+
output: falEndpoints.RecraftV4ProTextToImageOutput;
|
|
1440
|
+
};
|
|
1441
|
+
|
|
1407
1442
|
'fal-ai/recraft/v3/text-to-image': {
|
|
1408
1443
|
input: falEndpoints.RecraftV3TextToImageInput;
|
|
1409
1444
|
output: falEndpoints.RecraftV3TextToImageOutput;
|
|
@@ -4139,6 +4174,16 @@ declare global {
|
|
|
4139
4174
|
output: falEndpoints.GhiblifyOutput;
|
|
4140
4175
|
};
|
|
4141
4176
|
|
|
4177
|
+
'fal-ai/genfocus/all-in-focus': {
|
|
4178
|
+
input: falEndpoints.GenfocusAllInFocusInput;
|
|
4179
|
+
output: falEndpoints.GenfocusAllInFocusOutput;
|
|
4180
|
+
};
|
|
4181
|
+
|
|
4182
|
+
'fal-ai/genfocus': {
|
|
4183
|
+
input: falEndpoints.GenfocusInput;
|
|
4184
|
+
output: falEndpoints.GenfocusOutput;
|
|
4185
|
+
};
|
|
4186
|
+
|
|
4142
4187
|
'fal-ai/gemini-flash-edit/multi': {
|
|
4143
4188
|
input: falEndpoints.GeminiFlashEditMultiInput;
|
|
4144
4189
|
output: falEndpoints.GeminiFlashEditMultiOutput;
|