@pocketprep/types 1.14.5 → 1.14.7
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/Study/Cloud.d.ts +4 -0
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -222,6 +222,7 @@ export type fetchQotDV4 = (params: {
|
|
|
222
222
|
daysSinceEpoch: number
|
|
223
223
|
examGuid: string
|
|
224
224
|
version: string
|
|
225
|
+
includeMatrixQuestions?: boolean
|
|
225
226
|
}) => Question[]
|
|
226
227
|
|
|
227
228
|
export type fetchQotDV5 = (params: {
|
|
@@ -229,6 +230,7 @@ export type fetchQotDV5 = (params: {
|
|
|
229
230
|
daysSinceEpoch: number
|
|
230
231
|
examGuid: string
|
|
231
232
|
version: string
|
|
233
|
+
includeMatrixQuestions?: boolean
|
|
232
234
|
}) => QuestionJSON[]
|
|
233
235
|
|
|
234
236
|
export type fetchSharedQotd = (params: {
|
|
@@ -383,6 +385,7 @@ export type fetchUserDataV2 = (params: {
|
|
|
383
385
|
examGuid: string
|
|
384
386
|
lastFetchedAt?: string // ISO8901 date string
|
|
385
387
|
version?: string
|
|
388
|
+
includeQuestionMetrics?: boolean
|
|
386
389
|
}) => {
|
|
387
390
|
quizzes: Quiz[]
|
|
388
391
|
subscriptions: Subscription[]
|
|
@@ -397,6 +400,7 @@ export type fetchUserDataV2 = (params: {
|
|
|
397
400
|
subjectId: string
|
|
398
401
|
levels: number[]
|
|
399
402
|
}[]
|
|
403
|
+
questionMetrics?: GlobalQuestionMetric[]
|
|
400
404
|
}
|
|
401
405
|
|
|
402
406
|
export type onboardingCompleted = (params: {
|