@quesmed/types-rn 2.4.33 → 2.4.35
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/models/Difficulty.d.ts +2 -1
- package/models/Difficulty.js +1 -0
- package/models/MockTest.d.ts +14 -2
- package/models/MockTest.js +10 -0
- package/package.json +1 -1
- package/resolvers/mutation/restricted/marksheet.js +60 -120
- package/resolvers/query/restricted/marksheet.js +55 -134
- package/resolvers/query/restricted/mockTests.d.ts +2 -2
- package/resolvers/query/restricted/todos.js +5 -0
- package/utils/lightgallery.js +1 -1
package/models/Difficulty.d.ts
CHANGED
package/models/Difficulty.js
CHANGED
|
@@ -7,4 +7,5 @@ var EDifficultyType;
|
|
|
7
7
|
EDifficultyType[EDifficultyType["CORE"] = 1] = "CORE";
|
|
8
8
|
EDifficultyType[EDifficultyType["CHALLENGING"] = 2] = "CHALLENGING";
|
|
9
9
|
EDifficultyType[EDifficultyType["DIFFICULT"] = 3] = "DIFFICULT";
|
|
10
|
+
EDifficultyType[EDifficultyType["QUICK_FIRE"] = 4] = "QUICK_FIRE";
|
|
10
11
|
})(EDifficultyType = exports.EDifficultyType || (exports.EDifficultyType = {}));
|
package/models/MockTest.d.ts
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
import { IQuestion } from './Question';
|
|
2
|
-
import { ETopicType } from './Topic';
|
|
3
2
|
import { Id } from './Type';
|
|
3
|
+
export declare enum EMockTestType {
|
|
4
|
+
ALL = 0,
|
|
5
|
+
FINALS = 1,
|
|
6
|
+
PSA = 2,
|
|
7
|
+
MISCELLANEOUS = 3,
|
|
8
|
+
UNIVERSITY_SPECIFIC = 4,
|
|
9
|
+
ANATOMY_SPOTTER = 5
|
|
10
|
+
}
|
|
11
|
+
export interface IMockTestType {
|
|
12
|
+
id: EMockTestType;
|
|
13
|
+
name: string;
|
|
14
|
+
}
|
|
4
15
|
export interface IMockTest {
|
|
5
16
|
id: Id;
|
|
6
17
|
createdAt: number | Date;
|
|
7
18
|
title: string;
|
|
8
19
|
topicIds: number[];
|
|
9
|
-
typeId:
|
|
20
|
+
typeId: EMockTestType | null;
|
|
10
21
|
passingMark: number;
|
|
11
22
|
public: boolean;
|
|
12
23
|
questions: IQuestion[];
|
|
@@ -15,6 +26,7 @@ export interface IUserMockTest {
|
|
|
15
26
|
id: Id;
|
|
16
27
|
title: string;
|
|
17
28
|
passingMark: number;
|
|
29
|
+
typeId: EMockTestType | null;
|
|
18
30
|
correct: number;
|
|
19
31
|
incorrect: number;
|
|
20
32
|
totalQuestions: number;
|
package/models/MockTest.js
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EMockTestType = void 0;
|
|
4
|
+
var EMockTestType;
|
|
5
|
+
(function (EMockTestType) {
|
|
6
|
+
EMockTestType[EMockTestType["ALL"] = 0] = "ALL";
|
|
7
|
+
EMockTestType[EMockTestType["FINALS"] = 1] = "FINALS";
|
|
8
|
+
EMockTestType[EMockTestType["PSA"] = 2] = "PSA";
|
|
9
|
+
EMockTestType[EMockTestType["MISCELLANEOUS"] = 3] = "MISCELLANEOUS";
|
|
10
|
+
EMockTestType[EMockTestType["UNIVERSITY_SPECIFIC"] = 4] = "UNIVERSITY_SPECIFIC";
|
|
11
|
+
EMockTestType[EMockTestType["ANATOMY_SPOTTER"] = 5] = "ANATOMY_SPOTTER";
|
|
12
|
+
})(EMockTestType = exports.EMockTestType || (exports.EMockTestType = {}));
|
package/package.json
CHANGED
|
@@ -125,6 +125,11 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
125
125
|
concept {
|
|
126
126
|
id
|
|
127
127
|
name
|
|
128
|
+
topic {
|
|
129
|
+
id
|
|
130
|
+
name
|
|
131
|
+
typeId
|
|
132
|
+
}
|
|
128
133
|
chapter {
|
|
129
134
|
id
|
|
130
135
|
explanation
|
|
@@ -139,11 +144,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
139
144
|
path256
|
|
140
145
|
index
|
|
141
146
|
topicId
|
|
142
|
-
topic {
|
|
143
|
-
id
|
|
144
|
-
name
|
|
145
|
-
typeId
|
|
146
|
-
}
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
videos {
|
|
@@ -173,11 +173,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
173
173
|
path512
|
|
174
174
|
path256
|
|
175
175
|
topicId
|
|
176
|
-
topic {
|
|
177
|
-
id
|
|
178
|
-
name
|
|
179
|
-
typeId
|
|
180
|
-
}
|
|
181
176
|
}
|
|
182
177
|
difficulty
|
|
183
178
|
psaSectionId
|
|
@@ -254,6 +249,11 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
254
249
|
concept {
|
|
255
250
|
id
|
|
256
251
|
name
|
|
252
|
+
topic {
|
|
253
|
+
id
|
|
254
|
+
name
|
|
255
|
+
typeId
|
|
256
|
+
}
|
|
257
257
|
chapter {
|
|
258
258
|
id
|
|
259
259
|
explanation
|
|
@@ -268,11 +268,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
268
268
|
path256
|
|
269
269
|
index
|
|
270
270
|
topicId
|
|
271
|
-
topic {
|
|
272
|
-
id
|
|
273
|
-
name
|
|
274
|
-
typeId
|
|
275
|
-
}
|
|
276
271
|
}
|
|
277
272
|
}
|
|
278
273
|
videos {
|
|
@@ -302,11 +297,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
302
297
|
path512
|
|
303
298
|
path256
|
|
304
299
|
topicId
|
|
305
|
-
topic {
|
|
306
|
-
id
|
|
307
|
-
name
|
|
308
|
-
typeId
|
|
309
|
-
}
|
|
310
300
|
}
|
|
311
301
|
difficulty
|
|
312
302
|
psaSectionId
|
|
@@ -386,6 +376,11 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
386
376
|
concept {
|
|
387
377
|
id
|
|
388
378
|
name
|
|
379
|
+
topic {
|
|
380
|
+
id
|
|
381
|
+
name
|
|
382
|
+
typeId
|
|
383
|
+
}
|
|
389
384
|
chapter {
|
|
390
385
|
id
|
|
391
386
|
explanation
|
|
@@ -400,11 +395,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
400
395
|
path256
|
|
401
396
|
index
|
|
402
397
|
topicId
|
|
403
|
-
topic {
|
|
404
|
-
id
|
|
405
|
-
name
|
|
406
|
-
typeId
|
|
407
|
-
}
|
|
408
398
|
}
|
|
409
399
|
}
|
|
410
400
|
videos {
|
|
@@ -434,11 +424,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
434
424
|
path512
|
|
435
425
|
path256
|
|
436
426
|
topicId
|
|
437
|
-
topic {
|
|
438
|
-
id
|
|
439
|
-
name
|
|
440
|
-
typeId
|
|
441
|
-
}
|
|
442
427
|
}
|
|
443
428
|
difficulty
|
|
444
429
|
psaSectionId
|
|
@@ -515,6 +500,11 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
515
500
|
concept {
|
|
516
501
|
id
|
|
517
502
|
name
|
|
503
|
+
topic {
|
|
504
|
+
id
|
|
505
|
+
name
|
|
506
|
+
typeId
|
|
507
|
+
}
|
|
518
508
|
chapter {
|
|
519
509
|
id
|
|
520
510
|
explanation
|
|
@@ -529,11 +519,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
529
519
|
path256
|
|
530
520
|
index
|
|
531
521
|
topicId
|
|
532
|
-
topic {
|
|
533
|
-
id
|
|
534
|
-
name
|
|
535
|
-
typeId
|
|
536
|
-
}
|
|
537
522
|
}
|
|
538
523
|
}
|
|
539
524
|
videos {
|
|
@@ -563,11 +548,6 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
563
548
|
path512
|
|
564
549
|
path256
|
|
565
550
|
topicId
|
|
566
|
-
topic {
|
|
567
|
-
id
|
|
568
|
-
name
|
|
569
|
-
typeId
|
|
570
|
-
}
|
|
571
551
|
}
|
|
572
552
|
difficulty
|
|
573
553
|
psaSectionId
|
|
@@ -739,6 +719,11 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
739
719
|
concept {
|
|
740
720
|
id
|
|
741
721
|
name
|
|
722
|
+
topic {
|
|
723
|
+
id
|
|
724
|
+
name
|
|
725
|
+
typeId
|
|
726
|
+
}
|
|
742
727
|
chapter {
|
|
743
728
|
id
|
|
744
729
|
explanation
|
|
@@ -753,11 +738,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
753
738
|
path256
|
|
754
739
|
index
|
|
755
740
|
topicId
|
|
756
|
-
topic {
|
|
757
|
-
id
|
|
758
|
-
name
|
|
759
|
-
typeId
|
|
760
|
-
}
|
|
761
741
|
}
|
|
762
742
|
}
|
|
763
743
|
videos {
|
|
@@ -787,11 +767,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
787
767
|
path512
|
|
788
768
|
path256
|
|
789
769
|
topicId
|
|
790
|
-
topic {
|
|
791
|
-
id
|
|
792
|
-
name
|
|
793
|
-
typeId
|
|
794
|
-
}
|
|
795
770
|
}
|
|
796
771
|
difficulty
|
|
797
772
|
psaSectionId
|
|
@@ -868,6 +843,11 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
868
843
|
concept {
|
|
869
844
|
id
|
|
870
845
|
name
|
|
846
|
+
topic {
|
|
847
|
+
id
|
|
848
|
+
name
|
|
849
|
+
typeId
|
|
850
|
+
}
|
|
871
851
|
chapter {
|
|
872
852
|
id
|
|
873
853
|
explanation
|
|
@@ -882,11 +862,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
882
862
|
path256
|
|
883
863
|
index
|
|
884
864
|
topicId
|
|
885
|
-
topic {
|
|
886
|
-
id
|
|
887
|
-
name
|
|
888
|
-
typeId
|
|
889
|
-
}
|
|
890
865
|
}
|
|
891
866
|
}
|
|
892
867
|
videos {
|
|
@@ -916,11 +891,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
916
891
|
path512
|
|
917
892
|
path256
|
|
918
893
|
topicId
|
|
919
|
-
topic {
|
|
920
|
-
id
|
|
921
|
-
name
|
|
922
|
-
typeId
|
|
923
|
-
}
|
|
924
894
|
}
|
|
925
895
|
difficulty
|
|
926
896
|
psaSectionId
|
|
@@ -1000,6 +970,11 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1000
970
|
concept {
|
|
1001
971
|
id
|
|
1002
972
|
name
|
|
973
|
+
topic {
|
|
974
|
+
id
|
|
975
|
+
name
|
|
976
|
+
typeId
|
|
977
|
+
}
|
|
1003
978
|
chapter {
|
|
1004
979
|
id
|
|
1005
980
|
explanation
|
|
@@ -1014,11 +989,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1014
989
|
path256
|
|
1015
990
|
index
|
|
1016
991
|
topicId
|
|
1017
|
-
topic {
|
|
1018
|
-
id
|
|
1019
|
-
name
|
|
1020
|
-
typeId
|
|
1021
|
-
}
|
|
1022
992
|
}
|
|
1023
993
|
}
|
|
1024
994
|
videos {
|
|
@@ -1048,11 +1018,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1048
1018
|
path512
|
|
1049
1019
|
path256
|
|
1050
1020
|
topicId
|
|
1051
|
-
topic {
|
|
1052
|
-
id
|
|
1053
|
-
name
|
|
1054
|
-
typeId
|
|
1055
|
-
}
|
|
1056
1021
|
}
|
|
1057
1022
|
difficulty
|
|
1058
1023
|
psaSectionId
|
|
@@ -1129,6 +1094,11 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1129
1094
|
concept {
|
|
1130
1095
|
id
|
|
1131
1096
|
name
|
|
1097
|
+
topic {
|
|
1098
|
+
id
|
|
1099
|
+
name
|
|
1100
|
+
typeId
|
|
1101
|
+
}
|
|
1132
1102
|
chapter {
|
|
1133
1103
|
id
|
|
1134
1104
|
explanation
|
|
@@ -1143,11 +1113,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1143
1113
|
path256
|
|
1144
1114
|
index
|
|
1145
1115
|
topicId
|
|
1146
|
-
topic {
|
|
1147
|
-
id
|
|
1148
|
-
name
|
|
1149
|
-
typeId
|
|
1150
|
-
}
|
|
1151
1116
|
}
|
|
1152
1117
|
}
|
|
1153
1118
|
videos {
|
|
@@ -1177,11 +1142,6 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1177
1142
|
path512
|
|
1178
1143
|
path256
|
|
1179
1144
|
topicId
|
|
1180
|
-
topic {
|
|
1181
|
-
id
|
|
1182
|
-
name
|
|
1183
|
-
typeId
|
|
1184
|
-
}
|
|
1185
1145
|
}
|
|
1186
1146
|
difficulty
|
|
1187
1147
|
psaSectionId
|
|
@@ -1358,6 +1318,11 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1358
1318
|
concept {
|
|
1359
1319
|
id
|
|
1360
1320
|
name
|
|
1321
|
+
topic {
|
|
1322
|
+
id
|
|
1323
|
+
name
|
|
1324
|
+
typeId
|
|
1325
|
+
}
|
|
1361
1326
|
chapter {
|
|
1362
1327
|
id
|
|
1363
1328
|
explanation
|
|
@@ -1372,11 +1337,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1372
1337
|
path256
|
|
1373
1338
|
index
|
|
1374
1339
|
topicId
|
|
1375
|
-
topic {
|
|
1376
|
-
id
|
|
1377
|
-
name
|
|
1378
|
-
typeId
|
|
1379
|
-
}
|
|
1380
1340
|
}
|
|
1381
1341
|
}
|
|
1382
1342
|
videos {
|
|
@@ -1406,11 +1366,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1406
1366
|
path512
|
|
1407
1367
|
path256
|
|
1408
1368
|
topicId
|
|
1409
|
-
topic {
|
|
1410
|
-
id
|
|
1411
|
-
name
|
|
1412
|
-
typeId
|
|
1413
|
-
}
|
|
1414
1369
|
}
|
|
1415
1370
|
difficulty
|
|
1416
1371
|
psaSectionId
|
|
@@ -1487,6 +1442,11 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1487
1442
|
concept {
|
|
1488
1443
|
id
|
|
1489
1444
|
name
|
|
1445
|
+
topic {
|
|
1446
|
+
id
|
|
1447
|
+
name
|
|
1448
|
+
typeId
|
|
1449
|
+
}
|
|
1490
1450
|
chapter {
|
|
1491
1451
|
id
|
|
1492
1452
|
explanation
|
|
@@ -1501,11 +1461,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1501
1461
|
path256
|
|
1502
1462
|
index
|
|
1503
1463
|
topicId
|
|
1504
|
-
topic {
|
|
1505
|
-
id
|
|
1506
|
-
name
|
|
1507
|
-
typeId
|
|
1508
|
-
}
|
|
1509
1464
|
}
|
|
1510
1465
|
}
|
|
1511
1466
|
videos {
|
|
@@ -1535,11 +1490,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1535
1490
|
path512
|
|
1536
1491
|
path256
|
|
1537
1492
|
topicId
|
|
1538
|
-
topic {
|
|
1539
|
-
id
|
|
1540
|
-
name
|
|
1541
|
-
typeId
|
|
1542
|
-
}
|
|
1543
1493
|
}
|
|
1544
1494
|
difficulty
|
|
1545
1495
|
psaSectionId
|
|
@@ -1619,6 +1569,11 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1619
1569
|
concept {
|
|
1620
1570
|
id
|
|
1621
1571
|
name
|
|
1572
|
+
topic {
|
|
1573
|
+
id
|
|
1574
|
+
name
|
|
1575
|
+
typeId
|
|
1576
|
+
}
|
|
1622
1577
|
chapter {
|
|
1623
1578
|
id
|
|
1624
1579
|
explanation
|
|
@@ -1633,11 +1588,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1633
1588
|
path256
|
|
1634
1589
|
index
|
|
1635
1590
|
topicId
|
|
1636
|
-
topic {
|
|
1637
|
-
id
|
|
1638
|
-
name
|
|
1639
|
-
typeId
|
|
1640
|
-
}
|
|
1641
1591
|
}
|
|
1642
1592
|
}
|
|
1643
1593
|
videos {
|
|
@@ -1667,11 +1617,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1667
1617
|
path512
|
|
1668
1618
|
path256
|
|
1669
1619
|
topicId
|
|
1670
|
-
topic {
|
|
1671
|
-
id
|
|
1672
|
-
name
|
|
1673
|
-
typeId
|
|
1674
|
-
}
|
|
1675
1620
|
}
|
|
1676
1621
|
difficulty
|
|
1677
1622
|
psaSectionId
|
|
@@ -1748,6 +1693,11 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1748
1693
|
concept {
|
|
1749
1694
|
id
|
|
1750
1695
|
name
|
|
1696
|
+
topic {
|
|
1697
|
+
id
|
|
1698
|
+
name
|
|
1699
|
+
typeId
|
|
1700
|
+
}
|
|
1751
1701
|
chapter {
|
|
1752
1702
|
id
|
|
1753
1703
|
explanation
|
|
@@ -1762,11 +1712,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1762
1712
|
path256
|
|
1763
1713
|
index
|
|
1764
1714
|
topicId
|
|
1765
|
-
topic {
|
|
1766
|
-
id
|
|
1767
|
-
name
|
|
1768
|
-
typeId
|
|
1769
|
-
}
|
|
1770
1715
|
}
|
|
1771
1716
|
}
|
|
1772
1717
|
videos {
|
|
@@ -1796,11 +1741,6 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1796
1741
|
path512
|
|
1797
1742
|
path256
|
|
1798
1743
|
topicId
|
|
1799
|
-
topic {
|
|
1800
|
-
id
|
|
1801
|
-
name
|
|
1802
|
-
typeId
|
|
1803
|
-
}
|
|
1804
1744
|
}
|
|
1805
1745
|
difficulty
|
|
1806
1746
|
psaSectionId
|
|
@@ -132,6 +132,11 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
132
132
|
concept {
|
|
133
133
|
id
|
|
134
134
|
name
|
|
135
|
+
topic {
|
|
136
|
+
id
|
|
137
|
+
name
|
|
138
|
+
typeId
|
|
139
|
+
}
|
|
135
140
|
chapter {
|
|
136
141
|
id
|
|
137
142
|
explanation
|
|
@@ -146,17 +151,8 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
146
151
|
path256
|
|
147
152
|
index
|
|
148
153
|
topicId
|
|
149
|
-
topic {
|
|
150
|
-
id
|
|
151
|
-
name
|
|
152
|
-
typeId
|
|
153
|
-
}
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
|
-
topic {
|
|
157
|
-
id
|
|
158
|
-
name
|
|
159
|
-
}
|
|
160
156
|
videos {
|
|
161
157
|
id
|
|
162
158
|
title
|
|
@@ -184,11 +180,6 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
184
180
|
path512
|
|
185
181
|
path256
|
|
186
182
|
topicId
|
|
187
|
-
topic {
|
|
188
|
-
id
|
|
189
|
-
name
|
|
190
|
-
typeId
|
|
191
|
-
}
|
|
192
183
|
}
|
|
193
184
|
difficulty
|
|
194
185
|
psaSectionId
|
|
@@ -279,11 +270,6 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
279
270
|
path256
|
|
280
271
|
index
|
|
281
272
|
topicId
|
|
282
|
-
topic {
|
|
283
|
-
id
|
|
284
|
-
name
|
|
285
|
-
typeId
|
|
286
|
-
}
|
|
287
273
|
}
|
|
288
274
|
}
|
|
289
275
|
videos {
|
|
@@ -313,11 +299,6 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
313
299
|
path512
|
|
314
300
|
path256
|
|
315
301
|
topicId
|
|
316
|
-
topic {
|
|
317
|
-
id
|
|
318
|
-
name
|
|
319
|
-
typeId
|
|
320
|
-
}
|
|
321
302
|
}
|
|
322
303
|
difficulty
|
|
323
304
|
psaSectionId
|
|
@@ -397,6 +378,11 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
397
378
|
concept {
|
|
398
379
|
id
|
|
399
380
|
name
|
|
381
|
+
topic {
|
|
382
|
+
id
|
|
383
|
+
name
|
|
384
|
+
typeId
|
|
385
|
+
}
|
|
400
386
|
chapter {
|
|
401
387
|
id
|
|
402
388
|
explanation
|
|
@@ -411,11 +397,6 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
411
397
|
path256
|
|
412
398
|
index
|
|
413
399
|
topicId
|
|
414
|
-
topic {
|
|
415
|
-
id
|
|
416
|
-
name
|
|
417
|
-
typeId
|
|
418
|
-
}
|
|
419
400
|
}
|
|
420
401
|
}
|
|
421
402
|
videos {
|
|
@@ -445,11 +426,6 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
445
426
|
path512
|
|
446
427
|
path256
|
|
447
428
|
topicId
|
|
448
|
-
topic {
|
|
449
|
-
id
|
|
450
|
-
name
|
|
451
|
-
typeId
|
|
452
|
-
}
|
|
453
429
|
}
|
|
454
430
|
difficulty
|
|
455
431
|
psaSectionId
|
|
@@ -526,6 +502,11 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
526
502
|
concept {
|
|
527
503
|
id
|
|
528
504
|
name
|
|
505
|
+
topic {
|
|
506
|
+
id
|
|
507
|
+
name
|
|
508
|
+
typeId
|
|
509
|
+
}
|
|
529
510
|
chapter {
|
|
530
511
|
id
|
|
531
512
|
explanation
|
|
@@ -540,11 +521,6 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
540
521
|
path256
|
|
541
522
|
index
|
|
542
523
|
topicId
|
|
543
|
-
topic {
|
|
544
|
-
id
|
|
545
|
-
name
|
|
546
|
-
typeId
|
|
547
|
-
}
|
|
548
524
|
}
|
|
549
525
|
}
|
|
550
526
|
videos {
|
|
@@ -574,11 +550,6 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
574
550
|
path512
|
|
575
551
|
path256
|
|
576
552
|
topicId
|
|
577
|
-
topic {
|
|
578
|
-
id
|
|
579
|
-
name
|
|
580
|
-
typeId
|
|
581
|
-
}
|
|
582
553
|
}
|
|
583
554
|
difficulty
|
|
584
555
|
psaSectionId
|
|
@@ -753,11 +724,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
753
724
|
path256
|
|
754
725
|
index
|
|
755
726
|
topicId
|
|
756
|
-
topic {
|
|
757
|
-
id
|
|
758
|
-
name
|
|
759
|
-
typeId
|
|
760
|
-
}
|
|
761
727
|
}
|
|
762
728
|
}
|
|
763
729
|
videos {
|
|
@@ -787,11 +753,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
787
753
|
path512
|
|
788
754
|
path256
|
|
789
755
|
topicId
|
|
790
|
-
topic {
|
|
791
|
-
id
|
|
792
|
-
name
|
|
793
|
-
typeId
|
|
794
|
-
}
|
|
795
756
|
}
|
|
796
757
|
}
|
|
797
758
|
mark {
|
|
@@ -871,6 +832,11 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
871
832
|
concept {
|
|
872
833
|
id
|
|
873
834
|
name
|
|
835
|
+
topic {
|
|
836
|
+
id
|
|
837
|
+
name
|
|
838
|
+
typeId
|
|
839
|
+
}
|
|
874
840
|
chapter {
|
|
875
841
|
id
|
|
876
842
|
explanation
|
|
@@ -885,11 +851,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
885
851
|
path256
|
|
886
852
|
index
|
|
887
853
|
topicId
|
|
888
|
-
topic {
|
|
889
|
-
id
|
|
890
|
-
name
|
|
891
|
-
typeId
|
|
892
|
-
}
|
|
893
854
|
}
|
|
894
855
|
}
|
|
895
856
|
videos {
|
|
@@ -919,11 +880,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
919
880
|
path512
|
|
920
881
|
path256
|
|
921
882
|
topicId
|
|
922
|
-
topic {
|
|
923
|
-
id
|
|
924
|
-
name
|
|
925
|
-
typeId
|
|
926
|
-
}
|
|
927
883
|
}
|
|
928
884
|
difficulty
|
|
929
885
|
psaSectionId
|
|
@@ -1000,6 +956,11 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1000
956
|
concept {
|
|
1001
957
|
id
|
|
1002
958
|
name
|
|
959
|
+
topic {
|
|
960
|
+
id
|
|
961
|
+
name
|
|
962
|
+
typeId
|
|
963
|
+
}
|
|
1003
964
|
chapter {
|
|
1004
965
|
id
|
|
1005
966
|
explanation
|
|
@@ -1014,11 +975,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1014
975
|
path256
|
|
1015
976
|
index
|
|
1016
977
|
topicId
|
|
1017
|
-
topic {
|
|
1018
|
-
id
|
|
1019
|
-
name
|
|
1020
|
-
typeId
|
|
1021
|
-
}
|
|
1022
978
|
}
|
|
1023
979
|
}
|
|
1024
980
|
videos {
|
|
@@ -1048,11 +1004,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1048
1004
|
path512
|
|
1049
1005
|
path256
|
|
1050
1006
|
topicId
|
|
1051
|
-
topic {
|
|
1052
|
-
id
|
|
1053
|
-
name
|
|
1054
|
-
typeId
|
|
1055
|
-
}
|
|
1056
1007
|
}
|
|
1057
1008
|
difficulty
|
|
1058
1009
|
psaSectionId
|
|
@@ -1132,6 +1083,11 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1132
1083
|
concept {
|
|
1133
1084
|
id
|
|
1134
1085
|
name
|
|
1086
|
+
topic {
|
|
1087
|
+
id
|
|
1088
|
+
name
|
|
1089
|
+
typeId
|
|
1090
|
+
}
|
|
1135
1091
|
chapter {
|
|
1136
1092
|
id
|
|
1137
1093
|
explanation
|
|
@@ -1146,11 +1102,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1146
1102
|
path256
|
|
1147
1103
|
index
|
|
1148
1104
|
topicId
|
|
1149
|
-
topic {
|
|
1150
|
-
id
|
|
1151
|
-
name
|
|
1152
|
-
typeId
|
|
1153
|
-
}
|
|
1154
1105
|
}
|
|
1155
1106
|
}
|
|
1156
1107
|
videos {
|
|
@@ -1180,11 +1131,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1180
1131
|
path512
|
|
1181
1132
|
path256
|
|
1182
1133
|
topicId
|
|
1183
|
-
topic {
|
|
1184
|
-
id
|
|
1185
|
-
name
|
|
1186
|
-
typeId
|
|
1187
|
-
}
|
|
1188
1134
|
}
|
|
1189
1135
|
difficulty
|
|
1190
1136
|
psaSectionId
|
|
@@ -1261,6 +1207,11 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1261
1207
|
concept {
|
|
1262
1208
|
id
|
|
1263
1209
|
name
|
|
1210
|
+
topic {
|
|
1211
|
+
id
|
|
1212
|
+
name
|
|
1213
|
+
typeId
|
|
1214
|
+
}
|
|
1264
1215
|
chapter {
|
|
1265
1216
|
id
|
|
1266
1217
|
explanation
|
|
@@ -1275,11 +1226,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1275
1226
|
path256
|
|
1276
1227
|
index
|
|
1277
1228
|
topicId
|
|
1278
|
-
topic {
|
|
1279
|
-
id
|
|
1280
|
-
name
|
|
1281
|
-
typeId
|
|
1282
|
-
}
|
|
1283
1229
|
}
|
|
1284
1230
|
}
|
|
1285
1231
|
videos {
|
|
@@ -1309,11 +1255,6 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1309
1255
|
path512
|
|
1310
1256
|
path256
|
|
1311
1257
|
topicId
|
|
1312
|
-
topic {
|
|
1313
|
-
id
|
|
1314
|
-
name
|
|
1315
|
-
typeId
|
|
1316
|
-
}
|
|
1317
1258
|
}
|
|
1318
1259
|
difficulty
|
|
1319
1260
|
psaSectionId
|
|
@@ -1478,6 +1419,11 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1478
1419
|
concept {
|
|
1479
1420
|
id
|
|
1480
1421
|
name
|
|
1422
|
+
topic {
|
|
1423
|
+
id
|
|
1424
|
+
name
|
|
1425
|
+
typeId
|
|
1426
|
+
}
|
|
1481
1427
|
chapter {
|
|
1482
1428
|
id
|
|
1483
1429
|
explanation
|
|
@@ -1492,11 +1438,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1492
1438
|
path256
|
|
1493
1439
|
index
|
|
1494
1440
|
topicId
|
|
1495
|
-
topic {
|
|
1496
|
-
id
|
|
1497
|
-
name
|
|
1498
|
-
typeId
|
|
1499
|
-
}
|
|
1500
1441
|
}
|
|
1501
1442
|
}
|
|
1502
1443
|
videos {
|
|
@@ -1526,11 +1467,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1526
1467
|
path512
|
|
1527
1468
|
path256
|
|
1528
1469
|
topicId
|
|
1529
|
-
topic {
|
|
1530
|
-
id
|
|
1531
|
-
name
|
|
1532
|
-
typeId
|
|
1533
|
-
}
|
|
1534
1470
|
}
|
|
1535
1471
|
difficulty
|
|
1536
1472
|
psaSectionId
|
|
@@ -1607,6 +1543,11 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1607
1543
|
concept {
|
|
1608
1544
|
id
|
|
1609
1545
|
name
|
|
1546
|
+
topic {
|
|
1547
|
+
id
|
|
1548
|
+
name
|
|
1549
|
+
typeId
|
|
1550
|
+
}
|
|
1610
1551
|
chapter {
|
|
1611
1552
|
id
|
|
1612
1553
|
explanation
|
|
@@ -1621,11 +1562,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1621
1562
|
path256
|
|
1622
1563
|
index
|
|
1623
1564
|
topicId
|
|
1624
|
-
topic {
|
|
1625
|
-
id
|
|
1626
|
-
name
|
|
1627
|
-
typeId
|
|
1628
|
-
}
|
|
1629
1565
|
}
|
|
1630
1566
|
}
|
|
1631
1567
|
videos {
|
|
@@ -1655,11 +1591,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1655
1591
|
path512
|
|
1656
1592
|
path256
|
|
1657
1593
|
topicId
|
|
1658
|
-
topic {
|
|
1659
|
-
id
|
|
1660
|
-
name
|
|
1661
|
-
typeId
|
|
1662
|
-
}
|
|
1663
1594
|
}
|
|
1664
1595
|
difficulty
|
|
1665
1596
|
psaSectionId
|
|
@@ -1739,6 +1670,11 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1739
1670
|
concept {
|
|
1740
1671
|
id
|
|
1741
1672
|
name
|
|
1673
|
+
topic {
|
|
1674
|
+
id
|
|
1675
|
+
name
|
|
1676
|
+
typeId
|
|
1677
|
+
}
|
|
1742
1678
|
chapter {
|
|
1743
1679
|
id
|
|
1744
1680
|
explanation
|
|
@@ -1753,11 +1689,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1753
1689
|
path256
|
|
1754
1690
|
index
|
|
1755
1691
|
topicId
|
|
1756
|
-
topic {
|
|
1757
|
-
id
|
|
1758
|
-
name
|
|
1759
|
-
typeId
|
|
1760
|
-
}
|
|
1761
1692
|
}
|
|
1762
1693
|
}
|
|
1763
1694
|
videos {
|
|
@@ -1787,11 +1718,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1787
1718
|
path512
|
|
1788
1719
|
path256
|
|
1789
1720
|
topicId
|
|
1790
|
-
topic {
|
|
1791
|
-
id
|
|
1792
|
-
name
|
|
1793
|
-
typeId
|
|
1794
|
-
}
|
|
1795
1721
|
}
|
|
1796
1722
|
difficulty
|
|
1797
1723
|
psaSectionId
|
|
@@ -1868,6 +1794,11 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1868
1794
|
concept {
|
|
1869
1795
|
id
|
|
1870
1796
|
name
|
|
1797
|
+
topic {
|
|
1798
|
+
id
|
|
1799
|
+
name
|
|
1800
|
+
typeId
|
|
1801
|
+
}
|
|
1871
1802
|
chapter {
|
|
1872
1803
|
id
|
|
1873
1804
|
explanation
|
|
@@ -1882,11 +1813,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1882
1813
|
path256
|
|
1883
1814
|
index
|
|
1884
1815
|
topicId
|
|
1885
|
-
topic {
|
|
1886
|
-
id
|
|
1887
|
-
name
|
|
1888
|
-
typeId
|
|
1889
|
-
}
|
|
1890
1816
|
}
|
|
1891
1817
|
}
|
|
1892
1818
|
videos {
|
|
@@ -1916,11 +1842,6 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1916
1842
|
path512
|
|
1917
1843
|
path256
|
|
1918
1844
|
topicId
|
|
1919
|
-
topic {
|
|
1920
|
-
id
|
|
1921
|
-
name
|
|
1922
|
-
typeId
|
|
1923
|
-
}
|
|
1924
1845
|
}
|
|
1925
1846
|
difficulty
|
|
1926
1847
|
psaSectionId
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EMockTestType, Id, IUserMockTest } from '../../../models';
|
|
2
2
|
import { graphqlNormalize, RestrictedData } from '../../types';
|
|
3
3
|
export interface IMockTestVar {
|
|
4
4
|
id: Id;
|
|
@@ -6,7 +6,7 @@ export interface IMockTestVar {
|
|
|
6
6
|
export type IMockTestData = RestrictedData<graphqlNormalize & IUserMockTest, 'mockTest'>;
|
|
7
7
|
export declare const MOCK_TEST: import("@apollo/client").DocumentNode;
|
|
8
8
|
export interface IMockTestsVar {
|
|
9
|
-
typeIds?:
|
|
9
|
+
typeIds?: EMockTestType[];
|
|
10
10
|
}
|
|
11
11
|
export type IMockTestsData = RestrictedData<(graphqlNormalize & IUserMockTest)[], 'mockTests'>;
|
|
12
12
|
export declare const MOCK_TESTS: import("@apollo/client").DocumentNode;
|
package/utils/lightgallery.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.lightgalleryOsceResolve = void 0;
|
|
4
|
-
const lightgalleryRegex = /\[lightgallery([0-9]{0,})\]
|
|
4
|
+
const lightgalleryRegex = /\[lightgallery([0-9]{0,})\]/g;
|
|
5
5
|
function isOsceMarksheet(data) {
|
|
6
6
|
return 'osceStationId' in data;
|
|
7
7
|
}
|