fal-endpoint-types 1.3.12 → 1.3.14
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
|
@@ -1375,19 +1375,6 @@ export interface OmniVideoElementInput {
|
|
|
1375
1375
|
* Max file size: 10.0MB, Min width: 300px, Min height: 300px, Min aspect ratio: 0.40, Max aspect ratio: 2.50, Timeout: 20.0s
|
|
1376
1376
|
*/
|
|
1377
1377
|
frontal_image_url: string;
|
|
1378
|
-
/**
|
|
1379
|
-
* Reference Image Urls
|
|
1380
|
-
* @description Additional reference images from different angles. 1-4 images supported. At least one image is required.
|
|
1381
|
-
*/
|
|
1382
|
-
reference_image_urls?: string[];
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
export interface OmniImageElementInput {
|
|
1386
|
-
/**
|
|
1387
|
-
* Frontal Image Url
|
|
1388
|
-
* @description The frontal image of the element (main view).
|
|
1389
|
-
*/
|
|
1390
|
-
frontal_image_url: string;
|
|
1391
1378
|
/**
|
|
1392
1379
|
* Reference Image Urls
|
|
1393
1380
|
* @description Additional reference images from different angles. 1-3 images supported. At least one image is required.
|
|
@@ -2667,6 +2654,19 @@ export interface Embedding {
|
|
|
2667
2654
|
tokens?: string[];
|
|
2668
2655
|
}
|
|
2669
2656
|
|
|
2657
|
+
export interface ElementInput {
|
|
2658
|
+
/**
|
|
2659
|
+
* Frontal Image Url
|
|
2660
|
+
* @description The frontal image of the element (main view). Optional.
|
|
2661
|
+
*/
|
|
2662
|
+
frontal_image_url?: string;
|
|
2663
|
+
/**
|
|
2664
|
+
* Reference Image Urls
|
|
2665
|
+
* @description Additional reference images from different angles. 0-3 images supported. Optional.
|
|
2666
|
+
*/
|
|
2667
|
+
reference_image_urls?: string[];
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
2670
|
export interface EasyControlWeight {
|
|
2671
2671
|
/**
|
|
2672
2672
|
* Control Method Url
|
|
@@ -729,6 +729,16 @@ declare global {
|
|
|
729
729
|
output: falEndpoints.ViduReferenceToImageOutput;
|
|
730
730
|
};
|
|
731
731
|
|
|
732
|
+
'fal-ai/vidu/q3/text-to-video': {
|
|
733
|
+
input: falEndpoints.ViduQ3TextToVideoInput;
|
|
734
|
+
output: falEndpoints.ViduQ3TextToVideoOutput;
|
|
735
|
+
};
|
|
736
|
+
|
|
737
|
+
'fal-ai/vidu/q3/image-to-video': {
|
|
738
|
+
input: falEndpoints.ViduQ3ImageToVideoInput;
|
|
739
|
+
output: falEndpoints.ViduQ3ImageToVideoOutput;
|
|
740
|
+
};
|
|
741
|
+
|
|
732
742
|
'fal-ai/vidu/q2/video-extension/pro': {
|
|
733
743
|
input: falEndpoints.ViduQ2VideoExtensionProInput;
|
|
734
744
|
output: falEndpoints.ViduQ2VideoExtensionProOutput;
|