lensmcp 1.18.2 → 1.18.3
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/bundled/capture-runner.js +9 -1
- package/bundled/dashboard.js +550 -157
- package/bundled/main.js +550 -157
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/hooks/status-hook.sh +27 -1
|
@@ -49813,7 +49813,15 @@ var LintCurrentSchema = ResourceEnvelopeSchema.merge(ProducerHealthSchema).exten
|
|
|
49813
49813
|
});
|
|
49814
49814
|
var BuildCurrentSchema = ResourceEnvelopeSchema.merge(ProducerHealthSchema).extend({
|
|
49815
49815
|
status: external_exports.enum(["unknown", "clean", "warning", "failing"]),
|
|
49816
|
-
hmrUpdates: external_exports.number().int().nonnegative()
|
|
49816
|
+
hmrUpdates: external_exports.number().int().nonnegative(),
|
|
49817
|
+
/**
|
|
49818
|
+
* When the newest build/typecheck/lint verdict landed. Absent means nothing
|
|
49819
|
+
* has ever reported — which is NOT the same as clean, and was invisible
|
|
49820
|
+
* while this field was missing: `build://current` claimed `failing` with 12
|
|
49821
|
+
* errors accumulated over 49 minutes and no timestamp to expose their age.
|
|
49822
|
+
* `typecheck://` and `lint://` have always carried it; this aligns the third.
|
|
49823
|
+
*/
|
|
49824
|
+
lastRunAt: external_exports.number().int().nonnegative().optional()
|
|
49817
49825
|
});
|
|
49818
49826
|
|
|
49819
49827
|
// libs/protocol-types/dist/lib/capture-demand.js
|