@vue-skuilder/db 0.1.32-e → 0.1.32-f
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/core/index.d.cts +20 -3
- package/dist/core/index.d.ts +20 -3
- package/dist/core/index.js +461 -30
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +461 -30
- package/dist/core/index.mjs.map +1 -1
- package/dist/impl/couch/index.js +461 -30
- package/dist/impl/couch/index.js.map +1 -1
- package/dist/impl/couch/index.mjs +461 -30
- package/dist/impl/couch/index.mjs.map +1 -1
- package/dist/impl/static/index.js +457 -28
- package/dist/impl/static/index.js.map +1 -1
- package/dist/impl/static/index.mjs +457 -28
- package/dist/impl/static/index.mjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +467 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +467 -32
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/core/navigators/Pipeline.ts +104 -13
- package/src/core/navigators/PipelineDebugger.ts +296 -3
- package/src/core/navigators/generators/CompositeGenerator.ts +4 -1
- package/src/core/navigators/generators/prescribed.ts +246 -22
- package/src/impl/couch/courseDB.ts +3 -2
- package/src/study/SessionController.ts +1 -0
- package/src/study/services/CardHydrationService.ts +6 -1
- package/tests/core/navigators/CompositeGenerator.test.ts +14 -50
- package/tests/core/navigators/Pipeline.test.ts +13 -12
package/dist/index.d.cts
CHANGED
|
@@ -106,6 +106,7 @@ interface HydratedCard<TView = unknown> {
|
|
|
106
106
|
item: StudySessionItem;
|
|
107
107
|
view: TView;
|
|
108
108
|
data: any[];
|
|
109
|
+
tags: string[];
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
interface MigrationOptions {
|
|
@@ -347,6 +348,7 @@ interface StudySessionRecord {
|
|
|
347
348
|
course_id: string;
|
|
348
349
|
card_id: string;
|
|
349
350
|
card_elo: number;
|
|
351
|
+
tags: string[];
|
|
350
352
|
};
|
|
351
353
|
item: StudySessionItem;
|
|
352
354
|
records: CardRecord[];
|
package/dist/index.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ interface HydratedCard<TView = unknown> {
|
|
|
106
106
|
item: StudySessionItem;
|
|
107
107
|
view: TView;
|
|
108
108
|
data: any[];
|
|
109
|
+
tags: string[];
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
interface MigrationOptions {
|
|
@@ -347,6 +348,7 @@ interface StudySessionRecord {
|
|
|
347
348
|
course_id: string;
|
|
348
349
|
card_id: string;
|
|
349
350
|
card_elo: number;
|
|
351
|
+
tags: string[];
|
|
350
352
|
};
|
|
351
353
|
item: StudySessionItem;
|
|
352
354
|
records: CardRecord[];
|