@longtable/core 0.1.52 → 0.1.53

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 (2) hide show
  1. package/dist/types.d.ts +3 -3
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -9,8 +9,8 @@ export type NarrativeTraceVisibility = "explicit" | "inferred";
9
9
  export type HypothesisStatus = "unconfirmed" | "confirmed" | "rejected";
10
10
  export type ProviderKind = "claude" | "codex";
11
11
  export type RoleKey = string;
12
- export type InvocationKind = "single_role" | "panel" | "team" | "team_debate" | "status";
13
- export type InvocationSurface = "native_parallel" | "native_subagents" | "generated_skill" | "prompt_alias" | "sequential_fallback" | "file_backed_debate" | "mcp_transport";
12
+ export type InvocationKind = "single_role" | "panel" | "panel_debate" | "team" | "team_debate" | "status";
13
+ export type InvocationSurface = "native_parallel" | "native_subagents" | "generated_skill" | "prompt_alias" | "sequential_fallback" | "file_backed_panel_debate" | "file_backed_debate" | "mcp_transport";
14
14
  export type InvocationStatus = "planned" | "running" | "completed" | "blocked" | "degraded" | "error";
15
15
  export type InteractionDepth = "independent" | "cross_reviewed" | "debated";
16
16
  export type PanelVisibility = "synthesis_only" | "show_on_conflict" | "always_visible";
@@ -162,7 +162,7 @@ export interface TeamDebateRun {
162
162
  status: InvocationStatus;
163
163
  surface: InvocationSurface;
164
164
  interactionDepth: InteractionDepth;
165
- roundPolicy: "fixed" | "team_cross_review";
165
+ roundPolicy: "fixed" | "panel_cross_review" | "team_cross_review";
166
166
  roundCount: number;
167
167
  artifactRoot: string;
168
168
  rounds: TeamDebateRound[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/core",
3
- "version": "0.1.52",
3
+ "version": "0.1.53",
4
4
  "private": false,
5
5
  "description": "Provider-neutral domain models and contracts for LongTable",
6
6
  "type": "module",