@plasius/learning 0.2.19 → 0.2.21
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/README.md +55 -0
- package/dist/index.cjs +333 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +209 -1
- package/dist/index.d.ts +209 -1
- package/dist/index.js +310 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -429,6 +429,214 @@ declare const JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1: LearningPathVersionV1;
|
|
|
429
429
|
/** Current pilot catalog for server adapters that intentionally follow releases. */
|
|
430
430
|
declare const JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT: LearningPathVersionV1;
|
|
431
431
|
|
|
432
|
+
/** Additive contract version for touch-first and spoken contextual help. */
|
|
433
|
+
declare const CONTEXTUAL_HELP_CONTRACT_VERSION_V1: "1.0.0";
|
|
434
|
+
declare const CONTEXTUAL_HELP_KINDS_V1: readonly ["command", "visual-block", "generated-code", "assessment-diagnostic"];
|
|
435
|
+
type ContextualHelpKindV1 = (typeof CONTEXTUAL_HELP_KINDS_V1)[number];
|
|
436
|
+
/**
|
|
437
|
+
* Opaque, manifest-bound identifier. It contains no source, transcript,
|
|
438
|
+
* learner identity or arbitrary synthesis text.
|
|
439
|
+
*/
|
|
440
|
+
interface ContextualHelpIdentifierV1 {
|
|
441
|
+
readonly schemaVersion: "1";
|
|
442
|
+
readonly contractVersion: typeof CONTEXTUAL_HELP_CONTRACT_VERSION_V1;
|
|
443
|
+
readonly kind: ContextualHelpKindV1;
|
|
444
|
+
readonly moduleId: string;
|
|
445
|
+
readonly moduleVersion: string;
|
|
446
|
+
readonly manifestVersion: string;
|
|
447
|
+
readonly helpId: string;
|
|
448
|
+
}
|
|
449
|
+
type GuardianVoiceConsentStateV1 = "granted" | "withdrawn";
|
|
450
|
+
type GuardianVoiceProcessingRouteV1 = "private-edge-only";
|
|
451
|
+
/** Voice consent is deliberately separate from general AI consent. */
|
|
452
|
+
interface GuardianVoiceConsentV1 {
|
|
453
|
+
readonly schemaVersion: "1";
|
|
454
|
+
readonly actorAccountId: string;
|
|
455
|
+
readonly subjectAccountId: string;
|
|
456
|
+
readonly policyVersion: string;
|
|
457
|
+
readonly state: GuardianVoiceConsentStateV1;
|
|
458
|
+
readonly permittedProcessingRoute: GuardianVoiceProcessingRouteV1;
|
|
459
|
+
readonly recordedAt: string;
|
|
460
|
+
}
|
|
461
|
+
type VoiceHelpAvailabilityReasonV1 = "available" | "module-access-required" | "guardian-consent-required" | "guardian-consent-withdrawn" | "age-or-safeguarding-gate" | "capability-disabled" | "rollout-disabled" | "private-edge-unavailable";
|
|
462
|
+
/** Read-aloud and microphone availability are evaluated independently. */
|
|
463
|
+
interface VoiceHelpAvailabilityV1 {
|
|
464
|
+
readonly schemaVersion: "1";
|
|
465
|
+
readonly readAloudAvailable: boolean;
|
|
466
|
+
readonly microphoneAvailable: boolean;
|
|
467
|
+
readonly microphoneReason: VoiceHelpAvailabilityReasonV1;
|
|
468
|
+
readonly questionProcessingRoute: GuardianVoiceProcessingRouteV1;
|
|
469
|
+
readonly guardianVoiceConsentRequired: true;
|
|
470
|
+
readonly maximumRecordingDurationMs: 10_000;
|
|
471
|
+
readonly maximumAudioBytes: 2_097_152;
|
|
472
|
+
readonly rawAudioRetention: "request-memory-only";
|
|
473
|
+
readonly transcriptRetention: "request-memory-only";
|
|
474
|
+
}
|
|
475
|
+
/** Metadata accepted beside an authenticated multipart audio upload. */
|
|
476
|
+
interface ContextualVoiceQuestionMetadataV1 {
|
|
477
|
+
readonly schemaVersion: "1";
|
|
478
|
+
readonly help: ContextualHelpIdentifierV1;
|
|
479
|
+
readonly locale: string;
|
|
480
|
+
readonly mediaType: string;
|
|
481
|
+
readonly durationMs: number;
|
|
482
|
+
readonly audioBytes: number;
|
|
483
|
+
readonly assessmentEvidenceId?: string;
|
|
484
|
+
}
|
|
485
|
+
declare const CONTEXTUAL_VOICE_INTENTS_V1: readonly ["describe-command", "describe-inputs", "show-example", "explain-assessment-failure", "suggest-next-experiment", "repeat", "stop", "unresolved"];
|
|
486
|
+
type ContextualVoiceIntentV1 = (typeof CONTEXTUAL_VOICE_INTENTS_V1)[number];
|
|
487
|
+
type ContextualVoiceSuggestedActionV1 = "open-help" | "insert-example" | "show-inputs" | "show-assessment-evidence" | "try-next-experiment" | "repeat" | "stop" | "type-question";
|
|
488
|
+
declare const CONTEXTUAL_VOICE_SUGGESTED_ACTIONS_V1: readonly ["open-help", "insert-example", "show-inputs", "show-assessment-evidence", "try-next-experiment", "repeat", "stop", "type-question"];
|
|
489
|
+
interface ContextualVoiceAnswerV1 {
|
|
490
|
+
readonly helpId: string;
|
|
491
|
+
readonly source: "module-documentation" | "assessment-evidence" | "authored-fallback";
|
|
492
|
+
/** Server-resolved visible answer; never a model-authored open response. */
|
|
493
|
+
readonly text: string;
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* The transcript is returned only so the learner can verify recognition. The
|
|
497
|
+
* request boundary must use no-store and discard it after the current view.
|
|
498
|
+
*/
|
|
499
|
+
interface ContextualVoiceQuestionResultV1 {
|
|
500
|
+
readonly schemaVersion: "1";
|
|
501
|
+
readonly help: ContextualHelpIdentifierV1;
|
|
502
|
+
readonly intent: ContextualVoiceIntentV1;
|
|
503
|
+
readonly status: "resolved" | "suggestions" | "stopped";
|
|
504
|
+
readonly transientTranscript: string;
|
|
505
|
+
readonly transcriptRetention: "request-memory-only";
|
|
506
|
+
readonly answer?: ContextualVoiceAnswerV1;
|
|
507
|
+
readonly suggestedActions: ContextualVoiceSuggestedActionV1[];
|
|
508
|
+
readonly mayAssignScore: false;
|
|
509
|
+
readonly mayAwardReward: false;
|
|
510
|
+
readonly mayPublish: false;
|
|
511
|
+
readonly mayControlHardware: false;
|
|
512
|
+
}
|
|
513
|
+
/** Canonical audio lookup metadata. Authoritative speech text stays server-side. */
|
|
514
|
+
interface CanonicalSpokenHelpDescriptorV1 {
|
|
515
|
+
readonly schemaVersion: "1";
|
|
516
|
+
readonly help: ContextualHelpIdentifierV1;
|
|
517
|
+
readonly canonicalTextId: string;
|
|
518
|
+
readonly authoritativeTextDigest: `sha256:${string}`;
|
|
519
|
+
readonly locale: string;
|
|
520
|
+
readonly voiceProfile: string;
|
|
521
|
+
readonly pronunciationVersion: string;
|
|
522
|
+
readonly utteranceClass: "system-generic";
|
|
523
|
+
readonly sharingScope: "global";
|
|
524
|
+
readonly reuse: "exact-only";
|
|
525
|
+
readonly containsPersonalData: false;
|
|
526
|
+
readonly containsLearnerContent: false;
|
|
527
|
+
}
|
|
528
|
+
declare function assertValidContextualHelpIdentifier(value: ContextualHelpIdentifierV1): void;
|
|
529
|
+
declare function assertValidGuardianVoiceConsent(value: GuardianVoiceConsentV1): void;
|
|
530
|
+
declare function assertValidContextualVoiceQuestionMetadata(value: ContextualVoiceQuestionMetadataV1): void;
|
|
531
|
+
declare function assertValidVoiceHelpAvailability(value: VoiceHelpAvailabilityV1): void;
|
|
532
|
+
declare function assertValidCanonicalSpokenHelpDescriptor(value: CanonicalSpokenHelpDescriptorV1): void;
|
|
533
|
+
declare function assertValidContextualVoiceQuestionResult(value: ContextualVoiceQuestionResultV1): void;
|
|
534
|
+
|
|
535
|
+
/** Versioned, infrastructure-neutral contracts for Guardian-approved static projects. */
|
|
536
|
+
declare const STATIC_PROJECT_PUBLISHING_CONTRACT_VERSION_V1: "1.0.0";
|
|
537
|
+
declare const STATIC_PROJECT_SCANNER_VERSION_V1: "junior-coder-static-scan-v1";
|
|
538
|
+
declare const STATIC_PROJECT_APPROVAL_STATEMENT_VERSION_V1: "guardian-static-publication-v1";
|
|
539
|
+
declare const STATIC_PROJECT_DEFAULT_LIFETIME_DAYS_V1: 90;
|
|
540
|
+
declare const STATIC_PROJECT_MAX_SOURCE_CHARACTERS_V1: 8000;
|
|
541
|
+
declare const STATIC_PROJECT_SAFETY_CHECK_IDS_V1: readonly ["allow-listed-source", "no-personal-details", "no-external-network", "no-executable-markup", "no-transmitting-forms", "no-uploads-or-embeds", "no-trackers-or-advertising", "no-account-identifiers"];
|
|
542
|
+
type StaticProjectSafetyCheckIdV1 = (typeof STATIC_PROJECT_SAFETY_CHECK_IDS_V1)[number];
|
|
543
|
+
type StaticProjectModuleSlugV1 = "adventure-mission-planner" | "creature-care-dashboard" | "robot-mission-control";
|
|
544
|
+
interface StaticProjectSafetyCheckV1 {
|
|
545
|
+
id: StaticProjectSafetyCheckIdV1;
|
|
546
|
+
passed: true;
|
|
547
|
+
}
|
|
548
|
+
/** Evidence emitted by the deterministic scanner before adult review. */
|
|
549
|
+
interface StaticProjectSafetyScanV1 {
|
|
550
|
+
schemaVersion: "1";
|
|
551
|
+
scannerVersion: typeof STATIC_PROJECT_SCANNER_VERSION_V1;
|
|
552
|
+
passed: true;
|
|
553
|
+
checks: StaticProjectSafetyCheckV1[];
|
|
554
|
+
}
|
|
555
|
+
interface AdventureMissionPlannerSafeRenderV1 {
|
|
556
|
+
kind: "adventure-mission-planner";
|
|
557
|
+
heading: "Moonbase Missions" | "Forest Rescue Plans" | "Ocean Quest Board";
|
|
558
|
+
missions: {
|
|
559
|
+
title: "Find the moon crystal" | "Guide the lost firefly" | "Map the coral garden";
|
|
560
|
+
day: "Saturday" | "Sunday" | "School holiday";
|
|
561
|
+
}[];
|
|
562
|
+
validationMessage: "Choose a day" | "Add a mission title" | "Mission ready!";
|
|
563
|
+
savedAcrossRestart: true;
|
|
564
|
+
accessibleSummaryEnabled: true;
|
|
565
|
+
}
|
|
566
|
+
interface CreatureCareDashboardSafeRenderV1 {
|
|
567
|
+
kind: "creature-care-dashboard";
|
|
568
|
+
creature: "Moon Moth" | "Cloud Cat" | "Pebble Dragon";
|
|
569
|
+
status: "Resting" | "Ready to play" | "Snack time";
|
|
570
|
+
timerSeconds: 5 | 10 | 15;
|
|
571
|
+
layout: "single" | "cosy-grid" | "wide-grid";
|
|
572
|
+
reducedMotion: true;
|
|
573
|
+
}
|
|
574
|
+
interface RobotMissionControlSafeRenderV1 {
|
|
575
|
+
kind: "robot-mission-control";
|
|
576
|
+
command: "scan" | "hold-position" | "return-to-base";
|
|
577
|
+
safetyConfirmed: true;
|
|
578
|
+
telemetryRate: 1 | 2 | 4;
|
|
579
|
+
chartMode: "line" | "bars" | "text-only";
|
|
580
|
+
serialSimulation: true;
|
|
581
|
+
state: "SCANNING" | "HOLDING" | "RETURNING";
|
|
582
|
+
}
|
|
583
|
+
/** The complete public render allow-list. Learner source is never a render model. */
|
|
584
|
+
type StaticProjectSafeRenderV1 = AdventureMissionPlannerSafeRenderV1 | CreatureCareDashboardSafeRenderV1 | RobotMissionControlSafeRenderV1;
|
|
585
|
+
/** Immutable private snapshot awaiting an adult's exact-hash approval. */
|
|
586
|
+
interface StaticProjectSnapshotV1 {
|
|
587
|
+
schemaVersion: "1";
|
|
588
|
+
contractVersion: typeof STATIC_PROJECT_PUBLISHING_CONTRACT_VERSION_V1;
|
|
589
|
+
snapshotId: string;
|
|
590
|
+
subjectAccountId: string;
|
|
591
|
+
moduleId: string;
|
|
592
|
+
moduleSlug: StaticProjectModuleSlugV1;
|
|
593
|
+
moduleVersion: string;
|
|
594
|
+
missionId: string;
|
|
595
|
+
sourceDigest: string;
|
|
596
|
+
snapshotDigest: string;
|
|
597
|
+
sourceCharacterCount: number;
|
|
598
|
+
assessmentScore: number;
|
|
599
|
+
mandatorySafetyPassed: true;
|
|
600
|
+
scan: StaticProjectSafetyScanV1;
|
|
601
|
+
renderModel: StaticProjectSafeRenderV1;
|
|
602
|
+
state: "pending-review";
|
|
603
|
+
createdAt: string;
|
|
604
|
+
}
|
|
605
|
+
/** Adult approval is evidence only and cannot mutate the reviewed snapshot. */
|
|
606
|
+
interface StaticProjectGuardianApprovalV1 {
|
|
607
|
+
schemaVersion: "1";
|
|
608
|
+
approvalId: string;
|
|
609
|
+
snapshotId: string;
|
|
610
|
+
snapshotDigest: string;
|
|
611
|
+
guardianActorAccountId: string;
|
|
612
|
+
statementVersion: typeof STATIC_PROJECT_APPROVAL_STATEMENT_VERSION_V1;
|
|
613
|
+
approvedAt: string;
|
|
614
|
+
}
|
|
615
|
+
/** An unlisted public pointer whose lifecycle never changes the source snapshot. */
|
|
616
|
+
interface StaticProjectPublicationV1 {
|
|
617
|
+
schemaVersion: "1";
|
|
618
|
+
publicationId: string;
|
|
619
|
+
snapshotId: string;
|
|
620
|
+
snapshotDigest: string;
|
|
621
|
+
approvalId: string;
|
|
622
|
+
randomSlug: string;
|
|
623
|
+
publicUrl: string;
|
|
624
|
+
state: "published" | "expired" | "unpublished";
|
|
625
|
+
publishedAt: string;
|
|
626
|
+
expiresAt: string;
|
|
627
|
+
renewedAt?: string;
|
|
628
|
+
unpublishedAt?: string;
|
|
629
|
+
}
|
|
630
|
+
type StaticProjectContractIssueV1 = "invalid-schema-version" | "invalid-contract-version" | "invalid-identifier" | "invalid-module" | "invalid-version" | "invalid-source-digest" | "invalid-snapshot-digest" | "invalid-source-size" | "assessment-score-incomplete" | "mandatory-safety-missing" | "scan-not-passed" | "scan-checks-incomplete" | "module-render-model-mismatch" | "unsafe-render-model" | "invalid-created-at" | "invalid-approval-statement" | "invalid-approved-at" | "invalid-random-slug" | "invalid-public-url" | "public-url-slug-mismatch" | "published-state-required" | "invalid-published-at" | "invalid-publication-expiry" | "invalid-lifecycle-timestamp";
|
|
631
|
+
/** Validate a snapshot without throwing so authoring and adapters can show every issue. */
|
|
632
|
+
declare function validateStaticProjectSnapshot(value: StaticProjectSnapshotV1): StaticProjectContractIssueV1[];
|
|
633
|
+
/** Fail closed when a persistence or publishing adapter constructs an invalid snapshot. */
|
|
634
|
+
declare function assertValidStaticProjectSnapshot(value: StaticProjectSnapshotV1): void;
|
|
635
|
+
declare function validateStaticProjectGuardianApproval(value: StaticProjectGuardianApprovalV1): StaticProjectContractIssueV1[];
|
|
636
|
+
declare function assertValidStaticProjectGuardianApproval(value: StaticProjectGuardianApprovalV1): void;
|
|
637
|
+
declare function validateStaticProjectPublication(value: StaticProjectPublicationV1): StaticProjectContractIssueV1[];
|
|
638
|
+
declare function assertValidStaticProjectPublication(value: StaticProjectPublicationV1): void;
|
|
639
|
+
|
|
432
640
|
/** Validate the deterministic 20/50/20/10 assessment authority. */
|
|
433
641
|
declare function validateAssessmentRubric(rubric: AssessmentRubricV1, path?: string, moduleId?: string): LearningValidationIssueV1[];
|
|
434
642
|
|
|
@@ -525,4 +733,4 @@ declare function validateLearningPath(path: LearningPathVersionV1): LearningVali
|
|
|
525
733
|
/** Fail fast when a path is not safe to publish or consume. */
|
|
526
734
|
declare function assertValidLearningPath(path: LearningPathVersionV1): void;
|
|
527
735
|
|
|
528
|
-
export { ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1, type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, CREATURE_CARE_DASHBOARD_MISSION_ONE_AUTHORING_V1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, ROBOT_MISSION_CONTROL_MISSION_ONE_AUTHORING_V1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
|
736
|
+
export { ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1, type AdventureMissionPlannerSafeRenderV1, type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, CONTEXTUAL_HELP_CONTRACT_VERSION_V1, CONTEXTUAL_HELP_KINDS_V1, CONTEXTUAL_VOICE_INTENTS_V1, CONTEXTUAL_VOICE_SUGGESTED_ACTIONS_V1, CREATURE_CARE_DASHBOARD_MISSION_ONE_AUTHORING_V1, type CanonicalSpokenHelpDescriptorV1, type CommercialStateV1, type ContextualHelpIdentifierV1, type ContextualHelpKindV1, type ContextualVoiceAnswerV1, type ContextualVoiceIntentV1, type ContextualVoiceQuestionMetadataV1, type ContextualVoiceQuestionResultV1, type ContextualVoiceSuggestedActionV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, type CreatureCareDashboardSafeRenderV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type GuardianVoiceConsentStateV1, type GuardianVoiceConsentV1, type GuardianVoiceProcessingRouteV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, ROBOT_MISSION_CONTROL_MISSION_ONE_AUTHORING_V1, type RobotMissionControlSafeRenderV1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, STATIC_PROJECT_APPROVAL_STATEMENT_VERSION_V1, STATIC_PROJECT_DEFAULT_LIFETIME_DAYS_V1, STATIC_PROJECT_MAX_SOURCE_CHARACTERS_V1, STATIC_PROJECT_PUBLISHING_CONTRACT_VERSION_V1, STATIC_PROJECT_SAFETY_CHECK_IDS_V1, STATIC_PROJECT_SCANNER_VERSION_V1, type ScoreBandV1, type StaticProjectContractIssueV1, type StaticProjectGuardianApprovalV1, type StaticProjectModuleSlugV1, type StaticProjectPublicationV1, type StaticProjectSafeRenderV1, type StaticProjectSafetyCheckIdV1, type StaticProjectSafetyCheckV1, type StaticProjectSafetyScanV1, type StaticProjectSnapshotV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1, type VoiceHelpAvailabilityReasonV1, type VoiceHelpAvailabilityV1, assertValidCanonicalSpokenHelpDescriptor, assertValidContextualHelpIdentifier, assertValidContextualVoiceQuestionMetadata, assertValidContextualVoiceQuestionResult, assertValidGuardianVoiceConsent, assertValidLearningPath, assertValidMissionAuthoringBundle, assertValidStaticProjectGuardianApproval, assertValidStaticProjectPublication, assertValidStaticProjectSnapshot, assertValidVoiceHelpAvailability, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle, validateStaticProjectGuardianApproval, validateStaticProjectPublication, validateStaticProjectSnapshot };
|
package/dist/index.d.ts
CHANGED
|
@@ -429,6 +429,214 @@ declare const JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1: LearningPathVersionV1;
|
|
|
429
429
|
/** Current pilot catalog for server adapters that intentionally follow releases. */
|
|
430
430
|
declare const JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT: LearningPathVersionV1;
|
|
431
431
|
|
|
432
|
+
/** Additive contract version for touch-first and spoken contextual help. */
|
|
433
|
+
declare const CONTEXTUAL_HELP_CONTRACT_VERSION_V1: "1.0.0";
|
|
434
|
+
declare const CONTEXTUAL_HELP_KINDS_V1: readonly ["command", "visual-block", "generated-code", "assessment-diagnostic"];
|
|
435
|
+
type ContextualHelpKindV1 = (typeof CONTEXTUAL_HELP_KINDS_V1)[number];
|
|
436
|
+
/**
|
|
437
|
+
* Opaque, manifest-bound identifier. It contains no source, transcript,
|
|
438
|
+
* learner identity or arbitrary synthesis text.
|
|
439
|
+
*/
|
|
440
|
+
interface ContextualHelpIdentifierV1 {
|
|
441
|
+
readonly schemaVersion: "1";
|
|
442
|
+
readonly contractVersion: typeof CONTEXTUAL_HELP_CONTRACT_VERSION_V1;
|
|
443
|
+
readonly kind: ContextualHelpKindV1;
|
|
444
|
+
readonly moduleId: string;
|
|
445
|
+
readonly moduleVersion: string;
|
|
446
|
+
readonly manifestVersion: string;
|
|
447
|
+
readonly helpId: string;
|
|
448
|
+
}
|
|
449
|
+
type GuardianVoiceConsentStateV1 = "granted" | "withdrawn";
|
|
450
|
+
type GuardianVoiceProcessingRouteV1 = "private-edge-only";
|
|
451
|
+
/** Voice consent is deliberately separate from general AI consent. */
|
|
452
|
+
interface GuardianVoiceConsentV1 {
|
|
453
|
+
readonly schemaVersion: "1";
|
|
454
|
+
readonly actorAccountId: string;
|
|
455
|
+
readonly subjectAccountId: string;
|
|
456
|
+
readonly policyVersion: string;
|
|
457
|
+
readonly state: GuardianVoiceConsentStateV1;
|
|
458
|
+
readonly permittedProcessingRoute: GuardianVoiceProcessingRouteV1;
|
|
459
|
+
readonly recordedAt: string;
|
|
460
|
+
}
|
|
461
|
+
type VoiceHelpAvailabilityReasonV1 = "available" | "module-access-required" | "guardian-consent-required" | "guardian-consent-withdrawn" | "age-or-safeguarding-gate" | "capability-disabled" | "rollout-disabled" | "private-edge-unavailable";
|
|
462
|
+
/** Read-aloud and microphone availability are evaluated independently. */
|
|
463
|
+
interface VoiceHelpAvailabilityV1 {
|
|
464
|
+
readonly schemaVersion: "1";
|
|
465
|
+
readonly readAloudAvailable: boolean;
|
|
466
|
+
readonly microphoneAvailable: boolean;
|
|
467
|
+
readonly microphoneReason: VoiceHelpAvailabilityReasonV1;
|
|
468
|
+
readonly questionProcessingRoute: GuardianVoiceProcessingRouteV1;
|
|
469
|
+
readonly guardianVoiceConsentRequired: true;
|
|
470
|
+
readonly maximumRecordingDurationMs: 10_000;
|
|
471
|
+
readonly maximumAudioBytes: 2_097_152;
|
|
472
|
+
readonly rawAudioRetention: "request-memory-only";
|
|
473
|
+
readonly transcriptRetention: "request-memory-only";
|
|
474
|
+
}
|
|
475
|
+
/** Metadata accepted beside an authenticated multipart audio upload. */
|
|
476
|
+
interface ContextualVoiceQuestionMetadataV1 {
|
|
477
|
+
readonly schemaVersion: "1";
|
|
478
|
+
readonly help: ContextualHelpIdentifierV1;
|
|
479
|
+
readonly locale: string;
|
|
480
|
+
readonly mediaType: string;
|
|
481
|
+
readonly durationMs: number;
|
|
482
|
+
readonly audioBytes: number;
|
|
483
|
+
readonly assessmentEvidenceId?: string;
|
|
484
|
+
}
|
|
485
|
+
declare const CONTEXTUAL_VOICE_INTENTS_V1: readonly ["describe-command", "describe-inputs", "show-example", "explain-assessment-failure", "suggest-next-experiment", "repeat", "stop", "unresolved"];
|
|
486
|
+
type ContextualVoiceIntentV1 = (typeof CONTEXTUAL_VOICE_INTENTS_V1)[number];
|
|
487
|
+
type ContextualVoiceSuggestedActionV1 = "open-help" | "insert-example" | "show-inputs" | "show-assessment-evidence" | "try-next-experiment" | "repeat" | "stop" | "type-question";
|
|
488
|
+
declare const CONTEXTUAL_VOICE_SUGGESTED_ACTIONS_V1: readonly ["open-help", "insert-example", "show-inputs", "show-assessment-evidence", "try-next-experiment", "repeat", "stop", "type-question"];
|
|
489
|
+
interface ContextualVoiceAnswerV1 {
|
|
490
|
+
readonly helpId: string;
|
|
491
|
+
readonly source: "module-documentation" | "assessment-evidence" | "authored-fallback";
|
|
492
|
+
/** Server-resolved visible answer; never a model-authored open response. */
|
|
493
|
+
readonly text: string;
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* The transcript is returned only so the learner can verify recognition. The
|
|
497
|
+
* request boundary must use no-store and discard it after the current view.
|
|
498
|
+
*/
|
|
499
|
+
interface ContextualVoiceQuestionResultV1 {
|
|
500
|
+
readonly schemaVersion: "1";
|
|
501
|
+
readonly help: ContextualHelpIdentifierV1;
|
|
502
|
+
readonly intent: ContextualVoiceIntentV1;
|
|
503
|
+
readonly status: "resolved" | "suggestions" | "stopped";
|
|
504
|
+
readonly transientTranscript: string;
|
|
505
|
+
readonly transcriptRetention: "request-memory-only";
|
|
506
|
+
readonly answer?: ContextualVoiceAnswerV1;
|
|
507
|
+
readonly suggestedActions: ContextualVoiceSuggestedActionV1[];
|
|
508
|
+
readonly mayAssignScore: false;
|
|
509
|
+
readonly mayAwardReward: false;
|
|
510
|
+
readonly mayPublish: false;
|
|
511
|
+
readonly mayControlHardware: false;
|
|
512
|
+
}
|
|
513
|
+
/** Canonical audio lookup metadata. Authoritative speech text stays server-side. */
|
|
514
|
+
interface CanonicalSpokenHelpDescriptorV1 {
|
|
515
|
+
readonly schemaVersion: "1";
|
|
516
|
+
readonly help: ContextualHelpIdentifierV1;
|
|
517
|
+
readonly canonicalTextId: string;
|
|
518
|
+
readonly authoritativeTextDigest: `sha256:${string}`;
|
|
519
|
+
readonly locale: string;
|
|
520
|
+
readonly voiceProfile: string;
|
|
521
|
+
readonly pronunciationVersion: string;
|
|
522
|
+
readonly utteranceClass: "system-generic";
|
|
523
|
+
readonly sharingScope: "global";
|
|
524
|
+
readonly reuse: "exact-only";
|
|
525
|
+
readonly containsPersonalData: false;
|
|
526
|
+
readonly containsLearnerContent: false;
|
|
527
|
+
}
|
|
528
|
+
declare function assertValidContextualHelpIdentifier(value: ContextualHelpIdentifierV1): void;
|
|
529
|
+
declare function assertValidGuardianVoiceConsent(value: GuardianVoiceConsentV1): void;
|
|
530
|
+
declare function assertValidContextualVoiceQuestionMetadata(value: ContextualVoiceQuestionMetadataV1): void;
|
|
531
|
+
declare function assertValidVoiceHelpAvailability(value: VoiceHelpAvailabilityV1): void;
|
|
532
|
+
declare function assertValidCanonicalSpokenHelpDescriptor(value: CanonicalSpokenHelpDescriptorV1): void;
|
|
533
|
+
declare function assertValidContextualVoiceQuestionResult(value: ContextualVoiceQuestionResultV1): void;
|
|
534
|
+
|
|
535
|
+
/** Versioned, infrastructure-neutral contracts for Guardian-approved static projects. */
|
|
536
|
+
declare const STATIC_PROJECT_PUBLISHING_CONTRACT_VERSION_V1: "1.0.0";
|
|
537
|
+
declare const STATIC_PROJECT_SCANNER_VERSION_V1: "junior-coder-static-scan-v1";
|
|
538
|
+
declare const STATIC_PROJECT_APPROVAL_STATEMENT_VERSION_V1: "guardian-static-publication-v1";
|
|
539
|
+
declare const STATIC_PROJECT_DEFAULT_LIFETIME_DAYS_V1: 90;
|
|
540
|
+
declare const STATIC_PROJECT_MAX_SOURCE_CHARACTERS_V1: 8000;
|
|
541
|
+
declare const STATIC_PROJECT_SAFETY_CHECK_IDS_V1: readonly ["allow-listed-source", "no-personal-details", "no-external-network", "no-executable-markup", "no-transmitting-forms", "no-uploads-or-embeds", "no-trackers-or-advertising", "no-account-identifiers"];
|
|
542
|
+
type StaticProjectSafetyCheckIdV1 = (typeof STATIC_PROJECT_SAFETY_CHECK_IDS_V1)[number];
|
|
543
|
+
type StaticProjectModuleSlugV1 = "adventure-mission-planner" | "creature-care-dashboard" | "robot-mission-control";
|
|
544
|
+
interface StaticProjectSafetyCheckV1 {
|
|
545
|
+
id: StaticProjectSafetyCheckIdV1;
|
|
546
|
+
passed: true;
|
|
547
|
+
}
|
|
548
|
+
/** Evidence emitted by the deterministic scanner before adult review. */
|
|
549
|
+
interface StaticProjectSafetyScanV1 {
|
|
550
|
+
schemaVersion: "1";
|
|
551
|
+
scannerVersion: typeof STATIC_PROJECT_SCANNER_VERSION_V1;
|
|
552
|
+
passed: true;
|
|
553
|
+
checks: StaticProjectSafetyCheckV1[];
|
|
554
|
+
}
|
|
555
|
+
interface AdventureMissionPlannerSafeRenderV1 {
|
|
556
|
+
kind: "adventure-mission-planner";
|
|
557
|
+
heading: "Moonbase Missions" | "Forest Rescue Plans" | "Ocean Quest Board";
|
|
558
|
+
missions: {
|
|
559
|
+
title: "Find the moon crystal" | "Guide the lost firefly" | "Map the coral garden";
|
|
560
|
+
day: "Saturday" | "Sunday" | "School holiday";
|
|
561
|
+
}[];
|
|
562
|
+
validationMessage: "Choose a day" | "Add a mission title" | "Mission ready!";
|
|
563
|
+
savedAcrossRestart: true;
|
|
564
|
+
accessibleSummaryEnabled: true;
|
|
565
|
+
}
|
|
566
|
+
interface CreatureCareDashboardSafeRenderV1 {
|
|
567
|
+
kind: "creature-care-dashboard";
|
|
568
|
+
creature: "Moon Moth" | "Cloud Cat" | "Pebble Dragon";
|
|
569
|
+
status: "Resting" | "Ready to play" | "Snack time";
|
|
570
|
+
timerSeconds: 5 | 10 | 15;
|
|
571
|
+
layout: "single" | "cosy-grid" | "wide-grid";
|
|
572
|
+
reducedMotion: true;
|
|
573
|
+
}
|
|
574
|
+
interface RobotMissionControlSafeRenderV1 {
|
|
575
|
+
kind: "robot-mission-control";
|
|
576
|
+
command: "scan" | "hold-position" | "return-to-base";
|
|
577
|
+
safetyConfirmed: true;
|
|
578
|
+
telemetryRate: 1 | 2 | 4;
|
|
579
|
+
chartMode: "line" | "bars" | "text-only";
|
|
580
|
+
serialSimulation: true;
|
|
581
|
+
state: "SCANNING" | "HOLDING" | "RETURNING";
|
|
582
|
+
}
|
|
583
|
+
/** The complete public render allow-list. Learner source is never a render model. */
|
|
584
|
+
type StaticProjectSafeRenderV1 = AdventureMissionPlannerSafeRenderV1 | CreatureCareDashboardSafeRenderV1 | RobotMissionControlSafeRenderV1;
|
|
585
|
+
/** Immutable private snapshot awaiting an adult's exact-hash approval. */
|
|
586
|
+
interface StaticProjectSnapshotV1 {
|
|
587
|
+
schemaVersion: "1";
|
|
588
|
+
contractVersion: typeof STATIC_PROJECT_PUBLISHING_CONTRACT_VERSION_V1;
|
|
589
|
+
snapshotId: string;
|
|
590
|
+
subjectAccountId: string;
|
|
591
|
+
moduleId: string;
|
|
592
|
+
moduleSlug: StaticProjectModuleSlugV1;
|
|
593
|
+
moduleVersion: string;
|
|
594
|
+
missionId: string;
|
|
595
|
+
sourceDigest: string;
|
|
596
|
+
snapshotDigest: string;
|
|
597
|
+
sourceCharacterCount: number;
|
|
598
|
+
assessmentScore: number;
|
|
599
|
+
mandatorySafetyPassed: true;
|
|
600
|
+
scan: StaticProjectSafetyScanV1;
|
|
601
|
+
renderModel: StaticProjectSafeRenderV1;
|
|
602
|
+
state: "pending-review";
|
|
603
|
+
createdAt: string;
|
|
604
|
+
}
|
|
605
|
+
/** Adult approval is evidence only and cannot mutate the reviewed snapshot. */
|
|
606
|
+
interface StaticProjectGuardianApprovalV1 {
|
|
607
|
+
schemaVersion: "1";
|
|
608
|
+
approvalId: string;
|
|
609
|
+
snapshotId: string;
|
|
610
|
+
snapshotDigest: string;
|
|
611
|
+
guardianActorAccountId: string;
|
|
612
|
+
statementVersion: typeof STATIC_PROJECT_APPROVAL_STATEMENT_VERSION_V1;
|
|
613
|
+
approvedAt: string;
|
|
614
|
+
}
|
|
615
|
+
/** An unlisted public pointer whose lifecycle never changes the source snapshot. */
|
|
616
|
+
interface StaticProjectPublicationV1 {
|
|
617
|
+
schemaVersion: "1";
|
|
618
|
+
publicationId: string;
|
|
619
|
+
snapshotId: string;
|
|
620
|
+
snapshotDigest: string;
|
|
621
|
+
approvalId: string;
|
|
622
|
+
randomSlug: string;
|
|
623
|
+
publicUrl: string;
|
|
624
|
+
state: "published" | "expired" | "unpublished";
|
|
625
|
+
publishedAt: string;
|
|
626
|
+
expiresAt: string;
|
|
627
|
+
renewedAt?: string;
|
|
628
|
+
unpublishedAt?: string;
|
|
629
|
+
}
|
|
630
|
+
type StaticProjectContractIssueV1 = "invalid-schema-version" | "invalid-contract-version" | "invalid-identifier" | "invalid-module" | "invalid-version" | "invalid-source-digest" | "invalid-snapshot-digest" | "invalid-source-size" | "assessment-score-incomplete" | "mandatory-safety-missing" | "scan-not-passed" | "scan-checks-incomplete" | "module-render-model-mismatch" | "unsafe-render-model" | "invalid-created-at" | "invalid-approval-statement" | "invalid-approved-at" | "invalid-random-slug" | "invalid-public-url" | "public-url-slug-mismatch" | "published-state-required" | "invalid-published-at" | "invalid-publication-expiry" | "invalid-lifecycle-timestamp";
|
|
631
|
+
/** Validate a snapshot without throwing so authoring and adapters can show every issue. */
|
|
632
|
+
declare function validateStaticProjectSnapshot(value: StaticProjectSnapshotV1): StaticProjectContractIssueV1[];
|
|
633
|
+
/** Fail closed when a persistence or publishing adapter constructs an invalid snapshot. */
|
|
634
|
+
declare function assertValidStaticProjectSnapshot(value: StaticProjectSnapshotV1): void;
|
|
635
|
+
declare function validateStaticProjectGuardianApproval(value: StaticProjectGuardianApprovalV1): StaticProjectContractIssueV1[];
|
|
636
|
+
declare function assertValidStaticProjectGuardianApproval(value: StaticProjectGuardianApprovalV1): void;
|
|
637
|
+
declare function validateStaticProjectPublication(value: StaticProjectPublicationV1): StaticProjectContractIssueV1[];
|
|
638
|
+
declare function assertValidStaticProjectPublication(value: StaticProjectPublicationV1): void;
|
|
639
|
+
|
|
432
640
|
/** Validate the deterministic 20/50/20/10 assessment authority. */
|
|
433
641
|
declare function validateAssessmentRubric(rubric: AssessmentRubricV1, path?: string, moduleId?: string): LearningValidationIssueV1[];
|
|
434
642
|
|
|
@@ -525,4 +733,4 @@ declare function validateLearningPath(path: LearningPathVersionV1): LearningVali
|
|
|
525
733
|
/** Fail fast when a path is not safe to publish or consume. */
|
|
526
734
|
declare function assertValidLearningPath(path: LearningPathVersionV1): void;
|
|
527
735
|
|
|
528
|
-
export { ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1, type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, CREATURE_CARE_DASHBOARD_MISSION_ONE_AUTHORING_V1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, ROBOT_MISSION_CONTROL_MISSION_ONE_AUTHORING_V1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
|
736
|
+
export { ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1, type AdventureMissionPlannerSafeRenderV1, type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, CONTEXTUAL_HELP_CONTRACT_VERSION_V1, CONTEXTUAL_HELP_KINDS_V1, CONTEXTUAL_VOICE_INTENTS_V1, CONTEXTUAL_VOICE_SUGGESTED_ACTIONS_V1, CREATURE_CARE_DASHBOARD_MISSION_ONE_AUTHORING_V1, type CanonicalSpokenHelpDescriptorV1, type CommercialStateV1, type ContextualHelpIdentifierV1, type ContextualHelpKindV1, type ContextualVoiceAnswerV1, type ContextualVoiceIntentV1, type ContextualVoiceQuestionMetadataV1, type ContextualVoiceQuestionResultV1, type ContextualVoiceSuggestedActionV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, type CreatureCareDashboardSafeRenderV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type GuardianVoiceConsentStateV1, type GuardianVoiceConsentV1, type GuardianVoiceProcessingRouteV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, ROBOT_MISSION_CONTROL_MISSION_ONE_AUTHORING_V1, type RobotMissionControlSafeRenderV1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, STATIC_PROJECT_APPROVAL_STATEMENT_VERSION_V1, STATIC_PROJECT_DEFAULT_LIFETIME_DAYS_V1, STATIC_PROJECT_MAX_SOURCE_CHARACTERS_V1, STATIC_PROJECT_PUBLISHING_CONTRACT_VERSION_V1, STATIC_PROJECT_SAFETY_CHECK_IDS_V1, STATIC_PROJECT_SCANNER_VERSION_V1, type ScoreBandV1, type StaticProjectContractIssueV1, type StaticProjectGuardianApprovalV1, type StaticProjectModuleSlugV1, type StaticProjectPublicationV1, type StaticProjectSafeRenderV1, type StaticProjectSafetyCheckIdV1, type StaticProjectSafetyCheckV1, type StaticProjectSafetyScanV1, type StaticProjectSnapshotV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1, type VoiceHelpAvailabilityReasonV1, type VoiceHelpAvailabilityV1, assertValidCanonicalSpokenHelpDescriptor, assertValidContextualHelpIdentifier, assertValidContextualVoiceQuestionMetadata, assertValidContextualVoiceQuestionResult, assertValidGuardianVoiceConsent, assertValidLearningPath, assertValidMissionAuthoringBundle, assertValidStaticProjectGuardianApproval, assertValidStaticProjectPublication, assertValidStaticProjectSnapshot, assertValidVoiceHelpAvailability, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle, validateStaticProjectGuardianApproval, validateStaticProjectPublication, validateStaticProjectSnapshot };
|