@quesmed/types 2.2.33 → 2.2.36

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.
@@ -9,6 +9,11 @@ export declare enum EMarksheetState {
9
9
  STATION = 3,
10
10
  RESULT = 4
11
11
  }
12
+ export declare enum EMarksheetType {
13
+ MOCKTEST = 0,
14
+ SOLO_STUDY = 1,
15
+ GROUP_STUDY = 2
16
+ }
12
17
  export declare enum EMarksheetAction {
13
18
  PRESTART = 0,
14
19
  START = 1,
@@ -41,6 +46,7 @@ export interface IMarksheet {
41
46
  updatedAt: number | Date;
42
47
  deletedAt: number | Date;
43
48
  startedAt: number | Date;
49
+ type: EMarksheetType;
44
50
  endedAt: number | Date;
45
51
  topicIds: number[];
46
52
  topicNames?: string[];
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EMarksheetAction = exports.EMarksheetState = void 0;
3
+ exports.EMarksheetAction = exports.EMarksheetType = exports.EMarksheetState = void 0;
4
4
  var EMarksheetState;
5
5
  (function (EMarksheetState) {
6
6
  EMarksheetState[EMarksheetState["LOBBY"] = 0] = "LOBBY";
@@ -9,6 +9,12 @@ var EMarksheetState;
9
9
  EMarksheetState[EMarksheetState["STATION"] = 3] = "STATION";
10
10
  EMarksheetState[EMarksheetState["RESULT"] = 4] = "RESULT";
11
11
  })(EMarksheetState = exports.EMarksheetState || (exports.EMarksheetState = {}));
12
+ var EMarksheetType;
13
+ (function (EMarksheetType) {
14
+ EMarksheetType[EMarksheetType["MOCKTEST"] = 0] = "MOCKTEST";
15
+ EMarksheetType[EMarksheetType["SOLO_STUDY"] = 1] = "SOLO_STUDY";
16
+ EMarksheetType[EMarksheetType["GROUP_STUDY"] = 2] = "GROUP_STUDY";
17
+ })(EMarksheetType = exports.EMarksheetType || (exports.EMarksheetType = {}));
12
18
  var EMarksheetAction;
13
19
  (function (EMarksheetAction) {
14
20
  EMarksheetAction[EMarksheetAction["PRESTART"] = 0] = "PRESTART";
@@ -11,6 +11,7 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
11
11
  createdAt
12
12
  startedAt
13
13
  endedAt
14
+ agoraId
14
15
  topicIds
15
16
  completed
16
17
  solo
@@ -1127,6 +1128,9 @@ exports.SAVE_MARKSHEET = (0, client_1.gql) `
1127
1128
  createdAt
1128
1129
  startedAt
1129
1130
  completed
1131
+ agoraId
1132
+ solo
1133
+ state
1130
1134
  endedAt
1131
1135
  marks {
1132
1136
  id
@@ -1240,21 +1244,546 @@ exports.START_OR_JOIN_MARKSHEET = (0, client_1.gql) `
1240
1244
  restricted {
1241
1245
  startOrJoinMarksheet(agoraId: $agoraId, solo: $solo) {
1242
1246
  id
1243
- createdAt
1244
- startedAt
1247
+ topicConceptData
1248
+ currentMarkId
1249
+ completed
1250
+ solo
1245
1251
  agoraId
1246
- endedAt
1247
- source
1248
- user {
1249
- id
1250
- displayName
1251
- }
1252
1252
  state
1253
1253
  users {
1254
1254
  id
1255
1255
  displayName
1256
1256
  }
1257
- completed
1257
+ builderConfig {
1258
+ difficulty
1259
+ isTest
1260
+ numberOfQuestions
1261
+ secondsPerQuestion
1262
+ unseen
1263
+ seenCorrect
1264
+ seenIncorrect
1265
+ }
1266
+ preBuildData {
1267
+ buildRef
1268
+ seenCorrect
1269
+ seenIncorrect
1270
+ unseen
1271
+ }
1272
+ createdAt
1273
+ startedAt
1274
+ endedAt
1275
+ isTestMarksheet
1276
+ source
1277
+ correct
1278
+ incorrect
1279
+ marks {
1280
+ id
1281
+ flagged
1282
+ index
1283
+ questionChoiceId
1284
+ marksheetId
1285
+ timeTaken
1286
+ isAnswered
1287
+ mark
1288
+ question {
1289
+ ... on QuestionSBA {
1290
+ conceptId
1291
+ difficulty
1292
+ dislikes
1293
+ explanation
1294
+ id
1295
+ isLikedByMe
1296
+ likes
1297
+ question
1298
+ totalVotes
1299
+ typeId
1300
+ choices {
1301
+ id
1302
+ explanation
1303
+ name
1304
+ label
1305
+ answer
1306
+ votes
1307
+ picture {
1308
+ id
1309
+ createdAt
1310
+ updatedAt
1311
+ name
1312
+ caption
1313
+ path
1314
+ path512
1315
+ path256
1316
+ }
1317
+ }
1318
+ comments {
1319
+ id
1320
+ createdAt
1321
+ comment
1322
+ likes
1323
+ user {
1324
+ id
1325
+ displayName
1326
+ }
1327
+ dislikes
1328
+ isLikedByMe
1329
+ questionId
1330
+ replies {
1331
+ id
1332
+ createdAt
1333
+ comment
1334
+ user {
1335
+ id
1336
+ displayName
1337
+ }
1338
+ likes
1339
+ dislikes
1340
+ isLikedByMe
1341
+ questionId
1342
+ }
1343
+ }
1344
+ concept {
1345
+ id
1346
+ name
1347
+ chapter {
1348
+ id
1349
+ explanation
1350
+ pictures {
1351
+ id
1352
+ createdAt
1353
+ updatedAt
1354
+ name
1355
+ caption
1356
+ path
1357
+ path512
1358
+ path256
1359
+ topicId
1360
+ topic {
1361
+ id
1362
+ name
1363
+ typeId
1364
+ }
1365
+ }
1366
+ }
1367
+ videos {
1368
+ id
1369
+ title
1370
+ museId
1371
+ startTime
1372
+ endTime
1373
+ thumbnail
1374
+ concepts {
1375
+ id
1376
+ name
1377
+ }
1378
+ live
1379
+ description
1380
+ duration
1381
+ }
1382
+ }
1383
+ pictures {
1384
+ id
1385
+ createdAt
1386
+ updatedAt
1387
+ name
1388
+ caption
1389
+ path
1390
+ path512
1391
+ path256
1392
+ topicId
1393
+ topic {
1394
+ id
1395
+ name
1396
+ typeId
1397
+ }
1398
+ }
1399
+ difficulty
1400
+ psaSectionId
1401
+ likes
1402
+ dislikes
1403
+ isLikedByMe
1404
+ sbaAnswer: answer
1405
+ }
1406
+ ... on QuestionQA {
1407
+ conceptId
1408
+ difficulty
1409
+ dislikes
1410
+ explanation
1411
+ id
1412
+ isLikedByMe
1413
+ likes
1414
+ question
1415
+ totalVotes
1416
+ typeId
1417
+ choices {
1418
+ id
1419
+ explanation
1420
+ name
1421
+ label
1422
+ answer
1423
+ votes
1424
+ picture {
1425
+ id
1426
+ createdAt
1427
+ updatedAt
1428
+ name
1429
+ caption
1430
+ path
1431
+ path512
1432
+ path256
1433
+ }
1434
+ }
1435
+ comments {
1436
+ id
1437
+ createdAt
1438
+ comment
1439
+ likes
1440
+ user {
1441
+ id
1442
+ displayName
1443
+ }
1444
+ dislikes
1445
+ isLikedByMe
1446
+ questionId
1447
+ replies {
1448
+ id
1449
+ createdAt
1450
+ comment
1451
+ user {
1452
+ id
1453
+ displayName
1454
+ }
1455
+ likes
1456
+ dislikes
1457
+ isLikedByMe
1458
+ questionId
1459
+ }
1460
+ }
1461
+ concept {
1462
+ id
1463
+ name
1464
+ chapter {
1465
+ id
1466
+ explanation
1467
+ pictures {
1468
+ id
1469
+ createdAt
1470
+ updatedAt
1471
+ name
1472
+ caption
1473
+ path
1474
+ path512
1475
+ path256
1476
+ topicId
1477
+ topic {
1478
+ id
1479
+ name
1480
+ typeId
1481
+ }
1482
+ }
1483
+ }
1484
+ videos {
1485
+ id
1486
+ title
1487
+ museId
1488
+ startTime
1489
+ endTime
1490
+ thumbnail
1491
+ concepts {
1492
+ id
1493
+ name
1494
+ }
1495
+ live
1496
+ description
1497
+ duration
1498
+ }
1499
+ }
1500
+ pictures {
1501
+ id
1502
+ createdAt
1503
+ updatedAt
1504
+ name
1505
+ caption
1506
+ path
1507
+ path512
1508
+ path256
1509
+ topicId
1510
+ topic {
1511
+ id
1512
+ name
1513
+ typeId
1514
+ }
1515
+ }
1516
+ difficulty
1517
+ psaSectionId
1518
+ likes
1519
+ dislikes
1520
+ isLikedByMe
1521
+ qaAnswer: answer {
1522
+ dose
1523
+ units
1524
+ }
1525
+ }
1526
+ ... on QuestionMultiA {
1527
+ conceptId
1528
+ difficulty
1529
+ dislikes
1530
+ explanation
1531
+ id
1532
+ isLikedByMe
1533
+ likes
1534
+ question
1535
+ totalVotes
1536
+ typeId
1537
+ choices {
1538
+ id
1539
+ explanation
1540
+ name
1541
+ label
1542
+ answer
1543
+ votes
1544
+ picture {
1545
+ id
1546
+ createdAt
1547
+ updatedAt
1548
+ name
1549
+ caption
1550
+ path
1551
+ path512
1552
+ path256
1553
+ }
1554
+ }
1555
+ comments {
1556
+ id
1557
+ createdAt
1558
+ comment
1559
+ likes
1560
+ user {
1561
+ id
1562
+ displayName
1563
+ }
1564
+ dislikes
1565
+ isLikedByMe
1566
+ questionId
1567
+ replies {
1568
+ id
1569
+ createdAt
1570
+ comment
1571
+ user {
1572
+ id
1573
+ displayName
1574
+ }
1575
+ likes
1576
+ dislikes
1577
+ isLikedByMe
1578
+ questionId
1579
+ }
1580
+ }
1581
+ concept {
1582
+ id
1583
+ name
1584
+ chapter {
1585
+ id
1586
+ explanation
1587
+ pictures {
1588
+ id
1589
+ createdAt
1590
+ updatedAt
1591
+ name
1592
+ caption
1593
+ path
1594
+ path512
1595
+ path256
1596
+ topicId
1597
+ topic {
1598
+ id
1599
+ name
1600
+ typeId
1601
+ }
1602
+ }
1603
+ }
1604
+ videos {
1605
+ id
1606
+ title
1607
+ museId
1608
+ startTime
1609
+ endTime
1610
+ thumbnail
1611
+ concepts {
1612
+ id
1613
+ name
1614
+ }
1615
+ live
1616
+ description
1617
+ duration
1618
+ }
1619
+ }
1620
+ pictures {
1621
+ id
1622
+ createdAt
1623
+ updatedAt
1624
+ name
1625
+ caption
1626
+ path
1627
+ path512
1628
+ path256
1629
+ topicId
1630
+ topic {
1631
+ id
1632
+ name
1633
+ typeId
1634
+ }
1635
+ }
1636
+ difficulty
1637
+ psaSectionId
1638
+ likes
1639
+ dislikes
1640
+ isLikedByMe
1641
+ multiAnswer: answer
1642
+ }
1643
+ ... on QuestionPrescription {
1644
+ conceptId
1645
+ difficulty
1646
+ dislikes
1647
+ explanation
1648
+ id
1649
+ isLikedByMe
1650
+ likes
1651
+ question
1652
+ totalVotes
1653
+ typeId
1654
+ choices {
1655
+ id
1656
+ explanation
1657
+ name
1658
+ label
1659
+ answer
1660
+ votes
1661
+ picture {
1662
+ id
1663
+ createdAt
1664
+ updatedAt
1665
+ name
1666
+ caption
1667
+ path
1668
+ path512
1669
+ path256
1670
+ }
1671
+ }
1672
+ comments {
1673
+ id
1674
+ createdAt
1675
+ comment
1676
+ likes
1677
+ user {
1678
+ id
1679
+ displayName
1680
+ }
1681
+ dislikes
1682
+ isLikedByMe
1683
+ questionId
1684
+ replies {
1685
+ id
1686
+ createdAt
1687
+ comment
1688
+ user {
1689
+ id
1690
+ displayName
1691
+ }
1692
+ likes
1693
+ dislikes
1694
+ isLikedByMe
1695
+ questionId
1696
+ }
1697
+ }
1698
+ concept {
1699
+ id
1700
+ name
1701
+ chapter {
1702
+ id
1703
+ explanation
1704
+ pictures {
1705
+ id
1706
+ createdAt
1707
+ updatedAt
1708
+ name
1709
+ caption
1710
+ path
1711
+ path512
1712
+ path256
1713
+ topicId
1714
+ topic {
1715
+ id
1716
+ name
1717
+ typeId
1718
+ }
1719
+ }
1720
+ }
1721
+ videos {
1722
+ id
1723
+ title
1724
+ museId
1725
+ startTime
1726
+ endTime
1727
+ thumbnail
1728
+ concepts {
1729
+ id
1730
+ name
1731
+ }
1732
+ live
1733
+ description
1734
+ duration
1735
+ }
1736
+ }
1737
+ pictures {
1738
+ id
1739
+ createdAt
1740
+ updatedAt
1741
+ name
1742
+ caption
1743
+ path
1744
+ path512
1745
+ path256
1746
+ topicId
1747
+ topic {
1748
+ id
1749
+ name
1750
+ typeId
1751
+ }
1752
+ }
1753
+ difficulty
1754
+ psaSectionId
1755
+ likes
1756
+ dislikes
1757
+ isLikedByMe
1758
+ prescribeAnswer: answer {
1759
+ dose {
1760
+ value
1761
+ display
1762
+ }
1763
+ drug {
1764
+ value
1765
+ display
1766
+ }
1767
+ route {
1768
+ value
1769
+ display
1770
+ }
1771
+ frequency {
1772
+ display
1773
+ value
1774
+ }
1775
+ duration {
1776
+ display
1777
+ value
1778
+ }
1779
+ units {
1780
+ display
1781
+ value
1782
+ }
1783
+ }
1784
+ }
1785
+ }
1786
+ }
1258
1787
  }
1259
1788
  }
1260
1789
  }
@@ -11,6 +11,7 @@ exports.MARKSHEET = (0, client_1.gql) `
11
11
  currentMarkId
12
12
  completed
13
13
  solo
14
+ agoraId
14
15
  state
15
16
  users {
16
17
  id
@@ -29,11 +29,14 @@ exports.SAMPLE_MARKSHEET = (0, client_1.gql) `
29
29
  sampleMarksheet(marksheetId: $marksheetId) {
30
30
  id
31
31
  endedAt
32
+ solo
32
33
  source
33
34
  marks {
34
35
  id
35
36
  index
36
37
  questionChoiceId
38
+ marksheetId
39
+ isAnswered
37
40
  timeTaken
38
41
  question {
39
42
  id
@@ -9,6 +9,11 @@ export declare enum EMarksheetState {
9
9
  STATION = 3,
10
10
  RESULT = 4
11
11
  }
12
+ export declare enum EMarksheetType {
13
+ MOCKTEST = 0,
14
+ SOLO_STUDY = 1,
15
+ GROUP_STUDY = 2
16
+ }
12
17
  export declare enum EMarksheetAction {
13
18
  PRESTART = 0,
14
19
  START = 1,
@@ -41,6 +46,7 @@ export interface IMarksheet {
41
46
  updatedAt: number | Date;
42
47
  deletedAt: number | Date;
43
48
  startedAt: number | Date;
49
+ type: EMarksheetType;
44
50
  endedAt: number | Date;
45
51
  topicIds: number[];
46
52
  topicNames?: string[];
@@ -6,6 +6,12 @@ export var EMarksheetState;
6
6
  EMarksheetState[EMarksheetState["STATION"] = 3] = "STATION";
7
7
  EMarksheetState[EMarksheetState["RESULT"] = 4] = "RESULT";
8
8
  })(EMarksheetState || (EMarksheetState = {}));
9
+ export var EMarksheetType;
10
+ (function (EMarksheetType) {
11
+ EMarksheetType[EMarksheetType["MOCKTEST"] = 0] = "MOCKTEST";
12
+ EMarksheetType[EMarksheetType["SOLO_STUDY"] = 1] = "SOLO_STUDY";
13
+ EMarksheetType[EMarksheetType["GROUP_STUDY"] = 2] = "GROUP_STUDY";
14
+ })(EMarksheetType || (EMarksheetType = {}));
9
15
  export var EMarksheetAction;
10
16
  (function (EMarksheetAction) {
11
17
  EMarksheetAction[EMarksheetAction["PRESTART"] = 0] = "PRESTART";
@@ -8,6 +8,7 @@ export const BUILD_MARKSHEET = gql `
8
8
  createdAt
9
9
  startedAt
10
10
  endedAt
11
+ agoraId
11
12
  topicIds
12
13
  completed
13
14
  solo
@@ -1124,6 +1125,9 @@ export const SAVE_MARKSHEET = gql `
1124
1125
  createdAt
1125
1126
  startedAt
1126
1127
  completed
1128
+ agoraId
1129
+ solo
1130
+ state
1127
1131
  endedAt
1128
1132
  marks {
1129
1133
  id
@@ -1235,21 +1239,546 @@ export const START_OR_JOIN_MARKSHEET = gql `
1235
1239
  restricted {
1236
1240
  startOrJoinMarksheet(agoraId: $agoraId, solo: $solo) {
1237
1241
  id
1238
- createdAt
1239
- startedAt
1242
+ topicConceptData
1243
+ currentMarkId
1244
+ completed
1245
+ solo
1240
1246
  agoraId
1241
- endedAt
1242
- source
1243
- user {
1244
- id
1245
- displayName
1246
- }
1247
1247
  state
1248
1248
  users {
1249
1249
  id
1250
1250
  displayName
1251
1251
  }
1252
- completed
1252
+ builderConfig {
1253
+ difficulty
1254
+ isTest
1255
+ numberOfQuestions
1256
+ secondsPerQuestion
1257
+ unseen
1258
+ seenCorrect
1259
+ seenIncorrect
1260
+ }
1261
+ preBuildData {
1262
+ buildRef
1263
+ seenCorrect
1264
+ seenIncorrect
1265
+ unseen
1266
+ }
1267
+ createdAt
1268
+ startedAt
1269
+ endedAt
1270
+ isTestMarksheet
1271
+ source
1272
+ correct
1273
+ incorrect
1274
+ marks {
1275
+ id
1276
+ flagged
1277
+ index
1278
+ questionChoiceId
1279
+ marksheetId
1280
+ timeTaken
1281
+ isAnswered
1282
+ mark
1283
+ question {
1284
+ ... on QuestionSBA {
1285
+ conceptId
1286
+ difficulty
1287
+ dislikes
1288
+ explanation
1289
+ id
1290
+ isLikedByMe
1291
+ likes
1292
+ question
1293
+ totalVotes
1294
+ typeId
1295
+ choices {
1296
+ id
1297
+ explanation
1298
+ name
1299
+ label
1300
+ answer
1301
+ votes
1302
+ picture {
1303
+ id
1304
+ createdAt
1305
+ updatedAt
1306
+ name
1307
+ caption
1308
+ path
1309
+ path512
1310
+ path256
1311
+ }
1312
+ }
1313
+ comments {
1314
+ id
1315
+ createdAt
1316
+ comment
1317
+ likes
1318
+ user {
1319
+ id
1320
+ displayName
1321
+ }
1322
+ dislikes
1323
+ isLikedByMe
1324
+ questionId
1325
+ replies {
1326
+ id
1327
+ createdAt
1328
+ comment
1329
+ user {
1330
+ id
1331
+ displayName
1332
+ }
1333
+ likes
1334
+ dislikes
1335
+ isLikedByMe
1336
+ questionId
1337
+ }
1338
+ }
1339
+ concept {
1340
+ id
1341
+ name
1342
+ chapter {
1343
+ id
1344
+ explanation
1345
+ pictures {
1346
+ id
1347
+ createdAt
1348
+ updatedAt
1349
+ name
1350
+ caption
1351
+ path
1352
+ path512
1353
+ path256
1354
+ topicId
1355
+ topic {
1356
+ id
1357
+ name
1358
+ typeId
1359
+ }
1360
+ }
1361
+ }
1362
+ videos {
1363
+ id
1364
+ title
1365
+ museId
1366
+ startTime
1367
+ endTime
1368
+ thumbnail
1369
+ concepts {
1370
+ id
1371
+ name
1372
+ }
1373
+ live
1374
+ description
1375
+ duration
1376
+ }
1377
+ }
1378
+ pictures {
1379
+ id
1380
+ createdAt
1381
+ updatedAt
1382
+ name
1383
+ caption
1384
+ path
1385
+ path512
1386
+ path256
1387
+ topicId
1388
+ topic {
1389
+ id
1390
+ name
1391
+ typeId
1392
+ }
1393
+ }
1394
+ difficulty
1395
+ psaSectionId
1396
+ likes
1397
+ dislikes
1398
+ isLikedByMe
1399
+ sbaAnswer: answer
1400
+ }
1401
+ ... on QuestionQA {
1402
+ conceptId
1403
+ difficulty
1404
+ dislikes
1405
+ explanation
1406
+ id
1407
+ isLikedByMe
1408
+ likes
1409
+ question
1410
+ totalVotes
1411
+ typeId
1412
+ choices {
1413
+ id
1414
+ explanation
1415
+ name
1416
+ label
1417
+ answer
1418
+ votes
1419
+ picture {
1420
+ id
1421
+ createdAt
1422
+ updatedAt
1423
+ name
1424
+ caption
1425
+ path
1426
+ path512
1427
+ path256
1428
+ }
1429
+ }
1430
+ comments {
1431
+ id
1432
+ createdAt
1433
+ comment
1434
+ likes
1435
+ user {
1436
+ id
1437
+ displayName
1438
+ }
1439
+ dislikes
1440
+ isLikedByMe
1441
+ questionId
1442
+ replies {
1443
+ id
1444
+ createdAt
1445
+ comment
1446
+ user {
1447
+ id
1448
+ displayName
1449
+ }
1450
+ likes
1451
+ dislikes
1452
+ isLikedByMe
1453
+ questionId
1454
+ }
1455
+ }
1456
+ concept {
1457
+ id
1458
+ name
1459
+ chapter {
1460
+ id
1461
+ explanation
1462
+ pictures {
1463
+ id
1464
+ createdAt
1465
+ updatedAt
1466
+ name
1467
+ caption
1468
+ path
1469
+ path512
1470
+ path256
1471
+ topicId
1472
+ topic {
1473
+ id
1474
+ name
1475
+ typeId
1476
+ }
1477
+ }
1478
+ }
1479
+ videos {
1480
+ id
1481
+ title
1482
+ museId
1483
+ startTime
1484
+ endTime
1485
+ thumbnail
1486
+ concepts {
1487
+ id
1488
+ name
1489
+ }
1490
+ live
1491
+ description
1492
+ duration
1493
+ }
1494
+ }
1495
+ pictures {
1496
+ id
1497
+ createdAt
1498
+ updatedAt
1499
+ name
1500
+ caption
1501
+ path
1502
+ path512
1503
+ path256
1504
+ topicId
1505
+ topic {
1506
+ id
1507
+ name
1508
+ typeId
1509
+ }
1510
+ }
1511
+ difficulty
1512
+ psaSectionId
1513
+ likes
1514
+ dislikes
1515
+ isLikedByMe
1516
+ qaAnswer: answer {
1517
+ dose
1518
+ units
1519
+ }
1520
+ }
1521
+ ... on QuestionMultiA {
1522
+ conceptId
1523
+ difficulty
1524
+ dislikes
1525
+ explanation
1526
+ id
1527
+ isLikedByMe
1528
+ likes
1529
+ question
1530
+ totalVotes
1531
+ typeId
1532
+ choices {
1533
+ id
1534
+ explanation
1535
+ name
1536
+ label
1537
+ answer
1538
+ votes
1539
+ picture {
1540
+ id
1541
+ createdAt
1542
+ updatedAt
1543
+ name
1544
+ caption
1545
+ path
1546
+ path512
1547
+ path256
1548
+ }
1549
+ }
1550
+ comments {
1551
+ id
1552
+ createdAt
1553
+ comment
1554
+ likes
1555
+ user {
1556
+ id
1557
+ displayName
1558
+ }
1559
+ dislikes
1560
+ isLikedByMe
1561
+ questionId
1562
+ replies {
1563
+ id
1564
+ createdAt
1565
+ comment
1566
+ user {
1567
+ id
1568
+ displayName
1569
+ }
1570
+ likes
1571
+ dislikes
1572
+ isLikedByMe
1573
+ questionId
1574
+ }
1575
+ }
1576
+ concept {
1577
+ id
1578
+ name
1579
+ chapter {
1580
+ id
1581
+ explanation
1582
+ pictures {
1583
+ id
1584
+ createdAt
1585
+ updatedAt
1586
+ name
1587
+ caption
1588
+ path
1589
+ path512
1590
+ path256
1591
+ topicId
1592
+ topic {
1593
+ id
1594
+ name
1595
+ typeId
1596
+ }
1597
+ }
1598
+ }
1599
+ videos {
1600
+ id
1601
+ title
1602
+ museId
1603
+ startTime
1604
+ endTime
1605
+ thumbnail
1606
+ concepts {
1607
+ id
1608
+ name
1609
+ }
1610
+ live
1611
+ description
1612
+ duration
1613
+ }
1614
+ }
1615
+ pictures {
1616
+ id
1617
+ createdAt
1618
+ updatedAt
1619
+ name
1620
+ caption
1621
+ path
1622
+ path512
1623
+ path256
1624
+ topicId
1625
+ topic {
1626
+ id
1627
+ name
1628
+ typeId
1629
+ }
1630
+ }
1631
+ difficulty
1632
+ psaSectionId
1633
+ likes
1634
+ dislikes
1635
+ isLikedByMe
1636
+ multiAnswer: answer
1637
+ }
1638
+ ... on QuestionPrescription {
1639
+ conceptId
1640
+ difficulty
1641
+ dislikes
1642
+ explanation
1643
+ id
1644
+ isLikedByMe
1645
+ likes
1646
+ question
1647
+ totalVotes
1648
+ typeId
1649
+ choices {
1650
+ id
1651
+ explanation
1652
+ name
1653
+ label
1654
+ answer
1655
+ votes
1656
+ picture {
1657
+ id
1658
+ createdAt
1659
+ updatedAt
1660
+ name
1661
+ caption
1662
+ path
1663
+ path512
1664
+ path256
1665
+ }
1666
+ }
1667
+ comments {
1668
+ id
1669
+ createdAt
1670
+ comment
1671
+ likes
1672
+ user {
1673
+ id
1674
+ displayName
1675
+ }
1676
+ dislikes
1677
+ isLikedByMe
1678
+ questionId
1679
+ replies {
1680
+ id
1681
+ createdAt
1682
+ comment
1683
+ user {
1684
+ id
1685
+ displayName
1686
+ }
1687
+ likes
1688
+ dislikes
1689
+ isLikedByMe
1690
+ questionId
1691
+ }
1692
+ }
1693
+ concept {
1694
+ id
1695
+ name
1696
+ chapter {
1697
+ id
1698
+ explanation
1699
+ pictures {
1700
+ id
1701
+ createdAt
1702
+ updatedAt
1703
+ name
1704
+ caption
1705
+ path
1706
+ path512
1707
+ path256
1708
+ topicId
1709
+ topic {
1710
+ id
1711
+ name
1712
+ typeId
1713
+ }
1714
+ }
1715
+ }
1716
+ videos {
1717
+ id
1718
+ title
1719
+ museId
1720
+ startTime
1721
+ endTime
1722
+ thumbnail
1723
+ concepts {
1724
+ id
1725
+ name
1726
+ }
1727
+ live
1728
+ description
1729
+ duration
1730
+ }
1731
+ }
1732
+ pictures {
1733
+ id
1734
+ createdAt
1735
+ updatedAt
1736
+ name
1737
+ caption
1738
+ path
1739
+ path512
1740
+ path256
1741
+ topicId
1742
+ topic {
1743
+ id
1744
+ name
1745
+ typeId
1746
+ }
1747
+ }
1748
+ difficulty
1749
+ psaSectionId
1750
+ likes
1751
+ dislikes
1752
+ isLikedByMe
1753
+ prescribeAnswer: answer {
1754
+ dose {
1755
+ value
1756
+ display
1757
+ }
1758
+ drug {
1759
+ value
1760
+ display
1761
+ }
1762
+ route {
1763
+ value
1764
+ display
1765
+ }
1766
+ frequency {
1767
+ display
1768
+ value
1769
+ }
1770
+ duration {
1771
+ display
1772
+ value
1773
+ }
1774
+ units {
1775
+ display
1776
+ value
1777
+ }
1778
+ }
1779
+ }
1780
+ }
1781
+ }
1253
1782
  }
1254
1783
  }
1255
1784
  }
@@ -8,6 +8,7 @@ export const MARKSHEET = gql `
8
8
  currentMarkId
9
9
  completed
10
10
  solo
11
+ agoraId
11
12
  state
12
13
  users {
13
14
  id
@@ -26,11 +26,14 @@ export const SAMPLE_MARKSHEET = gql `
26
26
  sampleMarksheet(marksheetId: $marksheetId) {
27
27
  id
28
28
  endedAt
29
+ solo
29
30
  source
30
31
  marks {
31
32
  id
32
33
  index
33
34
  questionChoiceId
35
+ marksheetId
36
+ isAnswered
34
37
  timeTaken
35
38
  question {
36
39
  id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types",
3
- "version": "2.2.33",
3
+ "version": "2.2.36",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",