@gmb/bitmark-parser-generator 3.26.0 → 3.28.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 (225) hide show
  1. package/README.md +4 -4
  2. package/dist/browser/bitmark-parser-generator.min.js +1 -1
  3. package/dist/browser/bundle-report.html +2 -2
  4. package/dist/cjs/BitmarkParserGenerator.js +19 -16
  5. package/dist/cjs/BitmarkParserGenerator.js.map +1 -1
  6. package/dist/cjs/ast/BaseBuilder.js +8 -8
  7. package/dist/cjs/ast/BaseBuilder.js.map +1 -1
  8. package/dist/cjs/ast/Builder.js +52 -50
  9. package/dist/cjs/ast/Builder.js.map +1 -1
  10. package/dist/cjs/ast/ResourceBuilder.js +19 -18
  11. package/dist/cjs/ast/ResourceBuilder.js.map +1 -1
  12. package/dist/cjs/breakscaping/Breakscape.js +59 -72
  13. package/dist/cjs/breakscaping/Breakscape.js.map +1 -1
  14. package/dist/cjs/config/Config.js +1 -1
  15. package/dist/cjs/config/Config.js.map +1 -1
  16. package/dist/cjs/config/raw/bits.js +26 -9
  17. package/dist/cjs/config/raw/bits.js.map +1 -1
  18. package/dist/cjs/config/raw/groups.js +5 -0
  19. package/dist/cjs/config/raw/groups.js.map +1 -1
  20. package/dist/cjs/config/raw/properties.js +145 -141
  21. package/dist/cjs/config/raw/properties.js.map +1 -1
  22. package/dist/cjs/generated/build-info.js +1 -1
  23. package/dist/cjs/generator/bitmark/BitmarkGenerator.js +116 -128
  24. package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
  25. package/dist/cjs/generator/json/JsonGenerator.js +10 -10
  26. package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
  27. package/dist/cjs/generator/text/TextGenerator.js +15 -15
  28. package/dist/cjs/generator/text/TextGenerator.js.map +1 -1
  29. package/dist/cjs/index.js +3 -3
  30. package/dist/cjs/index.js.map +1 -1
  31. package/dist/cjs/model/ast/NodeType.js +2 -0
  32. package/dist/cjs/model/ast/NodeType.js.map +1 -1
  33. package/dist/cjs/model/config/enum/PropertyConfigKey.js +1 -0
  34. package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
  35. package/dist/cjs/model/enum/BitType.js +3 -0
  36. package/dist/cjs/model/enum/BitType.js.map +1 -1
  37. package/dist/cjs/model/enum/BodyTextFormat.js +14 -0
  38. package/dist/cjs/model/enum/BodyTextFormat.js.map +1 -0
  39. package/dist/cjs/model/enum/DeprecatedTextFormat.js +9 -0
  40. package/dist/cjs/model/enum/DeprecatedTextFormat.js.map +1 -0
  41. package/dist/cjs/model/enum/PropertyFormat.js +2 -4
  42. package/dist/cjs/model/enum/PropertyFormat.js.map +1 -1
  43. package/dist/cjs/model/enum/TextFormat.js +4 -15
  44. package/dist/cjs/model/enum/TextFormat.js.map +1 -1
  45. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserHelper.js +2 -2
  46. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserHelper.js.map +1 -1
  47. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js +14 -10
  48. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  49. package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +4 -4
  50. package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -1
  51. package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +1 -1
  52. package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  53. package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +2 -2
  54. package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  55. package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +8 -8
  56. package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  57. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +3 -3
  58. package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  59. package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +4 -4
  60. package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -1
  61. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +1 -1
  62. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  63. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +2 -1
  64. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  65. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +1 -1
  66. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  67. package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +1 -1
  68. package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
  69. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +10 -16
  70. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  71. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +2 -1
  72. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
  73. package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +2 -2
  74. package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  75. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +2 -2
  76. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  77. package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +1 -1
  78. package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
  79. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +2 -1
  80. package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  81. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +1 -1
  82. package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  83. package/dist/cjs/parser/json/JsonParser.js +4 -3
  84. package/dist/cjs/parser/json/JsonParser.js.map +1 -1
  85. package/dist/cjs/parser/text/TextParser.js +4 -4
  86. package/dist/cjs/parser/text/TextParser.js.map +1 -1
  87. package/dist/cjs/utils/BitUtils.js +2 -1
  88. package/dist/cjs/utils/BitUtils.js.map +1 -1
  89. package/dist/esm/BitmarkParserGenerator.js +19 -16
  90. package/dist/esm/BitmarkParserGenerator.js.map +1 -1
  91. package/dist/esm/ast/BaseBuilder.js +8 -8
  92. package/dist/esm/ast/BaseBuilder.js.map +1 -1
  93. package/dist/esm/ast/Builder.js +52 -50
  94. package/dist/esm/ast/Builder.js.map +1 -1
  95. package/dist/esm/ast/ResourceBuilder.js +19 -18
  96. package/dist/esm/ast/ResourceBuilder.js.map +1 -1
  97. package/dist/esm/breakscaping/Breakscape.js +59 -72
  98. package/dist/esm/breakscaping/Breakscape.js.map +1 -1
  99. package/dist/esm/config/Config.js +1 -1
  100. package/dist/esm/config/Config.js.map +1 -1
  101. package/dist/esm/config/raw/bits.js +26 -9
  102. package/dist/esm/config/raw/bits.js.map +1 -1
  103. package/dist/esm/config/raw/groups.js +5 -0
  104. package/dist/esm/config/raw/groups.js.map +1 -1
  105. package/dist/esm/config/raw/properties.js +145 -141
  106. package/dist/esm/config/raw/properties.js.map +1 -1
  107. package/dist/esm/generated/build-info.js +1 -1
  108. package/dist/esm/generator/bitmark/BitmarkGenerator.js +116 -128
  109. package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
  110. package/dist/esm/generator/json/JsonGenerator.js +10 -10
  111. package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
  112. package/dist/esm/generator/text/TextGenerator.js +15 -15
  113. package/dist/esm/generator/text/TextGenerator.js.map +1 -1
  114. package/dist/esm/index.js +1 -1
  115. package/dist/esm/index.js.map +1 -1
  116. package/dist/esm/model/ast/NodeType.js +2 -0
  117. package/dist/esm/model/ast/NodeType.js.map +1 -1
  118. package/dist/esm/model/config/enum/PropertyConfigKey.js +1 -0
  119. package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
  120. package/dist/esm/model/enum/BitType.js +3 -0
  121. package/dist/esm/model/enum/BitType.js.map +1 -1
  122. package/dist/esm/model/enum/BodyTextFormat.js +11 -0
  123. package/dist/esm/model/enum/BodyTextFormat.js.map +1 -0
  124. package/dist/esm/model/enum/DeprecatedTextFormat.js +6 -0
  125. package/dist/esm/model/enum/DeprecatedTextFormat.js.map +1 -0
  126. package/dist/esm/model/enum/PropertyFormat.js +2 -4
  127. package/dist/esm/model/enum/PropertyFormat.js.map +1 -1
  128. package/dist/esm/model/enum/TextFormat.js +4 -15
  129. package/dist/esm/model/enum/TextFormat.js.map +1 -1
  130. package/dist/esm/parser/bitmark/peg/BitmarkPegParserHelper.js +2 -2
  131. package/dist/esm/parser/bitmark/peg/BitmarkPegParserHelper.js.map +1 -1
  132. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js +14 -10
  133. package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
  134. package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +4 -4
  135. package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -1
  136. package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +1 -1
  137. package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
  138. package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +2 -2
  139. package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
  140. package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +8 -8
  141. package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
  142. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +3 -3
  143. package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
  144. package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +4 -4
  145. package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -1
  146. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +1 -1
  147. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  148. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +2 -1
  149. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
  150. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +1 -1
  151. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  152. package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +1 -1
  153. package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
  154. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +10 -16
  155. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  156. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +2 -1
  157. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
  158. package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +2 -2
  159. package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
  160. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +2 -2
  161. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  162. package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +1 -1
  163. package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
  164. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +2 -1
  165. package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
  166. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +1 -1
  167. package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
  168. package/dist/esm/parser/json/JsonParser.js +4 -3
  169. package/dist/esm/parser/json/JsonParser.js.map +1 -1
  170. package/dist/esm/parser/text/TextParser.js +4 -4
  171. package/dist/esm/parser/text/TextParser.js.map +1 -1
  172. package/dist/esm/utils/BitUtils.js +2 -1
  173. package/dist/esm/utils/BitUtils.js.map +1 -1
  174. package/dist/types/BitmarkParserGenerator.d.ts +12 -8
  175. package/dist/types/BitmarkParserGenerator.d.ts.map +1 -1
  176. package/dist/types/ast/BaseBuilder.d.ts +5 -3
  177. package/dist/types/ast/BaseBuilder.d.ts.map +1 -1
  178. package/dist/types/ast/Builder.d.ts +1 -0
  179. package/dist/types/ast/Builder.d.ts.map +1 -1
  180. package/dist/types/ast/ResourceBuilder.d.ts.map +1 -1
  181. package/dist/types/breakscaping/Breakscape.d.ts +2 -2
  182. package/dist/types/breakscaping/Breakscape.d.ts.map +1 -1
  183. package/dist/types/config/raw/bits.d.ts.map +1 -1
  184. package/dist/types/config/raw/groups.d.ts.map +1 -1
  185. package/dist/types/config/raw/properties.d.ts.map +1 -1
  186. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +0 -1
  187. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
  188. package/dist/types/generator/json/JsonGenerator.d.ts +2 -2
  189. package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
  190. package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
  191. package/dist/types/index.d.ts +2 -2
  192. package/dist/types/index.d.ts.map +1 -1
  193. package/dist/types/model/ast/NodeType.d.ts +4 -0
  194. package/dist/types/model/ast/NodeType.d.ts.map +1 -1
  195. package/dist/types/model/ast/Nodes.d.ts +1 -0
  196. package/dist/types/model/ast/Nodes.d.ts.map +1 -1
  197. package/dist/types/model/config/enum/ConfigKey.d.ts +2 -0
  198. package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
  199. package/dist/types/model/config/enum/PropertyConfigKey.d.ts +3 -0
  200. package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
  201. package/dist/types/model/enum/BitType.d.ts +6 -0
  202. package/dist/types/model/enum/BitType.d.ts.map +1 -1
  203. package/dist/types/model/enum/BodyTextFormat.d.ts +17 -0
  204. package/dist/types/model/enum/BodyTextFormat.d.ts.map +1 -0
  205. package/dist/types/model/enum/DeprecatedTextFormat.d.ts +7 -0
  206. package/dist/types/model/enum/DeprecatedTextFormat.d.ts.map +1 -0
  207. package/dist/types/model/enum/PropertyFormat.d.ts +4 -6
  208. package/dist/types/model/enum/PropertyFormat.d.ts.map +1 -1
  209. package/dist/types/model/enum/PropertyTag.d.ts +2 -0
  210. package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
  211. package/dist/types/model/enum/TextFormat.d.ts +4 -6
  212. package/dist/types/model/enum/TextFormat.d.ts.map +1 -1
  213. package/dist/types/model/json/BitJson.d.ts +1 -0
  214. package/dist/types/model/json/BitJson.d.ts.map +1 -1
  215. package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts +1 -1
  216. package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts.map +1 -1
  217. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts.map +1 -1
  218. package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
  219. package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts.map +1 -1
  220. package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts.map +1 -1
  221. package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
  222. package/dist/types/parser/text/TextParser.d.ts +2 -1
  223. package/dist/types/parser/text/TextParser.d.ts.map +1 -1
  224. package/dist/types/utils/BitUtils.d.ts.map +1 -1
  225. package/package.json +25 -21
@@ -8,39 +8,39 @@ const PropertyTag_1 = require("../../model/enum/PropertyTag");
8
8
  const PROPERTIES = {
9
9
  [PropertyConfigKey_1.PropertyConfigKey.id]: {
10
10
  tag: PropertyTag_1.PropertyTag.id,
11
- format: PropertyFormat_1.PropertyFormat.trimmedString,
11
+ format: PropertyFormat_1.PropertyFormat.plainText,
12
12
  },
13
13
  [PropertyConfigKey_1.PropertyConfigKey.internalComment]: {
14
14
  tag: PropertyTag_1.PropertyTag.internalComment,
15
- format: PropertyFormat_1.PropertyFormat.trimmedString,
15
+ format: PropertyFormat_1.PropertyFormat.plainText,
16
16
  },
17
17
  [PropertyConfigKey_1.PropertyConfigKey.customerId]: {
18
18
  tag: PropertyTag_1.PropertyTag.customerId,
19
19
  single: true,
20
- format: PropertyFormat_1.PropertyFormat.trimmedString,
20
+ format: PropertyFormat_1.PropertyFormat.plainText,
21
21
  },
22
22
  [PropertyConfigKey_1.PropertyConfigKey.customerExternalId]: {
23
23
  tag: PropertyTag_1.PropertyTag.customerExternalId,
24
24
  single: true,
25
- format: PropertyFormat_1.PropertyFormat.trimmedString,
25
+ format: PropertyFormat_1.PropertyFormat.plainText,
26
26
  },
27
27
  [PropertyConfigKey_1.PropertyConfigKey.externalId]: {
28
28
  tag: PropertyTag_1.PropertyTag.externalId,
29
- format: PropertyFormat_1.PropertyFormat.trimmedString,
29
+ format: PropertyFormat_1.PropertyFormat.plainText,
30
30
  },
31
31
  [PropertyConfigKey_1.PropertyConfigKey.spaceId]: {
32
32
  tag: PropertyTag_1.PropertyTag.spaceId,
33
- format: PropertyFormat_1.PropertyFormat.trimmedString,
33
+ format: PropertyFormat_1.PropertyFormat.plainText,
34
34
  },
35
35
  [PropertyConfigKey_1.PropertyConfigKey.padletId]: {
36
36
  tag: PropertyTag_1.PropertyTag.padletId,
37
37
  single: true,
38
- format: PropertyFormat_1.PropertyFormat.trimmedString,
38
+ format: PropertyFormat_1.PropertyFormat.plainText,
39
39
  },
40
40
  [PropertyConfigKey_1.PropertyConfigKey.jupyterId]: {
41
41
  tag: PropertyTag_1.PropertyTag.jupyterId,
42
42
  single: true,
43
- format: PropertyFormat_1.PropertyFormat.trimmedString,
43
+ format: PropertyFormat_1.PropertyFormat.plainText,
44
44
  },
45
45
  [PropertyConfigKey_1.PropertyConfigKey.jupyterExecutionCount]: {
46
46
  tag: PropertyTag_1.PropertyTag.jupyterExecutionCount,
@@ -55,33 +55,33 @@ const PROPERTIES = {
55
55
  [PropertyConfigKey_1.PropertyConfigKey.machineTranslated]: {
56
56
  tag: PropertyTag_1.PropertyTag.machineTranslated,
57
57
  single: true,
58
- format: PropertyFormat_1.PropertyFormat.trimmedString,
58
+ format: PropertyFormat_1.PropertyFormat.plainText,
59
59
  },
60
60
  [PropertyConfigKey_1.PropertyConfigKey.searchIndex]: {
61
61
  tag: PropertyTag_1.PropertyTag.searchIndex,
62
- format: PropertyFormat_1.PropertyFormat.trimmedString,
62
+ format: PropertyFormat_1.PropertyFormat.plainText,
63
63
  },
64
64
  [PropertyConfigKey_1.PropertyConfigKey.analyticsTag]: {
65
65
  tag: PropertyTag_1.PropertyTag.analyticsTag,
66
- format: PropertyFormat_1.PropertyFormat.trimmedString,
66
+ format: PropertyFormat_1.PropertyFormat.plainText,
67
67
  },
68
68
  [PropertyConfigKey_1.PropertyConfigKey.categoryTag]: {
69
69
  tag: PropertyTag_1.PropertyTag.categoryTag,
70
- format: PropertyFormat_1.PropertyFormat.trimmedString,
70
+ format: PropertyFormat_1.PropertyFormat.plainText,
71
71
  },
72
72
  [PropertyConfigKey_1.PropertyConfigKey.topicTag]: {
73
73
  tag: PropertyTag_1.PropertyTag.topicTag,
74
- format: PropertyFormat_1.PropertyFormat.trimmedString,
74
+ format: PropertyFormat_1.PropertyFormat.plainText,
75
75
  },
76
76
  [PropertyConfigKey_1.PropertyConfigKey.altLangTag]: {
77
77
  tag: PropertyTag_1.PropertyTag.altLangTag,
78
78
  single: true,
79
- format: PropertyFormat_1.PropertyFormat.trimmedString,
79
+ format: PropertyFormat_1.PropertyFormat.plainText,
80
80
  },
81
81
  [PropertyConfigKey_1.PropertyConfigKey.feedbackEngine]: {
82
82
  tag: PropertyTag_1.PropertyTag.feedbackEngine,
83
83
  single: true,
84
- format: PropertyFormat_1.PropertyFormat.trimmedString,
84
+ format: PropertyFormat_1.PropertyFormat.plainText,
85
85
  },
86
86
  [PropertyConfigKey_1.PropertyConfigKey.disableFeedback]: {
87
87
  tag: PropertyTag_1.PropertyTag.disableFeedback,
@@ -91,22 +91,22 @@ const PROPERTIES = {
91
91
  [PropertyConfigKey_1.PropertyConfigKey.diffTo]: {
92
92
  tag: PropertyTag_1.PropertyTag.diffTo,
93
93
  single: true,
94
- format: PropertyFormat_1.PropertyFormat.trimmedString,
94
+ format: PropertyFormat_1.PropertyFormat.plainText,
95
95
  },
96
96
  [PropertyConfigKey_1.PropertyConfigKey.diffOp]: {
97
97
  tag: PropertyTag_1.PropertyTag.diffOp,
98
98
  single: true,
99
- format: PropertyFormat_1.PropertyFormat.trimmedString,
99
+ format: PropertyFormat_1.PropertyFormat.plainText,
100
100
  },
101
101
  [PropertyConfigKey_1.PropertyConfigKey.diffRef]: {
102
102
  tag: PropertyTag_1.PropertyTag.diffRef,
103
103
  single: true,
104
- format: PropertyFormat_1.PropertyFormat.trimmedString,
104
+ format: PropertyFormat_1.PropertyFormat.plainText,
105
105
  },
106
106
  [PropertyConfigKey_1.PropertyConfigKey.diffContext]: {
107
107
  tag: PropertyTag_1.PropertyTag.diffContext,
108
108
  single: true,
109
- format: PropertyFormat_1.PropertyFormat.trimmedString,
109
+ format: PropertyFormat_1.PropertyFormat.plainText,
110
110
  },
111
111
  [PropertyConfigKey_1.PropertyConfigKey.diffTime]: {
112
112
  tag: PropertyTag_1.PropertyTag.diffTime,
@@ -116,22 +116,22 @@ const PROPERTIES = {
116
116
  [PropertyConfigKey_1.PropertyConfigKey.path]: {
117
117
  tag: PropertyTag_1.PropertyTag.path,
118
118
  single: true,
119
- format: PropertyFormat_1.PropertyFormat.trimmedString,
119
+ format: PropertyFormat_1.PropertyFormat.plainText,
120
120
  },
121
121
  [PropertyConfigKey_1.PropertyConfigKey.releaseVersion]: {
122
122
  tag: PropertyTag_1.PropertyTag.releaseVersion,
123
123
  single: true,
124
- format: PropertyFormat_1.PropertyFormat.trimmedString,
124
+ format: PropertyFormat_1.PropertyFormat.plainText,
125
125
  },
126
126
  [PropertyConfigKey_1.PropertyConfigKey.releaseKind]: {
127
127
  tag: PropertyTag_1.PropertyTag.releaseKind,
128
128
  single: true,
129
- format: PropertyFormat_1.PropertyFormat.trimmedString,
129
+ format: PropertyFormat_1.PropertyFormat.plainText,
130
130
  },
131
131
  [PropertyConfigKey_1.PropertyConfigKey.releaseDate]: {
132
132
  tag: PropertyTag_1.PropertyTag.releaseDate,
133
133
  single: true,
134
- format: PropertyFormat_1.PropertyFormat.trimmedString,
134
+ format: PropertyFormat_1.PropertyFormat.plainText,
135
135
  },
136
136
  [PropertyConfigKey_1.PropertyConfigKey.resolved]: {
137
137
  tag: PropertyTag_1.PropertyTag.resolved,
@@ -141,198 +141,198 @@ const PROPERTIES = {
141
141
  [PropertyConfigKey_1.PropertyConfigKey.resolvedDate]: {
142
142
  tag: PropertyTag_1.PropertyTag.resolvedDate,
143
143
  single: true,
144
- format: PropertyFormat_1.PropertyFormat.trimmedString,
144
+ format: PropertyFormat_1.PropertyFormat.plainText,
145
145
  },
146
146
  [PropertyConfigKey_1.PropertyConfigKey.resolvedBy]: {
147
147
  tag: PropertyTag_1.PropertyTag.resolvedBy,
148
148
  single: true,
149
- format: PropertyFormat_1.PropertyFormat.trimmedString,
149
+ format: PropertyFormat_1.PropertyFormat.plainText,
150
150
  },
151
151
  [PropertyConfigKey_1.PropertyConfigKey.handInAcceptFileType]: {
152
152
  tag: PropertyTag_1.PropertyTag.handInAcceptFileType,
153
- format: PropertyFormat_1.PropertyFormat.trimmedString,
153
+ format: PropertyFormat_1.PropertyFormat.plainText,
154
154
  },
155
155
  [PropertyConfigKey_1.PropertyConfigKey.handInRequirement]: {
156
156
  tag: PropertyTag_1.PropertyTag.handInRequirement,
157
- format: PropertyFormat_1.PropertyFormat.trimmedString,
157
+ format: PropertyFormat_1.PropertyFormat.plainText,
158
158
  },
159
159
  [PropertyConfigKey_1.PropertyConfigKey.handInInstruction]: {
160
160
  tag: PropertyTag_1.PropertyTag.handInInstruction,
161
161
  single: true,
162
- format: PropertyFormat_1.PropertyFormat.trimmedString,
162
+ format: PropertyFormat_1.PropertyFormat.plainText,
163
163
  },
164
164
  [PropertyConfigKey_1.PropertyConfigKey.ageRange]: {
165
165
  tag: PropertyTag_1.PropertyTag.ageRange,
166
- format: PropertyFormat_1.PropertyFormat.trimmedString,
166
+ format: PropertyFormat_1.PropertyFormat.plainText,
167
167
  },
168
168
  [PropertyConfigKey_1.PropertyConfigKey.lang]: {
169
169
  tag: PropertyTag_1.PropertyTag.lang,
170
170
  single: true,
171
- format: PropertyFormat_1.PropertyFormat.trimmedString,
171
+ format: PropertyFormat_1.PropertyFormat.plainText,
172
172
  },
173
173
  [PropertyConfigKey_1.PropertyConfigKey.language]: {
174
174
  tag: PropertyTag_1.PropertyTag.language,
175
- format: PropertyFormat_1.PropertyFormat.trimmedString,
175
+ format: PropertyFormat_1.PropertyFormat.plainText,
176
176
  },
177
177
  [PropertyConfigKey_1.PropertyConfigKey.computerLanguage]: {
178
178
  tag: PropertyTag_1.PropertyTag.computerLanguage,
179
179
  single: true,
180
- format: PropertyFormat_1.PropertyFormat.trimmedString,
180
+ format: PropertyFormat_1.PropertyFormat.plainText,
181
181
  },
182
182
  [PropertyConfigKey_1.PropertyConfigKey.target]: {
183
183
  tag: PropertyTag_1.PropertyTag.target,
184
- format: PropertyFormat_1.PropertyFormat.trimmedString,
184
+ format: PropertyFormat_1.PropertyFormat.plainText,
185
185
  },
186
186
  [PropertyConfigKey_1.PropertyConfigKey.slug]: {
187
187
  tag: PropertyTag_1.PropertyTag.slug,
188
188
  single: true,
189
- format: PropertyFormat_1.PropertyFormat.trimmedString,
189
+ format: PropertyFormat_1.PropertyFormat.plainText,
190
190
  },
191
191
  [PropertyConfigKey_1.PropertyConfigKey.tag]: {
192
192
  tag: PropertyTag_1.PropertyTag.tag,
193
- format: PropertyFormat_1.PropertyFormat.trimmedString,
193
+ format: PropertyFormat_1.PropertyFormat.plainText,
194
194
  },
195
195
  [PropertyConfigKey_1.PropertyConfigKey.reductionTag]: {
196
196
  tag: PropertyTag_1.PropertyTag.reductionTag,
197
- format: PropertyFormat_1.PropertyFormat.trimmedString,
197
+ format: PropertyFormat_1.PropertyFormat.plainText,
198
198
  },
199
199
  [PropertyConfigKey_1.PropertyConfigKey.bubbleTag]: {
200
200
  tag: PropertyTag_1.PropertyTag.bubbleTag,
201
- format: PropertyFormat_1.PropertyFormat.trimmedString,
201
+ format: PropertyFormat_1.PropertyFormat.plainText,
202
202
  },
203
203
  [PropertyConfigKey_1.PropertyConfigKey.levelCEFRp]: {
204
204
  tag: PropertyTag_1.PropertyTag.levelCEFRp,
205
205
  single: true,
206
- format: PropertyFormat_1.PropertyFormat.trimmedString,
206
+ format: PropertyFormat_1.PropertyFormat.plainText,
207
207
  },
208
208
  [PropertyConfigKey_1.PropertyConfigKey.levelCEFR]: {
209
209
  tag: PropertyTag_1.PropertyTag.levelCEFR,
210
210
  single: true,
211
- format: PropertyFormat_1.PropertyFormat.trimmedString,
211
+ format: PropertyFormat_1.PropertyFormat.plainText,
212
212
  },
213
213
  [PropertyConfigKey_1.PropertyConfigKey.levelILR]: {
214
214
  tag: PropertyTag_1.PropertyTag.levelILR,
215
215
  single: true,
216
- format: PropertyFormat_1.PropertyFormat.trimmedString,
216
+ format: PropertyFormat_1.PropertyFormat.plainText,
217
217
  },
218
218
  [PropertyConfigKey_1.PropertyConfigKey.levelACTFL]: {
219
219
  tag: PropertyTag_1.PropertyTag.levelACTFL,
220
220
  single: true,
221
- format: PropertyFormat_1.PropertyFormat.trimmedString,
221
+ format: PropertyFormat_1.PropertyFormat.plainText,
222
222
  },
223
223
  [PropertyConfigKey_1.PropertyConfigKey.icon]: {
224
224
  tag: PropertyTag_1.PropertyTag.icon,
225
225
  single: true,
226
- format: PropertyFormat_1.PropertyFormat.trimmedString,
226
+ format: PropertyFormat_1.PropertyFormat.plainText,
227
227
  },
228
228
  [PropertyConfigKey_1.PropertyConfigKey.iconTag]: {
229
229
  tag: PropertyTag_1.PropertyTag.iconTag,
230
230
  single: true,
231
- format: PropertyFormat_1.PropertyFormat.trimmedString,
231
+ format: PropertyFormat_1.PropertyFormat.plainText,
232
232
  },
233
233
  [PropertyConfigKey_1.PropertyConfigKey.colorTag]: {
234
234
  tag: PropertyTag_1.PropertyTag.colorTag,
235
- format: PropertyFormat_1.PropertyFormat.trimmedString,
235
+ format: PropertyFormat_1.PropertyFormat.plainText,
236
236
  },
237
237
  [PropertyConfigKey_1.PropertyConfigKey.flashcardSet]: {
238
238
  tag: PropertyTag_1.PropertyTag.flashcardSet,
239
- format: PropertyFormat_1.PropertyFormat.trimmedString,
239
+ format: PropertyFormat_1.PropertyFormat.plainText,
240
240
  },
241
241
  [PropertyConfigKey_1.PropertyConfigKey.subtype]: {
242
242
  tag: PropertyTag_1.PropertyTag.subtype,
243
243
  single: true,
244
- format: PropertyFormat_1.PropertyFormat.trimmedString,
244
+ format: PropertyFormat_1.PropertyFormat.plainText,
245
245
  },
246
246
  [PropertyConfigKey_1.PropertyConfigKey.bookAlias]: {
247
247
  tag: PropertyTag_1.PropertyTag.bookAlias,
248
- format: PropertyFormat_1.PropertyFormat.trimmedString,
248
+ format: PropertyFormat_1.PropertyFormat.plainText,
249
249
  },
250
250
  [PropertyConfigKey_1.PropertyConfigKey.bookDiff]: {
251
251
  tag: PropertyTag_1.PropertyTag.bookDiff,
252
252
  single: true,
253
- format: PropertyFormat_1.PropertyFormat.trimmedString,
253
+ format: PropertyFormat_1.PropertyFormat.plainText,
254
254
  },
255
255
  [PropertyConfigKey_1.PropertyConfigKey.refAuthor]: {
256
256
  tag: PropertyTag_1.PropertyTag.refAuthor,
257
- format: PropertyFormat_1.PropertyFormat.trimmedString,
257
+ format: PropertyFormat_1.PropertyFormat.plainText,
258
258
  },
259
259
  [PropertyConfigKey_1.PropertyConfigKey.refBookTitle]: {
260
260
  tag: PropertyTag_1.PropertyTag.refBookTitle,
261
261
  single: true,
262
- format: PropertyFormat_1.PropertyFormat.trimmedString,
262
+ format: PropertyFormat_1.PropertyFormat.plainText,
263
263
  },
264
264
  [PropertyConfigKey_1.PropertyConfigKey.refPublisher]: {
265
265
  tag: PropertyTag_1.PropertyTag.refPublisher,
266
- format: PropertyFormat_1.PropertyFormat.trimmedString,
266
+ format: PropertyFormat_1.PropertyFormat.plainText,
267
267
  },
268
268
  [PropertyConfigKey_1.PropertyConfigKey.refPublicationYear]: {
269
269
  tag: PropertyTag_1.PropertyTag.refPublicationYear,
270
270
  single: true,
271
- format: PropertyFormat_1.PropertyFormat.trimmedString,
271
+ format: PropertyFormat_1.PropertyFormat.plainText,
272
272
  },
273
273
  [PropertyConfigKey_1.PropertyConfigKey.citationStyle]: {
274
274
  tag: PropertyTag_1.PropertyTag.citationStyle,
275
275
  single: true,
276
- format: PropertyFormat_1.PropertyFormat.trimmedString,
276
+ format: PropertyFormat_1.PropertyFormat.plainText,
277
277
  },
278
278
  [PropertyConfigKey_1.PropertyConfigKey.coverImage]: {
279
279
  tag: PropertyTag_1.PropertyTag.coverImage,
280
- format: PropertyFormat_1.PropertyFormat.trimmedString,
280
+ format: PropertyFormat_1.PropertyFormat.plainText,
281
281
  },
282
282
  [PropertyConfigKey_1.PropertyConfigKey.coverColor]: {
283
283
  tag: PropertyTag_1.PropertyTag.coverColor,
284
284
  single: true,
285
- format: PropertyFormat_1.PropertyFormat.trimmedString,
285
+ format: PropertyFormat_1.PropertyFormat.plainText,
286
286
  },
287
287
  [PropertyConfigKey_1.PropertyConfigKey.imagePlaceholder]: {
288
288
  tag: PropertyTag_1.PropertyTag.imagePlaceholder,
289
289
  single: true,
290
- format: PropertyFormat_1.PropertyFormat.trimmedString,
290
+ format: PropertyFormat_1.PropertyFormat.plainText,
291
291
  },
292
292
  [PropertyConfigKey_1.PropertyConfigKey.publisher]: {
293
293
  tag: PropertyTag_1.PropertyTag.publisher,
294
- format: PropertyFormat_1.PropertyFormat.trimmedString,
294
+ format: PropertyFormat_1.PropertyFormat.plainText,
295
295
  },
296
296
  [PropertyConfigKey_1.PropertyConfigKey.publisherName]: {
297
297
  tag: PropertyTag_1.PropertyTag.publisherName,
298
298
  single: true,
299
- format: PropertyFormat_1.PropertyFormat.trimmedString,
299
+ format: PropertyFormat_1.PropertyFormat.plainText,
300
300
  },
301
301
  [PropertyConfigKey_1.PropertyConfigKey.publications]: {
302
302
  tag: PropertyTag_1.PropertyTag.publications,
303
- format: PropertyFormat_1.PropertyFormat.trimmedString,
303
+ format: PropertyFormat_1.PropertyFormat.plainText,
304
304
  },
305
305
  [PropertyConfigKey_1.PropertyConfigKey.author]: {
306
306
  tag: PropertyTag_1.PropertyTag.author,
307
- format: PropertyFormat_1.PropertyFormat.trimmedString,
307
+ format: PropertyFormat_1.PropertyFormat.plainText,
308
308
  },
309
309
  [PropertyConfigKey_1.PropertyConfigKey.subject]: {
310
310
  tag: PropertyTag_1.PropertyTag.subject,
311
- format: PropertyFormat_1.PropertyFormat.trimmedString,
311
+ format: PropertyFormat_1.PropertyFormat.plainText,
312
312
  },
313
313
  [PropertyConfigKey_1.PropertyConfigKey.date]: {
314
314
  tag: PropertyTag_1.PropertyTag.date,
315
315
  single: true,
316
- format: PropertyFormat_1.PropertyFormat.trimmedString,
316
+ format: PropertyFormat_1.PropertyFormat.plainText,
317
317
  },
318
318
  [PropertyConfigKey_1.PropertyConfigKey.dateEnd]: {
319
319
  tag: PropertyTag_1.PropertyTag.dateEnd,
320
320
  single: true,
321
- format: PropertyFormat_1.PropertyFormat.trimmedString,
321
+ format: PropertyFormat_1.PropertyFormat.plainText,
322
322
  },
323
323
  [PropertyConfigKey_1.PropertyConfigKey.location]: {
324
324
  tag: PropertyTag_1.PropertyTag.location,
325
325
  single: true,
326
- format: PropertyFormat_1.PropertyFormat.trimmedString,
326
+ format: PropertyFormat_1.PropertyFormat.plainText,
327
327
  },
328
328
  [PropertyConfigKey_1.PropertyConfigKey.theme]: {
329
329
  tag: PropertyTag_1.PropertyTag.theme,
330
- format: PropertyFormat_1.PropertyFormat.trimmedString,
330
+ format: PropertyFormat_1.PropertyFormat.plainText,
331
331
  },
332
332
  [PropertyConfigKey_1.PropertyConfigKey.kind]: {
333
333
  tag: PropertyTag_1.PropertyTag.kind,
334
334
  single: true,
335
- format: PropertyFormat_1.PropertyFormat.trimmedString,
335
+ format: PropertyFormat_1.PropertyFormat.plainText,
336
336
  },
337
337
  [PropertyConfigKey_1.PropertyConfigKey.hasMarkAsDone]: {
338
338
  tag: PropertyTag_1.PropertyTag.hasMarkAsDone,
@@ -361,27 +361,27 @@ const PROPERTIES = {
361
361
  [PropertyConfigKey_1.PropertyConfigKey.chatWithBookBrainKey]: {
362
362
  tag: PropertyTag_1.PropertyTag.chatWithBookBrainKey,
363
363
  single: true,
364
- format: PropertyFormat_1.PropertyFormat.trimmedString,
364
+ format: PropertyFormat_1.PropertyFormat.plainText,
365
365
  },
366
366
  [PropertyConfigKey_1.PropertyConfigKey.action]: {
367
367
  tag: PropertyTag_1.PropertyTag.action,
368
368
  single: true,
369
- format: PropertyFormat_1.PropertyFormat.trimmedString,
369
+ format: PropertyFormat_1.PropertyFormat.plainText,
370
370
  },
371
371
  [PropertyConfigKey_1.PropertyConfigKey.thumbImage]: {
372
372
  tag: PropertyTag_1.PropertyTag.thumbImage,
373
373
  single: true,
374
- format: PropertyFormat_1.PropertyFormat.trimmedString,
374
+ format: PropertyFormat_1.PropertyFormat.plainText,
375
375
  },
376
376
  [PropertyConfigKey_1.PropertyConfigKey.scormSource]: {
377
377
  tag: PropertyTag_1.PropertyTag.scormSource,
378
378
  single: true,
379
- format: PropertyFormat_1.PropertyFormat.trimmedString,
379
+ format: PropertyFormat_1.PropertyFormat.plainText,
380
380
  },
381
381
  [PropertyConfigKey_1.PropertyConfigKey.posterImage]: {
382
382
  tag: PropertyTag_1.PropertyTag.posterImage,
383
383
  single: true,
384
- format: PropertyFormat_1.PropertyFormat.trimmedString,
384
+ format: PropertyFormat_1.PropertyFormat.plainText,
385
385
  },
386
386
  [PropertyConfigKey_1.PropertyConfigKey.focusX]: {
387
387
  tag: PropertyTag_1.PropertyTag.focusX,
@@ -395,69 +395,73 @@ const PROPERTIES = {
395
395
  },
396
396
  [PropertyConfigKey_1.PropertyConfigKey.deeplink]: {
397
397
  tag: PropertyTag_1.PropertyTag.deeplink,
398
- format: PropertyFormat_1.PropertyFormat.trimmedString,
398
+ format: PropertyFormat_1.PropertyFormat.plainText,
399
399
  },
400
400
  [PropertyConfigKey_1.PropertyConfigKey.externalLink]: {
401
401
  tag: PropertyTag_1.PropertyTag.externalLink,
402
402
  single: true,
403
- format: PropertyFormat_1.PropertyFormat.trimmedString,
403
+ format: PropertyFormat_1.PropertyFormat.plainText,
404
404
  },
405
405
  [PropertyConfigKey_1.PropertyConfigKey.externalLinkText]: {
406
406
  tag: PropertyTag_1.PropertyTag.externalLinkText,
407
407
  single: true,
408
- format: PropertyFormat_1.PropertyFormat.trimmedString,
408
+ format: PropertyFormat_1.PropertyFormat.plainText,
409
409
  },
410
410
  [PropertyConfigKey_1.PropertyConfigKey.videoCallLink]: {
411
411
  tag: PropertyTag_1.PropertyTag.videoCallLink,
412
412
  single: true,
413
- format: PropertyFormat_1.PropertyFormat.trimmedString,
413
+ format: PropertyFormat_1.PropertyFormat.plainText,
414
414
  },
415
415
  [PropertyConfigKey_1.PropertyConfigKey.vendorDashboardId]: {
416
416
  tag: PropertyTag_1.PropertyTag.vendorDashboardId,
417
417
  single: true,
418
- format: PropertyFormat_1.PropertyFormat.trimmedString,
418
+ format: PropertyFormat_1.PropertyFormat.plainText,
419
419
  },
420
420
  [PropertyConfigKey_1.PropertyConfigKey.vendorSurveyId]: {
421
421
  tag: PropertyTag_1.PropertyTag.vendorSurveyId,
422
422
  single: true,
423
- format: PropertyFormat_1.PropertyFormat.trimmedString,
423
+ format: PropertyFormat_1.PropertyFormat.plainText,
424
424
  },
425
425
  [PropertyConfigKey_1.PropertyConfigKey.vendorUrl]: {
426
426
  tag: PropertyTag_1.PropertyTag.vendorUrl,
427
427
  single: true,
428
- format: PropertyFormat_1.PropertyFormat.trimmedString,
428
+ format: PropertyFormat_1.PropertyFormat.plainText,
429
429
  },
430
430
  [PropertyConfigKey_1.PropertyConfigKey.search]: {
431
431
  tag: PropertyTag_1.PropertyTag.search,
432
432
  single: true,
433
- format: PropertyFormat_1.PropertyFormat.trimmedString,
433
+ format: PropertyFormat_1.PropertyFormat.plainText,
434
434
  },
435
435
  [PropertyConfigKey_1.PropertyConfigKey.bot]: {
436
436
  tag: PropertyTag_1.PropertyTag.bot,
437
- format: PropertyFormat_1.PropertyFormat.trimmedString,
437
+ format: PropertyFormat_1.PropertyFormat.plainText,
438
438
  },
439
439
  [PropertyConfigKey_1.PropertyConfigKey.duration]: {
440
440
  tag: PropertyTag_1.PropertyTag.duration,
441
441
  single: true,
442
- format: PropertyFormat_1.PropertyFormat.trimmedString,
442
+ format: PropertyFormat_1.PropertyFormat.plainText,
443
443
  },
444
444
  [PropertyConfigKey_1.PropertyConfigKey.property_reference]: {
445
445
  tag: PropertyTag_1.PropertyTag.tag_reference,
446
- format: PropertyFormat_1.PropertyFormat.trimmedString,
446
+ format: PropertyFormat_1.PropertyFormat.plainText,
447
447
  astKey: PropertyAstKey_1.PropertyAstKey.ast_referenceProperty,
448
448
  },
449
449
  [PropertyConfigKey_1.PropertyConfigKey.list]: {
450
450
  tag: PropertyTag_1.PropertyTag.list,
451
- format: PropertyFormat_1.PropertyFormat.trimmedString,
451
+ format: PropertyFormat_1.PropertyFormat.plainText,
452
452
  },
453
453
  [PropertyConfigKey_1.PropertyConfigKey.layer]: {
454
454
  tag: PropertyTag_1.PropertyTag.layer,
455
- format: PropertyFormat_1.PropertyFormat.trimmedString,
455
+ format: PropertyFormat_1.PropertyFormat.plainText,
456
+ },
457
+ [PropertyConfigKey_1.PropertyConfigKey.layerRole]: {
458
+ tag: PropertyTag_1.PropertyTag.layerRole,
459
+ format: PropertyFormat_1.PropertyFormat.plainText,
456
460
  },
457
461
  [PropertyConfigKey_1.PropertyConfigKey.textReference]: {
458
462
  tag: PropertyTag_1.PropertyTag.textReference,
459
463
  single: true,
460
- format: PropertyFormat_1.PropertyFormat.trimmedString,
464
+ format: PropertyFormat_1.PropertyFormat.plainText,
461
465
  },
462
466
  [PropertyConfigKey_1.PropertyConfigKey.isTracked]: {
463
467
  tag: PropertyTag_1.PropertyTag.isTracked,
@@ -472,27 +476,27 @@ const PROPERTIES = {
472
476
  [PropertyConfigKey_1.PropertyConfigKey.labelTrue]: {
473
477
  tag: PropertyTag_1.PropertyTag.labelTrue,
474
478
  single: true,
475
- format: PropertyFormat_1.PropertyFormat.trimmedString,
479
+ format: PropertyFormat_1.PropertyFormat.plainText,
476
480
  },
477
481
  [PropertyConfigKey_1.PropertyConfigKey.labelFalse]: {
478
482
  tag: PropertyTag_1.PropertyTag.labelFalse,
479
483
  single: true,
480
- format: PropertyFormat_1.PropertyFormat.trimmedString,
484
+ format: PropertyFormat_1.PropertyFormat.plainText,
481
485
  },
482
486
  [PropertyConfigKey_1.PropertyConfigKey.content2Buy]: {
483
487
  tag: PropertyTag_1.PropertyTag.content2Buy,
484
488
  single: true,
485
- format: PropertyFormat_1.PropertyFormat.trimmedString,
489
+ format: PropertyFormat_1.PropertyFormat.plainText,
486
490
  },
487
491
  [PropertyConfigKey_1.PropertyConfigKey.quotedPerson]: {
488
492
  tag: PropertyTag_1.PropertyTag.quotedPerson,
489
493
  single: true,
490
- format: PropertyFormat_1.PropertyFormat.trimmedString,
494
+ format: PropertyFormat_1.PropertyFormat.plainText,
491
495
  },
492
496
  [PropertyConfigKey_1.PropertyConfigKey.partialAnswer]: {
493
497
  tag: PropertyTag_1.PropertyTag.partialAnswer,
494
498
  single: true,
495
- format: PropertyFormat_1.PropertyFormat.trimmedString,
499
+ format: PropertyFormat_1.PropertyFormat.plainText,
496
500
  },
497
501
  [PropertyConfigKey_1.PropertyConfigKey.reasonableNumOfChars]: {
498
502
  tag: PropertyTag_1.PropertyTag.reasonableNumOfChars,
@@ -517,7 +521,7 @@ const PROPERTIES = {
517
521
  [PropertyConfigKey_1.PropertyConfigKey.technicalTerm]: {
518
522
  tag: PropertyTag_1.PropertyTag.technicalTerm,
519
523
  single: true,
520
- format: PropertyFormat_1.PropertyFormat.trimmedString,
524
+ format: PropertyFormat_1.PropertyFormat.plainText,
521
525
  },
522
526
  [PropertyConfigKey_1.PropertyConfigKey.servings]: {
523
527
  tag: PropertyTag_1.PropertyTag.servings,
@@ -527,12 +531,12 @@ const PROPERTIES = {
527
531
  [PropertyConfigKey_1.PropertyConfigKey.unit]: {
528
532
  tag: PropertyTag_1.PropertyTag.unit,
529
533
  single: true,
530
- format: PropertyFormat_1.PropertyFormat.trimmedString,
534
+ format: PropertyFormat_1.PropertyFormat.plainText,
531
535
  },
532
536
  [PropertyConfigKey_1.PropertyConfigKey.unitAbbr]: {
533
537
  tag: PropertyTag_1.PropertyTag.unitAbbr,
534
538
  single: true,
535
- format: PropertyFormat_1.PropertyFormat.trimmedString,
539
+ format: PropertyFormat_1.PropertyFormat.plainText,
536
540
  },
537
541
  [PropertyConfigKey_1.PropertyConfigKey.decimalPlaces]: {
538
542
  tag: PropertyTag_1.PropertyTag.decimalPlaces,
@@ -548,7 +552,7 @@ const PROPERTIES = {
548
552
  [PropertyConfigKey_1.PropertyConfigKey.example]: {
549
553
  tag: PropertyTag_1.PropertyTag.example,
550
554
  single: true,
551
- format: PropertyFormat_1.PropertyFormat.trimmedString,
555
+ format: PropertyFormat_1.PropertyFormat.plainText,
552
556
  },
553
557
  [PropertyConfigKey_1.PropertyConfigKey.toc]: {
554
558
  tag: PropertyTag_1.PropertyTag.toc,
@@ -559,39 +563,39 @@ const PROPERTIES = {
559
563
  [PropertyConfigKey_1.PropertyConfigKey.page]: {
560
564
  tag: PropertyTag_1.PropertyTag.page,
561
565
  single: true,
562
- format: PropertyFormat_1.PropertyFormat.trimmedString,
566
+ format: PropertyFormat_1.PropertyFormat.plainText,
563
567
  },
564
568
  [PropertyConfigKey_1.PropertyConfigKey.product]: {
565
569
  tag: PropertyTag_1.PropertyTag.product,
566
570
  single: true,
567
- format: PropertyFormat_1.PropertyFormat.trimmedString,
571
+ format: PropertyFormat_1.PropertyFormat.plainText,
568
572
  },
569
573
  [PropertyConfigKey_1.PropertyConfigKey.productId]: {
570
574
  tag: PropertyTag_1.PropertyTag.productId,
571
575
  single: false, // and true
572
- format: PropertyFormat_1.PropertyFormat.trimmedString,
576
+ format: PropertyFormat_1.PropertyFormat.plainText,
573
577
  },
574
578
  [PropertyConfigKey_1.PropertyConfigKey.productList]: {
575
579
  tag: PropertyTag_1.PropertyTag.product,
576
580
  single: false,
577
- format: PropertyFormat_1.PropertyFormat.trimmedString,
581
+ format: PropertyFormat_1.PropertyFormat.plainText,
578
582
  astKey: PropertyAstKey_1.PropertyAstKey.ast_productList,
579
583
  },
580
584
  [PropertyConfigKey_1.PropertyConfigKey.productVideo]: {
581
585
  tag: PropertyTag_1.PropertyTag.productVideo,
582
586
  single: true,
583
- format: PropertyFormat_1.PropertyFormat.trimmedString,
587
+ format: PropertyFormat_1.PropertyFormat.plainText,
584
588
  },
585
589
  [PropertyConfigKey_1.PropertyConfigKey.productVideoList]: {
586
590
  tag: PropertyTag_1.PropertyTag.productVideo,
587
591
  single: false,
588
- format: PropertyFormat_1.PropertyFormat.trimmedString,
592
+ format: PropertyFormat_1.PropertyFormat.plainText,
589
593
  astKey: PropertyAstKey_1.PropertyAstKey.ast_productVideoList,
590
594
  },
591
595
  [PropertyConfigKey_1.PropertyConfigKey.productFolder]: {
592
596
  tag: PropertyTag_1.PropertyTag.productFolder,
593
597
  single: true,
594
- format: PropertyFormat_1.PropertyFormat.trimmedString,
598
+ format: PropertyFormat_1.PropertyFormat.plainText,
595
599
  },
596
600
  [PropertyConfigKey_1.PropertyConfigKey.progress]: {
597
601
  tag: PropertyTag_1.PropertyTag.progress,
@@ -602,46 +606,46 @@ const PROPERTIES = {
602
606
  [PropertyConfigKey_1.PropertyConfigKey.book]: {
603
607
  tag: PropertyTag_1.PropertyTag.book,
604
608
  single: true,
605
- format: PropertyFormat_1.PropertyFormat.trimmedString,
609
+ format: PropertyFormat_1.PropertyFormat.plainText,
606
610
  },
607
611
  [PropertyConfigKey_1.PropertyConfigKey.person]: {
608
612
  tag: PropertyTag_1.PropertyTag.person,
609
613
  single: true,
610
- format: PropertyFormat_1.PropertyFormat.trimmedString,
614
+ format: PropertyFormat_1.PropertyFormat.plainText,
611
615
  },
612
616
  // Deprecated (replaced by person)
613
617
  [PropertyConfigKey_1.PropertyConfigKey.partner]: {
614
618
  tag: PropertyTag_1.PropertyTag.partner,
615
619
  single: true,
616
- format: PropertyFormat_1.PropertyFormat.trimmedString,
620
+ format: PropertyFormat_1.PropertyFormat.plainText,
617
621
  },
618
622
  [PropertyConfigKey_1.PropertyConfigKey.property_sampleSolution]: {
619
623
  tag: PropertyTag_1.PropertyTag.tag_sampleSolution,
620
624
  single: true,
621
- format: PropertyFormat_1.PropertyFormat.trimmedString,
625
+ format: PropertyFormat_1.PropertyFormat.plainText,
622
626
  },
623
627
  [PropertyConfigKey_1.PropertyConfigKey.additionalSolutions]: {
624
628
  tag: PropertyTag_1.PropertyTag.additionalSolutions,
625
- format: PropertyFormat_1.PropertyFormat.trimmedString,
629
+ format: PropertyFormat_1.PropertyFormat.plainText,
626
630
  },
627
631
  [PropertyConfigKey_1.PropertyConfigKey.markConfig]: {
628
632
  tag: PropertyTag_1.PropertyTag.tag_mark,
629
- format: PropertyFormat_1.PropertyFormat.trimmedString,
633
+ format: PropertyFormat_1.PropertyFormat.plainText,
630
634
  astKey: PropertyAstKey_1.PropertyAstKey.ast_markConfig,
631
635
  },
632
636
  [PropertyConfigKey_1.PropertyConfigKey.property_mark]: {
633
637
  tag: PropertyTag_1.PropertyTag.tag_mark,
634
- format: PropertyFormat_1.PropertyFormat.trimmedString,
638
+ format: PropertyFormat_1.PropertyFormat.plainText,
635
639
  },
636
640
  [PropertyConfigKey_1.PropertyConfigKey.color]: {
637
641
  tag: PropertyTag_1.PropertyTag.color,
638
642
  single: true,
639
- format: PropertyFormat_1.PropertyFormat.trimmedString,
643
+ format: PropertyFormat_1.PropertyFormat.plainText,
640
644
  },
641
645
  [PropertyConfigKey_1.PropertyConfigKey.emphasis]: {
642
646
  tag: PropertyTag_1.PropertyTag.emphasis,
643
647
  single: true,
644
- format: PropertyFormat_1.PropertyFormat.trimmedString,
648
+ format: PropertyFormat_1.PropertyFormat.plainText,
645
649
  },
646
650
  [PropertyConfigKey_1.PropertyConfigKey.isCaseSensitive]: {
647
651
  tag: PropertyTag_1.PropertyTag.isCaseSensitive,
@@ -651,17 +655,17 @@ const PROPERTIES = {
651
655
  [PropertyConfigKey_1.PropertyConfigKey.reaction]: {
652
656
  tag: PropertyTag_1.PropertyTag.reaction,
653
657
  single: true,
654
- format: PropertyFormat_1.PropertyFormat.trimmedString,
658
+ format: PropertyFormat_1.PropertyFormat.plainText,
655
659
  },
656
660
  [PropertyConfigKey_1.PropertyConfigKey.imageSource]: {
657
661
  tag: PropertyTag_1.PropertyTag.imageSource,
658
662
  single: true,
659
- format: PropertyFormat_1.PropertyFormat.trimmedString,
663
+ format: PropertyFormat_1.PropertyFormat.plainText,
660
664
  },
661
665
  [PropertyConfigKey_1.PropertyConfigKey.mockupId]: {
662
666
  tag: PropertyTag_1.PropertyTag.mockupId,
663
667
  single: true,
664
- format: PropertyFormat_1.PropertyFormat.trimmedString,
668
+ format: PropertyFormat_1.PropertyFormat.plainText,
665
669
  },
666
670
  [PropertyConfigKey_1.PropertyConfigKey.size]: {
667
671
  tag: PropertyTag_1.PropertyTag.size,
@@ -671,12 +675,12 @@ const PROPERTIES = {
671
675
  [PropertyConfigKey_1.PropertyConfigKey.format]: {
672
676
  tag: PropertyTag_1.PropertyTag.format,
673
677
  single: true,
674
- format: PropertyFormat_1.PropertyFormat.trimmedString,
678
+ format: PropertyFormat_1.PropertyFormat.plainText,
675
679
  },
676
680
  [PropertyConfigKey_1.PropertyConfigKey.property_title]: {
677
681
  tag: PropertyTag_1.PropertyTag.tag_title,
678
682
  single: true,
679
- format: PropertyFormat_1.PropertyFormat.trimmedString,
683
+ format: PropertyFormat_1.PropertyFormat.plainText,
680
684
  },
681
685
  [PropertyConfigKey_1.PropertyConfigKey.trim]: {
682
686
  tag: PropertyTag_1.PropertyTag.trim,
@@ -686,47 +690,47 @@ const PROPERTIES = {
686
690
  [PropertyConfigKey_1.PropertyConfigKey.width]: {
687
691
  tag: PropertyTag_1.PropertyTag.width,
688
692
  single: true,
689
- format: PropertyFormat_1.PropertyFormat.trimmedString,
693
+ format: PropertyFormat_1.PropertyFormat.plainText,
690
694
  },
691
695
  [PropertyConfigKey_1.PropertyConfigKey.height]: {
692
696
  tag: PropertyTag_1.PropertyTag.height,
693
697
  single: true,
694
- format: PropertyFormat_1.PropertyFormat.trimmedString,
698
+ format: PropertyFormat_1.PropertyFormat.plainText,
695
699
  },
696
700
  [PropertyConfigKey_1.PropertyConfigKey.license]: {
697
701
  tag: PropertyTag_1.PropertyTag.license,
698
702
  single: true,
699
- format: PropertyFormat_1.PropertyFormat.trimmedString,
703
+ format: PropertyFormat_1.PropertyFormat.plainText,
700
704
  },
701
705
  [PropertyConfigKey_1.PropertyConfigKey.copyright]: {
702
706
  tag: PropertyTag_1.PropertyTag.copyright,
703
707
  single: true,
704
- format: PropertyFormat_1.PropertyFormat.trimmedString,
708
+ format: PropertyFormat_1.PropertyFormat.plainText,
705
709
  },
706
710
  [PropertyConfigKey_1.PropertyConfigKey.mailingList]: {
707
711
  tag: PropertyTag_1.PropertyTag.mailingList,
708
712
  single: true,
709
- format: PropertyFormat_1.PropertyFormat.trimmedString,
713
+ format: PropertyFormat_1.PropertyFormat.plainText,
710
714
  },
711
715
  [PropertyConfigKey_1.PropertyConfigKey.buttonCaption]: {
712
716
  tag: PropertyTag_1.PropertyTag.buttonCaption,
713
717
  single: true,
714
- format: PropertyFormat_1.PropertyFormat.trimmedString,
718
+ format: PropertyFormat_1.PropertyFormat.plainText,
715
719
  },
716
720
  [PropertyConfigKey_1.PropertyConfigKey.callToActionUrl]: {
717
721
  tag: PropertyTag_1.PropertyTag.callToActionUrl,
718
722
  single: true,
719
- format: PropertyFormat_1.PropertyFormat.trimmedString,
723
+ format: PropertyFormat_1.PropertyFormat.plainText,
720
724
  },
721
725
  [PropertyConfigKey_1.PropertyConfigKey.feedbackType]: {
722
726
  tag: PropertyTag_1.PropertyTag.feedbackType,
723
727
  single: true,
724
- format: PropertyFormat_1.PropertyFormat.trimmedString,
728
+ format: PropertyFormat_1.PropertyFormat.plainText,
725
729
  },
726
730
  [PropertyConfigKey_1.PropertyConfigKey.caption]: {
727
731
  tag: PropertyTag_1.PropertyTag.caption,
728
732
  single: true,
729
- format: PropertyFormat_1.PropertyFormat.bitmarkMinusMinus,
733
+ format: PropertyFormat_1.PropertyFormat.bitmarkText,
730
734
  },
731
735
  [PropertyConfigKey_1.PropertyConfigKey.showInIndex]: {
732
736
  tag: PropertyTag_1.PropertyTag.showInIndex,
@@ -737,7 +741,7 @@ const PROPERTIES = {
737
741
  [PropertyConfigKey_1.PropertyConfigKey.alt]: {
738
742
  tag: PropertyTag_1.PropertyTag.alt,
739
743
  single: true,
740
- format: PropertyFormat_1.PropertyFormat.trimmedString,
744
+ format: PropertyFormat_1.PropertyFormat.plainText,
741
745
  },
742
746
  [PropertyConfigKey_1.PropertyConfigKey.zoomDisabled]: {
743
747
  tag: PropertyTag_1.PropertyTag.zoomDisabled,
@@ -747,22 +751,22 @@ const PROPERTIES = {
747
751
  [PropertyConfigKey_1.PropertyConfigKey.src1x]: {
748
752
  tag: PropertyTag_1.PropertyTag.src1x,
749
753
  single: true,
750
- format: PropertyFormat_1.PropertyFormat.trimmedString,
754
+ format: PropertyFormat_1.PropertyFormat.plainText,
751
755
  },
752
756
  [PropertyConfigKey_1.PropertyConfigKey.src2x]: {
753
757
  tag: PropertyTag_1.PropertyTag.src2x,
754
758
  single: true,
755
- format: PropertyFormat_1.PropertyFormat.trimmedString,
759
+ format: PropertyFormat_1.PropertyFormat.plainText,
756
760
  },
757
761
  [PropertyConfigKey_1.PropertyConfigKey.src3x]: {
758
762
  tag: PropertyTag_1.PropertyTag.src3x,
759
763
  single: true,
760
- format: PropertyFormat_1.PropertyFormat.trimmedString,
764
+ format: PropertyFormat_1.PropertyFormat.plainText,
761
765
  },
762
766
  [PropertyConfigKey_1.PropertyConfigKey.src4x]: {
763
767
  tag: PropertyTag_1.PropertyTag.src4x,
764
768
  single: true,
765
- format: PropertyFormat_1.PropertyFormat.trimmedString,
769
+ format: PropertyFormat_1.PropertyFormat.plainText,
766
770
  },
767
771
  [PropertyConfigKey_1.PropertyConfigKey.mute]: {
768
772
  tag: PropertyTag_1.PropertyTag.mute,
@@ -787,17 +791,17 @@ const PROPERTIES = {
787
791
  [PropertyConfigKey_1.PropertyConfigKey.siteName]: {
788
792
  tag: PropertyTag_1.PropertyTag.siteName,
789
793
  single: true,
790
- format: PropertyFormat_1.PropertyFormat.trimmedString,
794
+ format: PropertyFormat_1.PropertyFormat.plainText,
791
795
  },
792
796
  [PropertyConfigKey_1.PropertyConfigKey.pointerLeft]: {
793
797
  tag: PropertyTag_1.PropertyTag.pointerLeft,
794
798
  single: true,
795
- format: PropertyFormat_1.PropertyFormat.trimmedString,
799
+ format: PropertyFormat_1.PropertyFormat.plainText,
796
800
  },
797
801
  [PropertyConfigKey_1.PropertyConfigKey.pointerTop]: {
798
802
  tag: PropertyTag_1.PropertyTag.pointerTop,
799
803
  single: true,
800
- format: PropertyFormat_1.PropertyFormat.trimmedString,
804
+ format: PropertyFormat_1.PropertyFormat.plainText,
801
805
  },
802
806
  [PropertyConfigKey_1.PropertyConfigKey.listItemIndent]: {
803
807
  tag: PropertyTag_1.PropertyTag.listItemIndent,
@@ -808,7 +812,7 @@ const PROPERTIES = {
808
812
  [PropertyConfigKey_1.PropertyConfigKey.backgroundWallpaper]: {
809
813
  tag: PropertyTag_1.PropertyTag.backgroundWallpaper,
810
814
  single: true,
811
- format: PropertyFormat_1.PropertyFormat.trimmedString,
815
+ format: PropertyFormat_1.PropertyFormat.plainText,
812
816
  },
813
817
  [PropertyConfigKey_1.PropertyConfigKey.hasBookNavigation]: {
814
818
  tag: PropertyTag_1.PropertyTag.hasBookNavigation,
@@ -819,7 +823,7 @@ const PROPERTIES = {
819
823
  [PropertyConfigKey_1.PropertyConfigKey.blockId]: {
820
824
  tag: PropertyTag_1.PropertyTag.blockId,
821
825
  single: true,
822
- format: PropertyFormat_1.PropertyFormat.trimmedString,
826
+ format: PropertyFormat_1.PropertyFormat.plainText,
823
827
  },
824
828
  [PropertyConfigKey_1.PropertyConfigKey.pageNo]: {
825
829
  tag: PropertyTag_1.PropertyTag.pageNo,
@@ -844,17 +848,17 @@ const PROPERTIES = {
844
848
  [PropertyConfigKey_1.PropertyConfigKey.classification]: {
845
849
  tag: PropertyTag_1.PropertyTag.classification,
846
850
  single: true,
847
- format: PropertyFormat_1.PropertyFormat.trimmedString,
851
+ format: PropertyFormat_1.PropertyFormat.plainText,
848
852
  },
849
853
  [PropertyConfigKey_1.PropertyConfigKey.availableClassifications]: {
850
854
  tag: PropertyTag_1.PropertyTag.availableClassifications,
851
855
  single: false,
852
- format: PropertyFormat_1.PropertyFormat.trimmedString,
856
+ format: PropertyFormat_1.PropertyFormat.plainText,
853
857
  },
854
858
  [PropertyConfigKey_1.PropertyConfigKey.allowedBit]: {
855
859
  tag: PropertyTag_1.PropertyTag.allowedBit,
856
860
  single: false,
857
- format: PropertyFormat_1.PropertyFormat.trimmedString,
861
+ format: PropertyFormat_1.PropertyFormat.plainText,
858
862
  },
859
863
  [PropertyConfigKey_1.PropertyConfigKey.tableFixedHeader]: {
860
864
  tag: PropertyTag_1.PropertyTag.tableFixedHeader,
@@ -933,12 +937,12 @@ const PROPERTIES = {
933
937
  [PropertyConfigKey_1.PropertyConfigKey.stripePricingTableId]: {
934
938
  tag: PropertyTag_1.PropertyTag.stripePricingTableId,
935
939
  single: true,
936
- format: PropertyFormat_1.PropertyFormat.trimmedString,
940
+ format: PropertyFormat_1.PropertyFormat.plainText,
937
941
  },
938
942
  [PropertyConfigKey_1.PropertyConfigKey.stripePublishableKey]: {
939
943
  tag: PropertyTag_1.PropertyTag.stripePublishableKey,
940
944
  single: true,
941
- format: PropertyFormat_1.PropertyFormat.trimmedString,
945
+ format: PropertyFormat_1.PropertyFormat.plainText,
942
946
  },
943
947
  [PropertyConfigKey_1.PropertyConfigKey.ratingLevelStart]: {
944
948
  tag: PropertyTag_1.PropertyTag.ratingLevelStart,
@@ -958,7 +962,7 @@ const PROPERTIES = {
958
962
  [PropertyConfigKey_1.PropertyConfigKey.label]: {
959
963
  tag: PropertyTag_1.PropertyTag.label,
960
964
  single: true,
961
- format: PropertyFormat_1.PropertyFormat.bitmarkMinusMinus,
965
+ format: PropertyFormat_1.PropertyFormat.bitmarkText,
962
966
  },
963
967
  [PropertyConfigKey_1.PropertyConfigKey.imageFirst]: {
964
968
  tag: PropertyTag_1.PropertyTag.imageFirst,
@@ -969,7 +973,7 @@ const PROPERTIES = {
969
973
  [PropertyConfigKey_1.PropertyConfigKey.activityType]: {
970
974
  tag: PropertyTag_1.PropertyTag.activityType,
971
975
  single: true,
972
- format: PropertyFormat_1.PropertyFormat.trimmedString,
976
+ format: PropertyFormat_1.PropertyFormat.plainText,
973
977
  },
974
978
  [PropertyConfigKey_1.PropertyConfigKey.revealSolutions]: {
975
979
  tag: PropertyTag_1.PropertyTag.revealSolutions,