@vibes.diy/prompts 0.19.16-dev-cli → 0.19.17-dev-cli

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/prompts.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibes.diy/prompts",
3
- "version": "0.19.16-dev-cli",
3
+ "version": "0.19.17-dev-cli",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "keywords": [
@@ -25,7 +25,7 @@
25
25
  "@fireproof/core-types-base": "~0.24.12",
26
26
  "@fireproof/core-types-protocols-cloud": "~0.24.12",
27
27
  "@fireproof/use-fireproof": "~0.24.12",
28
- "@vibes.diy/use-vibes-types": "^0.19.16-dev-cli"
28
+ "@vibes.diy/use-vibes-types": "^0.19.17-dev-cli"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "react": ">=19.1.0"
package/prompts.d.ts CHANGED
@@ -6,7 +6,7 @@ type ChatMessage = {
6
6
  readonly content: string;
7
7
  } | {
8
8
  readonly role: "system" | "user" | "assistant";
9
- readonly content: ReadonlyArray<{
9
+ readonly content: readonly ({
10
10
  readonly type: "text";
11
11
  readonly text: string;
12
12
  } | {
@@ -14,7 +14,7 @@ type ChatMessage = {
14
14
  readonly image_url: {
15
15
  readonly url: string;
16
16
  };
17
- }>;
17
+ })[];
18
18
  };
19
19
  export declare const DEFAULT_CODING_MODEL: "anthropic/claude-opus-4.5";
20
20
  export declare function normalizeModelId(id: unknown): string | undefined;