Skip to content
This repository was archived by the owner on May 4, 2019. It is now read-only.

Commit 085c7e8

Browse files
authored
Merge pull request #173 from osu-cass/dev
Dev
2 parents 85b3a5a + 1130e4b commit 085c7e8

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/ItemSearch/ItemSearchModels.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export interface SearchBaseModel {
3535
export interface SubjectModel extends SearchBaseModel {
3636
claimCodes?: string[];
3737
interactionTypeCodes?: string[];
38+
shortLabel?: string;
3839
}
3940

4041
export interface ClaimModel extends SearchBaseModel {

src/Pdf/PdfModels.ts

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { AboutItemModel } from "../AboutItem/AboutItemModels";
2+
import { InteractionTypeModel } from "../AboutTestItems/AboutTestItemsModels";
3+
import { SubjectModel } from "../ItemSearch/ItemSearchModels";
24

35
export interface ItemGroupModel {
46
passage?: ItemPdfModel;
@@ -26,3 +28,8 @@ export interface ItemPdfModel {
2628
captured: boolean;
2729
type: PdfViewType;
2830
}
31+
32+
export interface ScoreGuideViewModel {
33+
interactionTypes: InteractionTypeModel[];
34+
subjects: SubjectModel[];
35+
}

src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,8 @@ export {
273273
ItemGroupModel,
274274
QuestionModel,
275275
ItemPdfModel,
276-
PdfViewType
276+
PdfViewType,
277+
ScoreGuideViewModel
277278
} from "./Pdf/PdfModels";
278279
export { QuestionView, QuestionViewProps } from "./Pdf/QuestionView";
279280

0 commit comments

Comments
 (0)