texteditorrefactor 0.0.12 → 0.0.14
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/components/Molecules/PerformanceScreen/PreformanceResultScreenSkeleton.d.ts +6 -0
- package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreenSkeleton.js +12 -0
- package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreenSkeleton.js.map +1 -0
- package/dist/components/Molecules/RecapNode/ContentView.js +2 -2
- package/dist/components/Molecules/RecapNode/ContentView.js.map +1 -1
- package/dist/components/Molecules/RecapNode/SectionView.js +70 -10
- package/dist/components/Molecules/RecapNode/SectionView.js.map +1 -1
- package/dist/components/Molecules/RecapNode/VideoView.d.ts +6 -1
- package/dist/components/Molecules/RecapNode/VideoView.js +47 -6
- package/dist/components/Molecules/RecapNode/VideoView.js.map +1 -1
- package/dist/components/Organisms/FlashCardNode/FlashCardNode.js +46 -3
- package/dist/components/Organisms/FlashCardNode/FlashCardNode.js.map +1 -1
- package/dist/components/Organisms/FlashCardNode/FlashcardContainer.d.ts +2 -1
- package/dist/components/Organisms/FlashCardNode/FlashcardContainer.js +6 -30
- package/dist/components/Organisms/FlashCardNode/FlashcardContainer.js.map +1 -1
- package/dist/components/Organisms/FlashCardNode/IconBar.d.ts +3 -1
- package/dist/components/Organisms/FlashCardNode/IconBar.js +3 -3
- package/dist/components/Organisms/FlashCardNode/IconBar.js.map +1 -1
- package/dist/components/Organisms/FlashCardNode/MobileAccordionView.d.ts +2 -1
- package/dist/components/Organisms/FlashCardNode/MobileAccordionView.js +12 -107
- package/dist/components/Organisms/FlashCardNode/MobileAccordionView.js.map +1 -1
- package/dist/components/Organisms/RecapGraph/Example.stories.js +22 -8
- package/dist/components/Organisms/RecapGraph/Example.stories.js.map +1 -1
- package/dist/components/Organisms/RecapGraph/Reactgraphflow.d.ts +3 -2
- package/dist/components/Organisms/RecapGraph/Reactgraphflow.js +54 -214
- package/dist/components/Organisms/RecapGraph/Reactgraphflow.js.map +1 -1
- package/dist/components/Organisms/RecapGraph/useRecapGraphLogic.d.ts +29 -0
- package/dist/components/Organisms/RecapGraph/useRecapGraphLogic.js +357 -0
- package/dist/components/Organisms/RecapGraph/useRecapGraphLogic.js.map +1 -0
- package/dist/components/Organisms/StudentEditor/components/EditorComponent.d.ts +0 -1
- package/dist/components/Organisms/StudentEditor/components/EditorComponent.js +8 -34
- package/dist/components/Organisms/StudentEditor/components/EditorComponent.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/TextEditor.js +29 -60
- package/dist/components/Organisms/StudentEditor/components/TextEditor.js.map +1 -1
- package/dist/utils/RecapData.d.ts +504 -33
- package/dist/utils/RecapData.js +1999 -538
- package/dist/utils/RecapData.js.map +1 -1
- package/dist/utils/contentUtils.js +12 -5
- package/dist/utils/contentUtils.js.map +1 -1
- package/package.json +1 -1
|
@@ -38,20 +38,91 @@ export const contentArrays: ({
|
|
|
38
38
|
title: string;
|
|
39
39
|
freezeRefCount: number;
|
|
40
40
|
curriculum: number[];
|
|
41
|
-
grade:
|
|
41
|
+
grade: number[];
|
|
42
42
|
subject: number[];
|
|
43
43
|
topic: string[];
|
|
44
44
|
subTopic: never[];
|
|
45
45
|
knowledgeCell: string[];
|
|
46
46
|
transcript: string;
|
|
47
47
|
glossary: never[];
|
|
48
|
+
recap: {
|
|
49
|
+
definition: {
|
|
50
|
+
title: string;
|
|
51
|
+
description: string;
|
|
52
|
+
}[];
|
|
53
|
+
video: {
|
|
54
|
+
title: string;
|
|
55
|
+
description: string;
|
|
56
|
+
}[];
|
|
57
|
+
theorem: {
|
|
58
|
+
title: string;
|
|
59
|
+
description: string;
|
|
60
|
+
}[];
|
|
61
|
+
formula: {
|
|
62
|
+
title: string;
|
|
63
|
+
description: string;
|
|
64
|
+
}[];
|
|
65
|
+
definitions: {
|
|
66
|
+
title: string;
|
|
67
|
+
description: string;
|
|
68
|
+
}[];
|
|
69
|
+
laws: {
|
|
70
|
+
title: string;
|
|
71
|
+
description: string;
|
|
72
|
+
}[];
|
|
73
|
+
applications: {
|
|
74
|
+
title: string;
|
|
75
|
+
description: string;
|
|
76
|
+
}[];
|
|
77
|
+
processes: {
|
|
78
|
+
title: string;
|
|
79
|
+
description: string;
|
|
80
|
+
}[];
|
|
81
|
+
keyConcept: {
|
|
82
|
+
title: string;
|
|
83
|
+
description: string;
|
|
84
|
+
}[];
|
|
85
|
+
timeline: {
|
|
86
|
+
title: string;
|
|
87
|
+
description: string;
|
|
88
|
+
}[];
|
|
89
|
+
_id?: undefined;
|
|
90
|
+
content?: undefined;
|
|
91
|
+
type?: undefined;
|
|
92
|
+
description?: undefined;
|
|
93
|
+
contentType?: undefined;
|
|
94
|
+
title?: undefined;
|
|
95
|
+
freezeRefCount?: undefined;
|
|
96
|
+
curriculum?: undefined;
|
|
97
|
+
grade?: undefined;
|
|
98
|
+
subject?: undefined;
|
|
99
|
+
topic?: undefined;
|
|
100
|
+
subTopic?: undefined;
|
|
101
|
+
knowledgeCell?: undefined;
|
|
102
|
+
transcript?: undefined;
|
|
103
|
+
glossary?: undefined;
|
|
104
|
+
recap?: undefined;
|
|
105
|
+
videoThumbnail?: undefined;
|
|
106
|
+
createdAt?: undefined;
|
|
107
|
+
updatedAt?: undefined;
|
|
108
|
+
__v?: undefined;
|
|
109
|
+
theme?: undefined;
|
|
110
|
+
equations?: undefined;
|
|
111
|
+
summary?: undefined;
|
|
112
|
+
properties?: undefined;
|
|
113
|
+
keyConcepts?: undefined;
|
|
114
|
+
theorems?: undefined;
|
|
115
|
+
reactions?: undefined;
|
|
116
|
+
formulae?: undefined;
|
|
117
|
+
centralIdea?: undefined;
|
|
118
|
+
poeticDevices?: undefined;
|
|
119
|
+
language?: undefined;
|
|
120
|
+
vocabulary?: undefined;
|
|
121
|
+
};
|
|
122
|
+
videoThumbnail: string;
|
|
48
123
|
createdAt: string;
|
|
49
124
|
updatedAt: string;
|
|
50
125
|
__v: number;
|
|
51
|
-
basket: boolean;
|
|
52
|
-
videoThumbnail: string;
|
|
53
|
-
inBasket: boolean;
|
|
54
|
-
recap?: undefined;
|
|
55
126
|
} | {
|
|
56
127
|
_id: string;
|
|
57
128
|
content: string;
|
|
@@ -68,18 +139,122 @@ export const contentArrays: ({
|
|
|
68
139
|
knowledgeCell: string[];
|
|
69
140
|
transcript: string;
|
|
70
141
|
glossary: never[];
|
|
142
|
+
recap: {
|
|
143
|
+
_id: string;
|
|
144
|
+
content: string;
|
|
145
|
+
type: string;
|
|
146
|
+
description: string;
|
|
147
|
+
contentType: string;
|
|
148
|
+
title: string;
|
|
149
|
+
freezeRefCount: number;
|
|
150
|
+
curriculum: string[];
|
|
151
|
+
grade: string[];
|
|
152
|
+
subject: string[];
|
|
153
|
+
topic: string[];
|
|
154
|
+
subTopic: never[];
|
|
155
|
+
knowledgeCell: string[];
|
|
156
|
+
transcript: string;
|
|
157
|
+
glossary: never[];
|
|
158
|
+
recap: {
|
|
159
|
+
summary: {
|
|
160
|
+
title: string;
|
|
161
|
+
description: string;
|
|
162
|
+
}[];
|
|
163
|
+
definitions: {
|
|
164
|
+
title: string;
|
|
165
|
+
description: string;
|
|
166
|
+
}[];
|
|
167
|
+
laws: {
|
|
168
|
+
title: string;
|
|
169
|
+
description: string;
|
|
170
|
+
}[];
|
|
171
|
+
applications: {
|
|
172
|
+
title: string;
|
|
173
|
+
description: string;
|
|
174
|
+
}[];
|
|
175
|
+
properties: {
|
|
176
|
+
title: string;
|
|
177
|
+
description: string;
|
|
178
|
+
}[];
|
|
179
|
+
keyConcepts: {
|
|
180
|
+
title: string;
|
|
181
|
+
description: string;
|
|
182
|
+
}[];
|
|
183
|
+
theorems: {
|
|
184
|
+
title: string;
|
|
185
|
+
description: string;
|
|
186
|
+
}[];
|
|
187
|
+
equations: {
|
|
188
|
+
title: string;
|
|
189
|
+
description: string;
|
|
190
|
+
}[];
|
|
191
|
+
reactions: {
|
|
192
|
+
title: string;
|
|
193
|
+
description: string;
|
|
194
|
+
}[];
|
|
195
|
+
processes: {
|
|
196
|
+
title: string;
|
|
197
|
+
description: string;
|
|
198
|
+
}[];
|
|
199
|
+
formulae: {
|
|
200
|
+
title: string;
|
|
201
|
+
description: string;
|
|
202
|
+
}[];
|
|
203
|
+
theme: {
|
|
204
|
+
title: string;
|
|
205
|
+
description: string;
|
|
206
|
+
}[];
|
|
207
|
+
centralIdea: {
|
|
208
|
+
title: string;
|
|
209
|
+
description: string;
|
|
210
|
+
}[];
|
|
211
|
+
poeticDevices: {
|
|
212
|
+
title: string;
|
|
213
|
+
description: string;
|
|
214
|
+
}[];
|
|
215
|
+
language: {
|
|
216
|
+
title: string;
|
|
217
|
+
description: string;
|
|
218
|
+
}[];
|
|
219
|
+
vocabulary: {
|
|
220
|
+
title: string;
|
|
221
|
+
description: string;
|
|
222
|
+
}[];
|
|
223
|
+
};
|
|
224
|
+
videoThumbnail: string;
|
|
225
|
+
createdAt: string;
|
|
226
|
+
updatedAt: string;
|
|
227
|
+
__v: number;
|
|
228
|
+
definition?: undefined;
|
|
229
|
+
video?: undefined;
|
|
230
|
+
theorem?: undefined;
|
|
231
|
+
formula?: undefined;
|
|
232
|
+
definitions?: undefined;
|
|
233
|
+
laws?: undefined;
|
|
234
|
+
applications?: undefined;
|
|
235
|
+
processes?: undefined;
|
|
236
|
+
keyConcept?: undefined;
|
|
237
|
+
timeline?: undefined;
|
|
238
|
+
theme?: undefined;
|
|
239
|
+
equations?: undefined;
|
|
240
|
+
summary?: undefined;
|
|
241
|
+
properties?: undefined;
|
|
242
|
+
keyConcepts?: undefined;
|
|
243
|
+
theorems?: undefined;
|
|
244
|
+
reactions?: undefined;
|
|
245
|
+
formulae?: undefined;
|
|
246
|
+
centralIdea?: undefined;
|
|
247
|
+
poeticDevices?: undefined;
|
|
248
|
+
language?: undefined;
|
|
249
|
+
vocabulary?: undefined;
|
|
250
|
+
};
|
|
251
|
+
videoThumbnail: string;
|
|
71
252
|
createdAt: string;
|
|
72
253
|
updatedAt: string;
|
|
73
254
|
__v: number;
|
|
74
|
-
basket: boolean;
|
|
75
|
-
inBasket: boolean;
|
|
76
|
-
videoThumbnail?: undefined;
|
|
77
|
-
recap?: undefined;
|
|
78
255
|
} | {
|
|
79
256
|
_id: string;
|
|
80
|
-
content: string;
|
|
81
257
|
type: string;
|
|
82
|
-
description: string;
|
|
83
258
|
contentType: string;
|
|
84
259
|
title: string;
|
|
85
260
|
freezeRefCount: number;
|
|
@@ -89,59 +264,216 @@ export const contentArrays: ({
|
|
|
89
264
|
topic: string[];
|
|
90
265
|
subTopic: never[];
|
|
91
266
|
knowledgeCell: string[];
|
|
92
|
-
transcript: string;
|
|
93
267
|
glossary: never[];
|
|
268
|
+
recap: {
|
|
269
|
+
theme: {
|
|
270
|
+
title: string;
|
|
271
|
+
description: string;
|
|
272
|
+
}[];
|
|
273
|
+
definition?: undefined;
|
|
274
|
+
video?: undefined;
|
|
275
|
+
theorem?: undefined;
|
|
276
|
+
formula?: undefined;
|
|
277
|
+
definitions?: undefined;
|
|
278
|
+
laws?: undefined;
|
|
279
|
+
applications?: undefined;
|
|
280
|
+
processes?: undefined;
|
|
281
|
+
keyConcept?: undefined;
|
|
282
|
+
timeline?: undefined;
|
|
283
|
+
_id?: undefined;
|
|
284
|
+
content?: undefined;
|
|
285
|
+
type?: undefined;
|
|
286
|
+
description?: undefined;
|
|
287
|
+
contentType?: undefined;
|
|
288
|
+
title?: undefined;
|
|
289
|
+
freezeRefCount?: undefined;
|
|
290
|
+
curriculum?: undefined;
|
|
291
|
+
grade?: undefined;
|
|
292
|
+
subject?: undefined;
|
|
293
|
+
topic?: undefined;
|
|
294
|
+
subTopic?: undefined;
|
|
295
|
+
knowledgeCell?: undefined;
|
|
296
|
+
transcript?: undefined;
|
|
297
|
+
glossary?: undefined;
|
|
298
|
+
recap?: undefined;
|
|
299
|
+
videoThumbnail?: undefined;
|
|
300
|
+
createdAt?: undefined;
|
|
301
|
+
updatedAt?: undefined;
|
|
302
|
+
__v?: undefined;
|
|
303
|
+
equations?: undefined;
|
|
304
|
+
summary?: undefined;
|
|
305
|
+
properties?: undefined;
|
|
306
|
+
keyConcepts?: undefined;
|
|
307
|
+
theorems?: undefined;
|
|
308
|
+
reactions?: undefined;
|
|
309
|
+
formulae?: undefined;
|
|
310
|
+
centralIdea?: undefined;
|
|
311
|
+
poeticDevices?: undefined;
|
|
312
|
+
language?: undefined;
|
|
313
|
+
vocabulary?: undefined;
|
|
314
|
+
};
|
|
94
315
|
createdAt: string;
|
|
95
316
|
updatedAt: string;
|
|
96
317
|
__v: number;
|
|
97
|
-
|
|
98
|
-
|
|
318
|
+
content?: undefined;
|
|
319
|
+
description?: undefined;
|
|
320
|
+
transcript?: undefined;
|
|
99
321
|
videoThumbnail?: undefined;
|
|
100
|
-
recap?: undefined;
|
|
101
322
|
} | {
|
|
102
323
|
_id: string;
|
|
103
|
-
content: string;
|
|
104
324
|
type: string;
|
|
105
|
-
description: string;
|
|
106
325
|
contentType: string;
|
|
107
326
|
title: string;
|
|
108
327
|
freezeRefCount: number;
|
|
109
328
|
curriculum: number[];
|
|
110
329
|
grade: string[];
|
|
111
|
-
subject:
|
|
330
|
+
subject: number[];
|
|
112
331
|
topic: string[];
|
|
113
332
|
subTopic: never[];
|
|
114
333
|
knowledgeCell: string[];
|
|
115
|
-
|
|
334
|
+
glossary: never[];
|
|
335
|
+
recap: {
|
|
336
|
+
equations: {
|
|
337
|
+
title: string;
|
|
338
|
+
description: string;
|
|
339
|
+
}[];
|
|
340
|
+
definition?: undefined;
|
|
341
|
+
video?: undefined;
|
|
342
|
+
theorem?: undefined;
|
|
343
|
+
formula?: undefined;
|
|
344
|
+
definitions?: undefined;
|
|
345
|
+
laws?: undefined;
|
|
346
|
+
applications?: undefined;
|
|
347
|
+
processes?: undefined;
|
|
348
|
+
keyConcept?: undefined;
|
|
349
|
+
timeline?: undefined;
|
|
350
|
+
_id?: undefined;
|
|
351
|
+
content?: undefined;
|
|
352
|
+
type?: undefined;
|
|
353
|
+
description?: undefined;
|
|
354
|
+
contentType?: undefined;
|
|
355
|
+
title?: undefined;
|
|
356
|
+
freezeRefCount?: undefined;
|
|
357
|
+
curriculum?: undefined;
|
|
358
|
+
grade?: undefined;
|
|
359
|
+
subject?: undefined;
|
|
360
|
+
topic?: undefined;
|
|
361
|
+
subTopic?: undefined;
|
|
362
|
+
knowledgeCell?: undefined;
|
|
363
|
+
transcript?: undefined;
|
|
364
|
+
glossary?: undefined;
|
|
365
|
+
recap?: undefined;
|
|
366
|
+
videoThumbnail?: undefined;
|
|
367
|
+
createdAt?: undefined;
|
|
368
|
+
updatedAt?: undefined;
|
|
369
|
+
__v?: undefined;
|
|
370
|
+
theme?: undefined;
|
|
371
|
+
summary?: undefined;
|
|
372
|
+
properties?: undefined;
|
|
373
|
+
keyConcepts?: undefined;
|
|
374
|
+
theorems?: undefined;
|
|
375
|
+
reactions?: undefined;
|
|
376
|
+
formulae?: undefined;
|
|
377
|
+
centralIdea?: undefined;
|
|
378
|
+
poeticDevices?: undefined;
|
|
379
|
+
language?: undefined;
|
|
380
|
+
vocabulary?: undefined;
|
|
381
|
+
};
|
|
116
382
|
createdAt: string;
|
|
117
383
|
updatedAt: string;
|
|
118
384
|
__v: number;
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
385
|
+
content?: undefined;
|
|
386
|
+
description?: undefined;
|
|
387
|
+
transcript?: undefined;
|
|
122
388
|
videoThumbnail?: undefined;
|
|
123
|
-
recap?: undefined;
|
|
124
389
|
} | {
|
|
125
390
|
_id: string;
|
|
126
|
-
content: string;
|
|
127
391
|
type: string;
|
|
128
|
-
description: string;
|
|
129
392
|
contentType: string;
|
|
130
393
|
title: string;
|
|
131
394
|
freezeRefCount: number;
|
|
132
395
|
curriculum: number[];
|
|
133
|
-
grade:
|
|
396
|
+
grade: string[];
|
|
134
397
|
subject: number[];
|
|
135
398
|
topic: string[];
|
|
136
399
|
subTopic: never[];
|
|
137
400
|
knowledgeCell: string[];
|
|
138
|
-
transcript: string;
|
|
139
401
|
glossary: never[];
|
|
140
402
|
recap: {
|
|
141
403
|
summary: {
|
|
142
404
|
title: string;
|
|
143
405
|
description: string;
|
|
144
406
|
}[];
|
|
407
|
+
equations: {
|
|
408
|
+
title: string;
|
|
409
|
+
description: string;
|
|
410
|
+
}[];
|
|
411
|
+
definition?: undefined;
|
|
412
|
+
video?: undefined;
|
|
413
|
+
theorem?: undefined;
|
|
414
|
+
formula?: undefined;
|
|
415
|
+
definitions?: undefined;
|
|
416
|
+
laws?: undefined;
|
|
417
|
+
applications?: undefined;
|
|
418
|
+
processes?: undefined;
|
|
419
|
+
keyConcept?: undefined;
|
|
420
|
+
timeline?: undefined;
|
|
421
|
+
_id?: undefined;
|
|
422
|
+
content?: undefined;
|
|
423
|
+
type?: undefined;
|
|
424
|
+
description?: undefined;
|
|
425
|
+
contentType?: undefined;
|
|
426
|
+
title?: undefined;
|
|
427
|
+
freezeRefCount?: undefined;
|
|
428
|
+
curriculum?: undefined;
|
|
429
|
+
grade?: undefined;
|
|
430
|
+
subject?: undefined;
|
|
431
|
+
topic?: undefined;
|
|
432
|
+
subTopic?: undefined;
|
|
433
|
+
knowledgeCell?: undefined;
|
|
434
|
+
transcript?: undefined;
|
|
435
|
+
glossary?: undefined;
|
|
436
|
+
recap?: undefined;
|
|
437
|
+
videoThumbnail?: undefined;
|
|
438
|
+
createdAt?: undefined;
|
|
439
|
+
updatedAt?: undefined;
|
|
440
|
+
__v?: undefined;
|
|
441
|
+
theme?: undefined;
|
|
442
|
+
properties?: undefined;
|
|
443
|
+
keyConcepts?: undefined;
|
|
444
|
+
theorems?: undefined;
|
|
445
|
+
reactions?: undefined;
|
|
446
|
+
formulae?: undefined;
|
|
447
|
+
centralIdea?: undefined;
|
|
448
|
+
poeticDevices?: undefined;
|
|
449
|
+
language?: undefined;
|
|
450
|
+
vocabulary?: undefined;
|
|
451
|
+
};
|
|
452
|
+
createdAt: string;
|
|
453
|
+
updatedAt: string;
|
|
454
|
+
__v: number;
|
|
455
|
+
content?: undefined;
|
|
456
|
+
description?: undefined;
|
|
457
|
+
transcript?: undefined;
|
|
458
|
+
videoThumbnail?: undefined;
|
|
459
|
+
} | {
|
|
460
|
+
_id: string;
|
|
461
|
+
content: string;
|
|
462
|
+
type: string;
|
|
463
|
+
description: string;
|
|
464
|
+
contentType: string;
|
|
465
|
+
title: string;
|
|
466
|
+
freezeRefCount: number;
|
|
467
|
+
curriculum: number[];
|
|
468
|
+
grade: string[];
|
|
469
|
+
subject: number[];
|
|
470
|
+
topic: string[];
|
|
471
|
+
subTopic: never[];
|
|
472
|
+
knowledgeCell: string[];
|
|
473
|
+
transcript: string;
|
|
474
|
+
glossary: never[];
|
|
475
|
+
recap: {
|
|
476
|
+
summary: never[];
|
|
145
477
|
definitions: {
|
|
146
478
|
title: string;
|
|
147
479
|
description: string;
|
|
@@ -166,10 +498,7 @@ export const contentArrays: ({
|
|
|
166
498
|
title: string;
|
|
167
499
|
description: string;
|
|
168
500
|
}[];
|
|
169
|
-
equations:
|
|
170
|
-
title: string;
|
|
171
|
-
description: string;
|
|
172
|
-
}[];
|
|
501
|
+
equations: never[];
|
|
173
502
|
reactions: {
|
|
174
503
|
title: string;
|
|
175
504
|
description: string;
|
|
@@ -202,12 +531,154 @@ export const contentArrays: ({
|
|
|
202
531
|
title: string;
|
|
203
532
|
description: string;
|
|
204
533
|
}[];
|
|
534
|
+
definition?: undefined;
|
|
535
|
+
video?: undefined;
|
|
536
|
+
theorem?: undefined;
|
|
537
|
+
formula?: undefined;
|
|
538
|
+
keyConcept?: undefined;
|
|
539
|
+
timeline?: undefined;
|
|
540
|
+
_id?: undefined;
|
|
541
|
+
content?: undefined;
|
|
542
|
+
type?: undefined;
|
|
543
|
+
description?: undefined;
|
|
544
|
+
contentType?: undefined;
|
|
545
|
+
title?: undefined;
|
|
546
|
+
freezeRefCount?: undefined;
|
|
547
|
+
curriculum?: undefined;
|
|
548
|
+
grade?: undefined;
|
|
549
|
+
subject?: undefined;
|
|
550
|
+
topic?: undefined;
|
|
551
|
+
subTopic?: undefined;
|
|
552
|
+
knowledgeCell?: undefined;
|
|
553
|
+
transcript?: undefined;
|
|
554
|
+
glossary?: undefined;
|
|
555
|
+
recap?: undefined;
|
|
556
|
+
videoThumbnail?: undefined;
|
|
557
|
+
createdAt?: undefined;
|
|
558
|
+
updatedAt?: undefined;
|
|
559
|
+
__v?: undefined;
|
|
560
|
+
};
|
|
561
|
+
videoThumbnail: string;
|
|
562
|
+
createdAt: string;
|
|
563
|
+
updatedAt: string;
|
|
564
|
+
__v: number;
|
|
565
|
+
} | {
|
|
566
|
+
_id: string;
|
|
567
|
+
content: string;
|
|
568
|
+
type: string;
|
|
569
|
+
description: string;
|
|
570
|
+
contentType: string;
|
|
571
|
+
title: string;
|
|
572
|
+
freezeRefCount: number;
|
|
573
|
+
curriculum: number[];
|
|
574
|
+
grade: number[];
|
|
575
|
+
subject: number[];
|
|
576
|
+
topic: string[];
|
|
577
|
+
subTopic: never[];
|
|
578
|
+
knowledgeCell: string[];
|
|
579
|
+
transcript: string;
|
|
580
|
+
glossary: never[];
|
|
581
|
+
recap: {
|
|
582
|
+
summary: {
|
|
583
|
+
title: string;
|
|
584
|
+
description: string;
|
|
585
|
+
}[];
|
|
586
|
+
equations: {
|
|
587
|
+
title: string;
|
|
588
|
+
description: string;
|
|
589
|
+
}[];
|
|
590
|
+
formulae: {
|
|
591
|
+
title: string;
|
|
592
|
+
description: string;
|
|
593
|
+
}[];
|
|
594
|
+
keyConcepts: {
|
|
595
|
+
title: string;
|
|
596
|
+
description: string;
|
|
597
|
+
}[];
|
|
598
|
+
definition?: undefined;
|
|
599
|
+
video?: undefined;
|
|
600
|
+
theorem?: undefined;
|
|
601
|
+
formula?: undefined;
|
|
602
|
+
definitions?: undefined;
|
|
603
|
+
laws?: undefined;
|
|
604
|
+
applications?: undefined;
|
|
605
|
+
processes?: undefined;
|
|
606
|
+
keyConcept?: undefined;
|
|
607
|
+
timeline?: undefined;
|
|
608
|
+
_id?: undefined;
|
|
609
|
+
content?: undefined;
|
|
610
|
+
type?: undefined;
|
|
611
|
+
description?: undefined;
|
|
612
|
+
contentType?: undefined;
|
|
613
|
+
title?: undefined;
|
|
614
|
+
freezeRefCount?: undefined;
|
|
615
|
+
curriculum?: undefined;
|
|
616
|
+
grade?: undefined;
|
|
617
|
+
subject?: undefined;
|
|
618
|
+
topic?: undefined;
|
|
619
|
+
subTopic?: undefined;
|
|
620
|
+
knowledgeCell?: undefined;
|
|
621
|
+
transcript?: undefined;
|
|
622
|
+
glossary?: undefined;
|
|
623
|
+
recap?: undefined;
|
|
624
|
+
videoThumbnail?: undefined;
|
|
625
|
+
createdAt?: undefined;
|
|
626
|
+
updatedAt?: undefined;
|
|
627
|
+
__v?: undefined;
|
|
628
|
+
theme?: undefined;
|
|
629
|
+
properties?: undefined;
|
|
630
|
+
theorems?: undefined;
|
|
631
|
+
reactions?: undefined;
|
|
632
|
+
centralIdea?: undefined;
|
|
633
|
+
poeticDevices?: undefined;
|
|
634
|
+
language?: undefined;
|
|
635
|
+
vocabulary?: undefined;
|
|
205
636
|
};
|
|
206
637
|
videoThumbnail: string;
|
|
207
638
|
createdAt: string;
|
|
208
639
|
updatedAt: string;
|
|
209
640
|
__v: number;
|
|
210
|
-
|
|
211
|
-
|
|
641
|
+
} | {
|
|
642
|
+
_id: string;
|
|
643
|
+
content: string;
|
|
644
|
+
type: string;
|
|
645
|
+
description: string;
|
|
646
|
+
contentType: string;
|
|
647
|
+
title: string;
|
|
648
|
+
freezeRefCount: number;
|
|
649
|
+
curriculum: number[];
|
|
650
|
+
grade: string[];
|
|
651
|
+
subject: number[];
|
|
652
|
+
topic: string[];
|
|
653
|
+
subTopic: never[];
|
|
654
|
+
knowledgeCell: string[];
|
|
655
|
+
transcript: string;
|
|
656
|
+
glossary: never[];
|
|
657
|
+
videoThumbnail: string;
|
|
658
|
+
createdAt: string;
|
|
659
|
+
updatedAt: string;
|
|
660
|
+
__v: number;
|
|
661
|
+
recap?: undefined;
|
|
662
|
+
} | {
|
|
663
|
+
_id: string;
|
|
664
|
+
content: string;
|
|
665
|
+
type: string;
|
|
666
|
+
description: string;
|
|
667
|
+
contentType: string;
|
|
668
|
+
title: string;
|
|
669
|
+
freezeRefCount: number;
|
|
670
|
+
curriculum: number[];
|
|
671
|
+
grade: string[];
|
|
672
|
+
subject: string[];
|
|
673
|
+
topic: string[];
|
|
674
|
+
subTopic: never[];
|
|
675
|
+
knowledgeCell: string[];
|
|
676
|
+
transcript: string;
|
|
677
|
+
createdAt: string;
|
|
678
|
+
updatedAt: string;
|
|
679
|
+
__v: number;
|
|
680
|
+
glossary?: undefined;
|
|
681
|
+
recap?: undefined;
|
|
682
|
+
videoThumbnail?: undefined;
|
|
212
683
|
})[];
|
|
213
684
|
export const contentMap: {};
|