@claudexor/schema 3.9.5 → 3.9.8

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.
Files changed (48) hide show
  1. package/dist/control-operation-responses.d.ts +15 -0
  2. package/dist/control-operation-responses.d.ts.map +1 -1
  3. package/dist/control-run-detail.d.ts +43 -5
  4. package/dist/control-run-detail.d.ts.map +1 -1
  5. package/dist/control.d.ts +40 -0
  6. package/dist/control.d.ts.map +1 -1
  7. package/dist/control.js +8 -0
  8. package/dist/control.js.map +1 -1
  9. package/dist/decision.d.ts +15 -4
  10. package/dist/decision.d.ts.map +1 -1
  11. package/dist/decision.js +13 -9
  12. package/dist/decision.js.map +1 -1
  13. package/dist/mcp-run-result.d.ts +24 -0
  14. package/dist/mcp-run-result.d.ts.map +1 -1
  15. package/dist/run-facts.d.ts +5 -0
  16. package/dist/run-facts.d.ts.map +1 -1
  17. package/dist/run-facts.js +3 -3
  18. package/dist/run-facts.js.map +1 -1
  19. package/dist/run-strategy.d.ts +17 -0
  20. package/dist/run-strategy.d.ts.map +1 -1
  21. package/dist/run-strategy.js +31 -0
  22. package/dist/run-strategy.js.map +1 -1
  23. package/dist/status-projection.d.ts.map +1 -1
  24. package/dist/status-projection.js +13 -1
  25. package/dist/status-projection.js.map +1 -1
  26. package/dist/surface-run-controls.d.ts.map +1 -1
  27. package/dist/surface-run-controls.js +3 -0
  28. package/dist/surface-run-controls.js.map +1 -1
  29. package/dist/task.d.ts +9 -0
  30. package/dist/task.d.ts.map +1 -1
  31. package/dist/task.js +4 -0
  32. package/dist/task.js.map +1 -1
  33. package/dist/telemetry.d.ts +7 -0
  34. package/dist/telemetry.d.ts.map +1 -1
  35. package/generated/ControlRunAgainDraft.schema.json +4 -0
  36. package/generated/ControlRunDetail.schema.json +10 -1
  37. package/generated/ControlRunListResponse.schema.json +8 -0
  38. package/generated/ControlRunStartRequest.schema.json +4 -0
  39. package/generated/ControlRunSummary.schema.json +8 -0
  40. package/generated/ControlThreadDetail.schema.json +4 -0
  41. package/generated/ControlThreadTurnRequest.schema.json +4 -0
  42. package/generated/DecisionRecord.schema.json +6 -1
  43. package/generated/McpRunHandleResult.schema.json +4 -0
  44. package/generated/McpRunToolResult.schema.json +4 -0
  45. package/generated/RunFacts.schema.json +4 -0
  46. package/generated/RunTelemetry.schema.json +4 -0
  47. package/generated/TaskContract.schema.json +4 -0
  48. package/package.json +2 -2
@@ -55,6 +55,10 @@
55
55
  "description": "Review axis: approved (clean cross-family verified review), blocked (open accepted findings), or not_run.",
56
56
  "default": "not_run"
57
57
  },
58
+ "review_requested": {
59
+ "type": "boolean",
60
+ "description": "Frozen model-review intent. False permits an honestly unreviewed result; absent historical records retain the review requirement."
61
+ },
58
62
  "reason": {
59
63
  "anyOf": [
60
64
  {
@@ -353,10 +357,11 @@
353
357
  "type": "string",
354
358
  "enum": [
355
359
  "none",
360
+ "deterministic_checks",
356
361
  "cross_family_review",
357
362
  "both"
358
363
  ],
359
- "description": "What backed an applyable outcome: none (non-applyable), cross_family_review (a clean cross-family verified review), or both (deterministic gates and that review).",
364
+ "description": "Verification evidence: none, deterministic_checks, cross_family_review (clean and verified), or both. An intentionally unreviewed result can be applicable without verification evidence.",
360
365
  "default": "none"
361
366
  },
362
367
  "final_verify": {
@@ -97,6 +97,10 @@
97
97
  "description": "Review axis: approved (clean cross-family verified review), blocked (open accepted findings), or not_run.",
98
98
  "default": "not_run"
99
99
  },
100
+ "review_requested": {
101
+ "type": "boolean",
102
+ "description": "Frozen model-review intent. False permits an honestly unreviewed result; absent historical records retain the review requirement."
103
+ },
100
104
  "reason": {
101
105
  "anyOf": [
102
106
  {
@@ -94,6 +94,10 @@
94
94
  "description": "Review axis: approved (clean cross-family verified review), blocked (open accepted findings), or not_run.",
95
95
  "default": "not_run"
96
96
  },
97
+ "review_requested": {
98
+ "type": "boolean",
99
+ "description": "Frozen model-review intent. False permits an honestly unreviewed result; absent historical records retain the review requirement."
100
+ },
97
101
  "reason": {
98
102
  "anyOf": [
99
103
  {
@@ -64,6 +64,10 @@
64
64
  "description": "Review axis: approved (clean cross-family verified review), blocked (open accepted findings), or not_run.",
65
65
  "default": "not_run"
66
66
  },
67
+ "review_requested": {
68
+ "type": "boolean",
69
+ "description": "Frozen model-review intent. False permits an honestly unreviewed result; absent historical records retain the review requirement."
70
+ },
67
71
  "reason": {
68
72
  "anyOf": [
69
73
  {
@@ -1174,6 +1174,10 @@
1174
1174
  "description": "Review axis: approved (clean cross-family verified review), blocked (open accepted findings), or not_run.",
1175
1175
  "default": "not_run"
1176
1176
  },
1177
+ "review_requested": {
1178
+ "type": "boolean",
1179
+ "description": "Frozen model-review intent. False permits an honestly unreviewed result; absent historical records retain the review requirement."
1180
+ },
1177
1181
  "reason": {
1178
1182
  "anyOf": [
1179
1183
  {
@@ -70,6 +70,10 @@
70
70
  "additionalProperties": false,
71
71
  "description": "Canonical run mode for this task."
72
72
  },
73
+ "review_requested": {
74
+ "type": "boolean",
75
+ "description": "Resolved model-review intent frozen for this run; absent on historical contracts, which retain review-required semantics. This is intent, not a review verdict."
76
+ },
73
77
  "delegation_requested": {
74
78
  "type": "boolean",
75
79
  "default": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudexor/schema",
3
- "version": "3.9.5",
3
+ "version": "3.9.8",
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.9.5"
23
+ "@claudexor/util": "3.9.8"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",