@gmb/bitmark-parser-generator 1.4.16 → 1.4.18

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 (226) 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/BitmarkParserGenerator.js +2 -13
  4. package/dist/cjs/BitmarkParserGenerator.js.map +1 -1
  5. package/dist/cjs/ast/Builder.js +8 -8
  6. package/dist/cjs/ast/Builder.js.map +1 -1
  7. package/dist/cjs/ast/rules/NodeValidator.js +6 -23
  8. package/dist/cjs/ast/rules/NodeValidator.js.map +1 -1
  9. package/dist/cjs/config/Config.js +57 -86
  10. package/dist/cjs/config/Config.js.map +1 -1
  11. package/dist/cjs/config/raw/bits.js +388 -450
  12. package/dist/cjs/config/raw/bits.js.map +1 -1
  13. package/dist/cjs/config/raw/properties.js +37 -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/generator/bitmark/BitmarkGenerator.js +9 -11
  17. package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
  18. package/dist/cjs/generator/json/JsonGenerator.js +236 -208
  19. package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
  20. package/dist/cjs/index.js +2 -3
  21. package/dist/cjs/index.js.map +1 -1
  22. package/dist/cjs/info/InfoBuilder.js +10 -33
  23. package/dist/cjs/info/InfoBuilder.js.map +1 -1
  24. package/dist/cjs/model/ast/NodeType.js +16 -0
  25. package/dist/cjs/model/ast/NodeType.js.map +1 -1
  26. package/dist/cjs/model/config/BitConfig.js +8 -7
  27. package/dist/cjs/model/config/BitConfig.js.map +1 -1
  28. package/dist/cjs/model/config/enum/PropertyConfigKey.js +7 -0
  29. package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
  30. package/dist/cjs/model/enum/BitType.js +86 -84
  31. package/dist/cjs/model/enum/BitType.js.map +1 -1
  32. package/dist/cjs/model/enum/PropertyAstKey.js +2 -0
  33. package/dist/cjs/model/enum/PropertyAstKey.js.map +1 -1
  34. package/dist/cjs/model/enum/PropertyTag.js +5 -0
  35. package/dist/cjs/model/enum/PropertyTag.js.map +1 -1
  36. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js +14 -14
  37. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  38. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +6 -6
  39. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  40. package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  41. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +11 -10
  42. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  43. package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  44. package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  45. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +52 -47
  46. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  47. package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  48. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  49. package/dist/cjs/parser/bitmark/peg/contentProcessors/{CommentTagContentProcessor.js → InternalCommentTagContentProcessor.js} +5 -5
  50. package/dist/cjs/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -0
  51. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  52. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  53. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  54. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
  55. package/dist/cjs/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.js.map +1 -1
  56. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +2 -2
  57. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  58. package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  59. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  60. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +15 -17
  61. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  62. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +14 -11
  63. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
  64. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  65. package/dist/cjs/parser/json/JsonParser.js +9 -9
  66. package/dist/cjs/parser/json/JsonParser.js.map +1 -1
  67. package/dist/cjs/utils/ObjectUtils.js +62 -0
  68. package/dist/cjs/utils/ObjectUtils.js.map +1 -1
  69. package/dist/esm/BitmarkParserGenerator.js +2 -13
  70. package/dist/esm/BitmarkParserGenerator.js.map +1 -1
  71. package/dist/esm/ast/Builder.js +9 -9
  72. package/dist/esm/ast/Builder.js.map +1 -1
  73. package/dist/esm/ast/rules/NodeValidator.js +6 -23
  74. package/dist/esm/ast/rules/NodeValidator.js.map +1 -1
  75. package/dist/esm/config/Config.js +57 -86
  76. package/dist/esm/config/Config.js.map +1 -1
  77. package/dist/esm/config/raw/bits.js +389 -451
  78. package/dist/esm/config/raw/bits.js.map +1 -1
  79. package/dist/esm/config/raw/properties.js +37 -0
  80. package/dist/esm/config/raw/properties.js.map +1 -1
  81. package/dist/esm/generated/build-info.js +1 -1
  82. package/dist/esm/generator/bitmark/BitmarkGenerator.js +10 -12
  83. package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
  84. package/dist/esm/generator/json/JsonGenerator.js +237 -209
  85. package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
  86. package/dist/esm/index.js +1 -1
  87. package/dist/esm/index.js.map +1 -1
  88. package/dist/esm/info/InfoBuilder.js +11 -34
  89. package/dist/esm/info/InfoBuilder.js.map +1 -1
  90. package/dist/esm/model/ast/NodeType.js +16 -0
  91. package/dist/esm/model/ast/NodeType.js.map +1 -1
  92. package/dist/esm/model/config/BitConfig.js +8 -7
  93. package/dist/esm/model/config/BitConfig.js.map +1 -1
  94. package/dist/esm/model/config/enum/PropertyConfigKey.js +7 -0
  95. package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
  96. package/dist/esm/model/enum/BitType.js +85 -82
  97. package/dist/esm/model/enum/BitType.js.map +1 -1
  98. package/dist/esm/model/enum/PropertyAstKey.js +2 -0
  99. package/dist/esm/model/enum/PropertyAstKey.js.map +1 -1
  100. package/dist/esm/model/enum/PropertyTag.js +5 -0
  101. package/dist/esm/model/enum/PropertyTag.js.map +1 -1
  102. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js +15 -15
  103. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  104. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +6 -6
  105. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  106. package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  107. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +12 -11
  108. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  109. package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  110. package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  111. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +53 -48
  112. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  113. package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  114. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  115. package/dist/esm/parser/bitmark/peg/contentProcessors/{CommentTagContentProcessor.js → InternalCommentTagContentProcessor.js} +5 -5
  116. package/dist/esm/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -0
  117. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  118. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  119. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  120. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
  121. package/dist/esm/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.js.map +1 -1
  122. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +2 -2
  123. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  124. package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  125. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  126. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +16 -18
  127. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  128. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +15 -12
  129. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
  130. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  131. package/dist/esm/parser/json/JsonParser.js +10 -10
  132. package/dist/esm/parser/json/JsonParser.js.map +1 -1
  133. package/dist/esm/utils/ObjectUtils.js +59 -0
  134. package/dist/esm/utils/ObjectUtils.js.map +1 -1
  135. package/dist/types/BitmarkParserGenerator.d.ts.map +1 -1
  136. package/dist/types/ast/Builder.d.ts +9 -2
  137. package/dist/types/ast/Builder.d.ts.map +1 -1
  138. package/dist/types/ast/rules/NodeValidator.d.ts +0 -1
  139. package/dist/types/ast/rules/NodeValidator.d.ts.map +1 -1
  140. package/dist/types/config/Config.d.ts +16 -28
  141. package/dist/types/config/Config.d.ts.map +1 -1
  142. package/dist/types/config/raw/bits.d.ts.map +1 -1
  143. package/dist/types/config/raw/properties.d.ts.map +1 -1
  144. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +4 -4
  145. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
  146. package/dist/types/generator/json/JsonGenerator.d.ts +22 -22
  147. package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
  148. package/dist/types/generator/text/TextGenerator.d.ts +2 -2
  149. package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
  150. package/dist/types/index.d.ts +2 -2
  151. package/dist/types/index.d.ts.map +1 -1
  152. package/dist/types/info/InfoBuilder.d.ts +3 -4
  153. package/dist/types/info/InfoBuilder.d.ts.map +1 -1
  154. package/dist/types/model/ast/NodeType.d.ts +32 -0
  155. package/dist/types/model/ast/NodeType.d.ts.map +1 -1
  156. package/dist/types/model/ast/Nodes.d.ts +9 -2
  157. package/dist/types/model/ast/Nodes.d.ts.map +1 -1
  158. package/dist/types/model/config/BitConfig.d.ts +5 -4
  159. package/dist/types/model/config/BitConfig.d.ts.map +1 -1
  160. package/dist/types/model/config/_Config.d.ts +3 -5
  161. package/dist/types/model/config/_Config.d.ts.map +1 -1
  162. package/dist/types/model/config/enum/ConfigKey.d.ts +14 -0
  163. package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
  164. package/dist/types/model/config/enum/PropertyConfigKey.d.ts +21 -0
  165. package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
  166. package/dist/types/model/enum/BitType.d.ts +171 -178
  167. package/dist/types/model/enum/BitType.d.ts.map +1 -1
  168. package/dist/types/model/enum/PropertyAstKey.d.ts +4 -0
  169. package/dist/types/model/enum/PropertyAstKey.d.ts.map +1 -1
  170. package/dist/types/model/enum/PropertyTag.d.ts +10 -0
  171. package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
  172. package/dist/types/model/json/BitJson.d.ts +5 -0
  173. package/dist/types/model/json/BitJson.d.ts.map +1 -1
  174. package/dist/types/model/json/ParserJson.d.ts +1 -1
  175. package/dist/types/model/json/ParserJson.d.ts.map +1 -1
  176. package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts.map +1 -1
  177. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +6 -6
  178. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
  179. package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts +6 -6
  180. package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts.map +1 -1
  181. package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts +2 -2
  182. package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts.map +1 -1
  183. package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts +2 -2
  184. package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts.map +1 -1
  185. package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts +2 -2
  186. package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts.map +1 -1
  187. package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts +2 -2
  188. package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts.map +1 -1
  189. package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts +2 -2
  190. package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts.map +1 -1
  191. package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts +2 -2
  192. package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts.map +1 -1
  193. package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts +2 -2
  194. package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts.map +1 -1
  195. package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts +5 -0
  196. package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts.map +1 -0
  197. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts +2 -2
  198. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts.map +1 -1
  199. package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts +2 -2
  200. package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts.map +1 -1
  201. package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts +2 -2
  202. package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts.map +1 -1
  203. package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts +2 -2
  204. package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts.map +1 -1
  205. package/dist/types/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.d.ts +2 -2
  206. package/dist/types/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.d.ts.map +1 -1
  207. package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts +2 -2
  208. package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
  209. package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts +2 -2
  210. package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts.map +1 -1
  211. package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts +3 -3
  212. package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts.map +1 -1
  213. package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts +3 -3
  214. package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts.map +1 -1
  215. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts +2 -2
  216. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts.map +1 -1
  217. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts +2 -2
  218. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts.map +1 -1
  219. package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
  220. package/dist/types/utils/ObjectUtils.d.ts +9 -0
  221. package/dist/types/utils/ObjectUtils.d.ts.map +1 -1
  222. package/package.json +3 -1
  223. package/dist/cjs/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.js.map +0 -1
  224. package/dist/esm/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.js.map +0 -1
  225. package/dist/types/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.d.ts +0 -5
  226. package/dist/types/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.d.ts.map +0 -1
@@ -11,15 +11,15 @@ const Count_1 = require("../../model/enum/Count");
11
11
  const ExampleType_1 = require("../../model/enum/ExampleType");
12
12
  const TextFormat_1 = require("../../model/enum/TextFormat");
13
13
  const BITS = {
14
- [BitType_1.RootBitType._error]: {
14
+ [BitType_1.BitType._error]: {
15
15
  since: '1.3.0',
16
16
  tags: [],
17
17
  },
18
- [BitType_1.RootBitType._comment]: {
18
+ [BitType_1.BitType._comment]: {
19
19
  since: '1.4.12',
20
20
  tags: [],
21
21
  },
22
- [BitType_1.RootBitType.appFlashcards]: {
22
+ [BitType_1.BitType.appFlashcards]: {
23
23
  since: '1.3.0',
24
24
  tags: [
25
25
  {
@@ -39,12 +39,10 @@ const BITS = {
39
39
  resourceAttachmentAllowed: true,
40
40
  bodyAllowed: true,
41
41
  rootExampleType: ExampleType_1.ExampleType.string,
42
- aliases: {
43
- [BitType_1.AliasBitType.appFlashcardsQuiz]: { since: '1.3.0' },
44
- [BitType_1.AliasBitType.appFlashcardsLearn]: { since: '1.3.0' },
45
- },
46
42
  },
47
- [BitType_1.RootBitType.appLink]: {
43
+ [BitType_1.BitType.appFlashcardsQuiz]: { since: '1.3.0', baseBitType: BitType_1.BitType.appFlashcards },
44
+ [BitType_1.BitType.appFlashcardsLearn]: { since: '1.3.0', baseBitType: BitType_1.BitType.appFlashcards },
45
+ [BitType_1.BitType.appLink]: {
48
46
  since: '1.3.0',
49
47
  tags: [
50
48
  {
@@ -59,7 +57,7 @@ const BITS = {
59
57
  ],
60
58
  bodyAllowed: false,
61
59
  },
62
- [BitType_1.RootBitType.article]: {
60
+ [BitType_1.BitType.article]: {
63
61
  since: '1.3.0',
64
62
  tags: [
65
63
  {
@@ -73,12 +71,10 @@ const BITS = {
73
71
  ],
74
72
  resourceAttachmentAllowed: true,
75
73
  bodyAllowed: true,
76
- aliases: {
77
- [BitType_1.AliasBitType.statement]: { since: '1.3.0' },
78
- [BitType_1.AliasBitType.buttonCopyText]: { since: '1.4.3' },
79
- },
80
74
  },
81
- [BitType_1.RootBitType.appBitmarkFromJavascript]: {
75
+ [BitType_1.BitType.statement]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
76
+ [BitType_1.BitType.buttonCopyText]: { since: '1.4.3', baseBitType: BitType_1.BitType.article },
77
+ [BitType_1.BitType.appBitmarkFromJavascript]: {
82
78
  since: '1.4.5',
83
79
  tags: [
84
80
  {
@@ -93,11 +89,9 @@ const BITS = {
93
89
  textFormatDefault: TextFormat_1.TextFormat.text,
94
90
  resourceAttachmentAllowed: true,
95
91
  bodyAllowed: true,
96
- aliases: {
97
- [BitType_1.AliasBitType.appBitmarkFromEditor]: { since: '1.4.5' },
98
- },
99
92
  },
100
- [BitType_1.RootBitType.articleEmbed]: {
93
+ [BitType_1.BitType.appBitmarkFromEditor]: { since: '1.4.5', baseBitType: BitType_1.BitType.appBitmarkFromJavascript },
94
+ [BitType_1.BitType.articleEmbed]: {
101
95
  since: '1.3.0',
102
96
  tags: [
103
97
  {
@@ -112,7 +106,7 @@ const BITS = {
112
106
  ],
113
107
  bodyAllowed: true,
114
108
  },
115
- [BitType_1.RootBitType.articleLink]: {
109
+ [BitType_1.BitType.articleLink]: {
116
110
  since: '1.3.0',
117
111
  tags: [
118
112
  {
@@ -127,7 +121,7 @@ const BITS = {
127
121
  ],
128
122
  bodyAllowed: true,
129
123
  },
130
- [BitType_1.RootBitType.audio]: {
124
+ [BitType_1.BitType.audio]: {
131
125
  since: '1.3.0',
132
126
  tags: [
133
127
  {
@@ -142,7 +136,7 @@ const BITS = {
142
136
  ],
143
137
  bodyAllowed: true,
144
138
  },
145
- [BitType_1.RootBitType.audioEmbed]: {
139
+ [BitType_1.BitType.audioEmbed]: {
146
140
  since: '1.3.0',
147
141
  tags: [
148
142
  {
@@ -157,7 +151,7 @@ const BITS = {
157
151
  ],
158
152
  bodyAllowed: true,
159
153
  },
160
- [BitType_1.RootBitType.audioLink]: {
154
+ [BitType_1.BitType.audioLink]: {
161
155
  since: '1.3.0',
162
156
  tags: [
163
157
  {
@@ -172,7 +166,7 @@ const BITS = {
172
166
  ],
173
167
  bodyAllowed: true,
174
168
  },
175
- [BitType_1.RootBitType.bitAlias]: {
169
+ [BitType_1.BitType.bitAlias]: {
176
170
  since: '1.3.0',
177
171
  tags: [
178
172
  {
@@ -190,7 +184,7 @@ const BITS = {
190
184
  ],
191
185
  bodyAllowed: true,
192
186
  },
193
- [BitType_1.RootBitType.book]: {
187
+ [BitType_1.BitType.book]: {
194
188
  since: '1.3.0',
195
189
  tags: [
196
190
  {
@@ -203,60 +197,50 @@ const BITS = {
203
197
  },
204
198
  ],
205
199
  bodyAllowed: true,
206
- aliases: {
207
- [BitType_1.AliasBitType.bookAcknowledgments]: { since: '1.3.0' },
208
- [BitType_1.AliasBitType.bookAddendum]: { since: '1.3.0' },
209
- [BitType_1.AliasBitType.bookAfterword]: { since: '1.3.0' },
210
- [BitType_1.AliasBitType.bookAppendix]: { since: '1.3.0' },
211
- [BitType_1.AliasBitType.bookArticle]: { since: '1.3.0' },
212
- [BitType_1.AliasBitType.bookAutherBio]: { since: '1.3.0' },
213
- [BitType_1.AliasBitType.bookBibliography]: { since: '1.3.0' },
214
- [BitType_1.AliasBitType.bookComingSoon]: { since: '1.3.0' },
215
- [BitType_1.AliasBitType.bookConclusion]: { since: '1.3.0' },
216
- [BitType_1.AliasBitType.bookCopyright]: { since: '1.3.0' },
217
- [BitType_1.AliasBitType.bookCopyrightPermissions]: { since: '1.3.0' },
218
- [BitType_1.AliasBitType.bookDedication]: { since: '1.3.0' },
219
- [BitType_1.AliasBitType.bookEndnotes]: { since: '1.3.0' },
220
- [BitType_1.AliasBitType.bookEpigraph]: { since: '1.3.0' },
221
- [BitType_1.AliasBitType.bookEpilogue]: { since: '1.3.0' },
222
- [BitType_1.AliasBitType.bookForword]: { since: '1.3.0' },
223
- [BitType_1.AliasBitType.bookFrontispiece]: { since: '1.3.0' },
224
- [BitType_1.AliasBitType.bookImprint]: { since: '1.3.0' },
225
- [BitType_1.AliasBitType.bookIncitingIncident]: { since: '1.3.0' },
226
- [BitType_1.AliasBitType.bookIntroduction]: { since: '1.3.0' },
227
- [BitType_1.AliasBitType.bookListOfContributors]: { since: '1.3.0' },
228
- [BitType_1.AliasBitType.bookNotes]: { since: '1.3.0' },
229
- [BitType_1.AliasBitType.bookPostscript]: { since: '1.3.0' },
230
- [BitType_1.AliasBitType.bookPreface]: { since: '1.3.0' },
231
- [BitType_1.AliasBitType.bookPrologue]: { since: '1.3.0' },
232
- [BitType_1.AliasBitType.bookReadMore]: { since: '1.3.0' },
233
- [BitType_1.AliasBitType.bookReferenceList]: { since: '1.3.0' },
234
- [BitType_1.AliasBitType.bookRequestForABookReview]: { since: '1.3.0' },
235
- [BitType_1.AliasBitType.bookSummary]: { since: '1.3.0' },
236
- [BitType_1.AliasBitType.bookTeaser]: { since: '1.3.0' },
237
- [BitType_1.AliasBitType.bookTitle]: { since: '1.3.0' },
238
- },
239
- },
240
- [BitType_1.RootBitType.bookAlias]: {
200
+ },
201
+ [BitType_1.BitType.bookAcknowledgments]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
202
+ [BitType_1.BitType.bookAddendum]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
203
+ [BitType_1.BitType.bookAfterword]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
204
+ [BitType_1.BitType.bookAppendix]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
205
+ [BitType_1.BitType.bookArticle]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
206
+ [BitType_1.BitType.bookAutherBio]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
207
+ [BitType_1.BitType.bookBibliography]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
208
+ [BitType_1.BitType.bookComingSoon]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
209
+ [BitType_1.BitType.bookConclusion]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
210
+ [BitType_1.BitType.bookCopyright]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
211
+ [BitType_1.BitType.bookCopyrightPermissions]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
212
+ [BitType_1.BitType.bookDedication]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
213
+ [BitType_1.BitType.bookEndnotes]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
214
+ [BitType_1.BitType.bookEpigraph]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
215
+ [BitType_1.BitType.bookEpilogue]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
216
+ [BitType_1.BitType.bookForword]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
217
+ [BitType_1.BitType.bookFrontispiece]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
218
+ [BitType_1.BitType.bookImprint]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
219
+ [BitType_1.BitType.bookIncitingIncident]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
220
+ [BitType_1.BitType.bookIntroduction]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
221
+ [BitType_1.BitType.bookListOfContributors]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
222
+ [BitType_1.BitType.bookNotes]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
223
+ [BitType_1.BitType.bookPostscript]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
224
+ [BitType_1.BitType.bookPreface]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
225
+ [BitType_1.BitType.bookPrologue]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
226
+ [BitType_1.BitType.bookReadMore]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
227
+ [BitType_1.BitType.bookReferenceList]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
228
+ [BitType_1.BitType.bookRequestForABookReview]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
229
+ [BitType_1.BitType.bookSummary]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
230
+ [BitType_1.BitType.bookTeaser]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
231
+ [BitType_1.BitType.bookTitle]: { since: '1.3.0', baseBitType: BitType_1.BitType.book },
232
+ [BitType_1.BitType.bookAlias]: {
241
233
  since: '1.4.3',
234
+ baseBitType: BitType_1.BitType.book,
242
235
  tags: [
243
- {
244
- type: BitTagType_1.BitTagType.group,
245
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
246
- },
247
- {
248
- type: BitTagType_1.BitTagType.group,
249
- configKey: GroupConfigKey_1.GroupConfigKey.group_bookCommon,
250
- },
251
236
  {
252
237
  type: BitTagType_1.BitTagType.property,
253
238
  configKey: PropertyConfigKey_1.PropertyConfigKey.bookAlias,
254
239
  maxCount: Count_1.Count.infinity,
255
240
  },
256
241
  ],
257
- bodyAllowed: true,
258
242
  },
259
- [BitType_1.RootBitType.botActionResponse]: {
243
+ [BitType_1.BitType.botActionResponse]: {
260
244
  since: '1.3.0',
261
245
  tags: [
262
246
  {
@@ -268,7 +252,7 @@ const BITS = {
268
252
  bodyAllowed: true,
269
253
  footerAllowed: true,
270
254
  },
271
- [BitType_1.RootBitType.botActionSend]: {
255
+ [BitType_1.BitType.botActionSend]: {
272
256
  since: '1.3.0',
273
257
  tags: [
274
258
  {
@@ -282,18 +266,10 @@ const BITS = {
282
266
  ],
283
267
  bodyAllowed: true,
284
268
  },
285
- [BitType_1.RootBitType.browserImage]: {
269
+ [BitType_1.BitType.browserImage]: {
286
270
  since: '1.3.0',
271
+ baseBitType: BitType_1.BitType.image,
287
272
  tags: [
288
- {
289
- type: BitTagType_1.BitTagType.group,
290
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
291
- },
292
- {
293
- type: BitTagType_1.BitTagType.group,
294
- configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
295
- minCount: 1,
296
- },
297
273
  {
298
274
  type: BitTagType_1.BitTagType.property,
299
275
  configKey: PropertyConfigKey_1.PropertyConfigKey.focusX,
@@ -303,9 +279,8 @@ const BITS = {
303
279
  configKey: PropertyConfigKey_1.PropertyConfigKey.focusY,
304
280
  },
305
281
  ],
306
- bodyAllowed: true,
307
282
  },
308
- [BitType_1.RootBitType.card1]: {
283
+ [BitType_1.BitType.card1]: {
309
284
  since: '1.3.0',
310
285
  tags: [
311
286
  {
@@ -315,13 +290,11 @@ const BITS = {
315
290
  ],
316
291
  resourceAttachmentAllowed: true,
317
292
  bodyAllowed: true,
318
- aliases: {
319
- [BitType_1.AliasBitType.question1]: { since: '1.3.0' },
320
- [BitType_1.AliasBitType.survey1]: { since: '1.3.0' },
321
- [BitType_1.AliasBitType.surveyAnonymous1]: { since: '1.3.0' },
322
- },
323
293
  },
324
- [BitType_1.RootBitType.chapter]: {
294
+ [BitType_1.BitType.question1]: { since: '1.3.0', baseBitType: BitType_1.BitType.card1 },
295
+ [BitType_1.BitType.survey1]: { since: '1.3.0', baseBitType: BitType_1.BitType.card1 },
296
+ [BitType_1.BitType.surveyAnonymous1]: { since: '1.3.0', baseBitType: BitType_1.BitType.card1 },
297
+ [BitType_1.BitType.chapter]: {
325
298
  since: '1.3.0',
326
299
  tags: [
327
300
  {
@@ -347,7 +320,7 @@ const BITS = {
347
320
  ],
348
321
  bodyAllowed: true,
349
322
  },
350
- [BitType_1.RootBitType.clozeAndMultipleChoiceText]: {
323
+ [BitType_1.BitType.clozeAndMultipleChoiceText]: {
351
324
  since: '1.3.0',
352
325
  tags: [
353
326
  {
@@ -365,11 +338,12 @@ const BITS = {
365
338
  ],
366
339
  resourceAttachmentAllowed: true,
367
340
  bodyAllowed: true,
368
- aliases: {
369
- [BitType_1.AliasBitType.coachCallToActionClozeAndMultipleChoiceText]: { since: '1.3.0' },
370
- },
371
341
  },
372
- [BitType_1.RootBitType.cloze]: {
342
+ [BitType_1.BitType.coachCallToActionClozeAndMultipleChoiceText]: {
343
+ since: '1.3.0',
344
+ baseBitType: BitType_1.BitType.clozeAndMultipleChoiceText,
345
+ },
346
+ [BitType_1.BitType.cloze]: {
373
347
  since: '1.3.0',
374
348
  tags: [
375
349
  {
@@ -383,14 +357,12 @@ const BITS = {
383
357
  ],
384
358
  resourceAttachmentAllowed: true,
385
359
  bodyAllowed: true,
386
- aliases: {
387
- [BitType_1.AliasBitType.clozeInstructionGrouped]: { since: '1.3.0' },
388
- [BitType_1.AliasBitType.clozeSolutionGrouped]: { since: '1.3.0' },
389
- [BitType_1.AliasBitType.coachSelfReflectionCloze]: { since: '1.3.0' },
390
- [BitType_1.AliasBitType.coachCallToActionCloze]: { since: '1.3.0' },
391
- },
392
360
  },
393
- [BitType_1.RootBitType.clozeList]: {
361
+ [BitType_1.BitType.clozeInstructionGrouped]: { since: '1.3.0', baseBitType: BitType_1.BitType.cloze },
362
+ [BitType_1.BitType.clozeSolutionGrouped]: { since: '1.3.0', baseBitType: BitType_1.BitType.cloze },
363
+ [BitType_1.BitType.coachSelfReflectionCloze]: { since: '1.3.0', baseBitType: BitType_1.BitType.cloze },
364
+ [BitType_1.BitType.coachCallToActionCloze]: { since: '1.3.0', baseBitType: BitType_1.BitType.cloze },
365
+ [BitType_1.BitType.clozeList]: {
394
366
  since: '1.4.13',
395
367
  tags: [
396
368
  {
@@ -403,7 +375,7 @@ const BITS = {
403
375
  bodyAllowed: true,
404
376
  footerAllowed: true,
405
377
  },
406
- [BitType_1.RootBitType.code]: {
378
+ [BitType_1.BitType.code]: {
407
379
  since: '1.3.0',
408
380
  tags: [
409
381
  {
@@ -417,17 +389,35 @@ const BITS = {
417
389
  ],
418
390
  textFormatDefault: TextFormat_1.TextFormat.text,
419
391
  bodyAllowed: true,
420
- aliases: {
421
- [BitType_1.AliasBitType.appCodeCell]: { since: '1.4.3' },
422
- [BitType_1.AliasBitType.appCodeEditor]: { since: '1.4.3' },
423
- [BitType_1.AliasBitType.appCodeIde]: { since: '1.4.3' },
424
- [BitType_1.AliasBitType.codeRuntime]: { since: '1.4.3' },
425
- [BitType_1.AliasBitType.consoleLog]: { since: '1.4.3' },
426
- [BitType_1.AliasBitType.output]: { since: '1.4.3' },
427
- [BitType_1.AliasBitType.stdout]: { since: '1.4.3' },
428
- },
429
392
  },
430
- [BitType_1.RootBitType.conversationLeft1]: {
393
+ [BitType_1.BitType.appCodeCell]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
394
+ [BitType_1.BitType.appCodeEditor]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
395
+ [BitType_1.BitType.appCodeIde]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
396
+ [BitType_1.BitType.codeRuntime]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
397
+ [BitType_1.BitType.consoleLog]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
398
+ [BitType_1.BitType.output]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
399
+ [BitType_1.BitType.stdout]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
400
+ [BitType_1.BitType.step]: { since: '1.5.0', baseBitType: BitType_1.BitType.example },
401
+ [BitType_1.BitType.stepImageScreenshot]: { since: '1.5.0', baseBitType: BitType_1.BitType.image },
402
+ [BitType_1.BitType.stepImageScreenshotWithPointer]: {
403
+ since: '1.5.0',
404
+ baseBitType: BitType_1.BitType.image,
405
+ tags: [
406
+ {
407
+ type: BitTagType_1.BitTagType.property,
408
+ configKey: PropertyConfigKey_1.PropertyConfigKey.pointerTop,
409
+ minCount: 1,
410
+ maxCount: 1,
411
+ },
412
+ {
413
+ type: BitTagType_1.BitTagType.property,
414
+ configKey: PropertyConfigKey_1.PropertyConfigKey.pointerLeft,
415
+ minCount: 1,
416
+ maxCount: 1,
417
+ },
418
+ ],
419
+ },
420
+ [BitType_1.BitType.conversationLeft1]: {
431
421
  since: '1.3.0',
432
422
  tags: [
433
423
  {
@@ -441,15 +431,13 @@ const BITS = {
441
431
  ],
442
432
  resourceAttachmentAllowed: true,
443
433
  bodyAllowed: true,
444
- aliases: {
445
- [BitType_1.AliasBitType.conversationLeft1Scream]: { since: '1.3.0' },
446
- [BitType_1.AliasBitType.conversationLeft1Thought]: { since: '1.3.0' },
447
- [BitType_1.AliasBitType.conversationRight1]: { since: '1.3.0' },
448
- [BitType_1.AliasBitType.conversationRight1Scream]: { since: '1.3.0' },
449
- [BitType_1.AliasBitType.conversationRight1Thought]: { since: '1.3.0' },
450
- },
451
434
  },
452
- [BitType_1.RootBitType.document]: {
435
+ [BitType_1.BitType.conversationLeft1Scream]: { since: '1.3.0', baseBitType: BitType_1.BitType.conversationLeft1 },
436
+ [BitType_1.BitType.conversationLeft1Thought]: { since: '1.3.0', baseBitType: BitType_1.BitType.conversationLeft1 },
437
+ [BitType_1.BitType.conversationRight1]: { since: '1.3.0', baseBitType: BitType_1.BitType.conversationLeft1 },
438
+ [BitType_1.BitType.conversationRight1Scream]: { since: '1.3.0', baseBitType: BitType_1.BitType.conversationLeft1 },
439
+ [BitType_1.BitType.conversationRight1Thought]: { since: '1.3.0', baseBitType: BitType_1.BitType.conversationLeft1 },
440
+ [BitType_1.BitType.document]: {
453
441
  since: '1.3.0',
454
442
  tags: [
455
443
  {
@@ -464,7 +452,7 @@ const BITS = {
464
452
  ],
465
453
  bodyAllowed: true,
466
454
  },
467
- [BitType_1.RootBitType.documentDownload]: {
455
+ [BitType_1.BitType.documentDownload]: {
468
456
  since: '1.3.0',
469
457
  tags: [
470
458
  {
@@ -479,7 +467,7 @@ const BITS = {
479
467
  ],
480
468
  bodyAllowed: true,
481
469
  },
482
- [BitType_1.RootBitType.documentEmbed]: {
470
+ [BitType_1.BitType.documentEmbed]: {
483
471
  since: '1.3.0',
484
472
  tags: [
485
473
  {
@@ -494,7 +482,7 @@ const BITS = {
494
482
  ],
495
483
  bodyAllowed: true,
496
484
  },
497
- [BitType_1.RootBitType.documentLink]: {
485
+ [BitType_1.BitType.documentLink]: {
498
486
  since: '1.3.0',
499
487
  tags: [
500
488
  {
@@ -509,7 +497,7 @@ const BITS = {
509
497
  ],
510
498
  bodyAllowed: true,
511
499
  },
512
- [BitType_1.RootBitType.essay]: {
500
+ [BitType_1.BitType.essay]: {
513
501
  since: '1.3.0',
514
502
  tags: [
515
503
  {
@@ -537,12 +525,10 @@ const BITS = {
537
525
  resourceAttachmentAllowed: true,
538
526
  bodyAllowed: true,
539
527
  rootExampleType: ExampleType_1.ExampleType.string,
540
- aliases: {
541
- [BitType_1.AliasBitType.coachSelfReflectionEssay]: { since: '1.3.0' },
542
- [BitType_1.AliasBitType.coachCallToActionEssay]: { since: '1.3.0' },
543
- },
544
528
  },
545
- [BitType_1.RootBitType.example]: {
529
+ [BitType_1.BitType.coachSelfReflectionEssay]: { since: '1.3.0', baseBitType: BitType_1.BitType.essay },
530
+ [BitType_1.BitType.coachCallToActionEssay]: { since: '1.3.0', baseBitType: BitType_1.BitType.essay },
531
+ [BitType_1.BitType.example]: {
546
532
  since: '1.3.0',
547
533
  tags: [
548
534
  {
@@ -557,105 +543,92 @@ const BITS = {
557
543
  resourceAttachmentAllowed: true,
558
544
  bodyAllowed: true,
559
545
  rootExampleType: ExampleType_1.ExampleType.string,
560
- aliases: {
561
- [BitType_1.AliasBitType.appAiPrompt]: { since: '1.3.0' },
562
- [BitType_1.AliasBitType.aiPrompt]: { since: '1.3.0' },
563
- [BitType_1.AliasBitType.articleAi]: { since: '1.3.0' },
564
- [BitType_1.AliasBitType.articleAttachment]: { since: '1.3.0' },
565
- [BitType_1.AliasBitType.assignment]: { since: '1.3.0' },
566
- [BitType_1.AliasBitType.audioTranscript]: { since: '1.3.0' },
567
- [BitType_1.AliasBitType.bitmarkExample]: { since: '1.3.0' },
568
- [BitType_1.AliasBitType.blogArticle]: { since: '1.3.0' },
569
- [BitType_1.AliasBitType.bug]: { since: '1.3.0' },
570
- [BitType_1.AliasBitType.checklist]: { since: '1.3.0' },
571
- [BitType_1.AliasBitType.coachAudioTranscript]: { since: '1.3.0' },
572
- [BitType_1.AliasBitType.coachCallToActionChecklist]: { since: '1.3.0' },
573
- [BitType_1.AliasBitType.coachHomeRules]: { since: '1.3.0' },
574
- [BitType_1.AliasBitType.coachVideoTranscript]: { since: '1.3.0' },
575
- [BitType_1.AliasBitType.correction]: { since: '1.3.0' },
576
- [BitType_1.AliasBitType.cookPreparation]: { since: '1.3.0' },
577
- [BitType_1.AliasBitType.cookStep]: { since: '1.3.0' },
578
- [BitType_1.AliasBitType.cookIngredients]: { since: '1.3.0' },
579
- [BitType_1.AliasBitType.cookRemark]: { since: '1.3.0' },
580
- [BitType_1.AliasBitType.cookVariation]: { since: '1.3.0' },
581
- [BitType_1.AliasBitType.cookInsert]: { since: '1.3.0' },
582
- [BitType_1.AliasBitType.cookArrangement]: { since: '1.3.0' },
583
- [BitType_1.AliasBitType.cookPracticeAdvise]: { since: '1.3.0' },
584
- [BitType_1.AliasBitType.cookPlate]: { since: '1.3.0' },
585
- [BitType_1.AliasBitType.cookRecommendation]: { since: '1.3.0' },
586
- [BitType_1.AliasBitType.cookPersonalRecommendation]: { since: '1.3.0' },
587
- [BitType_1.AliasBitType.cookSideDrink]: { since: '1.3.0' },
588
- [BitType_1.AliasBitType.cookSideDish]: { since: '1.3.0' },
589
- [BitType_1.AliasBitType.cookTimer]: { since: '1.3.0' },
590
- [BitType_1.AliasBitType.danger]: { since: '1.3.0' },
591
- [BitType_1.AliasBitType.details1]: { since: '1.3.0' },
592
- [BitType_1.AliasBitType.details]: { since: '1.3.0' },
593
- [BitType_1.AliasBitType.editorial]: { since: '1.3.0' },
594
- [BitType_1.AliasBitType.editorNote]: { since: '1.3.0' },
595
- [BitType_1.AliasBitType.featured]: { since: '1.3.0' },
596
- [BitType_1.AliasBitType.help]: { since: '1.3.0' },
597
- [BitType_1.AliasBitType.hint]: { since: '1.3.0' },
598
- [BitType_1.AliasBitType.info]: { since: '1.3.0' },
599
- [BitType_1.AliasBitType.langLearningOutcomes]: { since: '1.3.0' },
600
- [BitType_1.AliasBitType.langEnablingLanguageSkills]: { since: '1.3.0' },
601
- [BitType_1.AliasBitType.langLifeSkills]: { since: '1.3.0' },
602
- [BitType_1.AliasBitType.langEnglishAroundWorld]: { since: '1.3.0' },
603
- [BitType_1.AliasBitType.langGoodToKnow]: { since: '1.3.0' },
604
- [BitType_1.AliasBitType.langLearningGoal]: { since: '1.3.0' },
605
- [BitType_1.AliasBitType.langLearningStrategy]: { since: '1.3.0' },
606
- [BitType_1.AliasBitType.langLikeALocal]: { since: '1.3.0' },
607
- [BitType_1.AliasBitType.langMaterial]: { since: '1.3.0' },
608
- [BitType_1.AliasBitType.langUsefulPhrases]: { since: '1.3.0' },
609
- [BitType_1.AliasBitType.langLevelDown]: { since: '1.3.0' },
610
- [BitType_1.AliasBitType.langLevelUp]: { since: '1.3.0' },
611
- [BitType_1.AliasBitType.langExtraActivity]: { since: '1.3.0' },
612
- [BitType_1.AliasBitType.langVideoScript]: { since: '1.3.0' },
613
- [BitType_1.AliasBitType.langAudioScript]: { since: '1.3.0' },
614
- [BitType_1.AliasBitType.langVocabulary]: { since: '1.3.0' },
615
- [BitType_1.AliasBitType.langHomework]: { since: '1.3.0' },
616
- [BitType_1.AliasBitType.langTeacherNote]: { since: '1.3.0' },
617
- [BitType_1.AliasBitType.langTeacherPronunciation]: { since: '1.3.0' },
618
- [BitType_1.AliasBitType.message]: { since: '1.3.0' },
619
- [BitType_1.AliasBitType.newspaperArticle]: { since: '1.3.0' },
620
- [BitType_1.AliasBitType.note]: { since: '1.3.0' },
621
- [BitType_1.AliasBitType.noteAi]: { since: '1.3.0' },
622
- [BitType_1.AliasBitType.notebookArticle]: { since: '1.3.0' },
623
- [BitType_1.AliasBitType.preparationNote]: { since: '1.3.0' },
624
- [BitType_1.AliasBitType.releaseNotesSummary]: { since: '1.3.0' },
625
- [BitType_1.AliasBitType.remark]: { since: '1.3.0' },
626
- [BitType_1.AliasBitType.selfAssessment]: { since: '1.3.0' },
627
- [BitType_1.AliasBitType.separator]: { since: '1.4.15' },
628
- [BitType_1.AliasBitType.sideNote]: { since: '1.3.0' },
629
- [BitType_1.AliasBitType.summary]: { since: '1.3.0' },
630
- [BitType_1.AliasBitType.summaryAi]: { since: '1.3.0' },
631
- [BitType_1.AliasBitType.videoTranscript]: { since: '1.3.0' },
632
- [BitType_1.AliasBitType.warning]: { since: '1.3.0' },
633
- [BitType_1.AliasBitType.workbookArticle]: { since: '1.3.0' },
634
- },
635
- },
636
- [BitType_1.RootBitType.exampleList]: {
546
+ },
547
+ [BitType_1.BitType.appAiPrompt]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
548
+ [BitType_1.BitType.aiPrompt]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
549
+ [BitType_1.BitType.articleAi]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
550
+ [BitType_1.BitType.articleAttachment]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
551
+ [BitType_1.BitType.assignment]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
552
+ [BitType_1.BitType.audioTranscript]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
553
+ [BitType_1.BitType.bitmarkExample]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
554
+ [BitType_1.BitType.blogArticle]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
555
+ [BitType_1.BitType.bug]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
556
+ [BitType_1.BitType.checklist]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
557
+ [BitType_1.BitType.coachAudioTranscript]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
558
+ [BitType_1.BitType.coachCallToActionChecklist]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
559
+ [BitType_1.BitType.coachHomeRules]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
560
+ [BitType_1.BitType.coachVideoTranscript]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
561
+ [BitType_1.BitType.correction]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
562
+ [BitType_1.BitType.cookPreparation]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
563
+ [BitType_1.BitType.cookStep]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
564
+ [BitType_1.BitType.cookIngredients]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
565
+ [BitType_1.BitType.cookRemark]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
566
+ [BitType_1.BitType.cookVariation]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
567
+ [BitType_1.BitType.cookInsert]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
568
+ [BitType_1.BitType.cookArrangement]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
569
+ [BitType_1.BitType.cookPracticeAdvise]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
570
+ [BitType_1.BitType.cookPlate]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
571
+ [BitType_1.BitType.cookRecommendation]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
572
+ [BitType_1.BitType.cookPersonalRecommendation]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
573
+ [BitType_1.BitType.cookSideDrink]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
574
+ [BitType_1.BitType.cookSideDish]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
575
+ [BitType_1.BitType.cookTimer]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
576
+ [BitType_1.BitType.danger]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
577
+ [BitType_1.BitType.details1]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
578
+ [BitType_1.BitType.details]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
579
+ [BitType_1.BitType.editorial]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
580
+ [BitType_1.BitType.editorNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
581
+ [BitType_1.BitType.featured]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
582
+ [BitType_1.BitType.help]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
583
+ [BitType_1.BitType.hint]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
584
+ [BitType_1.BitType.info]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
585
+ [BitType_1.BitType.langLearningOutcomes]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
586
+ [BitType_1.BitType.langEnablingLanguageSkills]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
587
+ [BitType_1.BitType.langLifeSkills]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
588
+ [BitType_1.BitType.langEnglishAroundWorld]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
589
+ [BitType_1.BitType.langGoodToKnow]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
590
+ [BitType_1.BitType.langLearningGoal]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
591
+ [BitType_1.BitType.langLearningStrategy]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
592
+ [BitType_1.BitType.langLikeALocal]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
593
+ [BitType_1.BitType.langMaterial]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
594
+ [BitType_1.BitType.langUsefulPhrases]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
595
+ [BitType_1.BitType.langLevelDown]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
596
+ [BitType_1.BitType.langLevelUp]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
597
+ [BitType_1.BitType.langExtraActivity]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
598
+ [BitType_1.BitType.langVideoScript]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
599
+ [BitType_1.BitType.langAudioScript]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
600
+ [BitType_1.BitType.langVocabulary]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
601
+ [BitType_1.BitType.langHomework]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
602
+ [BitType_1.BitType.langTeacherNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
603
+ [BitType_1.BitType.langTeacherPronunciation]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
604
+ [BitType_1.BitType.message]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
605
+ [BitType_1.BitType.newspaperArticle]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
606
+ [BitType_1.BitType.note]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
607
+ [BitType_1.BitType.noteAi]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
608
+ [BitType_1.BitType.notebookArticle]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
609
+ [BitType_1.BitType.preparationNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
610
+ [BitType_1.BitType.releaseNotesSummary]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
611
+ [BitType_1.BitType.remark]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
612
+ [BitType_1.BitType.selfAssessment]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
613
+ [BitType_1.BitType.separator]: { since: '1.4.15', baseBitType: BitType_1.BitType.example },
614
+ [BitType_1.BitType.sideNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
615
+ [BitType_1.BitType.summary]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
616
+ [BitType_1.BitType.summaryAi]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
617
+ [BitType_1.BitType.videoTranscript]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
618
+ [BitType_1.BitType.warning]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
619
+ [BitType_1.BitType.workbookArticle]: { since: '1.3.0', baseBitType: BitType_1.BitType.example },
620
+ [BitType_1.BitType.exampleList]: {
637
621
  since: '1.4.13',
638
- tags: [
639
- {
640
- type: BitTagType_1.BitTagType.group,
641
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
642
- },
643
- {
644
- type: BitTagType_1.BitTagType.tag,
645
- configKey: TagConfigKey_1.TagConfigKey.title,
646
- },
647
- ],
622
+ baseBitType: BitType_1.BitType.example,
648
623
  cardSet: CardSetConfigKey_1.CardSetConfigKey._exampleBitList,
649
624
  resourceAttachmentAllowed: true,
650
625
  bodyAllowed: true,
651
626
  footerAllowed: true,
652
627
  rootExampleType: ExampleType_1.ExampleType.string,
653
- aliases: {
654
- [BitType_1.AliasBitType.assignmentList]: { since: '1.4.13' },
655
- [BitType_1.AliasBitType.pageFooter]: { since: '1.4.13' },
656
- },
657
628
  },
658
- [BitType_1.RootBitType.flashcard]: {
629
+ [BitType_1.BitType.assignmentList]: { since: '1.4.13', baseBitType: BitType_1.BitType.exampleList },
630
+ [BitType_1.BitType.pageFooter]: { since: '1.4.13', baseBitType: BitType_1.BitType.exampleList },
631
+ [BitType_1.BitType.flashcard]: {
659
632
  since: '1.3.0',
660
633
  tags: [
661
634
  {
@@ -667,22 +640,12 @@ const BITS = {
667
640
  resourceAttachmentAllowed: true,
668
641
  bodyAllowed: true,
669
642
  footerAllowed: true,
670
- aliases: {
671
- [BitType_1.AliasBitType.flashcard1]: { since: '1.3.0' },
672
- },
673
643
  },
674
- [BitType_1.RootBitType.focusImage]: {
644
+ [BitType_1.BitType.flashcard1]: { since: '1.3.0', baseBitType: BitType_1.BitType.flashcard },
645
+ [BitType_1.BitType.focusImage]: {
675
646
  since: '1.3.0',
647
+ baseBitType: BitType_1.BitType.image,
676
648
  tags: [
677
- {
678
- type: BitTagType_1.BitTagType.group,
679
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
680
- },
681
- {
682
- type: BitTagType_1.BitTagType.group,
683
- configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
684
- minCount: 1,
685
- },
686
649
  {
687
650
  type: BitTagType_1.BitTagType.property,
688
651
  configKey: PropertyConfigKey_1.PropertyConfigKey.focusX,
@@ -692,9 +655,8 @@ const BITS = {
692
655
  configKey: PropertyConfigKey_1.PropertyConfigKey.focusY,
693
656
  },
694
657
  ],
695
- bodyAllowed: true,
696
658
  },
697
- [BitType_1.RootBitType.highlightText]: {
659
+ [BitType_1.BitType.highlightText]: {
698
660
  since: '1.3.0',
699
661
  tags: [
700
662
  {
@@ -709,7 +671,7 @@ const BITS = {
709
671
  resourceAttachmentAllowed: true,
710
672
  bodyAllowed: true,
711
673
  },
712
- [BitType_1.RootBitType.image]: {
674
+ [BitType_1.BitType.image]: {
713
675
  since: '1.3.0',
714
676
  tags: [
715
677
  {
@@ -723,29 +685,27 @@ const BITS = {
723
685
  },
724
686
  ],
725
687
  bodyAllowed: true,
726
- aliases: {
727
- [BitType_1.AliasBitType.appCreateBitsFromImage]: { since: '1.3.0' },
728
- [BitType_1.AliasBitType.appGetScreenshot]: { since: '1.3.0' },
729
- [BitType_1.AliasBitType.detailsImage]: { since: '1.3.0' },
730
- [BitType_1.AliasBitType.figure]: { since: '1.3.0', deprecated: '1.4.0' },
731
- [BitType_1.AliasBitType.imageBanner]: { since: '1.3.0' },
732
- [BitType_1.AliasBitType.imageFigure]: { since: '1.3.0' },
733
- [BitType_1.AliasBitType.imageLandscape]: { since: '1.3.0' },
734
- [BitType_1.AliasBitType.imageMood]: { since: '1.3.0' },
735
- [BitType_1.AliasBitType.imagePortrait]: { since: '1.3.0' },
736
- [BitType_1.AliasBitType.imagePrototype]: { since: '1.3.0' },
737
- [BitType_1.AliasBitType.imageSeparator]: { since: '1.4.15' },
738
- [BitType_1.AliasBitType.imageScreenshot]: { since: '1.3.0' },
739
- [BitType_1.AliasBitType.imageStyled]: { since: '1.3.0' },
740
- [BitType_1.AliasBitType.imageSuperWide]: { since: '1.3.0' },
741
- [BitType_1.AliasBitType.imageZoom]: { since: '1.3.0' },
742
- [BitType_1.AliasBitType.langLifeSkillIcon]: { since: '1.3.0' },
743
- [BitType_1.AliasBitType.lifeSkillSticker]: { since: '1.3.0' },
744
- [BitType_1.AliasBitType.pageBanner]: { since: '1.4.3' },
745
- [BitType_1.AliasBitType.screenshot]: { since: '1.3.0', deprecated: '1.4.0' },
746
- },
747
688
  },
748
- [BitType_1.RootBitType.imageLink]: {
689
+ [BitType_1.BitType.appCreateBitsFromImage]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
690
+ [BitType_1.BitType.appGetScreenshot]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
691
+ [BitType_1.BitType.detailsImage]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
692
+ [BitType_1.BitType.figure]: { since: '1.3.0', deprecated: '1.4.0', baseBitType: BitType_1.BitType.image },
693
+ [BitType_1.BitType.imageBanner]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
694
+ [BitType_1.BitType.imageFigure]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
695
+ [BitType_1.BitType.imageLandscape]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
696
+ [BitType_1.BitType.imageMood]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
697
+ [BitType_1.BitType.imagePortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
698
+ [BitType_1.BitType.imagePrototype]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
699
+ [BitType_1.BitType.imageSeparator]: { since: '1.4.15', baseBitType: BitType_1.BitType.image },
700
+ [BitType_1.BitType.imageScreenshot]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
701
+ [BitType_1.BitType.imageStyled]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
702
+ [BitType_1.BitType.imageSuperWide]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
703
+ [BitType_1.BitType.imageZoom]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
704
+ [BitType_1.BitType.langLifeSkillIcon]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
705
+ [BitType_1.BitType.lifeSkillSticker]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
706
+ [BitType_1.BitType.pageBanner]: { since: '1.4.3', baseBitType: BitType_1.BitType.image },
707
+ [BitType_1.BitType.screenshot]: { since: '1.3.0', deprecated: '1.4.0', baseBitType: BitType_1.BitType.image },
708
+ [BitType_1.BitType.imageLink]: {
749
709
  since: '1.3.0',
750
710
  tags: [
751
711
  {
@@ -760,7 +720,7 @@ const BITS = {
760
720
  ],
761
721
  bodyAllowed: true,
762
722
  },
763
- [BitType_1.RootBitType.imageOnDevice]: {
723
+ [BitType_1.BitType.imageOnDevice]: {
764
724
  since: '1.3.0',
765
725
  tags: [
766
726
  {
@@ -778,7 +738,7 @@ const BITS = {
778
738
  ],
779
739
  bodyAllowed: true,
780
740
  },
781
- [BitType_1.RootBitType.imageResponsive]: {
741
+ [BitType_1.BitType.imageResponsive]: {
782
742
  since: '1.3.0',
783
743
  tags: [
784
744
  {
@@ -793,7 +753,7 @@ const BITS = {
793
753
  ],
794
754
  bodyAllowed: true, // false??
795
755
  },
796
- [BitType_1.RootBitType.internalLink]: {
756
+ [BitType_1.BitType.internalLink]: {
797
757
  since: '1.3.0',
798
758
  tags: [
799
759
  {
@@ -807,7 +767,7 @@ const BITS = {
807
767
  ],
808
768
  bodyAllowed: true,
809
769
  },
810
- [BitType_1.RootBitType.interview]: {
770
+ [BitType_1.BitType.interview]: {
811
771
  since: '1.3.0',
812
772
  tags: [
813
773
  {
@@ -823,12 +783,10 @@ const BITS = {
823
783
  resourceAttachmentAllowed: true,
824
784
  bodyAllowed: true,
825
785
  footerAllowed: true,
826
- aliases: {
827
- [BitType_1.AliasBitType.interviewInstructionGrouped]: { since: '1.3.0' },
828
- [BitType_1.AliasBitType.botInterview]: { since: '1.3.0' },
829
- },
830
786
  },
831
- [BitType_1.RootBitType.learningPathBook]: {
787
+ [BitType_1.BitType.interviewInstructionGrouped]: { since: '1.3.0', baseBitType: BitType_1.BitType.interview },
788
+ [BitType_1.BitType.botInterview]: { since: '1.3.0', baseBitType: BitType_1.BitType.interview },
789
+ [BitType_1.BitType.learningPathBook]: {
832
790
  since: '1.3.0',
833
791
  tags: [
834
792
  {
@@ -842,50 +800,32 @@ const BITS = {
842
800
  ],
843
801
  resourceAttachmentAllowed: true,
844
802
  bodyAllowed: true,
845
- aliases: {
846
- [BitType_1.AliasBitType.bookLink]: { since: '1.3.0' },
847
- [BitType_1.AliasBitType.bookLinkNext]: { since: '1.3.0' },
848
- [BitType_1.AliasBitType.bookLinkPrev]: { since: '1.3.0' },
849
- [BitType_1.AliasBitType.learningPathClassroomEvent]: { since: '1.3.0' },
850
- [BitType_1.AliasBitType.learningPathClassroomTraining]: { since: '1.3.0' },
851
- [BitType_1.AliasBitType.learningPathClosing]: { since: '1.3.0' },
852
- [BitType_1.AliasBitType.learningPathFeedback]: { since: '1.3.0' },
853
- [BitType_1.AliasBitType.learningPathLearningGoal]: { since: '1.3.0' },
854
- [BitType_1.AliasBitType.learningPathLti]: { since: '1.3.0' },
855
- [BitType_1.AliasBitType.learningPathSign]: { since: '1.3.0' },
856
- [BitType_1.AliasBitType.learningPathStep]: { since: '1.3.0' },
857
- },
858
803
  },
859
- [BitType_1.RootBitType.learningPathBotTraining]: {
804
+ [BitType_1.BitType.bookLink]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
805
+ [BitType_1.BitType.bookLinkNext]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
806
+ [BitType_1.BitType.bookLinkPrev]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
807
+ [BitType_1.BitType.learningPathClassroomEvent]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
808
+ [BitType_1.BitType.learningPathClassroomTraining]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
809
+ [BitType_1.BitType.learningPathClosing]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
810
+ [BitType_1.BitType.learningPathFeedback]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
811
+ [BitType_1.BitType.learningPathLearningGoal]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
812
+ [BitType_1.BitType.learningPathLti]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
813
+ [BitType_1.BitType.learningPathSign]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
814
+ [BitType_1.BitType.learningPathStep]: { since: '1.3.0', baseBitType: BitType_1.BitType.learningPathBook },
815
+ [BitType_1.BitType.learningPathBotTraining]: {
860
816
  since: '1.3.0',
817
+ baseBitType: BitType_1.BitType.learningPathBook,
861
818
  tags: [
862
- {
863
- type: BitTagType_1.BitTagType.group,
864
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
865
- },
866
- {
867
- type: BitTagType_1.BitTagType.group,
868
- configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
869
- },
870
819
  {
871
820
  type: BitTagType_1.BitTagType.property,
872
821
  configKey: PropertyConfigKey_1.PropertyConfigKey.bot,
873
822
  },
874
823
  ],
875
- resourceAttachmentAllowed: true,
876
- bodyAllowed: true,
877
824
  },
878
- [BitType_1.RootBitType.learningPathExternalLink]: {
825
+ [BitType_1.BitType.learningPathExternalLink]: {
879
826
  since: '1.3.0',
827
+ baseBitType: BitType_1.BitType.learningPathBook,
880
828
  tags: [
881
- {
882
- type: BitTagType_1.BitTagType.group,
883
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
884
- },
885
- {
886
- type: BitTagType_1.BitTagType.group,
887
- configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
888
- },
889
829
  {
890
830
  type: BitTagType_1.BitTagType.property,
891
831
  configKey: PropertyConfigKey_1.PropertyConfigKey.externalLink,
@@ -895,29 +835,18 @@ const BITS = {
895
835
  configKey: PropertyConfigKey_1.PropertyConfigKey.externalLinkText,
896
836
  },
897
837
  ],
898
- resourceAttachmentAllowed: true,
899
- bodyAllowed: true,
900
838
  },
901
- [BitType_1.RootBitType.learningPathVideoCall]: {
839
+ [BitType_1.BitType.learningPathVideoCall]: {
902
840
  since: '1.3.0',
841
+ baseBitType: BitType_1.BitType.learningPathBook,
903
842
  tags: [
904
- {
905
- type: BitTagType_1.BitTagType.group,
906
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
907
- },
908
- {
909
- type: BitTagType_1.BitTagType.group,
910
- configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
911
- },
912
843
  {
913
844
  type: BitTagType_1.BitTagType.property,
914
845
  configKey: PropertyConfigKey_1.PropertyConfigKey.videoCallLink,
915
846
  },
916
847
  ],
917
- resourceAttachmentAllowed: true,
918
- bodyAllowed: true,
919
848
  },
920
- [BitType_1.RootBitType.mark]: {
849
+ [BitType_1.BitType.mark]: {
921
850
  since: '1.3.0',
922
851
  tags: [
923
852
  {
@@ -936,7 +865,7 @@ const BITS = {
936
865
  resourceAttachmentAllowed: true,
937
866
  bodyAllowed: true,
938
867
  },
939
- [BitType_1.RootBitType.match]: {
868
+ [BitType_1.BitType.match]: {
940
869
  since: '1.3.0',
941
870
  tags: [
942
871
  {
@@ -948,53 +877,78 @@ const BITS = {
948
877
  resourceAttachmentAllowed: true,
949
878
  bodyAllowed: true,
950
879
  footerAllowed: true,
951
- aliases: {
952
- [BitType_1.AliasBitType.matchAll]: { since: '1.3.0' },
953
- [BitType_1.AliasBitType.matchReverse]: { since: '1.3.0' },
954
- [BitType_1.AliasBitType.matchAllReverse]: { since: '1.3.0' },
955
- [BitType_1.AliasBitType.matchSolutionGrouped]: { since: '1.3.0' },
956
- },
957
880
  },
958
- [BitType_1.RootBitType.matchMatrix]: {
881
+ [BitType_1.BitType.matchAll]: { since: '1.3.0', baseBitType: BitType_1.BitType.match },
882
+ [BitType_1.BitType.matchReverse]: { since: '1.3.0', baseBitType: BitType_1.BitType.match },
883
+ [BitType_1.BitType.matchAllReverse]: { since: '1.3.0', baseBitType: BitType_1.BitType.match },
884
+ [BitType_1.BitType.matchSolutionGrouped]: { since: '1.3.0', baseBitType: BitType_1.BitType.match },
885
+ [BitType_1.BitType.matchMatrix]: {
886
+ since: '1.3.0',
887
+ baseBitType: BitType_1.BitType.match,
888
+ cardSet: CardSetConfigKey_1.CardSetConfigKey._matchMatrix,
889
+ },
890
+ [BitType_1.BitType.matchAudio]: {
891
+ since: '1.3.0',
892
+ baseBitType: BitType_1.BitType.match,
893
+ cardSet: CardSetConfigKey_1.CardSetConfigKey._matchAudioPairs,
894
+ },
895
+ [BitType_1.BitType.matchPicture]: {
896
+ since: '1.3.0',
897
+ baseBitType: BitType_1.BitType.match,
898
+ cardSet: CardSetConfigKey_1.CardSetConfigKey._matchImagePairs,
899
+ },
900
+ [BitType_1.BitType.multipleChoice1]: {
959
901
  since: '1.3.0',
960
902
  tags: [
961
903
  {
962
904
  type: BitTagType_1.BitTagType.group,
963
905
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
964
906
  },
907
+ {
908
+ type: BitTagType_1.BitTagType.group,
909
+ configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
910
+ },
965
911
  ],
966
- cardSet: CardSetConfigKey_1.CardSetConfigKey._matchMatrix,
967
912
  resourceAttachmentAllowed: true,
968
913
  bodyAllowed: true,
969
- footerAllowed: true,
970
914
  },
971
- [BitType_1.RootBitType.matchAudio]: {
915
+ [BitType_1.BitType.coachSelfReflectionMultipleChoice1]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleChoice1 },
916
+ [BitType_1.BitType.multipleChoice]: {
972
917
  since: '1.3.0',
973
918
  tags: [
974
919
  {
975
920
  type: BitTagType_1.BitTagType.group,
976
921
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
977
922
  },
923
+ {
924
+ type: BitTagType_1.BitTagType.group,
925
+ configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
926
+ }, // This is actually for multiple-choice-1, but we support it here as well (as many bits are wrong)
978
927
  ],
979
- cardSet: CardSetConfigKey_1.CardSetConfigKey._matchAudioPairs,
928
+ cardSet: CardSetConfigKey_1.CardSetConfigKey._quiz,
980
929
  resourceAttachmentAllowed: true,
981
930
  bodyAllowed: true,
982
931
  footerAllowed: true,
983
932
  },
984
- [BitType_1.RootBitType.matchPicture]: {
933
+ [BitType_1.BitType.coachSelfReflectionMultipleChoice]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleChoice },
934
+ [BitType_1.BitType.multipleChoiceText]: {
985
935
  since: '1.3.0',
986
936
  tags: [
987
937
  {
988
938
  type: BitTagType_1.BitTagType.group,
989
939
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
990
940
  },
941
+ {
942
+ type: BitTagType_1.BitTagType.group,
943
+ configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
944
+ },
991
945
  ],
992
- cardSet: CardSetConfigKey_1.CardSetConfigKey._matchImagePairs,
993
946
  resourceAttachmentAllowed: true,
994
947
  bodyAllowed: true,
995
- footerAllowed: true,
996
948
  },
997
- [BitType_1.RootBitType.multipleChoice1]: {
949
+ [BitType_1.BitType.coachCallToActionMultipleChoiceText]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleChoiceText },
950
+ [BitType_1.BitType.coachSelfReflectionMultipleChoiceText]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleChoiceText },
951
+ [BitType_1.BitType.multipleResponse1]: {
998
952
  since: '1.3.0',
999
953
  tags: [
1000
954
  {
@@ -1008,11 +962,9 @@ const BITS = {
1008
962
  ],
1009
963
  resourceAttachmentAllowed: true,
1010
964
  bodyAllowed: true,
1011
- aliases: {
1012
- [BitType_1.AliasBitType.coachSelfReflectionMultipleChoice1]: { since: '1.3.0' },
1013
- },
1014
965
  },
1015
- [BitType_1.RootBitType.multipleChoice]: {
966
+ [BitType_1.BitType.coachSelfReflectionMultipleResponse1]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleResponse1 },
967
+ [BitType_1.BitType.multipleResponse]: {
1016
968
  since: '1.3.0',
1017
969
  tags: [
1018
970
  {
@@ -1022,17 +974,15 @@ const BITS = {
1022
974
  {
1023
975
  type: BitTagType_1.BitTagType.group,
1024
976
  configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
1025
- }, // This is actually for multiple-choice-1, but we support it here as well (as many bits are wrong)
977
+ }, // This is actually for multiple-response-1, but we support it here as well (as many bits are wrong)
1026
978
  ],
1027
979
  cardSet: CardSetConfigKey_1.CardSetConfigKey._quiz,
1028
980
  resourceAttachmentAllowed: true,
1029
981
  bodyAllowed: true,
1030
982
  footerAllowed: true,
1031
- aliases: {
1032
- [BitType_1.AliasBitType.coachSelfReflectionMultipleChoice]: { since: '1.3.0' },
1033
- },
1034
983
  },
1035
- [BitType_1.RootBitType.multipleChoiceText]: {
984
+ [BitType_1.BitType.coachSelfReflectionMultipleResponse]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleResponse },
985
+ [BitType_1.BitType.page]: {
1036
986
  since: '1.3.0',
1037
987
  tags: [
1038
988
  {
@@ -1040,76 +990,80 @@ const BITS = {
1040
990
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
1041
991
  },
1042
992
  {
1043
- type: BitTagType_1.BitTagType.group,
1044
- configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
993
+ type: BitTagType_1.BitTagType.tag,
994
+ configKey: TagConfigKey_1.TagConfigKey.title,
995
+ },
996
+ {
997
+ type: BitTagType_1.BitTagType.property,
998
+ configKey: PropertyConfigKey_1.PropertyConfigKey.thumbImage,
1045
999
  },
1046
1000
  ],
1047
1001
  resourceAttachmentAllowed: true,
1048
1002
  bodyAllowed: true,
1049
- aliases: {
1050
- [BitType_1.AliasBitType.coachCallToActionMultipleChoiceText]: { since: '1.3.0' },
1051
- [BitType_1.AliasBitType.coachSelfReflectionMultipleChoiceText]: { since: '1.3.0' },
1052
- },
1053
1003
  },
1054
- [BitType_1.RootBitType.multipleResponse1]: {
1055
- since: '1.3.0',
1004
+ [BitType_1.BitType.pageBuyButton]: {
1005
+ since: '1.4.3',
1056
1006
  tags: [
1057
1007
  {
1058
1008
  type: BitTagType_1.BitTagType.group,
1059
1009
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
1060
1010
  },
1061
1011
  {
1062
- type: BitTagType_1.BitTagType.group,
1063
- configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
1012
+ type: BitTagType_1.BitTagType.property,
1013
+ configKey: PropertyConfigKey_1.PropertyConfigKey.content2Buy,
1064
1014
  },
1065
1015
  ],
1066
1016
  resourceAttachmentAllowed: true,
1067
1017
  bodyAllowed: true,
1068
- aliases: {
1069
- [BitType_1.AliasBitType.coachSelfReflectionMultipleResponse1]: { since: '1.3.0' },
1070
- },
1071
1018
  },
1072
- [BitType_1.RootBitType.multipleResponse]: {
1073
- since: '1.3.0',
1019
+ [BitType_1.BitType.pageProduct]: {
1020
+ since: '1.4.17',
1074
1021
  tags: [
1075
1022
  {
1076
1023
  type: BitTagType_1.BitTagType.group,
1077
1024
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
1078
1025
  },
1079
1026
  {
1080
- type: BitTagType_1.BitTagType.group,
1081
- configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
1082
- }, // This is actually for multiple-response-1, but we support it here as well (as many bits are wrong)
1027
+ type: BitTagType_1.BitTagType.property,
1028
+ configKey: PropertyConfigKey_1.PropertyConfigKey.product,
1029
+ },
1083
1030
  ],
1084
- cardSet: CardSetConfigKey_1.CardSetConfigKey._quiz,
1085
1031
  resourceAttachmentAllowed: true,
1086
1032
  bodyAllowed: true,
1087
- footerAllowed: true,
1088
- aliases: {
1089
- [BitType_1.AliasBitType.coachSelfReflectionMultipleResponse]: { since: '1.3.0' },
1090
- },
1091
1033
  },
1092
- [BitType_1.RootBitType.page]: {
1093
- since: '1.3.0',
1034
+ [BitType_1.BitType.pageProductList]: {
1035
+ since: '1.4.17',
1094
1036
  tags: [
1095
1037
  {
1096
1038
  type: BitTagType_1.BitTagType.group,
1097
1039
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
1098
1040
  },
1099
1041
  {
1100
- type: BitTagType_1.BitTagType.tag,
1101
- configKey: TagConfigKey_1.TagConfigKey.title,
1042
+ type: BitTagType_1.BitTagType.property,
1043
+ configKey: PropertyConfigKey_1.PropertyConfigKey.productList,
1044
+ maxCount: Count_1.Count.infinity,
1045
+ },
1046
+ ],
1047
+ resourceAttachmentAllowed: true,
1048
+ bodyAllowed: true,
1049
+ },
1050
+ [BitType_1.BitType.pageProductVideo]: {
1051
+ since: '1.4.17',
1052
+ tags: [
1053
+ {
1054
+ type: BitTagType_1.BitTagType.group,
1055
+ configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
1102
1056
  },
1103
1057
  {
1104
1058
  type: BitTagType_1.BitTagType.property,
1105
- configKey: PropertyConfigKey_1.PropertyConfigKey.thumbImage,
1059
+ configKey: PropertyConfigKey_1.PropertyConfigKey.productVideo,
1106
1060
  },
1107
1061
  ],
1108
1062
  resourceAttachmentAllowed: true,
1109
1063
  bodyAllowed: true,
1110
1064
  },
1111
- [BitType_1.RootBitType.pageBuyButton]: {
1112
- since: '1.4.3',
1065
+ [BitType_1.BitType.pageProductVideoList]: {
1066
+ since: '1.4.17',
1113
1067
  tags: [
1114
1068
  {
1115
1069
  type: BitTagType_1.BitTagType.group,
@@ -1117,28 +1071,33 @@ const BITS = {
1117
1071
  },
1118
1072
  {
1119
1073
  type: BitTagType_1.BitTagType.property,
1120
- configKey: PropertyConfigKey_1.PropertyConfigKey.content2Buy,
1074
+ configKey: PropertyConfigKey_1.PropertyConfigKey.productVideoList,
1075
+ maxCount: Count_1.Count.infinity,
1121
1076
  },
1122
1077
  ],
1123
1078
  resourceAttachmentAllowed: true,
1124
1079
  bodyAllowed: true,
1125
1080
  },
1126
- [BitType_1.RootBitType.photo]: {
1127
- since: '1.3.0',
1081
+ [BitType_1.BitType.pageSectionFolder]: {
1082
+ since: '1.4.17',
1128
1083
  tags: [
1129
1084
  {
1130
1085
  type: BitTagType_1.BitTagType.group,
1131
1086
  configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
1132
1087
  },
1133
1088
  {
1134
- type: BitTagType_1.BitTagType.group,
1135
- configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
1136
- minCount: 1,
1089
+ type: BitTagType_1.BitTagType.property,
1090
+ configKey: PropertyConfigKey_1.PropertyConfigKey.productFolder,
1137
1091
  },
1138
1092
  ],
1093
+ resourceAttachmentAllowed: true,
1139
1094
  bodyAllowed: true,
1140
1095
  },
1141
- [BitType_1.RootBitType.quote]: {
1096
+ [BitType_1.BitType.photo]: {
1097
+ since: '1.3.0',
1098
+ baseBitType: BitType_1.BitType.image,
1099
+ },
1100
+ [BitType_1.BitType.quote]: {
1142
1101
  since: '1.3.0',
1143
1102
  tags: [
1144
1103
  {
@@ -1152,7 +1111,7 @@ const BITS = {
1152
1111
  ],
1153
1112
  bodyAllowed: true,
1154
1113
  },
1155
- [BitType_1.RootBitType.rating]: {
1114
+ [BitType_1.BitType.rating]: {
1156
1115
  since: '1.3.0',
1157
1116
  tags: [
1158
1117
  {
@@ -1161,11 +1120,9 @@ const BITS = {
1161
1120
  },
1162
1121
  ],
1163
1122
  bodyAllowed: true,
1164
- aliases: {
1165
- [BitType_1.AliasBitType.coachSelfReflectionRating]: { since: '1.3.0' },
1166
- },
1167
1123
  },
1168
- [BitType_1.RootBitType.releaseNote]: {
1124
+ [BitType_1.BitType.coachSelfReflectionRating]: { since: '1.3.0', baseBitType: BitType_1.BitType.rating },
1125
+ [BitType_1.BitType.releaseNote]: {
1169
1126
  since: '1.3.0',
1170
1127
  tags: [
1171
1128
  {
@@ -1180,7 +1137,7 @@ const BITS = {
1180
1137
  resourceAttachmentAllowed: true,
1181
1138
  bodyAllowed: true,
1182
1139
  },
1183
- [BitType_1.RootBitType.reviewNote]: {
1140
+ [BitType_1.BitType.reviewNote]: {
1184
1141
  since: '1.3.0',
1185
1142
  tags: [
1186
1143
  {
@@ -1207,14 +1164,12 @@ const BITS = {
1207
1164
  resourceAttachmentAllowed: true,
1208
1165
  bodyAllowed: true,
1209
1166
  rootExampleType: ExampleType_1.ExampleType.string,
1210
- aliases: {
1211
- [BitType_1.AliasBitType.reviewAuthorNote]: { since: '1.3.0' },
1212
- [BitType_1.AliasBitType.reviewReviewerNote]: { since: '1.3.0' },
1213
- [BitType_1.AliasBitType.reviewRequestForReviewNote]: { since: '1.3.0' },
1214
- [BitType_1.AliasBitType.reviewApprovedNote]: { since: '1.3.0' },
1215
- },
1216
1167
  },
1217
- [BitType_1.RootBitType.sampleSolution]: {
1168
+ [BitType_1.BitType.reviewAuthorNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.reviewNote },
1169
+ [BitType_1.BitType.reviewReviewerNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.reviewNote },
1170
+ [BitType_1.BitType.reviewRequestForReviewNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.reviewNote },
1171
+ [BitType_1.BitType.reviewApprovedNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.reviewNote },
1172
+ [BitType_1.BitType.sampleSolution]: {
1218
1173
  since: '1.3.0',
1219
1174
  tags: [
1220
1175
  {
@@ -1234,7 +1189,7 @@ const BITS = {
1234
1189
  resourceAttachmentAllowed: true,
1235
1190
  bodyAllowed: true,
1236
1191
  },
1237
- [BitType_1.RootBitType.sequence]: {
1192
+ [BitType_1.BitType.sequence]: {
1238
1193
  since: '1.3.0',
1239
1194
  tags: [
1240
1195
  {
@@ -1248,7 +1203,7 @@ const BITS = {
1248
1203
  footerAllowed: true,
1249
1204
  rootExampleType: ExampleType_1.ExampleType.boolean,
1250
1205
  },
1251
- [BitType_1.RootBitType.stillImageFilm]: {
1206
+ [BitType_1.BitType.stillImageFilm]: {
1252
1207
  since: '1.3.0',
1253
1208
  tags: [
1254
1209
  {
@@ -1263,7 +1218,7 @@ const BITS = {
1263
1218
  ],
1264
1219
  bodyAllowed: true,
1265
1220
  },
1266
- [BitType_1.RootBitType.stillImageFilmEmbed]: {
1221
+ [BitType_1.BitType.stillImageFilmEmbed]: {
1267
1222
  since: '1.3.0',
1268
1223
  tags: [
1269
1224
  {
@@ -1278,7 +1233,7 @@ const BITS = {
1278
1233
  ],
1279
1234
  bodyAllowed: true,
1280
1235
  },
1281
- [BitType_1.RootBitType.stillImageFilmLink]: {
1236
+ [BitType_1.BitType.stillImageFilmLink]: {
1282
1237
  since: '1.3.0',
1283
1238
  tags: [
1284
1239
  {
@@ -1293,7 +1248,7 @@ const BITS = {
1293
1248
  ],
1294
1249
  bodyAllowed: true,
1295
1250
  },
1296
- [BitType_1.RootBitType.surveyAnonymous]: {
1251
+ [BitType_1.BitType.surveyAnonymous]: {
1297
1252
  since: '1.3.0',
1298
1253
  tags: [
1299
1254
  {
@@ -1304,7 +1259,7 @@ const BITS = {
1304
1259
  resourceAttachmentAllowed: true,
1305
1260
  bodyAllowed: true,
1306
1261
  },
1307
- [BitType_1.RootBitType.survey]: {
1262
+ [BitType_1.BitType.survey]: {
1308
1263
  since: '1.3.0',
1309
1264
  tags: [
1310
1265
  {
@@ -1315,7 +1270,7 @@ const BITS = {
1315
1270
  resourceAttachmentAllowed: true,
1316
1271
  bodyAllowed: true,
1317
1272
  },
1318
- [BitType_1.RootBitType.toc]: {
1273
+ [BitType_1.BitType.toc]: {
1319
1274
  since: '1.3.0',
1320
1275
  tags: [
1321
1276
  {
@@ -1324,28 +1279,26 @@ const BITS = {
1324
1279
  },
1325
1280
  ],
1326
1281
  bodyAllowed: true,
1327
- aliases: {
1328
- [BitType_1.AliasBitType.anchor]: { since: '1.3.0' },
1329
- [BitType_1.AliasBitType.bitBookEnding]: { since: '1.3.0' },
1330
- [BitType_1.AliasBitType.bitBookSummary]: { since: '1.3.0' },
1331
- [BitType_1.AliasBitType.botActionAnnounce]: { since: '1.3.0' },
1332
- [BitType_1.AliasBitType.botActionRatingNumber]: { since: '1.3.0' },
1333
- [BitType_1.AliasBitType.botActionRemind]: { since: '1.3.0' },
1334
- [BitType_1.AliasBitType.botActionSave]: { since: '1.3.0' },
1335
- [BitType_1.AliasBitType.botActionTrueFalse]: { since: '1.3.0' },
1336
- [BitType_1.AliasBitType.chapterSubjectMatter]: { since: '1.3.0' },
1337
- [BitType_1.AliasBitType.chat]: { since: '1.3.0' },
1338
- [BitType_1.AliasBitType.conclusion]: { since: '1.3.0' },
1339
- [BitType_1.AliasBitType.documentUpload]: { since: '1.3.0' },
1340
- [BitType_1.AliasBitType.footNote]: { since: '1.3.0' },
1341
- [BitType_1.AliasBitType.groupBorn]: { since: '1.3.0' },
1342
- [BitType_1.AliasBitType.groupDied]: { since: '1.3.0' },
1343
- [BitType_1.AliasBitType.recordAudio]: { since: '1.3.0' },
1344
- [BitType_1.AliasBitType.stickyNote]: { since: '1.3.0' },
1345
- [BitType_1.AliasBitType.takePicture]: { since: '1.3.0' },
1346
- },
1347
1282
  },
1348
- [BitType_1.RootBitType.trueFalse1]: {
1283
+ [BitType_1.BitType.anchor]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1284
+ [BitType_1.BitType.bitBookEnding]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1285
+ [BitType_1.BitType.bitBookSummary]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1286
+ [BitType_1.BitType.botActionAnnounce]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1287
+ [BitType_1.BitType.botActionRatingNumber]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1288
+ [BitType_1.BitType.botActionRemind]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1289
+ [BitType_1.BitType.botActionSave]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1290
+ [BitType_1.BitType.botActionTrueFalse]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1291
+ [BitType_1.BitType.chapterSubjectMatter]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1292
+ [BitType_1.BitType.chat]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1293
+ [BitType_1.BitType.conclusion]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1294
+ [BitType_1.BitType.documentUpload]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1295
+ [BitType_1.BitType.footNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1296
+ [BitType_1.BitType.groupBorn]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1297
+ [BitType_1.BitType.groupDied]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1298
+ [BitType_1.BitType.recordAudio]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1299
+ [BitType_1.BitType.stickyNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1300
+ [BitType_1.BitType.takePicture]: { since: '1.3.0', baseBitType: BitType_1.BitType.toc },
1301
+ [BitType_1.BitType.trueFalse1]: {
1349
1302
  since: '1.3.0',
1350
1303
  tags: [
1351
1304
  {
@@ -1373,7 +1326,7 @@ const BITS = {
1373
1326
  bodyAllowed: false,
1374
1327
  rootExampleType: ExampleType_1.ExampleType.boolean,
1375
1328
  },
1376
- [BitType_1.RootBitType.trueFalse]: {
1329
+ [BitType_1.BitType.trueFalse]: {
1377
1330
  since: '1.3.0',
1378
1331
  tags: [
1379
1332
  {
@@ -1394,7 +1347,7 @@ const BITS = {
1394
1347
  bodyAllowed: true,
1395
1348
  footerAllowed: true,
1396
1349
  },
1397
- [BitType_1.RootBitType.vendorPadletEmbed]: {
1350
+ [BitType_1.BitType.vendorPadletEmbed]: {
1398
1351
  since: '1.3.0',
1399
1352
  tags: [
1400
1353
  {
@@ -1409,13 +1362,10 @@ const BITS = {
1409
1362
  textFormatDefault: TextFormat_1.TextFormat.text,
1410
1363
  bodyAllowed: true,
1411
1364
  },
1412
- [BitType_1.RootBitType.vendorJupyterOutput]: {
1365
+ [BitType_1.BitType.vendorJupyterOutput]: {
1413
1366
  since: '1.4.3',
1367
+ baseBitType: BitType_1.BitType.code,
1414
1368
  tags: [
1415
- {
1416
- type: BitTagType_1.BitTagType.group,
1417
- configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
1418
- },
1419
1369
  {
1420
1370
  type: BitTagType_1.BitTagType.property,
1421
1371
  configKey: PropertyConfigKey_1.PropertyConfigKey.jupyterId,
@@ -1424,21 +1374,15 @@ const BITS = {
1424
1374
  type: BitTagType_1.BitTagType.property,
1425
1375
  configKey: PropertyConfigKey_1.PropertyConfigKey.jupyterExecutionCount,
1426
1376
  },
1427
- {
1428
- type: BitTagType_1.BitTagType.property,
1429
- configKey: PropertyConfigKey_1.PropertyConfigKey.computerLanguage,
1430
- },
1431
1377
  ],
1432
1378
  textFormatDefault: TextFormat_1.TextFormat.text,
1433
1379
  bodyAllowed: true,
1434
- aliases: {
1435
- [BitType_1.AliasBitType.vendorJupyterCellCode]: { since: '1.4.3' },
1436
- [BitType_1.AliasBitType.vendorJupyterCellMarkdown]: { since: '1.4.3' },
1437
- [BitType_1.AliasBitType.vendorJupyterCellRaw]: { since: '1.4.3' },
1438
- [BitType_1.AliasBitType.vendorJupyterIpynb]: { since: '1.4.3' },
1439
- },
1440
1380
  },
1441
- [BitType_1.RootBitType.video]: {
1381
+ [BitType_1.BitType.vendorJupyterCellCode]: { since: '1.4.3', baseBitType: BitType_1.BitType.vendorJupyterOutput },
1382
+ [BitType_1.BitType.vendorJupyterCellMarkdown]: { since: '1.4.3', baseBitType: BitType_1.BitType.vendorJupyterOutput },
1383
+ [BitType_1.BitType.vendorJupyterCellRaw]: { since: '1.4.3', baseBitType: BitType_1.BitType.vendorJupyterOutput },
1384
+ [BitType_1.BitType.vendorJupyterIpynb]: { since: '1.4.3', baseBitType: BitType_1.BitType.vendorJupyterOutput },
1385
+ [BitType_1.BitType.video]: {
1442
1386
  since: '1.3.0',
1443
1387
  tags: [
1444
1388
  {
@@ -1452,12 +1396,10 @@ const BITS = {
1452
1396
  },
1453
1397
  ],
1454
1398
  bodyAllowed: true,
1455
- aliases: {
1456
- [BitType_1.AliasBitType.videoLandscape]: { since: '1.3.0' },
1457
- [BitType_1.AliasBitType.videoPortrait]: { since: '1.3.0' },
1458
- },
1459
1399
  },
1460
- [BitType_1.RootBitType.videoEmbed]: {
1400
+ [BitType_1.BitType.videoLandscape]: { since: '1.3.0', baseBitType: BitType_1.BitType.video },
1401
+ [BitType_1.BitType.videoPortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.video },
1402
+ [BitType_1.BitType.videoEmbed]: {
1461
1403
  since: '1.3.0',
1462
1404
  tags: [
1463
1405
  {
@@ -1471,12 +1413,10 @@ const BITS = {
1471
1413
  },
1472
1414
  ],
1473
1415
  bodyAllowed: true,
1474
- aliases: {
1475
- [BitType_1.AliasBitType.videoEmbedLandscape]: { since: '1.3.0' },
1476
- [BitType_1.AliasBitType.videoEmbedPortrait]: { since: '1.3.0' },
1477
- },
1478
1416
  },
1479
- [BitType_1.RootBitType.videoLink]: {
1417
+ [BitType_1.BitType.videoEmbedLandscape]: { since: '1.3.0', baseBitType: BitType_1.BitType.videoEmbed },
1418
+ [BitType_1.BitType.videoEmbedPortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.videoEmbed },
1419
+ [BitType_1.BitType.videoLink]: {
1480
1420
  since: '1.3.0',
1481
1421
  tags: [
1482
1422
  {
@@ -1490,12 +1430,10 @@ const BITS = {
1490
1430
  },
1491
1431
  ],
1492
1432
  bodyAllowed: true,
1493
- aliases: {
1494
- [BitType_1.AliasBitType.videoLinkLandscape]: { since: '1.3.0' },
1495
- [BitType_1.AliasBitType.videoLinkPortrait]: { since: '1.3.0' },
1496
- },
1497
1433
  },
1498
- [BitType_1.RootBitType.websiteLink]: {
1434
+ [BitType_1.BitType.videoLinkLandscape]: { since: '1.3.0', baseBitType: BitType_1.BitType.videoLink },
1435
+ [BitType_1.BitType.videoLinkPortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.videoLink },
1436
+ [BitType_1.BitType.websiteLink]: {
1499
1437
  since: '1.3.0',
1500
1438
  tags: [
1501
1439
  {