@pocketprep/types 1.13.50 → 1.13.51

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.
Files changed (2) hide show
  1. package/Study/Class.d.ts +11 -1
  2. package/package.json +1 -1
package/Study/Class.d.ts CHANGED
@@ -400,11 +400,21 @@ export type Question = Parse.Object<{
400
400
  isArchived: boolean
401
401
  isFree: boolean
402
402
  isMockQuestion: boolean
403
- keywords?: string[]
404
403
  }>
405
404
 
406
405
  export type QuestionJSON = ReturnType<Question['toJSON']>
407
406
 
407
+ export type KeywordDefinition = Parse.Object<{
408
+ examGuid: string
409
+ serial: string
410
+ keyword: string
411
+ definition: string
412
+ voteCountHelpful: number
413
+ voteCountUnhelpful: number
414
+ }>
415
+
416
+ export type KeywordDefinitionJSON = ReturnType<KeywordDefinition['toJSON']>
417
+
408
418
  export type ExamData = Parse.Object<{
409
419
  archived?: 0 | 1
410
420
  lastUpdated?: string // A date-formatted string...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.13.50",
3
+ "version": "1.13.51",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",