Skip to content

Commit f40811c

Browse files
Merge pull request #306 from MeasureAuthoringTool/MAT-10186
Release 1.4.74
2 parents 5ced5c8 + e86edaf commit f40811c

4 files changed

Lines changed: 22 additions & 3 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@madie/madie-models",
3-
"version": "1.4.73",
3+
"version": "1.4.74",
44
"description": "Models for MADiE Project",
55
"scripts": {
66
"build": "tsc",

src/LibraryListDTO.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { Model } from "./Model";
2+
import { LibrarySet, CqlLibraryLock } from "./CqlLibrary";
3+
4+
export interface LibraryListDTO {
5+
id: string;
6+
librarySetId: string;
7+
cqlLibraryName: string;
8+
createdAt?: string;
9+
ownerDisplayName?: string;
10+
model: Model | "";
11+
version: string;
12+
librarySet?: LibrarySet;
13+
lastModifiedAt: string;
14+
draft: boolean;
15+
hasAssociatedLibraries: boolean;
16+
reviewStatus?: string;
17+
cqlLibraryLock?: CqlLibraryLock;
18+
}

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ export * from "./UserDetails";
1818
export * from "./Review";
1919
export * from "./CqlLibraryReview";
2020
export * from "./MeasureReview";
21+
export * from "./LibraryListDTO";

0 commit comments

Comments
 (0)