@quesmed/types 2.2.41 → 2.2.44

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