@pocketprep/types 1.13.52 → 1.13.54
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/Class.d.ts +1 -1
- package/CMS/Cloud.d.ts +1 -1
- package/Study/Class.d.ts +2 -2
- package/package.json +1 -1
package/CMS/Class.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type QuestionDraft = Parse.Object<{
|
|
|
23
23
|
bloomTaxonomyLevel?: Study.Class.BloomTaxonomyLevel
|
|
24
24
|
references?: string[]
|
|
25
25
|
explanation?: string
|
|
26
|
-
type: 'Multiple Choice' | 'Multiple Correct Response' |
|
|
26
|
+
type: 'Multiple Choice' | 'Multiple Correct Response' | 'True/False' | 'Matrix Checkbox' | 'Matrix Radio Button'
|
|
27
27
|
jobStatus?: 'Writer' | 'Editor' | 'Completed'
|
|
28
28
|
isArchived: boolean
|
|
29
29
|
job?: Job | Parse.Pointer
|
package/CMS/Cloud.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export interface JobWithMetrics {
|
|
|
56
56
|
}
|
|
57
57
|
export interface ExportableQuestion {
|
|
58
58
|
'Serial': string
|
|
59
|
-
'Type': 'Multiple Choice' | 'Multiple Correct Response' | 'True/False'
|
|
59
|
+
'Type': 'Multiple Choice' | 'Multiple Correct Response' | 'True/False' | 'Matrix Checkbox' | 'Matrix Radio Button'
|
|
60
60
|
'Status': 'Archived' | 'Complete'
|
|
61
61
|
'Classic': 1 | 0
|
|
62
62
|
'Is Special': 1 | 0
|
package/Study/Class.d.ts
CHANGED
|
@@ -395,7 +395,7 @@ export type Question = Parse.Object<{
|
|
|
395
395
|
serial: string
|
|
396
396
|
examMetadata: ExamMetadata | Parse.Pointer
|
|
397
397
|
compositeKey: string // leaving this for now as a replacement for `dirty` but will revisit later
|
|
398
|
-
type: 'Multiple Choice' | 'Multiple Correct Response' | 'True/False'
|
|
398
|
+
type: 'Multiple Choice' | 'Multiple Correct Response' | 'True/False' | 'Matrix Checkbox' | 'Matrix Radio Button'
|
|
399
399
|
addedDate: Date
|
|
400
400
|
isArchived: boolean
|
|
401
401
|
isFree: boolean
|
|
@@ -464,7 +464,7 @@ export type ExamData = Parse.Object<{
|
|
|
464
464
|
}
|
|
465
465
|
}
|
|
466
466
|
explanation?: string
|
|
467
|
-
type: 'Multiple Choice' | 'Multiple Correct Response' | 'True/False'
|
|
467
|
+
type: 'Multiple Choice' | 'Multiple Correct Response' | 'True/False' | 'Matrix Checkbox' | 'Matrix Radio Button'
|
|
468
468
|
subCategory?: string
|
|
469
469
|
isMockQuestion?: boolean
|
|
470
470
|
}>
|