@plasius/learning 0.2.7 → 0.2.9
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 +27 -2
- package/dist/index.cjs +717 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +69 -2
- package/dist/index.d.ts +69 -2
- package/dist/index.js +715 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -282,6 +282,20 @@ interface MissionRewardBindingV1 {
|
|
|
282
282
|
random: false;
|
|
283
283
|
tokenConvertible: false;
|
|
284
284
|
}
|
|
285
|
+
interface MissionFunctionParameterV1 {
|
|
286
|
+
name: string;
|
|
287
|
+
type: string;
|
|
288
|
+
description: string;
|
|
289
|
+
}
|
|
290
|
+
/** Learner-safe documentation for one bounded host or simulator function. */
|
|
291
|
+
interface MissionFunctionReferenceV1 {
|
|
292
|
+
id: string;
|
|
293
|
+
signature: string;
|
|
294
|
+
summary: string;
|
|
295
|
+
parameters: MissionFunctionParameterV1[];
|
|
296
|
+
effect: string;
|
|
297
|
+
example: string;
|
|
298
|
+
}
|
|
285
299
|
/** The only mission projection safe to return to a learner. */
|
|
286
300
|
interface LearnerMissionAuthoringV1 {
|
|
287
301
|
estimatedMinutes: number;
|
|
@@ -294,6 +308,7 @@ interface LearnerMissionAuthoringV1 {
|
|
|
294
308
|
evidenceRequirements: MissionEvidenceRequirementV1[];
|
|
295
309
|
sideAdventures: MissionSideAdventureV1[];
|
|
296
310
|
rewardBindings: MissionRewardBindingV1[];
|
|
311
|
+
functionReference?: MissionFunctionReferenceV1[];
|
|
297
312
|
}
|
|
298
313
|
/** Protected authoring data must never be projected through learner APIs. */
|
|
299
314
|
interface FacilitatorMissionAuthoringV1 {
|
|
@@ -301,6 +316,44 @@ interface FacilitatorMissionAuthoringV1 {
|
|
|
301
316
|
protectedGoals: MissionAuthoringGoalV1[];
|
|
302
317
|
prompts: string[];
|
|
303
318
|
}
|
|
319
|
+
type MissionHardwareAcquisitionScopeV1 = "complete-path" | "incremental";
|
|
320
|
+
/** Per-item verification authority for a physical mission disclosure. */
|
|
321
|
+
interface MissionHardwareComponentDisclosureV1 {
|
|
322
|
+
itemId: string;
|
|
323
|
+
quantity: number;
|
|
324
|
+
acquisitionScope: MissionHardwareAcquisitionScopeV1;
|
|
325
|
+
verificationStatus: HardwareVerificationStatusV1;
|
|
326
|
+
compatibilityClaimed: boolean;
|
|
327
|
+
physicalCompletionEligible: boolean;
|
|
328
|
+
}
|
|
329
|
+
/** Adult and simulator boundaries that consuming workspaces must preserve. */
|
|
330
|
+
interface MissionPhysicalSafeguardsV1 {
|
|
331
|
+
adultAssemblyRequired: true;
|
|
332
|
+
adultAcknowledgementRequiredForExport: true;
|
|
333
|
+
websiteMayControlHardware: false;
|
|
334
|
+
simulatorCompletionAvailable: true;
|
|
335
|
+
simulatedBadgeId: string;
|
|
336
|
+
physicalBadgeId: string;
|
|
337
|
+
physicalBadgeRequiresAdultSignoff: true;
|
|
338
|
+
adultAssemblySteps: string[];
|
|
339
|
+
powerRequirements: string[];
|
|
340
|
+
cableRequirements: string[];
|
|
341
|
+
softwarePrerequisites: string[];
|
|
342
|
+
warnings: string[];
|
|
343
|
+
unrelatedHardwareNotRequired: string[];
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* Additive mission-level projection of one immutable catalog hardware manifest.
|
|
347
|
+
* It distinguishes the complete reusable path kit from this module's additions.
|
|
348
|
+
*/
|
|
349
|
+
interface MissionHardwareDisclosureV1 {
|
|
350
|
+
requirementsVersion: string;
|
|
351
|
+
hardwareIncluded: false;
|
|
352
|
+
completePathItemIds: string[];
|
|
353
|
+
incrementalItemIds: string[];
|
|
354
|
+
components: MissionHardwareComponentDisclosureV1[];
|
|
355
|
+
safeguards: MissionPhysicalSafeguardsV1;
|
|
356
|
+
}
|
|
304
357
|
/** Additive authoring detail keyed to one immutable catalog mission. */
|
|
305
358
|
interface MissionAuthoringBundleV1 {
|
|
306
359
|
version: string;
|
|
@@ -309,9 +362,10 @@ interface MissionAuthoringBundleV1 {
|
|
|
309
362
|
missionId: string;
|
|
310
363
|
learner: LearnerMissionAuthoringV1;
|
|
311
364
|
facilitator: FacilitatorMissionAuthoringV1;
|
|
365
|
+
hardware?: MissionHardwareDisclosureV1;
|
|
312
366
|
}
|
|
313
367
|
interface MissionAuthoringValidationIssueV1 {
|
|
314
|
-
code: "bundle-version-mismatch" | "module-reference-mismatch" | "mission-reference-mismatch" | "invalid-duration" | "missing-stage" | "duplicate-stage" | "stage-order" | "missing-readiness-check" | "scored-readiness-check" | "missing-starter-artifact" | "learner-artifact-leak" | "facilitator-artifact-leak" | "unknown-artifact" | "duplicate-id" | "missing-visible-goal" | "missing-protected-goal" | "invalid-goal-projection" | "duplicate-goal-id" | "unknown-criterion" | "criterion-visibility-mismatch" | "rubric-total" | "rubric-dimension-total" | "duplicate-criterion-id" | "missing-mandatory-safety" | "missing-safety-evidence" | "ai-dependent-completion" | "inaccessible-interaction" | "unknown-accessibility-alternative" | "non-equivalent-accessibility-alternative" | "missing-evidence" | "unknown-evidence-goal" | "personal-data-evidence" | "missing-side-adventure" | "mandatory-side-adventure" | "invalid-reward";
|
|
368
|
+
code: "bundle-version-mismatch" | "module-reference-mismatch" | "mission-reference-mismatch" | "invalid-duration" | "missing-stage" | "duplicate-stage" | "stage-order" | "missing-readiness-check" | "scored-readiness-check" | "missing-starter-artifact" | "learner-artifact-leak" | "facilitator-artifact-leak" | "unknown-artifact" | "duplicate-id" | "missing-visible-goal" | "missing-protected-goal" | "invalid-goal-projection" | "duplicate-goal-id" | "unknown-criterion" | "criterion-visibility-mismatch" | "rubric-total" | "rubric-dimension-total" | "duplicate-criterion-id" | "missing-mandatory-safety" | "missing-safety-evidence" | "ai-dependent-completion" | "inaccessible-interaction" | "unknown-accessibility-alternative" | "non-equivalent-accessibility-alternative" | "missing-evidence" | "unknown-evidence-goal" | "personal-data-evidence" | "missing-side-adventure" | "mandatory-side-adventure" | "invalid-reward" | "hardware-module-mismatch" | "hardware-requirements-version-mismatch" | "hardware-item-mismatch" | "hardware-verification-claim" | "unsafe-physical-export" | "invalid-hardware-reward" | "invalid-function-reference";
|
|
315
369
|
message: string;
|
|
316
370
|
path: string;
|
|
317
371
|
}
|
|
@@ -388,6 +442,19 @@ declare const PADDLE_PULSE_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
|
388
442
|
* expected source fragments or list/collision edge answers.
|
|
389
443
|
*/
|
|
390
444
|
declare const PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
445
|
+
/**
|
|
446
|
+
* Original first mission for Star Defender Squadron. Learners launch bounded
|
|
447
|
+
* JavaScript entities, patterns, health and rescue projectiles while protected
|
|
448
|
+
* pass targets and runtime edge cases remain facilitator-only.
|
|
449
|
+
*/
|
|
450
|
+
declare const STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
451
|
+
/**
|
|
452
|
+
* First Beacon Bot robotics mission. The learner completes a bounded simulator
|
|
453
|
+
* route; every physical item remains unverified, public-sale blocked and
|
|
454
|
+
* ineligible for physical completion until an adult bench-test authority says
|
|
455
|
+
* otherwise.
|
|
456
|
+
*/
|
|
457
|
+
declare const BEACON_BOT_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
391
458
|
/**
|
|
392
459
|
* Original first mission for Rescue Crew Commander. The learner arranges a
|
|
393
460
|
* typed visual program and can inspect its synchronized JavaScript projection,
|
|
@@ -408,4 +475,4 @@ declare function validateLearningPath(path: LearningPathVersionV1): LearningVali
|
|
|
408
475
|
/** Fail fast when a path is not safe to publish or consume. */
|
|
409
476
|
declare function assertValidLearningPath(path: LearningPathVersionV1): void;
|
|
410
477
|
|
|
411
|
-
export { type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, 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 MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, 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, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
|
478
|
+
export { type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, 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 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, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
package/dist/index.d.ts
CHANGED
|
@@ -282,6 +282,20 @@ interface MissionRewardBindingV1 {
|
|
|
282
282
|
random: false;
|
|
283
283
|
tokenConvertible: false;
|
|
284
284
|
}
|
|
285
|
+
interface MissionFunctionParameterV1 {
|
|
286
|
+
name: string;
|
|
287
|
+
type: string;
|
|
288
|
+
description: string;
|
|
289
|
+
}
|
|
290
|
+
/** Learner-safe documentation for one bounded host or simulator function. */
|
|
291
|
+
interface MissionFunctionReferenceV1 {
|
|
292
|
+
id: string;
|
|
293
|
+
signature: string;
|
|
294
|
+
summary: string;
|
|
295
|
+
parameters: MissionFunctionParameterV1[];
|
|
296
|
+
effect: string;
|
|
297
|
+
example: string;
|
|
298
|
+
}
|
|
285
299
|
/** The only mission projection safe to return to a learner. */
|
|
286
300
|
interface LearnerMissionAuthoringV1 {
|
|
287
301
|
estimatedMinutes: number;
|
|
@@ -294,6 +308,7 @@ interface LearnerMissionAuthoringV1 {
|
|
|
294
308
|
evidenceRequirements: MissionEvidenceRequirementV1[];
|
|
295
309
|
sideAdventures: MissionSideAdventureV1[];
|
|
296
310
|
rewardBindings: MissionRewardBindingV1[];
|
|
311
|
+
functionReference?: MissionFunctionReferenceV1[];
|
|
297
312
|
}
|
|
298
313
|
/** Protected authoring data must never be projected through learner APIs. */
|
|
299
314
|
interface FacilitatorMissionAuthoringV1 {
|
|
@@ -301,6 +316,44 @@ interface FacilitatorMissionAuthoringV1 {
|
|
|
301
316
|
protectedGoals: MissionAuthoringGoalV1[];
|
|
302
317
|
prompts: string[];
|
|
303
318
|
}
|
|
319
|
+
type MissionHardwareAcquisitionScopeV1 = "complete-path" | "incremental";
|
|
320
|
+
/** Per-item verification authority for a physical mission disclosure. */
|
|
321
|
+
interface MissionHardwareComponentDisclosureV1 {
|
|
322
|
+
itemId: string;
|
|
323
|
+
quantity: number;
|
|
324
|
+
acquisitionScope: MissionHardwareAcquisitionScopeV1;
|
|
325
|
+
verificationStatus: HardwareVerificationStatusV1;
|
|
326
|
+
compatibilityClaimed: boolean;
|
|
327
|
+
physicalCompletionEligible: boolean;
|
|
328
|
+
}
|
|
329
|
+
/** Adult and simulator boundaries that consuming workspaces must preserve. */
|
|
330
|
+
interface MissionPhysicalSafeguardsV1 {
|
|
331
|
+
adultAssemblyRequired: true;
|
|
332
|
+
adultAcknowledgementRequiredForExport: true;
|
|
333
|
+
websiteMayControlHardware: false;
|
|
334
|
+
simulatorCompletionAvailable: true;
|
|
335
|
+
simulatedBadgeId: string;
|
|
336
|
+
physicalBadgeId: string;
|
|
337
|
+
physicalBadgeRequiresAdultSignoff: true;
|
|
338
|
+
adultAssemblySteps: string[];
|
|
339
|
+
powerRequirements: string[];
|
|
340
|
+
cableRequirements: string[];
|
|
341
|
+
softwarePrerequisites: string[];
|
|
342
|
+
warnings: string[];
|
|
343
|
+
unrelatedHardwareNotRequired: string[];
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* Additive mission-level projection of one immutable catalog hardware manifest.
|
|
347
|
+
* It distinguishes the complete reusable path kit from this module's additions.
|
|
348
|
+
*/
|
|
349
|
+
interface MissionHardwareDisclosureV1 {
|
|
350
|
+
requirementsVersion: string;
|
|
351
|
+
hardwareIncluded: false;
|
|
352
|
+
completePathItemIds: string[];
|
|
353
|
+
incrementalItemIds: string[];
|
|
354
|
+
components: MissionHardwareComponentDisclosureV1[];
|
|
355
|
+
safeguards: MissionPhysicalSafeguardsV1;
|
|
356
|
+
}
|
|
304
357
|
/** Additive authoring detail keyed to one immutable catalog mission. */
|
|
305
358
|
interface MissionAuthoringBundleV1 {
|
|
306
359
|
version: string;
|
|
@@ -309,9 +362,10 @@ interface MissionAuthoringBundleV1 {
|
|
|
309
362
|
missionId: string;
|
|
310
363
|
learner: LearnerMissionAuthoringV1;
|
|
311
364
|
facilitator: FacilitatorMissionAuthoringV1;
|
|
365
|
+
hardware?: MissionHardwareDisclosureV1;
|
|
312
366
|
}
|
|
313
367
|
interface MissionAuthoringValidationIssueV1 {
|
|
314
|
-
code: "bundle-version-mismatch" | "module-reference-mismatch" | "mission-reference-mismatch" | "invalid-duration" | "missing-stage" | "duplicate-stage" | "stage-order" | "missing-readiness-check" | "scored-readiness-check" | "missing-starter-artifact" | "learner-artifact-leak" | "facilitator-artifact-leak" | "unknown-artifact" | "duplicate-id" | "missing-visible-goal" | "missing-protected-goal" | "invalid-goal-projection" | "duplicate-goal-id" | "unknown-criterion" | "criterion-visibility-mismatch" | "rubric-total" | "rubric-dimension-total" | "duplicate-criterion-id" | "missing-mandatory-safety" | "missing-safety-evidence" | "ai-dependent-completion" | "inaccessible-interaction" | "unknown-accessibility-alternative" | "non-equivalent-accessibility-alternative" | "missing-evidence" | "unknown-evidence-goal" | "personal-data-evidence" | "missing-side-adventure" | "mandatory-side-adventure" | "invalid-reward";
|
|
368
|
+
code: "bundle-version-mismatch" | "module-reference-mismatch" | "mission-reference-mismatch" | "invalid-duration" | "missing-stage" | "duplicate-stage" | "stage-order" | "missing-readiness-check" | "scored-readiness-check" | "missing-starter-artifact" | "learner-artifact-leak" | "facilitator-artifact-leak" | "unknown-artifact" | "duplicate-id" | "missing-visible-goal" | "missing-protected-goal" | "invalid-goal-projection" | "duplicate-goal-id" | "unknown-criterion" | "criterion-visibility-mismatch" | "rubric-total" | "rubric-dimension-total" | "duplicate-criterion-id" | "missing-mandatory-safety" | "missing-safety-evidence" | "ai-dependent-completion" | "inaccessible-interaction" | "unknown-accessibility-alternative" | "non-equivalent-accessibility-alternative" | "missing-evidence" | "unknown-evidence-goal" | "personal-data-evidence" | "missing-side-adventure" | "mandatory-side-adventure" | "invalid-reward" | "hardware-module-mismatch" | "hardware-requirements-version-mismatch" | "hardware-item-mismatch" | "hardware-verification-claim" | "unsafe-physical-export" | "invalid-hardware-reward" | "invalid-function-reference";
|
|
315
369
|
message: string;
|
|
316
370
|
path: string;
|
|
317
371
|
}
|
|
@@ -388,6 +442,19 @@ declare const PADDLE_PULSE_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
|
388
442
|
* expected source fragments or list/collision edge answers.
|
|
389
443
|
*/
|
|
390
444
|
declare const PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
445
|
+
/**
|
|
446
|
+
* Original first mission for Star Defender Squadron. Learners launch bounded
|
|
447
|
+
* JavaScript entities, patterns, health and rescue projectiles while protected
|
|
448
|
+
* pass targets and runtime edge cases remain facilitator-only.
|
|
449
|
+
*/
|
|
450
|
+
declare const STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
451
|
+
/**
|
|
452
|
+
* First Beacon Bot robotics mission. The learner completes a bounded simulator
|
|
453
|
+
* route; every physical item remains unverified, public-sale blocked and
|
|
454
|
+
* ineligible for physical completion until an adult bench-test authority says
|
|
455
|
+
* otherwise.
|
|
456
|
+
*/
|
|
457
|
+
declare const BEACON_BOT_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
391
458
|
/**
|
|
392
459
|
* Original first mission for Rescue Crew Commander. The learner arranges a
|
|
393
460
|
* typed visual program and can inspect its synchronized JavaScript projection,
|
|
@@ -408,4 +475,4 @@ declare function validateLearningPath(path: LearningPathVersionV1): LearningVali
|
|
|
408
475
|
/** Fail fast when a path is not safe to publish or consume. */
|
|
409
476
|
declare function assertValidLearningPath(path: LearningPathVersionV1): void;
|
|
410
477
|
|
|
411
|
-
export { type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, 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 MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, 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, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
|
478
|
+
export { type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, 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 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, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|