@github/copilot 0.0.349-3 → 0.0.349-5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@github/copilot",
3
3
  "description": "GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal.",
4
- "version": "0.0.349-3",
4
+ "version": "0.0.349-5",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
@@ -35,7 +35,7 @@
35
35
  "worker/**/*"
36
36
  ],
37
37
  "buildMetadata": {
38
- "gitCommit": "0d91e89"
38
+ "gitCommit": "7138709"
39
39
  },
40
40
  "dependencies": {
41
41
  "sharp": "^0.34.3"
package/sdk/index.d.ts CHANGED
@@ -376,7 +376,7 @@ declare class CLISessionManager extends SessionManager {
376
376
  * ALWAYS loads from disk to ensure freshness
377
377
  * Supports both JSONL and legacy JSON formats
378
378
  */
379
- getSession(sessionId: string): Promise<Session | undefined>;
379
+ getSession(sessionId: string, resume?: boolean): Promise<Session | undefined>;
380
380
  saveSession(session: Session): Promise<void>;
381
381
  private loadSession;
382
382
  /**