@brighterly/lib-core-types 0.21.0 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -70,10 +70,6 @@ export interface WhiteboardValue {
|
|
|
70
70
|
export interface AudioResponseValue {
|
|
71
71
|
asset: AssetRef;
|
|
72
72
|
}
|
|
73
|
-
export interface Standard {
|
|
74
|
-
code: string;
|
|
75
|
-
label: string;
|
|
76
|
-
}
|
|
77
73
|
export interface Rubric {
|
|
78
74
|
id: string;
|
|
79
75
|
name: string;
|
|
@@ -91,6 +87,7 @@ export interface ScoredRubric extends Rubric {
|
|
|
91
87
|
kind?: 'scored';
|
|
92
88
|
levels: ScoredRubricLevel[];
|
|
93
89
|
instructions?: string;
|
|
90
|
+
standards?: string[];
|
|
94
91
|
}
|
|
95
92
|
export interface ObservationRubric {
|
|
96
93
|
id: string;
|
|
@@ -101,11 +98,12 @@ export interface ObservationRubric {
|
|
|
101
98
|
}
|
|
102
99
|
export interface Activity {
|
|
103
100
|
id: string;
|
|
101
|
+
name?: string;
|
|
104
102
|
content: ContentBlock[];
|
|
105
103
|
interaction?: Interaction;
|
|
106
104
|
idkEnabled?: boolean;
|
|
107
105
|
points?: number;
|
|
108
|
-
standards?:
|
|
106
|
+
standards?: string[];
|
|
109
107
|
rubrics?: string[];
|
|
110
108
|
}
|
|
111
109
|
export interface Screen {
|
|
@@ -120,6 +118,7 @@ export interface Assessment {
|
|
|
120
118
|
id: string;
|
|
121
119
|
schemaVersion: number;
|
|
122
120
|
title: string;
|
|
121
|
+
description?: string;
|
|
123
122
|
disciplineCode: DisciplineCode;
|
|
124
123
|
grade: string;
|
|
125
124
|
screens: Screen[];
|