@brighterly/lib-core-types 0.20.5 → 0.22.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.
@@ -91,7 +91,6 @@ export interface ScoredRubric extends Rubric {
91
91
  kind?: 'scored';
92
92
  levels: ScoredRubricLevel[];
93
93
  instructions?: string;
94
- standards?: string[];
95
94
  }
96
95
  export interface ObservationRubric {
97
96
  id: string;
@@ -102,11 +101,12 @@ export interface ObservationRubric {
102
101
  }
103
102
  export interface Activity {
104
103
  id: string;
104
+ name?: string;
105
105
  content: ContentBlock[];
106
106
  interaction?: Interaction;
107
107
  idkEnabled?: boolean;
108
108
  points?: number;
109
- standard?: Standard;
109
+ standards?: Standard[];
110
110
  rubrics?: string[];
111
111
  }
112
112
  export interface Screen {
@@ -121,6 +121,7 @@ export interface Assessment {
121
121
  id: string;
122
122
  schemaVersion: number;
123
123
  title: string;
124
+ description?: string;
124
125
  disciplineCode: DisciplineCode;
125
126
  grade: string;
126
127
  screens: Screen[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brighterly/lib-core-types",
3
- "version": "0.20.5",
3
+ "version": "0.22.0",
4
4
  "description": "Official Brighterly lib-core-types",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",