goatchain 0.0.35-beta.2 → 0.0.35-beta.3
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/dist/index.js +262 -258
- package/dist/session/session.d.ts +10 -0
- package/dist/session/types/messageQueue.d.ts +3 -0
- package/dist/session/utils/MessageQueue.d.ts +4 -4
- package/dist/types/event.d.ts +12 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1174,7 +1174,7 @@ if (checkpoint) {
|
|
|
1174
1174
|
|
|
1175
1175
|
### Complete Example: Interactive Approval System
|
|
1176
1176
|
|
|
1177
|
-
See `examples/tool-approval-session.ts` for a full example demonstrating:
|
|
1177
|
+
See `examples/demos/tool-approval-session.ts` for a full example demonstrating:
|
|
1178
1178
|
|
|
1179
1179
|
- **Sync approval** - Real-time approval during tool execution
|
|
1180
1180
|
- **Async approval** - Pause/resume pattern for user interaction
|
|
@@ -1183,7 +1183,7 @@ See `examples/tool-approval-session.ts` for a full example demonstrating:
|
|
|
1183
1183
|
|
|
1184
1184
|
```bash
|
|
1185
1185
|
# Run the example
|
|
1186
|
-
bun run examples/tool-approval-session.ts
|
|
1186
|
+
bun run examples/demos/tool-approval-session.ts
|
|
1187
1187
|
```
|
|
1188
1188
|
|
|
1189
1189
|
**Key features shown:**
|