@thanh01.pmt/curriculum-kit 1.4.1 → 1.4.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/dist/ai/index.cjs +3 -1
- package/dist/ai/index.cjs.map +1 -1
- package/dist/ai/index.d.cts +4 -0
- package/dist/ai/index.d.ts +4 -0
- package/dist/ai/index.mjs +3 -1
- package/dist/ai/index.mjs.map +1 -1
- package/dist/index.cjs +12688 -137
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.mjs +12686 -138
- package/dist/index.mjs.map +1 -1
- package/dist/pipeline/index.cjs +3 -1
- package/dist/pipeline/index.cjs.map +1 -1
- package/dist/pipeline/index.mjs +3 -1
- package/dist/pipeline/index.mjs.map +1 -1
- package/dist/schemas/index.cjs +3 -1
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +20 -0
- package/dist/schemas/index.d.ts +20 -0
- package/dist/schemas/index.mjs +3 -1
- package/dist/schemas/index.mjs.map +1 -1
- package/dist/standards/index.cjs +12412 -2
- package/dist/standards/index.cjs.map +1 -1
- package/dist/standards/index.d.cts +22 -3
- package/dist/standards/index.d.ts +22 -3
- package/dist/standards/index.mjs +12410 -3
- package/dist/standards/index.mjs.map +1 -1
- package/dist/{standardsCoverageGate-CsUNzv6C.d.cts → standardsCoverageGate-DR5YTtlt.d.cts} +2 -0
- package/dist/{standardsCoverageGate-CsUNzv6C.d.ts → standardsCoverageGate-DR5YTtlt.d.ts} +2 -0
- package/dist/workflow/index.cjs +12426 -18
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.d.cts +1 -1
- package/dist/workflow/index.d.ts +1 -1
- package/dist/workflow/index.mjs +12426 -18
- package/dist/workflow/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -758,6 +758,8 @@ interface StatementCoverageRow {
|
|
|
758
758
|
interface CoverageGateReport {
|
|
759
759
|
verdict: 'PASS' | 'WARN' | 'FAIL';
|
|
760
760
|
coveragePct: number;
|
|
761
|
+
unresolvedCount?: number;
|
|
762
|
+
hasUnresolvedRefs?: boolean;
|
|
761
763
|
rows: StatementCoverageRow[];
|
|
762
764
|
summary: string;
|
|
763
765
|
rawMarkdownReport: string;
|
|
@@ -758,6 +758,8 @@ interface StatementCoverageRow {
|
|
|
758
758
|
interface CoverageGateReport {
|
|
759
759
|
verdict: 'PASS' | 'WARN' | 'FAIL';
|
|
760
760
|
coveragePct: number;
|
|
761
|
+
unresolvedCount?: number;
|
|
762
|
+
hasUnresolvedRefs?: boolean;
|
|
761
763
|
rows: StatementCoverageRow[];
|
|
762
764
|
summary: string;
|
|
763
765
|
rawMarkdownReport: string;
|