placementt-core 1.400.850 → 1.400.851

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.
@@ -188,7 +188,7 @@ export type StudentPlacementData = {
188
188
  };
189
189
  };
190
190
  completedForms?: Record<string, boolean>;
191
- attended?: boolean;
191
+ attended?: boolean | "requested";
192
192
  };
193
193
  export type PlacementQuestions = {
194
194
  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.850",
5
+ "version": "1.400.851",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -157,7 +157,7 @@ export type StudentPlacementData = {
157
157
  student: number[],
158
158
  }}
159
159
  completedForms?: Record<string, boolean>,
160
- attended?: boolean, // True if employer said they've attended. False if absent, undefined if not.
160
+ attended?: boolean|"requested", // True if employer said they've attended. False if absent, "requested" if request was sent.
161
161
  }
162
162
 
163
163
  export type PlacementQuestions = {