@pocketprep/types 1.14.16 → 1.14.18
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/CMS/Cloud.d.ts +1 -7
- package/Teach/Cloud.d.ts +1 -1
- package/package.json +1 -1
package/CMS/Cloud.d.ts
CHANGED
|
@@ -347,17 +347,11 @@ export type getBloomLevelForQuestion = (params: {
|
|
|
347
347
|
export type updateRedisQuestions = (params: { compositeKey: string }) => void
|
|
348
348
|
|
|
349
349
|
export type exportExamMetadata = (params: {
|
|
350
|
+
newCompositeKey: string
|
|
350
351
|
examDraft: ExamDraftJSON
|
|
351
352
|
freeCount: number
|
|
352
353
|
archivedCount: number
|
|
353
354
|
totalCount: number
|
|
354
|
-
examKnowledgeAreas: {
|
|
355
|
-
[kaName: string]: {
|
|
356
|
-
name: string
|
|
357
|
-
count: number
|
|
358
|
-
specialCount: number
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
355
|
}) => string
|
|
362
356
|
|
|
363
357
|
export type exportQuestionData = (params: {
|
package/Teach/Cloud.d.ts
CHANGED