fal-endpoint-types 1.3.34 → 1.3.36
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 +29 -13
- package/types/fal/endpoints/index.d.ts +15 -10
- package/types/fal/endpoints/schema.d.ts +814 -807
package/package.json
CHANGED
|
@@ -1745,19 +1745,6 @@ export interface Validation {
|
|
|
1745
1745
|
prompt: string;
|
|
1746
1746
|
}
|
|
1747
1747
|
|
|
1748
|
-
export interface V2VValidation {
|
|
1749
|
-
/**
|
|
1750
|
-
* Prompt
|
|
1751
|
-
* @description The prompt to use for validation.
|
|
1752
|
-
*/
|
|
1753
|
-
prompt: string;
|
|
1754
|
-
/**
|
|
1755
|
-
* Reference Video Url
|
|
1756
|
-
* @description URL to reference video for IC-LoRA validation. This is the input video that will be transformed.
|
|
1757
|
-
*/
|
|
1758
|
-
reference_video_url: string;
|
|
1759
|
-
}
|
|
1760
|
-
|
|
1761
1748
|
export interface UsageInfo_1 {
|
|
1762
1749
|
/**
|
|
1763
1750
|
* Decode Time Ms
|
|
@@ -2357,6 +2344,20 @@ export interface SemanticImageInput {
|
|
|
2357
2344
|
reference: string;
|
|
2358
2345
|
}
|
|
2359
2346
|
|
|
2347
|
+
export interface Seed2MiniMessage {
|
|
2348
|
+
/**
|
|
2349
|
+
* Content
|
|
2350
|
+
* @description The content of the message. Can be a string for text-only messages, or a list of content parts for multimodal messages (e.g. with images).
|
|
2351
|
+
*/
|
|
2352
|
+
content: string | Record<string, never>[];
|
|
2353
|
+
/**
|
|
2354
|
+
* Role
|
|
2355
|
+
* @description The role of the message author.
|
|
2356
|
+
* @enum {string}
|
|
2357
|
+
*/
|
|
2358
|
+
role: 'system' | 'user' | 'assistant';
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2360
2361
|
export interface SAM3DObjectMetadata {
|
|
2361
2362
|
/**
|
|
2362
2363
|
* Camera Pose
|
|
@@ -2577,6 +2578,21 @@ export interface ReferenceFace {
|
|
|
2577
2578
|
image_url: string;
|
|
2578
2579
|
}
|
|
2579
2580
|
|
|
2581
|
+
export interface RawImage {
|
|
2582
|
+
/**
|
|
2583
|
+
* Content
|
|
2584
|
+
* Format: binary
|
|
2585
|
+
*/
|
|
2586
|
+
content: string;
|
|
2587
|
+
/**
|
|
2588
|
+
* Content Type
|
|
2589
|
+
* @default image/jpeg
|
|
2590
|
+
*/
|
|
2591
|
+
content_type?: string;
|
|
2592
|
+
height: number;
|
|
2593
|
+
width: number;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2580
2596
|
export interface PronunciationDictionaryLocator {
|
|
2581
2597
|
/**
|
|
2582
2598
|
* Pronunciation Dictionary Id
|
|
@@ -2100,8 +2100,8 @@ declare global {
|
|
|
2100
2100
|
};
|
|
2101
2101
|
|
|
2102
2102
|
'fal-ai/personaplex/realtime': {
|
|
2103
|
-
input:
|
|
2104
|
-
output:
|
|
2103
|
+
input: falEndpoints.PersonaplexRealtimeInput;
|
|
2104
|
+
output: falEndpoints.PersonaplexRealtimeOutput;
|
|
2105
2105
|
};
|
|
2106
2106
|
|
|
2107
2107
|
'fal-ai/personaplex': {
|
|
@@ -2715,8 +2715,8 @@ declare global {
|
|
|
2715
2715
|
};
|
|
2716
2716
|
|
|
2717
2717
|
'fal-ai/ltx2-v2v-trainer': {
|
|
2718
|
-
input:
|
|
2719
|
-
output:
|
|
2718
|
+
input: { [x in string]: any };
|
|
2719
|
+
output: { [x in string]: any };
|
|
2720
2720
|
};
|
|
2721
2721
|
|
|
2722
2722
|
'fal-ai/ltx-video/image-to-video': {
|
|
@@ -4720,8 +4720,8 @@ declare global {
|
|
|
4720
4720
|
};
|
|
4721
4721
|
|
|
4722
4722
|
'fal-ai/flux-2/klein/realtime': {
|
|
4723
|
-
input:
|
|
4724
|
-
output:
|
|
4723
|
+
input: falEndpoints.Flux2KleinRealtimeInput;
|
|
4724
|
+
output: falEndpoints.Flux2KleinRealtimeOutput;
|
|
4725
4725
|
};
|
|
4726
4726
|
|
|
4727
4727
|
'fal-ai/flux-2/klein/9b/lora': {
|
|
@@ -5460,8 +5460,8 @@ declare global {
|
|
|
5460
5460
|
};
|
|
5461
5461
|
|
|
5462
5462
|
'fal-ai/decart/lucy-5b/image-to-video': {
|
|
5463
|
-
input:
|
|
5464
|
-
output:
|
|
5463
|
+
input: { [x in string]: any };
|
|
5464
|
+
output: { [x in string]: any };
|
|
5465
5465
|
};
|
|
5466
5466
|
|
|
5467
5467
|
'fal-ai/ddcolor': {
|
|
@@ -5595,8 +5595,8 @@ declare global {
|
|
|
5595
5595
|
};
|
|
5596
5596
|
|
|
5597
5597
|
'fal-ai/calligrapher': {
|
|
5598
|
-
input:
|
|
5599
|
-
output:
|
|
5598
|
+
input: { [x in string]: any };
|
|
5599
|
+
output: { [x in string]: any };
|
|
5600
5600
|
};
|
|
5601
5601
|
|
|
5602
5602
|
'fal-ai/bytedance/video-stylize': {
|
|
@@ -5684,6 +5684,11 @@ declare global {
|
|
|
5684
5684
|
output: falEndpoints.BytedanceSeedanceV15ProImageToVideoOutput;
|
|
5685
5685
|
};
|
|
5686
5686
|
|
|
5687
|
+
'fal-ai/bytedance/seed/v2/mini': {
|
|
5688
|
+
input: falEndpoints.BytedanceSeedV2MiniInput;
|
|
5689
|
+
output: falEndpoints.BytedanceSeedV2MiniOutput;
|
|
5690
|
+
};
|
|
5691
|
+
|
|
5687
5692
|
'fal-ai/bytedance/omnihuman/v1.5': {
|
|
5688
5693
|
input: falEndpoints.BytedanceOmnihumanV15Input;
|
|
5689
5694
|
output: falEndpoints.BytedanceOmnihumanV15Output;
|