@pocketprep/types 1.15.18 → 1.15.20

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
@@ -325,4 +325,18 @@ export type KeywordDefinitionDraft = Parse.Object<{
325
325
  examGuid: string
326
326
  majorVersion?: number
327
327
  serial: string
328
+ }>
329
+
330
+ export type ConceptQuizGenerationQueueMessage = Parse.Object<{
331
+ conceptQuizId: string
332
+ isProcessing: boolean
333
+ attemptCount: number
334
+ failed?: boolean
335
+ }>
336
+
337
+ export type KeywordGenerationQueueMessage = Parse.Object<{
338
+ questionDraft: CMS.Class.QuestionDraft | Parse.Pointer
339
+ failed?: boolean
340
+ isProcessing: boolean
341
+ attemptCount: number
328
342
  }>
package/CMS/Cloud.d.ts CHANGED
@@ -365,4 +365,6 @@ export type exportQuestionData = (params: {
365
365
 
366
366
  export type deleteOldParseDataV2 = (params: {
367
367
  examMetadataId: string
368
- }) => void
368
+ }) => void
369
+
370
+ export type VectorizeQuestions = (params: { examMetadataId: string; serials: string[] }) => void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.15.18",
3
+ "version": "1.15.20",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",