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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.968",
5
+ "version": "1.400.969",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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
  }