placementt-core 1.400.863 → 1.400.865

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.
@@ -382,7 +382,7 @@ const instituteTasks = {
382
382
  if (cohorts?.trackAttendance === undefined && cohorts?.startPlacements && cohorts?.endPlacements && cohorts?.startPlacements <= twoWeeks && cohorts?.endPlacements >= today) {
383
383
  return { promptCohortAttendanceTracking: {
384
384
  dismissible: false,
385
- severity: "success",
385
+ severity: "primary",
386
386
  cohortId: cohorts.id,
387
387
  title: "Set up attendance monitoring for placements.",
388
388
  message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
@@ -395,7 +395,7 @@ const instituteTasks = {
395
395
  if (cohort?.trackAttendance === undefined && cohort?.startPlacements && cohort?.endPlacements && cohort?.startPlacements <= twoWeeks && cohort?.endPlacements >= today) {
396
396
  return {
397
397
  dismissible: false,
398
- severity: "success",
398
+ severity: "primary",
399
399
  cohortId: id,
400
400
  title: `Set up attendance monitoring for placements in ${cohort.name}.`,
401
401
  message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
@@ -1068,6 +1068,7 @@ export type CohortData = {
1068
1068
  trackAttendance?: boolean;
1069
1069
  attendanceReportingEmail?: string;
1070
1070
  targetHours?: number;
1071
+ manuallySendFeedback?: boolean;
1071
1072
  };
1072
1073
  export type ArrowObject = {
1073
1074
  start: number | 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.863",
5
+ "version": "1.400.865",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -450,7 +450,7 @@ const instituteTasks:InstituteTaskObject = {
450
450
  if (cohorts?.trackAttendance === undefined && cohorts?.startPlacements && cohorts?.endPlacements && cohorts?.startPlacements <= twoWeeks && cohorts?.endPlacements >= today) {
451
451
  return {promptCohortAttendanceTracking: {
452
452
  dismissible: false,
453
- severity: "success",
453
+ severity: "primary",
454
454
  cohortId: cohorts.id,
455
455
  title: "Set up attendance monitoring for placements.",
456
456
  message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
@@ -464,7 +464,7 @@ const instituteTasks:InstituteTaskObject = {
464
464
  if (cohort?.trackAttendance === undefined && cohort?.startPlacements && cohort?.endPlacements && cohort?.startPlacements <= twoWeeks && cohort?.endPlacements >= today) {
465
465
  return {
466
466
  dismissible: false,
467
- severity: "success",
467
+ severity: "primary",
468
468
  cohortId: id,
469
469
  title: `Set up attendance monitoring for placements in ${cohort.name}.`,
470
470
  message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
@@ -1063,6 +1063,7 @@ export type CohortData = {
1063
1063
  trackAttendance?: boolean,
1064
1064
  attendanceReportingEmail?: string // Optionally set email address
1065
1065
  targetHours?: number,
1066
+ manuallySendFeedback?: boolean,
1066
1067
  }
1067
1068
 
1068
1069
  export type ArrowObject = {