@gmb/bitmark-parser-generator 3.0.0 → 3.1.0

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.
Files changed (122) hide show
  1. package/dist/browser/bitmark-parser-generator.min.js +1 -1
  2. package/dist/browser/bundle-report.html +2 -2
  3. package/dist/cjs/ast/Builder.js +37 -6
  4. package/dist/cjs/ast/Builder.js.map +1 -1
  5. package/dist/cjs/config/Config.js +18 -2
  6. package/dist/cjs/config/Config.js.map +1 -1
  7. package/dist/cjs/config/raw/bits.js +136 -31
  8. package/dist/cjs/config/raw/bits.js.map +1 -1
  9. package/dist/cjs/config/raw/cardSets.js +25 -0
  10. package/dist/cjs/config/raw/cardSets.js.map +1 -1
  11. package/dist/cjs/config/raw/groups.js +17 -0
  12. package/dist/cjs/config/raw/groups.js.map +1 -1
  13. package/dist/cjs/config/raw/properties.js +17 -0
  14. package/dist/cjs/config/raw/properties.js.map +1 -1
  15. package/dist/cjs/generated/build-info.js +1 -1
  16. package/dist/cjs/generated/parser/text/text-peggy-parser.js +315 -272
  17. package/dist/cjs/generated/parser/text/text-peggy-parser.js.map +1 -1
  18. package/dist/cjs/generator/bitmark/BitmarkGenerator.js +46 -4
  19. package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
  20. package/dist/cjs/generator/json/JsonGenerator.js +30 -3
  21. package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
  22. package/dist/cjs/generator/text/TextGenerator.js +11 -0
  23. package/dist/cjs/generator/text/TextGenerator.js.map +1 -1
  24. package/dist/cjs/model/ast/NodeType.js +6 -0
  25. package/dist/cjs/model/ast/NodeType.js.map +1 -1
  26. package/dist/cjs/model/config/BitConfig.js +3 -1
  27. package/dist/cjs/model/config/BitConfig.js.map +1 -1
  28. package/dist/cjs/model/config/enum/CardSetConfigKey.js +1 -0
  29. package/dist/cjs/model/config/enum/CardSetConfigKey.js.map +1 -1
  30. package/dist/cjs/model/config/enum/GroupConfigKey.js +1 -0
  31. package/dist/cjs/model/config/enum/GroupConfigKey.js.map +1 -1
  32. package/dist/cjs/model/config/enum/PropertyConfigKey.js +3 -0
  33. package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
  34. package/dist/cjs/model/enum/BitType.js +1 -0
  35. package/dist/cjs/model/enum/BitType.js.map +1 -1
  36. package/dist/cjs/model/enum/TextNodeType.js +2 -0
  37. package/dist/cjs/model/enum/TextNodeType.js.map +1 -1
  38. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  39. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +32 -0
  40. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  41. package/dist/esm/ast/Builder.js +37 -6
  42. package/dist/esm/ast/Builder.js.map +1 -1
  43. package/dist/esm/config/Config.js +18 -2
  44. package/dist/esm/config/Config.js.map +1 -1
  45. package/dist/esm/config/raw/bits.js +136 -31
  46. package/dist/esm/config/raw/bits.js.map +1 -1
  47. package/dist/esm/config/raw/cardSets.js +25 -0
  48. package/dist/esm/config/raw/cardSets.js.map +1 -1
  49. package/dist/esm/config/raw/groups.js +17 -0
  50. package/dist/esm/config/raw/groups.js.map +1 -1
  51. package/dist/esm/config/raw/properties.js +17 -0
  52. package/dist/esm/config/raw/properties.js.map +1 -1
  53. package/dist/esm/generated/build-info.js +1 -1
  54. package/dist/esm/generated/parser/text/text-peggy-parser.js +315 -272
  55. package/dist/esm/generated/parser/text/text-peggy-parser.js.map +1 -1
  56. package/dist/esm/generator/bitmark/BitmarkGenerator.js +46 -4
  57. package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
  58. package/dist/esm/generator/json/JsonGenerator.js +30 -3
  59. package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
  60. package/dist/esm/generator/text/TextGenerator.js +11 -0
  61. package/dist/esm/generator/text/TextGenerator.js.map +1 -1
  62. package/dist/esm/model/ast/NodeType.js +6 -0
  63. package/dist/esm/model/ast/NodeType.js.map +1 -1
  64. package/dist/esm/model/config/BitConfig.js +3 -1
  65. package/dist/esm/model/config/BitConfig.js.map +1 -1
  66. package/dist/esm/model/config/enum/CardSetConfigKey.js +1 -0
  67. package/dist/esm/model/config/enum/CardSetConfigKey.js.map +1 -1
  68. package/dist/esm/model/config/enum/GroupConfigKey.js +1 -0
  69. package/dist/esm/model/config/enum/GroupConfigKey.js.map +1 -1
  70. package/dist/esm/model/config/enum/PropertyConfigKey.js +3 -0
  71. package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
  72. package/dist/esm/model/enum/BitType.js +1 -0
  73. package/dist/esm/model/enum/BitType.js.map +1 -1
  74. package/dist/esm/model/enum/TextNodeType.js +2 -0
  75. package/dist/esm/model/enum/TextNodeType.js.map +1 -1
  76. package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  77. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +32 -0
  78. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  79. package/dist/types/ast/Builder.d.ts +12 -1
  80. package/dist/types/ast/Builder.d.ts.map +1 -1
  81. package/dist/types/config/Config.d.ts.map +1 -1
  82. package/dist/types/config/raw/bits.d.ts.map +1 -1
  83. package/dist/types/config/raw/cardSets.d.ts.map +1 -1
  84. package/dist/types/config/raw/groups.d.ts.map +1 -1
  85. package/dist/types/config/raw/properties.d.ts.map +1 -1
  86. package/dist/types/generated/parser/text/text-peggy-parser.d.ts.map +1 -1
  87. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +2 -1
  88. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
  89. package/dist/types/generator/json/JsonGenerator.d.ts +1 -0
  90. package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
  91. package/dist/types/generator/text/TextGenerator.d.ts +2 -1
  92. package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
  93. package/dist/types/model/ast/NodeType.d.ts +12 -0
  94. package/dist/types/model/ast/NodeType.d.ts.map +1 -1
  95. package/dist/types/model/ast/Nodes.d.ts +5 -1
  96. package/dist/types/model/ast/Nodes.d.ts.map +1 -1
  97. package/dist/types/model/ast/TextNodes.d.ts +7 -0
  98. package/dist/types/model/ast/TextNodes.d.ts.map +1 -1
  99. package/dist/types/model/config/BitConfig.d.ts +18 -1
  100. package/dist/types/model/config/BitConfig.d.ts.map +1 -1
  101. package/dist/types/model/config/_Config.d.ts +1 -0
  102. package/dist/types/model/config/_Config.d.ts.map +1 -1
  103. package/dist/types/model/config/enum/CardSetConfigKey.d.ts +2 -0
  104. package/dist/types/model/config/enum/CardSetConfigKey.d.ts.map +1 -1
  105. package/dist/types/model/config/enum/ConfigKey.d.ts +8 -0
  106. package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
  107. package/dist/types/model/config/enum/GroupConfigKey.d.ts +3 -0
  108. package/dist/types/model/config/enum/GroupConfigKey.d.ts.map +1 -1
  109. package/dist/types/model/config/enum/PropertyConfigKey.d.ts +9 -0
  110. package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
  111. package/dist/types/model/enum/BitType.d.ts +2 -0
  112. package/dist/types/model/enum/BitType.d.ts.map +1 -1
  113. package/dist/types/model/enum/PropertyTag.d.ts +6 -0
  114. package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
  115. package/dist/types/model/enum/TextNodeType.d.ts +2 -0
  116. package/dist/types/model/enum/TextNodeType.d.ts.map +1 -1
  117. package/dist/types/model/json/BitJson.d.ts +11 -0
  118. package/dist/types/model/json/BitJson.d.ts.map +1 -1
  119. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +2 -1
  120. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
  121. package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts.map +1 -1
  122. package/package.json +1 -1
@@ -18,11 +18,16 @@ const BITS = {
18
18
  },
19
19
  [BitType.appFlashcards]: {
20
20
  since: '1.3.0',
21
+ quizBit: true,
21
22
  tags: [
22
23
  {
23
24
  type: BitTagType.group,
24
25
  configKey: GroupConfigKey.group_standardTags,
25
26
  },
27
+ {
28
+ type: BitTagType.group,
29
+ configKey: GroupConfigKey.group_quizCommon,
30
+ },
26
31
  {
27
32
  type: BitTagType.tag,
28
33
  configKey: TagConfigKey.title,
@@ -288,37 +293,37 @@ const BITS = {
288
293
  },
289
294
  ],
290
295
  },
291
- [BitType.bookAcknowledgements]: { since: '1.17.0', baseBitType: BitType.book },
292
- [BitType.bookAddendum]: { since: '1.3.0', baseBitType: BitType.book },
293
- [BitType.bookAfterword]: { since: '1.3.0', baseBitType: BitType.book },
294
- [BitType.bookAppendix]: { since: '1.3.0', baseBitType: BitType.book },
295
- [BitType.bookArticle]: { since: '1.3.0', baseBitType: BitType.book },
296
- [BitType.bookAutherBio]: { since: '1.3.0', baseBitType: BitType.book },
297
- [BitType.bookBibliography]: { since: '1.3.0', baseBitType: BitType.book },
298
- [BitType.bookComingSoon]: { since: '1.3.0', baseBitType: BitType.book },
299
- [BitType.bookConclusion]: { since: '1.3.0', baseBitType: BitType.book },
300
- [BitType.bookCopyright]: { since: '1.3.0', baseBitType: BitType.book },
301
- [BitType.bookCopyrightPermissions]: { since: '1.3.0', baseBitType: BitType.book },
302
- [BitType.bookDedication]: { since: '1.3.0', baseBitType: BitType.book },
303
- [BitType.bookEndnotes]: { since: '1.3.0', baseBitType: BitType.book },
304
- [BitType.bookEpigraph]: { since: '1.3.0', baseBitType: BitType.book },
305
- [BitType.bookEpilogue]: { since: '1.3.0', baseBitType: BitType.book },
306
- [BitType.bookForword]: { since: '1.3.0', baseBitType: BitType.book },
307
- [BitType.bookFrontispiece]: { since: '1.3.0', baseBitType: BitType.book },
308
- [BitType.bookImprint]: { since: '1.3.0', baseBitType: BitType.book },
309
- [BitType.bookIncitingIncident]: { since: '1.3.0', baseBitType: BitType.book },
310
- [BitType.bookIntroduction]: { since: '1.3.0', baseBitType: BitType.book },
311
- [BitType.bookListOfContributors]: { since: '1.3.0', baseBitType: BitType.book },
312
- [BitType.bookNotes]: { since: '1.3.0', baseBitType: BitType.book },
313
- [BitType.bookPostscript]: { since: '1.3.0', baseBitType: BitType.book },
314
- [BitType.bookPreface]: { since: '1.3.0', baseBitType: BitType.book },
315
- [BitType.bookPrologue]: { since: '1.3.0', baseBitType: BitType.book },
316
- [BitType.bookReadMore]: { since: '1.3.0', baseBitType: BitType.book },
317
- [BitType.bookReferenceList]: { since: '1.3.0', baseBitType: BitType.book },
318
- [BitType.bookRequestForABookReview]: { since: '1.3.0', baseBitType: BitType.book },
319
- [BitType.bookSummary]: { since: '1.3.0', baseBitType: BitType.book },
320
- [BitType.bookTeaser]: { since: '1.3.0', baseBitType: BitType.book },
321
- [BitType.bookTitle]: { since: '1.3.0', baseBitType: BitType.book },
296
+ [BitType.bookAcknowledgements]: { since: '1.17.0', baseBitType: BitType.article },
297
+ [BitType.bookAddendum]: { since: '1.3.0', baseBitType: BitType.article },
298
+ [BitType.bookAfterword]: { since: '1.3.0', baseBitType: BitType.article },
299
+ [BitType.bookAppendix]: { since: '1.3.0', baseBitType: BitType.article },
300
+ [BitType.bookArticle]: { since: '1.3.0', baseBitType: BitType.article },
301
+ [BitType.bookAutherBio]: { since: '1.3.0', baseBitType: BitType.article },
302
+ [BitType.bookBibliography]: { since: '1.3.0', baseBitType: BitType.article },
303
+ [BitType.bookComingSoon]: { since: '1.3.0', baseBitType: BitType.article },
304
+ [BitType.bookConclusion]: { since: '1.3.0', baseBitType: BitType.article },
305
+ [BitType.bookCopyright]: { since: '1.3.0', baseBitType: BitType.article },
306
+ [BitType.bookCopyrightPermissions]: { since: '1.3.0', baseBitType: BitType.article },
307
+ [BitType.bookDedication]: { since: '1.3.0', baseBitType: BitType.article },
308
+ [BitType.bookEndnotes]: { since: '1.3.0', baseBitType: BitType.article },
309
+ [BitType.bookEpigraph]: { since: '1.3.0', baseBitType: BitType.article },
310
+ [BitType.bookEpilogue]: { since: '1.3.0', baseBitType: BitType.article },
311
+ [BitType.bookForword]: { since: '1.3.0', baseBitType: BitType.article },
312
+ [BitType.bookFrontispiece]: { since: '1.3.0', baseBitType: BitType.article },
313
+ [BitType.bookImprint]: { since: '1.3.0', baseBitType: BitType.article },
314
+ [BitType.bookIncitingIncident]: { since: '1.3.0', baseBitType: BitType.article },
315
+ [BitType.bookIntroduction]: { since: '1.3.0', baseBitType: BitType.article },
316
+ [BitType.bookListOfContributors]: { since: '1.3.0', baseBitType: BitType.article },
317
+ [BitType.bookNotes]: { since: '1.3.0', baseBitType: BitType.article },
318
+ [BitType.bookPostscript]: { since: '1.3.0', baseBitType: BitType.article },
319
+ [BitType.bookPreface]: { since: '1.3.0', baseBitType: BitType.article },
320
+ [BitType.bookPrologue]: { since: '1.3.0', baseBitType: BitType.article },
321
+ [BitType.bookReadMore]: { since: '1.3.0', baseBitType: BitType.article },
322
+ [BitType.bookReferenceList]: { since: '1.3.0', baseBitType: BitType.article },
323
+ [BitType.bookRequestForABookReview]: { since: '1.3.0', baseBitType: BitType.article },
324
+ [BitType.bookSummary]: { since: '1.3.0', baseBitType: BitType.article },
325
+ [BitType.bookTeaser]: { since: '1.3.0', baseBitType: BitType.article },
326
+ [BitType.bookTitle]: { since: '1.3.0', baseBitType: BitType.article },
322
327
  [BitType.bookAlias]: {
323
328
  since: '1.4.3',
324
329
  baseBitType: BitType.book,
@@ -399,11 +404,16 @@ const BITS = {
399
404
  },
400
405
  [BitType.card1]: {
401
406
  since: '1.3.0',
407
+ quizBit: true,
402
408
  tags: [
403
409
  {
404
410
  type: BitTagType.group,
405
411
  configKey: GroupConfigKey.group_standardTags,
406
412
  },
413
+ {
414
+ type: BitTagType.group,
415
+ configKey: GroupConfigKey.group_quizCommon,
416
+ },
407
417
  ],
408
418
  },
409
419
  [BitType.question1]: { since: '1.3.0', baseBitType: BitType.card1 },
@@ -436,11 +446,16 @@ const BITS = {
436
446
  },
437
447
  [BitType.clozeAndMultipleChoiceText]: {
438
448
  since: '1.3.0',
449
+ quizBit: true,
439
450
  tags: [
440
451
  {
441
452
  type: BitTagType.group,
442
453
  configKey: GroupConfigKey.group_standardTags,
443
454
  },
455
+ {
456
+ type: BitTagType.group,
457
+ configKey: GroupConfigKey.group_quizCommon,
458
+ },
444
459
  {
445
460
  type: BitTagType.group,
446
461
  configKey: GroupConfigKey.group_gap,
@@ -457,11 +472,16 @@ const BITS = {
457
472
  },
458
473
  [BitType.cloze]: {
459
474
  since: '1.3.0',
475
+ quizBit: true,
460
476
  tags: [
461
477
  {
462
478
  type: BitTagType.group,
463
479
  configKey: GroupConfigKey.group_standardTags,
464
480
  },
481
+ {
482
+ type: BitTagType.group,
483
+ configKey: GroupConfigKey.group_quizCommon,
484
+ },
465
485
  {
466
486
  type: BitTagType.property,
467
487
  configKey: PropertyConfigKey.isCaseSensitive,
@@ -497,11 +517,16 @@ const BITS = {
497
517
  [BitType.coachCallToActionCloze]: { since: '1.3.0', baseBitType: BitType.cloze },
498
518
  [BitType.clozeList]: {
499
519
  since: '1.4.13',
520
+ quizBit: true,
500
521
  tags: [
501
522
  {
502
523
  type: BitTagType.group,
503
524
  configKey: GroupConfigKey.group_standardTags,
504
525
  },
526
+ {
527
+ type: BitTagType.group,
528
+ configKey: GroupConfigKey.group_quizCommon,
529
+ },
505
530
  ],
506
531
  cardSet: CardSetConfigKey._clozeList,
507
532
  },
@@ -715,11 +740,16 @@ const BITS = {
715
740
  },
716
741
  [BitType.essay]: {
717
742
  since: '1.3.0',
743
+ quizBit: true,
718
744
  tags: [
719
745
  {
720
746
  type: BitTagType.group,
721
747
  configKey: GroupConfigKey.group_standardTags,
722
748
  },
749
+ {
750
+ type: BitTagType.group,
751
+ configKey: GroupConfigKey.group_quizCommon,
752
+ },
723
753
  {
724
754
  type: BitTagType.property,
725
755
  configKey: PropertyConfigKey.reasonableNumOfChars,
@@ -1122,11 +1152,16 @@ const BITS = {
1122
1152
  },
1123
1153
  [BitType.flashcard]: {
1124
1154
  since: '1.3.0',
1155
+ quizBit: true,
1125
1156
  tags: [
1126
1157
  {
1127
1158
  type: BitTagType.group,
1128
1159
  configKey: GroupConfigKey.group_standardTags,
1129
1160
  },
1161
+ {
1162
+ type: BitTagType.group,
1163
+ configKey: GroupConfigKey.group_quizCommon,
1164
+ },
1130
1165
  ],
1131
1166
  cardSet: CardSetConfigKey._flashcardLike,
1132
1167
  },
@@ -1147,11 +1182,16 @@ const BITS = {
1147
1182
  },
1148
1183
  [BitType.highlightText]: {
1149
1184
  since: '1.3.0',
1185
+ quizBit: true,
1150
1186
  tags: [
1151
1187
  {
1152
1188
  type: BitTagType.group,
1153
1189
  configKey: GroupConfigKey.group_standardTags,
1154
1190
  },
1191
+ {
1192
+ type: BitTagType.group,
1193
+ configKey: GroupConfigKey.group_quizCommon,
1194
+ },
1155
1195
  {
1156
1196
  type: BitTagType.group,
1157
1197
  configKey: GroupConfigKey.group_trueFalse,
@@ -1379,11 +1419,16 @@ const BITS = {
1379
1419
  },
1380
1420
  [BitType.interview]: {
1381
1421
  since: '1.3.0',
1422
+ quizBit: true,
1382
1423
  tags: [
1383
1424
  {
1384
1425
  type: BitTagType.group,
1385
1426
  configKey: GroupConfigKey.group_standardTags,
1386
1427
  },
1428
+ {
1429
+ type: BitTagType.group,
1430
+ configKey: GroupConfigKey.group_quizCommon,
1431
+ },
1387
1432
  {
1388
1433
  type: BitTagType.property,
1389
1434
  configKey: PropertyConfigKey.reasonableNumOfChars,
@@ -1592,11 +1637,16 @@ const BITS = {
1592
1637
  [BitType.smartStandardListItemCollapsible]: { since: '1.28.0', baseBitType: BitType.smartStandardListItem },
1593
1638
  [BitType.mark]: {
1594
1639
  since: '1.3.0',
1640
+ quizBit: true,
1595
1641
  tags: [
1596
1642
  {
1597
1643
  type: BitTagType.group,
1598
1644
  configKey: GroupConfigKey.group_standardTags,
1599
1645
  },
1646
+ {
1647
+ type: BitTagType.group,
1648
+ configKey: GroupConfigKey.group_quizCommon,
1649
+ },
1600
1650
  {
1601
1651
  type: BitTagType.group,
1602
1652
  configKey: GroupConfigKey.group_markConfig,
@@ -1609,11 +1659,16 @@ const BITS = {
1609
1659
  },
1610
1660
  [BitType.match]: {
1611
1661
  since: '1.3.0',
1662
+ quizBit: true,
1612
1663
  tags: [
1613
1664
  {
1614
1665
  type: BitTagType.group,
1615
1666
  configKey: GroupConfigKey.group_standardTags,
1616
1667
  },
1668
+ {
1669
+ type: BitTagType.group,
1670
+ configKey: GroupConfigKey.group_quizCommon,
1671
+ },
1617
1672
  {
1618
1673
  type: BitTagType.property,
1619
1674
  configKey: PropertyConfigKey.isCaseSensitive,
@@ -1642,11 +1697,16 @@ const BITS = {
1642
1697
  },
1643
1698
  [BitType.multipleChoice1]: {
1644
1699
  since: '1.3.0',
1700
+ quizBit: true,
1645
1701
  tags: [
1646
1702
  {
1647
1703
  type: BitTagType.group,
1648
1704
  configKey: GroupConfigKey.group_standardTags,
1649
1705
  },
1706
+ {
1707
+ type: BitTagType.group,
1708
+ configKey: GroupConfigKey.group_quizCommon,
1709
+ },
1650
1710
  {
1651
1711
  type: BitTagType.group,
1652
1712
  configKey: GroupConfigKey.group_trueFalse,
@@ -1656,11 +1716,16 @@ const BITS = {
1656
1716
  [BitType.coachSelfReflectionMultipleChoice1]: { since: '1.3.0', baseBitType: BitType.multipleChoice1 },
1657
1717
  [BitType.multipleChoice]: {
1658
1718
  since: '1.3.0',
1719
+ quizBit: true,
1659
1720
  tags: [
1660
1721
  {
1661
1722
  type: BitTagType.group,
1662
1723
  configKey: GroupConfigKey.group_standardTags,
1663
1724
  },
1725
+ {
1726
+ type: BitTagType.group,
1727
+ configKey: GroupConfigKey.group_quizCommon,
1728
+ },
1664
1729
  {
1665
1730
  type: BitTagType.group,
1666
1731
  configKey: GroupConfigKey.group_trueFalse,
@@ -1671,11 +1736,16 @@ const BITS = {
1671
1736
  [BitType.coachSelfReflectionMultipleChoice]: { since: '1.3.0', baseBitType: BitType.multipleChoice },
1672
1737
  [BitType.multipleChoiceText]: {
1673
1738
  since: '1.3.0',
1739
+ quizBit: true,
1674
1740
  tags: [
1675
1741
  {
1676
1742
  type: BitTagType.group,
1677
1743
  configKey: GroupConfigKey.group_standardTags,
1678
1744
  },
1745
+ {
1746
+ type: BitTagType.group,
1747
+ configKey: GroupConfigKey.group_quizCommon,
1748
+ },
1679
1749
  {
1680
1750
  type: BitTagType.group,
1681
1751
  configKey: GroupConfigKey.group_trueFalse,
@@ -1686,11 +1756,16 @@ const BITS = {
1686
1756
  [BitType.coachSelfReflectionMultipleChoiceText]: { since: '1.3.0', baseBitType: BitType.multipleChoiceText },
1687
1757
  [BitType.multipleResponse1]: {
1688
1758
  since: '1.3.0',
1759
+ quizBit: true,
1689
1760
  tags: [
1690
1761
  {
1691
1762
  type: BitTagType.group,
1692
1763
  configKey: GroupConfigKey.group_standardTags,
1693
1764
  },
1765
+ {
1766
+ type: BitTagType.group,
1767
+ configKey: GroupConfigKey.group_quizCommon,
1768
+ },
1694
1769
  {
1695
1770
  type: BitTagType.group,
1696
1771
  configKey: GroupConfigKey.group_trueFalse,
@@ -1700,11 +1775,16 @@ const BITS = {
1700
1775
  [BitType.coachSelfReflectionMultipleResponse1]: { since: '1.3.0', baseBitType: BitType.multipleResponse1 },
1701
1776
  [BitType.multipleResponse]: {
1702
1777
  since: '1.3.0',
1778
+ quizBit: true,
1703
1779
  tags: [
1704
1780
  {
1705
1781
  type: BitTagType.group,
1706
1782
  configKey: GroupConfigKey.group_standardTags,
1707
1783
  },
1784
+ {
1785
+ type: BitTagType.group,
1786
+ configKey: GroupConfigKey.group_quizCommon,
1787
+ },
1708
1788
  {
1709
1789
  type: BitTagType.group,
1710
1790
  configKey: GroupConfigKey.group_trueFalse,
@@ -1983,11 +2063,16 @@ const BITS = {
1983
2063
  },
1984
2064
  [BitType.sequence]: {
1985
2065
  since: '1.3.0',
2066
+ quizBit: true,
1986
2067
  tags: [
1987
2068
  {
1988
2069
  type: BitTagType.group,
1989
2070
  configKey: GroupConfigKey.group_standardTags,
1990
2071
  },
2072
+ {
2073
+ type: BitTagType.group,
2074
+ configKey: GroupConfigKey.group_quizCommon,
2075
+ },
1991
2076
  ],
1992
2077
  cardSet: CardSetConfigKey._elements,
1993
2078
  rootExampleType: ExampleType.boolean,
@@ -2154,6 +2239,16 @@ const BITS = {
2154
2239
  },
2155
2240
  ],
2156
2241
  },
2242
+ [BitType.pronunciationTable]: {
2243
+ since: '3.1.0',
2244
+ tags: [
2245
+ {
2246
+ type: BitTagType.group,
2247
+ configKey: GroupConfigKey.group_standardTags,
2248
+ },
2249
+ ],
2250
+ cardSet: CardSetConfigKey._pronunciationTable,
2251
+ },
2157
2252
  [BitType.table]: {
2158
2253
  since: '1.5.19',
2159
2254
  tags: [
@@ -2286,11 +2381,16 @@ const BITS = {
2286
2381
  [BitType.handInVoice]: { since: '1.5.15', baseBitType: BitType.takePicture },
2287
2382
  [BitType.trueFalse1]: {
2288
2383
  since: '1.3.0',
2384
+ quizBit: true,
2289
2385
  tags: [
2290
2386
  {
2291
2387
  type: BitTagType.group,
2292
2388
  configKey: GroupConfigKey.group_standardTags,
2293
2389
  },
2390
+ {
2391
+ type: BitTagType.group,
2392
+ configKey: GroupConfigKey.group_quizCommon,
2393
+ },
2294
2394
  {
2295
2395
  type: BitTagType.property,
2296
2396
  configKey: PropertyConfigKey.labelTrue,
@@ -2312,11 +2412,16 @@ const BITS = {
2312
2412
  },
2313
2413
  [BitType.trueFalse]: {
2314
2414
  since: '1.3.0',
2415
+ quizBit: true,
2315
2416
  tags: [
2316
2417
  {
2317
2418
  type: BitTagType.group,
2318
2419
  configKey: GroupConfigKey.group_standardTags,
2319
2420
  },
2421
+ {
2422
+ type: BitTagType.group,
2423
+ configKey: GroupConfigKey.group_quizCommon,
2424
+ },
2320
2425
  {
2321
2426
  type: BitTagType.property,
2322
2427
  configKey: PropertyConfigKey.labelTrue,