@speakableio/core 0.1.73 → 0.1.75

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.
@@ -520,6 +520,12 @@ interface PageScore {
520
520
  status?: string | null;
521
521
  transcriptError?: boolean;
522
522
  feedbackError?: boolean;
523
+ totalTrys?: {
524
+ selectedOption?: string;
525
+ markedCorrect?: boolean;
526
+ attemptedAt?: CustomTimestamp;
527
+ }[];
528
+ tryAgain?: boolean;
523
529
  }
524
530
 
525
531
  declare const enum AssignmentAnalyticsType {
@@ -520,6 +520,12 @@ interface PageScore {
520
520
  status?: string | null;
521
521
  transcriptError?: boolean;
522
522
  feedbackError?: boolean;
523
+ totalTrys?: {
524
+ selectedOption?: string;
525
+ markedCorrect?: boolean;
526
+ attemptedAt?: CustomTimestamp;
527
+ }[];
528
+ tryAgain?: boolean;
523
529
  }
524
530
 
525
531
  declare const enum AssignmentAnalyticsType {
package/dist/index.web.js CHANGED
@@ -947,6 +947,7 @@ var ANALYTICS_EVENT_TYPES = {
947
947
  CREATE_ASSIGNMENT: "create_assignment",
948
948
  MC_SUCCESS: "multiple_choice_success",
949
949
  MC_FAIL: "multiple_choice_fail",
950
+ MC_ERROR: "multiple_choice_error",
950
951
  ACTFL_LEVEL: "actfl_level",
951
952
  WIDA_LEVEL: "wida_level"
952
953
  };