@speakableio/core 0.1.92 → 0.1.94
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 +16 -0
- package/dist/index.native.d.ts +16 -0
- package/dist/index.web.d.mts +16 -0
- package/package.json +1 -1
package/dist/index.native.d.mts
CHANGED
|
@@ -539,6 +539,22 @@ interface PageScore {
|
|
|
539
539
|
tryAgain?: boolean;
|
|
540
540
|
updatedAt?: CustomTimestamp;
|
|
541
541
|
messageAttemptId?: string;
|
|
542
|
+
unmetCriteria?: {
|
|
543
|
+
criterion: string;
|
|
544
|
+
suggestion: string;
|
|
545
|
+
explanation: string;
|
|
546
|
+
}[];
|
|
547
|
+
meetsCriteria?: boolean;
|
|
548
|
+
actionableSteps?: string[];
|
|
549
|
+
rubric_results?: {
|
|
550
|
+
title: string;
|
|
551
|
+
score: number;
|
|
552
|
+
score_title: string;
|
|
553
|
+
justification: string;
|
|
554
|
+
maxPoints: number;
|
|
555
|
+
description: string;
|
|
556
|
+
}[];
|
|
557
|
+
target_proficiency_level?: string;
|
|
542
558
|
}
|
|
543
559
|
|
|
544
560
|
declare enum AssignmentAnalyticsType {
|
package/dist/index.native.d.ts
CHANGED
|
@@ -539,6 +539,22 @@ interface PageScore {
|
|
|
539
539
|
tryAgain?: boolean;
|
|
540
540
|
updatedAt?: CustomTimestamp;
|
|
541
541
|
messageAttemptId?: string;
|
|
542
|
+
unmetCriteria?: {
|
|
543
|
+
criterion: string;
|
|
544
|
+
suggestion: string;
|
|
545
|
+
explanation: string;
|
|
546
|
+
}[];
|
|
547
|
+
meetsCriteria?: boolean;
|
|
548
|
+
actionableSteps?: string[];
|
|
549
|
+
rubric_results?: {
|
|
550
|
+
title: string;
|
|
551
|
+
score: number;
|
|
552
|
+
score_title: string;
|
|
553
|
+
justification: string;
|
|
554
|
+
maxPoints: number;
|
|
555
|
+
description: string;
|
|
556
|
+
}[];
|
|
557
|
+
target_proficiency_level?: string;
|
|
542
558
|
}
|
|
543
559
|
|
|
544
560
|
declare enum AssignmentAnalyticsType {
|
package/dist/index.web.d.mts
CHANGED
|
@@ -539,6 +539,22 @@ interface PageScore {
|
|
|
539
539
|
tryAgain?: boolean;
|
|
540
540
|
updatedAt?: CustomTimestamp;
|
|
541
541
|
messageAttemptId?: string;
|
|
542
|
+
unmetCriteria?: {
|
|
543
|
+
criterion: string;
|
|
544
|
+
suggestion: string;
|
|
545
|
+
explanation: string;
|
|
546
|
+
}[];
|
|
547
|
+
meetsCriteria?: boolean;
|
|
548
|
+
actionableSteps?: string[];
|
|
549
|
+
rubric_results?: {
|
|
550
|
+
title: string;
|
|
551
|
+
score: number;
|
|
552
|
+
score_title: string;
|
|
553
|
+
justification: string;
|
|
554
|
+
maxPoints: number;
|
|
555
|
+
description: string;
|
|
556
|
+
}[];
|
|
557
|
+
target_proficiency_level?: string;
|
|
542
558
|
}
|
|
543
559
|
|
|
544
560
|
declare enum AssignmentAnalyticsType {
|