@goodbones/campaigns 0.1.0 → 0.1.1-beta.2
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/build/dts/core/campaign-state.d.ts +3 -1
- package/build/dts/core/campaign-state.d.ts.map +1 -1
- package/build/dts/core/campaigns.d.ts +46 -2
- package/build/dts/core/campaigns.d.ts.map +1 -1
- package/build/dts/core/ledger.d.ts +58 -2
- package/build/dts/core/ledger.d.ts.map +1 -1
- package/build/dts/domain/config.d.ts +204 -2
- package/build/dts/domain/config.d.ts.map +1 -1
- package/build/dts/host/campaigns.d.ts +34 -0
- package/build/dts/host/campaigns.d.ts.map +1 -1
- package/build/dts/host/diff.d.ts +1 -0
- package/build/dts/host/diff.d.ts.map +1 -1
- package/build/dts/host/measure-command.d.ts +3 -0
- package/build/dts/host/measure-command.d.ts.map +1 -0
- package/build/dts/index.d.ts +5 -4
- package/build/dts/index.d.ts.map +1 -1
- package/build/dts/load/extension.d.ts +2 -1
- package/build/dts/load/extension.d.ts.map +1 -1
- package/build/dts/manifest/lower.d.ts.map +1 -1
- package/build/dts/manifest/spec.d.ts +209 -3
- package/build/dts/manifest/spec.d.ts.map +1 -1
- package/build/dts/ports/campaign-measure.d.ts +3 -0
- package/build/dts/ports/campaign-measure.d.ts.map +1 -0
- package/build/esm/core/campaign-state.js +35 -2
- package/build/esm/core/campaign-state.js.map +1 -1
- package/build/esm/core/campaigns.js +177 -2
- package/build/esm/core/campaigns.js.map +1 -1
- package/build/esm/core/ledger.js +215 -0
- package/build/esm/core/ledger.js.map +1 -1
- package/build/esm/domain/config.js +40 -4
- package/build/esm/domain/config.js.map +1 -1
- package/build/esm/host/campaigns.js +423 -29
- package/build/esm/host/campaigns.js.map +1 -1
- package/build/esm/host/diff.js +24 -0
- package/build/esm/host/diff.js.map +1 -1
- package/build/esm/host/measure-command.js +35 -0
- package/build/esm/host/measure-command.js.map +1 -0
- package/build/esm/index.js +2 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/load/extension.js +57 -13
- package/build/esm/load/extension.js.map +1 -1
- package/build/esm/manifest/lower.js +68 -1
- package/build/esm/manifest/lower.js.map +1 -1
- package/build/esm/manifest/spec.js +85 -5
- package/build/esm/manifest/spec.js.map +1 -1
- package/build/esm/ports/campaign-measure.js +2 -0
- package/build/esm/ports/campaign-measure.js.map +1 -0
- package/package.json +2 -2
- package/src/core/campaign-state.ts +49 -2
- package/src/core/campaigns.ts +232 -3
- package/src/core/ledger.ts +264 -2
- package/src/domain/config.ts +46 -4
- package/src/host/campaigns.ts +573 -33
- package/src/host/diff.ts +29 -0
- package/src/host/measure-command.ts +36 -0
- package/src/index.ts +31 -0
- package/src/load/extension.ts +70 -6
- package/src/manifest/lower.ts +80 -1
- package/src/manifest/spec.ts +100 -5
- package/src/ports/campaign-measure.ts +11 -0
|
@@ -19,12 +19,24 @@ export type SectorObjectiveReport = {
|
|
|
19
19
|
readonly drifted: number;
|
|
20
20
|
readonly unrecorded: boolean;
|
|
21
21
|
readonly arithmetic: boolean;
|
|
22
|
+
readonly measure?: {
|
|
23
|
+
readonly value: number | null;
|
|
24
|
+
readonly recorded: number | null;
|
|
25
|
+
readonly standing: "within" | "breached" | "surpassed" | "unrecorded" | "unmeasured";
|
|
26
|
+
};
|
|
22
27
|
};
|
|
23
28
|
export type ObjectiveReport = {
|
|
24
29
|
readonly id: string;
|
|
25
30
|
readonly count: number;
|
|
26
31
|
readonly ledgered: boolean;
|
|
27
32
|
readonly sectors: ReadonlyArray<SectorObjectiveReport>;
|
|
33
|
+
readonly measure?: {
|
|
34
|
+
readonly direction: "down" | "up";
|
|
35
|
+
readonly value: number | null;
|
|
36
|
+
readonly recorded: number | null;
|
|
37
|
+
readonly target: number | null;
|
|
38
|
+
readonly tolerance: number;
|
|
39
|
+
};
|
|
28
40
|
};
|
|
29
41
|
export type SectorReport = {
|
|
30
42
|
readonly name: string;
|
|
@@ -48,6 +60,10 @@ export type CampaignReport = {
|
|
|
48
60
|
}>;
|
|
49
61
|
readonly drifted: number;
|
|
50
62
|
readonly missingLedger: boolean;
|
|
63
|
+
readonly unmeasured: ReadonlyArray<{
|
|
64
|
+
objective: string;
|
|
65
|
+
sector: string;
|
|
66
|
+
}>;
|
|
51
67
|
readonly arithmetic: boolean;
|
|
52
68
|
readonly complete: boolean;
|
|
53
69
|
readonly stalled: boolean;
|
|
@@ -86,6 +102,14 @@ export type ClearOutcome = {
|
|
|
86
102
|
readonly entered: ReadonlyArray<string>;
|
|
87
103
|
readonly rebaselined: ReadonlyArray<string>;
|
|
88
104
|
readonly left: number;
|
|
105
|
+
readonly measure?: {
|
|
106
|
+
readonly improved: ReadonlyArray<{
|
|
107
|
+
sector: string;
|
|
108
|
+
from: number;
|
|
109
|
+
to: number;
|
|
110
|
+
}>;
|
|
111
|
+
readonly recorded: number;
|
|
112
|
+
};
|
|
89
113
|
};
|
|
90
114
|
export declare const clear: (policy: LoadedPolicy, evaluation: CampaignEvaluation, only: string | null, by: string) => ReadonlyArray<ClearOutcome>;
|
|
91
115
|
export type ConcedeOutcome = {
|
|
@@ -151,6 +175,15 @@ export type SectorNudge = {
|
|
|
151
175
|
};
|
|
152
176
|
readonly added: ReadonlyArray<string>;
|
|
153
177
|
readonly removed: ReadonlyArray<string>;
|
|
178
|
+
readonly measures: ReadonlyArray<{
|
|
179
|
+
readonly objective: string;
|
|
180
|
+
readonly direction: "down" | "up";
|
|
181
|
+
readonly before: number | null;
|
|
182
|
+
readonly after: number | null;
|
|
183
|
+
readonly target: number | null;
|
|
184
|
+
readonly tolerance: number;
|
|
185
|
+
readonly back: boolean;
|
|
186
|
+
}>;
|
|
154
187
|
readonly belongsInSector: ReadonlyArray<string>;
|
|
155
188
|
};
|
|
156
189
|
export type Nudge = {
|
|
@@ -176,6 +209,7 @@ export type BaseSide = ReadonlyArray<{
|
|
|
176
209
|
objective: string;
|
|
177
210
|
entry: string;
|
|
178
211
|
}>;
|
|
212
|
+
readonly values?: Readonly<Record<string, Readonly<Record<string, number | null>>>>;
|
|
179
213
|
}>;
|
|
180
214
|
export declare const baseSideOf: (evaluations: ReadonlyArray<CampaignEvaluation>) => BaseSide;
|
|
181
215
|
export declare const nudgeOf: (policy: LoadedPolicy, evaluations: ReadonlyArray<CampaignEvaluation>, diff: Diff, base: BaseSide | null, hotfix: string | null, by: string | null) => Nudge;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"campaigns.d.ts","sourceRoot":"","sources":["../../../src/host/campaigns.ts"],"names":[],"mappings":"AAIA,OAAO,
|
|
1
|
+
{"version":3,"file":"campaigns.d.ts","sourceRoot":"","sources":["../../../src/host/campaigns.ts"],"names":[],"mappings":"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"}
|
package/build/dts/host/diff.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export type Diff = {
|
|
|
8
8
|
readonly deleted: ReadonlyArray<string>;
|
|
9
9
|
readonly added: ReadonlyArray<string>;
|
|
10
10
|
};
|
|
11
|
+
export declare const gitEnv: () => NodeJS.ProcessEnv;
|
|
11
12
|
export declare const parseDiff: (text: string) => {
|
|
12
13
|
touched: Map<string, Array<Hunk>>;
|
|
13
14
|
deleted: Array<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"diff.d.ts","sourceRoot":"","sources":["../../../src/host/diff.ts"],"names":[],"mappings":"AAUA,MAAM,MAAM,IAAI,GAAG;IAGjB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,IAAI,GAAG;IAGjB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAG7B,QAAQ,CAAC,OAAO,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3D,QAAQ,CAAC,OAAO,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;IACxC,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;CACvC,CAAC;
|
|
1
|
+
{"version":3,"file":"diff.d.ts","sourceRoot":"","sources":["../../../src/host/diff.ts"],"names":[],"mappings":"AAUA,MAAM,MAAM,IAAI,GAAG;IAGjB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,IAAI,GAAG;IAGjB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAG7B,QAAQ,CAAC,OAAO,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3D,QAAQ,CAAC,OAAO,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;IACxC,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;CACvC,CAAC;AAwBF,eAAO,MAAM,MAAM,QAAO,MAAM,CAAC,UAG9B,CAAC;AAkBJ,eAAO,MAAM,SAAS,SACd,MAAM,KACX;IAAE,OAAO,EAAE,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC;IAAC,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;CA6CnF,CAAC;AAIF,eAAO,MAAM,QAAQ,aAAc,MAAM,QAAQ,MAAM,GAAG,IAAI,KAAG,IAkBhE,CAAC;AAIF,eAAO,MAAM,eAAe,UAAW,aAAa,CAAC,IAAI,CAAC,SAAS,MAAM,OAAO,MAAM,KAAG,MAOxF,CAAC;AAGF,eAAO,MAAM,MAAM,aAAc,MAAM,OAAO,MAAM,QAAQ,MAAM,KAAG,MAAM,GAAG,IAM7E,CAAC;AAEF,eAAO,MAAM,QAAQ,aAAc,MAAM,OAAO,MAAM,KAAG,MACf,CAAC;AAM3C,eAAO,MAAM,eAAe,aAChB,MAAM,OACX,MAAM,KACV;IAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,OAAO,EAAE,MAAM,IAAI,CAAA;CAqBvD,CAAC;AAGF,MAAM,MAAM,MAAM,GAAG;IACnB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;CACvC,CAAC;AAEF,eAAO,MAAM,eAAe,aAChB,MAAM,SACT,aAAa,CAAC,MAAM,CAAC,SACrB,MAAM,GAAG,IAAI,KACnB,aAAa,CAAC,MAAM,CAwBtB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"measure-command.d.ts","sourceRoot":"","sources":["../../../src/host/measure-command.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,eAAe,EAAoB,MAAM,sBAAsB,CAAC;AAa9E,eAAO,MAAM,aAAa,aAAc,MAAM,KAAG,CAAC,CAAC,OAAO,EAAE,eAAe,KAAK,MAAM,CAoBrF,CAAC"}
|
package/build/dts/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export { type CampaignEvaluation, type CampaignEvaluationInput, evaluateCampaign, hitsInWindow, type ObjectiveHit, type SectorState, towardNextOf, } from "./core/campaign-state.js";
|
|
2
|
-
export { type CampaignHit, type CampaignInput, campaignsFailingTheirProbe, campaignsSelecting, compileCampaignRule, compileCampaignRules, type CompiledCampaign, type CompiledDetector, type CompiledObjective, type CompiledPerimeter, type CompiledSectorTerm, compileObjective, candidatesOf as detectorCandidatesOf, detectorOf, evaluateObjective, evaluateObjectives, explainDetector, explainObjective, type FailedProbe, leafTermsOf, matchKeyOf, needsSyntax, perFileObjectivesOf, probeInputOf, reportSpecsOf, type TermAnswer, } from "./core/campaigns.js";
|
|
3
|
-
export { allowedOf, type Attestation, attestedRecord, clearedOf, clearedSector, closedOf, concededSector, type Concession, type ConcessionRecord, decodeLedger, decodePlanRecord, decodeSectorRecord, deltaOf, EMPTY_LEDGER, EMPTY_SECTOR_RECORD, encodeSectorName, holdoutsOf, initialOf, isComplete, isLegacyLedger, isStalled, lastClearedOf, type Ledger, ledgerArithmeticHolds, ledgerPathOf, Ledger as LedgerSchema, legacyLedgerPathOf, type Note, NOTE_CAP, NOTE_LENGTH, notedRecord, type PlanDiff, planDiffOf, planOf, planPathOf, type PlanRecord, positionOf, progressOf, reachedRecord, rebaselinedSector, reconcileSector, type Reconciliation, sectorArithmeticHolds, sectorClockOf, type SectorLedger, type SectorRecord, sectorRecordPathOf, serializeLedger, serializePlanRecord, serializeSectorRecord, } from "./core/ledger.js";
|
|
2
|
+
export { type CampaignHit, type CampaignInput, campaignsFailingTheirProbe, campaignsSelecting, compileCampaignRule, compileCampaignRules, type CompiledCampaign, type CompiledDetector, type CompiledMeasure, type CompiledMeasureSource, type CompiledObjective, type CompiledPerimeter, type CompiledSectorTerm, compileObjective, candidatesOf as detectorCandidatesOf, detectorOf, distanceToTarget, evaluateObjective, evaluateObjectives, explainDetector, explainObjective, type FailedProbe, leafTermsOf, matchKeyOf, measureDetectorsOf, measureFile, type MeasureParts, needsSyntax, numberFromOutput, perFileMeasuresOf, perFileObjectivesOf, probeInputOf, reportSpecsOf, roundMeasure, type TermAnswer, valueOfParts, } from "./core/campaigns.js";
|
|
3
|
+
export { allowedOf, type Attestation, attestedRecord, clearedMeasure, clearedOf, clearedSector, closedOf, concededMeasure, concededSector, type Concession, type ConcessionRecord, decodeLedger, decodeMeasureLedger, decodePlanRecord, decodeSectorRecord, deltaOf, EMPTY_LEDGER, EMPTY_MEASURE_LEDGER, EMPTY_SECTOR_RECORD, encodeSectorName, holdoutsOf, initialOf, isComplete, isLegacyLedger, isMeasureLedger, isStalled, lastClearedOf, lastImprovedOf, type Ledger, ledgerArithmeticHolds, ledgerPathOf, Ledger as LedgerSchema, legacyLedgerPathOf, measureArithmeticHolds, type MeasureConcession, type MeasureLedger, measureLedgerArithmeticHolds, MeasureLedger as MeasureLedgerSchema, measureProgressOf, type MeasureSectorLedger, measureStandingOf, type Note, NOTE_CAP, NOTE_LENGTH, notedRecord, type PlanDiff, planDiffOf, planOf, planPathOf, type PlanRecord, positionOf, progressOf, reachedRecord, rebaselinedSector, reconcileSector, type Reconciliation, recordedOf, sectorArithmeticHolds, sectorClockOf, type SectorLedger, type SectorRecord, sectorRecordPathOf, serializeLedger, serializeMeasureLedger, serializePlanRecord, serializeSectorRecord, } from "./core/ledger.js";
|
|
4
4
|
export { compareResidue, derivePhase, type Direction, donePhaseOf, inWindow, isDefinedPhase, isOpenPhase, isShut, LEGACY_PHASE, objectivesInWindow, onTouchOf, type Residue as ResidueVector, type SectorPosition, UNPLACED, type Window, windowOf, worsened, } from "./core/phases.js";
|
|
5
5
|
export { discoverSectors, fixedPrefixOf, IMPLICIT_SECTOR, LEGACY_SECTOR, membershipOf, parseSectorMarker, type Placement, rootOf, type Sector, SECTOR_HOLDOUT, type SectorDiscovery, entryOf as sectorEntryOf, type SectorIndex, type SectorMarker, sectorNamed, withoutExtension, } from "./core/sectors.js";
|
|
6
|
-
export { type CampaignProbe, type CampaignProbes, type CampaignRule, type CampaignUnit, type Detector, type Holdout, type ObjectiveRule, type OnTouch, type PerimeterRule, type PhaseConcession, type PhaseRule, type ProbeDiagnostic, type SectorTerm, } from "./domain/config.js";
|
|
6
|
+
export { type CampaignProbe, type CampaignProbes, type CampaignRule, type CampaignUnit, type Detector, type Holdout, type Measure, type MeasureDirection, type MeasureSource, type ObjectiveRule, type OnTouch, type PerimeterRule, type PhaseConcession, type PhaseRule, type ProbeDiagnostic, type SectorTerm, } from "./domain/config.js";
|
|
7
7
|
export { type Diagnostic, indexByFile, parseReport, type ParseReportOptions, type ReportFormat, uniqueDiagnostics, } from "./domain/report.js";
|
|
8
8
|
export { type Ask, attest, authorOf, type BaseSide, baseSideAt, baseSideOf, campaignFailuresOf, type CampaignReport, campaignReportsOf, clear, type ClearOutcome, concede, type ConcedeOutcome, evaluateCampaigns, explainCampaignLines, historyOf, type HistoryRow, HOLDOUT_CAP, ledgeredFilter, note, type Nudge, type NudgeHoldout, nudgeOf, type ObjectiveReport, type Readers, renderCampaignReports, renderCampaignRows, renderHistory, renderNudge, type SectorNudge, type SectorObjectiveReport, type SectorReport, snapshotCampaignsOf, type Verdict, widenedExtensions, } from "./host/campaigns.js";
|
|
9
9
|
export { type Commit, commitOf, commitsTouching, type Diff, distanceToHunks, type Hunk, materializeTree, parseDiff, readDiff, textAt, } from "./host/diff.js";
|
|
@@ -11,7 +11,8 @@ export { loadCampaignFunctions, type LoadedCampaignFunctions, } from "./infrastr
|
|
|
11
11
|
export { makeReportSourceLive } from "./infrastructure/report-source-live.js";
|
|
12
12
|
export { type CampaignPolicy, CAMPAIGNS_EXTENSION_ID, campaignsExtension, type CampaignsExtensionOptions, campaignsOf, ledgerKeyOf, } from "./load/extension.js";
|
|
13
13
|
export { END_STATE_ROOT, endStateObjectiveId, lowerCampaigns, lowerEndState, } from "./manifest/lower.js";
|
|
14
|
-
export { type CampaignProbeSpec, type CampaignProbesSpec, CampaignsManifest, type CampaignSpec, DEFAULT_LEDGER_DIR, type DetectorSpec, durationMs, type EndStateSpec, type ObjectiveSpec, type PerimeterSpec, type PhaseSpec, type SectorTermSpec, type SyntaxTermSpec, } from "./manifest/spec.js";
|
|
14
|
+
export { type CampaignProbeSpec, type CampaignProbesSpec, CampaignsManifest, type CampaignSpec, DEFAULT_LEDGER_DIR, type DetectorSpec, durationMs, type EndStateSpec, type MeasureSourceSpec, type ObjectiveSpec, type PerimeterSpec, type PhaseSpec, type SectorTermSpec, type SyntaxTermSpec, } from "./manifest/spec.js";
|
|
15
|
+
export { type CampaignMeasure } from "./ports/campaign-measure.js";
|
|
15
16
|
export { type CampaignPredicate, type CampaignPredicateInput, type CampaignSubject, type Range, } from "./ports/campaign-predicate.js";
|
|
16
17
|
export { NO_REPORTS, type ReportSource, reportSourcesOf, type ReportSpec, } from "./ports/report-source.js";
|
|
17
18
|
//# sourceMappingURL=index.d.ts.map
|
package/build/dts/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAYA,OAAO,EACL,KAAK,kBAAkB,EACvB,KAAK,uBAAuB,EAC5B,gBAAgB,EAChB,YAAY,EACZ,KAAK,YAAY,EACjB,KAAK,WAAW,EAChB,YAAY,GACb,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,0BAA0B,EAC1B,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,gBAAgB,EAChB,YAAY,IAAI,oBAAoB,EACpC,UAAU,EACV,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,gBAAgB,EAChB,KAAK,WAAW,EAChB,WAAW,EACX,UAAU,EACV,WAAW,EACX,mBAAmB,EACnB,YAAY,EACZ,aAAa,EACb,KAAK,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type LoadedPolicy, type PolicyExtension } from "@goodbones/core";
|
|
2
2
|
import { type CompiledCampaign } from "../core/campaigns.js";
|
|
3
|
-
import { type Ledger, type PlanRecord, type SectorRecord } from "../core/ledger.js";
|
|
3
|
+
import { type Ledger, type MeasureLedger, type PlanRecord, type SectorRecord } from "../core/ledger.js";
|
|
4
4
|
import type { CampaignPredicate } from "../ports/campaign-predicate.js";
|
|
5
5
|
import { type ReportSource } from "../ports/report-source.js";
|
|
6
6
|
import { type CampaignsManifest } from "./decode.js";
|
|
@@ -9,6 +9,7 @@ export declare const ledgerKeyOf: (campaign: string, objective: string) => strin
|
|
|
9
9
|
export type CampaignPolicy = {
|
|
10
10
|
readonly campaignRules: ReadonlyArray<CompiledCampaign>;
|
|
11
11
|
readonly ledgers: ReadonlyMap<string, Ledger>;
|
|
12
|
+
readonly measureLedgers: ReadonlyMap<string, MeasureLedger>;
|
|
12
13
|
readonly legacyLedgers: ReadonlyMap<string, string>;
|
|
13
14
|
readonly sectorRecords: ReadonlyMap<string, SectorRecord>;
|
|
14
15
|
readonly plans: ReadonlyMap<string, PlanRecord>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../../src/load/extension.ts"],"names":[],"mappings":"AAAA,OAAO,EAWL,KAAK,YAAY,EAKjB,KAAK,eAAe,EAIrB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAGL,KAAK,gBAAgB,
|
|
1
|
+
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../../src/load/extension.ts"],"names":[],"mappings":"AAAA,OAAO,EAWL,KAAK,YAAY,EAKjB,KAAK,eAAe,EAIrB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAGL,KAAK,gBAAgB,EAKtB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAOL,KAAK,MAAM,EAGX,KAAK,aAAa,EAElB,KAAK,UAAU,EACf,KAAK,YAAY,EAClB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EAAc,KAAK,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,KAAK,iBAAiB,EAAuC,MAAM,aAAa,CAAC;AAa1F,eAAO,MAAM,sBAAsB,cAAc,CAAC;AAGlD,eAAO,MAAM,WAAW,aAAc,MAAM,aAAa,MAAM,KAAG,MACtC,CAAC;AAE7B,MAAM,MAAM,cAAc,GAAG;IAK3B,QAAQ,CAAC,aAAa,EAAE,aAAa,CAAC,gBAAgB,CAAC,CAAC;IAGxD,QAAQ,CAAC,OAAO,EAAE,WAAW,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC9C,QAAQ,CAAC,cAAc,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;IAG5D,QAAQ,CAAC,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEpD,QAAQ,CAAC,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;IAE1D,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IAEhD,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAE3B,QAAQ,CAAC,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;IAE3D,QAAQ,CAAC,OAAO,EAAE,YAAY,CAAC;CAChC,CAAC;AAmBF,eAAO,MAAM,WAAW,WAAY,YAAY,KAAG,cAGlD,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG;IAGtC,QAAQ,CAAC,SAAS,CAAC,EAAE,WAAW,CAAC,MAAM,EAAE,iBAAiB,CAAC,GAAG,SAAS,CAAC;IAGxE,QAAQ,CAAC,OAAO,CAAC,EAAE,YAAY,GAAG,SAAS,CAAC;CAC7C,CAAC;AA8YF,eAAO,MAAM,kBAAkB,aACpB,yBAAyB,KACjC,eAAe,CAAC,iBAAiB,EAAE,cAAc,CAMlD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lower.d.ts","sourceRoot":"","sources":["../../../src/manifest/lower.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,YAAY,EAEjB,KAAK,QAAQ,EAEb,KAAK,aAAa,EACnB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,KAAK,EAEV,YAAY,
|
|
1
|
+
{"version":3,"file":"lower.d.ts","sourceRoot":"","sources":["../../../src/manifest/lower.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,YAAY,EAEjB,KAAK,QAAQ,EAEb,KAAK,aAAa,EACnB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,KAAK,EAEV,YAAY,EAQb,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAEL,KAAK,iBAAiB,EAOvB,MAAM,WAAW,CAAC;AAgDnB,QAAA,MAAM,kBAAkB,YAAI,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,CAAU,CAAC;AAC9F,KAAK,cAAc,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC;AAI1D,eAAO,MAAM,mBAAmB,WAAY,cAAc,KAAG,MAA+B,CAAC;AAI7F,eAAO,MAAM,cAAc,MAAM,CAAC;AAUlC,eAAO,MAAM,aAAa,SAClB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,QACjC,MAAM,WACH,aAAa,CAAC;IAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,WAC/D,QAAQ,CAAC,SAAS,CAAC,aACjB,aAAa,CAAC,aAAa,CAAC,YAC9B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,KACxC,YA0CF,CAAC;AAuhBF,eAAO,MAAM,cAAc,SACnB,iBAAiB,UACf,IAAI,CAAC,QAAQ,EAAE,SAAS,GAAG,SAAS,CAAC,aAClC,aAAa,CAAC,aAAa,CAAC,KACtC,aAAa,CAAC,YAAY,CAG1B,CAAC"}
|
|
@@ -102,6 +102,7 @@ declare const CampaignProbe: Schema.Struct<{
|
|
|
102
102
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
103
103
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
104
104
|
}>>>;
|
|
105
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
105
106
|
}>;
|
|
106
107
|
declare const CampaignProbes: Schema.Struct<{
|
|
107
108
|
readonly fires: Schema.$Array<Schema.Struct<{
|
|
@@ -119,6 +120,7 @@ declare const CampaignProbes: Schema.Struct<{
|
|
|
119
120
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
120
121
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
121
122
|
}>>>;
|
|
123
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
122
124
|
}>>;
|
|
123
125
|
readonly ignores: Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
124
126
|
readonly path: Schema.String;
|
|
@@ -135,6 +137,7 @@ declare const CampaignProbes: Schema.Struct<{
|
|
|
135
137
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
136
138
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
137
139
|
}>>>;
|
|
140
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
138
141
|
}>>>;
|
|
139
142
|
}>;
|
|
140
143
|
declare const SectorTermSpec: Schema.Union<readonly [Schema.Struct<{
|
|
@@ -144,10 +147,27 @@ declare const SectorTermSpec: Schema.Union<readonly [Schema.Struct<{
|
|
|
144
147
|
}>, Schema.Struct<{
|
|
145
148
|
readonly oneHost: Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>;
|
|
146
149
|
}>]>;
|
|
150
|
+
declare const MeasureSourceSpec: Schema.Union<readonly [Schema.Struct<{
|
|
151
|
+
readonly lines: Schema.Literal<true>;
|
|
152
|
+
}>, Schema.Struct<{
|
|
153
|
+
readonly files: Schema.Literal<true>;
|
|
154
|
+
}>, Schema.Struct<{
|
|
155
|
+
readonly report: Schema.Struct<{
|
|
156
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
157
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
158
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
159
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
160
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
161
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
162
|
+
}>;
|
|
163
|
+
}>, Schema.Struct<{
|
|
164
|
+
readonly fn: Schema.String;
|
|
165
|
+
}>]>;
|
|
166
|
+
export type MeasureSourceSpec = typeof MeasureSourceSpec.Type;
|
|
147
167
|
declare const Objective: Schema.Struct<{
|
|
148
168
|
readonly how: Schema.optionalKey<Schema.String>;
|
|
149
169
|
readonly why: Schema.optionalKey<Schema.String>;
|
|
150
|
-
readonly holdout: Schema.Literals<readonly ["file", "declaration", "match", "sector"]
|
|
170
|
+
readonly holdout: Schema.optionalKey<Schema.Literals<readonly ["file", "declaration", "match", "sector"]>>;
|
|
151
171
|
readonly match: Schema.optionalKey<Schema.suspend<Schema.Codec<DetectorSpec, DetectorSpec, never, never>>>;
|
|
152
172
|
readonly sector: Schema.optionalKey<Schema.Union<readonly [Schema.Struct<{
|
|
153
173
|
readonly has: Schema.suspend<Schema.Codec<DetectorSpec, DetectorSpec, never, never>>;
|
|
@@ -156,6 +176,64 @@ declare const Objective: Schema.Struct<{
|
|
|
156
176
|
}>, Schema.Struct<{
|
|
157
177
|
readonly oneHost: Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>;
|
|
158
178
|
}>]>>;
|
|
179
|
+
readonly measure: Schema.optionalKey<Schema.Union<readonly [Schema.Union<readonly [Schema.Struct<{
|
|
180
|
+
readonly lines: Schema.Literal<true>;
|
|
181
|
+
}>, Schema.Struct<{
|
|
182
|
+
readonly files: Schema.Literal<true>;
|
|
183
|
+
}>, Schema.Struct<{
|
|
184
|
+
readonly report: Schema.Struct<{
|
|
185
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
186
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
187
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
188
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
189
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
190
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
191
|
+
}>;
|
|
192
|
+
}>, Schema.Struct<{
|
|
193
|
+
readonly fn: Schema.String;
|
|
194
|
+
}>]>, Schema.Struct<{
|
|
195
|
+
readonly ratio: Schema.Struct<{
|
|
196
|
+
readonly of: Schema.Union<readonly [Schema.Struct<{
|
|
197
|
+
readonly lines: Schema.Literal<true>;
|
|
198
|
+
}>, Schema.Struct<{
|
|
199
|
+
readonly files: Schema.Literal<true>;
|
|
200
|
+
}>, Schema.Struct<{
|
|
201
|
+
readonly report: Schema.Struct<{
|
|
202
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
203
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
204
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
205
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
206
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
207
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
208
|
+
}>;
|
|
209
|
+
}>, Schema.Struct<{
|
|
210
|
+
readonly fn: Schema.String;
|
|
211
|
+
}>]>;
|
|
212
|
+
readonly per: Schema.Union<readonly [Schema.Struct<{
|
|
213
|
+
readonly lines: Schema.Literal<true>;
|
|
214
|
+
}>, Schema.Struct<{
|
|
215
|
+
readonly files: Schema.Literal<true>;
|
|
216
|
+
}>, Schema.Struct<{
|
|
217
|
+
readonly report: Schema.Struct<{
|
|
218
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
219
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
220
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
221
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
222
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
223
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
224
|
+
}>;
|
|
225
|
+
}>, Schema.Struct<{
|
|
226
|
+
readonly fn: Schema.String;
|
|
227
|
+
}>]>;
|
|
228
|
+
readonly scale: Schema.optionalKey<Schema.Finite>;
|
|
229
|
+
}>;
|
|
230
|
+
}>, Schema.Struct<{
|
|
231
|
+
readonly command: Schema.String;
|
|
232
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
233
|
+
}>]>>;
|
|
234
|
+
readonly direction: Schema.optionalKey<Schema.Literals<readonly ["down", "up"]>>;
|
|
235
|
+
readonly tolerance: Schema.optionalKey<Schema.Finite>;
|
|
236
|
+
readonly target: Schema.optionalKey<Schema.Finite>;
|
|
159
237
|
readonly until: Schema.optionalKey<Schema.String>;
|
|
160
238
|
readonly probes: Schema.optionalKey<Schema.Struct<{
|
|
161
239
|
readonly fires: Schema.$Array<Schema.Struct<{
|
|
@@ -173,6 +251,7 @@ declare const Objective: Schema.Struct<{
|
|
|
173
251
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
174
252
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
175
253
|
}>>>;
|
|
254
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
176
255
|
}>>;
|
|
177
256
|
readonly ignores: Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
178
257
|
readonly path: Schema.String;
|
|
@@ -189,6 +268,7 @@ declare const Objective: Schema.Struct<{
|
|
|
189
268
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
190
269
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
191
270
|
}>>>;
|
|
271
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
192
272
|
}>>>;
|
|
193
273
|
}>>;
|
|
194
274
|
}>;
|
|
@@ -219,6 +299,7 @@ declare const PerimeterSpec: Schema.Union<readonly [Schema.Literals<readonly ["f
|
|
|
219
299
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
220
300
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
221
301
|
}>>>;
|
|
302
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
222
303
|
}>>;
|
|
223
304
|
readonly ignores: Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
224
305
|
readonly path: Schema.String;
|
|
@@ -235,6 +316,7 @@ declare const PerimeterSpec: Schema.Union<readonly [Schema.Literals<readonly ["f
|
|
|
235
316
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
236
317
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
237
318
|
}>>>;
|
|
319
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
238
320
|
}>>>;
|
|
239
321
|
}>;
|
|
240
322
|
}>]>;
|
|
@@ -289,6 +371,7 @@ declare const Campaign: Schema.Struct<{
|
|
|
289
371
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
290
372
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
291
373
|
}>>>;
|
|
374
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
292
375
|
}>>;
|
|
293
376
|
readonly ignores: Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
294
377
|
readonly path: Schema.String;
|
|
@@ -305,6 +388,7 @@ declare const Campaign: Schema.Struct<{
|
|
|
305
388
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
306
389
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
307
390
|
}>>>;
|
|
391
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
308
392
|
}>>>;
|
|
309
393
|
}>;
|
|
310
394
|
}>]>>;
|
|
@@ -326,7 +410,7 @@ declare const Campaign: Schema.Struct<{
|
|
|
326
410
|
readonly objectives: Schema.$Record<Schema.String, Schema.Struct<{
|
|
327
411
|
readonly how: Schema.optionalKey<Schema.String>;
|
|
328
412
|
readonly why: Schema.optionalKey<Schema.String>;
|
|
329
|
-
readonly holdout: Schema.Literals<readonly ["file", "declaration", "match", "sector"]
|
|
413
|
+
readonly holdout: Schema.optionalKey<Schema.Literals<readonly ["file", "declaration", "match", "sector"]>>;
|
|
330
414
|
readonly match: Schema.optionalKey<Schema.suspend<Schema.Codec<DetectorSpec, DetectorSpec, never, never>>>;
|
|
331
415
|
readonly sector: Schema.optionalKey<Schema.Union<readonly [Schema.Struct<{
|
|
332
416
|
readonly has: Schema.suspend<Schema.Codec<DetectorSpec, DetectorSpec, never, never>>;
|
|
@@ -335,6 +419,64 @@ declare const Campaign: Schema.Struct<{
|
|
|
335
419
|
}>, Schema.Struct<{
|
|
336
420
|
readonly oneHost: Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>;
|
|
337
421
|
}>]>>;
|
|
422
|
+
readonly measure: Schema.optionalKey<Schema.Union<readonly [Schema.Union<readonly [Schema.Struct<{
|
|
423
|
+
readonly lines: Schema.Literal<true>;
|
|
424
|
+
}>, Schema.Struct<{
|
|
425
|
+
readonly files: Schema.Literal<true>;
|
|
426
|
+
}>, Schema.Struct<{
|
|
427
|
+
readonly report: Schema.Struct<{
|
|
428
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
429
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
430
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
431
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
432
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
433
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
434
|
+
}>;
|
|
435
|
+
}>, Schema.Struct<{
|
|
436
|
+
readonly fn: Schema.String;
|
|
437
|
+
}>]>, Schema.Struct<{
|
|
438
|
+
readonly ratio: Schema.Struct<{
|
|
439
|
+
readonly of: Schema.Union<readonly [Schema.Struct<{
|
|
440
|
+
readonly lines: Schema.Literal<true>;
|
|
441
|
+
}>, Schema.Struct<{
|
|
442
|
+
readonly files: Schema.Literal<true>;
|
|
443
|
+
}>, Schema.Struct<{
|
|
444
|
+
readonly report: Schema.Struct<{
|
|
445
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
446
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
447
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
448
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
449
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
450
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
451
|
+
}>;
|
|
452
|
+
}>, Schema.Struct<{
|
|
453
|
+
readonly fn: Schema.String;
|
|
454
|
+
}>]>;
|
|
455
|
+
readonly per: Schema.Union<readonly [Schema.Struct<{
|
|
456
|
+
readonly lines: Schema.Literal<true>;
|
|
457
|
+
}>, Schema.Struct<{
|
|
458
|
+
readonly files: Schema.Literal<true>;
|
|
459
|
+
}>, Schema.Struct<{
|
|
460
|
+
readonly report: Schema.Struct<{
|
|
461
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
462
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
463
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
464
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
465
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
466
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
467
|
+
}>;
|
|
468
|
+
}>, Schema.Struct<{
|
|
469
|
+
readonly fn: Schema.String;
|
|
470
|
+
}>]>;
|
|
471
|
+
readonly scale: Schema.optionalKey<Schema.Finite>;
|
|
472
|
+
}>;
|
|
473
|
+
}>, Schema.Struct<{
|
|
474
|
+
readonly command: Schema.String;
|
|
475
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
476
|
+
}>]>>;
|
|
477
|
+
readonly direction: Schema.optionalKey<Schema.Literals<readonly ["down", "up"]>>;
|
|
478
|
+
readonly tolerance: Schema.optionalKey<Schema.Finite>;
|
|
479
|
+
readonly target: Schema.optionalKey<Schema.Finite>;
|
|
338
480
|
readonly until: Schema.optionalKey<Schema.String>;
|
|
339
481
|
readonly probes: Schema.optionalKey<Schema.Struct<{
|
|
340
482
|
readonly fires: Schema.$Array<Schema.Struct<{
|
|
@@ -352,6 +494,7 @@ declare const Campaign: Schema.Struct<{
|
|
|
352
494
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
353
495
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
354
496
|
}>>>;
|
|
497
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
355
498
|
}>>;
|
|
356
499
|
readonly ignores: Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
357
500
|
readonly path: Schema.String;
|
|
@@ -368,6 +511,7 @@ declare const Campaign: Schema.Struct<{
|
|
|
368
511
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
369
512
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
370
513
|
}>>>;
|
|
514
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
371
515
|
}>>>;
|
|
372
516
|
}>>;
|
|
373
517
|
}>>;
|
|
@@ -412,6 +556,7 @@ export declare const CampaignsManifest: Schema.Struct<{
|
|
|
412
556
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
413
557
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
414
558
|
}>>>;
|
|
559
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
415
560
|
}>>;
|
|
416
561
|
readonly ignores: Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
417
562
|
readonly path: Schema.String;
|
|
@@ -428,6 +573,7 @@ export declare const CampaignsManifest: Schema.Struct<{
|
|
|
428
573
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
429
574
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
430
575
|
}>>>;
|
|
576
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
431
577
|
}>>>;
|
|
432
578
|
}>;
|
|
433
579
|
}>]>>;
|
|
@@ -449,7 +595,7 @@ export declare const CampaignsManifest: Schema.Struct<{
|
|
|
449
595
|
readonly objectives: Schema.$Record<Schema.String, Schema.Struct<{
|
|
450
596
|
readonly how: Schema.optionalKey<Schema.String>;
|
|
451
597
|
readonly why: Schema.optionalKey<Schema.String>;
|
|
452
|
-
readonly holdout: Schema.Literals<readonly ["file", "declaration", "match", "sector"]
|
|
598
|
+
readonly holdout: Schema.optionalKey<Schema.Literals<readonly ["file", "declaration", "match", "sector"]>>;
|
|
453
599
|
readonly match: Schema.optionalKey<Schema.suspend<Schema.Codec<DetectorSpec, DetectorSpec, never, never>>>;
|
|
454
600
|
readonly sector: Schema.optionalKey<Schema.Union<readonly [Schema.Struct<{
|
|
455
601
|
readonly has: Schema.suspend<Schema.Codec<DetectorSpec, DetectorSpec, never, never>>;
|
|
@@ -458,6 +604,64 @@ export declare const CampaignsManifest: Schema.Struct<{
|
|
|
458
604
|
}>, Schema.Struct<{
|
|
459
605
|
readonly oneHost: Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>;
|
|
460
606
|
}>]>>;
|
|
607
|
+
readonly measure: Schema.optionalKey<Schema.Union<readonly [Schema.Union<readonly [Schema.Struct<{
|
|
608
|
+
readonly lines: Schema.Literal<true>;
|
|
609
|
+
}>, Schema.Struct<{
|
|
610
|
+
readonly files: Schema.Literal<true>;
|
|
611
|
+
}>, Schema.Struct<{
|
|
612
|
+
readonly report: Schema.Struct<{
|
|
613
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
614
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
615
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
616
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
617
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
618
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
619
|
+
}>;
|
|
620
|
+
}>, Schema.Struct<{
|
|
621
|
+
readonly fn: Schema.String;
|
|
622
|
+
}>]>, Schema.Struct<{
|
|
623
|
+
readonly ratio: Schema.Struct<{
|
|
624
|
+
readonly of: Schema.Union<readonly [Schema.Struct<{
|
|
625
|
+
readonly lines: Schema.Literal<true>;
|
|
626
|
+
}>, Schema.Struct<{
|
|
627
|
+
readonly files: Schema.Literal<true>;
|
|
628
|
+
}>, Schema.Struct<{
|
|
629
|
+
readonly report: Schema.Struct<{
|
|
630
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
631
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
632
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
633
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
634
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
635
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
636
|
+
}>;
|
|
637
|
+
}>, Schema.Struct<{
|
|
638
|
+
readonly fn: Schema.String;
|
|
639
|
+
}>]>;
|
|
640
|
+
readonly per: Schema.Union<readonly [Schema.Struct<{
|
|
641
|
+
readonly lines: Schema.Literal<true>;
|
|
642
|
+
}>, Schema.Struct<{
|
|
643
|
+
readonly files: Schema.Literal<true>;
|
|
644
|
+
}>, Schema.Struct<{
|
|
645
|
+
readonly report: Schema.Struct<{
|
|
646
|
+
readonly command: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
647
|
+
readonly file: Schema.optionalKey<Schema.Union<readonly [Schema.String, Schema.$Array<Schema.String>]>>;
|
|
648
|
+
readonly format: Schema.Literals<readonly ["tsc", "eslint", "oxlint", "regex"]>;
|
|
649
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
650
|
+
readonly codes: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
651
|
+
readonly codesNot: Schema.optionalKey<Schema.$Array<Schema.String>>;
|
|
652
|
+
}>;
|
|
653
|
+
}>, Schema.Struct<{
|
|
654
|
+
readonly fn: Schema.String;
|
|
655
|
+
}>]>;
|
|
656
|
+
readonly scale: Schema.optionalKey<Schema.Finite>;
|
|
657
|
+
}>;
|
|
658
|
+
}>, Schema.Struct<{
|
|
659
|
+
readonly command: Schema.String;
|
|
660
|
+
readonly pattern: Schema.optionalKey<Schema.String>;
|
|
661
|
+
}>]>>;
|
|
662
|
+
readonly direction: Schema.optionalKey<Schema.Literals<readonly ["down", "up"]>>;
|
|
663
|
+
readonly tolerance: Schema.optionalKey<Schema.Finite>;
|
|
664
|
+
readonly target: Schema.optionalKey<Schema.Finite>;
|
|
461
665
|
readonly until: Schema.optionalKey<Schema.String>;
|
|
462
666
|
readonly probes: Schema.optionalKey<Schema.Struct<{
|
|
463
667
|
readonly fires: Schema.$Array<Schema.Struct<{
|
|
@@ -475,6 +679,7 @@ export declare const CampaignsManifest: Schema.Struct<{
|
|
|
475
679
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
476
680
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
477
681
|
}>>>;
|
|
682
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
478
683
|
}>>;
|
|
479
684
|
readonly ignores: Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
480
685
|
readonly path: Schema.String;
|
|
@@ -491,6 +696,7 @@ export declare const CampaignsManifest: Schema.Struct<{
|
|
|
491
696
|
readonly code: Schema.optionalKey<Schema.String>;
|
|
492
697
|
readonly message: Schema.optionalKey<Schema.String>;
|
|
493
698
|
}>>>;
|
|
699
|
+
readonly value: Schema.optionalKey<Schema.Finite>;
|
|
494
700
|
}>>>;
|
|
495
701
|
}>>;
|
|
496
702
|
}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec.d.ts","sourceRoot":"","sources":["../../../src/manifest/spec.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AA6BxC,QAAA,MAAM,QAAQ;;;;;;;EAKZ,CAAC;AAKH,QAAA,MAAM,WAAW;;;;;;;EAGf,CAAC;AAGH,QAAA,MAAM,WAAW;;;;;EAKf,CAAC;AAGH,QAAA,MAAM,WAAW;;;;;EAKf,CAAC;AAGH,QAAA,MAAM,WAAW;;EAA0C,CAAC;AAqB5D,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;EAad,CAAC;AAeH,QAAA,MAAM,UAAU;;;;;;;EA0Bf,CAAC;AAEF,MAAM,MAAM,YAAY,GACpB;IAAE,QAAQ,CAAC,GAAG,EAAE,aAAa,CAAC,YAAY,CAAC,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,GAAG,EAAE,aAAa,CAAC,YAAY,CAAC,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,GAAG,EAAE,YAAY,CAAA;CAAE,GAC9B;IAAE,QAAQ,CAAC,IAAI,EAAE,OAAO,QAAQ,CAAC,IAAI,CAAA;CAAE,GACvC;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAE7C;IAAE,QAAQ,CAAC,QAAQ,EAAE,aAAa,CAAC,MAAM,CAAC,CAAA;CAAE,GAC5C;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,MAAM,EAAE,OAAO,UAAU,CAAC,IAAI,CAAA;CAAE,GAC3C;IAAE,QAAQ,CAAC,MAAM,EAAE,OAAO,UAAU,CAAC,IAAI,CAAA;CAAE,GAE3C;IAAE,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;CAAE,CAAC;AA2B5B,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"spec.d.ts","sourceRoot":"","sources":["../../../src/manifest/spec.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AA6BxC,QAAA,MAAM,QAAQ;;;;;;;EAKZ,CAAC;AAKH,QAAA,MAAM,WAAW;;;;;;;EAGf,CAAC;AAGH,QAAA,MAAM,WAAW;;;;;EAKf,CAAC;AAGH,QAAA,MAAM,WAAW;;;;;EAKf,CAAC;AAGH,QAAA,MAAM,WAAW;;EAA0C,CAAC;AAqB5D,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;EAad,CAAC;AAeH,QAAA,MAAM,UAAU;;;;;;;EA0Bf,CAAC;AAEF,MAAM,MAAM,YAAY,GACpB;IAAE,QAAQ,CAAC,GAAG,EAAE,aAAa,CAAC,YAAY,CAAC,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,GAAG,EAAE,aAAa,CAAC,YAAY,CAAC,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,GAAG,EAAE,YAAY,CAAA;CAAE,GAC9B;IAAE,QAAQ,CAAC,IAAI,EAAE,OAAO,QAAQ,CAAC,IAAI,CAAA;CAAE,GACvC;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAE7C;IAAE,QAAQ,CAAC,QAAQ,EAAE,aAAa,CAAC,MAAM,CAAC,CAAA;CAAE,GAC5C;IAAE,QAAQ,CAAC,OAAO,EAAE,OAAO,WAAW,CAAC,IAAI,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,MAAM,EAAE,OAAO,UAAU,CAAC,IAAI,CAAA;CAAE,GAC3C;IAAE,QAAQ,CAAC,MAAM,EAAE,OAAO,UAAU,CAAC,IAAI,CAAA;CAAE,GAE3C;IAAE,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;CAAE,CAAC;AA2B5B,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;EAQjB,CAAC;AAEH,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGlB,CAAC;AAYH,QAAA,MAAM,cAAc;;;;;;IAIlB,CAAC;AAKH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;IAKrB,CAAC;AAmBH,MAAM,MAAM,iBAAiB,GAAG,OAAO,iBAAiB,CAAC,IAAI,CAAC;AAe9D,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8Fd,CAAC;AAQF,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAcjB,CAAC;AAgBH,QAAA,MAAM,YAAY,+CAA+C,CAAC;AAIlE,QAAA,MAAM,KAAK;;;;;;;;;;;;EAQT,CAAC;AAWH,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBZ,CAAC;AAMH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK5B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,OAAO,iBAAiB,CAAC,IAAI,CAAC;AAC9D,MAAM,MAAM,YAAY,GAAG,OAAO,QAAQ,CAAC,IAAI,CAAC;AAChD,MAAM,MAAM,aAAa,GAAG,OAAO,SAAS,CAAC,IAAI,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,OAAO,KAAK,CAAC,IAAI,CAAC;AAC1C,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAC,IAAI,CAAC;AACtD,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAC,IAAI,CAAC;AACxD,MAAM,MAAM,YAAY,GAAG,OAAO,YAAY,CAAC,IAAI,CAAC;AACpD,MAAM,MAAM,iBAAiB,GAAG,OAAO,aAAa,CAAC,IAAI,CAAC;AAC1D,MAAM,MAAM,kBAAkB,GAAG,OAAO,cAAc,CAAC,IAAI,CAAC;AAC5D,MAAM,MAAM,cAAc,GAAG,OAAO,UAAU,CAAC,IAAI,CAAC;AAEpD,eAAO,MAAM,kBAAkB,4BAA4B,CAAC;AAG5D,eAAO,MAAM,UAAU,aAAc,MAAM,KAAG,MAG7C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"campaign-measure.d.ts","sourceRoot":"","sources":["../../../src/ports/campaign-measure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAUtE,MAAM,MAAM,eAAe,GAAG,CAAC,KAAK,EAAE,sBAAsB,KAAK,MAAM,CAAC"}
|