@pocketprep/types 1.13.51 → 1.13.53

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 CHANGED
@@ -7,6 +7,12 @@ export interface ICopyleaksScore {
7
7
  aggregatedScore: number
8
8
  }
9
9
 
10
+ export interface IMatrixLabels{
11
+ columnLabelForRows: string
12
+ rows: string[]
13
+ columns: string[]
14
+ }
15
+
10
16
  export type QuestionDraft = Parse.Object<{
11
17
  prompt?: string
12
18
  examDataId?: string
@@ -17,7 +23,7 @@ export type QuestionDraft = Parse.Object<{
17
23
  bloomTaxonomyLevel?: Study.Class.BloomTaxonomyLevel
18
24
  references?: string[]
19
25
  explanation?: string
20
- type: 'Multiple Choice' | 'Multiple Correct Response' | 'True/False'
26
+ type: 'Multiple Choice' | 'Multiple Correct Response' | 'True/False' | 'Matrix Checkbox' | 'Matrix Radio Button'
21
27
  jobStatus?: 'Writer' | 'Editor' | 'Completed'
22
28
  isArchived: boolean
23
29
  job?: Job | Parse.Pointer
@@ -54,6 +60,8 @@ export type QuestionDraft = Parse.Object<{
54
60
  copyleaksId?: string
55
61
  copyleaksScore?: ICopyleaksScore
56
62
  lastUpdatedBy?: CMS.Class.User | Parse.Pointer
63
+ matrixLabels?: IMatrixLabels
64
+ matrixChoiceLayout?: string[][]
57
65
  }>
58
66
 
59
67
  export type QuestionDraftJSON = ReturnType<QuestionDraft['toJSON']>
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.13.51",
3
+ "version": "1.13.53",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",