placementt-core 1.400.968 → 1.400.969
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/lib/typeDefinitions.d.ts
CHANGED
|
@@ -3479,5 +3479,9 @@ export type LmiStandardsMatchReview = {
|
|
|
3479
3479
|
standardLevel: number;
|
|
3480
3480
|
confidence: number;
|
|
3481
3481
|
}[];
|
|
3482
|
+
/** Why-it-did-what-it-did counters + samples, for debugging the run. */
|
|
3483
|
+
diagnostics?: {
|
|
3484
|
+
[key: string]: unknown;
|
|
3485
|
+
};
|
|
3482
3486
|
};
|
|
3483
3487
|
export {};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -3447,4 +3447,6 @@ export type LmiStandardsMatchReview = {
|
|
|
3447
3447
|
standardLevel: number,
|
|
3448
3448
|
confidence: number, // 0-1 heuristic score
|
|
3449
3449
|
}[],
|
|
3450
|
+
/** Why-it-did-what-it-did counters + samples, for debugging the run. */
|
|
3451
|
+
diagnostics?: {[key: string]: unknown},
|
|
3450
3452
|
}
|