@openhealth/oht-custom-parser-lib 0.2.58 → 0.2.59

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.
@@ -383,6 +383,12 @@ export interface UnitExtractionConfig {
383
383
  extractionRegex?: string;
384
384
  extractionFunc?: string;
385
385
  }
386
+ /** Value extraction configuration */
387
+ export interface ValueExtractionConfig {
388
+ enabled: boolean;
389
+ valuePosition?: string;
390
+ extractionFunc?: string;
391
+ }
386
392
  /** Reference as annotation configuration */
387
393
  export interface ReferenceAsAnnotationConfig {
388
394
  enabled: boolean;
@@ -425,6 +431,8 @@ export interface BackendBiomarkerMapping {
425
431
  rangeExtraction: RangeExtractionConfig;
426
432
  /** Unit extraction configuration */
427
433
  unitExtraction: UnitExtractionConfig;
434
+ /** Value extraction configuration */
435
+ valueExtraction: ValueExtractionConfig;
428
436
  /** Reference as annotation configuration */
429
437
  referenceAsAnnotation: ReferenceAsAnnotationConfig;
430
438
  /** Annotation configuration for appended biomarkers */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openhealth/oht-custom-parser-lib",
3
- "version": "0.2.58",
3
+ "version": "0.2.59",
4
4
  "description": "Shared nodejs lib with with reusable functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",