@speakableio/core 0.1.71 → 0.1.72
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 +3 -3
- package/dist/index.native.d.ts +3 -3
- package/dist/index.web.d.mts +3 -3
- package/dist/index.web.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.native.d.mts
CHANGED
|
@@ -465,7 +465,7 @@ interface PageScore {
|
|
|
465
465
|
correct?: number;
|
|
466
466
|
success?: boolean;
|
|
467
467
|
aiSuccess?: boolean;
|
|
468
|
-
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
|
|
468
|
+
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based' | null;
|
|
469
469
|
grammar_insights?: {
|
|
470
470
|
type?: string;
|
|
471
471
|
justification?: string;
|
|
@@ -503,7 +503,7 @@ interface PageScore {
|
|
|
503
503
|
score: number;
|
|
504
504
|
score_title: string;
|
|
505
505
|
title: string;
|
|
506
|
-
}[];
|
|
506
|
+
}[] | null;
|
|
507
507
|
scoring_type?: string;
|
|
508
508
|
history?: PageScore[];
|
|
509
509
|
media_area_opened?: boolean;
|
|
@@ -514,7 +514,7 @@ interface PageScore {
|
|
|
514
514
|
justification: string;
|
|
515
515
|
key_indicators?: string[];
|
|
516
516
|
};
|
|
517
|
-
status?: string;
|
|
517
|
+
status?: string | null;
|
|
518
518
|
transcriptError?: boolean;
|
|
519
519
|
feedbackError?: boolean;
|
|
520
520
|
feedback_language?: string | null;
|
package/dist/index.native.d.ts
CHANGED
|
@@ -465,7 +465,7 @@ interface PageScore {
|
|
|
465
465
|
correct?: number;
|
|
466
466
|
success?: boolean;
|
|
467
467
|
aiSuccess?: boolean;
|
|
468
|
-
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
|
|
468
|
+
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based' | null;
|
|
469
469
|
grammar_insights?: {
|
|
470
470
|
type?: string;
|
|
471
471
|
justification?: string;
|
|
@@ -503,7 +503,7 @@ interface PageScore {
|
|
|
503
503
|
score: number;
|
|
504
504
|
score_title: string;
|
|
505
505
|
title: string;
|
|
506
|
-
}[];
|
|
506
|
+
}[] | null;
|
|
507
507
|
scoring_type?: string;
|
|
508
508
|
history?: PageScore[];
|
|
509
509
|
media_area_opened?: boolean;
|
|
@@ -514,7 +514,7 @@ interface PageScore {
|
|
|
514
514
|
justification: string;
|
|
515
515
|
key_indicators?: string[];
|
|
516
516
|
};
|
|
517
|
-
status?: string;
|
|
517
|
+
status?: string | null;
|
|
518
518
|
transcriptError?: boolean;
|
|
519
519
|
feedbackError?: boolean;
|
|
520
520
|
feedback_language?: string | null;
|
package/dist/index.web.d.mts
CHANGED
|
@@ -465,7 +465,7 @@ interface PageScore {
|
|
|
465
465
|
correct?: number;
|
|
466
466
|
success?: boolean;
|
|
467
467
|
aiSuccess?: boolean;
|
|
468
|
-
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
|
|
468
|
+
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based' | null;
|
|
469
469
|
grammar_insights?: {
|
|
470
470
|
type?: string;
|
|
471
471
|
justification?: string;
|
|
@@ -503,7 +503,7 @@ interface PageScore {
|
|
|
503
503
|
score: number;
|
|
504
504
|
score_title: string;
|
|
505
505
|
title: string;
|
|
506
|
-
}[];
|
|
506
|
+
}[] | null;
|
|
507
507
|
scoring_type?: string;
|
|
508
508
|
history?: PageScore[];
|
|
509
509
|
media_area_opened?: boolean;
|
|
@@ -514,7 +514,7 @@ interface PageScore {
|
|
|
514
514
|
justification: string;
|
|
515
515
|
key_indicators?: string[];
|
|
516
516
|
};
|
|
517
|
-
status?: string;
|
|
517
|
+
status?: string | null;
|
|
518
518
|
transcriptError?: boolean;
|
|
519
519
|
feedbackError?: boolean;
|
|
520
520
|
feedback_language?: string | null;
|
package/dist/index.web.d.ts
CHANGED
|
@@ -465,7 +465,7 @@ interface PageScore {
|
|
|
465
465
|
correct?: number;
|
|
466
466
|
success?: boolean;
|
|
467
467
|
aiSuccess?: boolean;
|
|
468
|
-
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
|
|
468
|
+
grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based' | null;
|
|
469
469
|
grammar_insights?: {
|
|
470
470
|
type?: string;
|
|
471
471
|
justification?: string;
|
|
@@ -503,7 +503,7 @@ interface PageScore {
|
|
|
503
503
|
score: number;
|
|
504
504
|
score_title: string;
|
|
505
505
|
title: string;
|
|
506
|
-
}[];
|
|
506
|
+
}[] | null;
|
|
507
507
|
scoring_type?: string;
|
|
508
508
|
history?: PageScore[];
|
|
509
509
|
media_area_opened?: boolean;
|
|
@@ -514,7 +514,7 @@ interface PageScore {
|
|
|
514
514
|
justification: string;
|
|
515
515
|
key_indicators?: string[];
|
|
516
516
|
};
|
|
517
|
-
status?: string;
|
|
517
|
+
status?: string | null;
|
|
518
518
|
transcriptError?: boolean;
|
|
519
519
|
feedbackError?: boolean;
|
|
520
520
|
feedback_language?: string | null;
|