@gmb/bitmark-parser-generator 3.7.0 → 3.10.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 (274) 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 +1 -0
  4. package/dist/cjs/BitmarkParserGenerator.js.map +1 -1
  5. package/dist/cjs/ast/BaseBuilder.js +7 -6
  6. package/dist/cjs/ast/BaseBuilder.js.map +1 -1
  7. package/dist/cjs/ast/Builder.js +165 -160
  8. package/dist/cjs/ast/Builder.js.map +1 -1
  9. package/dist/cjs/ast/ResourceBuilder.js +68 -67
  10. package/dist/cjs/ast/ResourceBuilder.js.map +1 -1
  11. package/dist/cjs/breakscaping/Breakscape.js +1 -1
  12. package/dist/cjs/config/raw/bits.js +41 -0
  13. package/dist/cjs/config/raw/bits.js.map +1 -1
  14. package/dist/cjs/config/raw/groups.js +35 -0
  15. package/dist/cjs/config/raw/groups.js.map +1 -1
  16. package/dist/cjs/config/raw/properties.js +48 -0
  17. package/dist/cjs/config/raw/properties.js.map +1 -1
  18. package/dist/cjs/generated/build-info.js +1 -1
  19. package/dist/cjs/generated/build-info.js.map +1 -1
  20. package/dist/cjs/generated/parser/text/text-peggy-parser.js +960 -595
  21. package/dist/cjs/generated/parser/text/text-peggy-parser.js.map +1 -1
  22. package/dist/cjs/generator/json/JsonGenerator.js +7 -3
  23. package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
  24. package/dist/cjs/generator/text/TextGenerator.js +84 -38
  25. package/dist/cjs/generator/text/TextGenerator.js.map +1 -1
  26. package/dist/cjs/model/ast/NodeType.js +19 -0
  27. package/dist/cjs/model/ast/NodeType.js.map +1 -1
  28. package/dist/cjs/model/config/enum/PropertyConfigKey.js +10 -0
  29. package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
  30. package/dist/cjs/model/enum/BitType.js +7 -0
  31. package/dist/cjs/model/enum/BitType.js.map +1 -1
  32. package/dist/cjs/model/enum/TextMarkType.js +2 -0
  33. package/dist/cjs/model/enum/TextMarkType.js.map +1 -1
  34. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js +28 -20
  35. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  36. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  37. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +11 -10
  38. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  39. package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +1 -0
  40. package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -1
  41. package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +5 -6
  42. package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  43. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +5 -4
  44. package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  45. package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +3 -2
  46. package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  47. package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +5 -4
  48. package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  49. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +20 -12
  50. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  51. package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +4 -2
  52. package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -1
  53. package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +5 -5
  54. package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  55. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +7 -7
  56. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  57. package/dist/cjs/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js +1 -1
  58. package/dist/cjs/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -1
  59. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +5 -5
  60. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
  61. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +6 -2
  62. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  63. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +6 -6
  64. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  65. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -2
  66. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  67. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js +1 -1
  68. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
  69. package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +2 -2
  70. package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
  71. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +19 -13
  72. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  73. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +4 -3
  74. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
  75. package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +1 -1
  76. package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  77. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +11 -10
  78. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  79. package/dist/cjs/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js +2 -2
  80. package/dist/cjs/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js.map +1 -1
  81. package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +2 -2
  82. package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
  83. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +6 -2
  84. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  85. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +19 -16
  86. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
  87. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +1 -1
  88. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  89. package/dist/cjs/parser/text/TextParser.js +7 -6
  90. package/dist/cjs/parser/text/TextParser.js.map +1 -1
  91. package/dist/cjs/utils/BitUtils.js +2 -2
  92. package/dist/cjs/utils/BitUtils.js.map +1 -1
  93. package/dist/esm/BitmarkParserGenerator.js +1 -0
  94. package/dist/esm/BitmarkParserGenerator.js.map +1 -1
  95. package/dist/esm/ast/BaseBuilder.js +7 -6
  96. package/dist/esm/ast/BaseBuilder.js.map +1 -1
  97. package/dist/esm/ast/Builder.js +165 -160
  98. package/dist/esm/ast/Builder.js.map +1 -1
  99. package/dist/esm/ast/ResourceBuilder.js +68 -67
  100. package/dist/esm/ast/ResourceBuilder.js.map +1 -1
  101. package/dist/esm/breakscaping/Breakscape.js +1 -1
  102. package/dist/esm/config/raw/bits.js +41 -0
  103. package/dist/esm/config/raw/bits.js.map +1 -1
  104. package/dist/esm/config/raw/groups.js +35 -0
  105. package/dist/esm/config/raw/groups.js.map +1 -1
  106. package/dist/esm/config/raw/properties.js +48 -0
  107. package/dist/esm/config/raw/properties.js.map +1 -1
  108. package/dist/esm/generated/build-info.js +1 -1
  109. package/dist/esm/generated/build-info.js.map +1 -1
  110. package/dist/esm/generated/parser/text/text-peggy-parser.js +960 -595
  111. package/dist/esm/generated/parser/text/text-peggy-parser.js.map +1 -1
  112. package/dist/esm/generator/json/JsonGenerator.js +7 -3
  113. package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
  114. package/dist/esm/generator/text/TextGenerator.js +84 -38
  115. package/dist/esm/generator/text/TextGenerator.js.map +1 -1
  116. package/dist/esm/model/ast/NodeType.js +19 -0
  117. package/dist/esm/model/ast/NodeType.js.map +1 -1
  118. package/dist/esm/model/config/enum/PropertyConfigKey.js +10 -0
  119. package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
  120. package/dist/esm/model/enum/BitType.js +7 -0
  121. package/dist/esm/model/enum/BitType.js.map +1 -1
  122. package/dist/esm/model/enum/TextMarkType.js +2 -0
  123. package/dist/esm/model/enum/TextMarkType.js.map +1 -1
  124. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js +28 -20
  125. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  126. package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  127. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +11 -10
  128. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  129. package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +1 -0
  130. package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -1
  131. package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +5 -6
  132. package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  133. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +5 -4
  134. package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
  135. package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +3 -2
  136. package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  137. package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +5 -4
  138. package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  139. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +20 -12
  140. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  141. package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +4 -2
  142. package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -1
  143. package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +5 -5
  144. package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  145. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +7 -7
  146. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  147. package/dist/esm/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js +1 -1
  148. package/dist/esm/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -1
  149. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +5 -5
  150. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
  151. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +6 -2
  152. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  153. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +6 -6
  154. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  155. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -2
  156. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  157. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js +1 -1
  158. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
  159. package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +2 -2
  160. package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
  161. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +19 -13
  162. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  163. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +4 -3
  164. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
  165. package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +1 -1
  166. package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  167. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +11 -10
  168. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  169. package/dist/esm/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js +2 -2
  170. package/dist/esm/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js.map +1 -1
  171. package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +2 -2
  172. package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
  173. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +6 -2
  174. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  175. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +19 -16
  176. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
  177. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +1 -1
  178. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  179. package/dist/esm/parser/text/TextParser.js +7 -6
  180. package/dist/esm/parser/text/TextParser.js.map +1 -1
  181. package/dist/esm/utils/BitUtils.js +2 -2
  182. package/dist/esm/utils/BitUtils.js.map +1 -1
  183. package/dist/types/BitmarkParserGenerator.d.ts.map +1 -1
  184. package/dist/types/ast/BaseBuilder.d.ts +8 -1
  185. package/dist/types/ast/BaseBuilder.d.ts.map +1 -1
  186. package/dist/types/ast/Builder.d.ts +60 -50
  187. package/dist/types/ast/Builder.d.ts.map +1 -1
  188. package/dist/types/ast/ResourceBuilder.d.ts +21 -22
  189. package/dist/types/ast/ResourceBuilder.d.ts.map +1 -1
  190. package/dist/types/config/raw/bits.d.ts.map +1 -1
  191. package/dist/types/config/raw/groups.d.ts.map +1 -1
  192. package/dist/types/config/raw/properties.d.ts.map +1 -1
  193. package/dist/types/generated/parser/text/text-peggy-parser.d.ts.map +1 -1
  194. package/dist/types/generator/json/JsonGenerator.d.ts +3 -1
  195. package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
  196. package/dist/types/generator/text/TextGenerator.d.ts +4 -1
  197. package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
  198. package/dist/types/model/ast/NodeType.d.ts +38 -0
  199. package/dist/types/model/ast/NodeType.d.ts.map +1 -1
  200. package/dist/types/model/ast/Nodes.d.ts +10 -0
  201. package/dist/types/model/ast/Nodes.d.ts.map +1 -1
  202. package/dist/types/model/ast/TextNodes.d.ts +26 -9
  203. package/dist/types/model/ast/TextNodes.d.ts.map +1 -1
  204. package/dist/types/model/config/enum/ConfigKey.d.ts +20 -0
  205. package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
  206. package/dist/types/model/config/enum/PropertyConfigKey.d.ts +30 -0
  207. package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
  208. package/dist/types/model/enum/BitType.d.ts +14 -0
  209. package/dist/types/model/enum/BitType.d.ts.map +1 -1
  210. package/dist/types/model/enum/PropertyTag.d.ts +20 -0
  211. package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
  212. package/dist/types/model/enum/TextMarkType.d.ts +4 -0
  213. package/dist/types/model/enum/TextMarkType.d.ts.map +1 -1
  214. package/dist/types/model/json/BitJson.d.ts +10 -0
  215. package/dist/types/model/json/BitJson.d.ts.map +1 -1
  216. package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts +0 -2
  217. package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts.map +1 -1
  218. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +6 -1
  219. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
  220. package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts +3 -4
  221. package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts.map +1 -1
  222. package/dist/types/parser/bitmark/peg/contentProcessors/BodyContentProcessor.d.ts.map +1 -1
  223. package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts +1 -3
  224. package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts.map +1 -1
  225. package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts.map +1 -1
  226. package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts +1 -3
  227. package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts.map +1 -1
  228. package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts +1 -3
  229. package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts.map +1 -1
  230. package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts +1 -3
  231. package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts.map +1 -1
  232. package/dist/types/parser/bitmark/peg/contentProcessors/FooterContentProcessor.d.ts +1 -3
  233. package/dist/types/parser/bitmark/peg/contentProcessors/FooterContentProcessor.d.ts.map +1 -1
  234. package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts +1 -3
  235. package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts.map +1 -1
  236. package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts +1 -3
  237. package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts.map +1 -1
  238. package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts +1 -2
  239. package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts.map +1 -1
  240. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.d.ts +1 -3
  241. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.d.ts.map +1 -1
  242. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts +1 -3
  243. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts.map +1 -1
  244. package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts +1 -3
  245. package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts.map +1 -1
  246. package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts +1 -3
  247. package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts.map +1 -1
  248. package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts +1 -2
  249. package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts.map +1 -1
  250. package/dist/types/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.d.ts +1 -3
  251. package/dist/types/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.d.ts.map +1 -1
  252. package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts +1 -3
  253. package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
  254. package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts +1 -3
  255. package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts.map +1 -1
  256. package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts +1 -3
  257. package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts.map +1 -1
  258. package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts +3 -5
  259. package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts.map +1 -1
  260. package/dist/types/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.d.ts +1 -3
  261. package/dist/types/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.d.ts.map +1 -1
  262. package/dist/types/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.d.ts +1 -3
  263. package/dist/types/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.d.ts.map +1 -1
  264. package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts +1 -2
  265. package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts.map +1 -1
  266. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts +1 -3
  267. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts.map +1 -1
  268. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts +1 -3
  269. package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts.map +1 -1
  270. package/dist/types/parser/text/TextParser.d.ts +3 -2
  271. package/dist/types/parser/text/TextParser.d.ts.map +1 -1
  272. package/dist/types/utils/BitUtils.d.ts +2 -1
  273. package/dist/types/utils/BitUtils.d.ts.map +1 -1
  274. package/package.json +1 -1
@@ -30,10 +30,18 @@ export interface XRefMark {
30
30
  type: 'xref';
31
31
  attrs?: XRefMarkAttibutes;
32
32
  }
33
+ export interface ExtRefMark {
34
+ type: 'extref';
35
+ attrs?: ExtRefMarkAttibutes;
36
+ }
33
37
  export interface FootnoteMark {
34
38
  type: 'footnote';
35
39
  attrs?: FootnoteAttibutes;
36
40
  }
41
+ export interface SymbolMark {
42
+ type: 'symbol';
43
+ attrs?: SymbolMarkAttibutes;
44
+ }
37
45
  export interface HeadingTextNode extends TextNode {
38
46
  type: 'heading';
39
47
  attrs?: HeadingTextNodeAttributes;
@@ -71,15 +79,7 @@ export interface HeadingTextNodeAttributes extends TextNodeAttibutes {
71
79
  export interface TaskItemTextNodeAttributes extends TextNodeAttibutes {
72
80
  checked: boolean;
73
81
  }
74
- export interface ImageTextNodeAttributes extends TextNodeAttibutes {
75
- src: string;
76
- alt: string | null;
77
- title: string | null;
78
- textAlign: string;
79
- width: string | number | null;
80
- height: string | number | null;
81
- class: string;
82
- comment: string;
82
+ export interface ImageTextNodeAttributes extends TextNodeAttibutes, MediaAttributes {
83
83
  }
84
84
  export interface CodeBlockTextNodeAttributes extends TextNodeAttibutes {
85
85
  language: string;
@@ -103,7 +103,24 @@ export interface XRefMarkAttibutes extends TextMarkAttibutes {
103
103
  xref: string;
104
104
  reference: string;
105
105
  }
106
+ export interface ExtRefMarkAttibutes extends TextMarkAttibutes, MediaAttributes {
107
+ extref: string;
108
+ references: string[];
109
+ provider: string;
110
+ }
106
111
  export interface FootnoteAttibutes extends TextMarkAttibutes {
107
112
  content: TextNode[];
108
113
  }
114
+ export interface SymbolMarkAttibutes extends TextMarkAttibutes, MediaAttributes {
115
+ }
116
+ export interface MediaAttributes {
117
+ src: string;
118
+ alt: string | null;
119
+ title: string | null;
120
+ textAlign: string;
121
+ width: string | number | null;
122
+ height: string | number | null;
123
+ class: string;
124
+ comment: string;
125
+ }
109
126
  //# sourceMappingURL=TextNodes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TextNodes.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/TextNodes.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"TextNodes.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/TextNodes.ts"],"names":[],"mappings":"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"}
@@ -77,6 +77,7 @@ declare const ConfigKey: Readonly<{
77
77
  allowedBit: "allowedBit";
78
78
  allowSubtitles: "allowSubtitles";
79
79
  alt: "alt";
80
+ altLangTag: "altLangTag";
80
81
  author: "author";
81
82
  autoplay: "autoplay";
82
83
  availableClassifications: "availableClassifications";
@@ -84,11 +85,13 @@ declare const ConfigKey: Readonly<{
84
85
  blockId: "blockId";
85
86
  book: "book";
86
87
  bookAlias: "bookAlias";
88
+ bookDiff: "bookDiff";
87
89
  bot: "bot";
88
90
  bubbleTag: "bubbleTag";
89
91
  buttonCaption: "buttonCaption";
90
92
  callToActionUrl: "callToActionUrl";
91
93
  caption: "caption";
94
+ categoryTag: "categoryTag";
92
95
  chatWithBook: "chatWithBook";
93
96
  chatWithBookBrainKey: "chatWithBookBrainKey";
94
97
  citationStyle: "citationStyle";
@@ -102,6 +105,7 @@ declare const ConfigKey: Readonly<{
102
105
  copyright: "copyright";
103
106
  coverColor: "coverColor";
104
107
  coverImage: "coverImage";
108
+ customerExternalId: "customerExternalId";
105
109
  customerId: "customerId";
106
110
  date: "date";
107
111
  dateEnd: "dateEnd";
@@ -109,6 +113,10 @@ declare const ConfigKey: Readonly<{
109
113
  deeplink: "deeplink";
110
114
  disableCalculation: "disableCalculation";
111
115
  disableFeedback: "disableFeedback";
116
+ diffOp: "diffOp";
117
+ diffRef: "diffRef";
118
+ diffContext: "diffContext";
119
+ diffTime: "diffTime";
112
120
  duration: "duration";
113
121
  emphasis: "emphasis";
114
122
  example: "example";
@@ -241,9 +249,11 @@ declare const ConfigKey: Readonly<{
241
249
  theme: "theme";
242
250
  thumbImage: "thumbImage";
243
251
  toc: "toc";
252
+ topicTag: "topicTag";
244
253
  trim: "trim";
245
254
  unit: "unit";
246
255
  unitAbbr: "unitAbbr";
256
+ vendorSurveyId: "vendorSurveyId";
247
257
  vendorUrl: "vendorUrl";
248
258
  videoCallLink: "videoCallLink";
249
259
  width: "width";
@@ -339,6 +349,7 @@ declare const ConfigKey: Readonly<{
339
349
  allowedBit: "allowedBit";
340
350
  allowSubtitles: "allowSubtitles";
341
351
  alt: "alt";
352
+ altLangTag: "altLangTag";
342
353
  author: "author";
343
354
  autoplay: "autoplay";
344
355
  availableClassifications: "availableClassifications";
@@ -346,11 +357,13 @@ declare const ConfigKey: Readonly<{
346
357
  blockId: "blockId";
347
358
  book: "book";
348
359
  bookAlias: "bookAlias";
360
+ bookDiff: "bookDiff";
349
361
  bot: "bot";
350
362
  bubbleTag: "bubbleTag";
351
363
  buttonCaption: "buttonCaption";
352
364
  callToActionUrl: "callToActionUrl";
353
365
  caption: "caption";
366
+ categoryTag: "categoryTag";
354
367
  chatWithBook: "chatWithBook";
355
368
  chatWithBookBrainKey: "chatWithBookBrainKey";
356
369
  citationStyle: "citationStyle";
@@ -364,6 +377,7 @@ declare const ConfigKey: Readonly<{
364
377
  copyright: "copyright";
365
378
  coverColor: "coverColor";
366
379
  coverImage: "coverImage";
380
+ customerExternalId: "customerExternalId";
367
381
  customerId: "customerId";
368
382
  date: "date";
369
383
  dateEnd: "dateEnd";
@@ -371,6 +385,10 @@ declare const ConfigKey: Readonly<{
371
385
  deeplink: "deeplink";
372
386
  disableCalculation: "disableCalculation";
373
387
  disableFeedback: "disableFeedback";
388
+ diffOp: "diffOp";
389
+ diffRef: "diffRef";
390
+ diffContext: "diffContext";
391
+ diffTime: "diffTime";
374
392
  duration: "duration";
375
393
  emphasis: "emphasis";
376
394
  example: "example";
@@ -503,9 +521,11 @@ declare const ConfigKey: Readonly<{
503
521
  theme: "theme";
504
522
  thumbImage: "thumbImage";
505
523
  toc: "toc";
524
+ topicTag: "topicTag";
506
525
  trim: "trim";
507
526
  unit: "unit";
508
527
  unitAbbr: "unitAbbr";
528
+ vendorSurveyId: "vendorSurveyId";
509
529
  vendorUrl: "vendorUrl";
510
530
  videoCallLink: "videoCallLink";
511
531
  width: "width";
@@ -1 +1 @@
1
- {"version":3,"file":"ConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/ConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAOzD;;GAEG;AACH,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAcb,CAAC;AAkBH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAC;AAEvD,OAAO,EAAE,SAAS,EAAE,CAAC"}
1
+ {"version":3,"file":"ConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/ConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAOzD;;GAEG;AACH,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAcb,CAAC;AAkBH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAC;AAEvD,OAAO,EAAE,SAAS,EAAE,CAAC"}
@@ -12,6 +12,7 @@ declare const propertyConfigKeys: {
12
12
  readonly allowedBit: "allowedBit";
13
13
  readonly allowSubtitles: "allowSubtitles";
14
14
  readonly alt: "alt";
15
+ readonly altLangTag: "altLangTag";
15
16
  readonly author: "author";
16
17
  readonly autoplay: "autoplay";
17
18
  readonly availableClassifications: "availableClassifications";
@@ -19,11 +20,13 @@ declare const propertyConfigKeys: {
19
20
  readonly blockId: "blockId";
20
21
  readonly book: "book";
21
22
  readonly bookAlias: "bookAlias";
23
+ readonly bookDiff: "bookDiff";
22
24
  readonly bot: "bot";
23
25
  readonly bubbleTag: "bubbleTag";
24
26
  readonly buttonCaption: "buttonCaption";
25
27
  readonly callToActionUrl: "callToActionUrl";
26
28
  readonly caption: "caption";
29
+ readonly categoryTag: "categoryTag";
27
30
  readonly chatWithBook: "chatWithBook";
28
31
  readonly chatWithBookBrainKey: "chatWithBookBrainKey";
29
32
  readonly citationStyle: "citationStyle";
@@ -37,6 +40,7 @@ declare const propertyConfigKeys: {
37
40
  readonly copyright: "copyright";
38
41
  readonly coverColor: "coverColor";
39
42
  readonly coverImage: "coverImage";
43
+ readonly customerExternalId: "customerExternalId";
40
44
  readonly customerId: "customerId";
41
45
  readonly date: "date";
42
46
  readonly dateEnd: "dateEnd";
@@ -44,6 +48,10 @@ declare const propertyConfigKeys: {
44
48
  readonly deeplink: "deeplink";
45
49
  readonly disableCalculation: "disableCalculation";
46
50
  readonly disableFeedback: "disableFeedback";
51
+ readonly diffOp: "diffOp";
52
+ readonly diffRef: "diffRef";
53
+ readonly diffContext: "diffContext";
54
+ readonly diffTime: "diffTime";
47
55
  readonly duration: "duration";
48
56
  readonly emphasis: "emphasis";
49
57
  readonly example: "example";
@@ -176,9 +184,11 @@ declare const propertyConfigKeys: {
176
184
  readonly theme: "theme";
177
185
  readonly thumbImage: "thumbImage";
178
186
  readonly toc: "toc";
187
+ readonly topicTag: "topicTag";
179
188
  readonly trim: "trim";
180
189
  readonly unit: "unit";
181
190
  readonly unitAbbr: "unitAbbr";
191
+ readonly vendorSurveyId: "vendorSurveyId";
182
192
  readonly vendorUrl: "vendorUrl";
183
193
  readonly videoCallLink: "videoCallLink";
184
194
  readonly width: "width";
@@ -196,6 +206,7 @@ declare const PropertyConfigKey: Readonly<{
196
206
  readonly allowedBit: "allowedBit";
197
207
  readonly allowSubtitles: "allowSubtitles";
198
208
  readonly alt: "alt";
209
+ readonly altLangTag: "altLangTag";
199
210
  readonly author: "author";
200
211
  readonly autoplay: "autoplay";
201
212
  readonly availableClassifications: "availableClassifications";
@@ -203,11 +214,13 @@ declare const PropertyConfigKey: Readonly<{
203
214
  readonly blockId: "blockId";
204
215
  readonly book: "book";
205
216
  readonly bookAlias: "bookAlias";
217
+ readonly bookDiff: "bookDiff";
206
218
  readonly bot: "bot";
207
219
  readonly bubbleTag: "bubbleTag";
208
220
  readonly buttonCaption: "buttonCaption";
209
221
  readonly callToActionUrl: "callToActionUrl";
210
222
  readonly caption: "caption";
223
+ readonly categoryTag: "categoryTag";
211
224
  readonly chatWithBook: "chatWithBook";
212
225
  readonly chatWithBookBrainKey: "chatWithBookBrainKey";
213
226
  readonly citationStyle: "citationStyle";
@@ -221,6 +234,7 @@ declare const PropertyConfigKey: Readonly<{
221
234
  readonly copyright: "copyright";
222
235
  readonly coverColor: "coverColor";
223
236
  readonly coverImage: "coverImage";
237
+ readonly customerExternalId: "customerExternalId";
224
238
  readonly customerId: "customerId";
225
239
  readonly date: "date";
226
240
  readonly dateEnd: "dateEnd";
@@ -228,6 +242,10 @@ declare const PropertyConfigKey: Readonly<{
228
242
  readonly deeplink: "deeplink";
229
243
  readonly disableCalculation: "disableCalculation";
230
244
  readonly disableFeedback: "disableFeedback";
245
+ readonly diffOp: "diffOp";
246
+ readonly diffRef: "diffRef";
247
+ readonly diffContext: "diffContext";
248
+ readonly diffTime: "diffTime";
231
249
  readonly duration: "duration";
232
250
  readonly emphasis: "emphasis";
233
251
  readonly example: "example";
@@ -360,9 +378,11 @@ declare const PropertyConfigKey: Readonly<{
360
378
  readonly theme: "theme";
361
379
  readonly thumbImage: "thumbImage";
362
380
  readonly toc: "toc";
381
+ readonly topicTag: "topicTag";
363
382
  readonly trim: "trim";
364
383
  readonly unit: "unit";
365
384
  readonly unitAbbr: "unitAbbr";
385
+ readonly vendorSurveyId: "vendorSurveyId";
366
386
  readonly vendorUrl: "vendorUrl";
367
387
  readonly videoCallLink: "videoCallLink";
368
388
  readonly width: "width";
@@ -379,6 +399,7 @@ declare const PropertyConfigKey: Readonly<{
379
399
  readonly allowedBit: "allowedBit";
380
400
  readonly allowSubtitles: "allowSubtitles";
381
401
  readonly alt: "alt";
402
+ readonly altLangTag: "altLangTag";
382
403
  readonly author: "author";
383
404
  readonly autoplay: "autoplay";
384
405
  readonly availableClassifications: "availableClassifications";
@@ -386,11 +407,13 @@ declare const PropertyConfigKey: Readonly<{
386
407
  readonly blockId: "blockId";
387
408
  readonly book: "book";
388
409
  readonly bookAlias: "bookAlias";
410
+ readonly bookDiff: "bookDiff";
389
411
  readonly bot: "bot";
390
412
  readonly bubbleTag: "bubbleTag";
391
413
  readonly buttonCaption: "buttonCaption";
392
414
  readonly callToActionUrl: "callToActionUrl";
393
415
  readonly caption: "caption";
416
+ readonly categoryTag: "categoryTag";
394
417
  readonly chatWithBook: "chatWithBook";
395
418
  readonly chatWithBookBrainKey: "chatWithBookBrainKey";
396
419
  readonly citationStyle: "citationStyle";
@@ -404,6 +427,7 @@ declare const PropertyConfigKey: Readonly<{
404
427
  readonly copyright: "copyright";
405
428
  readonly coverColor: "coverColor";
406
429
  readonly coverImage: "coverImage";
430
+ readonly customerExternalId: "customerExternalId";
407
431
  readonly customerId: "customerId";
408
432
  readonly date: "date";
409
433
  readonly dateEnd: "dateEnd";
@@ -411,6 +435,10 @@ declare const PropertyConfigKey: Readonly<{
411
435
  readonly deeplink: "deeplink";
412
436
  readonly disableCalculation: "disableCalculation";
413
437
  readonly disableFeedback: "disableFeedback";
438
+ readonly diffOp: "diffOp";
439
+ readonly diffRef: "diffRef";
440
+ readonly diffContext: "diffContext";
441
+ readonly diffTime: "diffTime";
414
442
  readonly duration: "duration";
415
443
  readonly emphasis: "emphasis";
416
444
  readonly example: "example";
@@ -543,9 +571,11 @@ declare const PropertyConfigKey: Readonly<{
543
571
  readonly theme: "theme";
544
572
  readonly thumbImage: "thumbImage";
545
573
  readonly toc: "toc";
574
+ readonly topicTag: "topicTag";
546
575
  readonly trim: "trim";
547
576
  readonly unit: "unit";
548
577
  readonly unitAbbr: "unitAbbr";
578
+ readonly vendorSurveyId: "vendorSurveyId";
549
579
  readonly vendorUrl: "vendorUrl";
550
580
  readonly videoCallLink: "videoCallLink";
551
581
  readonly width: "width";
@@ -1 +1 @@
1
- {"version":3,"file":"PropertyConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/PropertyConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;GAEG;AACH,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuLd,CAAC;AAEX,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAgC,CAAC;AAExD,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAEvE,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,CAAC"}
1
+ {"version":3,"file":"PropertyConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/PropertyConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;GAEG;AACH,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiMd,CAAC;AAEX,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAgC,CAAC;AAExD,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAEvE,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,CAAC"}
@@ -51,6 +51,7 @@ declare const BitType: Readonly<{
51
51
  bookCopyright: "book-copyright";
52
52
  bookCopyrightPermissions: "book-copyright-permissions";
53
53
  bookDedication: "book-dedication";
54
+ bookDiff: "book-diff";
54
55
  bookEndnotes: "book-endnotes";
55
56
  bookEpigraph: "book-epigraph";
56
57
  bookEpilogue: "book-epilogue";
@@ -181,6 +182,7 @@ declare const BitType: Readonly<{
181
182
  dangerCollapsible: "danger-collapsible";
182
183
  definitionList: "definition-list";
183
184
  definitionTerm: "definition-term";
185
+ deleted: "deleted";
184
186
  details: "details";
185
187
  details1: "details-1";
186
188
  detailsImage: "details-image";
@@ -198,6 +200,7 @@ declare const BitType: Readonly<{
198
200
  exampleList: "example-list";
199
201
  extractorBlock: "extractor-block";
200
202
  extractorConfiguration: "extractor-configuration";
203
+ extractorInformation: "extractor-information";
201
204
  extractorPage: "extractor-page";
202
205
  extractorPageCollapsible: "extractor-page-collapsible";
203
206
  extractorPageFooter: "extractor-page-footer";
@@ -495,6 +498,10 @@ declare const BitType: Readonly<{
495
498
  trueFalse: "true-false";
496
499
  trueFalse1: "true-false-1";
497
500
  vendorAmcharts5Chart: "vendor-amcharts-5-chart";
501
+ vendorFormbricksEmbed: "vendor-formbricks-embed";
502
+ vendorFormbricksLink: "vendor-formbricks-link";
503
+ vendorFormbricksEmbedAnonymous: "vendor-formbricks-embed-anonymous";
504
+ vendorFormbricksLinkAnonymous: "vendor-formbricks-link-anonymous";
498
505
  vendorHighchartsChart: "vendor-highcharts-chart";
499
506
  vendorIframelyCard: "vendor-iframely-card";
500
507
  vendorIframelyEmbed: "vendor-iframely-embed";
@@ -574,6 +581,7 @@ declare const BitType: Readonly<{
574
581
  bookCopyright: "book-copyright";
575
582
  bookCopyrightPermissions: "book-copyright-permissions";
576
583
  bookDedication: "book-dedication";
584
+ bookDiff: "book-diff";
577
585
  bookEndnotes: "book-endnotes";
578
586
  bookEpigraph: "book-epigraph";
579
587
  bookEpilogue: "book-epilogue";
@@ -704,6 +712,7 @@ declare const BitType: Readonly<{
704
712
  dangerCollapsible: "danger-collapsible";
705
713
  definitionList: "definition-list";
706
714
  definitionTerm: "definition-term";
715
+ deleted: "deleted";
707
716
  details: "details";
708
717
  details1: "details-1";
709
718
  detailsImage: "details-image";
@@ -721,6 +730,7 @@ declare const BitType: Readonly<{
721
730
  exampleList: "example-list";
722
731
  extractorBlock: "extractor-block";
723
732
  extractorConfiguration: "extractor-configuration";
733
+ extractorInformation: "extractor-information";
724
734
  extractorPage: "extractor-page";
725
735
  extractorPageCollapsible: "extractor-page-collapsible";
726
736
  extractorPageFooter: "extractor-page-footer";
@@ -1018,6 +1028,10 @@ declare const BitType: Readonly<{
1018
1028
  trueFalse: "true-false";
1019
1029
  trueFalse1: "true-false-1";
1020
1030
  vendorAmcharts5Chart: "vendor-amcharts-5-chart";
1031
+ vendorFormbricksEmbed: "vendor-formbricks-embed";
1032
+ vendorFormbricksLink: "vendor-formbricks-link";
1033
+ vendorFormbricksEmbedAnonymous: "vendor-formbricks-embed-anonymous";
1034
+ vendorFormbricksLinkAnonymous: "vendor-formbricks-link-anonymous";
1021
1035
  vendorHighchartsChart: "vendor-highcharts-chart";
1022
1036
  vendorIframelyCard: "vendor-iframely-card";
1023
1037
  vendorIframelyEmbed: "vendor-iframely-embed";
@@ -1 +1 @@
1
- {"version":3,"file":"BitType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/BitType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2gBX,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;AAEnD,OAAO,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"BitType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/BitType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkhBX,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;AAEnD,OAAO,EAAE,OAAO,EAAE,CAAC"}
@@ -13,6 +13,7 @@ declare const PropertyTag: Readonly<{
13
13
  allowedBit: "allowedBit";
14
14
  allowSubtitles: "allowSubtitles";
15
15
  alt: "alt";
16
+ altLangTag: "altLangTag";
16
17
  author: "author";
17
18
  autoplay: "autoplay";
18
19
  availableClassifications: "availableClassifications";
@@ -20,11 +21,13 @@ declare const PropertyTag: Readonly<{
20
21
  blockId: "blockId";
21
22
  book: "book";
22
23
  bookAlias: "bookAlias";
24
+ bookDiff: "bookDiff";
23
25
  bot: "bot";
24
26
  bubbleTag: "bubbleTag";
25
27
  buttonCaption: "buttonCaption";
26
28
  callToActionUrl: "callToActionUrl";
27
29
  caption: "caption";
30
+ categoryTag: "categoryTag";
28
31
  chatWithBook: "chatWithBook";
29
32
  chatWithBookBrainKey: "chatWithBookBrainKey";
30
33
  citationStyle: "citationStyle";
@@ -38,6 +41,7 @@ declare const PropertyTag: Readonly<{
38
41
  copyright: "copyright";
39
42
  coverColor: "coverColor";
40
43
  coverImage: "coverImage";
44
+ customerExternalId: "customerExternalId";
41
45
  customerId: "customerId";
42
46
  date: "date";
43
47
  dateEnd: "dateEnd";
@@ -45,6 +49,10 @@ declare const PropertyTag: Readonly<{
45
49
  deeplink: "deeplink";
46
50
  disableCalculation: "disableCalculation";
47
51
  disableFeedback: "disableFeedback";
52
+ diffOp: "diffOp";
53
+ diffRef: "diffRef";
54
+ diffContext: "diffContext";
55
+ diffTime: "diffTime";
48
56
  duration: "duration";
49
57
  emphasis: "emphasis";
50
58
  example: "example";
@@ -177,9 +185,11 @@ declare const PropertyTag: Readonly<{
177
185
  theme: "theme";
178
186
  thumbImage: "thumbImage";
179
187
  toc: "toc";
188
+ topicTag: "topicTag";
180
189
  trim: "trim";
181
190
  unit: "unit";
182
191
  unitAbbr: "unitAbbr";
192
+ vendorSurveyId: "vendorSurveyId";
183
193
  vendorUrl: "vendorUrl";
184
194
  videoCallLink: "videoCallLink";
185
195
  width: "width";
@@ -200,6 +210,7 @@ declare const PropertyTag: Readonly<{
200
210
  allowedBit: "allowedBit";
201
211
  allowSubtitles: "allowSubtitles";
202
212
  alt: "alt";
213
+ altLangTag: "altLangTag";
203
214
  author: "author";
204
215
  autoplay: "autoplay";
205
216
  availableClassifications: "availableClassifications";
@@ -207,11 +218,13 @@ declare const PropertyTag: Readonly<{
207
218
  blockId: "blockId";
208
219
  book: "book";
209
220
  bookAlias: "bookAlias";
221
+ bookDiff: "bookDiff";
210
222
  bot: "bot";
211
223
  bubbleTag: "bubbleTag";
212
224
  buttonCaption: "buttonCaption";
213
225
  callToActionUrl: "callToActionUrl";
214
226
  caption: "caption";
227
+ categoryTag: "categoryTag";
215
228
  chatWithBook: "chatWithBook";
216
229
  chatWithBookBrainKey: "chatWithBookBrainKey";
217
230
  citationStyle: "citationStyle";
@@ -225,6 +238,7 @@ declare const PropertyTag: Readonly<{
225
238
  copyright: "copyright";
226
239
  coverColor: "coverColor";
227
240
  coverImage: "coverImage";
241
+ customerExternalId: "customerExternalId";
228
242
  customerId: "customerId";
229
243
  date: "date";
230
244
  dateEnd: "dateEnd";
@@ -232,6 +246,10 @@ declare const PropertyTag: Readonly<{
232
246
  deeplink: "deeplink";
233
247
  disableCalculation: "disableCalculation";
234
248
  disableFeedback: "disableFeedback";
249
+ diffOp: "diffOp";
250
+ diffRef: "diffRef";
251
+ diffContext: "diffContext";
252
+ diffTime: "diffTime";
235
253
  duration: "duration";
236
254
  emphasis: "emphasis";
237
255
  example: "example";
@@ -364,9 +382,11 @@ declare const PropertyTag: Readonly<{
364
382
  theme: "theme";
365
383
  thumbImage: "thumbImage";
366
384
  toc: "toc";
385
+ topicTag: "topicTag";
367
386
  trim: "trim";
368
387
  unit: "unit";
369
388
  unitAbbr: "unitAbbr";
389
+ vendorSurveyId: "vendorSurveyId";
370
390
  vendorUrl: "vendorUrl";
371
391
  videoCallLink: "videoCallLink";
372
392
  width: "width";
@@ -1 +1 @@
1
- {"version":3,"file":"PropertyTag.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/PropertyTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAIzD,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMf,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,WAAW,CAAC,CAAC;AAE3D,OAAO,EAAE,WAAW,EAAE,CAAC"}
1
+ {"version":3,"file":"PropertyTag.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/PropertyTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAIzD,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMf,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,WAAW,CAAC,CAAC;AAE3D,OAAO,EAAE,WAAW,EAAE,CAAC"}
@@ -22,8 +22,10 @@ declare const TextMarkType: Readonly<{
22
22
  link: "link";
23
23
  ref: "ref";
24
24
  xref: "xref";
25
+ extref: "extref";
25
26
  footnote: "footnote";
26
27
  footnoteStar: "footnote*";
28
+ symbol: "symbol";
27
29
  var: "var";
28
30
  code: "code";
29
31
  timer: "timer";
@@ -53,8 +55,10 @@ declare const TextMarkType: Readonly<{
53
55
  link: "link";
54
56
  ref: "ref";
55
57
  xref: "xref";
58
+ extref: "extref";
56
59
  footnote: "footnote";
57
60
  footnoteStar: "footnote*";
61
+ symbol: "symbol";
58
62
  var: "var";
59
63
  code: "code";
60
64
  timer: "timer";
@@ -1 +1 @@
1
- {"version":3,"file":"TextMarkType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/TextMarkType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoChB,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,CAAC,OAAO,YAAY,CAAC,CAAC;AAE7D,OAAO,EAAE,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"TextMarkType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/TextMarkType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsChB,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,CAAC,OAAO,YAAY,CAAC,CAAC;AAE7D,OAAO,EAAE,YAAY,EAAE,CAAC"}
@@ -9,6 +9,7 @@ export interface BitJson {
9
9
  id: string | string[];
10
10
  internalComment: string | string[];
11
11
  customerId: string;
12
+ customerExternalId: string | string[];
12
13
  externalId: string | string[];
13
14
  spaceId: string | string[];
14
15
  padletId: string;
@@ -19,9 +20,16 @@ export interface BitJson {
19
20
  machineTranslated: string;
20
21
  searchIndex: string | string[];
21
22
  analyticsTag: string | string[];
23
+ categoryTag: string | string[];
24
+ topicTag: string | string[];
25
+ altLangTag: string;
22
26
  feedbackEngine: string;
23
27
  feedbackType: string;
24
28
  disableFeedback: boolean;
29
+ diffOp: string;
30
+ diffRef: string;
31
+ diffContext: string;
32
+ diffTime: number;
25
33
  releaseVersion: string;
26
34
  releaseKind: string;
27
35
  releaseDate: string;
@@ -44,6 +52,7 @@ export interface BitJson {
44
52
  flashcardSet: string | string[];
45
53
  subtype: string;
46
54
  bookAlias: string | string[];
55
+ bookDiff: string;
47
56
  coverImage: string | string[];
48
57
  coverColor: string;
49
58
  publisher: string | string[];
@@ -107,6 +116,7 @@ export interface BitJson {
107
116
  externalLink: string;
108
117
  externalLinkText: string;
109
118
  videoCallLink: string;
119
+ vendorSurveyId: string;
110
120
  vendorUrl: string;
111
121
  search: string;
112
122
  bot: string | string[];