agentsmesh 0.40.0 → 0.41.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/engine.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { V as ValidatedConfig, b as CanonicalFiles } from './schema-BbywZEB9.js';
2
- import { G as GenerateResult, h as TargetLayoutScope, L as LintDiagnostic, d as ImportResult } from './target-descriptor-CvTJyDxd.js';
2
+ import { G as GenerateResult, h as TargetLayoutScope, L as LintDiagnostic, d as ImportResult } from './target-descriptor-CMV6vxVE.js';
3
3
  import 'zod';
4
4
 
5
5
  /**
@@ -125,17 +125,16 @@ interface ComputeDiffResult {
125
125
  */
126
126
  declare function formatDiffSummary(summary: DiffSummary): string;
127
127
 
128
- /**
129
- * Pure lock-vs-current drift detection used by `agentsmesh check` and the
130
- * public Programmatic API. The CLI command formats and exits; this helper
131
- * returns a structured report.
132
- */
133
-
134
128
  interface LockSyncReport {
135
129
  /** True when canonical state and checked generated outputs are all in sync. */
136
130
  readonly inSync: boolean;
137
- /** True when a `.lock` file was found at the canonical directory. */
131
+ /** True when a readable `.lock` file was found at the canonical directory. */
138
132
  readonly hasLock: boolean;
133
+ /**
134
+ * True when the `.lock` file has git conflict markers, so it cannot be read
135
+ * (`hasLock` is false). `agentsmesh merge` rebuilds it.
136
+ */
137
+ readonly lockConflict: boolean;
139
138
  /** True when canonical files or extends differ from the lock. */
140
139
  readonly canonicalDrift: boolean;
141
140
  /** True when a generated output is modified, removed, or stale. */