@pocketprep/types 1.7.7 → 1.8.0
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 +6 -1
- package/Study/Class.d.ts +2 -2
- package/package.json +1 -1
package/CMS/Class.d.ts
CHANGED
|
@@ -126,10 +126,15 @@ export type ExamDraft = Parse.Object<{
|
|
|
126
126
|
examMetadataId?: string
|
|
127
127
|
appName: string
|
|
128
128
|
nativeAppName: string
|
|
129
|
+
releaseInfo: {
|
|
130
|
+
name: string
|
|
131
|
+
description: string
|
|
132
|
+
message: string
|
|
133
|
+
}
|
|
129
134
|
descriptiveName: string
|
|
130
135
|
compositeKey: string
|
|
131
136
|
appId: string
|
|
132
|
-
description
|
|
137
|
+
description: string
|
|
133
138
|
mockExamDrafts?: (Parse.Pointer | MockExamDraft)[]
|
|
134
139
|
isFree: boolean
|
|
135
140
|
}>
|
package/Study/Class.d.ts
CHANGED
|
@@ -356,7 +356,7 @@ export type ExamMetadata = Parse.Object<{
|
|
|
356
356
|
dirty: boolean
|
|
357
357
|
specialQuestions: number
|
|
358
358
|
nativeAppName: string
|
|
359
|
-
releaseInfo
|
|
359
|
+
releaseInfo: {
|
|
360
360
|
name: string
|
|
361
361
|
description: string
|
|
362
362
|
message: string
|
|
@@ -367,7 +367,7 @@ export type ExamMetadata = Parse.Object<{
|
|
|
367
367
|
classicQuestions: number
|
|
368
368
|
itemCount: number
|
|
369
369
|
appId: string
|
|
370
|
-
description
|
|
370
|
+
description: string
|
|
371
371
|
isFree: boolean
|
|
372
372
|
mockExams?: (MockExam | Parse.Pointer)[]
|
|
373
373
|
}>
|