@validation-os/dashboard 0.15.6 → 0.16.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/index.d.ts +9 -1
- package/dist/index.js +367 -189
- package/dist/index.js.map +1 -1
- package/dist/styles.css +167 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -584,6 +584,14 @@ interface PipelineRow {
|
|
|
584
584
|
};
|
|
585
585
|
/** The stage-aware verb the front door offers (navigates to the record). */
|
|
586
586
|
nextMove: string;
|
|
587
|
+
/** The assumption's Question Type (DEV-5890) — kind of claim. */
|
|
588
|
+
questionType: string | null;
|
|
589
|
+
/** The assumption's Stage (DEV-5890) — kind of response / threshold. */
|
|
590
|
+
stage: string | null;
|
|
591
|
+
/** The stage's Risk threshold (DEV-5890) — the stopping bar. */
|
|
592
|
+
riskThreshold: number | null;
|
|
593
|
+
/** Whether the assumption has cleared its stage's threshold (Risk ≤ bar). */
|
|
594
|
+
clearedThreshold: boolean | null;
|
|
587
595
|
}
|
|
588
596
|
/** A belief taken off the board — killed (Invalidated) or made moot. */
|
|
589
597
|
interface ResolvedRow {
|
|
@@ -742,7 +750,7 @@ interface CycleView {
|
|
|
742
750
|
* `understanding.ts`/`journey.ts` take — so a caller loading the registers
|
|
743
751
|
* once can hand them straight through.
|
|
744
752
|
*/
|
|
745
|
-
declare function buildCycles(assumptionId: string, readings: AnyRecord[], experiments: AnyRecord[]): CycleView[];
|
|
753
|
+
declare function buildCycles(assumptionId: string, readings: AnyRecord[], experiments: AnyRecord[], assumptionsById?: ReadonlyMap<string, AnyRecord>): CycleView[];
|
|
746
754
|
|
|
747
755
|
/** A journey event with its front-door copy attached. */
|
|
748
756
|
interface JourneyEventView extends JourneyEvent {
|