@claudexor/schema 3.1.1 → 3.1.2
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/dist/agent-capabilities.d.ts +89 -1
- package/dist/agent-capabilities.d.ts.map +1 -1
- package/dist/agent-capabilities.js +5 -0
- package/dist/agent-capabilities.js.map +1 -1
- package/dist/apply-eligibility.d.ts +102 -0
- package/dist/apply-eligibility.d.ts.map +1 -1
- package/dist/apply-eligibility.js +17 -0
- package/dist/apply-eligibility.js.map +1 -1
- package/dist/budget.d.ts +4 -4
- package/dist/budget.d.ts.map +1 -1
- package/dist/budget.js +2 -0
- package/dist/budget.js.map +1 -1
- package/dist/control-operation-responses.d.ts +133 -29
- package/dist/control-operation-responses.d.ts.map +1 -1
- package/dist/control-operation-responses.js +25 -0
- package/dist/control-operation-responses.js.map +1 -1
- package/dist/control-run-detail.d.ts +1405 -197
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-run-detail.js +6 -0
- package/dist/control-run-detail.js.map +1 -1
- package/dist/control-run-retry.d.ts +2 -2
- package/dist/control.d.ts +351 -79
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +23 -28
- package/dist/control.js.map +1 -1
- package/dist/decision.d.ts +5 -0
- package/dist/decision.d.ts.map +1 -1
- package/dist/decision.js +7 -3
- package/dist/decision.js.map +1 -1
- package/dist/delegation.d.ts +73 -0
- package/dist/delegation.d.ts.map +1 -0
- package/dist/delegation.js +120 -0
- package/dist/delegation.js.map +1 -0
- package/dist/events.d.ts +4 -4
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +3 -0
- package/dist/events.js.map +1 -1
- package/dist/harness.d.ts +15 -15
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +10 -14
- package/dist/harness.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/readiness.d.ts +38 -0
- package/dist/readiness.d.ts.map +1 -1
- package/dist/readiness.js +4 -0
- package/dist/readiness.js.map +1 -1
- package/dist/request-requirements.d.ts +7 -7
- package/dist/request-requirements.d.ts.map +1 -1
- package/dist/request-requirements.js +2 -1
- package/dist/request-requirements.js.map +1 -1
- package/dist/task.d.ts +42 -0
- package/dist/task.d.ts.map +1 -1
- package/dist/task.js +11 -0
- package/dist/task.js.map +1 -1
- package/dist/telemetry.d.ts +87 -49
- package/dist/telemetry.d.ts.map +1 -1
- package/dist/telemetry.js +6 -9
- package/dist/telemetry.js.map +1 -1
- package/dist/workspace.d.ts +1 -1
- package/dist/workspace.js +7 -7
- package/dist/workspace.js.map +1 -1
- package/generated/AgentCapabilityCatalog.schema.json +39 -1
- package/generated/ControlHarnessListResponse.schema.json +48 -2
- package/generated/ControlRunAgainDraft.schema.json +6 -2
- package/generated/ControlRunControlResponse.schema.json +8 -0
- package/generated/ControlRunDetail.schema.json +116 -14
- package/generated/ControlRunListResponse.schema.json +93 -9
- package/generated/ControlRunStartRequest.schema.json +6 -2
- package/generated/ControlRunSummary.schema.json +93 -9
- package/generated/ControlThreadDetail.schema.json +64 -0
- package/generated/ControlThreadTurnRequest.schema.json +1 -1
- package/generated/DecisionRecord.schema.json +10 -1
- package/generated/HarnessManifest.schema.json +2 -2
- package/generated/HarnessStatusDto.schema.json +48 -2
- package/generated/McpRunHandleResult.schema.json +72 -1
- package/generated/McpRunToolResult.schema.json +69 -0
- package/generated/RunEvent.schema.json +1 -0
- package/generated/RunFailure.schema.json +4 -3
- package/generated/RunTelemetry.schema.json +61 -2
- package/generated/TaskContract.schema.json +43 -3
- package/generated/WorkspaceEnvelope.schema.json +6 -6
- package/package.json +2 -2
|
@@ -28,10 +28,77 @@ export declare const ControlRunStartResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
28
28
|
error?: string | undefined;
|
|
29
29
|
}>]>;
|
|
30
30
|
export type ControlRunStartResponse = z.infer<typeof ControlRunStartResponse>;
|
|
31
|
+
export declare const ControlInteractionAnswerResponse: z.ZodObject<{
|
|
32
|
+
accepted: z.ZodBoolean;
|
|
33
|
+
status: z.ZodEnum<["delivered", "not_found", "already_resolved", "rejected"]>;
|
|
34
|
+
message: z.ZodOptional<z.ZodString>;
|
|
35
|
+
}, "strip", z.ZodTypeAny, {
|
|
36
|
+
status: "rejected" | "delivered" | "not_found" | "already_resolved";
|
|
37
|
+
accepted: boolean;
|
|
38
|
+
message?: string | undefined;
|
|
39
|
+
}, {
|
|
40
|
+
status: "rejected" | "delivered" | "not_found" | "already_resolved";
|
|
41
|
+
accepted: boolean;
|
|
42
|
+
message?: string | undefined;
|
|
43
|
+
}>;
|
|
44
|
+
export type ControlInteractionAnswerResponse = z.infer<typeof ControlInteractionAnswerResponse>;
|
|
45
|
+
export declare const ControlRunControlResponse: z.ZodObject<{
|
|
46
|
+
accepted: z.ZodBoolean;
|
|
47
|
+
status: z.ZodDefault<z.ZodEnum<["applied", "queued", "rejected", "unsupported"]>>;
|
|
48
|
+
runId: z.ZodOptional<z.ZodString>;
|
|
49
|
+
cascadeRunIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
50
|
+
message: z.ZodOptional<z.ZodString>;
|
|
51
|
+
}, "strip", z.ZodTypeAny, {
|
|
52
|
+
status: "unsupported" | "rejected" | "queued" | "applied";
|
|
53
|
+
accepted: boolean;
|
|
54
|
+
cascadeRunIds: string[];
|
|
55
|
+
message?: string | undefined;
|
|
56
|
+
runId?: string | undefined;
|
|
57
|
+
}, {
|
|
58
|
+
accepted: boolean;
|
|
59
|
+
message?: string | undefined;
|
|
60
|
+
status?: "unsupported" | "rejected" | "queued" | "applied" | undefined;
|
|
61
|
+
runId?: string | undefined;
|
|
62
|
+
cascadeRunIds?: string[] | undefined;
|
|
63
|
+
}>;
|
|
64
|
+
export type ControlRunControlResponse = z.infer<typeof ControlRunControlResponse>;
|
|
31
65
|
export declare const ControlRunListResponse: z.ZodObject<{
|
|
32
66
|
runs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
33
67
|
jobId: z.ZodString;
|
|
34
68
|
runId: z.ZodString;
|
|
69
|
+
parentRunId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
70
|
+
delegatedFromRunId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
71
|
+
delegation: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodObject<{
|
|
72
|
+
requested: z.ZodDefault<z.ZodBoolean>;
|
|
73
|
+
effective: z.ZodDefault<z.ZodBoolean>;
|
|
74
|
+
used: z.ZodDefault<z.ZodBoolean>;
|
|
75
|
+
reason: z.ZodDefault<z.ZodEnum<["pending", "not_requested", "injected_unused", "used", "runtime_unavailable", "manifest_unsupported", "access_profile_incompatible", "partially_degraded", "startup_failed"]>>;
|
|
76
|
+
remediation: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
77
|
+
}, "strict", z.ZodTypeAny, {
|
|
78
|
+
requested: boolean;
|
|
79
|
+
effective: boolean;
|
|
80
|
+
reason: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed";
|
|
81
|
+
remediation: string | null;
|
|
82
|
+
used: boolean;
|
|
83
|
+
}, {
|
|
84
|
+
requested?: boolean | undefined;
|
|
85
|
+
effective?: boolean | undefined;
|
|
86
|
+
reason?: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed" | undefined;
|
|
87
|
+
remediation?: string | null | undefined;
|
|
88
|
+
used?: boolean | undefined;
|
|
89
|
+
}>, {
|
|
90
|
+
requested: boolean;
|
|
91
|
+
effective: boolean;
|
|
92
|
+
reason: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed";
|
|
93
|
+
remediation: string | null;
|
|
94
|
+
used: boolean;
|
|
95
|
+
}, {
|
|
96
|
+
requested?: boolean | undefined;
|
|
97
|
+
effective?: boolean | undefined;
|
|
98
|
+
reason?: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed" | undefined;
|
|
99
|
+
remediation?: string | null | undefined;
|
|
100
|
+
used?: boolean | undefined;
|
|
101
|
+
}>>>;
|
|
35
102
|
taskId: z.ZodOptional<z.ZodString>;
|
|
36
103
|
state: z.ZodEnum<["queued", "running", "succeeded", "failed", "cancelled", "interrupted"]>;
|
|
37
104
|
runDir: z.ZodOptional<z.ZodString>;
|
|
@@ -39,7 +106,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
39
106
|
failure: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
40
107
|
phase: z.ZodDefault<z.ZodString>;
|
|
41
108
|
category: z.ZodDefault<z.ZodEnum<["validation", "project", "auth", "harness_unavailable", "harness_error", "config_error", "budget", "policy", "cancelled", "internal", "unknown"]>>;
|
|
42
|
-
code: z.ZodDefault<z.ZodNullable<z.ZodEnum<["finite_zero", "hard_cap", "estimate_headroom", "unknown_paid_in_flight", "budget_overshoot", "cost_unverifiable"]>>>;
|
|
109
|
+
code: z.ZodDefault<z.ZodNullable<z.ZodEnum<["finite_zero", "hard_cap", "estimate_headroom", "unknown_paid_in_flight", "budget_overshoot", "cost_unverifiable", "delegation_child_drain_timeout"]>>>;
|
|
43
110
|
harnessId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
44
111
|
attemptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
45
112
|
safeMessage: z.ZodString;
|
|
@@ -49,7 +116,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
49
116
|
runDir: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
50
117
|
nextActions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
51
118
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
code: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | null;
|
|
119
|
+
code: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | "delegation_child_drain_timeout" | null;
|
|
53
120
|
harnessId: string | null;
|
|
54
121
|
attemptId: string | null;
|
|
55
122
|
runDir: string | null;
|
|
@@ -62,7 +129,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
62
129
|
nextActions: string[];
|
|
63
130
|
}, {
|
|
64
131
|
safeMessage: string;
|
|
65
|
-
code?: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | null | undefined;
|
|
132
|
+
code?: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | "delegation_child_drain_timeout" | null | undefined;
|
|
66
133
|
harnessId?: string | null | undefined;
|
|
67
134
|
attemptId?: string | null | undefined;
|
|
68
135
|
runDir?: string | null | undefined;
|
|
@@ -226,28 +293,28 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
226
293
|
errorSummary?: string | null | undefined;
|
|
227
294
|
}>>;
|
|
228
295
|
requestRequirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
229
|
-
capability: z.ZodEnum<["browser", "path_deny"]>;
|
|
296
|
+
capability: z.ZodEnum<["browser", "path_deny", "delegation"]>;
|
|
230
297
|
harness_id: z.ZodString;
|
|
231
298
|
eligible: z.ZodBoolean;
|
|
232
299
|
requested: z.ZodBoolean;
|
|
233
300
|
effective: z.ZodBoolean;
|
|
234
|
-
reason: z.ZodEnum<["not_requested", "effective", "manifest_unsupported", "web_policy_off", "access_profile_incompatible", "postdiff_only"]>;
|
|
301
|
+
reason: z.ZodEnum<["not_requested", "effective", "manifest_unsupported", "web_policy_off", "access_profile_incompatible", "runtime_unavailable", "postdiff_only"]>;
|
|
235
302
|
evidence_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
236
303
|
}, "strip", z.ZodTypeAny, {
|
|
237
304
|
requested: boolean;
|
|
238
305
|
effective: boolean;
|
|
239
306
|
harness_id: string;
|
|
240
|
-
reason: "effective" | "
|
|
307
|
+
reason: "effective" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "access_profile_incompatible" | "web_policy_off" | "postdiff_only";
|
|
241
308
|
evidence_refs: string[];
|
|
242
309
|
eligible: boolean;
|
|
243
|
-
capability: "browser" | "path_deny";
|
|
310
|
+
capability: "browser" | "delegation" | "path_deny";
|
|
244
311
|
}, {
|
|
245
312
|
requested: boolean;
|
|
246
313
|
effective: boolean;
|
|
247
314
|
harness_id: string;
|
|
248
|
-
reason: "effective" | "
|
|
315
|
+
reason: "effective" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "access_profile_incompatible" | "web_policy_off" | "postdiff_only";
|
|
249
316
|
eligible: boolean;
|
|
250
|
-
capability: "browser" | "path_deny";
|
|
317
|
+
capability: "browser" | "delegation" | "path_deny";
|
|
251
318
|
evidence_refs?: string[] | undefined;
|
|
252
319
|
}>, "many">>;
|
|
253
320
|
toolPermissionPolicy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -396,7 +463,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
396
463
|
paid_fallback: z.ZodEnum<["never", "when_unavailable", "allowed_within_cap"]>;
|
|
397
464
|
order: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
398
465
|
dropped: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
399
|
-
reason: z.ZodEnum<["subscription_entitlement_first", "lowest_incremental_cash", "quality_tier", "expiring_quota_slack", "all_incremental_cash_unknown", "declared_order"]>;
|
|
466
|
+
reason: z.ZodEnum<["subscription_entitlement_first", "lowest_incremental_cash", "quality_tier", "expiring_quota_slack", "all_incremental_cash_unknown", "delegate_effective_first", "explicit_primary", "declared_order"]>;
|
|
400
467
|
entries: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
401
468
|
harness_id: z.ZodString;
|
|
402
469
|
billing_knowledge: z.ZodEnum<["proven_zero", "subscription_entitlement", "metered", "unknown"]>;
|
|
@@ -420,13 +487,13 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
420
487
|
incremental_cost_usd: number | null;
|
|
421
488
|
eligible: boolean;
|
|
422
489
|
}[];
|
|
423
|
-
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "declared_order";
|
|
490
|
+
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "delegate_effective_first" | "explicit_primary" | "declared_order";
|
|
424
491
|
goal: "auto" | "quality" | "economy";
|
|
425
492
|
paid_fallback: "never" | "when_unavailable" | "allowed_within_cap";
|
|
426
493
|
order: string[];
|
|
427
494
|
dropped: string[];
|
|
428
495
|
}, {
|
|
429
|
-
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "declared_order";
|
|
496
|
+
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "delegate_effective_first" | "explicit_primary" | "declared_order";
|
|
430
497
|
goal: "auto" | "quality" | "economy";
|
|
431
498
|
paid_fallback: "never" | "when_unavailable" | "allowed_within_cap";
|
|
432
499
|
entries?: {
|
|
@@ -459,6 +526,15 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
459
526
|
finishedAt: z.ZodOptional<z.ZodString>;
|
|
460
527
|
}, "strip", z.ZodTypeAny, {
|
|
461
528
|
state: "failed" | "cancelled" | "running" | "succeeded" | "interrupted" | "queued";
|
|
529
|
+
parentRunId: string | null;
|
|
530
|
+
delegatedFromRunId: string | null;
|
|
531
|
+
delegation: {
|
|
532
|
+
requested: boolean;
|
|
533
|
+
effective: boolean;
|
|
534
|
+
reason: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed";
|
|
535
|
+
remediation: string | null;
|
|
536
|
+
used: boolean;
|
|
537
|
+
} | null;
|
|
462
538
|
project: {
|
|
463
539
|
kind: "none" | "project";
|
|
464
540
|
context: "off" | "auto";
|
|
@@ -468,7 +544,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
468
544
|
jobId: string;
|
|
469
545
|
runId: string;
|
|
470
546
|
failure: {
|
|
471
|
-
code: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | null;
|
|
547
|
+
code: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | "delegation_child_drain_timeout" | null;
|
|
472
548
|
harnessId: string | null;
|
|
473
549
|
attemptId: string | null;
|
|
474
550
|
runDir: string | null;
|
|
@@ -497,10 +573,10 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
497
573
|
requested: boolean;
|
|
498
574
|
effective: boolean;
|
|
499
575
|
harness_id: string;
|
|
500
|
-
reason: "effective" | "
|
|
576
|
+
reason: "effective" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "access_profile_incompatible" | "web_policy_off" | "postdiff_only";
|
|
501
577
|
evidence_refs: string[];
|
|
502
578
|
eligible: boolean;
|
|
503
|
-
capability: "browser" | "path_deny";
|
|
579
|
+
capability: "browser" | "delegation" | "path_deny";
|
|
504
580
|
}[];
|
|
505
581
|
outputReadyState: "pending" | "finalizing" | "ready" | "diagnostic";
|
|
506
582
|
toolWarningsTotal: number;
|
|
@@ -549,7 +625,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
549
625
|
incremental_cost_usd: number | null;
|
|
550
626
|
eligible: boolean;
|
|
551
627
|
}[];
|
|
552
|
-
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "declared_order";
|
|
628
|
+
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "delegate_effective_first" | "explicit_primary" | "declared_order";
|
|
553
629
|
goal: "auto" | "quality" | "economy";
|
|
554
630
|
paid_fallback: "never" | "when_unavailable" | "allowed_within_cap";
|
|
555
631
|
order: string[];
|
|
@@ -625,6 +701,15 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
625
701
|
mode?: "ask" | "plan" | "agent" | undefined;
|
|
626
702
|
prompt?: string | undefined;
|
|
627
703
|
access?: "readonly" | "workspace_write" | "full" | "external_sandbox_full" | "inherit_native" | undefined;
|
|
704
|
+
parentRunId?: string | null | undefined;
|
|
705
|
+
delegatedFromRunId?: string | null | undefined;
|
|
706
|
+
delegation?: {
|
|
707
|
+
requested?: boolean | undefined;
|
|
708
|
+
effective?: boolean | undefined;
|
|
709
|
+
reason?: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed" | undefined;
|
|
710
|
+
remediation?: string | null | undefined;
|
|
711
|
+
used?: boolean | undefined;
|
|
712
|
+
} | null | undefined;
|
|
628
713
|
harnesses?: string[] | undefined;
|
|
629
714
|
model?: string | undefined;
|
|
630
715
|
tests?: {
|
|
@@ -662,7 +747,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
662
747
|
}[] | undefined;
|
|
663
748
|
failure?: {
|
|
664
749
|
safeMessage: string;
|
|
665
|
-
code?: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | null | undefined;
|
|
750
|
+
code?: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | "delegation_child_drain_timeout" | null | undefined;
|
|
666
751
|
harnessId?: string | null | undefined;
|
|
667
752
|
attemptId?: string | null | undefined;
|
|
668
753
|
runDir?: string | null | undefined;
|
|
@@ -713,9 +798,9 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
713
798
|
requested: boolean;
|
|
714
799
|
effective: boolean;
|
|
715
800
|
harness_id: string;
|
|
716
|
-
reason: "effective" | "
|
|
801
|
+
reason: "effective" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "access_profile_incompatible" | "web_policy_off" | "postdiff_only";
|
|
717
802
|
eligible: boolean;
|
|
718
|
-
capability: "browser" | "path_deny";
|
|
803
|
+
capability: "browser" | "delegation" | "path_deny";
|
|
719
804
|
evidence_refs?: string[] | undefined;
|
|
720
805
|
}[] | undefined;
|
|
721
806
|
toolPermissionPolicy?: Record<string, unknown> | undefined;
|
|
@@ -760,7 +845,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
760
845
|
observedModel?: string | null | undefined;
|
|
761
846
|
} | null | undefined;
|
|
762
847
|
routingRationale?: {
|
|
763
|
-
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "declared_order";
|
|
848
|
+
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "delegate_effective_first" | "explicit_primary" | "declared_order";
|
|
764
849
|
goal: "auto" | "quality" | "economy";
|
|
765
850
|
paid_fallback: "never" | "when_unavailable" | "allowed_within_cap";
|
|
766
851
|
entries?: {
|
|
@@ -785,6 +870,15 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
785
870
|
}, "strict", z.ZodTypeAny, {
|
|
786
871
|
runs: {
|
|
787
872
|
state: "failed" | "cancelled" | "running" | "succeeded" | "interrupted" | "queued";
|
|
873
|
+
parentRunId: string | null;
|
|
874
|
+
delegatedFromRunId: string | null;
|
|
875
|
+
delegation: {
|
|
876
|
+
requested: boolean;
|
|
877
|
+
effective: boolean;
|
|
878
|
+
reason: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed";
|
|
879
|
+
remediation: string | null;
|
|
880
|
+
used: boolean;
|
|
881
|
+
} | null;
|
|
788
882
|
project: {
|
|
789
883
|
kind: "none" | "project";
|
|
790
884
|
context: "off" | "auto";
|
|
@@ -794,7 +888,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
794
888
|
jobId: string;
|
|
795
889
|
runId: string;
|
|
796
890
|
failure: {
|
|
797
|
-
code: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | null;
|
|
891
|
+
code: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | "delegation_child_drain_timeout" | null;
|
|
798
892
|
harnessId: string | null;
|
|
799
893
|
attemptId: string | null;
|
|
800
894
|
runDir: string | null;
|
|
@@ -823,10 +917,10 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
823
917
|
requested: boolean;
|
|
824
918
|
effective: boolean;
|
|
825
919
|
harness_id: string;
|
|
826
|
-
reason: "effective" | "
|
|
920
|
+
reason: "effective" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "access_profile_incompatible" | "web_policy_off" | "postdiff_only";
|
|
827
921
|
evidence_refs: string[];
|
|
828
922
|
eligible: boolean;
|
|
829
|
-
capability: "browser" | "path_deny";
|
|
923
|
+
capability: "browser" | "delegation" | "path_deny";
|
|
830
924
|
}[];
|
|
831
925
|
outputReadyState: "pending" | "finalizing" | "ready" | "diagnostic";
|
|
832
926
|
toolWarningsTotal: number;
|
|
@@ -875,7 +969,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
875
969
|
incremental_cost_usd: number | null;
|
|
876
970
|
eligible: boolean;
|
|
877
971
|
}[];
|
|
878
|
-
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "declared_order";
|
|
972
|
+
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "delegate_effective_first" | "explicit_primary" | "declared_order";
|
|
879
973
|
goal: "auto" | "quality" | "economy";
|
|
880
974
|
paid_fallback: "never" | "when_unavailable" | "allowed_within_cap";
|
|
881
975
|
order: string[];
|
|
@@ -955,6 +1049,15 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
955
1049
|
mode?: "ask" | "plan" | "agent" | undefined;
|
|
956
1050
|
prompt?: string | undefined;
|
|
957
1051
|
access?: "readonly" | "workspace_write" | "full" | "external_sandbox_full" | "inherit_native" | undefined;
|
|
1052
|
+
parentRunId?: string | null | undefined;
|
|
1053
|
+
delegatedFromRunId?: string | null | undefined;
|
|
1054
|
+
delegation?: {
|
|
1055
|
+
requested?: boolean | undefined;
|
|
1056
|
+
effective?: boolean | undefined;
|
|
1057
|
+
reason?: "pending" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "injected_unused" | "used" | "access_profile_incompatible" | "partially_degraded" | "startup_failed" | undefined;
|
|
1058
|
+
remediation?: string | null | undefined;
|
|
1059
|
+
used?: boolean | undefined;
|
|
1060
|
+
} | null | undefined;
|
|
958
1061
|
harnesses?: string[] | undefined;
|
|
959
1062
|
model?: string | undefined;
|
|
960
1063
|
tests?: {
|
|
@@ -992,7 +1095,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
992
1095
|
}[] | undefined;
|
|
993
1096
|
failure?: {
|
|
994
1097
|
safeMessage: string;
|
|
995
|
-
code?: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | null | undefined;
|
|
1098
|
+
code?: "budget_overshoot" | "cost_unverifiable" | "finite_zero" | "hard_cap" | "estimate_headroom" | "unknown_paid_in_flight" | "delegation_child_drain_timeout" | null | undefined;
|
|
996
1099
|
harnessId?: string | null | undefined;
|
|
997
1100
|
attemptId?: string | null | undefined;
|
|
998
1101
|
runDir?: string | null | undefined;
|
|
@@ -1043,9 +1146,9 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1043
1146
|
requested: boolean;
|
|
1044
1147
|
effective: boolean;
|
|
1045
1148
|
harness_id: string;
|
|
1046
|
-
reason: "effective" | "
|
|
1149
|
+
reason: "effective" | "runtime_unavailable" | "manifest_unsupported" | "not_requested" | "access_profile_incompatible" | "web_policy_off" | "postdiff_only";
|
|
1047
1150
|
eligible: boolean;
|
|
1048
|
-
capability: "browser" | "path_deny";
|
|
1151
|
+
capability: "browser" | "delegation" | "path_deny";
|
|
1049
1152
|
evidence_refs?: string[] | undefined;
|
|
1050
1153
|
}[] | undefined;
|
|
1051
1154
|
toolPermissionPolicy?: Record<string, unknown> | undefined;
|
|
@@ -1090,7 +1193,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1090
1193
|
observedModel?: string | null | undefined;
|
|
1091
1194
|
} | null | undefined;
|
|
1092
1195
|
routingRationale?: {
|
|
1093
|
-
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "declared_order";
|
|
1196
|
+
reason: "subscription_entitlement_first" | "lowest_incremental_cash" | "quality_tier" | "expiring_quota_slack" | "all_incremental_cash_unknown" | "delegate_effective_first" | "explicit_primary" | "declared_order";
|
|
1094
1197
|
goal: "auto" | "quality" | "economy";
|
|
1095
1198
|
paid_fallback: "never" | "when_unavailable" | "allowed_within_cap";
|
|
1096
1199
|
entries?: {
|
|
@@ -1406,6 +1509,7 @@ export declare const ControlThreadTurnRequest: z.ZodObject<Omit<{
|
|
|
1406
1509
|
threadId: z.ZodOptional<z.ZodString>;
|
|
1407
1510
|
turnId: z.ZodOptional<z.ZodString>;
|
|
1408
1511
|
parentRunId: z.ZodOptional<z.ZodString>;
|
|
1512
|
+
delegatedFromRunId: z.ZodOptional<z.ZodString>;
|
|
1409
1513
|
retryOf: z.ZodOptional<z.ZodString>;
|
|
1410
1514
|
planRunId: z.ZodOptional<z.ZodString>;
|
|
1411
1515
|
planRef: z.ZodOptional<z.ZodObject<{
|
|
@@ -1441,7 +1545,7 @@ export declare const ControlThreadTurnRequest: z.ZodObject<Omit<{
|
|
|
1441
1545
|
denyPaths: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1442
1546
|
outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1443
1547
|
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
1444
|
-
}, "threadId" | "turnId" | "retryOf" | "
|
|
1548
|
+
}, "threadId" | "turnId" | "retryOf" | "parentRunId" | "delegatedFromRunId" | "scope" | "execution"> & {
|
|
1445
1549
|
/** Implement-plan only: explicitly proceed although the plan still has
|
|
1446
1550
|
* open questions (D17). Recorded on the turn for provenance. */
|
|
1447
1551
|
overridePlanReadiness: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-operation-responses.d.ts","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEqC,CAAC;AAC1E,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"control-operation-responses.d.ts","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,6 +5,30 @@ import { DeliveryReceipt } from "./delivery.js";
|
|
|
5
5
|
export const ControlRunStartResponse = z
|
|
6
6
|
.union([ControlRunStartInfo, ControlQueuedRunInfo])
|
|
7
7
|
.describe("Immediate or queued durable handle returned by POST /runs.");
|
|
8
|
+
export const ControlInteractionAnswerResponse = z
|
|
9
|
+
.object({
|
|
10
|
+
accepted: z.boolean().describe("Whether the answer was accepted."),
|
|
11
|
+
status: z
|
|
12
|
+
.enum(["delivered", "not_found", "already_resolved", "rejected"])
|
|
13
|
+
.describe("Delivery outcome: delivered into the live session, interaction not found, already resolved, or rejected."),
|
|
14
|
+
message: z.string().optional().describe("Human-readable detail."),
|
|
15
|
+
})
|
|
16
|
+
.describe("Response to an interaction answer.");
|
|
17
|
+
export const ControlRunControlResponse = z
|
|
18
|
+
.object({
|
|
19
|
+
accepted: z.boolean().describe("Whether the control was accepted."),
|
|
20
|
+
status: z
|
|
21
|
+
.enum(["applied", "queued", "rejected", "unsupported"])
|
|
22
|
+
.default("queued")
|
|
23
|
+
.describe("Outcome: applied immediately, queued, rejected, or unsupported for this run."),
|
|
24
|
+
runId: Id.optional().describe("Run the control was applied to."),
|
|
25
|
+
cascadeRunIds: z
|
|
26
|
+
.array(Id)
|
|
27
|
+
.default([])
|
|
28
|
+
.describe("Active Claudexor Delegate descendants included in this cancellation."),
|
|
29
|
+
message: z.string().optional().describe("Human-readable detail."),
|
|
30
|
+
})
|
|
31
|
+
.describe("Response to a run control request.");
|
|
8
32
|
export const ControlRunListResponse = z
|
|
9
33
|
.object({
|
|
10
34
|
runs: z.array(ControlRunSummary).default([]),
|
|
@@ -58,6 +82,7 @@ export const ControlThreadTurnRequest = ControlRunStartRequest.omit({
|
|
|
58
82
|
threadId: true,
|
|
59
83
|
turnId: true,
|
|
60
84
|
parentRunId: true,
|
|
85
|
+
delegatedFromRunId: true,
|
|
61
86
|
retryOf: true,
|
|
62
87
|
})
|
|
63
88
|
.extend({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-operation-responses.js","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"control-operation-responses.js","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACL,mBAAmB,EACnB,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EACtB,iBAAiB,GAClB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAEhD,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC;KACrC,KAAK,CAAC,CAAC,mBAAmB,EAAE,oBAAoB,CAAC,CAAC;KAClD,QAAQ,CAAC,4DAA4D,CAAC,CAAC;AAG1E,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;IAClE,MAAM,EAAE,CAAC;SACN,IAAI,CAAC,CAAC,WAAW,EAAE,WAAW,EAAE,kBAAkB,EAAE,UAAU,CAAC,CAAC;SAChE,QAAQ,CACP,0GAA0G,CAC3G;IACH,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,wBAAwB,CAAC;CAClE,CAAC;KACD,QAAQ,CAAC,oCAAoC,CAAC,CAAC;AAGlD,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC;KACvC,MAAM,CAAC;IACN,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IACnE,MAAM,EAAE,CAAC;SACN,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,aAAa,CAAC,CAAC;SACtD,OAAO,CAAC,QAAQ,CAAC;SACjB,QAAQ,CAAC,8EAA8E,CAAC;IAC3F,KAAK,EAAE,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IAChE,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,EAAE,CAAC;SACT,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,sEAAsE,CAAC;IACnF,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,wBAAwB,CAAC;CAClE,CAAC;KACD,QAAQ,CAAC,oCAAoC,CAAC,CAAC;AAGlD,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;IAC5C;;gFAE4E;IAC5E,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CACP,6IAA6I,CAC9I;IACH;;4BAEwB;IACxB,OAAO,EAAE,CAAC;SACP,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,sDAAsD,CAAC;CACpE,CAAC;KACD,MAAM,EAAE;KACR,QAAQ,CACP,yGAAyG,CAC1G,CAAC;AAGJ,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,MAAM,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC;KAC1E,MAAM,EAAE;KACR,QAAQ,CAAC,0DAA0D,CAAC,CAAC;AAGxE,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC;KAC3C,MAAM,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC;KAC9E,MAAM,EAAE;KACR,QAAQ,CACP,8JAA8J,CAC/J,CAAC;AAGJ,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC;KACvC,MAAM,CAAC;IACN,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE;IACf,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACjC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB;;;;gBAIY;IACZ,cAAc,EAAE,CAAC;SACd,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,mEAAmE,CAAC;CACjF,CAAC;KACD,MAAM,EAAE;KACR,QAAQ,CAAC,sCAAsC,CAAC,CAAC;AAGpD,MAAM,CAAC,MAAM,uBAAuB,GAAG,eAAe,CAAC,QAAQ,CAC7D,0CAA0C,CAC3C,CAAC;AAGF,MAAM,CAAC,MAAM,wBAAwB,GAAG,sBAAsB,CAAC,IAAI,CAAC;IAClE,KAAK,EAAE,IAAI;IACX,SAAS,EAAE,IAAI;IACf,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,IAAI;IACjB,kBAAkB,EAAE,IAAI;IACxB,OAAO,EAAE,IAAI;CACd,CAAC;KACC,MAAM,CAAC;IACN;oEACgE;IAChE,qBAAqB,EAAE,CAAC;SACrB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,0DAA0D,CAAC;CACxE,CAAC;KACD,QAAQ,CAAC,qFAAqF,CAAC,CAAC;AAGnG,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC;KACvC,KAAK,CAAC;IACL,mBAAmB,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;IACxD,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE;CACrF,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAC"}
|