Skip to content

Commit

Permalink
Merge pull request #188 from MeasureAuthoringTool/MAT-6167a
Browse files Browse the repository at this point in the history
Release 1.3.37
  • Loading branch information
mcmcphillips authored Dec 21, 2023
2 parents ea5e0ec + a334082 commit 0d6ff67
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@madie/madie-models",
"version": "1.3.36",
"version": "1.3.37",
"description": "Models for MADiE Project",
"scripts": {
"build": "tsc",
Expand Down
6 changes: 6 additions & 0 deletions src/Measure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ import { AggregateFunctionType } from "./AggregateFunctionType";
import { Organization } from "./Organization";
import { BaseConfigurationTypes } from "./BaseConfigurationTypes";

export interface MeasureDefinition {
term: string;
definition: string;
}

export interface MeasureMetadata {
steward?: Organization;
developers?: Array<Organization>;
Expand All @@ -23,6 +28,7 @@ export interface MeasureMetadata {
experimental?: boolean;
transmissionFormat?: string;
supplementalDataElements?: string;
measureDefinitions?: Array<MeasureDefinition>
}

export interface Reference {
Expand Down

0 comments on commit 0d6ff67

Please sign in to comment.