@getpaseo/client 0.1.104-beta.4 → 0.1.104

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.
@@ -480,6 +480,8 @@ export interface CreateScheduleOptions {
480
480
  modeId?: string;
481
481
  model?: string;
482
482
  thinkingOptionId?: string;
483
+ archiveOnFinish?: boolean;
484
+ isolation?: "local" | "worktree";
483
485
  title?: string | null;
484
486
  approvalPolicy?: string;
485
487
  sandboxMode?: string;
@@ -503,6 +505,9 @@ export interface UpdateScheduleNewAgentConfig {
503
505
  provider?: string;
504
506
  model?: string | null;
505
507
  modeId?: string | null;
508
+ thinkingOptionId?: string | null;
509
+ archiveOnFinish?: boolean;
510
+ isolation?: "local" | "worktree";
506
511
  cwd?: string;
507
512
  }
508
513
  export interface UpdateScheduleOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpaseo/client",
3
- "version": "0.1.104-beta.4",
3
+ "version": "0.1.104",
4
4
  "description": "Paseo client SDK package",
5
5
  "files": [
6
6
  "dist",
@@ -35,8 +35,8 @@
35
35
  "test": "vitest run"
36
36
  },
37
37
  "dependencies": {
38
- "@getpaseo/protocol": "0.1.104-beta.4",
39
- "@getpaseo/relay": "0.1.104-beta.4",
38
+ "@getpaseo/protocol": "0.1.104",
39
+ "@getpaseo/relay": "0.1.104",
40
40
  "zod": "^4.4.3"
41
41
  },
42
42
  "devDependencies": {