@magmamath/students-features 0.2.15 → 0.2.17

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,7 +6,7 @@ export type ChatAnswer = {
6
6
  export type GetAlternativesPayload = {
7
7
  municipalityId: string;
8
8
  assignmentClassGrade: number;
9
- } | void;
9
+ } | null;
10
10
  export type GetAlternativesResponse = {
11
11
  chatAccess?: boolean;
12
12
  options: {
@@ -6,7 +6,7 @@ export type ChatAnswer = {
6
6
  export type GetAlternativesPayload = {
7
7
  municipalityId: string;
8
8
  assignmentClassGrade: number;
9
- } | void;
9
+ } | null;
10
10
  export type GetAlternativesResponse = {
11
11
  chatAccess?: boolean;
12
12
  options: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magmamath/students-features",
3
- "version": "0.2.15",
3
+ "version": "0.2.17",
4
4
  "description": "Magmamath features library",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/commonjs/index.js",
@@ -7,7 +7,7 @@ export type ChatAnswer = {
7
7
  export type GetAlternativesPayload = {
8
8
  municipalityId: string
9
9
  assignmentClassGrade: number
10
- } | void
10
+ } | null
11
11
 
12
12
  export type GetAlternativesResponse = {
13
13
  chatAccess?: boolean