@brighterly/lib-core-types 0.5.2 → 0.5.4

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.
@@ -6,6 +6,7 @@ export interface Assessment {
6
6
  score: number;
7
7
  created_at: string;
8
8
  updated_at: string;
9
+ comprehension_check_up: boolean;
9
10
  show_url?: string;
10
11
  }
11
12
  export interface AssessmentStart {
@@ -34,16 +34,12 @@ export interface ProgressReport extends ProgressReportCard {
34
34
  statement_4?: string;
35
35
  };
36
36
  }
37
- export interface ProgressReportResponse {
38
- data: {
39
- data: ProgressReport[];
40
- next_cursor: string | null;
41
- next_page_url: string | null;
42
- path: string | null;
43
- per_page: number;
44
- prev_cursor: string | null;
45
- prev_page_url: string | null;
46
- };
47
- message: string;
48
- success: boolean;
37
+ export interface ProgressReportsResponse {
38
+ data: ProgressReport[];
39
+ next_cursor: string | null;
40
+ next_page_url: string | null;
41
+ path: string | null;
42
+ per_page: number;
43
+ prev_cursor: string | null;
44
+ prev_page_url: string | null;
49
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brighterly/lib-core-types",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "description": "Official Brighterly lib-core-types",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",