@gmb/bitmark-parser-generator 1.34.0 → 2.0.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 (317) 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 +8 -3
  4. package/dist/cjs/BitmarkParserGenerator.js.map +1 -1
  5. package/dist/cjs/ast/Ast.js +1 -0
  6. package/dist/cjs/ast/Ast.js.map +1 -1
  7. package/dist/cjs/ast/BaseBuilder.js +91 -54
  8. package/dist/cjs/ast/BaseBuilder.js.map +1 -1
  9. package/dist/cjs/ast/Builder.js +780 -377
  10. package/dist/cjs/ast/Builder.js.map +1 -1
  11. package/dist/cjs/ast/ResourceBuilder.js +516 -252
  12. package/dist/cjs/ast/ResourceBuilder.js.map +1 -1
  13. package/dist/cjs/ast/rules/NodeValidator.js +61 -22
  14. package/dist/cjs/ast/rules/NodeValidator.js.map +1 -1
  15. package/dist/cjs/ast/writer/StreamWriter.js +13 -0
  16. package/dist/cjs/ast/writer/StreamWriter.js.map +1 -1
  17. package/dist/cjs/ast/writer/StringWriter.js +13 -0
  18. package/dist/cjs/ast/writer/StringWriter.js.map +1 -1
  19. package/dist/cjs/breakscaping/Breakscape.js +122 -95
  20. package/dist/cjs/breakscaping/Breakscape.js.map +1 -1
  21. package/dist/cjs/config/raw/bits.js +24 -5
  22. package/dist/cjs/config/raw/bits.js.map +1 -1
  23. package/dist/cjs/config/raw/properties.js +7 -2
  24. package/dist/cjs/config/raw/properties.js.map +1 -1
  25. package/dist/cjs/generated/build-info.js +1 -1
  26. package/dist/cjs/generated/build-info.js.map +1 -1
  27. package/dist/cjs/generated/parser/bitmark/bitmark-peggy-parser.js +312 -262
  28. package/dist/cjs/generated/parser/bitmark/bitmark-peggy-parser.js.map +1 -1
  29. package/dist/cjs/generator/AstWalkerGenerator.js +4 -1
  30. package/dist/cjs/generator/AstWalkerGenerator.js.map +1 -1
  31. package/dist/cjs/generator/bitmark/BitmarkGenerator.js +977 -336
  32. package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
  33. package/dist/cjs/generator/json/JsonGenerator.js +361 -1964
  34. package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
  35. package/dist/cjs/generator/text/TextGenerator.js +26 -8
  36. package/dist/cjs/generator/text/TextGenerator.js.map +1 -1
  37. package/dist/cjs/index.js.map +1 -1
  38. package/dist/cjs/model/ast/NodeType.js +64 -42
  39. package/dist/cjs/model/ast/NodeType.js.map +1 -1
  40. package/dist/cjs/model/config/enum/PropertyConfigKey.js +1 -0
  41. package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
  42. package/dist/cjs/model/enum/BitType.js +2 -2
  43. package/dist/cjs/model/enum/BitType.js.map +1 -1
  44. package/dist/cjs/model/enum/PropertyFormat.js +3 -1
  45. package/dist/cjs/model/enum/PropertyFormat.js.map +1 -1
  46. package/dist/cjs/model/enum/TextFormat.js +1 -0
  47. package/dist/cjs/model/enum/TextFormat.js.map +1 -1
  48. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserHelper.js +22 -4
  49. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserHelper.js.map +1 -1
  50. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js +93 -88
  51. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  52. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js +3 -1
  53. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  54. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +10 -32
  55. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  56. package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +255 -0
  57. package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -0
  58. package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +2 -1
  59. package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  60. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +175 -129
  61. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  62. package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +8 -2
  63. package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  64. package/dist/cjs/parser/bitmark/peg/contentProcessors/ContentProcessorUtils.js +61 -0
  65. package/dist/cjs/parser/bitmark/peg/contentProcessors/ContentProcessorUtils.js.map +1 -0
  66. package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +11 -5
  67. package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  68. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +21 -17
  69. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  70. package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +50 -0
  71. package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -0
  72. package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +2 -15
  73. package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  74. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +2 -4
  75. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  76. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +4 -1
  77. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  78. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +2 -4
  79. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  80. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +5 -5
  81. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  82. package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +5 -6
  83. package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
  84. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +23 -7
  85. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  86. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +5 -5
  87. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
  88. package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +3 -2
  89. package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  90. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +19 -8
  91. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  92. package/dist/cjs/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js +4 -6
  93. package/dist/cjs/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js.map +1 -1
  94. package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +4 -5
  95. package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
  96. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +14 -5
  97. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  98. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +37 -21
  99. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
  100. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +3 -2
  101. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  102. package/dist/cjs/parser/json/JsonParser.js +73 -759
  103. package/dist/cjs/parser/json/JsonParser.js.map +1 -1
  104. package/dist/cjs/parser/text/TextParser.js +75 -1
  105. package/dist/cjs/parser/text/TextParser.js.map +1 -1
  106. package/dist/cjs/utils/BitUtils.js +15 -13
  107. package/dist/cjs/utils/BitUtils.js.map +1 -1
  108. package/dist/cjs/utils/StringUtils.js +40 -0
  109. package/dist/cjs/utils/StringUtils.js.map +1 -1
  110. package/dist/esm/BitmarkParserGenerator.js +8 -3
  111. package/dist/esm/BitmarkParserGenerator.js.map +1 -1
  112. package/dist/esm/ast/Ast.js +1 -0
  113. package/dist/esm/ast/Ast.js.map +1 -1
  114. package/dist/esm/ast/BaseBuilder.js +91 -54
  115. package/dist/esm/ast/BaseBuilder.js.map +1 -1
  116. package/dist/esm/ast/Builder.js +780 -377
  117. package/dist/esm/ast/Builder.js.map +1 -1
  118. package/dist/esm/ast/ResourceBuilder.js +516 -252
  119. package/dist/esm/ast/ResourceBuilder.js.map +1 -1
  120. package/dist/esm/ast/rules/NodeValidator.js +61 -22
  121. package/dist/esm/ast/rules/NodeValidator.js.map +1 -1
  122. package/dist/esm/ast/writer/StreamWriter.js +13 -0
  123. package/dist/esm/ast/writer/StreamWriter.js.map +1 -1
  124. package/dist/esm/ast/writer/StringWriter.js +13 -0
  125. package/dist/esm/ast/writer/StringWriter.js.map +1 -1
  126. package/dist/esm/breakscaping/Breakscape.js +122 -95
  127. package/dist/esm/breakscaping/Breakscape.js.map +1 -1
  128. package/dist/esm/config/raw/bits.js +24 -5
  129. package/dist/esm/config/raw/bits.js.map +1 -1
  130. package/dist/esm/config/raw/properties.js +7 -2
  131. package/dist/esm/config/raw/properties.js.map +1 -1
  132. package/dist/esm/generated/build-info.js +1 -1
  133. package/dist/esm/generated/build-info.js.map +1 -1
  134. package/dist/esm/generated/parser/bitmark/bitmark-peggy-parser.js +312 -262
  135. package/dist/esm/generated/parser/bitmark/bitmark-peggy-parser.js.map +1 -1
  136. package/dist/esm/generator/AstWalkerGenerator.js +4 -1
  137. package/dist/esm/generator/AstWalkerGenerator.js.map +1 -1
  138. package/dist/esm/generator/bitmark/BitmarkGenerator.js +977 -336
  139. package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
  140. package/dist/esm/generator/json/JsonGenerator.js +361 -1964
  141. package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
  142. package/dist/esm/generator/text/TextGenerator.js +26 -8
  143. package/dist/esm/generator/text/TextGenerator.js.map +1 -1
  144. package/dist/esm/index.js.map +1 -1
  145. package/dist/esm/model/ast/NodeType.js +64 -42
  146. package/dist/esm/model/ast/NodeType.js.map +1 -1
  147. package/dist/esm/model/config/enum/PropertyConfigKey.js +1 -0
  148. package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
  149. package/dist/esm/model/enum/BitType.js +2 -2
  150. package/dist/esm/model/enum/BitType.js.map +1 -1
  151. package/dist/esm/model/enum/PropertyFormat.js +3 -1
  152. package/dist/esm/model/enum/PropertyFormat.js.map +1 -1
  153. package/dist/esm/model/enum/TextFormat.js +1 -0
  154. package/dist/esm/model/enum/TextFormat.js.map +1 -1
  155. package/dist/esm/parser/bitmark/peg/BitmarkPegParserHelper.js +22 -4
  156. package/dist/esm/parser/bitmark/peg/BitmarkPegParserHelper.js.map +1 -1
  157. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js +93 -88
  158. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  159. package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js +3 -1
  160. package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  161. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +10 -32
  162. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  163. package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +252 -0
  164. package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -0
  165. package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +2 -1
  166. package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  167. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +175 -129
  168. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  169. package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +8 -2
  170. package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  171. package/dist/esm/parser/bitmark/peg/contentProcessors/ContentProcessorUtils.js +58 -0
  172. package/dist/esm/parser/bitmark/peg/contentProcessors/ContentProcessorUtils.js.map +1 -0
  173. package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +11 -5
  174. package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  175. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +21 -17
  176. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  177. package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +47 -0
  178. package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -0
  179. package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +2 -15
  180. package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  181. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +2 -4
  182. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  183. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +4 -1
  184. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  185. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +2 -4
  186. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  187. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +5 -5
  188. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  189. package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +5 -6
  190. package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
  191. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +23 -7
  192. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  193. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +5 -5
  194. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
  195. package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +3 -2
  196. package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  197. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +19 -8
  198. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  199. package/dist/esm/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js +4 -6
  200. package/dist/esm/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js.map +1 -1
  201. package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +4 -5
  202. package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
  203. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +14 -5
  204. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  205. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +37 -21
  206. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
  207. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +3 -2
  208. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  209. package/dist/esm/parser/json/JsonParser.js +73 -759
  210. package/dist/esm/parser/json/JsonParser.js.map +1 -1
  211. package/dist/esm/parser/text/TextParser.js +75 -1
  212. package/dist/esm/parser/text/TextParser.js.map +1 -1
  213. package/dist/esm/utils/BitUtils.js +15 -13
  214. package/dist/esm/utils/BitUtils.js.map +1 -1
  215. package/dist/esm/utils/StringUtils.js +40 -0
  216. package/dist/esm/utils/StringUtils.js.map +1 -1
  217. package/dist/types/BitmarkParserGenerator.d.ts +8 -0
  218. package/dist/types/BitmarkParserGenerator.d.ts.map +1 -1
  219. package/dist/types/ast/Ast.d.ts.map +1 -1
  220. package/dist/types/ast/BaseBuilder.d.ts +31 -21
  221. package/dist/types/ast/BaseBuilder.d.ts.map +1 -1
  222. package/dist/types/ast/Builder.d.ts +283 -435
  223. package/dist/types/ast/Builder.d.ts.map +1 -1
  224. package/dist/types/ast/ResourceBuilder.d.ts +177 -164
  225. package/dist/types/ast/ResourceBuilder.d.ts.map +1 -1
  226. package/dist/types/ast/rules/NodeValidator.d.ts +3 -2
  227. package/dist/types/ast/rules/NodeValidator.d.ts.map +1 -1
  228. package/dist/types/ast/writer/StreamWriter.d.ts +2 -0
  229. package/dist/types/ast/writer/StreamWriter.d.ts.map +1 -1
  230. package/dist/types/ast/writer/StringWriter.d.ts +2 -0
  231. package/dist/types/ast/writer/StringWriter.d.ts.map +1 -1
  232. package/dist/types/ast/writer/Writer.d.ts +6 -0
  233. package/dist/types/ast/writer/Writer.d.ts.map +1 -1
  234. package/dist/types/breakscaping/Breakscape.d.ts +6 -1
  235. package/dist/types/breakscaping/Breakscape.d.ts.map +1 -1
  236. package/dist/types/config/raw/bits.d.ts.map +1 -1
  237. package/dist/types/config/raw/properties.d.ts.map +1 -1
  238. package/dist/types/generated/parser/bitmark/bitmark-peggy-parser.d.ts.map +1 -1
  239. package/dist/types/generator/AstWalkerGenerator.d.ts.map +1 -1
  240. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +91 -55
  241. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
  242. package/dist/types/generator/json/JsonGenerator.d.ts +96 -108
  243. package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
  244. package/dist/types/generator/text/TextGenerator.d.ts +14 -2
  245. package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
  246. package/dist/types/index.d.ts +2 -2
  247. package/dist/types/index.d.ts.map +1 -1
  248. package/dist/types/model/ast/NodeType.d.ts +122 -84
  249. package/dist/types/model/ast/NodeType.d.ts.map +1 -1
  250. package/dist/types/model/ast/Nodes.d.ts +66 -436
  251. package/dist/types/model/ast/Nodes.d.ts.map +1 -1
  252. package/dist/types/model/ast/TextNodes.d.ts +1 -1
  253. package/dist/types/model/ast/TextNodes.d.ts.map +1 -1
  254. package/dist/types/model/config/enum/ConfigKey.d.ts +2 -0
  255. package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
  256. package/dist/types/model/config/enum/PropertyConfigKey.d.ts +3 -0
  257. package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
  258. package/dist/types/model/enum/BitType.d.ts +4 -4
  259. package/dist/types/model/enum/PropertyFormat.d.ts +4 -2
  260. package/dist/types/model/enum/PropertyFormat.d.ts.map +1 -1
  261. package/dist/types/model/enum/PropertyTag.d.ts +2 -0
  262. package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
  263. package/dist/types/model/enum/TextFormat.d.ts +2 -0
  264. package/dist/types/model/enum/TextFormat.d.ts.map +1 -1
  265. package/dist/types/model/json/BitJson.d.ts +32 -20
  266. package/dist/types/model/json/BitJson.d.ts.map +1 -1
  267. package/dist/types/model/json/BodyBitJson.d.ts +16 -12
  268. package/dist/types/model/json/BodyBitJson.d.ts.map +1 -1
  269. package/dist/types/model/json/ResourceJson.d.ts +2 -22
  270. package/dist/types/model/json/ResourceJson.d.ts.map +1 -1
  271. package/dist/types/parser/bitmark/peg/BitmarkPegParserHelper.d.ts +4 -2
  272. package/dist/types/parser/bitmark/peg/BitmarkPegParserHelper.d.ts.map +1 -1
  273. package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts +3 -9
  274. package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts.map +1 -1
  275. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +90 -74
  276. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
  277. package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts +2 -2
  278. package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts.map +1 -1
  279. package/dist/types/parser/bitmark/peg/contentProcessors/BodyContentProcessor.d.ts +37 -0
  280. package/dist/types/parser/bitmark/peg/contentProcessors/BodyContentProcessor.d.ts.map +1 -0
  281. package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts.map +1 -1
  282. package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts +2 -2
  283. package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts.map +1 -1
  284. package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts.map +1 -1
  285. package/dist/types/parser/bitmark/peg/contentProcessors/ContentProcessorUtils.d.ts +15 -0
  286. package/dist/types/parser/bitmark/peg/contentProcessors/ContentProcessorUtils.d.ts.map +1 -0
  287. package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts.map +1 -1
  288. package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts.map +1 -1
  289. package/dist/types/parser/bitmark/peg/contentProcessors/FooterContentProcessor.d.ts +16 -0
  290. package/dist/types/parser/bitmark/peg/contentProcessors/FooterContentProcessor.d.ts.map +1 -0
  291. package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts.map +1 -1
  292. package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts.map +1 -1
  293. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts.map +1 -1
  294. package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts.map +1 -1
  295. package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts.map +1 -1
  296. package/dist/types/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.d.ts.map +1 -1
  297. package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
  298. package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts.map +1 -1
  299. package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts.map +1 -1
  300. package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts +2 -2
  301. package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts.map +1 -1
  302. package/dist/types/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.d.ts.map +1 -1
  303. package/dist/types/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.d.ts.map +1 -1
  304. package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts +5 -2
  305. package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts.map +1 -1
  306. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts +1 -1
  307. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts.map +1 -1
  308. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts.map +1 -1
  309. package/dist/types/parser/json/JsonParser.d.ts +9 -72
  310. package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
  311. package/dist/types/parser/text/TextParser.d.ts +16 -1
  312. package/dist/types/parser/text/TextParser.d.ts.map +1 -1
  313. package/dist/types/utils/BitUtils.d.ts +8 -8
  314. package/dist/types/utils/BitUtils.d.ts.map +1 -1
  315. package/dist/types/utils/StringUtils.d.ts +24 -0
  316. package/dist/types/utils/StringUtils.d.ts.map +1 -1
  317. package/package.json +1 -1
@@ -3,51 +3,57 @@ import { EnumType } from '@ncoderz/superenum';
3
3
  * Defines the type of a node in the AST.
4
4
  * All valid node types should be defined here.
5
5
  *
6
+ * Nodes not defined here will not be walked by the AST walker.
7
+ *
6
8
  * @enum
7
9
  */
8
10
  declare const NodeType: Readonly<{
9
11
  unknown: "unknown";
10
12
  action: "action";
11
13
  actionValue: "actionValue";
14
+ activityType: "activityType";
15
+ activityTypeValue: "activityTypeValue";
16
+ additionalSolutions: "additionalSolutions";
17
+ additionalSolutionsValue: "additionalSolutionsValue";
12
18
  ageRange: "ageRange";
13
19
  ageRangeValue: "ageRangeValue";
14
20
  aiGenerated: "aiGenerated";
15
21
  aiGeneratedValue: "aiGeneratedValue";
16
- analyticsTag: "analyticsTag";
17
- analyticsTagValue: "analyticsTagValue";
18
- disableFeedback: "disableFeedback";
19
- disableFeedbackValue: "disableFeedbackValue";
20
22
  alias: "alias";
21
23
  alignment: "alignment";
24
+ allowedBit: "allowedBit";
25
+ allowedBitValue: "allowedBitValue";
22
26
  alt: "alt";
23
27
  alternativeAnswers: "alternativeAnswers";
24
28
  alternativeAnswersValue: "alternativeAnswersValue";
25
29
  alternativeDefinitions: "alternativeDefinitions";
26
30
  alternativeDefinitionsValue: "alternativeDefinitionsValue";
31
+ analyticsTag: "analyticsTag";
32
+ analyticsTagValue: "analyticsTagValue";
27
33
  anchor: "anchor";
28
34
  answer: "answer";
35
+ appLink: "appLink";
29
36
  attrs: "attrs";
30
37
  audio: "audio";
38
+ audioEmbed: "audioEmbed";
39
+ audioLink: "audioLink";
31
40
  author: "author";
32
41
  authorValue: "authorValue";
33
42
  availableClassifications: "availableClassifications";
34
43
  availableClassificationsValue: "availableClassificationsValue";
35
- allowedBit: "allowedBit";
36
- allowedBitValue: "allowedBitValue";
37
44
  avatarImage: "avatarImage";
38
45
  backgroundWallpaper: "backgroundWallpaper";
39
46
  backgroundWallpaperValue: "backgroundWallpaperValue";
40
- hasBookNavigation: "hasBookNavigation";
41
- hasBookNavigationValue: "hasBookNavigationValue";
47
+ bitLevel: "bitLevel";
42
48
  bitmarkAst: "bitmarkAst";
43
49
  bitmarkVersion: "bitmarkVersion";
44
50
  bits: "bits";
45
51
  bitsValue: "bitsValue";
46
- bitLevel: "bitLevel";
47
52
  bitType: "bitType";
48
53
  blockId: "blockId";
49
54
  blockIdValue: "blockIdValue";
50
55
  body: "body";
56
+ bodyBit: "bodyBit";
51
57
  bodyJson: "bodyJson";
52
58
  bodyParts: "bodyParts";
53
59
  bodyPartsValue: "bodyPartsValue";
@@ -60,19 +66,22 @@ declare const NodeType: Readonly<{
60
66
  botResponses: "botResponses";
61
67
  botResponsesValue: "botResponsesValue";
62
68
  botValue: "botValue";
69
+ bubbleTag: "bubbleTag";
70
+ bubbleTagValue: "bubbleTagValue";
63
71
  buttonCaption: "buttonCaption";
64
72
  buttonCaptionValue: "buttonCaptionValue";
65
73
  callToActionUrl: "callToActionUrl";
66
74
  callToActionUrlValue: "callToActionUrlValue";
67
75
  caption: "caption";
68
- captionValue: "captionValue";
69
76
  captionDefinitionList: "captionDefinitionList";
77
+ captionValue: "captionValue";
70
78
  cardBits: "cardBits";
71
79
  cardBitsValue: "cardBitsValue";
72
80
  cardNode: "cardNode";
73
81
  cells: "cells";
74
82
  cellsValue: "cellsValue";
75
83
  checked: "checked";
84
+ choice: "choice";
76
85
  choices: "choices";
77
86
  choicesValue: "choicesValue";
78
87
  class: "class";
@@ -82,10 +91,6 @@ declare const NodeType: Readonly<{
82
91
  codeLineNumbersValue: "codeLineNumbersValue";
83
92
  codeMinimap: "codeMinimap";
84
93
  codeMinimapValue: "codeMinimapValue";
85
- stripePricingTableId: "stripePricingTableId";
86
- stripePricingTableIdValue: "stripePricingTableIdValue";
87
- stripePublishableKey: "stripePublishableKey";
88
- stripePublishableKeyValue: "stripePublishableKeyValue";
89
94
  color: "color";
90
95
  colorTag: "colorTag";
91
96
  colorTagValue: "colorTagValue";
@@ -106,17 +111,25 @@ declare const NodeType: Readonly<{
106
111
  coverImage: "coverImage";
107
112
  coverImageValue: "coverImageValue";
108
113
  data: "data";
114
+ dataValue: "dataValue";
115
+ dataValueValue: "dataValueValue";
109
116
  date: "date";
110
- dateValue: "dateValue";
111
117
  dateEnd: "dateEnd";
112
118
  dateEndValue: "dateEndValue";
119
+ dateValue: "dateValue";
113
120
  decimalPlaces: "decimalPlaces";
114
121
  deeplink: "deeplink";
115
122
  deeplinkValue: "deeplinkValue";
123
+ definition: "definition";
116
124
  definitions: "definitions";
117
125
  definitionsValue: "definitionsValue";
118
- description: "description";
119
126
  disableCalculation: "disableCalculation";
127
+ disableFeedback: "disableFeedback";
128
+ disableFeedbackValue: "disableFeedbackValue";
129
+ document: "document";
130
+ documentDownload: "documentDownload";
131
+ documentEmbed: "documentEmbed";
132
+ documentLink: "documentLink";
120
133
  duration: "duration";
121
134
  durationValue: "durationValue";
122
135
  elements: "elements";
@@ -151,6 +164,8 @@ declare const NodeType: Readonly<{
151
164
  forValues: "forValues";
152
165
  forValuesValue: "forValuesValue";
153
166
  gap: "gap";
167
+ hasBookNavigation: "hasBookNavigation";
168
+ hasBookNavigationValue: "hasBookNavigationValue";
154
169
  hasMarkAsDone: "hasMarkAsDone";
155
170
  hasMarkAsDoneValue: "hasMarkAsDoneValue";
156
171
  heading: "heading";
@@ -166,7 +181,10 @@ declare const NodeType: Readonly<{
166
181
  id: "id";
167
182
  idValue: "idValue";
168
183
  image: "image";
184
+ imageFirst: "imageFirst";
185
+ imageFirstValue: "imageFirstValue";
169
186
  imageLandscape: "imageLandscape";
187
+ imageLink: "imageLink";
170
188
  imagePlaceholder: "imagePlaceholder";
171
189
  imagePlaceholderValue: "imagePlaceholderValue";
172
190
  imagePortrait: "imagePortrait";
@@ -181,14 +199,11 @@ declare const NodeType: Readonly<{
181
199
  isCaseSensitive: "isCaseSensitive";
182
200
  isCommented: "isCommented";
183
201
  isCorrect: "isCorrect";
184
- isDefaultExample: "isDefaultExample";
202
+ __isDefaultExample: "__isDefaultExample";
185
203
  isExample: "isExample";
186
204
  isInfoOnly: "isInfoOnly";
187
205
  isInfoOnlyValue: "isInfoOnlyValue";
188
- imageFirst: "imageFirst";
189
- imageFirstValue: "imageFirstValue";
190
- activityType: "activityType";
191
- activityTypeValue: "activityTypeValue";
206
+ isPlain: "isPlain";
192
207
  isPublic: "isPublic";
193
208
  isPublicValue: "isPublicValue";
194
209
  isTracked: "isTracked";
@@ -215,12 +230,20 @@ declare const NodeType: Readonly<{
215
230
  langValue: "langValue";
216
231
  lead: "lead";
217
232
  level: "level";
233
+ levelACTFL: "levelACTFL";
234
+ levelACTFLValue: "levelACTFLValue";
235
+ levelCEFR: "levelCEFR";
236
+ levelCEFRp: "levelCEFRp";
237
+ levelCEFRpValue: "levelCEFRpValue";
238
+ levelCEFRValue: "levelCEFRValue";
239
+ levelILR: "levelILR";
240
+ levelILRValue: "levelILRValue";
218
241
  license: "license";
219
242
  line: "line";
220
243
  list: "list";
221
- listValue: "listValue";
222
244
  listItemIndent: "listItemIndent";
223
245
  listItemIndentValue: "listItemIndentValue";
246
+ listValue: "listValue";
224
247
  location: "location";
225
248
  locationValue: "locationValue";
226
249
  machineTranslated: "machineTranslated";
@@ -248,9 +271,11 @@ declare const NodeType: Readonly<{
248
271
  original: "original";
249
272
  padletId: "padletId";
250
273
  padletIdValue: "padletIdValue";
274
+ page: "page";
251
275
  pageNo: "pageNo";
252
276
  pageNoValue: "pageNoValue";
253
277
  pageNumber: "pageNumber";
278
+ pageValue: "pageValue";
254
279
  pairs: "pairs";
255
280
  pairsValue: "pairsValue";
256
281
  parent: "parent";
@@ -266,15 +291,13 @@ declare const NodeType: Readonly<{
266
291
  posterImageValue: "posterImageValue";
267
292
  postfix: "postfix";
268
293
  prefix: "prefix";
269
- page: "page";
270
- pageValue: "pageValue";
271
294
  processHandIn: "processHandIn";
272
295
  processHandInValue: "processHandInValue";
273
- productId: "productId";
274
- productIdValue: "productIdValue";
275
296
  product: "product";
276
297
  productFolder: "productFolder";
277
298
  productFolderValue: "productFolderValue";
299
+ productId: "productId";
300
+ productIdValue: "productIdValue";
278
301
  productList: "productList";
279
302
  productListValue: "productListValue";
280
303
  productValue: "productValue";
@@ -316,16 +339,6 @@ declare const NodeType: Readonly<{
316
339
  reasonableNumOfCharsValue: "reasonableNumOfCharsValue";
317
340
  reductionTag: "reductionTag";
318
341
  reductionTagValue: "reductionTagValue";
319
- bubbleTag: "bubbleTag";
320
- bubbleTagValue: "bubbleTagValue";
321
- levelCEFRp: "levelCEFRp";
322
- levelCEFRpValue: "levelCEFRpValue";
323
- levelCEFR: "levelCEFR";
324
- levelCEFRValue: "levelCEFRValue";
325
- levelILR: "levelILR";
326
- levelILRValue: "levelILRValue";
327
- levelACTFL: "levelACTFL";
328
- levelACTFLValue: "levelACTFLValue";
329
342
  reference: "reference";
330
343
  referenceEnd: "referenceEnd";
331
344
  referenceProperty: "referenceProperty";
@@ -349,13 +362,8 @@ declare const NodeType: Readonly<{
349
362
  responses: "responses";
350
363
  responsesValue: "responsesValue";
351
364
  root: "root";
352
- rows: "rows";
353
- rowsValue: "rowsValue";
354
- rowsValueValue: "rowsValueValue";
355
365
  sampleSolution: "sampleSolution";
356
366
  sampleSolutionValue: "sampleSolutionValue";
357
- additionalSolutions: "additionalSolutions";
358
- additionalSolutionsValue: "additionalSolutionsValue";
359
367
  scormSource: "scormSource";
360
368
  scormSourceValue: "scormSourceValue";
361
369
  search: "search";
@@ -384,6 +392,12 @@ declare const NodeType: Readonly<{
384
392
  statements: "statements";
385
393
  statementsValue: "statementsValue";
386
394
  statementText: "statementText";
395
+ stillImageFilmEmbed: "stillImageFilmEmbed";
396
+ stillImageFilmLink: "stillImageFilmLink";
397
+ stripePricingTableId: "stripePricingTableId";
398
+ stripePricingTableIdValue: "stripePricingTableIdValue";
399
+ stripePublishableKey: "stripePublishableKey";
400
+ stripePublishableKeyValue: "stripePublishableKeyValue";
387
401
  subject: "subject";
388
402
  subjectValue: "subjectValue";
389
403
  subtitle: "subtitle";
@@ -402,6 +416,8 @@ declare const NodeType: Readonly<{
402
416
  tablePaginationValue: "tablePaginationValue";
403
417
  tableResizableColumns: "tableResizableColumns";
404
418
  tableResizableColumnsValue: "tableResizableColumnsValue";
419
+ tableColumnMinWidth: "tableColumnMinWidth";
420
+ tableColumnMinWidthValue: "tableColumnMinWidthValue";
405
421
  tableSearch: "tableSearch";
406
422
  tableSearchValue: "tableSearchValue";
407
423
  tableSort: "tableSort";
@@ -435,7 +451,7 @@ declare const NodeType: Readonly<{
435
451
  tocValue: "tocValue";
436
452
  trim: "trim";
437
453
  type: "type";
438
- typeAlias: "typeAlias";
454
+ __typeAlias: "__typeAlias";
439
455
  unit: "unit";
440
456
  unitAbbr: "unitAbbr";
441
457
  url: "url";
@@ -445,10 +461,14 @@ declare const NodeType: Readonly<{
445
461
  vendorUrl: "vendorUrl";
446
462
  vendorUrlValue: "vendorUrlValue";
447
463
  version: "version";
464
+ video: "video";
448
465
  videoCallLink: "videoCallLink";
449
466
  videoCallLinkValue: "videoCallLinkValue";
467
+ videoEmbed: "videoEmbed";
468
+ videoLink: "videoLink";
450
469
  warnings: "warnings";
451
470
  warningsValue: "warningsValue";
471
+ websiteLink: "websiteLink";
452
472
  width: "width";
453
473
  widthValue: "widthValue";
454
474
  x: "x";
@@ -460,45 +480,49 @@ declare const NodeType: Readonly<{
460
480
  unknown: "unknown";
461
481
  action: "action";
462
482
  actionValue: "actionValue";
483
+ activityType: "activityType";
484
+ activityTypeValue: "activityTypeValue";
485
+ additionalSolutions: "additionalSolutions";
486
+ additionalSolutionsValue: "additionalSolutionsValue";
463
487
  ageRange: "ageRange";
464
488
  ageRangeValue: "ageRangeValue";
465
489
  aiGenerated: "aiGenerated";
466
490
  aiGeneratedValue: "aiGeneratedValue";
467
- analyticsTag: "analyticsTag";
468
- analyticsTagValue: "analyticsTagValue";
469
- disableFeedback: "disableFeedback";
470
- disableFeedbackValue: "disableFeedbackValue";
471
491
  alias: "alias";
472
492
  alignment: "alignment";
493
+ allowedBit: "allowedBit";
494
+ allowedBitValue: "allowedBitValue";
473
495
  alt: "alt";
474
496
  alternativeAnswers: "alternativeAnswers";
475
497
  alternativeAnswersValue: "alternativeAnswersValue";
476
498
  alternativeDefinitions: "alternativeDefinitions";
477
499
  alternativeDefinitionsValue: "alternativeDefinitionsValue";
500
+ analyticsTag: "analyticsTag";
501
+ analyticsTagValue: "analyticsTagValue";
478
502
  anchor: "anchor";
479
503
  answer: "answer";
504
+ appLink: "appLink";
480
505
  attrs: "attrs";
481
506
  audio: "audio";
507
+ audioEmbed: "audioEmbed";
508
+ audioLink: "audioLink";
482
509
  author: "author";
483
510
  authorValue: "authorValue";
484
511
  availableClassifications: "availableClassifications";
485
512
  availableClassificationsValue: "availableClassificationsValue";
486
- allowedBit: "allowedBit";
487
- allowedBitValue: "allowedBitValue";
488
513
  avatarImage: "avatarImage";
489
514
  backgroundWallpaper: "backgroundWallpaper";
490
515
  backgroundWallpaperValue: "backgroundWallpaperValue";
491
- hasBookNavigation: "hasBookNavigation";
492
- hasBookNavigationValue: "hasBookNavigationValue";
516
+ bitLevel: "bitLevel";
493
517
  bitmarkAst: "bitmarkAst";
494
518
  bitmarkVersion: "bitmarkVersion";
495
519
  bits: "bits";
496
520
  bitsValue: "bitsValue";
497
- bitLevel: "bitLevel";
498
521
  bitType: "bitType";
499
522
  blockId: "blockId";
500
523
  blockIdValue: "blockIdValue";
501
524
  body: "body";
525
+ bodyBit: "bodyBit";
502
526
  bodyJson: "bodyJson";
503
527
  bodyParts: "bodyParts";
504
528
  bodyPartsValue: "bodyPartsValue";
@@ -511,19 +535,22 @@ declare const NodeType: Readonly<{
511
535
  botResponses: "botResponses";
512
536
  botResponsesValue: "botResponsesValue";
513
537
  botValue: "botValue";
538
+ bubbleTag: "bubbleTag";
539
+ bubbleTagValue: "bubbleTagValue";
514
540
  buttonCaption: "buttonCaption";
515
541
  buttonCaptionValue: "buttonCaptionValue";
516
542
  callToActionUrl: "callToActionUrl";
517
543
  callToActionUrlValue: "callToActionUrlValue";
518
544
  caption: "caption";
519
- captionValue: "captionValue";
520
545
  captionDefinitionList: "captionDefinitionList";
546
+ captionValue: "captionValue";
521
547
  cardBits: "cardBits";
522
548
  cardBitsValue: "cardBitsValue";
523
549
  cardNode: "cardNode";
524
550
  cells: "cells";
525
551
  cellsValue: "cellsValue";
526
552
  checked: "checked";
553
+ choice: "choice";
527
554
  choices: "choices";
528
555
  choicesValue: "choicesValue";
529
556
  class: "class";
@@ -533,10 +560,6 @@ declare const NodeType: Readonly<{
533
560
  codeLineNumbersValue: "codeLineNumbersValue";
534
561
  codeMinimap: "codeMinimap";
535
562
  codeMinimapValue: "codeMinimapValue";
536
- stripePricingTableId: "stripePricingTableId";
537
- stripePricingTableIdValue: "stripePricingTableIdValue";
538
- stripePublishableKey: "stripePublishableKey";
539
- stripePublishableKeyValue: "stripePublishableKeyValue";
540
563
  color: "color";
541
564
  colorTag: "colorTag";
542
565
  colorTagValue: "colorTagValue";
@@ -557,17 +580,25 @@ declare const NodeType: Readonly<{
557
580
  coverImage: "coverImage";
558
581
  coverImageValue: "coverImageValue";
559
582
  data: "data";
583
+ dataValue: "dataValue";
584
+ dataValueValue: "dataValueValue";
560
585
  date: "date";
561
- dateValue: "dateValue";
562
586
  dateEnd: "dateEnd";
563
587
  dateEndValue: "dateEndValue";
588
+ dateValue: "dateValue";
564
589
  decimalPlaces: "decimalPlaces";
565
590
  deeplink: "deeplink";
566
591
  deeplinkValue: "deeplinkValue";
592
+ definition: "definition";
567
593
  definitions: "definitions";
568
594
  definitionsValue: "definitionsValue";
569
- description: "description";
570
595
  disableCalculation: "disableCalculation";
596
+ disableFeedback: "disableFeedback";
597
+ disableFeedbackValue: "disableFeedbackValue";
598
+ document: "document";
599
+ documentDownload: "documentDownload";
600
+ documentEmbed: "documentEmbed";
601
+ documentLink: "documentLink";
571
602
  duration: "duration";
572
603
  durationValue: "durationValue";
573
604
  elements: "elements";
@@ -602,6 +633,8 @@ declare const NodeType: Readonly<{
602
633
  forValues: "forValues";
603
634
  forValuesValue: "forValuesValue";
604
635
  gap: "gap";
636
+ hasBookNavigation: "hasBookNavigation";
637
+ hasBookNavigationValue: "hasBookNavigationValue";
605
638
  hasMarkAsDone: "hasMarkAsDone";
606
639
  hasMarkAsDoneValue: "hasMarkAsDoneValue";
607
640
  heading: "heading";
@@ -617,7 +650,10 @@ declare const NodeType: Readonly<{
617
650
  id: "id";
618
651
  idValue: "idValue";
619
652
  image: "image";
653
+ imageFirst: "imageFirst";
654
+ imageFirstValue: "imageFirstValue";
620
655
  imageLandscape: "imageLandscape";
656
+ imageLink: "imageLink";
621
657
  imagePlaceholder: "imagePlaceholder";
622
658
  imagePlaceholderValue: "imagePlaceholderValue";
623
659
  imagePortrait: "imagePortrait";
@@ -632,14 +668,11 @@ declare const NodeType: Readonly<{
632
668
  isCaseSensitive: "isCaseSensitive";
633
669
  isCommented: "isCommented";
634
670
  isCorrect: "isCorrect";
635
- isDefaultExample: "isDefaultExample";
671
+ __isDefaultExample: "__isDefaultExample";
636
672
  isExample: "isExample";
637
673
  isInfoOnly: "isInfoOnly";
638
674
  isInfoOnlyValue: "isInfoOnlyValue";
639
- imageFirst: "imageFirst";
640
- imageFirstValue: "imageFirstValue";
641
- activityType: "activityType";
642
- activityTypeValue: "activityTypeValue";
675
+ isPlain: "isPlain";
643
676
  isPublic: "isPublic";
644
677
  isPublicValue: "isPublicValue";
645
678
  isTracked: "isTracked";
@@ -666,12 +699,20 @@ declare const NodeType: Readonly<{
666
699
  langValue: "langValue";
667
700
  lead: "lead";
668
701
  level: "level";
702
+ levelACTFL: "levelACTFL";
703
+ levelACTFLValue: "levelACTFLValue";
704
+ levelCEFR: "levelCEFR";
705
+ levelCEFRp: "levelCEFRp";
706
+ levelCEFRpValue: "levelCEFRpValue";
707
+ levelCEFRValue: "levelCEFRValue";
708
+ levelILR: "levelILR";
709
+ levelILRValue: "levelILRValue";
669
710
  license: "license";
670
711
  line: "line";
671
712
  list: "list";
672
- listValue: "listValue";
673
713
  listItemIndent: "listItemIndent";
674
714
  listItemIndentValue: "listItemIndentValue";
715
+ listValue: "listValue";
675
716
  location: "location";
676
717
  locationValue: "locationValue";
677
718
  machineTranslated: "machineTranslated";
@@ -699,9 +740,11 @@ declare const NodeType: Readonly<{
699
740
  original: "original";
700
741
  padletId: "padletId";
701
742
  padletIdValue: "padletIdValue";
743
+ page: "page";
702
744
  pageNo: "pageNo";
703
745
  pageNoValue: "pageNoValue";
704
746
  pageNumber: "pageNumber";
747
+ pageValue: "pageValue";
705
748
  pairs: "pairs";
706
749
  pairsValue: "pairsValue";
707
750
  parent: "parent";
@@ -717,15 +760,13 @@ declare const NodeType: Readonly<{
717
760
  posterImageValue: "posterImageValue";
718
761
  postfix: "postfix";
719
762
  prefix: "prefix";
720
- page: "page";
721
- pageValue: "pageValue";
722
763
  processHandIn: "processHandIn";
723
764
  processHandInValue: "processHandInValue";
724
- productId: "productId";
725
- productIdValue: "productIdValue";
726
765
  product: "product";
727
766
  productFolder: "productFolder";
728
767
  productFolderValue: "productFolderValue";
768
+ productId: "productId";
769
+ productIdValue: "productIdValue";
729
770
  productList: "productList";
730
771
  productListValue: "productListValue";
731
772
  productValue: "productValue";
@@ -767,16 +808,6 @@ declare const NodeType: Readonly<{
767
808
  reasonableNumOfCharsValue: "reasonableNumOfCharsValue";
768
809
  reductionTag: "reductionTag";
769
810
  reductionTagValue: "reductionTagValue";
770
- bubbleTag: "bubbleTag";
771
- bubbleTagValue: "bubbleTagValue";
772
- levelCEFRp: "levelCEFRp";
773
- levelCEFRpValue: "levelCEFRpValue";
774
- levelCEFR: "levelCEFR";
775
- levelCEFRValue: "levelCEFRValue";
776
- levelILR: "levelILR";
777
- levelILRValue: "levelILRValue";
778
- levelACTFL: "levelACTFL";
779
- levelACTFLValue: "levelACTFLValue";
780
811
  reference: "reference";
781
812
  referenceEnd: "referenceEnd";
782
813
  referenceProperty: "referenceProperty";
@@ -800,13 +831,8 @@ declare const NodeType: Readonly<{
800
831
  responses: "responses";
801
832
  responsesValue: "responsesValue";
802
833
  root: "root";
803
- rows: "rows";
804
- rowsValue: "rowsValue";
805
- rowsValueValue: "rowsValueValue";
806
834
  sampleSolution: "sampleSolution";
807
835
  sampleSolutionValue: "sampleSolutionValue";
808
- additionalSolutions: "additionalSolutions";
809
- additionalSolutionsValue: "additionalSolutionsValue";
810
836
  scormSource: "scormSource";
811
837
  scormSourceValue: "scormSourceValue";
812
838
  search: "search";
@@ -835,6 +861,12 @@ declare const NodeType: Readonly<{
835
861
  statements: "statements";
836
862
  statementsValue: "statementsValue";
837
863
  statementText: "statementText";
864
+ stillImageFilmEmbed: "stillImageFilmEmbed";
865
+ stillImageFilmLink: "stillImageFilmLink";
866
+ stripePricingTableId: "stripePricingTableId";
867
+ stripePricingTableIdValue: "stripePricingTableIdValue";
868
+ stripePublishableKey: "stripePublishableKey";
869
+ stripePublishableKeyValue: "stripePublishableKeyValue";
838
870
  subject: "subject";
839
871
  subjectValue: "subjectValue";
840
872
  subtitle: "subtitle";
@@ -853,6 +885,8 @@ declare const NodeType: Readonly<{
853
885
  tablePaginationValue: "tablePaginationValue";
854
886
  tableResizableColumns: "tableResizableColumns";
855
887
  tableResizableColumnsValue: "tableResizableColumnsValue";
888
+ tableColumnMinWidth: "tableColumnMinWidth";
889
+ tableColumnMinWidthValue: "tableColumnMinWidthValue";
856
890
  tableSearch: "tableSearch";
857
891
  tableSearchValue: "tableSearchValue";
858
892
  tableSort: "tableSort";
@@ -886,7 +920,7 @@ declare const NodeType: Readonly<{
886
920
  tocValue: "tocValue";
887
921
  trim: "trim";
888
922
  type: "type";
889
- typeAlias: "typeAlias";
923
+ __typeAlias: "__typeAlias";
890
924
  unit: "unit";
891
925
  unitAbbr: "unitAbbr";
892
926
  url: "url";
@@ -896,10 +930,14 @@ declare const NodeType: Readonly<{
896
930
  vendorUrl: "vendorUrl";
897
931
  vendorUrlValue: "vendorUrlValue";
898
932
  version: "version";
933
+ video: "video";
899
934
  videoCallLink: "videoCallLink";
900
935
  videoCallLinkValue: "videoCallLinkValue";
936
+ videoEmbed: "videoEmbed";
937
+ videoLink: "videoLink";
901
938
  warnings: "warnings";
902
939
  warningsValue: "warningsValue";
940
+ websiteLink: "websiteLink";
903
941
  width: "width";
904
942
  widthValue: "widthValue";
905
943
  x: "x";
@@ -1 +1 @@
1
- {"version":3,"file":"NodeType.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/NodeType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;;;;GAKG;AACH,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAocZ,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC,OAAO,QAAQ,CAAC,CAAC;AAErD,OAAO,EAAE,QAAQ,EAAE,CAAC"}
1
+ {"version":3,"file":"NodeType.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/NodeType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;;;;;;GAOG;AACH,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwdZ,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC,OAAO,QAAQ,CAAC,CAAC;AAErD,OAAO,EAAE,QAAQ,EAAE,CAAC"}