@pocketprep/types 1.14.15 → 1.14.17
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 +2 -8
- package/package.json +1 -1
package/CMS/Cloud.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ export type createBundle = (params: BundlePayload) => string
|
|
|
166
166
|
|
|
167
167
|
export type fetchExams = () => ExamMetadata[]
|
|
168
168
|
|
|
169
|
-
export type fetchMockExams = (params: { examMetadataId
|
|
169
|
+
export type fetchMockExams = (params: { examMetadataId?: string }) => MockExam[]
|
|
170
170
|
|
|
171
171
|
export type fetchExam = (params: { examId: string }) => ExamMetadata | undefined
|
|
172
172
|
|
|
@@ -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: {
|