@github/copilot-sdk 0.1.23-preview.1 → 0.1.24-preview.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 +1 -1
- package/dist/generated/session-events.d.ts +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -250,7 +250,7 @@ Sessions emit various events during processing:
|
|
|
250
250
|
- `assistant.message` - Assistant response
|
|
251
251
|
- `assistant.message_delta` - Streaming response chunk
|
|
252
252
|
- `tool.execution_start` - Tool execution started
|
|
253
|
-
- `tool.
|
|
253
|
+
- `tool.execution_complete` - Tool execution completed
|
|
254
254
|
- And more...
|
|
255
255
|
|
|
256
256
|
See `SessionEvent` type in the source for full details.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generated from: @github/copilot/session-events.schema.json
|
|
5
5
|
* Generated by: scripts/generate-session-types.ts
|
|
6
|
-
* Generated at: 2026-02-
|
|
6
|
+
* Generated at: 2026-02-06T20:38:23.139Z
|
|
7
7
|
*
|
|
8
8
|
* To update these types:
|
|
9
9
|
* 1. Update the schema in copilot-agent-runtime
|
|
@@ -202,6 +202,7 @@ export type SessionEvent = {
|
|
|
202
202
|
output: number;
|
|
203
203
|
cachedInput: number;
|
|
204
204
|
};
|
|
205
|
+
requestId?: string;
|
|
205
206
|
};
|
|
206
207
|
} | {
|
|
207
208
|
id: string;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/github/copilot-sdk.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.1.
|
|
7
|
+
"version": "0.1.24-preview.0",
|
|
8
8
|
"description": "TypeScript SDK for programmatic control of GitHub Copilot CLI via JSON-RPC",
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"author": "GitHub",
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@github/copilot": "^0.0.
|
|
43
|
+
"@github/copilot": "^0.0.405",
|
|
44
44
|
"vscode-jsonrpc": "^8.2.1",
|
|
45
45
|
"zod": "^4.3.6"
|
|
46
46
|
},
|