placementt-core 1.400.827 → 1.400.828

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.
@@ -148,6 +148,7 @@ export type StudentPlacementData = {
148
148
  student: number[];
149
149
  };
150
150
  };
151
+ completedForms?: Record<string, boolean>;
151
152
  };
152
153
  export type PlacementQuestions = {
153
154
  title: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.827",
5
+ "version": "1.400.828",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -131,6 +131,7 @@ export type StudentPlacementData = {
131
131
  provider: number[],
132
132
  student: number[],
133
133
  }}
134
+ completedForms?: Record<string, boolean>,
134
135
  }
135
136
 
136
137
  export type PlacementQuestions = {