@chatu-ai/builder-sdk-vue 0.9.1 → 0.9.2

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.
@@ -27,6 +27,13 @@ export declare function useSandboxStatus(client: BuilderClient, conversationId:
27
27
  readonly ready?: boolean | undefined;
28
28
  readonly startingForMs?: number | null | undefined;
29
29
  readonly lastError?: string | null | undefined;
30
+ readonly crash?: {
31
+ readonly at?: string | null | undefined;
32
+ readonly exitCode?: number | null | undefined;
33
+ readonly restart?: number | undefined;
34
+ readonly gaveUp?: boolean | undefined;
35
+ readonly errors?: readonly string[] | undefined;
36
+ } | null | undefined;
30
37
  } | null | undefined;
31
38
  readonly agent?: {
32
39
  readonly executing: boolean;
@@ -44,6 +51,13 @@ export declare function useSandboxStatus(client: BuilderClient, conversationId:
44
51
  readonly ready?: boolean | undefined;
45
52
  readonly startingForMs?: number | null | undefined;
46
53
  readonly lastError?: string | null | undefined;
54
+ readonly crash?: {
55
+ readonly at?: string | null | undefined;
56
+ readonly exitCode?: number | null | undefined;
57
+ readonly restart?: number | undefined;
58
+ readonly gaveUp?: boolean | undefined;
59
+ readonly errors?: readonly string[] | undefined;
60
+ } | null | undefined;
47
61
  } | null | undefined;
48
62
  readonly agent?: {
49
63
  readonly executing: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatu-ai/builder-sdk-vue",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Vue 3 bindings for @chatu-ai/builder-sdk: useBuilderChat / useSandboxStatus / usePreviewUrl",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -41,7 +41,7 @@
41
41
  "node": ">=18"
42
42
  },
43
43
  "dependencies": {
44
- "@chatu-ai/builder-sdk": "0.9.1"
44
+ "@chatu-ai/builder-sdk": "0.9.2"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "vue": "^3.4.0"
@@ -50,7 +50,7 @@
50
50
  "typescript": "^5.7.0",
51
51
  "vue": "^3.5.0",
52
52
  "vitest": "^3.0.0",
53
- "@chatu-ai/builder-sdk-mock": "0.9.1"
53
+ "@chatu-ai/builder-sdk-mock": "0.9.2"
54
54
  },
55
55
  "scripts": {
56
56
  "build": "tsc -p tsconfig.json",