@claudexor/schema 3.2.0 → 3.3.7-rc.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/dist/apply-eligibility.d.ts +20 -10
- package/dist/apply-eligibility.d.ts.map +1 -1
- package/dist/apply-eligibility.js +2 -1
- package/dist/apply-eligibility.js.map +1 -1
- package/dist/control-operation-responses.d.ts +25 -7
- package/dist/control-operation-responses.d.ts.map +1 -1
- package/dist/control-operation-responses.js +3 -0
- package/dist/control-operation-responses.js.map +1 -1
- package/dist/control-run-detail.d.ts +144 -19
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-run-detail.js +39 -1
- package/dist/control-run-detail.js.map +1 -1
- package/dist/control-run-failure.d.ts +57 -0
- package/dist/control-run-failure.d.ts.map +1 -0
- package/dist/control-run-failure.js +89 -0
- package/dist/control-run-failure.js.map +1 -0
- package/dist/control-run-scope.d.ts +17 -0
- package/dist/control-run-scope.d.ts.map +1 -1
- package/dist/control-run-scope.js +21 -0
- package/dist/control-run-scope.js.map +1 -1
- package/dist/control.d.ts +50 -45
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +9 -62
- package/dist/control.js.map +1 -1
- package/dist/credential-profile-snapshot.d.ts +35 -14
- package/dist/credential-profile-snapshot.d.ts.map +1 -1
- package/dist/credential-profile.d.ts +48 -0
- package/dist/credential-profile.d.ts.map +1 -1
- package/dist/credential-profile.js +12 -1
- package/dist/credential-profile.js.map +1 -1
- package/dist/harness-confinement.d.ts +64 -0
- package/dist/harness-confinement.d.ts.map +1 -0
- package/dist/harness-confinement.js +64 -0
- package/dist/harness-confinement.js.map +1 -0
- package/dist/harness.d.ts +30 -10
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +6 -18
- package/dist/harness.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/plan.d.ts.map +1 -1
- package/dist/plan.js +1 -1
- package/dist/plan.js.map +1 -1
- package/dist/quota.d.ts +9 -9
- package/dist/quota.d.ts.map +1 -1
- package/dist/quota.js +5 -0
- package/dist/quota.js.map +1 -1
- package/dist/thread.d.ts +5 -0
- package/dist/thread.d.ts.map +1 -1
- package/dist/thread.js +5 -0
- package/dist/thread.js.map +1 -1
- package/generated/ControlCredentialProfileCreateResponse.schema.json +10 -1
- package/generated/ControlCredentialProfileUpdateResponse.schema.json +10 -1
- package/generated/ControlCredentialProfilesQueryResponse.schema.json +12 -2
- package/generated/ControlCredentialProfilesResponse.schema.json +10 -1
- package/generated/ControlCredentialProfilesSnapshotResponse.schema.json +12 -2
- package/generated/ControlQuotaResponse.schema.json +2 -1
- package/generated/ControlRunAgainDraft.schema.json +11 -1
- package/generated/ControlRunDetail.schema.json +67 -3
- package/generated/ControlRunListResponse.schema.json +19 -2
- package/generated/ControlRunStartRequest.schema.json +11 -1
- package/generated/ControlRunSummary.schema.json +19 -2
- package/generated/ControlThreadCreateRequest.schema.json +5 -0
- package/generated/ControlThreadDetail.schema.json +12 -0
- package/generated/ControlThreadTurnRequest.schema.json +4 -0
- package/generated/CredentialProfileStatus.schema.json +10 -1
- package/generated/McpRunHandleResult.schema.json +19 -2
- package/generated/McpRunToolResult.schema.json +19 -2
- package/generated/RunFailure.schema.json +19 -2
- package/generated/ThreadTurn.schema.json +12 -0
- package/package.json +2 -2
|
@@ -159,9 +159,13 @@
|
|
|
159
159
|
"unknown_paid_in_flight",
|
|
160
160
|
"budget_overshoot",
|
|
161
161
|
"cost_unverifiable",
|
|
162
|
-
"delegation_child_drain_timeout"
|
|
162
|
+
"delegation_child_drain_timeout",
|
|
163
|
+
"subscription_window_exhausted",
|
|
164
|
+
"delegated_home_unavailable",
|
|
165
|
+
"delegated_confinement_unavailable",
|
|
166
|
+
"delegated_evidence_incomplete"
|
|
163
167
|
],
|
|
164
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons
|
|
168
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons, Delegate child-drain timeout, a spent subscription quota window whose reopen time is RunFailure.resetsAt, and the delegated-run confinement refusals: missing scoped home, no OS-enforced boundary on this host, incomplete applied evidence)."
|
|
165
169
|
},
|
|
166
170
|
{
|
|
167
171
|
"type": "null"
|
|
@@ -222,6 +226,19 @@
|
|
|
222
226
|
"default": null,
|
|
223
227
|
"description": "Run artifact directory."
|
|
224
228
|
},
|
|
229
|
+
"resetsAt": {
|
|
230
|
+
"anyOf": [
|
|
231
|
+
{
|
|
232
|
+
"type": "string",
|
|
233
|
+
"format": "date-time"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "null"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"default": null,
|
|
240
|
+
"description": "When the refused window reopens (a spent subscription quota window), or null when the failure has no such time. Callers schedule a retry off this field, never off safeMessage."
|
|
241
|
+
},
|
|
225
242
|
"nextActions": {
|
|
226
243
|
"type": "array",
|
|
227
244
|
"items": {
|
|
@@ -2518,7 +2535,7 @@
|
|
|
2518
2535
|
"allow_text": {
|
|
2519
2536
|
"type": "boolean",
|
|
2520
2537
|
"default": false,
|
|
2521
|
-
"description": "True when
|
|
2538
|
+
"description": "True when free text is accepted as a complete answer, including as an alternative to single/multi options."
|
|
2522
2539
|
}
|
|
2523
2540
|
},
|
|
2524
2541
|
"required": [
|
|
@@ -3112,6 +3129,53 @@
|
|
|
3112
3129
|
],
|
|
3113
3130
|
"default": null,
|
|
3114
3131
|
"description": "This candidate's ranking-scorecard axis values (from decision.ranking_scorecard); null when no arbitration ran."
|
|
3132
|
+
},
|
|
3133
|
+
"confinement": {
|
|
3134
|
+
"anyOf": [
|
|
3135
|
+
{
|
|
3136
|
+
"type": "object",
|
|
3137
|
+
"properties": {
|
|
3138
|
+
"proven": {
|
|
3139
|
+
"type": "boolean",
|
|
3140
|
+
"description": "Whether a boundary was actually enforced for this attempt: a named mechanism AND the path it was proven to deny. The only field a consumer should branch on."
|
|
3141
|
+
},
|
|
3142
|
+
"mechanism": {
|
|
3143
|
+
"type": [
|
|
3144
|
+
"string",
|
|
3145
|
+
"null"
|
|
3146
|
+
],
|
|
3147
|
+
"description": "Opaque label of the enforcing mechanism; null when no boundary was applied."
|
|
3148
|
+
},
|
|
3149
|
+
"verifiedDeniedPath": {
|
|
3150
|
+
"type": [
|
|
3151
|
+
"string",
|
|
3152
|
+
"null"
|
|
3153
|
+
],
|
|
3154
|
+
"description": "Path proven unreadable under the applied policy before the harness was spawned."
|
|
3155
|
+
},
|
|
3156
|
+
"unavailableReason": {
|
|
3157
|
+
"type": [
|
|
3158
|
+
"string",
|
|
3159
|
+
"null"
|
|
3160
|
+
],
|
|
3161
|
+
"description": "Why this attempt ran with NO boundary; null when one was applied. Present exactly when proven is false for a run that asked for a boundary."
|
|
3162
|
+
}
|
|
3163
|
+
},
|
|
3164
|
+
"required": [
|
|
3165
|
+
"proven",
|
|
3166
|
+
"mechanism",
|
|
3167
|
+
"verifiedDeniedPath",
|
|
3168
|
+
"unavailableReason"
|
|
3169
|
+
],
|
|
3170
|
+
"additionalProperties": false,
|
|
3171
|
+
"description": "Applied OS filesystem boundary for one attempt, or the stated reason there was none."
|
|
3172
|
+
},
|
|
3173
|
+
{
|
|
3174
|
+
"type": "null"
|
|
3175
|
+
}
|
|
3176
|
+
],
|
|
3177
|
+
"description": "Applied OS boundary for this attempt; null when the run never asked for one (every non-delegated run).",
|
|
3178
|
+
"default": null
|
|
3115
3179
|
}
|
|
3116
3180
|
},
|
|
3117
3181
|
"required": [
|
|
@@ -161,9 +161,13 @@
|
|
|
161
161
|
"unknown_paid_in_flight",
|
|
162
162
|
"budget_overshoot",
|
|
163
163
|
"cost_unverifiable",
|
|
164
|
-
"delegation_child_drain_timeout"
|
|
164
|
+
"delegation_child_drain_timeout",
|
|
165
|
+
"subscription_window_exhausted",
|
|
166
|
+
"delegated_home_unavailable",
|
|
167
|
+
"delegated_confinement_unavailable",
|
|
168
|
+
"delegated_evidence_incomplete"
|
|
165
169
|
],
|
|
166
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons
|
|
170
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons, Delegate child-drain timeout, a spent subscription quota window whose reopen time is RunFailure.resetsAt, and the delegated-run confinement refusals: missing scoped home, no OS-enforced boundary on this host, incomplete applied evidence)."
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"type": "null"
|
|
@@ -224,6 +228,19 @@
|
|
|
224
228
|
"default": null,
|
|
225
229
|
"description": "Run artifact directory."
|
|
226
230
|
},
|
|
231
|
+
"resetsAt": {
|
|
232
|
+
"anyOf": [
|
|
233
|
+
{
|
|
234
|
+
"type": "string",
|
|
235
|
+
"format": "date-time"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"type": "null"
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
"default": null,
|
|
242
|
+
"description": "When the refused window reopens (a spent subscription quota window), or null when the failure has no such time. Callers schedule a retry off this field, never off safeMessage."
|
|
243
|
+
},
|
|
227
244
|
"nextActions": {
|
|
228
245
|
"type": "array",
|
|
229
246
|
"items": {
|
|
@@ -62,6 +62,11 @@
|
|
|
62
62
|
],
|
|
63
63
|
"description": "Project context depth; auto is the only mode.",
|
|
64
64
|
"default": "auto"
|
|
65
|
+
},
|
|
66
|
+
"ephemeral": {
|
|
67
|
+
"type": "boolean",
|
|
68
|
+
"default": false,
|
|
69
|
+
"description": "Declare the root one-shot: it anchors this run only, is never entered into the durable project registry, and its commands/run events live in the global no-project partition."
|
|
65
70
|
}
|
|
66
71
|
},
|
|
67
72
|
"required": [
|
|
@@ -102,10 +107,15 @@
|
|
|
102
107
|
],
|
|
103
108
|
"default": "envelope",
|
|
104
109
|
"description": "Run isolation: envelope (isolated worktree in the external per-project runtime namespace, the default) or live (the project tree itself)."
|
|
110
|
+
},
|
|
111
|
+
"delegated": {
|
|
112
|
+
"type": "boolean",
|
|
113
|
+
"default": false,
|
|
114
|
+
"description": "Marks a run driven by an EXTERNAL orchestrator that owns the workspace, not by the operator at a surface. Such a run is confined to a scoped harness HOME even under isolation='live' (an in-place delegated attempt therefore cannot resume a native vendor session stored under the real HOME). Unrelated to the `delegate` belt flag and to `delegatedFromRunId` (belt-child provenance)."
|
|
105
115
|
}
|
|
106
116
|
},
|
|
107
117
|
"additionalProperties": false,
|
|
108
|
-
"description": "Execution isolation settings for a run.",
|
|
118
|
+
"description": "Execution isolation and delegation settings for a run.",
|
|
109
119
|
"default": {
|
|
110
120
|
"isolation": "envelope"
|
|
111
121
|
}
|
|
@@ -156,9 +156,13 @@
|
|
|
156
156
|
"unknown_paid_in_flight",
|
|
157
157
|
"budget_overshoot",
|
|
158
158
|
"cost_unverifiable",
|
|
159
|
-
"delegation_child_drain_timeout"
|
|
159
|
+
"delegation_child_drain_timeout",
|
|
160
|
+
"subscription_window_exhausted",
|
|
161
|
+
"delegated_home_unavailable",
|
|
162
|
+
"delegated_confinement_unavailable",
|
|
163
|
+
"delegated_evidence_incomplete"
|
|
160
164
|
],
|
|
161
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons
|
|
165
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons, Delegate child-drain timeout, a spent subscription quota window whose reopen time is RunFailure.resetsAt, and the delegated-run confinement refusals: missing scoped home, no OS-enforced boundary on this host, incomplete applied evidence)."
|
|
162
166
|
},
|
|
163
167
|
{
|
|
164
168
|
"type": "null"
|
|
@@ -219,6 +223,19 @@
|
|
|
219
223
|
"default": null,
|
|
220
224
|
"description": "Run artifact directory."
|
|
221
225
|
},
|
|
226
|
+
"resetsAt": {
|
|
227
|
+
"anyOf": [
|
|
228
|
+
{
|
|
229
|
+
"type": "string",
|
|
230
|
+
"format": "date-time"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"type": "null"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"default": null,
|
|
237
|
+
"description": "When the refused window reopens (a spent subscription quota window), or null when the failure has no such time. Callers schedule a retry off this field, never off safeMessage."
|
|
238
|
+
},
|
|
222
239
|
"nextActions": {
|
|
223
240
|
"type": "array",
|
|
224
241
|
"items": {
|
|
@@ -28,6 +28,11 @@
|
|
|
28
28
|
],
|
|
29
29
|
"description": "Project context depth; auto is the only mode.",
|
|
30
30
|
"default": "auto"
|
|
31
|
+
},
|
|
32
|
+
"ephemeral": {
|
|
33
|
+
"type": "boolean",
|
|
34
|
+
"default": false,
|
|
35
|
+
"description": "Declare the root one-shot: it anchors this run only, is never entered into the durable project registry, and its commands/run events live in the global no-project partition."
|
|
31
36
|
}
|
|
32
37
|
},
|
|
33
38
|
"required": [
|
|
@@ -284,6 +284,18 @@
|
|
|
284
284
|
"description": "Run this turn follows up on, when any.",
|
|
285
285
|
"default": null
|
|
286
286
|
},
|
|
287
|
+
"answersPlanRunId": {
|
|
288
|
+
"anyOf": [
|
|
289
|
+
{
|
|
290
|
+
"$ref": "#/definitions/ControlThreadDetail/properties/thread/properties/credentialProfileId/anyOf/0"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"type": "null"
|
|
294
|
+
}
|
|
295
|
+
],
|
|
296
|
+
"description": "Plan run whose open questions this follow-up turn answers.",
|
|
297
|
+
"default": null
|
|
298
|
+
},
|
|
287
299
|
"planRunId": {
|
|
288
300
|
"anyOf": [
|
|
289
301
|
{
|
|
@@ -390,6 +390,10 @@
|
|
|
390
390
|
"exclusiveMinimum": 0,
|
|
391
391
|
"description": "Per-run turn cap (beats per-harness settings)."
|
|
392
392
|
},
|
|
393
|
+
"answersPlanRunId": {
|
|
394
|
+
"$ref": "#/definitions/ControlThreadTurnRequest/properties/planRunId",
|
|
395
|
+
"description": "Plan run whose open questions this follow-up turn answers."
|
|
396
|
+
},
|
|
393
397
|
"overridePlanReadiness": {
|
|
394
398
|
"type": "boolean",
|
|
395
399
|
"description": "Implement a not-ready plan anyway; recorded on the turn."
|
|
@@ -28,6 +28,15 @@
|
|
|
28
28
|
"not_run"
|
|
29
29
|
]
|
|
30
30
|
},
|
|
31
|
+
"verification_source": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"enum": [
|
|
34
|
+
"local_store",
|
|
35
|
+
"vendor"
|
|
36
|
+
],
|
|
37
|
+
"default": "local_store",
|
|
38
|
+
"description": "How the verification verdict was reached: local_store = the profile's credential material is present locally (says nothing about the token being live); vendor = the vendor answered a request made with this profile's own credential."
|
|
39
|
+
},
|
|
31
40
|
"detail": {
|
|
32
41
|
"type": "string",
|
|
33
42
|
"description": "Redacted human-readable probe evidence."
|
|
@@ -43,7 +52,7 @@
|
|
|
43
52
|
"type": "null"
|
|
44
53
|
}
|
|
45
54
|
],
|
|
46
|
-
"description": "When
|
|
55
|
+
"description": "When the verification verdict was established, by the method named in verification_source; null = never verified.",
|
|
47
56
|
"default": null
|
|
48
57
|
}
|
|
49
58
|
},
|
|
@@ -254,9 +254,13 @@
|
|
|
254
254
|
"unknown_paid_in_flight",
|
|
255
255
|
"budget_overshoot",
|
|
256
256
|
"cost_unverifiable",
|
|
257
|
-
"delegation_child_drain_timeout"
|
|
257
|
+
"delegation_child_drain_timeout",
|
|
258
|
+
"subscription_window_exhausted",
|
|
259
|
+
"delegated_home_unavailable",
|
|
260
|
+
"delegated_confinement_unavailable",
|
|
261
|
+
"delegated_evidence_incomplete"
|
|
258
262
|
],
|
|
259
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons
|
|
263
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons, Delegate child-drain timeout, a spent subscription quota window whose reopen time is RunFailure.resetsAt, and the delegated-run confinement refusals: missing scoped home, no OS-enforced boundary on this host, incomplete applied evidence)."
|
|
260
264
|
},
|
|
261
265
|
{
|
|
262
266
|
"type": "null"
|
|
@@ -317,6 +321,19 @@
|
|
|
317
321
|
"default": null,
|
|
318
322
|
"description": "Run artifact directory."
|
|
319
323
|
},
|
|
324
|
+
"resetsAt": {
|
|
325
|
+
"anyOf": [
|
|
326
|
+
{
|
|
327
|
+
"type": "string",
|
|
328
|
+
"format": "date-time"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"type": "null"
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
"default": null,
|
|
335
|
+
"description": "When the refused window reopens (a spent subscription quota window), or null when the failure has no such time. Callers schedule a retry off this field, never off safeMessage."
|
|
336
|
+
},
|
|
320
337
|
"nextActions": {
|
|
321
338
|
"type": "array",
|
|
322
339
|
"items": {
|
|
@@ -230,9 +230,13 @@
|
|
|
230
230
|
"unknown_paid_in_flight",
|
|
231
231
|
"budget_overshoot",
|
|
232
232
|
"cost_unverifiable",
|
|
233
|
-
"delegation_child_drain_timeout"
|
|
233
|
+
"delegation_child_drain_timeout",
|
|
234
|
+
"subscription_window_exhausted",
|
|
235
|
+
"delegated_home_unavailable",
|
|
236
|
+
"delegated_confinement_unavailable",
|
|
237
|
+
"delegated_evidence_incomplete"
|
|
234
238
|
],
|
|
235
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons
|
|
239
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons, Delegate child-drain timeout, a spent subscription quota window whose reopen time is RunFailure.resetsAt, and the delegated-run confinement refusals: missing scoped home, no OS-enforced boundary on this host, incomplete applied evidence)."
|
|
236
240
|
},
|
|
237
241
|
{
|
|
238
242
|
"type": "null"
|
|
@@ -293,6 +297,19 @@
|
|
|
293
297
|
"default": null,
|
|
294
298
|
"description": "Run artifact directory."
|
|
295
299
|
},
|
|
300
|
+
"resetsAt": {
|
|
301
|
+
"anyOf": [
|
|
302
|
+
{
|
|
303
|
+
"type": "string",
|
|
304
|
+
"format": "date-time"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": "null"
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"default": null,
|
|
311
|
+
"description": "When the refused window reopens (a spent subscription quota window), or null when the failure has no such time. Callers schedule a retry off this field, never off safeMessage."
|
|
312
|
+
},
|
|
296
313
|
"nextActions": {
|
|
297
314
|
"type": "array",
|
|
298
315
|
"items": {
|
|
@@ -38,9 +38,13 @@
|
|
|
38
38
|
"unknown_paid_in_flight",
|
|
39
39
|
"budget_overshoot",
|
|
40
40
|
"cost_unverifiable",
|
|
41
|
-
"delegation_child_drain_timeout"
|
|
41
|
+
"delegation_child_drain_timeout",
|
|
42
|
+
"subscription_window_exhausted",
|
|
43
|
+
"delegated_home_unavailable",
|
|
44
|
+
"delegated_confinement_unavailable",
|
|
45
|
+
"delegated_evidence_incomplete"
|
|
42
46
|
],
|
|
43
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons
|
|
47
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons, Delegate child-drain timeout, a spent subscription quota window whose reopen time is RunFailure.resetsAt, and the delegated-run confinement refusals: missing scoped home, no OS-enforced boundary on this host, incomplete applied evidence)."
|
|
44
48
|
},
|
|
45
49
|
{
|
|
46
50
|
"type": "null"
|
|
@@ -101,6 +105,19 @@
|
|
|
101
105
|
"default": null,
|
|
102
106
|
"description": "Run artifact directory."
|
|
103
107
|
},
|
|
108
|
+
"resetsAt": {
|
|
109
|
+
"anyOf": [
|
|
110
|
+
{
|
|
111
|
+
"type": "string",
|
|
112
|
+
"format": "date-time"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"type": "null"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"default": null,
|
|
119
|
+
"description": "When the refused window reopens (a spent subscription quota window), or null when the failure has no such time. Callers schedule a retry off this field, never off safeMessage."
|
|
120
|
+
},
|
|
104
121
|
"nextActions": {
|
|
105
122
|
"type": "array",
|
|
106
123
|
"items": {
|
|
@@ -40,6 +40,18 @@
|
|
|
40
40
|
"description": "Run this turn follows up on, when any.",
|
|
41
41
|
"default": null
|
|
42
42
|
},
|
|
43
|
+
"answers_plan_run_id": {
|
|
44
|
+
"anyOf": [
|
|
45
|
+
{
|
|
46
|
+
"$ref": "#/definitions/ThreadTurn/properties/run_id/anyOf/0"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"type": "null"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"description": "Plan run whose open questions this follow-up turn answers.",
|
|
53
|
+
"default": null
|
|
54
|
+
},
|
|
43
55
|
"plan_run_id": {
|
|
44
56
|
"anyOf": [
|
|
45
57
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudexor/schema",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.7-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Single source of truth for all Claudexor data shapes (Zod + generated JSON Schema).",
|
|
6
6
|
"type": "module",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"zod": "^4.4.3",
|
|
22
22
|
"zod-to-json-schema": "^3.24.1",
|
|
23
|
-
"@claudexor/util": "3.
|
|
23
|
+
"@claudexor/util": "3.3.7-rc.0"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|