placementt-core 1.400.853 → 1.400.855

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.
@@ -502,6 +502,7 @@ export type UserData = {
502
502
  additionalNeeds?: string;
503
503
  demo?: boolean;
504
504
  workExperienceHours?: number;
505
+ trackAttendance?: boolean;
505
506
  };
506
507
  export type DataViewerFilterView = {
507
508
  title: string;
@@ -1203,6 +1204,7 @@ export type PlacementReviewDetails = {
1203
1204
  matches: [string, ProviderMatch][];
1204
1205
  };
1205
1206
  attended?: boolean | "requested";
1207
+ trackAttendance?: boolean;
1206
1208
  };
1207
1209
  export type ProviderMatch = {
1208
1210
  name: 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.853",
5
+ "version": "1.400.855",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -491,7 +491,8 @@ export type UserData = {
491
491
  scheduledEventsPerBenchmark?: {[benchmarkNumber: number]: number},
492
492
  additionalNeeds?: string,
493
493
  demo?: boolean,
494
- workExperienceHours?: number
494
+ workExperienceHours?: number,
495
+ trackAttendance?: boolean,
495
496
  };
496
497
 
497
498
  export type DataViewerFilterView = {
@@ -1167,6 +1168,7 @@ export type PlacementReviewDetails = {
1167
1168
  additionalNeeds?: string,
1168
1169
  providerMatch: {match?: boolean, matches: [string, ProviderMatch][]},
1169
1170
  attended?: boolean|"requested",
1171
+ trackAttendance?: boolean,
1170
1172
  }
1171
1173
 
1172
1174
  export type ProviderMatch = {