@pocketprep/types 1.7.6 → 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 CHANGED
@@ -126,12 +126,17 @@ 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
- happyUsers?: string
133
- description?: string
137
+ description: string
134
138
  mockExamDrafts?: (Parse.Pointer | MockExamDraft)[]
139
+ isFree: boolean
135
140
  }>
136
141
 
137
142
  export type ExamDraftJSON = ReturnType<ExamDraft['toJSON']>
package/CMS/Cloud.d.ts CHANGED
@@ -88,11 +88,11 @@ export interface ExportData {
88
88
  descriptiveName: string
89
89
  nativeAppName: string
90
90
  hideReferences: boolean
91
+ isFree: boolean
91
92
  itemCount: number
92
93
  version: string
93
94
  exportDate: string
94
95
  items: ExportableQuestion[]
95
- happyUsers: string
96
96
  description: string
97
97
  mockExams: {
98
98
  description: string
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,9 +367,8 @@ export type ExamMetadata = Parse.Object<{
367
367
  classicQuestions: number
368
368
  itemCount: number
369
369
  appId: string
370
- happyUsers?: string
371
- description?: string
372
- isFree?: boolean
370
+ description: string
371
+ isFree: boolean
373
372
  mockExams?: (MockExam | Parse.Pointer)[]
374
373
  }>
375
374
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.7.6",
3
+ "version": "1.8.0",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "main": "",
6
6
  "repository": {