@pocketprep/types 1.16.21 → 1.16.23

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/Cloud.d.ts +19 -3
  2. package/package.json +1 -1
package/Study/Cloud.d.ts CHANGED
@@ -760,8 +760,10 @@ export type fetchExamNamesByQuestionSerials = (params: { serials: string[] }) =>
760
760
  [serial: string]: string[]
761
761
  }
762
762
 
763
- export type updateCurrentExam = (params: {
764
- examMetadataId: string
763
+ export type updateCurrentExam = (params: {
764
+ examMetadataId: string
765
+ platform?: Platform
766
+ clientAppId?: string
765
767
  }) => UserExamMetadataJSON
766
768
 
767
769
  export type CustomerIOCustomer = {
@@ -818,4 +820,18 @@ export type upsertUserExamBackground = (params: {
818
820
  export type fetchConceptQuizQuestions = (params: {
819
821
  conceptQuizId: string
820
822
  questionCount: number
821
- }) => QuestionJSON[]
823
+ }) => QuestionJSON[]
824
+
825
+ export type fetchReadinessReportDetails = (params: {
826
+ examMetadataId: string
827
+ }) => {
828
+ readinessScoreRFNumeric: number
829
+ readinessScoreRFNonNumeric: 'High' | 'Good' | 'Moderate' | 'Low'
830
+ features: {
831
+ id: string
832
+ title: string
833
+ definition: string
834
+ displayValue: string
835
+ influence: -1 | 0 | 1
836
+ }[]
837
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.16.21",
3
+ "version": "1.16.23",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",