@brighterly/lib-core-types 0.22.0 → 0.23.1

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.
@@ -5,7 +5,6 @@ export declare enum ExperimentsCode {
5
5
  Exp68 = "exp-68_ics-download-btn",
6
6
  Exp79 = "exp-79-ela-ast-update",
7
7
  Exp85 = "exp-85_device-pick-buttons-change",
8
- Exp86 = "exp-86_lesson-info-and-duration",
9
8
  Exp88 = "exp-88_sales-tax-on-checkout",
10
9
  Exp90 = "exp-90_ai-summaries-for-new-paid-customers",
11
10
  Exp92 = "exp-92_cta-on-ast-result",
@@ -6,7 +6,6 @@ export var ExperimentsCode;
6
6
  ExperimentsCode["Exp68"] = "exp-68_ics-download-btn";
7
7
  ExperimentsCode["Exp79"] = "exp-79-ela-ast-update";
8
8
  ExperimentsCode["Exp85"] = "exp-85_device-pick-buttons-change";
9
- ExperimentsCode["Exp86"] = "exp-86_lesson-info-and-duration";
10
9
  ExperimentsCode["Exp88"] = "exp-88_sales-tax-on-checkout";
11
10
  ExperimentsCode["Exp90"] = "exp-90_ai-summaries-for-new-paid-customers";
12
11
  ExperimentsCode["Exp92"] = "exp-92_cta-on-ast-result";
@@ -7,7 +7,7 @@ export interface Experiments {
7
7
  [ExperimentsCode.Exp68]: ExperimentValue;
8
8
  [ExperimentsCode.Exp79]: ExperimentValue;
9
9
  [ExperimentsCode.Exp85]: ExperimentValue;
10
- [ExperimentsCode.Exp86]: ExperimentValue;
10
+ [ExperimentsCode.Exp88]: ExperimentValue;
11
11
  [ExperimentsCode.Exp90]: ExperimentValue;
12
12
  [ExperimentsCode.Exp92]: ExperimentValue;
13
13
  [ExperimentsCode.Exp105]: ExperimentValue;
@@ -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?: Standard[];
106
+ standards?: string[];
110
107
  rubrics?: string[];
111
108
  }
112
109
  export interface Screen {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brighterly/lib-core-types",
3
- "version": "0.22.0",
3
+ "version": "0.23.1",
4
4
  "description": "Official Brighterly lib-core-types",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",