@smartergpt/lexrunner 1.3.0 → 1.4.1

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
@@ -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";