@assistant-ui/react 0.15.11 → 0.15.12

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,7 +1,5 @@
1
1
  //#region src/utils/useToolArgsFieldStatus.d.ts
2
2
  declare const useToolArgsFieldStatus: (fieldPath: (string | number)[]) => {
3
- type: string;
4
- } | {
5
3
  readonly type: "running";
6
4
  } | {
7
5
  readonly type: "complete";
@@ -9,6 +7,8 @@ declare const useToolArgsFieldStatus: (fieldPath: (string | number)[]) => {
9
7
  readonly type: "incomplete";
10
8
  readonly reason: "cancelled" | "length" | "content-filter" | "other" | "error";
11
9
  readonly error?: unknown;
10
+ } | {
11
+ type: string;
12
12
  };
13
13
  //#endregion
14
14
  export { useToolArgsFieldStatus };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@assistant-ui/react",
3
- "version": "0.15.11",
3
+ "version": "0.15.12",
4
4
  "description": "Open-source TypeScript/React library for building production-grade AI chat experiences",
5
5
  "keywords": [
6
6
  "ai",
@@ -55,7 +55,7 @@
55
55
  ],
56
56
  "sideEffects": false,
57
57
  "dependencies": {
58
- "@assistant-ui/core": "^0.3.10",
58
+ "@assistant-ui/core": "^0.3.11",
59
59
  "@assistant-ui/store": "^0.3.8",
60
60
  "@assistant-ui/tap": "^0.9.11",
61
61
  "@radix-ui/primitive": "^1.1.7",
@@ -67,8 +67,7 @@
67
67
  "@radix-ui/react-use-controllable-state": "^1.2.6",
68
68
  "@radix-ui/react-use-escape-keydown": "^1.1.5",
69
69
  "assistant-cloud": "^0.1.39",
70
- "assistant-stream": "^0.3.36",
71
- "nanoid": "^6.0.1",
70
+ "assistant-stream": "^0.3.37",
72
71
  "radix-ui": "^1.6.7",
73
72
  "react-textarea-autosize": "^8.5.9",
74
73
  "safe-content-frame": "^0.0.27",