@brighterly/lib-core-types 0.22.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;
|
|
@@ -106,7 +103,7 @@ export interface Activity {
|
|
|
106
103
|
interaction?: Interaction;
|
|
107
104
|
idkEnabled?: boolean;
|
|
108
105
|
points?: number;
|
|
109
|
-
standards?:
|
|
106
|
+
standards?: string[];
|
|
110
107
|
rubrics?: string[];
|
|
111
108
|
}
|
|
112
109
|
export interface Screen {
|