@speakableio/core 0.1.71 → 0.1.73
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.
- package/dist/index.native.d.mts +8 -4
- package/dist/index.native.d.ts +8 -4
- package/dist/index.native.native.cjs.map +1 -1
- package/dist/index.native.native.mjs.map +1 -1
- package/dist/index.web.d.mts +8 -4
- package/dist/index.web.d.ts +8 -4
- package/dist/index.web.js.map +1 -1
- package/dist/index.web.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.native.d.mts
CHANGED
|
@@ -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;
|
|
@@ -465,7 +468,7 @@ interface PageScore {
|
|
|
465
468
|
correct?: number;
|
|
466
469
|
success?: boolean;
|
|
467
470
|
aiSuccess?: boolean;
|
|
468
|
-
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
|
|
471
|
+
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based' | null;
|
|
469
472
|
grammar_insights?: {
|
|
470
473
|
type?: string;
|
|
471
474
|
justification?: string;
|
|
@@ -503,7 +506,7 @@ interface PageScore {
|
|
|
503
506
|
score: number;
|
|
504
507
|
score_title: string;
|
|
505
508
|
title: string;
|
|
506
|
-
}[];
|
|
509
|
+
}[] | null;
|
|
507
510
|
scoring_type?: string;
|
|
508
511
|
history?: PageScore[];
|
|
509
512
|
media_area_opened?: boolean;
|
|
@@ -514,10 +517,9 @@ interface PageScore {
|
|
|
514
517
|
justification: string;
|
|
515
518
|
key_indicators?: string[];
|
|
516
519
|
};
|
|
517
|
-
status?: string;
|
|
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 createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
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.native.d.ts
CHANGED
|
@@ -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;
|
|
@@ -465,7 +468,7 @@ interface PageScore {
|
|
|
465
468
|
correct?: number;
|
|
466
469
|
success?: boolean;
|
|
467
470
|
aiSuccess?: boolean;
|
|
468
|
-
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
|
|
471
|
+
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based' | null;
|
|
469
472
|
grammar_insights?: {
|
|
470
473
|
type?: string;
|
|
471
474
|
justification?: string;
|
|
@@ -503,7 +506,7 @@ interface PageScore {
|
|
|
503
506
|
score: number;
|
|
504
507
|
score_title: string;
|
|
505
508
|
title: string;
|
|
506
|
-
}[];
|
|
509
|
+
}[] | null;
|
|
507
510
|
scoring_type?: string;
|
|
508
511
|
history?: PageScore[];
|
|
509
512
|
media_area_opened?: boolean;
|
|
@@ -514,10 +517,9 @@ interface PageScore {
|
|
|
514
517
|
justification: string;
|
|
515
518
|
key_indicators?: string[];
|
|
516
519
|
};
|
|
517
|
-
status?: string;
|
|
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 createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
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;
|