@lssm/module.learning-journey 0.0.0-canary-20251217072406 → 0.0.0-canary-20251217080011
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/contracts/models.d.ts +118 -118
- package/dist/contracts/onboarding.d.ts +167 -167
- package/dist/contracts/operations.d.ts +71 -71
- package/dist/entities/ai.d.ts +200 -200
- package/dist/entities/course.d.ts +150 -150
- package/dist/entities/flashcard.d.ts +145 -145
- package/dist/entities/gamification.d.ts +198 -198
- package/dist/entities/index.d.ts +605 -605
- package/dist/entities/learner.d.ts +192 -192
- package/dist/entities/onboarding.d.ts +165 -165
- package/dist/entities/quiz.d.ts +185 -185
- package/dist/events.d.ts +214 -214
- package/package.json +5 -5
|
@@ -1,301 +1,301 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema1401 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/contracts/models.d.ts
|
|
4
|
-
declare const CourseModel:
|
|
4
|
+
declare const CourseModel: _lssm_lib_schema1401.SchemaModel<{
|
|
5
5
|
id: {
|
|
6
|
-
type:
|
|
6
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
7
7
|
isOptional: false;
|
|
8
8
|
};
|
|
9
9
|
title: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
slug: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
description: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
19
19
|
isOptional: true;
|
|
20
20
|
};
|
|
21
21
|
difficulty: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
status: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
estimatedDuration: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
31
31
|
isOptional: true;
|
|
32
32
|
};
|
|
33
33
|
thumbnailUrl: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
35
35
|
isOptional: true;
|
|
36
36
|
};
|
|
37
37
|
createdAt: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
}>;
|
|
42
|
-
declare const LearnerModel:
|
|
42
|
+
declare const LearnerModel: _lssm_lib_schema1401.SchemaModel<{
|
|
43
43
|
id: {
|
|
44
|
-
type:
|
|
44
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
45
45
|
isOptional: false;
|
|
46
46
|
};
|
|
47
47
|
userId: {
|
|
48
|
-
type:
|
|
48
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
49
49
|
isOptional: false;
|
|
50
50
|
};
|
|
51
51
|
displayName: {
|
|
52
|
-
type:
|
|
52
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
53
53
|
isOptional: true;
|
|
54
54
|
};
|
|
55
55
|
level: {
|
|
56
|
-
type:
|
|
56
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
57
57
|
isOptional: false;
|
|
58
58
|
};
|
|
59
59
|
totalXp: {
|
|
60
|
-
type:
|
|
60
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
61
61
|
isOptional: false;
|
|
62
62
|
};
|
|
63
63
|
currentStreak: {
|
|
64
|
-
type:
|
|
64
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
65
65
|
isOptional: false;
|
|
66
66
|
};
|
|
67
67
|
longestStreak: {
|
|
68
|
-
type:
|
|
68
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
69
69
|
isOptional: false;
|
|
70
70
|
};
|
|
71
71
|
createdAt: {
|
|
72
|
-
type:
|
|
72
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
73
73
|
isOptional: false;
|
|
74
74
|
};
|
|
75
75
|
}>;
|
|
76
|
-
declare const EnrollmentModel:
|
|
76
|
+
declare const EnrollmentModel: _lssm_lib_schema1401.SchemaModel<{
|
|
77
77
|
id: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
learnerId: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
83
83
|
isOptional: false;
|
|
84
84
|
};
|
|
85
85
|
courseId: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
status: {
|
|
90
|
-
type:
|
|
90
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
91
91
|
isOptional: false;
|
|
92
92
|
};
|
|
93
93
|
progress: {
|
|
94
|
-
type:
|
|
94
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
95
95
|
isOptional: false;
|
|
96
96
|
};
|
|
97
97
|
startedAt: {
|
|
98
|
-
type:
|
|
98
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
99
99
|
isOptional: true;
|
|
100
100
|
};
|
|
101
101
|
completedAt: {
|
|
102
|
-
type:
|
|
102
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
103
103
|
isOptional: true;
|
|
104
104
|
};
|
|
105
105
|
}>;
|
|
106
|
-
declare const ProgressModel:
|
|
106
|
+
declare const ProgressModel: _lssm_lib_schema1401.SchemaModel<{
|
|
107
107
|
id: {
|
|
108
|
-
type:
|
|
108
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
109
109
|
isOptional: false;
|
|
110
110
|
};
|
|
111
111
|
learnerId: {
|
|
112
|
-
type:
|
|
112
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
113
113
|
isOptional: false;
|
|
114
114
|
};
|
|
115
115
|
lessonId: {
|
|
116
|
-
type:
|
|
116
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
117
117
|
isOptional: false;
|
|
118
118
|
};
|
|
119
119
|
status: {
|
|
120
|
-
type:
|
|
120
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
121
121
|
isOptional: false;
|
|
122
122
|
};
|
|
123
123
|
progress: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
125
125
|
isOptional: false;
|
|
126
126
|
};
|
|
127
127
|
score: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
129
129
|
isOptional: true;
|
|
130
130
|
};
|
|
131
131
|
timeSpent: {
|
|
132
|
-
type:
|
|
132
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
133
133
|
isOptional: false;
|
|
134
134
|
};
|
|
135
135
|
completedAt: {
|
|
136
|
-
type:
|
|
136
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
137
137
|
isOptional: true;
|
|
138
138
|
};
|
|
139
139
|
}>;
|
|
140
|
-
declare const DeckModel:
|
|
140
|
+
declare const DeckModel: _lssm_lib_schema1401.SchemaModel<{
|
|
141
141
|
id: {
|
|
142
|
-
type:
|
|
142
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
143
143
|
isOptional: false;
|
|
144
144
|
};
|
|
145
145
|
title: {
|
|
146
|
-
type:
|
|
146
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
147
147
|
isOptional: false;
|
|
148
148
|
};
|
|
149
149
|
description: {
|
|
150
|
-
type:
|
|
150
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
151
151
|
isOptional: true;
|
|
152
152
|
};
|
|
153
153
|
cardCount: {
|
|
154
|
-
type:
|
|
154
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
155
155
|
isOptional: false;
|
|
156
156
|
};
|
|
157
157
|
isPublic: {
|
|
158
|
-
type:
|
|
158
|
+
type: _lssm_lib_schema1401.FieldType<boolean, boolean>;
|
|
159
159
|
isOptional: false;
|
|
160
160
|
};
|
|
161
161
|
createdAt: {
|
|
162
|
-
type:
|
|
162
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
163
163
|
isOptional: false;
|
|
164
164
|
};
|
|
165
165
|
}>;
|
|
166
|
-
declare const CardModel:
|
|
166
|
+
declare const CardModel: _lssm_lib_schema1401.SchemaModel<{
|
|
167
167
|
id: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
169
169
|
isOptional: false;
|
|
170
170
|
};
|
|
171
171
|
deckId: {
|
|
172
|
-
type:
|
|
172
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
173
173
|
isOptional: false;
|
|
174
174
|
};
|
|
175
175
|
front: {
|
|
176
|
-
type:
|
|
176
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
177
177
|
isOptional: false;
|
|
178
178
|
};
|
|
179
179
|
back: {
|
|
180
|
-
type:
|
|
180
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
181
181
|
isOptional: false;
|
|
182
182
|
};
|
|
183
183
|
hints: {
|
|
184
|
-
type:
|
|
184
|
+
type: _lssm_lib_schema1401.FieldType<unknown, unknown>;
|
|
185
185
|
isOptional: true;
|
|
186
186
|
};
|
|
187
187
|
isDue: {
|
|
188
|
-
type:
|
|
188
|
+
type: _lssm_lib_schema1401.FieldType<boolean, boolean>;
|
|
189
189
|
isOptional: false;
|
|
190
190
|
};
|
|
191
191
|
nextReviewAt: {
|
|
192
|
-
type:
|
|
192
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
193
193
|
isOptional: true;
|
|
194
194
|
};
|
|
195
195
|
}>;
|
|
196
|
-
declare const AchievementModel:
|
|
196
|
+
declare const AchievementModel: _lssm_lib_schema1401.SchemaModel<{
|
|
197
197
|
id: {
|
|
198
|
-
type:
|
|
198
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
199
199
|
isOptional: false;
|
|
200
200
|
};
|
|
201
201
|
key: {
|
|
202
|
-
type:
|
|
202
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
203
203
|
isOptional: false;
|
|
204
204
|
};
|
|
205
205
|
name: {
|
|
206
|
-
type:
|
|
206
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
207
207
|
isOptional: false;
|
|
208
208
|
};
|
|
209
209
|
description: {
|
|
210
|
-
type:
|
|
210
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
211
211
|
isOptional: false;
|
|
212
212
|
};
|
|
213
213
|
icon: {
|
|
214
|
-
type:
|
|
214
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
215
215
|
isOptional: true;
|
|
216
216
|
};
|
|
217
217
|
xpReward: {
|
|
218
|
-
type:
|
|
218
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
219
219
|
isOptional: false;
|
|
220
220
|
};
|
|
221
221
|
unlockedAt: {
|
|
222
|
-
type:
|
|
222
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
223
223
|
isOptional: true;
|
|
224
224
|
};
|
|
225
225
|
}>;
|
|
226
|
-
declare const EnrollInCourseInput:
|
|
226
|
+
declare const EnrollInCourseInput: _lssm_lib_schema1401.SchemaModel<{
|
|
227
227
|
courseId: {
|
|
228
|
-
type:
|
|
228
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
229
229
|
isOptional: false;
|
|
230
230
|
};
|
|
231
231
|
}>;
|
|
232
|
-
declare const CompleteLessonInput:
|
|
232
|
+
declare const CompleteLessonInput: _lssm_lib_schema1401.SchemaModel<{
|
|
233
233
|
lessonId: {
|
|
234
|
-
type:
|
|
234
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
235
235
|
isOptional: false;
|
|
236
236
|
};
|
|
237
237
|
score: {
|
|
238
|
-
type:
|
|
238
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
239
239
|
isOptional: true;
|
|
240
240
|
};
|
|
241
241
|
timeSpent: {
|
|
242
|
-
type:
|
|
242
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
243
243
|
isOptional: false;
|
|
244
244
|
};
|
|
245
245
|
}>;
|
|
246
|
-
declare const SubmitCardReviewInput:
|
|
246
|
+
declare const SubmitCardReviewInput: _lssm_lib_schema1401.SchemaModel<{
|
|
247
247
|
cardId: {
|
|
248
|
-
type:
|
|
248
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
249
249
|
isOptional: false;
|
|
250
250
|
};
|
|
251
251
|
rating: {
|
|
252
|
-
type:
|
|
252
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
253
253
|
isOptional: false;
|
|
254
254
|
};
|
|
255
255
|
responseTimeMs: {
|
|
256
|
-
type:
|
|
256
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
257
257
|
isOptional: true;
|
|
258
258
|
};
|
|
259
259
|
}>;
|
|
260
|
-
declare const GetDueCardsInput:
|
|
260
|
+
declare const GetDueCardsInput: _lssm_lib_schema1401.SchemaModel<{
|
|
261
261
|
deckId: {
|
|
262
|
-
type:
|
|
262
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
263
263
|
isOptional: true;
|
|
264
264
|
};
|
|
265
265
|
limit: {
|
|
266
|
-
type:
|
|
266
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
267
267
|
isOptional: true;
|
|
268
268
|
};
|
|
269
269
|
}>;
|
|
270
|
-
declare const GetDueCardsOutput:
|
|
270
|
+
declare const GetDueCardsOutput: _lssm_lib_schema1401.SchemaModel<{
|
|
271
271
|
cards: {
|
|
272
|
-
type:
|
|
272
|
+
type: _lssm_lib_schema1401.SchemaModel<{
|
|
273
273
|
id: {
|
|
274
|
-
type:
|
|
274
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
275
275
|
isOptional: false;
|
|
276
276
|
};
|
|
277
277
|
deckId: {
|
|
278
|
-
type:
|
|
278
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
279
279
|
isOptional: false;
|
|
280
280
|
};
|
|
281
281
|
front: {
|
|
282
|
-
type:
|
|
282
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
283
283
|
isOptional: false;
|
|
284
284
|
};
|
|
285
285
|
back: {
|
|
286
|
-
type:
|
|
286
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
287
287
|
isOptional: false;
|
|
288
288
|
};
|
|
289
289
|
hints: {
|
|
290
|
-
type:
|
|
290
|
+
type: _lssm_lib_schema1401.FieldType<unknown, unknown>;
|
|
291
291
|
isOptional: true;
|
|
292
292
|
};
|
|
293
293
|
isDue: {
|
|
294
|
-
type:
|
|
294
|
+
type: _lssm_lib_schema1401.FieldType<boolean, boolean>;
|
|
295
295
|
isOptional: false;
|
|
296
296
|
};
|
|
297
297
|
nextReviewAt: {
|
|
298
|
-
type:
|
|
298
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
299
299
|
isOptional: true;
|
|
300
300
|
};
|
|
301
301
|
}>;
|
|
@@ -303,94 +303,94 @@ declare const GetDueCardsOutput: _lssm_lib_schema812.SchemaModel<{
|
|
|
303
303
|
isOptional: false;
|
|
304
304
|
};
|
|
305
305
|
total: {
|
|
306
|
-
type:
|
|
306
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
307
307
|
isOptional: false;
|
|
308
308
|
};
|
|
309
309
|
}>;
|
|
310
|
-
declare const GetLearnerDashboardInput:
|
|
310
|
+
declare const GetLearnerDashboardInput: _lssm_lib_schema1401.SchemaModel<{
|
|
311
311
|
learnerId: {
|
|
312
|
-
type:
|
|
312
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
313
313
|
isOptional: true;
|
|
314
314
|
};
|
|
315
315
|
}>;
|
|
316
|
-
declare const LearnerDashboardModel:
|
|
316
|
+
declare const LearnerDashboardModel: _lssm_lib_schema1401.SchemaModel<{
|
|
317
317
|
learner: {
|
|
318
|
-
type:
|
|
318
|
+
type: _lssm_lib_schema1401.SchemaModel<{
|
|
319
319
|
id: {
|
|
320
|
-
type:
|
|
320
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
321
321
|
isOptional: false;
|
|
322
322
|
};
|
|
323
323
|
userId: {
|
|
324
|
-
type:
|
|
324
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
325
325
|
isOptional: false;
|
|
326
326
|
};
|
|
327
327
|
displayName: {
|
|
328
|
-
type:
|
|
328
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
329
329
|
isOptional: true;
|
|
330
330
|
};
|
|
331
331
|
level: {
|
|
332
|
-
type:
|
|
332
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
333
333
|
isOptional: false;
|
|
334
334
|
};
|
|
335
335
|
totalXp: {
|
|
336
|
-
type:
|
|
336
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
337
337
|
isOptional: false;
|
|
338
338
|
};
|
|
339
339
|
currentStreak: {
|
|
340
|
-
type:
|
|
340
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
341
341
|
isOptional: false;
|
|
342
342
|
};
|
|
343
343
|
longestStreak: {
|
|
344
|
-
type:
|
|
344
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
345
345
|
isOptional: false;
|
|
346
346
|
};
|
|
347
347
|
createdAt: {
|
|
348
|
-
type:
|
|
348
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
349
349
|
isOptional: false;
|
|
350
350
|
};
|
|
351
351
|
}>;
|
|
352
352
|
isOptional: false;
|
|
353
353
|
};
|
|
354
354
|
currentStreak: {
|
|
355
|
-
type:
|
|
355
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
356
356
|
isOptional: false;
|
|
357
357
|
};
|
|
358
358
|
dailyXpGoal: {
|
|
359
|
-
type:
|
|
359
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
360
360
|
isOptional: false;
|
|
361
361
|
};
|
|
362
362
|
dailyXpProgress: {
|
|
363
|
-
type:
|
|
363
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
364
364
|
isOptional: false;
|
|
365
365
|
};
|
|
366
366
|
activeEnrollments: {
|
|
367
|
-
type:
|
|
367
|
+
type: _lssm_lib_schema1401.SchemaModel<{
|
|
368
368
|
id: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
370
370
|
isOptional: false;
|
|
371
371
|
};
|
|
372
372
|
learnerId: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
374
374
|
isOptional: false;
|
|
375
375
|
};
|
|
376
376
|
courseId: {
|
|
377
|
-
type:
|
|
377
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
378
378
|
isOptional: false;
|
|
379
379
|
};
|
|
380
380
|
status: {
|
|
381
|
-
type:
|
|
381
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
382
382
|
isOptional: false;
|
|
383
383
|
};
|
|
384
384
|
progress: {
|
|
385
|
-
type:
|
|
385
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
386
386
|
isOptional: false;
|
|
387
387
|
};
|
|
388
388
|
startedAt: {
|
|
389
|
-
type:
|
|
389
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
390
390
|
isOptional: true;
|
|
391
391
|
};
|
|
392
392
|
completedAt: {
|
|
393
|
-
type:
|
|
393
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
394
394
|
isOptional: true;
|
|
395
395
|
};
|
|
396
396
|
}>;
|
|
@@ -398,33 +398,33 @@ declare const LearnerDashboardModel: _lssm_lib_schema812.SchemaModel<{
|
|
|
398
398
|
isOptional: false;
|
|
399
399
|
};
|
|
400
400
|
recentAchievements: {
|
|
401
|
-
type:
|
|
401
|
+
type: _lssm_lib_schema1401.SchemaModel<{
|
|
402
402
|
id: {
|
|
403
|
-
type:
|
|
403
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
404
404
|
isOptional: false;
|
|
405
405
|
};
|
|
406
406
|
key: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
408
408
|
isOptional: false;
|
|
409
409
|
};
|
|
410
410
|
name: {
|
|
411
|
-
type:
|
|
411
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
412
412
|
isOptional: false;
|
|
413
413
|
};
|
|
414
414
|
description: {
|
|
415
|
-
type:
|
|
415
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
416
416
|
isOptional: false;
|
|
417
417
|
};
|
|
418
418
|
icon: {
|
|
419
|
-
type:
|
|
419
|
+
type: _lssm_lib_schema1401.FieldType<string, string>;
|
|
420
420
|
isOptional: true;
|
|
421
421
|
};
|
|
422
422
|
xpReward: {
|
|
423
|
-
type:
|
|
423
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
424
424
|
isOptional: false;
|
|
425
425
|
};
|
|
426
426
|
unlockedAt: {
|
|
427
|
-
type:
|
|
427
|
+
type: _lssm_lib_schema1401.FieldType<Date, string>;
|
|
428
428
|
isOptional: true;
|
|
429
429
|
};
|
|
430
430
|
}>;
|
|
@@ -432,17 +432,17 @@ declare const LearnerDashboardModel: _lssm_lib_schema812.SchemaModel<{
|
|
|
432
432
|
isOptional: false;
|
|
433
433
|
};
|
|
434
434
|
dueCardCount: {
|
|
435
|
-
type:
|
|
435
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
436
436
|
isOptional: false;
|
|
437
437
|
};
|
|
438
438
|
}>;
|
|
439
|
-
declare const SuccessOutput:
|
|
439
|
+
declare const SuccessOutput: _lssm_lib_schema1401.SchemaModel<{
|
|
440
440
|
success: {
|
|
441
|
-
type:
|
|
441
|
+
type: _lssm_lib_schema1401.FieldType<boolean, boolean>;
|
|
442
442
|
isOptional: false;
|
|
443
443
|
};
|
|
444
444
|
xpEarned: {
|
|
445
|
-
type:
|
|
445
|
+
type: _lssm_lib_schema1401.FieldType<number, number>;
|
|
446
446
|
isOptional: true;
|
|
447
447
|
};
|
|
448
448
|
}>;
|