placementt-core 1.300.239 → 1.300.240

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.
@@ -881,7 +881,7 @@ export type ArrowObject = {
881
881
  required?: boolean;
882
882
  screenX?: number;
883
883
  };
884
- export type CohortAnalytics = {
884
+ export type AggregatedFeedback = {
885
885
  students?: {
886
886
  [key: string /** key is formID_fieldID */]: {
887
887
  [key: string]: 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.300.239",
5
+ "version": "1.300.240",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -907,7 +907,7 @@ export type ArrowObject = {
907
907
  screenX?: number,
908
908
  }
909
909
 
910
- export type CohortAnalytics = { // Has same ID as cohort.
910
+ export type AggregatedFeedback = { // Has same ID as cohort or event.
911
911
  students?: {
912
912
  [key: string/** key is formID_fieldID */] : {[key: string]: string[]}|string[], /**key is: number for rating; string for dropdown value, number for number value, boolean for checkbox, dbstring for date; */
913
913
  completed: string[],