veryfront 0.1.207 → 0.1.209

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.
@@ -9,10 +9,12 @@ export interface ModelRuntimeGenerateResult {
9
9
  content?: unknown[];
10
10
  finishReason?: unknown;
11
11
  usage?: unknown;
12
+ warnings?: unknown[];
12
13
  }
13
14
 
14
15
  export interface ModelRuntimeStreamResult {
15
16
  stream: ReadableStream<unknown>;
17
+ warnings?: unknown[];
16
18
  }
17
19
 
18
20
  export interface ModelRuntime extends RuntimeMetadata {
@@ -1,3 +1,3 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
- export const VERSION = "0.1.207";
3
+ export const VERSION = "0.1.209";