@quesmed/types-rn 2.6.202 → 2.6.203

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.202",
3
+ "version": "2.6.203",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -2,61 +2,20 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DASHBOARD = exports.DASHBOARD_QBANK = void 0;
4
4
  const client_1 = require("@apollo/client");
5
- const fragments_1 = require("../../fragments");
6
5
  exports.DASHBOARD_QBANK = (0, client_1.gql) `
7
- ${fragments_1.PICTURE_FIELDS}
8
- query Dashboard_Qbank($filter: MarksheetFilterInput!) {
6
+ query Dashboard_Qbank {
9
7
  restricted {
10
8
  latestPastMarksheetId
11
- latestSessionId
12
9
  user {
13
10
  id
14
11
  settings {
15
12
  productSettings {
16
13
  examDate
17
- nextFeedbackDate
18
14
  }
19
15
  }
20
16
  completedQuestionsCount
21
17
  completedCorrectQuestionsCount
22
18
  completedIncorrectQuestionsCount
23
- completedCards {
24
- id
25
- createdAt
26
- updatedAt
27
- concept {
28
- id
29
- name
30
- }
31
- lastSeen
32
- reviewDate
33
- score
34
- iteration
35
- optimalFactor
36
- cardId
37
- card {
38
- id
39
- conceptId
40
- concept {
41
- id
42
- name
43
- }
44
- topic {
45
- id
46
- name
47
- }
48
- question
49
- explanation
50
- pictures {
51
- ...PictureFields
52
- }
53
- }
54
- }
55
- completedCardsCount
56
- completedGreenCardsCount
57
- completedYellowCardsCount
58
- completedRedCardsCount
59
- marksheetsCount
60
19
  dailyFeed {
61
20
  topics {
62
21
  id
@@ -76,13 +35,6 @@ exports.DASHBOARD_QBANK = (0, client_1.gql) `
76
35
  greenCards
77
36
  dailyTask
78
37
  }
79
- dailyProgress {
80
- date
81
- dateString
82
- intensity
83
- totalCorrect
84
- totalCount
85
- }
86
38
  userProgress {
87
39
  marksheetCount
88
40
  questionsCount
@@ -93,43 +45,6 @@ exports.DASHBOARD_QBANK = (0, client_1.gql) `
93
45
  }
94
46
  totalQuestions
95
47
  totalCards
96
- marksheets(filter: $filter) {
97
- results {
98
- id
99
- topicNames
100
- correct
101
- incorrect
102
- totalQuestions
103
- isTestMarksheet
104
- }
105
- total
106
- }
107
- topics(filter: 0) {
108
- id
109
- name
110
- entitlement {
111
- id
112
- name
113
- index
114
- }
115
- totalQuestions
116
- correctQuestions
117
- incorrectQuestions
118
- totalCards
119
- greenCards
120
- yellowCards
121
- redCards
122
- dailyFeedCards
123
- }
124
- universityLeaderboard(limit: 3) {
125
- updatedAt
126
- month {
127
- id
128
- name
129
- speciality
130
- rank
131
- }
132
- }
133
48
  }
134
49
  }
135
50
  `;