placementt-core 1.400.854 → 1.400.856

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.
@@ -1065,6 +1065,7 @@ export type CohortData = {
1065
1065
  autoActivateNewUsers?: boolean;
1066
1066
  allowOverlappingDates?: boolean;
1067
1067
  notifyStaffOnEditChange?: boolean;
1068
+ trackAttendance?: boolean;
1068
1069
  };
1069
1070
  export type ArrowObject = {
1070
1071
  start: number | string;
@@ -1204,6 +1205,7 @@ export type PlacementReviewDetails = {
1204
1205
  matches: [string, ProviderMatch][];
1205
1206
  };
1206
1207
  attended?: boolean | "requested";
1208
+ trackAttendance?: boolean;
1207
1209
  };
1208
1210
  export type ProviderMatch = {
1209
1211
  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.854",
5
+ "version": "1.400.856",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1059,7 +1059,8 @@ export type CohortData = {
1059
1059
  },
1060
1060
  autoActivateNewUsers?: boolean,
1061
1061
  allowOverlappingDates?: boolean,
1062
- notifyStaffOnEditChange?: boolean
1062
+ notifyStaffOnEditChange?: boolean,
1063
+ trackAttendance?: boolean,
1063
1064
  }
1064
1065
 
1065
1066
  export type ArrowObject = {
@@ -1168,6 +1169,7 @@ export type PlacementReviewDetails = {
1168
1169
  additionalNeeds?: string,
1169
1170
  providerMatch: {match?: boolean, matches: [string, ProviderMatch][]},
1170
1171
  attended?: boolean|"requested",
1172
+ trackAttendance?: boolean,
1171
1173
  }
1172
1174
 
1173
1175
  export type ProviderMatch = {