@wrongstack/webui 0.265.1 → 0.267.0

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.
package/dist/types.d.ts CHANGED
@@ -867,6 +867,13 @@ type WSClientMessage = WSUserMessage | WSToolConfirmResult | {
867
867
  type: 'process.killAll';
868
868
  } | {
869
869
  type: 'git.info';
870
+ } | {
871
+ type: 'git.changes';
872
+ } | {
873
+ type: 'git.diff';
874
+ payload: {
875
+ path: string;
876
+ };
870
877
  } | {
871
878
  type: 'goal.get';
872
879
  } | {
@@ -1124,6 +1131,28 @@ type WSServerMessage = WSSessionStart | WSSessionEnd | WSTextDelta | WSThinkingD
1124
1131
  behind: number;
1125
1132
  ahead: number;
1126
1133
  };
1134
+ } | {
1135
+ type: 'git.changes';
1136
+ payload: {
1137
+ files: Array<{
1138
+ path: string;
1139
+ status: string;
1140
+ added: number;
1141
+ deleted: number;
1142
+ staged: boolean;
1143
+ }>;
1144
+ error?: string | undefined;
1145
+ };
1146
+ } | {
1147
+ type: 'git.diff';
1148
+ payload: {
1149
+ path: string;
1150
+ oldText?: string | undefined;
1151
+ newText?: string | undefined;
1152
+ binary?: boolean | undefined;
1153
+ tooLarge?: boolean | undefined;
1154
+ error?: string | undefined;
1155
+ };
1127
1156
  } | {
1128
1157
  type: 'projects.list';
1129
1158
  payload: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/webui",
3
- "version": "0.265.1",
3
+ "version": "0.267.0",
4
4
  "license": "MIT",
5
5
  "description": "Browser-based WebUI for WrongStack — React + Vite frontend with WebSocket backend that drives the same agent kernel as the CLI/TUI.",
6
6
  "keywords": [
@@ -84,10 +84,11 @@
84
84
  "virtua": "^0.49.1",
85
85
  "ws": "^8.21.0",
86
86
  "zustand": "^5.0.14",
87
- "@wrongstack/providers": "0.265.1",
88
- "@wrongstack/runtime": "0.265.1",
89
- "@wrongstack/core": "0.265.1",
90
- "@wrongstack/tools": "0.265.1"
87
+ "@wrongstack/core": "0.267.0",
88
+ "@wrongstack/mcp": "0.267.0",
89
+ "@wrongstack/tools": "0.267.0",
90
+ "@wrongstack/providers": "0.267.0",
91
+ "@wrongstack/runtime": "0.267.0"
91
92
  },
92
93
  "devDependencies": {
93
94
  "@playwright/test": "^1.60.0",