agentsmesh 0.30.2 → 0.31.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/CHANGELOG.md +345 -0
- package/README.md +16 -16
- package/dist/canonical.js +3592 -1904
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +218 -208
- package/dist/engine.d.ts +15 -0
- package/dist/engine.js +3784 -2027
- package/dist/engine.js.map +1 -1
- package/dist/index.js +3786 -2029
- package/dist/index.js.map +1 -1
- package/dist/targets.js +3574 -1886
- package/dist/targets.js.map +1 -1
- package/package.json +5 -1
package/dist/engine.d.ts
CHANGED
|
@@ -149,6 +149,16 @@ interface LockSyncReport {
|
|
|
149
149
|
* `collaboration.lock_features`. Empty when no `lock_features` are configured.
|
|
150
150
|
*/
|
|
151
151
|
readonly lockedViolations: readonly string[];
|
|
152
|
+
/** Generated outputs whose on-disk hash differs from the lock. */
|
|
153
|
+
readonly outputsModified: readonly string[];
|
|
154
|
+
/** Generated outputs recorded in the lock but missing from disk. */
|
|
155
|
+
readonly outputsRemoved: readonly string[];
|
|
156
|
+
/**
|
|
157
|
+
* True when output drift was actually verified — requires `rootBase` and a
|
|
158
|
+
* lock with an `outputs` map. False for old-format locks or when no
|
|
159
|
+
* `rootBase` was supplied.
|
|
160
|
+
*/
|
|
161
|
+
readonly outputsChecked: boolean;
|
|
152
162
|
}
|
|
153
163
|
interface CheckLockSyncOptions {
|
|
154
164
|
readonly config: ValidatedConfig;
|
|
@@ -156,6 +166,11 @@ interface CheckLockSyncOptions {
|
|
|
156
166
|
readonly configDir: string;
|
|
157
167
|
/** Directory containing `.agentsmesh/.lock` and canonical files. */
|
|
158
168
|
readonly canonicalDir: string;
|
|
169
|
+
/**
|
|
170
|
+
* Project root the generated outputs are relative to. When absent, output
|
|
171
|
+
* verification is skipped (keeps the programmatic API backward compatible).
|
|
172
|
+
*/
|
|
173
|
+
readonly rootBase?: string;
|
|
159
174
|
}
|
|
160
175
|
|
|
161
176
|
declare function importFrom(target: string, opts: {
|