@madie/madie-models
Advanced tools
Comparing version 1.3.48 to 1.3.49
@@ -12,1 +12,2 @@ export * from "./Measure"; | ||
export * from "./BaseConfigurationTypes"; | ||
export * from "./TestCaseExcelExportDto"; |
@@ -28,1 +28,2 @@ "use strict"; | ||
__exportStar(require("./BaseConfigurationTypes"), exports); | ||
__exportStar(require("./TestCaseExcelExportDto"), exports); |
@@ -7,3 +7,3 @@ export interface TestCaseExcelExportDto { | ||
export interface TestCaseExecutionResultDto { | ||
populations: Array<Population>; | ||
populations: Array<PopulationDto>; | ||
notes?: string; | ||
@@ -18,6 +18,6 @@ last: string; | ||
gender?: string; | ||
definitions: Array<Definition>; | ||
functions: Array<Func>; | ||
definitions: Array<DefinitionDto>; | ||
functions: Array<FunctionDto>; | ||
} | ||
export interface Population { | ||
export interface PopulationDto { | ||
name: string; | ||
@@ -27,9 +27,9 @@ expected: number; | ||
} | ||
export interface Definition { | ||
export interface DefinitionDto { | ||
logic: string; | ||
actual: string; | ||
} | ||
export interface Func { | ||
export interface FunctionDto { | ||
logic: string; | ||
actual: string; | ||
} |
{ | ||
"name": "@madie/madie-models", | ||
"version": "1.3.48", | ||
"version": "1.3.49", | ||
"description": "Models for MADiE Project", | ||
@@ -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
18885
514