@contractspec/module.learning-journey 1.57.0 → 1.58.0
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/browser/contracts/index.js +578 -0
- package/dist/browser/contracts/models.js +193 -0
- package/dist/browser/contracts/onboarding.js +417 -0
- package/dist/browser/contracts/operations.js +326 -0
- package/dist/browser/contracts/shared.js +5 -0
- package/dist/browser/docs/index.js +124 -0
- package/dist/browser/docs/learning-journey.docblock.js +124 -0
- package/dist/browser/engines/index.js +526 -0
- package/dist/browser/engines/srs.js +198 -0
- package/dist/browser/engines/streak.js +159 -0
- package/dist/browser/engines/xp.js +171 -0
- package/dist/browser/entities/ai.js +343 -0
- package/dist/browser/entities/course.js +276 -0
- package/dist/browser/entities/flashcard.js +222 -0
- package/dist/browser/entities/gamification.js +340 -0
- package/dist/browser/entities/index.js +2136 -0
- package/dist/browser/entities/learner.js +329 -0
- package/dist/browser/entities/onboarding.js +301 -0
- package/dist/browser/entities/quiz.js +304 -0
- package/dist/browser/events.js +423 -0
- package/dist/browser/index.js +3833 -0
- package/dist/browser/learning-journey.capability.js +40 -0
- package/dist/browser/learning-journey.feature.js +56 -0
- package/dist/browser/track-spec.js +0 -0
- package/dist/contracts/index.d.ts +5 -5
- package/dist/contracts/index.d.ts.map +1 -0
- package/dist/contracts/index.js +578 -5
- package/dist/contracts/models.d.ts +426 -431
- package/dist/contracts/models.d.ts.map +1 -1
- package/dist/contracts/models.js +178 -372
- package/dist/contracts/onboarding.d.ts +621 -627
- package/dist/contracts/onboarding.d.ts.map +1 -1
- package/dist/contracts/onboarding.js +404 -388
- package/dist/contracts/operations.d.ts +243 -249
- package/dist/contracts/operations.d.ts.map +1 -1
- package/dist/contracts/operations.js +324 -148
- package/dist/contracts/shared.d.ts +1 -4
- package/dist/contracts/shared.d.ts.map +1 -1
- package/dist/contracts/shared.js +6 -6
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +125 -1
- package/dist/docs/learning-journey.docblock.d.ts +2 -1
- package/dist/docs/learning-journey.docblock.d.ts.map +1 -0
- package/dist/docs/learning-journey.docblock.js +47 -58
- package/dist/engines/index.d.ts +4 -4
- package/dist/engines/index.d.ts.map +1 -0
- package/dist/engines/index.js +526 -4
- package/dist/engines/srs.d.ts +89 -92
- package/dist/engines/srs.d.ts.map +1 -1
- package/dist/engines/srs.js +197 -217
- package/dist/engines/streak.d.ts +84 -87
- package/dist/engines/streak.d.ts.map +1 -1
- package/dist/engines/streak.js +158 -192
- package/dist/engines/xp.d.ts +80 -83
- package/dist/engines/xp.d.ts.map +1 -1
- package/dist/engines/xp.js +170 -211
- package/dist/entities/ai.d.ts +199 -204
- package/dist/entities/ai.d.ts.map +1 -1
- package/dist/entities/ai.js +336 -368
- package/dist/entities/course.d.ts +149 -154
- package/dist/entities/course.d.ts.map +1 -1
- package/dist/entities/course.js +267 -306
- package/dist/entities/flashcard.d.ts +144 -149
- package/dist/entities/flashcard.d.ts.map +1 -1
- package/dist/entities/flashcard.js +217 -243
- package/dist/entities/gamification.d.ts +197 -202
- package/dist/entities/gamification.d.ts.map +1 -1
- package/dist/entities/gamification.js +331 -382
- package/dist/entities/index.d.ts +613 -618
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/index.js +2135 -43
- package/dist/entities/learner.d.ts +191 -196
- package/dist/entities/learner.d.ts.map +1 -1
- package/dist/entities/learner.js +322 -357
- package/dist/entities/onboarding.d.ts +164 -169
- package/dist/entities/onboarding.d.ts.map +1 -1
- package/dist/entities/onboarding.js +296 -301
- package/dist/entities/quiz.d.ts +184 -189
- package/dist/entities/quiz.d.ts.map +1 -1
- package/dist/entities/quiz.js +296 -361
- package/dist/events.d.ts +608 -614
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +421 -687
- package/dist/index.d.ts +8 -20
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3834 -22
- package/dist/learning-journey.capability.d.ts +3 -8
- package/dist/learning-journey.capability.d.ts.map +1 -1
- package/dist/learning-journey.capability.js +41 -46
- package/dist/learning-journey.feature.d.ts +1 -6
- package/dist/learning-journey.feature.d.ts.map +1 -1
- package/dist/learning-journey.feature.js +55 -155
- package/dist/node/contracts/index.js +578 -0
- package/dist/node/contracts/models.js +193 -0
- package/dist/node/contracts/onboarding.js +417 -0
- package/dist/node/contracts/operations.js +326 -0
- package/dist/node/contracts/shared.js +5 -0
- package/dist/node/docs/index.js +124 -0
- package/dist/node/docs/learning-journey.docblock.js +124 -0
- package/dist/node/engines/index.js +526 -0
- package/dist/node/engines/srs.js +198 -0
- package/dist/node/engines/streak.js +159 -0
- package/dist/node/engines/xp.js +171 -0
- package/dist/node/entities/ai.js +343 -0
- package/dist/node/entities/course.js +276 -0
- package/dist/node/entities/flashcard.js +222 -0
- package/dist/node/entities/gamification.js +340 -0
- package/dist/node/entities/index.js +2136 -0
- package/dist/node/entities/learner.js +329 -0
- package/dist/node/entities/onboarding.js +301 -0
- package/dist/node/entities/quiz.js +304 -0
- package/dist/node/events.js +423 -0
- package/dist/node/index.js +3833 -0
- package/dist/node/learning-journey.capability.js +40 -0
- package/dist/node/learning-journey.feature.js +56 -0
- package/dist/node/track-spec.js +0 -0
- package/dist/track-spec.d.ts +115 -118
- package/dist/track-spec.d.ts.map +1 -1
- package/dist/track-spec.js +1 -0
- package/package.json +237 -60
- package/dist/contracts/models.js.map +0 -1
- package/dist/contracts/onboarding.js.map +0 -1
- package/dist/contracts/operations.js.map +0 -1
- package/dist/contracts/shared.js.map +0 -1
- package/dist/docs/learning-journey.docblock.js.map +0 -1
- package/dist/engines/srs.js.map +0 -1
- package/dist/engines/streak.js.map +0 -1
- package/dist/engines/xp.js.map +0 -1
- package/dist/entities/ai.js.map +0 -1
- package/dist/entities/course.js.map +0 -1
- package/dist/entities/flashcard.js.map +0 -1
- package/dist/entities/gamification.js.map +0 -1
- package/dist/entities/index.js.map +0 -1
- package/dist/entities/learner.js.map +0 -1
- package/dist/entities/onboarding.js.map +0 -1
- package/dist/entities/quiz.js.map +0 -1
- package/dist/events.js.map +0 -1
- package/dist/learning-journey.capability.js.map +0 -1
- package/dist/learning-journey.feature.js.map +0 -1
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// src/learning-journey.capability.ts
|
|
2
|
+
import { defineCapability, StabilityEnum } from "@contractspec/lib.contracts";
|
|
3
|
+
var LearningJourneyCapability = defineCapability({
|
|
4
|
+
meta: {
|
|
5
|
+
key: "learning-journey",
|
|
6
|
+
version: "1.0.0",
|
|
7
|
+
kind: "ui",
|
|
8
|
+
stability: StabilityEnum.Experimental,
|
|
9
|
+
description: "Guided learning paths and progress tracking",
|
|
10
|
+
owners: ["platform.core"],
|
|
11
|
+
tags: ["learning", "onboarding", "ui"]
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
var OnboardingCapability = defineCapability({
|
|
15
|
+
meta: {
|
|
16
|
+
key: "onboarding",
|
|
17
|
+
version: "1.0.0",
|
|
18
|
+
kind: "ui",
|
|
19
|
+
stability: StabilityEnum.Experimental,
|
|
20
|
+
description: "User onboarding and first-time experience flows",
|
|
21
|
+
owners: ["platform.core"],
|
|
22
|
+
tags: ["onboarding", "ux", "ui"]
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
var GamificationCapability = defineCapability({
|
|
26
|
+
meta: {
|
|
27
|
+
key: "gamification",
|
|
28
|
+
version: "1.0.0",
|
|
29
|
+
kind: "ui",
|
|
30
|
+
stability: StabilityEnum.Experimental,
|
|
31
|
+
description: "Gamification elements like badges, points, and achievements",
|
|
32
|
+
owners: ["platform.core"],
|
|
33
|
+
tags: ["gamification", "engagement", "ui"]
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
export {
|
|
37
|
+
OnboardingCapability,
|
|
38
|
+
LearningJourneyCapability,
|
|
39
|
+
GamificationCapability
|
|
40
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
// src/learning-journey.feature.ts
|
|
2
|
+
import { defineFeature } from "@contractspec/lib.contracts";
|
|
3
|
+
var LearningJourneyFeature = defineFeature({
|
|
4
|
+
meta: {
|
|
5
|
+
key: "learning-journey",
|
|
6
|
+
version: "1.0.0",
|
|
7
|
+
title: "Learning Journey",
|
|
8
|
+
description: "Learning platform with courses, onboarding, flashcards, and gamification",
|
|
9
|
+
domain: "learning",
|
|
10
|
+
owners: ["@platform.learning-journey"],
|
|
11
|
+
tags: ["learning", "onboarding", "courses", "flashcards", "gamification"],
|
|
12
|
+
stability: "stable"
|
|
13
|
+
},
|
|
14
|
+
operations: [
|
|
15
|
+
{ key: "learning.onboarding.recordEvent", version: "1.0.0" },
|
|
16
|
+
{ key: "learning.onboarding.listTracks", version: "1.0.0" },
|
|
17
|
+
{ key: "learning.onboarding.getProgress", version: "1.0.0" },
|
|
18
|
+
{ key: "learning.enroll", version: "1.0.0" },
|
|
19
|
+
{ key: "learning.completeLesson", version: "1.0.0" },
|
|
20
|
+
{ key: "learning.submitCardReview", version: "1.0.0" },
|
|
21
|
+
{ key: "learning.getDueCards", version: "1.0.0" },
|
|
22
|
+
{ key: "learning.getDashboard", version: "1.0.0" }
|
|
23
|
+
],
|
|
24
|
+
events: [
|
|
25
|
+
{ key: "course.published", version: "1.0.0" },
|
|
26
|
+
{ key: "course.completed", version: "1.0.0" },
|
|
27
|
+
{ key: "enrollment.created", version: "1.0.0" },
|
|
28
|
+
{ key: "lesson.completed", version: "1.0.0" },
|
|
29
|
+
{ key: "onboarding.started", version: "1.0.0" },
|
|
30
|
+
{ key: "onboarding.step_completed", version: "1.0.0" },
|
|
31
|
+
{ key: "onboarding.completed", version: "1.0.0" },
|
|
32
|
+
{ key: "flashcard.reviewed", version: "1.0.0" },
|
|
33
|
+
{ key: "quiz.started", version: "1.0.0" },
|
|
34
|
+
{ key: "quiz.completed", version: "1.0.0" },
|
|
35
|
+
{ key: "xp.earned", version: "1.0.0" },
|
|
36
|
+
{ key: "level.up", version: "1.0.0" },
|
|
37
|
+
{ key: "streak.updated", version: "1.0.0" },
|
|
38
|
+
{ key: "achievement.unlocked", version: "1.0.0" },
|
|
39
|
+
{ key: "daily_goal.completed", version: "1.0.0" },
|
|
40
|
+
{ key: "certificate.issued", version: "1.0.0" }
|
|
41
|
+
],
|
|
42
|
+
presentations: [],
|
|
43
|
+
opToPresentation: [],
|
|
44
|
+
presentationsTargets: [],
|
|
45
|
+
capabilities: {
|
|
46
|
+
provides: [
|
|
47
|
+
{ key: "learning-journey", version: "1.0.0" },
|
|
48
|
+
{ key: "onboarding", version: "1.0.0" },
|
|
49
|
+
{ key: "gamification", version: "1.0.0" }
|
|
50
|
+
],
|
|
51
|
+
requires: [{ key: "identity", version: "1.0.0" }]
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
export {
|
|
55
|
+
LearningJourneyFeature
|
|
56
|
+
};
|
|
File without changes
|
package/dist/track-spec.d.ts
CHANGED
|
@@ -1,129 +1,126 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
payloadFilter?: Record<string, unknown>;
|
|
1
|
+
export interface BaseEventConditionSpec {
|
|
2
|
+
/**
|
|
3
|
+
* Required event name to satisfy the condition.
|
|
4
|
+
*/
|
|
5
|
+
eventName: string;
|
|
6
|
+
/**
|
|
7
|
+
* Optional event version to match.
|
|
8
|
+
*/
|
|
9
|
+
eventVersion?: number;
|
|
10
|
+
/**
|
|
11
|
+
* Optional source module to match (for disambiguation).
|
|
12
|
+
*/
|
|
13
|
+
sourceModule?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Optional payload filter (shallow equality on keys).
|
|
16
|
+
*/
|
|
17
|
+
payloadFilter?: Record<string, unknown>;
|
|
19
18
|
}
|
|
20
|
-
interface EventCompletionConditionSpec extends BaseEventConditionSpec {
|
|
21
|
-
|
|
19
|
+
export interface EventCompletionConditionSpec extends BaseEventConditionSpec {
|
|
20
|
+
kind?: 'event';
|
|
22
21
|
}
|
|
23
|
-
interface CountCompletionConditionSpec extends BaseEventConditionSpec {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
22
|
+
export interface CountCompletionConditionSpec extends BaseEventConditionSpec {
|
|
23
|
+
kind: 'count';
|
|
24
|
+
/**
|
|
25
|
+
* Minimum number of matching events required to complete the step.
|
|
26
|
+
*/
|
|
27
|
+
atLeast: number;
|
|
28
|
+
/**
|
|
29
|
+
* Optional time window (hours) from track start for counting.
|
|
30
|
+
*/
|
|
31
|
+
withinHours?: number;
|
|
33
32
|
}
|
|
34
|
-
interface TimeWindowCompletionConditionSpec extends BaseEventConditionSpec {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
33
|
+
export interface TimeWindowCompletionConditionSpec extends BaseEventConditionSpec {
|
|
34
|
+
kind: 'time_window';
|
|
35
|
+
/**
|
|
36
|
+
* Must be completed within this window (hours) from track start.
|
|
37
|
+
*/
|
|
38
|
+
withinHoursOfStart?: number;
|
|
39
|
+
/**
|
|
40
|
+
* Optional additional delay before the step becomes available (hours).
|
|
41
|
+
*/
|
|
42
|
+
availableAfterHours?: number;
|
|
44
43
|
}
|
|
45
|
-
interface SrsMasteryCompletionConditionSpec {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
44
|
+
export interface SrsMasteryCompletionConditionSpec {
|
|
45
|
+
kind: 'srs_mastery';
|
|
46
|
+
/**
|
|
47
|
+
* Event carrying mastery info (defaults to drill/flashcard mastery events).
|
|
48
|
+
*/
|
|
49
|
+
eventName: string;
|
|
50
|
+
/**
|
|
51
|
+
* Payload key containing skill identifier; defaults to `skillId`.
|
|
52
|
+
*/
|
|
53
|
+
skillIdField?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Payload key containing mastery value; defaults to `mastery`.
|
|
56
|
+
*/
|
|
57
|
+
masteryField?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Minimum mastery value required (e.g., 0-1 or a numeric level).
|
|
60
|
+
*/
|
|
61
|
+
minimumMastery: number;
|
|
62
|
+
/**
|
|
63
|
+
* Optional number of mastered cards required to complete step.
|
|
64
|
+
*/
|
|
65
|
+
requiredCount?: number;
|
|
66
|
+
/**
|
|
67
|
+
* Optional payload filter.
|
|
68
|
+
*/
|
|
69
|
+
payloadFilter?: Record<string, unknown>;
|
|
71
70
|
}
|
|
72
|
-
type StepCompletionConditionSpec = EventCompletionConditionSpec | CountCompletionConditionSpec | TimeWindowCompletionConditionSpec | SrsMasteryCompletionConditionSpec;
|
|
73
|
-
interface StepAvailabilitySpec {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
71
|
+
export type StepCompletionConditionSpec = EventCompletionConditionSpec | CountCompletionConditionSpec | TimeWindowCompletionConditionSpec | SrsMasteryCompletionConditionSpec;
|
|
72
|
+
export interface StepAvailabilitySpec {
|
|
73
|
+
/**
|
|
74
|
+
* Unlock step after a delay (hours) from track start.
|
|
75
|
+
*/
|
|
76
|
+
unlockAfterHours?: number;
|
|
77
|
+
/**
|
|
78
|
+
* Unlock on a specific day from track start (day 1 = start day).
|
|
79
|
+
*/
|
|
80
|
+
unlockOnDay?: number;
|
|
81
|
+
/**
|
|
82
|
+
* Optional due window (hours) from unlock; if exceeded, step is considered missed.
|
|
83
|
+
*/
|
|
84
|
+
dueWithinHours?: number;
|
|
86
85
|
}
|
|
87
|
-
interface StreakRuleSpec {
|
|
88
|
-
|
|
89
|
-
|
|
86
|
+
export interface StreakRuleSpec {
|
|
87
|
+
hoursWindow?: number;
|
|
88
|
+
bonusXp?: number;
|
|
90
89
|
}
|
|
91
|
-
interface CompletionRewardsSpec {
|
|
92
|
-
|
|
93
|
-
|
|
90
|
+
export interface CompletionRewardsSpec {
|
|
91
|
+
xpBonus?: number;
|
|
92
|
+
badgeKey?: string;
|
|
94
93
|
}
|
|
95
|
-
interface LearningJourneyStepSpec {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
94
|
+
export interface LearningJourneyStepSpec {
|
|
95
|
+
id: string;
|
|
96
|
+
title: string;
|
|
97
|
+
description?: string;
|
|
98
|
+
instructions?: string;
|
|
99
|
+
helpUrl?: string;
|
|
100
|
+
order?: number;
|
|
101
|
+
completion: StepCompletionConditionSpec;
|
|
102
|
+
availability?: StepAvailabilitySpec;
|
|
103
|
+
xpReward?: number;
|
|
104
|
+
isRequired?: boolean;
|
|
105
|
+
canSkip?: boolean;
|
|
106
|
+
actionUrl?: string;
|
|
107
|
+
actionLabel?: string;
|
|
108
|
+
metadata?: Record<string, unknown>;
|
|
110
109
|
}
|
|
111
|
-
interface LearningJourneyTrackSpec {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
110
|
+
export interface LearningJourneyTrackSpec {
|
|
111
|
+
id: string;
|
|
112
|
+
productId?: string;
|
|
113
|
+
name: string;
|
|
114
|
+
description?: string;
|
|
115
|
+
targetUserSegment?: string;
|
|
116
|
+
targetRole?: string;
|
|
117
|
+
totalXp?: number;
|
|
118
|
+
isActive?: boolean;
|
|
119
|
+
isRequired?: boolean;
|
|
120
|
+
canSkip?: boolean;
|
|
121
|
+
streakRule?: StreakRuleSpec;
|
|
122
|
+
completionRewards?: CompletionRewardsSpec;
|
|
123
|
+
steps: LearningJourneyStepSpec[];
|
|
124
|
+
metadata?: Record<string, unknown>;
|
|
126
125
|
}
|
|
127
|
-
//#endregion
|
|
128
|
-
export { BaseEventConditionSpec, CompletionRewardsSpec, CountCompletionConditionSpec, EventCompletionConditionSpec, LearningJourneyStepSpec, LearningJourneyTrackSpec, SrsMasteryCompletionConditionSpec, StepAvailabilitySpec, StepCompletionConditionSpec, StreakRuleSpec, TimeWindowCompletionConditionSpec };
|
|
129
126
|
//# sourceMappingURL=track-spec.d.ts.map
|
package/dist/track-spec.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"track-spec.d.ts","
|
|
1
|
+
{"version":3,"file":"track-spec.d.ts","sourceRoot":"","sources":["../src/track-spec.ts"],"names":[],"mappings":"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"}
|
package/dist/track-spec.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// @bun
|