fal-endpoint-types 1.3.34 → 1.3.35

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.34",
3
+ "version": "1.3.35",
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": {
@@ -2357,6 +2357,20 @@ export interface SemanticImageInput {
2357
2357
  reference: string;
2358
2358
  }
2359
2359
 
2360
+ export interface Seed2MiniMessage {
2361
+ /**
2362
+ * Content
2363
+ * @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).
2364
+ */
2365
+ content: string | Record<string, never>[];
2366
+ /**
2367
+ * Role
2368
+ * @description The role of the message author.
2369
+ * @enum {string}
2370
+ */
2371
+ role: 'system' | 'user' | 'assistant';
2372
+ }
2373
+
2360
2374
  export interface SAM3DObjectMetadata {
2361
2375
  /**
2362
2376
  * Camera Pose
@@ -2577,6 +2591,21 @@ export interface ReferenceFace {
2577
2591
  image_url: string;
2578
2592
  }
2579
2593
 
2594
+ export interface RawImage {
2595
+ /**
2596
+ * Content
2597
+ * Format: binary
2598
+ */
2599
+ content: string;
2600
+ /**
2601
+ * Content Type
2602
+ * @default image/jpeg
2603
+ */
2604
+ content_type?: string;
2605
+ height: number;
2606
+ width: number;
2607
+ }
2608
+
2580
2609
  export interface PronunciationDictionaryLocator {
2581
2610
  /**
2582
2611
  * Pronunciation Dictionary Id
@@ -2100,8 +2100,8 @@ declare global {
2100
2100
  };
2101
2101
 
2102
2102
  'fal-ai/personaplex/realtime': {
2103
- input: { [x in string]: any };
2104
- output: { [x in string]: any };
2103
+ input: falEndpoints.PersonaplexRealtimeInput;
2104
+ output: falEndpoints.PersonaplexRealtimeOutput;
2105
2105
  };
2106
2106
 
2107
2107
  'fal-ai/personaplex': {
@@ -4720,8 +4720,8 @@ declare global {
4720
4720
  };
4721
4721
 
4722
4722
  'fal-ai/flux-2/klein/realtime': {
4723
- input: { [x in string]: any };
4724
- output: { [x in string]: any };
4723
+ input: falEndpoints.Flux2KleinRealtimeInput;
4724
+ output: falEndpoints.Flux2KleinRealtimeOutput;
4725
4725
  };
4726
4726
 
4727
4727
  'fal-ai/flux-2/klein/9b/lora': {
@@ -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;