@smartergpt/lexrunner 1.3.0 → 1.4.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/cli.d.ts CHANGED
@@ -1248,8 +1248,8 @@ type ArtifactType = keyof typeof ARTIFACT_TYPES;
1248
1248
  declare const ListArtifactsInputSchema: z.ZodObject<{
1249
1249
  runId: z.ZodString;
1250
1250
  type: z.ZodOptional<z.ZodEnum<{
1251
- gate: "gate";
1252
1251
  failure: "failure";
1252
+ gate: "gate";
1253
1253
  log: "log";
1254
1254
  decision: "decision";
1255
1255
  report: "report";
@@ -1267,8 +1267,8 @@ declare const ListArtifactsOutputSchema: z.ZodObject<{
1267
1267
  artifacts: z.ZodArray<z.ZodObject<{
1268
1268
  path: z.ZodString;
1269
1269
  type: z.ZodEnum<{
1270
- gate: "gate";
1271
1270
  failure: "failure";
1271
+ gate: "gate";
1272
1272
  log: "log";
1273
1273
  decision: "decision";
1274
1274
  report: "report";
@@ -1970,7 +1970,6 @@ declare const WorkItem_v1: z.ZodObject<{
1970
1970
  }, z.core.$strict>;
1971
1971
  type WorkItem_v1 = z.infer<typeof WorkItem_v1>;
1972
1972
  declare const RunStatus: z.ZodEnum<{
1973
- created: "created";
1974
1973
  blocked: "blocked";
1975
1974
  completed: "completed";
1976
1975
  planning: "planning";
@@ -1979,6 +1978,7 @@ declare const RunStatus: z.ZodEnum<{
1979
1978
  failed: "failed";
1980
1979
  paused: "paused";
1981
1980
  cancelled: "cancelled";
1981
+ created: "created";
1982
1982
  executing: "executing";
1983
1983
  delivering: "delivering";
1984
1984
  awaiting_human: "awaiting_human";
@@ -2005,7 +2005,6 @@ declare const Run_v1: z.ZodObject<{
2005
2005
  release: z.ZodBoolean;
2006
2006
  }, z.core.$strict>;
2007
2007
  status: z.ZodEnum<{
2008
- created: "created";
2009
2008
  blocked: "blocked";
2010
2009
  completed: "completed";
2011
2010
  planning: "planning";
@@ -2014,6 +2013,7 @@ declare const Run_v1: z.ZodObject<{
2014
2013
  failed: "failed";
2015
2014
  paused: "paused";
2016
2015
  cancelled: "cancelled";
2016
+ created: "created";
2017
2017
  executing: "executing";
2018
2018
  delivering: "delivering";
2019
2019
  awaiting_human: "awaiting_human";
@@ -4349,6 +4349,13 @@ interface WorktreeTarget extends WorkspaceIdentity {
4349
4349
  interface BrokerOperationOptions {
4350
4350
  timeoutMs?: number;
4351
4351
  signal?: AbortSignal;
4352
+ boundaryAuthority?: BrokerBoundaryAuthority;
4353
+ }
4354
+ interface BrokerBoundaryAuthority {
4355
+ operationId: string;
4356
+ orchestrationLeaseId: string;
4357
+ orchestrationLeaseRevision: number;
4358
+ ownerId: string;
4352
4359
  }
4353
4360
  type BrokerOperation = "create" | "observe" | "remove";
4354
4361
  interface BrokerCommandEvidence {
@@ -4486,7 +4493,7 @@ type DirectoryIdentityBoundarySupport = {
4486
4493
  readonly supported: false;
4487
4494
  readonly platform: NodeJS.Platform;
4488
4495
  readonly pathComparison: "case-sensitive" | "case-insensitive";
4489
- readonly reasonCode: "windows_requires_native_wsl_broker" | "macos_unsupported" | "unsupported_platform" | "case_insensitive_runtime" | "procfs_unavailable";
4496
+ readonly reasonCode: "windows_native_boundary_unavailable" | "macos_unsupported" | "unsupported_platform" | "case_insensitive_runtime" | "procfs_unavailable";
4490
4497
  };
4491
4498
  interface DirectoryIdentityPathProbe {
4492
4499
  readonly verified: boolean;
@@ -4520,8 +4527,10 @@ declare const AgentWorkContainmentPreflightRequestJsonSchema: z.core.ZodStandard
4520
4527
  }, z.core.$strict>>;
4521
4528
  type AgentWorkContainmentPreflightRequest = z.infer<typeof AgentWorkContainmentPreflightRequestSchema>;
4522
4529
  type AgentWorkContainmentCapabilityState = "native_ready" | "broker_required" | "unsupported";
4523
- type AgentWorkContainmentReasonCode = "native_linux_ready" | "windows_requires_native_wsl_broker" | "macos_unsupported" | "unsupported_platform" | "case_insensitive_runtime" | "procfs_unavailable" | "repository_root_invalid" | "worktree_root_invalid" | "path_roots_overlap" | "repository_root_wsl_drvfs_9p" | "repository_git_wsl_drvfs_9p" | "worktree_root_wsl_drvfs_9p" | "repository_root_unavailable" | "repository_git_directory_unavailable" | "worktree_root_unavailable" | "repository_root_filesystem_unverified" | "repository_git_filesystem_unverified" | "worktree_root_filesystem_unverified";
4524
- type AgentWorkContainmentNextAction = "construct_attempt_packet" | "provision_native_wsl_projection" | "select_native_case_sensitive_linux_runtime" | "correct_declared_paths" | "rerun_containment_preflight";
4530
+ type AgentWorkContainmentReasonCode = "native_linux_ready" | "windows_native_boundary_unavailable"
4531
+ /** Legacy v1 reason retained for persisted result compatibility. */
4532
+ | "windows_requires_native_wsl_broker" | "macos_unsupported" | "unsupported_platform" | "case_insensitive_runtime" | "procfs_unavailable" | "repository_root_invalid" | "worktree_root_invalid" | "path_roots_overlap" | "repository_root_wsl_drvfs_9p" | "repository_git_wsl_drvfs_9p" | "worktree_root_wsl_drvfs_9p" | "repository_root_unavailable" | "repository_git_directory_unavailable" | "worktree_root_unavailable" | "repository_root_filesystem_unverified" | "repository_git_filesystem_unverified" | "worktree_root_filesystem_unverified";
4533
+ type AgentWorkContainmentNextAction = "construct_attempt_packet" | "install_native_windows_boundary" | "provision_native_wsl_projection" | "select_native_case_sensitive_linux_runtime" | "correct_declared_paths" | "rerun_containment_preflight";
4525
4534
  interface AgentWorkContainmentPathStatus {
4526
4535
  readonly inspection: "identity_verified" | "filesystem_verified" | "syntactic_only" | "unverified" | "not_checked";
4527
4536
  readonly filesystem: "native_linux" | "wsl_drvfs_9p" | "unknown";