@gmb/bitmark-parser-generator 1.4.17 → 1.4.18

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