@vibes.diy/use-vibes-types 4.4.1 → 4.4.5

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.
@@ -1,15 +1,6 @@
1
1
  import type { Database, DocWithId } from "@vibes.diy/vibe-runtime";
2
- export interface PromptEntry {
3
- readonly text: string;
4
- readonly created: number;
5
- }
6
- export interface FileMeta {
7
- readonly uploadId: string;
8
- readonly type: string;
9
- readonly size: number;
10
- readonly lastModified?: number;
11
- readonly url?: string;
12
- }
2
+ export type { FileMeta, PromptEntry } from "@vibes.diy/vibe-types";
3
+ import type { FileMeta, PromptEntry } from "@vibes.diy/vibe-types";
13
4
  export interface ImageDocumentPlain {
14
5
  readonly type: "image";
15
6
  readonly created: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibes.diy/use-vibes-types",
3
- "version": "4.4.1",
3
+ "version": "4.4.5",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "description": "Core components and utilities for use-vibes (internal workspace package)",
@@ -9,7 +9,8 @@
9
9
  },
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "@vibes.diy/vibe-runtime": "^4.4.1"
12
+ "@vibes.diy/vibe-runtime": "^4.4.5",
13
+ "@vibes.diy/vibe-types": "^4.4.5"
13
14
  },
14
15
  "peerDependencies": {
15
16
  "react": ">=19.1.0"