@quesmed/types-rn 2.6.201 → 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.201",
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,49 +45,11 @@ 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
  `;
136
51
  exports.DASHBOARD = (0, client_1.gql) `
137
- ${fragments_1.PICTURE_FIELDS}
138
- query Dashboard($filter: MarksheetFilterInput!, $order: Int) {
52
+ query Dashboard {
139
53
  restricted {
140
54
  latestPastMarksheetId
141
55
  latestSessionId
@@ -149,99 +63,6 @@ exports.DASHBOARD = (0, client_1.gql) `
149
63
  }
150
64
  universityId
151
65
  classYear
152
- completedQuestionsCount
153
- completedCorrectQuestionsCount
154
- completedIncorrectQuestionsCount
155
- completedCards {
156
- id
157
- createdAt
158
- updatedAt
159
- concept {
160
- id
161
- name
162
- }
163
- lastSeen
164
- reviewDate
165
- score
166
- iteration
167
- optimalFactor
168
- cardId
169
- card {
170
- id
171
- conceptId
172
- concept {
173
- id
174
- name
175
- }
176
- topic {
177
- id
178
- name
179
- }
180
- question
181
- explanation
182
- pictures {
183
- ...PictureFields
184
- }
185
- }
186
- }
187
- completedCardsCount
188
- completedGreenCardsCount
189
- completedYellowCardsCount
190
- completedRedCardsCount
191
- marksheetsCount
192
- dailyProgress {
193
- date
194
- dateString
195
- intensity
196
- totalCorrect
197
- totalCount
198
- }
199
- userProgress {
200
- marksheetCount
201
- questionsCount
202
- daysInCurrentStreak
203
- daysInPreviousStreak
204
- daysInLongestStreak
205
- }
206
- }
207
- totalQuestions
208
- totalCards
209
- marksheets(filter: $filter) {
210
- results {
211
- id
212
- topicNames
213
- correct
214
- incorrect
215
- totalQuestions
216
- isTestMarksheet
217
- }
218
- total
219
- }
220
- topics(filter: 0, order: $order) {
221
- id
222
- name
223
- entitlement {
224
- id
225
- name
226
- index
227
- }
228
- totalQuestions
229
- correctQuestions
230
- incorrectQuestions
231
- totalCards
232
- greenCards
233
- yellowCards
234
- redCards
235
- dailyFeedCards
236
- }
237
- universityLeaderboard(limit: 3) {
238
- updatedAt
239
- month {
240
- id
241
- name
242
- speciality
243
- rank
244
- }
245
66
  }
246
67
  }
247
68
  }