Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@madie/madie-models

Package Overview
Dependencies
Maintainers
7
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@madie/madie-models - npm Package Compare versions

Comparing version 1.2.5 to 1.2.6

dist/Stratification.d.ts

4

dist/Measure.d.ts
import { Model } from "./Model";
import { Population } from "./Population";
import { Population, PopulationType } from "./Population";
import { TestCase } from "./TestCase";

@@ -38,3 +38,3 @@ import { MeasureGroupTypes } from "./MeasureGroupTypes";

cqlDefinition?: string;
association?: string;
association?: PopulationType;
}

@@ -41,0 +41,0 @@ export interface MeasureObservation {

@@ -28,4 +28,9 @@ "use strict";

function getPopulationCode(populationType) {
return PopulationCodeMap[populationType];
if (PopulationCodeMap[populationType] == undefined) {
return populationType;
}
else {
return PopulationCodeMap[populationType];
}
}
exports.getPopulationCode = getPopulationCode;

@@ -22,8 +22,10 @@ import { PopulationType } from "./Population";

populationValues: PopulationExpectedValue[];
stratificationValues: PopulationExpectedValue[];
}
export interface PopulationExpectedValue {
name: PopulationType;
expected: any;
id: string;
criteriaReference: string;
name: PopulationType | string;
expected: boolean | number;
actual?: boolean | number;
}

@@ -33,11 +35,12 @@ export interface DisplayGroupPopulation {

scoring: string;
populationBasis: string;
populationValues: DisplayPopulationValue[];
populationBasis: string;
stratificationValues: DisplayPopulationValue[];
}
export interface DisplayPopulationValue {
name: PopulationType;
expected: any;
actual: any;
name: PopulationType | string;
actual?: boolean | number;
id: string;
criteriaReference: string;
expected: boolean | number;
}

@@ -44,0 +47,0 @@ export interface HapiOperationOutcome {

{
"name": "@madie/madie-models",
"version": "1.2.5",
"description": "",
"version": "1.2.6",
"description": "Models for MADiE Project",
"scripts": {

@@ -6,0 +6,0 @@ "build": "tsc",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc