@vibes.diy/use-vibes-types 2.0.9 → 2.0.10

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.
@@ -19,6 +19,7 @@ export interface VersionInfo {
19
19
  readonly created: number;
20
20
  readonly promptKey?: string;
21
21
  readonly assetUrl: string;
22
+ readonly model?: string;
22
23
  }
23
24
  export type GenerationPhase = "idle" | "generating" | "complete" | "error";
24
25
  export interface UseImgVibesOptions {
@@ -28,6 +29,7 @@ export interface UseImgVibesOptions {
28
29
  readonly generationId: string;
29
30
  readonly skip: boolean;
30
31
  readonly inputImage?: File;
32
+ readonly model?: string;
31
33
  }
32
34
  export interface UseImgVibesResult {
33
35
  readonly assetUrl?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibes.diy/use-vibes-types",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "description": "Core components and utilities for use-vibes (internal workspace package)",
@@ -15,7 +15,7 @@
15
15
  "@fireproof/core-types-base": "~0.24.19",
16
16
  "@fireproof/core-types-protocols-cloud": "~0.24.19",
17
17
  "@fireproof/use-fireproof": "~0.24.19",
18
- "call-ai": "^2.0.9"
18
+ "call-ai": "^2.0.10"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "react": ">=19.1.0"