@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.
@@ -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;
@@ -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;
@@ -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;
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakableio/core",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Speakable-io/speakable-core.git"