@speakableio/core 0.1.72 → 0.1.74

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.
@@ -147,6 +147,7 @@ interface PageActivity {
147
147
  standardId?: string;
148
148
  target_proficiency_level?: string;
149
149
  allowTTS?: boolean;
150
+ feedback_language?: string | null;
150
151
  }
151
152
  declare const enum ActivityPageType {
152
153
  READ_REPEAT = "READ_REPEAT",
@@ -263,6 +264,7 @@ declare function useCreateCards(): {
263
264
  standardId?: string;
264
265
  target_proficiency_level?: string;
265
266
  allowTTS?: boolean;
267
+ feedback_language?: string | null;
266
268
  }[], Error, {
267
269
  cards: PageActivity[];
268
270
  }, unknown>;
@@ -350,6 +352,7 @@ declare const createCardRepo: () => {
350
352
  standardId?: string;
351
353
  target_proficiency_level?: string;
352
354
  allowTTS?: boolean;
355
+ feedback_language?: string | null;
353
356
  }[]>;
354
357
  getCard: (params: {
355
358
  cardId: string;
@@ -517,7 +520,6 @@ interface PageScore {
517
520
  status?: string | null;
518
521
  transcriptError?: boolean;
519
522
  feedbackError?: boolean;
520
- feedback_language?: string | null;
521
523
  }
522
524
 
523
525
  declare const enum AssignmentAnalyticsType {
@@ -1080,6 +1082,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1080
1082
  standardId?: string;
1081
1083
  target_proficiency_level?: string;
1082
1084
  allowTTS?: boolean;
1085
+ feedback_language?: string | null;
1083
1086
  }[]>;
1084
1087
  getCard: (params: {
1085
1088
  cardId: string;
@@ -2737,6 +2740,7 @@ declare const createFsClientWeb: ({ db, httpsCallable, logEvent }: FsClientParam
2737
2740
  standardId?: string;
2738
2741
  target_proficiency_level?: string;
2739
2742
  allowTTS?: boolean;
2743
+ feedback_language?: string | null;
2740
2744
  }[]>;
2741
2745
  getCard: (params: {
2742
2746
  cardId: string;
@@ -147,6 +147,7 @@ interface PageActivity {
147
147
  standardId?: string;
148
148
  target_proficiency_level?: string;
149
149
  allowTTS?: boolean;
150
+ feedback_language?: string | null;
150
151
  }
151
152
  declare const enum ActivityPageType {
152
153
  READ_REPEAT = "READ_REPEAT",
@@ -263,6 +264,7 @@ declare function useCreateCards(): {
263
264
  standardId?: string;
264
265
  target_proficiency_level?: string;
265
266
  allowTTS?: boolean;
267
+ feedback_language?: string | null;
266
268
  }[], Error, {
267
269
  cards: PageActivity[];
268
270
  }, unknown>;
@@ -350,6 +352,7 @@ declare const createCardRepo: () => {
350
352
  standardId?: string;
351
353
  target_proficiency_level?: string;
352
354
  allowTTS?: boolean;
355
+ feedback_language?: string | null;
353
356
  }[]>;
354
357
  getCard: (params: {
355
358
  cardId: string;
@@ -517,7 +520,6 @@ interface PageScore {
517
520
  status?: string | null;
518
521
  transcriptError?: boolean;
519
522
  feedbackError?: boolean;
520
- feedback_language?: string | null;
521
523
  }
522
524
 
523
525
  declare const enum AssignmentAnalyticsType {
@@ -1080,6 +1082,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1080
1082
  standardId?: string;
1081
1083
  target_proficiency_level?: string;
1082
1084
  allowTTS?: boolean;
1085
+ feedback_language?: string | null;
1083
1086
  }[]>;
1084
1087
  getCard: (params: {
1085
1088
  cardId: string;
@@ -2737,6 +2740,7 @@ declare const createFsClientWeb: ({ db, httpsCallable, logEvent }: FsClientParam
2737
2740
  standardId?: string;
2738
2741
  target_proficiency_level?: string;
2739
2742
  allowTTS?: boolean;
2743
+ feedback_language?: string | null;
2740
2744
  }[]>;
2741
2745
  getCard: (params: {
2742
2746
  cardId: string;
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
  };