@madie/madie-models
Advanced tools
Comparing version 1.0.8 to 1.1.0
export * from "./Measure"; | ||
export * from "./MeasurePopulation"; | ||
export * from "./Population"; | ||
export * from "./MeasureScoring"; | ||
@@ -4,0 +4,0 @@ export * from "./Model"; |
@@ -18,3 +18,3 @@ "use strict"; | ||
__exportStar(require("./Measure"), exports); | ||
__exportStar(require("./MeasurePopulation"), exports); | ||
__exportStar(require("./Population"), exports); | ||
__exportStar(require("./MeasureScoring"), exports); | ||
@@ -21,0 +21,0 @@ __exportStar(require("./Model"), exports); |
import { Model } from "./Model"; | ||
import { PopulationType } from "./MeasurePopulation"; | ||
import { Population } from "./Population"; | ||
import { TestCase } from "./TestCase"; | ||
@@ -14,6 +14,12 @@ import { MeasureGroupTypes } from "./MeasureGroupTypes"; | ||
} | ||
export interface Stratification { | ||
id: string; | ||
description?: string; | ||
cqlDefinition?: string; | ||
association?: string; | ||
} | ||
export interface Group { | ||
id: string; | ||
scoring?: string; | ||
population?: PopulationType; | ||
populations?: Population[]; | ||
groupDescription?: string; | ||
@@ -23,2 +29,3 @@ rateAggregation?: string; | ||
scoringUnit?: string; | ||
stratifications?: Stratification[]; | ||
measureGroupTypes: MeasureGroupTypes[]; | ||
@@ -25,0 +32,0 @@ } |
@@ -1,2 +0,2 @@ | ||
import { MeasurePopulation } from "./MeasurePopulation"; | ||
import { PopulationType } from "./Population"; | ||
export interface TestCase { | ||
@@ -23,3 +23,3 @@ id: string; | ||
export interface PopulationExpectedValue { | ||
name: MeasurePopulation; | ||
name: PopulationType; | ||
expected: boolean; | ||
@@ -33,3 +33,3 @@ } | ||
export interface DisplayPopulationValue { | ||
name: MeasurePopulation; | ||
name: PopulationType; | ||
expected: boolean; | ||
@@ -36,0 +36,0 @@ actual: boolean; |
{ | ||
"name": "@madie/madie-models", | ||
"version": "1.0.8", | ||
"version": "1.1.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10342
271