@nikcli-ai/sdk 1.209.0 → 1.211.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.
@@ -116,6 +116,12 @@ export declare class Loop extends HeyApiClient {
116
116
  maxRuns?: number;
117
117
  timeoutMs?: number;
118
118
  createPR?: boolean;
119
+ sandbox?: boolean;
120
+ worktree?: {
121
+ name: string;
122
+ branch?: string;
123
+ directory: string;
124
+ };
119
125
  paused?: boolean;
120
126
  enabled: boolean;
121
127
  }, options?: Options<never, ThrowOnError>): RequestResult<LoopUpsertResponses, LoopUpsertErrors, ThrowOnError>;
@@ -187,6 +193,12 @@ export declare class Loop extends HeyApiClient {
187
193
  maxRuns?: number;
188
194
  timeoutMs?: number;
189
195
  createPR?: boolean;
196
+ sandbox?: boolean;
197
+ worktree?: {
198
+ name: string;
199
+ branch?: string;
200
+ directory: string;
201
+ };
190
202
  paused?: boolean;
191
203
  enabled: boolean;
192
204
  createdAt: number;
@@ -323,6 +335,12 @@ export declare class Mission extends HeyApiClient {
323
335
  orchestrator?: string;
324
336
  };
325
337
  timeoutMs?: number;
338
+ sandbox?: boolean;
339
+ worktree?: {
340
+ name: string;
341
+ branch?: string;
342
+ directory: string;
343
+ };
326
344
  }, options?: Options<never, ThrowOnError>): RequestResult<MissionUpsertResponses, MissionUpsertErrors, ThrowOnError>;
327
345
  /**
328
346
  * List mission templates
@@ -400,6 +418,12 @@ export declare class Mission extends HeyApiClient {
400
418
  orchestrator?: string;
401
419
  };
402
420
  timeoutMs?: number;
421
+ sandbox?: boolean;
422
+ worktree?: {
423
+ name: string;
424
+ branch?: string;
425
+ directory: string;
426
+ };
403
427
  status?: "planning" | "ready" | "running" | "paused" | "frozen" | "complete" | "error";
404
428
  createdAt: number;
405
429
  }, options?: Options<never, ThrowOnError>): RequestResult<MissionUpdateResponses, MissionUpdateErrors, ThrowOnError>;
@@ -164,6 +164,8 @@ export class Loop extends HeyApiClient {
164
164
  { in: "body", key: "maxRuns" },
165
165
  { in: "body", key: "timeoutMs" },
166
166
  { in: "body", key: "createPR" },
167
+ { in: "body", key: "sandbox" },
168
+ { in: "body", key: "worktree" },
167
169
  { in: "body", key: "paused" },
168
170
  { in: "body", key: "enabled" },
169
171
  ],
@@ -297,6 +299,8 @@ export class Loop extends HeyApiClient {
297
299
  { in: "body", key: "maxRuns" },
298
300
  { in: "body", key: "timeoutMs" },
299
301
  { in: "body", key: "createPR" },
302
+ { in: "body", key: "sandbox" },
303
+ { in: "body", key: "worktree" },
300
304
  { in: "body", key: "paused" },
301
305
  { in: "body", key: "enabled" },
302
306
  { in: "body", key: "createdAt" },
@@ -538,6 +542,8 @@ export class Mission extends HeyApiClient {
538
542
  { in: "body", key: "milestones" },
539
543
  { in: "body", key: "models" },
540
544
  { in: "body", key: "timeoutMs" },
545
+ { in: "body", key: "sandbox" },
546
+ { in: "body", key: "worktree" },
541
547
  ],
542
548
  },
543
549
  ]);
@@ -668,6 +674,8 @@ export class Mission extends HeyApiClient {
668
674
  { in: "body", key: "milestones" },
669
675
  { in: "body", key: "models" },
670
676
  { in: "body", key: "timeoutMs" },
677
+ { in: "body", key: "sandbox" },
678
+ { in: "body", key: "worktree" },
671
679
  { in: "body", key: "status" },
672
680
  { in: "body", key: "createdAt" },
673
681
  ],
@@ -1166,6 +1166,12 @@ export type LoopDefinition = {
1166
1166
  maxRuns?: number;
1167
1167
  timeoutMs?: number;
1168
1168
  createPR?: boolean;
1169
+ sandbox?: boolean;
1170
+ worktree?: {
1171
+ name: string;
1172
+ branch?: string;
1173
+ directory: string;
1174
+ };
1169
1175
  paused?: boolean;
1170
1176
  enabled: boolean;
1171
1177
  createdAt: number;
@@ -1241,6 +1247,12 @@ export type MissionDefinition = {
1241
1247
  orchestrator?: string;
1242
1248
  };
1243
1249
  timeoutMs?: number;
1250
+ sandbox?: boolean;
1251
+ worktree?: {
1252
+ name: string;
1253
+ branch?: string;
1254
+ directory: string;
1255
+ };
1244
1256
  status?: "planning" | "ready" | "running" | "paused" | "frozen" | "complete" | "error";
1245
1257
  createdAt: number;
1246
1258
  };
@@ -2984,6 +2996,7 @@ export type WorktreeCreateInput = {
2984
2996
  baseBranch?: string;
2985
2997
  remote?: string;
2986
2998
  startCommand?: string;
2999
+ root?: string;
2987
3000
  };
2988
3001
  export type WorkspaceConnectionStatus = {
2989
3002
  workspaceID: string;
@@ -3613,6 +3626,12 @@ export type MobileLoop = {
3613
3626
  maxRuns?: number;
3614
3627
  timeoutMs?: number;
3615
3628
  createPR?: boolean;
3629
+ sandbox?: boolean;
3630
+ worktree?: {
3631
+ name: string;
3632
+ branch?: string;
3633
+ directory: string;
3634
+ };
3616
3635
  paused?: boolean;
3617
3636
  enabled: boolean;
3618
3637
  createdAt: number;
@@ -3684,6 +3703,12 @@ export type MobileLoopWriteInput = {
3684
3703
  maxRuns?: number;
3685
3704
  timeoutMs?: number;
3686
3705
  createPR?: boolean;
3706
+ sandbox?: boolean;
3707
+ worktree?: {
3708
+ name: string;
3709
+ branch?: string;
3710
+ directory: string;
3711
+ };
3687
3712
  paused?: boolean;
3688
3713
  enabled: boolean;
3689
3714
  };
@@ -4144,6 +4169,12 @@ export type LoopUpsertData = {
4144
4169
  maxRuns?: number;
4145
4170
  timeoutMs?: number;
4146
4171
  createPR?: boolean;
4172
+ sandbox?: boolean;
4173
+ worktree?: {
4174
+ name: string;
4175
+ branch?: string;
4176
+ directory: string;
4177
+ };
4147
4178
  paused?: boolean;
4148
4179
  enabled: boolean;
4149
4180
  };
@@ -4296,6 +4327,12 @@ export type LoopUpdateData = {
4296
4327
  maxRuns?: number;
4297
4328
  timeoutMs?: number;
4298
4329
  createPR?: boolean;
4330
+ sandbox?: boolean;
4331
+ worktree?: {
4332
+ name: string;
4333
+ branch?: string;
4334
+ directory: string;
4335
+ };
4299
4336
  paused?: boolean;
4300
4337
  enabled: boolean;
4301
4338
  createdAt: number;
@@ -4525,6 +4562,12 @@ export type MissionUpsertData = {
4525
4562
  orchestrator?: string;
4526
4563
  };
4527
4564
  timeoutMs?: number;
4565
+ sandbox?: boolean;
4566
+ worktree?: {
4567
+ name: string;
4568
+ branch?: string;
4569
+ directory: string;
4570
+ };
4528
4571
  };
4529
4572
  path?: never;
4530
4573
  query?: {
@@ -4683,6 +4726,12 @@ export type MissionUpdateData = {
4683
4726
  orchestrator?: string;
4684
4727
  };
4685
4728
  timeoutMs?: number;
4729
+ sandbox?: boolean;
4730
+ worktree?: {
4731
+ name: string;
4732
+ branch?: string;
4733
+ directory: string;
4734
+ };
4686
4735
  status?: "planning" | "ready" | "running" | "paused" | "frozen" | "complete" | "error";
4687
4736
  createdAt: number;
4688
4737
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@nikcli-ai/sdk",
4
- "version": "1.209.0",
4
+ "version": "1.211.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {