@replayio/app-building 1.10.0 → 1.11.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/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -188,8 +188,8 @@ Every POST body has this shape:
|
|
|
188
188
|
| `message.started` | Message processing begins | `iteration`, `prompt` |
|
|
189
189
|
| `message.done` | Message processing complete | `messageId`, `cost_usd`, `duration_ms`, `num_turns` |
|
|
190
190
|
| `message.error` | Message processing failed | `messageId`, `error` |
|
|
191
|
-
| `task.started` | Task processing begins | `iteration`, `skill`, `subtasks` |
|
|
192
|
-
| `task.done` | Task processing complete | `skill`, `cost`, `totalCost`, `failed`, `pendingTasks` |
|
|
191
|
+
| `task.started` | Task processing begins | `iteration`, `skill`, `subtasks`, `prompt` |
|
|
192
|
+
| `task.done` | Task processing complete | `skill`, `subtasks`, `prompt`, `cost`, `totalCost`, `failed`, `pendingTasks`, `duration_ms` |
|
|
193
193
|
| `log` | Each log line | `line` |
|
|
194
194
|
|
|
195
195
|
### Example
|