@gmb/bitmark-parser-generator 3.1.0 → 3.2.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.
- package/dist/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/cjs/ast/Builder.js +19 -10
- package/dist/cjs/ast/Builder.js.map +1 -1
- package/dist/cjs/ast/ResourceBuilder.js +3 -2
- package/dist/cjs/ast/ResourceBuilder.js.map +1 -1
- package/dist/cjs/config/raw/bits.js +163 -379
- package/dist/cjs/config/raw/bits.js.map +1 -1
- package/dist/cjs/config/raw/cardSets.js +31 -0
- package/dist/cjs/config/raw/cardSets.js.map +1 -1
- package/dist/cjs/config/raw/groups.js +6 -0
- package/dist/cjs/config/raw/groups.js.map +1 -1
- package/dist/cjs/config/raw/properties.js +13 -0
- package/dist/cjs/config/raw/properties.js.map +1 -1
- package/dist/cjs/generated/build-info.js +1 -1
- package/dist/cjs/generated/parser/text/text-peggy-parser.js +212 -198
- package/dist/cjs/generated/parser/text/text-peggy-parser.js.map +1 -1
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js +37 -1
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/cjs/generator/json/JsonGenerator.js +48 -22
- package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
- package/dist/cjs/generator/text/TextGenerator.js +55 -24
- package/dist/cjs/generator/text/TextGenerator.js.map +1 -1
- package/dist/cjs/model/ast/NodeType.js +6 -0
- package/dist/cjs/model/ast/NodeType.js.map +1 -1
- package/dist/cjs/model/config/enum/CardSetConfigKey.js +1 -0
- package/dist/cjs/model/config/enum/CardSetConfigKey.js.map +1 -1
- package/dist/cjs/model/config/enum/PropertyConfigKey.js +3 -0
- package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/cjs/model/enum/BitType.js +3 -0
- package/dist/cjs/model/enum/BitType.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +18 -4
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +1 -0
- package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +55 -6
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/cjs/parser/json/JsonParser.js +2 -2
- package/dist/cjs/parser/json/JsonParser.js.map +1 -1
- package/dist/esm/ast/Builder.js +19 -10
- package/dist/esm/ast/Builder.js.map +1 -1
- package/dist/esm/ast/ResourceBuilder.js +3 -2
- package/dist/esm/ast/ResourceBuilder.js.map +1 -1
- package/dist/esm/config/raw/bits.js +163 -379
- package/dist/esm/config/raw/bits.js.map +1 -1
- package/dist/esm/config/raw/cardSets.js +31 -0
- package/dist/esm/config/raw/cardSets.js.map +1 -1
- package/dist/esm/config/raw/groups.js +6 -0
- package/dist/esm/config/raw/groups.js.map +1 -1
- package/dist/esm/config/raw/properties.js +13 -0
- package/dist/esm/config/raw/properties.js.map +1 -1
- package/dist/esm/generated/build-info.js +1 -1
- package/dist/esm/generated/parser/text/text-peggy-parser.js +212 -198
- package/dist/esm/generated/parser/text/text-peggy-parser.js.map +1 -1
- package/dist/esm/generator/bitmark/BitmarkGenerator.js +37 -1
- package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/esm/generator/json/JsonGenerator.js +48 -22
- package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
- package/dist/esm/generator/text/TextGenerator.js +55 -24
- package/dist/esm/generator/text/TextGenerator.js.map +1 -1
- package/dist/esm/model/ast/NodeType.js +6 -0
- package/dist/esm/model/ast/NodeType.js.map +1 -1
- package/dist/esm/model/config/enum/CardSetConfigKey.js +1 -0
- package/dist/esm/model/config/enum/CardSetConfigKey.js.map +1 -1
- package/dist/esm/model/config/enum/PropertyConfigKey.js +3 -0
- package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/esm/model/enum/BitType.js +3 -0
- package/dist/esm/model/enum/BitType.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +18 -4
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +1 -0
- package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +55 -6
- package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/esm/parser/json/JsonParser.js +2 -2
- package/dist/esm/parser/json/JsonParser.js.map +1 -1
- package/dist/types/ast/Builder.d.ts +5 -2
- package/dist/types/ast/Builder.d.ts.map +1 -1
- package/dist/types/ast/ResourceBuilder.d.ts.map +1 -1
- package/dist/types/config/raw/bits.d.ts.map +1 -1
- package/dist/types/config/raw/cardSets.d.ts.map +1 -1
- package/dist/types/config/raw/groups.d.ts.map +1 -1
- package/dist/types/config/raw/properties.d.ts.map +1 -1
- package/dist/types/generated/parser/text/text-peggy-parser.d.ts.map +1 -1
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +5 -0
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
- package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
- package/dist/types/generator/text/TextGenerator.d.ts +17 -2
- package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
- package/dist/types/model/ast/NodeType.d.ts +12 -0
- package/dist/types/model/ast/NodeType.d.ts.map +1 -1
- package/dist/types/model/ast/Nodes.d.ts +5 -11
- package/dist/types/model/ast/Nodes.d.ts.map +1 -1
- package/dist/types/model/config/enum/CardSetConfigKey.d.ts +2 -0
- package/dist/types/model/config/enum/CardSetConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/ConfigKey.d.ts +6 -0
- package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts +9 -0
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
- package/dist/types/model/enum/BitType.d.ts +6 -0
- package/dist/types/model/enum/BitType.d.ts.map +1 -1
- package/dist/types/model/enum/PropertyTag.d.ts +6 -0
- package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
- package/dist/types/model/json/BitJson.d.ts +10 -0
- package/dist/types/model/json/BitJson.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -19,14 +19,20 @@ const BITS = {
|
|
|
19
19
|
since: '1.4.12',
|
|
20
20
|
tags: [],
|
|
21
21
|
},
|
|
22
|
-
[BitType_1.BitType.
|
|
23
|
-
since: '
|
|
24
|
-
quizBit: true,
|
|
22
|
+
[BitType_1.BitType._standard]: {
|
|
23
|
+
since: '3.2.0',
|
|
25
24
|
tags: [
|
|
26
25
|
{
|
|
27
26
|
type: BitTagType_1.BitTagType.group,
|
|
28
27
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
29
28
|
},
|
|
29
|
+
],
|
|
30
|
+
},
|
|
31
|
+
[BitType_1.BitType.appFlashcards]: {
|
|
32
|
+
since: '1.3.0',
|
|
33
|
+
baseBitType: BitType_1.BitType._standard,
|
|
34
|
+
quizBit: true,
|
|
35
|
+
tags: [
|
|
30
36
|
{
|
|
31
37
|
type: BitTagType_1.BitTagType.group,
|
|
32
38
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -47,11 +53,8 @@ const BITS = {
|
|
|
47
53
|
[BitType_1.BitType.appFlashcardsLearn]: { since: '1.3.0', baseBitType: BitType_1.BitType.appFlashcards },
|
|
48
54
|
[BitType_1.BitType.appLink]: {
|
|
49
55
|
since: '1.3.0',
|
|
56
|
+
baseBitType: BitType_1.BitType._standard,
|
|
50
57
|
tags: [
|
|
51
|
-
{
|
|
52
|
-
type: BitTagType_1.BitTagType.group,
|
|
53
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
54
|
-
},
|
|
55
58
|
{
|
|
56
59
|
type: BitTagType_1.BitTagType.group,
|
|
57
60
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -66,11 +69,8 @@ const BITS = {
|
|
|
66
69
|
},
|
|
67
70
|
[BitType_1.BitType.article]: {
|
|
68
71
|
since: '1.3.0',
|
|
72
|
+
baseBitType: BitType_1.BitType._standard,
|
|
69
73
|
tags: [
|
|
70
|
-
{
|
|
71
|
-
type: BitTagType_1.BitTagType.group,
|
|
72
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
73
|
-
},
|
|
74
74
|
{
|
|
75
75
|
type: BitTagType_1.BitTagType.tag,
|
|
76
76
|
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
@@ -126,11 +126,8 @@ const BITS = {
|
|
|
126
126
|
},
|
|
127
127
|
[BitType_1.BitType.callToAction]: {
|
|
128
128
|
since: '1.15.0',
|
|
129
|
+
baseBitType: BitType_1.BitType._standard,
|
|
129
130
|
tags: [
|
|
130
|
-
{
|
|
131
|
-
type: BitTagType_1.BitTagType.group,
|
|
132
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
133
|
-
},
|
|
134
131
|
{
|
|
135
132
|
type: BitTagType_1.BitTagType.property,
|
|
136
133
|
configKey: PropertyConfigKey_1.PropertyConfigKey.buttonCaption,
|
|
@@ -158,11 +155,8 @@ const BITS = {
|
|
|
158
155
|
[BitType_1.BitType.callToActionCreateAccount]: { since: '1.15.0', baseBitType: BitType_1.BitType.callToAction },
|
|
159
156
|
[BitType_1.BitType.appBitmarkFromJavascript]: {
|
|
160
157
|
since: '1.4.5',
|
|
158
|
+
baseBitType: BitType_1.BitType._standard,
|
|
161
159
|
tags: [
|
|
162
|
-
{
|
|
163
|
-
type: BitTagType_1.BitTagType.group,
|
|
164
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
165
|
-
},
|
|
166
160
|
{
|
|
167
161
|
type: BitTagType_1.BitTagType.property,
|
|
168
162
|
configKey: PropertyConfigKey_1.PropertyConfigKey.maxCreatedBits,
|
|
@@ -173,11 +167,8 @@ const BITS = {
|
|
|
173
167
|
[BitType_1.BitType.appBitmarkFromEditor]: { since: '1.4.5', baseBitType: BitType_1.BitType.appBitmarkFromJavascript },
|
|
174
168
|
[BitType_1.BitType.articleEmbed]: {
|
|
175
169
|
since: '1.3.0',
|
|
170
|
+
baseBitType: BitType_1.BitType._standard,
|
|
176
171
|
tags: [
|
|
177
|
-
{
|
|
178
|
-
type: BitTagType_1.BitTagType.group,
|
|
179
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
180
|
-
},
|
|
181
172
|
{
|
|
182
173
|
type: BitTagType_1.BitTagType.group,
|
|
183
174
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -192,11 +183,8 @@ const BITS = {
|
|
|
192
183
|
},
|
|
193
184
|
[BitType_1.BitType.articleLink]: {
|
|
194
185
|
since: '1.3.0',
|
|
186
|
+
baseBitType: BitType_1.BitType._standard,
|
|
195
187
|
tags: [
|
|
196
|
-
{
|
|
197
|
-
type: BitTagType_1.BitTagType.group,
|
|
198
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
199
|
-
},
|
|
200
188
|
{
|
|
201
189
|
type: BitTagType_1.BitTagType.group,
|
|
202
190
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -211,11 +199,8 @@ const BITS = {
|
|
|
211
199
|
},
|
|
212
200
|
[BitType_1.BitType.audio]: {
|
|
213
201
|
since: '1.3.0',
|
|
202
|
+
baseBitType: BitType_1.BitType._standard,
|
|
214
203
|
tags: [
|
|
215
|
-
{
|
|
216
|
-
type: BitTagType_1.BitTagType.group,
|
|
217
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
218
|
-
},
|
|
219
204
|
{
|
|
220
205
|
type: BitTagType_1.BitTagType.group,
|
|
221
206
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -230,11 +215,8 @@ const BITS = {
|
|
|
230
215
|
},
|
|
231
216
|
[BitType_1.BitType.audioEmbed]: {
|
|
232
217
|
since: '1.3.0',
|
|
218
|
+
baseBitType: BitType_1.BitType._standard,
|
|
233
219
|
tags: [
|
|
234
|
-
{
|
|
235
|
-
type: BitTagType_1.BitTagType.group,
|
|
236
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
237
|
-
},
|
|
238
220
|
{
|
|
239
221
|
type: BitTagType_1.BitTagType.group,
|
|
240
222
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -249,11 +231,8 @@ const BITS = {
|
|
|
249
231
|
},
|
|
250
232
|
[BitType_1.BitType.audioLink]: {
|
|
251
233
|
since: '1.3.0',
|
|
234
|
+
baseBitType: BitType_1.BitType._standard,
|
|
252
235
|
tags: [
|
|
253
|
-
{
|
|
254
|
-
type: BitTagType_1.BitTagType.group,
|
|
255
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
256
|
-
},
|
|
257
236
|
{
|
|
258
237
|
type: BitTagType_1.BitTagType.group,
|
|
259
238
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -268,11 +247,8 @@ const BITS = {
|
|
|
268
247
|
},
|
|
269
248
|
[BitType_1.BitType.bitAlias]: {
|
|
270
249
|
since: '1.3.0',
|
|
250
|
+
baseBitType: BitType_1.BitType._standard,
|
|
271
251
|
tags: [
|
|
272
|
-
{
|
|
273
|
-
type: BitTagType_1.BitTagType.group,
|
|
274
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
275
|
-
},
|
|
276
252
|
{
|
|
277
253
|
type: BitTagType_1.BitTagType.tag,
|
|
278
254
|
configKey: TagConfigKey_1.TagConfigKey.tag_reference,
|
|
@@ -285,11 +261,8 @@ const BITS = {
|
|
|
285
261
|
},
|
|
286
262
|
[BitType_1.BitType.book]: {
|
|
287
263
|
since: '1.3.0',
|
|
264
|
+
baseBitType: BitType_1.BitType._standard,
|
|
288
265
|
tags: [
|
|
289
|
-
{
|
|
290
|
-
type: BitTagType_1.BitTagType.group,
|
|
291
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
292
|
-
},
|
|
293
266
|
{
|
|
294
267
|
type: BitTagType_1.BitTagType.group,
|
|
295
268
|
configKey: GroupConfigKey_1.GroupConfigKey.group_bookCommon,
|
|
@@ -322,7 +295,12 @@ const BITS = {
|
|
|
322
295
|
[BitType_1.BitType.bookPreface]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
323
296
|
[BitType_1.BitType.bookPrologue]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
324
297
|
[BitType_1.BitType.bookReadMore]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
325
|
-
[BitType_1.BitType.bookReferenceList]: {
|
|
298
|
+
[BitType_1.BitType.bookReferenceList]: {
|
|
299
|
+
//
|
|
300
|
+
since: '3.2.0',
|
|
301
|
+
baseBitType: BitType_1.BitType._standard,
|
|
302
|
+
cardSet: CardSetConfigKey_1.CardSetConfigKey._bookReferenceList,
|
|
303
|
+
},
|
|
326
304
|
[BitType_1.BitType.bookRequestForABookReview]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
327
305
|
[BitType_1.BitType.bookSummary]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
328
306
|
[BitType_1.BitType.bookTeaser]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
@@ -370,21 +348,14 @@ const BITS = {
|
|
|
370
348
|
},
|
|
371
349
|
[BitType_1.BitType.botActionResponse]: {
|
|
372
350
|
since: '1.3.0',
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
type: BitTagType_1.BitTagType.group,
|
|
376
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
377
|
-
},
|
|
378
|
-
],
|
|
351
|
+
baseBitType: BitType_1.BitType._standard,
|
|
352
|
+
tags: [],
|
|
379
353
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._botActionResponses,
|
|
380
354
|
},
|
|
381
355
|
[BitType_1.BitType.botActionSend]: {
|
|
382
356
|
since: '1.3.0',
|
|
357
|
+
baseBitType: BitType_1.BitType._standard,
|
|
383
358
|
tags: [
|
|
384
|
-
{
|
|
385
|
-
type: BitTagType_1.BitTagType.group,
|
|
386
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
387
|
-
},
|
|
388
359
|
{
|
|
389
360
|
type: BitTagType_1.BitTagType.property,
|
|
390
361
|
configKey: PropertyConfigKey_1.PropertyConfigKey.date,
|
|
@@ -407,12 +378,9 @@ const BITS = {
|
|
|
407
378
|
},
|
|
408
379
|
[BitType_1.BitType.card1]: {
|
|
409
380
|
since: '1.3.0',
|
|
381
|
+
baseBitType: BitType_1.BitType._standard,
|
|
410
382
|
quizBit: true,
|
|
411
383
|
tags: [
|
|
412
|
-
{
|
|
413
|
-
type: BitTagType_1.BitTagType.group,
|
|
414
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
415
|
-
},
|
|
416
384
|
{
|
|
417
385
|
type: BitTagType_1.BitTagType.group,
|
|
418
386
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -424,11 +392,8 @@ const BITS = {
|
|
|
424
392
|
[BitType_1.BitType.surveyAnonymous1]: { since: '1.3.0', baseBitType: BitType_1.BitType.card1 },
|
|
425
393
|
[BitType_1.BitType.chapter]: {
|
|
426
394
|
since: '1.3.0',
|
|
395
|
+
baseBitType: BitType_1.BitType._standard,
|
|
427
396
|
tags: [
|
|
428
|
-
{
|
|
429
|
-
type: BitTagType_1.BitTagType.group,
|
|
430
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
431
|
-
},
|
|
432
397
|
{
|
|
433
398
|
type: BitTagType_1.BitTagType.tag,
|
|
434
399
|
configKey: TagConfigKey_1.TagConfigKey.anchor,
|
|
@@ -449,12 +414,9 @@ const BITS = {
|
|
|
449
414
|
},
|
|
450
415
|
[BitType_1.BitType.clozeAndMultipleChoiceText]: {
|
|
451
416
|
since: '1.3.0',
|
|
417
|
+
baseBitType: BitType_1.BitType._standard,
|
|
452
418
|
quizBit: true,
|
|
453
419
|
tags: [
|
|
454
|
-
{
|
|
455
|
-
type: BitTagType_1.BitTagType.group,
|
|
456
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
457
|
-
},
|
|
458
420
|
{
|
|
459
421
|
type: BitTagType_1.BitTagType.group,
|
|
460
422
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -475,12 +437,9 @@ const BITS = {
|
|
|
475
437
|
},
|
|
476
438
|
[BitType_1.BitType.cloze]: {
|
|
477
439
|
since: '1.3.0',
|
|
440
|
+
baseBitType: BitType_1.BitType._standard,
|
|
478
441
|
quizBit: true,
|
|
479
442
|
tags: [
|
|
480
|
-
{
|
|
481
|
-
type: BitTagType_1.BitTagType.group,
|
|
482
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
483
|
-
},
|
|
484
443
|
{
|
|
485
444
|
type: BitTagType_1.BitTagType.group,
|
|
486
445
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -520,12 +479,9 @@ const BITS = {
|
|
|
520
479
|
[BitType_1.BitType.coachCallToActionCloze]: { since: '1.3.0', baseBitType: BitType_1.BitType.cloze },
|
|
521
480
|
[BitType_1.BitType.clozeList]: {
|
|
522
481
|
since: '1.4.13',
|
|
482
|
+
baseBitType: BitType_1.BitType._standard,
|
|
523
483
|
quizBit: true,
|
|
524
484
|
tags: [
|
|
525
|
-
{
|
|
526
|
-
type: BitTagType_1.BitTagType.group,
|
|
527
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
528
|
-
},
|
|
529
485
|
{
|
|
530
486
|
type: BitTagType_1.BitTagType.group,
|
|
531
487
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -535,11 +491,8 @@ const BITS = {
|
|
|
535
491
|
},
|
|
536
492
|
[BitType_1.BitType.code]: {
|
|
537
493
|
since: '1.3.0',
|
|
494
|
+
baseBitType: BitType_1.BitType._standard,
|
|
538
495
|
tags: [
|
|
539
|
-
{
|
|
540
|
-
type: BitTagType_1.BitTagType.group,
|
|
541
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
542
|
-
},
|
|
543
496
|
{
|
|
544
497
|
type: BitTagType_1.BitTagType.property,
|
|
545
498
|
configKey: PropertyConfigKey_1.PropertyConfigKey.computerLanguage,
|
|
@@ -557,12 +510,8 @@ const BITS = {
|
|
|
557
510
|
},
|
|
558
511
|
[BitType_1.BitType.formula]: {
|
|
559
512
|
since: '1.35.0',
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
type: BitTagType_1.BitTagType.group,
|
|
563
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
564
|
-
},
|
|
565
|
-
],
|
|
513
|
+
baseBitType: BitType_1.BitType._standard,
|
|
514
|
+
tags: [],
|
|
566
515
|
textFormatDefault: TextFormat_1.TextFormat.latex,
|
|
567
516
|
},
|
|
568
517
|
[BitType_1.BitType.appCodeCell]: { since: '1.4.3', baseBitType: BitType_1.BitType.code },
|
|
@@ -595,11 +544,8 @@ const BITS = {
|
|
|
595
544
|
[BitType_1.BitType.milestone]: { since: '1.20.0', baseBitType: BitType_1.BitType.step },
|
|
596
545
|
[BitType_1.BitType.conversationLeft1]: {
|
|
597
546
|
since: '1.3.0',
|
|
547
|
+
baseBitType: BitType_1.BitType._standard,
|
|
598
548
|
tags: [
|
|
599
|
-
{
|
|
600
|
-
type: BitTagType_1.BitTagType.group,
|
|
601
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
602
|
-
},
|
|
603
549
|
{
|
|
604
550
|
type: BitTagType_1.BitTagType.group,
|
|
605
551
|
configKey: GroupConfigKey_1.GroupConfigKey.group_person,
|
|
@@ -615,11 +561,8 @@ const BITS = {
|
|
|
615
561
|
[BitType_1.BitType.cookStep]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
616
562
|
[BitType_1.BitType.cookIngredients]: {
|
|
617
563
|
since: '1.5.16',
|
|
564
|
+
baseBitType: BitType_1.BitType._standard,
|
|
618
565
|
tags: [
|
|
619
|
-
{
|
|
620
|
-
type: BitTagType_1.BitTagType.group,
|
|
621
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
622
|
-
},
|
|
623
566
|
{
|
|
624
567
|
type: BitTagType_1.BitTagType.group,
|
|
625
568
|
configKey: GroupConfigKey_1.GroupConfigKey.group_technicalTerm,
|
|
@@ -667,11 +610,8 @@ const BITS = {
|
|
|
667
610
|
[BitType_1.BitType.cookTimer]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
668
611
|
[BitType_1.BitType.document]: {
|
|
669
612
|
since: '1.3.0',
|
|
613
|
+
baseBitType: BitType_1.BitType._standard,
|
|
670
614
|
tags: [
|
|
671
|
-
{
|
|
672
|
-
type: BitTagType_1.BitTagType.group,
|
|
673
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
674
|
-
},
|
|
675
615
|
{
|
|
676
616
|
type: BitTagType_1.BitTagType.group,
|
|
677
617
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -686,11 +626,8 @@ const BITS = {
|
|
|
686
626
|
},
|
|
687
627
|
[BitType_1.BitType.documentDownload]: {
|
|
688
628
|
since: '1.3.0',
|
|
629
|
+
baseBitType: BitType_1.BitType._standard,
|
|
689
630
|
tags: [
|
|
690
|
-
{
|
|
691
|
-
type: BitTagType_1.BitTagType.group,
|
|
692
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
693
|
-
},
|
|
694
631
|
{
|
|
695
632
|
type: BitTagType_1.BitTagType.group,
|
|
696
633
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -705,11 +642,8 @@ const BITS = {
|
|
|
705
642
|
},
|
|
706
643
|
[BitType_1.BitType.documentEmbed]: {
|
|
707
644
|
since: '1.3.0',
|
|
645
|
+
baseBitType: BitType_1.BitType._standard,
|
|
708
646
|
tags: [
|
|
709
|
-
{
|
|
710
|
-
type: BitTagType_1.BitTagType.group,
|
|
711
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
712
|
-
},
|
|
713
647
|
{
|
|
714
648
|
type: BitTagType_1.BitTagType.group,
|
|
715
649
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -724,11 +658,8 @@ const BITS = {
|
|
|
724
658
|
},
|
|
725
659
|
[BitType_1.BitType.documentLink]: {
|
|
726
660
|
since: '1.3.0',
|
|
661
|
+
baseBitType: BitType_1.BitType._standard,
|
|
727
662
|
tags: [
|
|
728
|
-
{
|
|
729
|
-
type: BitTagType_1.BitTagType.group,
|
|
730
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
731
|
-
},
|
|
732
663
|
{
|
|
733
664
|
type: BitTagType_1.BitTagType.group,
|
|
734
665
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -743,12 +674,9 @@ const BITS = {
|
|
|
743
674
|
},
|
|
744
675
|
[BitType_1.BitType.essay]: {
|
|
745
676
|
since: '1.3.0',
|
|
677
|
+
baseBitType: BitType_1.BitType._standard,
|
|
746
678
|
quizBit: true,
|
|
747
679
|
tags: [
|
|
748
|
-
{
|
|
749
|
-
type: BitTagType_1.BitTagType.group,
|
|
750
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
751
|
-
},
|
|
752
680
|
{
|
|
753
681
|
type: BitTagType_1.BitTagType.group,
|
|
754
682
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -782,11 +710,8 @@ const BITS = {
|
|
|
782
710
|
[BitType_1.BitType.coachCallToActionEssay]: { since: '1.3.0', baseBitType: BitType_1.BitType.essay },
|
|
783
711
|
[BitType_1.BitType.example]: {
|
|
784
712
|
since: '1.3.0',
|
|
713
|
+
baseBitType: BitType_1.BitType._standard,
|
|
785
714
|
tags: [
|
|
786
|
-
{
|
|
787
|
-
type: BitTagType_1.BitTagType.group,
|
|
788
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
789
|
-
},
|
|
790
715
|
{
|
|
791
716
|
type: BitTagType_1.BitTagType.tag,
|
|
792
717
|
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
@@ -994,21 +919,14 @@ const BITS = {
|
|
|
994
919
|
[BitType_1.BitType.extractorPageWithBlocksCollapsible]: { since: '1.30.0', baseBitType: BitType_1.BitType.extractorPageWithBlocks },
|
|
995
920
|
[BitType_1.BitType.extractorConfiguration]: {
|
|
996
921
|
since: '1.7.1',
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
type: BitTagType_1.BitTagType.group,
|
|
1000
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1001
|
-
},
|
|
1002
|
-
],
|
|
922
|
+
baseBitType: BitType_1.BitType._standard,
|
|
923
|
+
tags: [],
|
|
1003
924
|
textFormatDefault: TextFormat_1.TextFormat.text,
|
|
1004
925
|
},
|
|
1005
926
|
[BitType_1.BitType.extractorBlock]: {
|
|
1006
927
|
since: '1.5.16',
|
|
928
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1007
929
|
tags: [
|
|
1008
|
-
{
|
|
1009
|
-
type: BitTagType_1.BitTagType.group,
|
|
1010
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1011
|
-
},
|
|
1012
930
|
{
|
|
1013
931
|
type: BitTagType_1.BitTagType.property,
|
|
1014
932
|
configKey: PropertyConfigKey_1.PropertyConfigKey.blockId,
|
|
@@ -1145,22 +1063,15 @@ const BITS = {
|
|
|
1145
1063
|
},
|
|
1146
1064
|
[BitType_1.BitType.definitionList]: {
|
|
1147
1065
|
since: '1.34.0',
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
type: BitTagType_1.BitTagType.group,
|
|
1151
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1152
|
-
},
|
|
1153
|
-
],
|
|
1066
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1067
|
+
tags: [],
|
|
1154
1068
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._flashcardLike,
|
|
1155
1069
|
},
|
|
1156
1070
|
[BitType_1.BitType.flashcard]: {
|
|
1157
1071
|
since: '1.3.0',
|
|
1072
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1158
1073
|
quizBit: true,
|
|
1159
1074
|
tags: [
|
|
1160
|
-
{
|
|
1161
|
-
type: BitTagType_1.BitTagType.group,
|
|
1162
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1163
|
-
},
|
|
1164
1075
|
{
|
|
1165
1076
|
type: BitTagType_1.BitTagType.group,
|
|
1166
1077
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1185,12 +1096,9 @@ const BITS = {
|
|
|
1185
1096
|
},
|
|
1186
1097
|
[BitType_1.BitType.highlightText]: {
|
|
1187
1098
|
since: '1.3.0',
|
|
1099
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1188
1100
|
quizBit: true,
|
|
1189
1101
|
tags: [
|
|
1190
|
-
{
|
|
1191
|
-
type: BitTagType_1.BitTagType.group,
|
|
1192
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1193
|
-
},
|
|
1194
1102
|
{
|
|
1195
1103
|
type: BitTagType_1.BitTagType.group,
|
|
1196
1104
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1203,11 +1111,8 @@ const BITS = {
|
|
|
1203
1111
|
},
|
|
1204
1112
|
[BitType_1.BitType.image]: {
|
|
1205
1113
|
since: '1.3.0',
|
|
1114
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1206
1115
|
tags: [
|
|
1207
|
-
{
|
|
1208
|
-
type: BitTagType_1.BitTagType.group,
|
|
1209
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1210
|
-
},
|
|
1211
1116
|
{
|
|
1212
1117
|
type: BitTagType_1.BitTagType.property,
|
|
1213
1118
|
configKey: PropertyConfigKey_1.PropertyConfigKey.backgroundWallpaper,
|
|
@@ -1324,11 +1229,8 @@ const BITS = {
|
|
|
1324
1229
|
},
|
|
1325
1230
|
[BitType_1.BitType.imageLink]: {
|
|
1326
1231
|
since: '1.3.0',
|
|
1232
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1327
1233
|
tags: [
|
|
1328
|
-
{
|
|
1329
|
-
type: BitTagType_1.BitTagType.group,
|
|
1330
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1331
|
-
},
|
|
1332
1234
|
{
|
|
1333
1235
|
type: BitTagType_1.BitTagType.group,
|
|
1334
1236
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -1343,11 +1245,8 @@ const BITS = {
|
|
|
1343
1245
|
},
|
|
1344
1246
|
[BitType_1.BitType.imageOnDevice]: {
|
|
1345
1247
|
since: '1.3.0',
|
|
1248
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1346
1249
|
tags: [
|
|
1347
|
-
{
|
|
1348
|
-
type: BitTagType_1.BitTagType.group,
|
|
1349
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1350
|
-
},
|
|
1351
1250
|
{
|
|
1352
1251
|
type: BitTagType_1.BitTagType.group,
|
|
1353
1252
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -1365,11 +1264,8 @@ const BITS = {
|
|
|
1365
1264
|
},
|
|
1366
1265
|
[BitType_1.BitType.imageResponsive]: {
|
|
1367
1266
|
since: '1.3.0',
|
|
1267
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1368
1268
|
tags: [
|
|
1369
|
-
{
|
|
1370
|
-
type: BitTagType_1.BitTagType.group,
|
|
1371
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1372
|
-
},
|
|
1373
1269
|
{
|
|
1374
1270
|
type: BitTagType_1.BitTagType.group,
|
|
1375
1271
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -1384,11 +1280,8 @@ const BITS = {
|
|
|
1384
1280
|
},
|
|
1385
1281
|
[BitType_1.BitType.imagesLogoGrave]: {
|
|
1386
1282
|
since: '1.5.11',
|
|
1283
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1387
1284
|
tags: [
|
|
1388
|
-
{
|
|
1389
|
-
type: BitTagType_1.BitTagType.group,
|
|
1390
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1391
|
-
},
|
|
1392
1285
|
{
|
|
1393
1286
|
type: BitTagType_1.BitTagType.group,
|
|
1394
1287
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -1409,11 +1302,8 @@ const BITS = {
|
|
|
1409
1302
|
},
|
|
1410
1303
|
[BitType_1.BitType.internalLink]: {
|
|
1411
1304
|
since: '1.3.0',
|
|
1305
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1412
1306
|
tags: [
|
|
1413
|
-
{
|
|
1414
|
-
type: BitTagType_1.BitTagType.group,
|
|
1415
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1416
|
-
},
|
|
1417
1307
|
{
|
|
1418
1308
|
type: BitTagType_1.BitTagType.tag,
|
|
1419
1309
|
configKey: TagConfigKey_1.TagConfigKey.tag_reference,
|
|
@@ -1422,12 +1312,9 @@ const BITS = {
|
|
|
1422
1312
|
},
|
|
1423
1313
|
[BitType_1.BitType.interview]: {
|
|
1424
1314
|
since: '1.3.0',
|
|
1315
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1425
1316
|
quizBit: true,
|
|
1426
1317
|
tags: [
|
|
1427
|
-
{
|
|
1428
|
-
type: BitTagType_1.BitTagType.group,
|
|
1429
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1430
|
-
},
|
|
1431
1318
|
{
|
|
1432
1319
|
type: BitTagType_1.BitTagType.group,
|
|
1433
1320
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1443,11 +1330,8 @@ const BITS = {
|
|
|
1443
1330
|
[BitType_1.BitType.botInterview]: { since: '1.3.0', baseBitType: BitType_1.BitType.interview },
|
|
1444
1331
|
[BitType_1.BitType.learningPathBook]: {
|
|
1445
1332
|
since: '1.3.0',
|
|
1333
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1446
1334
|
tags: [
|
|
1447
|
-
{
|
|
1448
|
-
type: BitTagType_1.BitTagType.group,
|
|
1449
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1450
|
-
},
|
|
1451
1335
|
{
|
|
1452
1336
|
type: BitTagType_1.BitTagType.group,
|
|
1453
1337
|
configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
|
|
@@ -1640,12 +1524,9 @@ const BITS = {
|
|
|
1640
1524
|
[BitType_1.BitType.smartStandardListItemCollapsible]: { since: '1.28.0', baseBitType: BitType_1.BitType.smartStandardListItem },
|
|
1641
1525
|
[BitType_1.BitType.mark]: {
|
|
1642
1526
|
since: '1.3.0',
|
|
1527
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1643
1528
|
quizBit: true,
|
|
1644
1529
|
tags: [
|
|
1645
|
-
{
|
|
1646
|
-
type: BitTagType_1.BitTagType.group,
|
|
1647
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1648
|
-
},
|
|
1649
1530
|
{
|
|
1650
1531
|
type: BitTagType_1.BitTagType.group,
|
|
1651
1532
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1662,12 +1543,9 @@ const BITS = {
|
|
|
1662
1543
|
},
|
|
1663
1544
|
[BitType_1.BitType.match]: {
|
|
1664
1545
|
since: '1.3.0',
|
|
1546
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1665
1547
|
quizBit: true,
|
|
1666
1548
|
tags: [
|
|
1667
|
-
{
|
|
1668
|
-
type: BitTagType_1.BitTagType.group,
|
|
1669
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1670
|
-
},
|
|
1671
1549
|
{
|
|
1672
1550
|
type: BitTagType_1.BitTagType.group,
|
|
1673
1551
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1700,12 +1578,9 @@ const BITS = {
|
|
|
1700
1578
|
},
|
|
1701
1579
|
[BitType_1.BitType.multipleChoice1]: {
|
|
1702
1580
|
since: '1.3.0',
|
|
1581
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1703
1582
|
quizBit: true,
|
|
1704
1583
|
tags: [
|
|
1705
|
-
{
|
|
1706
|
-
type: BitTagType_1.BitTagType.group,
|
|
1707
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1708
|
-
},
|
|
1709
1584
|
{
|
|
1710
1585
|
type: BitTagType_1.BitTagType.group,
|
|
1711
1586
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1719,12 +1594,9 @@ const BITS = {
|
|
|
1719
1594
|
[BitType_1.BitType.coachSelfReflectionMultipleChoice1]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleChoice1 },
|
|
1720
1595
|
[BitType_1.BitType.multipleChoice]: {
|
|
1721
1596
|
since: '1.3.0',
|
|
1597
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1722
1598
|
quizBit: true,
|
|
1723
1599
|
tags: [
|
|
1724
|
-
{
|
|
1725
|
-
type: BitTagType_1.BitTagType.group,
|
|
1726
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1727
|
-
},
|
|
1728
1600
|
{
|
|
1729
1601
|
type: BitTagType_1.BitTagType.group,
|
|
1730
1602
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1739,12 +1611,9 @@ const BITS = {
|
|
|
1739
1611
|
[BitType_1.BitType.coachSelfReflectionMultipleChoice]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleChoice },
|
|
1740
1612
|
[BitType_1.BitType.multipleChoiceText]: {
|
|
1741
1613
|
since: '1.3.0',
|
|
1614
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1742
1615
|
quizBit: true,
|
|
1743
1616
|
tags: [
|
|
1744
|
-
{
|
|
1745
|
-
type: BitTagType_1.BitTagType.group,
|
|
1746
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1747
|
-
},
|
|
1748
1617
|
{
|
|
1749
1618
|
type: BitTagType_1.BitTagType.group,
|
|
1750
1619
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1759,12 +1628,9 @@ const BITS = {
|
|
|
1759
1628
|
[BitType_1.BitType.coachSelfReflectionMultipleChoiceText]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleChoiceText },
|
|
1760
1629
|
[BitType_1.BitType.multipleResponse1]: {
|
|
1761
1630
|
since: '1.3.0',
|
|
1631
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1762
1632
|
quizBit: true,
|
|
1763
1633
|
tags: [
|
|
1764
|
-
{
|
|
1765
|
-
type: BitTagType_1.BitTagType.group,
|
|
1766
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1767
|
-
},
|
|
1768
1634
|
{
|
|
1769
1635
|
type: BitTagType_1.BitTagType.group,
|
|
1770
1636
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1778,12 +1644,9 @@ const BITS = {
|
|
|
1778
1644
|
[BitType_1.BitType.coachSelfReflectionMultipleResponse1]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleResponse1 },
|
|
1779
1645
|
[BitType_1.BitType.multipleResponse]: {
|
|
1780
1646
|
since: '1.3.0',
|
|
1647
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1781
1648
|
quizBit: true,
|
|
1782
1649
|
tags: [
|
|
1783
|
-
{
|
|
1784
|
-
type: BitTagType_1.BitTagType.group,
|
|
1785
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1786
|
-
},
|
|
1787
1650
|
{
|
|
1788
1651
|
type: BitTagType_1.BitTagType.group,
|
|
1789
1652
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -1798,11 +1661,8 @@ const BITS = {
|
|
|
1798
1661
|
[BitType_1.BitType.coachSelfReflectionMultipleResponse]: { since: '1.3.0', baseBitType: BitType_1.BitType.multipleResponse },
|
|
1799
1662
|
[BitType_1.BitType.page]: {
|
|
1800
1663
|
since: '1.3.0',
|
|
1664
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1801
1665
|
tags: [
|
|
1802
|
-
{
|
|
1803
|
-
type: BitTagType_1.BitTagType.group,
|
|
1804
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1805
|
-
},
|
|
1806
1666
|
{
|
|
1807
1667
|
type: BitTagType_1.BitTagType.tag,
|
|
1808
1668
|
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
@@ -1817,11 +1677,8 @@ const BITS = {
|
|
|
1817
1677
|
[BitType_1.BitType.pageCoverImage]: { since: '1.22.0', baseBitType: BitType_1.BitType.page },
|
|
1818
1678
|
[BitType_1.BitType.pageBuyButton]: {
|
|
1819
1679
|
since: '1.4.3',
|
|
1680
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1820
1681
|
tags: [
|
|
1821
|
-
{
|
|
1822
|
-
type: BitTagType_1.BitTagType.group,
|
|
1823
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1824
|
-
},
|
|
1825
1682
|
{
|
|
1826
1683
|
type: BitTagType_1.BitTagType.property,
|
|
1827
1684
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1840,11 +1697,8 @@ const BITS = {
|
|
|
1840
1697
|
[BitType_1.BitType.pageBuyButtonPromotion]: { since: '1.5.11', baseBitType: BitType_1.BitType.pageBuyButton },
|
|
1841
1698
|
[BitType_1.BitType.pageSubpage]: {
|
|
1842
1699
|
since: '1.6.6',
|
|
1700
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1843
1701
|
tags: [
|
|
1844
|
-
{
|
|
1845
|
-
type: BitTagType_1.BitTagType.group,
|
|
1846
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1847
|
-
},
|
|
1848
1702
|
{
|
|
1849
1703
|
type: BitTagType_1.BitTagType.property,
|
|
1850
1704
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1862,11 +1716,8 @@ const BITS = {
|
|
|
1862
1716
|
[BitType_1.BitType.pageSpecial]: { since: '1.6.6', baseBitType: BitType_1.BitType.pageSubpage },
|
|
1863
1717
|
[BitType_1.BitType.pagePerson]: {
|
|
1864
1718
|
since: '1.5.16',
|
|
1719
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1865
1720
|
tags: [
|
|
1866
|
-
{
|
|
1867
|
-
type: BitTagType_1.BitTagType.group,
|
|
1868
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1869
|
-
},
|
|
1870
1721
|
{
|
|
1871
1722
|
type: BitTagType_1.BitTagType.property,
|
|
1872
1723
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1883,11 +1734,8 @@ const BITS = {
|
|
|
1883
1734
|
},
|
|
1884
1735
|
[BitType_1.BitType.pageProduct]: {
|
|
1885
1736
|
since: '1.4.17',
|
|
1737
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1886
1738
|
tags: [
|
|
1887
|
-
{
|
|
1888
|
-
type: BitTagType_1.BitTagType.group,
|
|
1889
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1890
|
-
},
|
|
1891
1739
|
{
|
|
1892
1740
|
type: BitTagType_1.BitTagType.property,
|
|
1893
1741
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1900,11 +1748,8 @@ const BITS = {
|
|
|
1900
1748
|
},
|
|
1901
1749
|
[BitType_1.BitType.pageProductList]: {
|
|
1902
1750
|
since: '1.4.17',
|
|
1751
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1903
1752
|
tags: [
|
|
1904
|
-
{
|
|
1905
|
-
type: BitTagType_1.BitTagType.group,
|
|
1906
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1907
|
-
},
|
|
1908
1753
|
{
|
|
1909
1754
|
type: BitTagType_1.BitTagType.property,
|
|
1910
1755
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1918,11 +1763,8 @@ const BITS = {
|
|
|
1918
1763
|
},
|
|
1919
1764
|
[BitType_1.BitType.pageProductVideo]: {
|
|
1920
1765
|
since: '1.4.17',
|
|
1766
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1921
1767
|
tags: [
|
|
1922
|
-
{
|
|
1923
|
-
type: BitTagType_1.BitTagType.group,
|
|
1924
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1925
|
-
},
|
|
1926
1768
|
{
|
|
1927
1769
|
type: BitTagType_1.BitTagType.property,
|
|
1928
1770
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1935,11 +1777,8 @@ const BITS = {
|
|
|
1935
1777
|
},
|
|
1936
1778
|
[BitType_1.BitType.pageProductVideoList]: {
|
|
1937
1779
|
since: '1.4.17',
|
|
1780
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1938
1781
|
tags: [
|
|
1939
|
-
{
|
|
1940
|
-
type: BitTagType_1.BitTagType.group,
|
|
1941
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1942
|
-
},
|
|
1943
1782
|
{
|
|
1944
1783
|
type: BitTagType_1.BitTagType.property,
|
|
1945
1784
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1953,11 +1792,8 @@ const BITS = {
|
|
|
1953
1792
|
},
|
|
1954
1793
|
[BitType_1.BitType.pageSectionFolder]: {
|
|
1955
1794
|
since: '1.4.17',
|
|
1795
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1956
1796
|
tags: [
|
|
1957
|
-
{
|
|
1958
|
-
type: BitTagType_1.BitTagType.group,
|
|
1959
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1960
|
-
},
|
|
1961
1797
|
{
|
|
1962
1798
|
type: BitTagType_1.BitTagType.property,
|
|
1963
1799
|
configKey: PropertyConfigKey_1.PropertyConfigKey.slug,
|
|
@@ -1974,11 +1810,8 @@ const BITS = {
|
|
|
1974
1810
|
},
|
|
1975
1811
|
[BitType_1.BitType.quote]: {
|
|
1976
1812
|
since: '1.3.0',
|
|
1813
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1977
1814
|
tags: [
|
|
1978
|
-
{
|
|
1979
|
-
type: BitTagType_1.BitTagType.group,
|
|
1980
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1981
|
-
},
|
|
1982
1815
|
{
|
|
1983
1816
|
type: BitTagType_1.BitTagType.property,
|
|
1984
1817
|
configKey: PropertyConfigKey_1.PropertyConfigKey.quotedPerson,
|
|
@@ -1987,21 +1820,14 @@ const BITS = {
|
|
|
1987
1820
|
},
|
|
1988
1821
|
[BitType_1.BitType.rating]: {
|
|
1989
1822
|
since: '1.3.0',
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
type: BitTagType_1.BitTagType.group,
|
|
1993
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1994
|
-
},
|
|
1995
|
-
],
|
|
1823
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1824
|
+
tags: [],
|
|
1996
1825
|
},
|
|
1997
1826
|
[BitType_1.BitType.coachSelfReflectionRating]: { since: '1.3.0', baseBitType: BitType_1.BitType.rating },
|
|
1998
1827
|
[BitType_1.BitType.releaseNote]: {
|
|
1999
1828
|
since: '1.3.0',
|
|
1829
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2000
1830
|
tags: [
|
|
2001
|
-
{
|
|
2002
|
-
type: BitTagType_1.BitTagType.group,
|
|
2003
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2004
|
-
},
|
|
2005
1831
|
{
|
|
2006
1832
|
type: BitTagType_1.BitTagType.property,
|
|
2007
1833
|
configKey: PropertyConfigKey_1.PropertyConfigKey.releaseVersion,
|
|
@@ -2018,11 +1844,8 @@ const BITS = {
|
|
|
2018
1844
|
},
|
|
2019
1845
|
[BitType_1.BitType.reviewNote]: {
|
|
2020
1846
|
since: '1.3.0',
|
|
1847
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2021
1848
|
tags: [
|
|
2022
|
-
{
|
|
2023
|
-
type: BitTagType_1.BitTagType.group,
|
|
2024
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2025
|
-
},
|
|
2026
1849
|
{
|
|
2027
1850
|
type: BitTagType_1.BitTagType.tag,
|
|
2028
1851
|
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
@@ -2048,11 +1871,8 @@ const BITS = {
|
|
|
2048
1871
|
[BitType_1.BitType.reviewApprovedNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.reviewNote },
|
|
2049
1872
|
[BitType_1.BitType.sampleSolution]: {
|
|
2050
1873
|
since: '1.3.0',
|
|
1874
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2051
1875
|
tags: [
|
|
2052
|
-
{
|
|
2053
|
-
type: BitTagType_1.BitTagType.group,
|
|
2054
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2055
|
-
},
|
|
2056
1876
|
// Not sure if these are actually valid here, but include them as they are in the test bit.
|
|
2057
1877
|
{
|
|
2058
1878
|
type: BitTagType_1.BitTagType.tag,
|
|
@@ -2066,12 +1886,9 @@ const BITS = {
|
|
|
2066
1886
|
},
|
|
2067
1887
|
[BitType_1.BitType.sequence]: {
|
|
2068
1888
|
since: '1.3.0',
|
|
1889
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2069
1890
|
quizBit: true,
|
|
2070
1891
|
tags: [
|
|
2071
|
-
{
|
|
2072
|
-
type: BitTagType_1.BitTagType.group,
|
|
2073
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2074
|
-
},
|
|
2075
1892
|
{
|
|
2076
1893
|
type: BitTagType_1.BitTagType.group,
|
|
2077
1894
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -2082,11 +1899,8 @@ const BITS = {
|
|
|
2082
1899
|
},
|
|
2083
1900
|
[BitType_1.BitType.stillImageFilm]: {
|
|
2084
1901
|
since: '1.3.0',
|
|
1902
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2085
1903
|
tags: [
|
|
2086
|
-
{
|
|
2087
|
-
type: BitTagType_1.BitTagType.group,
|
|
2088
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2089
|
-
},
|
|
2090
1904
|
{
|
|
2091
1905
|
type: BitTagType_1.BitTagType.group,
|
|
2092
1906
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -2101,11 +1915,8 @@ const BITS = {
|
|
|
2101
1915
|
},
|
|
2102
1916
|
[BitType_1.BitType.stillImageFilmEmbed]: {
|
|
2103
1917
|
since: '1.3.0',
|
|
1918
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2104
1919
|
tags: [
|
|
2105
|
-
{
|
|
2106
|
-
type: BitTagType_1.BitTagType.group,
|
|
2107
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2108
|
-
},
|
|
2109
1920
|
{
|
|
2110
1921
|
type: BitTagType_1.BitTagType.group,
|
|
2111
1922
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -2120,11 +1931,8 @@ const BITS = {
|
|
|
2120
1931
|
},
|
|
2121
1932
|
[BitType_1.BitType.stillImageFilmLink]: {
|
|
2122
1933
|
since: '1.3.0',
|
|
1934
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2123
1935
|
tags: [
|
|
2124
|
-
{
|
|
2125
|
-
type: BitTagType_1.BitTagType.group,
|
|
2126
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2127
|
-
},
|
|
2128
1936
|
{
|
|
2129
1937
|
type: BitTagType_1.BitTagType.group,
|
|
2130
1938
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -2139,21 +1947,13 @@ const BITS = {
|
|
|
2139
1947
|
},
|
|
2140
1948
|
[BitType_1.BitType.surveyAnonymous]: {
|
|
2141
1949
|
since: '1.3.0',
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
type: BitTagType_1.BitTagType.group,
|
|
2145
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2146
|
-
},
|
|
2147
|
-
],
|
|
1950
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1951
|
+
tags: [],
|
|
2148
1952
|
},
|
|
2149
1953
|
[BitType_1.BitType.survey]: {
|
|
2150
1954
|
since: '1.3.0',
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
type: BitTagType_1.BitTagType.group,
|
|
2154
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2155
|
-
},
|
|
2156
|
-
],
|
|
1955
|
+
baseBitType: BitType_1.BitType._standard,
|
|
1956
|
+
tags: [],
|
|
2157
1957
|
},
|
|
2158
1958
|
[BitType_1.BitType.surveyMatrix]: {
|
|
2159
1959
|
since: '1.6.2',
|
|
@@ -2182,11 +1982,8 @@ const BITS = {
|
|
|
2182
1982
|
[BitType_1.BitType.surveyMatrixMe]: { since: '1.6.2', baseBitType: BitType_1.BitType.surveyMatrix },
|
|
2183
1983
|
[BitType_1.BitType.surveyRating]: {
|
|
2184
1984
|
since: '1.6.0',
|
|
1985
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2185
1986
|
tags: [
|
|
2186
|
-
{
|
|
2187
|
-
type: BitTagType_1.BitTagType.group,
|
|
2188
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2189
|
-
},
|
|
2190
1987
|
{
|
|
2191
1988
|
type: BitTagType_1.BitTagType.property,
|
|
2192
1989
|
configKey: PropertyConfigKey_1.PropertyConfigKey.ratingLevelStart,
|
|
@@ -2227,11 +2024,8 @@ const BITS = {
|
|
|
2227
2024
|
},
|
|
2228
2025
|
[BitType_1.BitType.scorm]: {
|
|
2229
2026
|
since: '1.5.11',
|
|
2027
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2230
2028
|
tags: [
|
|
2231
|
-
{
|
|
2232
|
-
type: BitTagType_1.BitTagType.group,
|
|
2233
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2234
|
-
},
|
|
2235
2029
|
{
|
|
2236
2030
|
type: BitTagType_1.BitTagType.property,
|
|
2237
2031
|
configKey: PropertyConfigKey_1.PropertyConfigKey.scormSource,
|
|
@@ -2244,21 +2038,14 @@ const BITS = {
|
|
|
2244
2038
|
},
|
|
2245
2039
|
[BitType_1.BitType.pronunciationTable]: {
|
|
2246
2040
|
since: '3.1.0',
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
type: BitTagType_1.BitTagType.group,
|
|
2250
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2251
|
-
},
|
|
2252
|
-
],
|
|
2041
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2042
|
+
tags: [],
|
|
2253
2043
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._pronunciationTable,
|
|
2254
2044
|
},
|
|
2255
2045
|
[BitType_1.BitType.table]: {
|
|
2256
2046
|
since: '1.5.19',
|
|
2047
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2257
2048
|
tags: [
|
|
2258
|
-
{
|
|
2259
|
-
type: BitTagType_1.BitTagType.group,
|
|
2260
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2261
|
-
},
|
|
2262
2049
|
{
|
|
2263
2050
|
type: BitTagType_1.BitTagType.property,
|
|
2264
2051
|
configKey: PropertyConfigKey_1.PropertyConfigKey.caption,
|
|
@@ -2337,12 +2124,8 @@ const BITS = {
|
|
|
2337
2124
|
[BitType_1.BitType.parameters]: { since: '1.18.0', baseBitType: BitType_1.BitType.table },
|
|
2338
2125
|
[BitType_1.BitType.toc]: {
|
|
2339
2126
|
since: '1.3.0',
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
type: BitTagType_1.BitTagType.group,
|
|
2343
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2344
|
-
},
|
|
2345
|
-
],
|
|
2127
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2128
|
+
tags: [],
|
|
2346
2129
|
},
|
|
2347
2130
|
[BitType_1.BitType.tocChapter]: {
|
|
2348
2131
|
since: '1.5.5',
|
|
@@ -2354,42 +2137,71 @@ const BITS = {
|
|
|
2354
2137
|
},
|
|
2355
2138
|
],
|
|
2356
2139
|
},
|
|
2357
|
-
[BitType_1.BitType.anchor]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2358
|
-
[BitType_1.BitType.bitBookEnding]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2359
|
-
[BitType_1.BitType.bitBookSummary]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2360
|
-
[BitType_1.BitType.botActionAnnounce]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2361
|
-
[BitType_1.BitType.botActionRatingNumber]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2362
|
-
[BitType_1.BitType.botActionRemind]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2363
|
-
[BitType_1.BitType.botActionSave]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2364
|
-
[BitType_1.BitType.botActionTrueFalse]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2365
|
-
[BitType_1.BitType.chapterSubjectMatter]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2366
|
-
[BitType_1.BitType.chat]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2367
|
-
[BitType_1.BitType.conclusion]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2140
|
+
[BitType_1.BitType.anchor]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2141
|
+
[BitType_1.BitType.bitBookEnding]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2142
|
+
[BitType_1.BitType.bitBookSummary]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2143
|
+
[BitType_1.BitType.botActionAnnounce]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2144
|
+
[BitType_1.BitType.botActionRatingNumber]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2145
|
+
[BitType_1.BitType.botActionRemind]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2146
|
+
[BitType_1.BitType.botActionSave]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2147
|
+
[BitType_1.BitType.botActionTrueFalse]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2148
|
+
[BitType_1.BitType.chapterSubjectMatter]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2149
|
+
[BitType_1.BitType.chat]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2150
|
+
[BitType_1.BitType.conclusion]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2368
2151
|
[BitType_1.BitType.conclusionAlt]: { since: '1.16.0', baseBitType: BitType_1.BitType.conclusion },
|
|
2369
|
-
[BitType_1.BitType.documentUpload]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2370
|
-
[BitType_1.BitType.footNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2371
|
-
[BitType_1.BitType.groupBorn]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2372
|
-
[BitType_1.BitType.groupDied]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2373
|
-
[BitType_1.BitType.recordAudio]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2374
|
-
[BitType_1.BitType.recordVideo]: { since: '1.5.24', baseBitType: BitType_1.BitType.
|
|
2375
|
-
[BitType_1.BitType.stickyNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2376
|
-
[BitType_1.BitType.takePicture]: { since: '1.3.0', baseBitType: BitType_1.BitType.
|
|
2377
|
-
[BitType_1.BitType.handInAudio]: { since: '1.5.15', baseBitType: BitType_1.BitType.
|
|
2378
|
-
[BitType_1.BitType.handInContact]: { since: '1.5.15', baseBitType: BitType_1.BitType.
|
|
2379
|
-
[BitType_1.BitType.handInDocument]: { since: '1.5.15', baseBitType: BitType_1.BitType.
|
|
2380
|
-
[BitType_1.BitType.
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2152
|
+
[BitType_1.BitType.documentUpload]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2153
|
+
[BitType_1.BitType.footNote]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2154
|
+
[BitType_1.BitType.groupBorn]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2155
|
+
[BitType_1.BitType.groupDied]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2156
|
+
[BitType_1.BitType.recordAudio]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2157
|
+
[BitType_1.BitType.recordVideo]: { since: '1.5.24', baseBitType: BitType_1.BitType._standard },
|
|
2158
|
+
[BitType_1.BitType.stickyNote]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2159
|
+
[BitType_1.BitType.takePicture]: { since: '1.3.0', baseBitType: BitType_1.BitType._standard },
|
|
2160
|
+
[BitType_1.BitType.handInAudio]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2161
|
+
[BitType_1.BitType.handInContact]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2162
|
+
[BitType_1.BitType.handInDocument]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2163
|
+
[BitType_1.BitType.handInFile]: {
|
|
2164
|
+
//
|
|
2165
|
+
since: '3.2.0',
|
|
2166
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2167
|
+
tags: [
|
|
2168
|
+
{
|
|
2169
|
+
type: BitTagType_1.BitTagType.property,
|
|
2170
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.handInAcceptFileType,
|
|
2171
|
+
maxCount: Count_1.Count.infinity,
|
|
2172
|
+
},
|
|
2173
|
+
],
|
|
2174
|
+
},
|
|
2175
|
+
[BitType_1.BitType.handInLocation]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2176
|
+
[BitType_1.BitType.handInPhoto]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2177
|
+
[BitType_1.BitType.handInScan]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2178
|
+
[BitType_1.BitType.handInSubmit]: {
|
|
2179
|
+
//
|
|
2180
|
+
since: '3.2.0',
|
|
2181
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2182
|
+
tags: [
|
|
2183
|
+
{
|
|
2184
|
+
type: BitTagType_1.BitTagType.property,
|
|
2185
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.handInRequirement,
|
|
2186
|
+
maxCount: Count_1.Count.infinity,
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
type: BitTagType_1.BitTagType.property,
|
|
2190
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.handInInstruction,
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
type: BitTagType_1.BitTagType.property,
|
|
2194
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.buttonCaption,
|
|
2195
|
+
},
|
|
2196
|
+
],
|
|
2197
|
+
},
|
|
2198
|
+
[BitType_1.BitType.handInVideo]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2199
|
+
[BitType_1.BitType.handInVoice]: { since: '1.5.15', baseBitType: BitType_1.BitType._standard },
|
|
2385
2200
|
[BitType_1.BitType.trueFalse1]: {
|
|
2386
2201
|
since: '1.3.0',
|
|
2202
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2387
2203
|
quizBit: true,
|
|
2388
2204
|
tags: [
|
|
2389
|
-
{
|
|
2390
|
-
type: BitTagType_1.BitTagType.group,
|
|
2391
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2392
|
-
},
|
|
2393
2205
|
{
|
|
2394
2206
|
type: BitTagType_1.BitTagType.group,
|
|
2395
2207
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -2415,12 +2227,9 @@ const BITS = {
|
|
|
2415
2227
|
},
|
|
2416
2228
|
[BitType_1.BitType.trueFalse]: {
|
|
2417
2229
|
since: '1.3.0',
|
|
2230
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2418
2231
|
quizBit: true,
|
|
2419
2232
|
tags: [
|
|
2420
|
-
{
|
|
2421
|
-
type: BitTagType_1.BitTagType.group,
|
|
2422
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2423
|
-
},
|
|
2424
2233
|
{
|
|
2425
2234
|
type: BitTagType_1.BitTagType.group,
|
|
2426
2235
|
configKey: GroupConfigKey_1.GroupConfigKey.group_quizCommon,
|
|
@@ -2439,12 +2248,7 @@ const BITS = {
|
|
|
2439
2248
|
[BitType_1.BitType.vendorAmcharts5Chart]: {
|
|
2440
2249
|
since: '1.5.8',
|
|
2441
2250
|
baseBitType: BitType_1.BitType.code,
|
|
2442
|
-
tags: [
|
|
2443
|
-
{
|
|
2444
|
-
type: BitTagType_1.BitTagType.group,
|
|
2445
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2446
|
-
},
|
|
2447
|
-
],
|
|
2251
|
+
tags: [],
|
|
2448
2252
|
textFormatDefault: TextFormat_1.TextFormat.json,
|
|
2449
2253
|
},
|
|
2450
2254
|
[BitType_1.BitType.vendorHighchartsChart]: {
|
|
@@ -2455,10 +2259,6 @@ const BITS = {
|
|
|
2455
2259
|
since: '1.5.10',
|
|
2456
2260
|
baseBitType: BitType_1.BitType.code,
|
|
2457
2261
|
tags: [
|
|
2458
|
-
{
|
|
2459
|
-
type: BitTagType_1.BitTagType.group,
|
|
2460
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2461
|
-
},
|
|
2462
2262
|
{
|
|
2463
2263
|
type: BitTagType_1.BitTagType.property,
|
|
2464
2264
|
configKey: PropertyConfigKey_1.PropertyConfigKey.width, // Same as image
|
|
@@ -2500,10 +2300,6 @@ const BITS = {
|
|
|
2500
2300
|
since: '1.3.0',
|
|
2501
2301
|
baseBitType: BitType_1.BitType.code,
|
|
2502
2302
|
tags: [
|
|
2503
|
-
{
|
|
2504
|
-
type: BitTagType_1.BitTagType.group,
|
|
2505
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2506
|
-
},
|
|
2507
2303
|
{
|
|
2508
2304
|
type: BitTagType_1.BitTagType.property,
|
|
2509
2305
|
configKey: PropertyConfigKey_1.PropertyConfigKey.padletId,
|
|
@@ -2529,11 +2325,8 @@ const BITS = {
|
|
|
2529
2325
|
},
|
|
2530
2326
|
[BitType_1.BitType.video]: {
|
|
2531
2327
|
since: '1.3.0',
|
|
2328
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2532
2329
|
tags: [
|
|
2533
|
-
{
|
|
2534
|
-
type: BitTagType_1.BitTagType.group,
|
|
2535
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2536
|
-
},
|
|
2537
2330
|
{
|
|
2538
2331
|
type: BitTagType_1.BitTagType.group,
|
|
2539
2332
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -2550,11 +2343,8 @@ const BITS = {
|
|
|
2550
2343
|
[BitType_1.BitType.videoPortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.video },
|
|
2551
2344
|
[BitType_1.BitType.videoEmbed]: {
|
|
2552
2345
|
since: '1.3.0',
|
|
2346
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2553
2347
|
tags: [
|
|
2554
|
-
{
|
|
2555
|
-
type: BitTagType_1.BitTagType.group,
|
|
2556
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2557
|
-
},
|
|
2558
2348
|
{
|
|
2559
2349
|
type: BitTagType_1.BitTagType.group,
|
|
2560
2350
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -2571,11 +2361,8 @@ const BITS = {
|
|
|
2571
2361
|
[BitType_1.BitType.videoEmbedPortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.videoEmbed },
|
|
2572
2362
|
[BitType_1.BitType.videoLink]: {
|
|
2573
2363
|
since: '1.3.0',
|
|
2364
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2574
2365
|
tags: [
|
|
2575
|
-
{
|
|
2576
|
-
type: BitTagType_1.BitTagType.group,
|
|
2577
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2578
|
-
},
|
|
2579
2366
|
{
|
|
2580
2367
|
type: BitTagType_1.BitTagType.group,
|
|
2581
2368
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
@@ -2592,11 +2379,8 @@ const BITS = {
|
|
|
2592
2379
|
[BitType_1.BitType.videoLinkPortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.videoLink },
|
|
2593
2380
|
[BitType_1.BitType.websiteLink]: {
|
|
2594
2381
|
since: '1.3.0',
|
|
2382
|
+
baseBitType: BitType_1.BitType._standard,
|
|
2595
2383
|
tags: [
|
|
2596
|
-
{
|
|
2597
|
-
type: BitTagType_1.BitTagType.group,
|
|
2598
|
-
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2599
|
-
},
|
|
2600
2384
|
{
|
|
2601
2385
|
type: BitTagType_1.BitTagType.group,
|
|
2602
2386
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|