@gmb/bitmark-parser-generator 1.4.1 → 1.4.3
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 +56 -7
- package/dist/cjs/ast/Builder.js.map +1 -1
- package/dist/cjs/config/ConfigHydrator.js +9 -5
- package/dist/cjs/config/ConfigHydrator.js.map +1 -1
- package/dist/cjs/config/raw/bits.js +241 -173
- package/dist/cjs/config/raw/bits.js.map +1 -1
- package/dist/cjs/config/raw/cardSets.js +42 -35
- package/dist/cjs/config/raw/cardSets.js.map +1 -1
- package/dist/cjs/config/raw/groups.js +225 -175
- package/dist/cjs/config/raw/groups.js.map +1 -1
- package/dist/cjs/config/raw/properties.js +112 -83
- package/dist/cjs/config/raw/properties.js.map +1 -1
- package/dist/cjs/config/raw/resources.js +23 -23
- package/dist/cjs/config/raw/resources.js.map +1 -1
- package/dist/cjs/config/raw/tags.js +16 -16
- package/dist/cjs/config/raw/tags.js.map +1 -1
- package/dist/cjs/generated/build-info.js +1 -1
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js +5 -3
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/cjs/generator/json/JsonGenerator.js +29 -4
- package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
- package/dist/cjs/model/ast/NodeType.js +11 -0
- package/dist/cjs/model/ast/NodeType.js.map +1 -1
- package/dist/cjs/model/config/enum/ConfigKey.js +22 -167
- package/dist/cjs/model/config/enum/ConfigKey.js.map +1 -1
- package/dist/cjs/model/config/enum/GroupConfigKey.js +53 -0
- package/dist/cjs/model/config/enum/GroupConfigKey.js.map +1 -0
- package/dist/cjs/model/config/enum/PropertyConfigKey.js +101 -0
- package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -0
- package/dist/cjs/model/config/enum/ResourceConfigKey.js +37 -0
- package/dist/cjs/model/config/enum/ResourceConfigKey.js.map +1 -0
- package/dist/cjs/model/config/enum/TagConfigKey.js +28 -0
- package/dist/cjs/model/config/enum/TagConfigKey.js.map +1 -0
- package/dist/cjs/model/enum/BitType.js +17 -1
- package/dist/cjs/model/enum/BitType.js.map +1 -1
- package/dist/cjs/model/enum/PropertyTag.js +6 -0
- package/dist/cjs/model/enum/PropertyTag.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +6 -6
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/cjs/parser/json/JsonParser.js +11 -4
- package/dist/cjs/parser/json/JsonParser.js.map +1 -1
- package/dist/esm/ast/Builder.js +57 -8
- package/dist/esm/ast/Builder.js.map +1 -1
- package/dist/esm/config/ConfigHydrator.js +9 -5
- package/dist/esm/config/ConfigHydrator.js.map +1 -1
- package/dist/esm/config/raw/bits.js +241 -173
- package/dist/esm/config/raw/bits.js.map +1 -1
- package/dist/esm/config/raw/cardSets.js +42 -35
- package/dist/esm/config/raw/cardSets.js.map +1 -1
- package/dist/esm/config/raw/groups.js +225 -175
- package/dist/esm/config/raw/groups.js.map +1 -1
- package/dist/esm/config/raw/properties.js +112 -83
- package/dist/esm/config/raw/properties.js.map +1 -1
- package/dist/esm/config/raw/resources.js +23 -23
- package/dist/esm/config/raw/resources.js.map +1 -1
- package/dist/esm/config/raw/tags.js +16 -16
- package/dist/esm/config/raw/tags.js.map +1 -1
- package/dist/esm/generated/build-info.js +1 -1
- package/dist/esm/generator/bitmark/BitmarkGenerator.js +5 -3
- package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/esm/generator/json/JsonGenerator.js +29 -4
- package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
- package/dist/esm/model/ast/NodeType.js +11 -0
- package/dist/esm/model/ast/NodeType.js.map +1 -1
- package/dist/esm/model/config/enum/ConfigKey.js +22 -167
- package/dist/esm/model/config/enum/ConfigKey.js.map +1 -1
- package/dist/esm/model/config/enum/GroupConfigKey.js +49 -0
- package/dist/esm/model/config/enum/GroupConfigKey.js.map +1 -0
- package/dist/esm/model/config/enum/PropertyConfigKey.js +97 -0
- package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -0
- package/dist/esm/model/config/enum/ResourceConfigKey.js +33 -0
- package/dist/esm/model/config/enum/ResourceConfigKey.js.map +1 -0
- package/dist/esm/model/config/enum/TagConfigKey.js +24 -0
- package/dist/esm/model/config/enum/TagConfigKey.js.map +1 -0
- package/dist/esm/model/enum/BitType.js +17 -1
- package/dist/esm/model/enum/BitType.js.map +1 -1
- package/dist/esm/model/enum/PropertyTag.js +6 -0
- package/dist/esm/model/enum/PropertyTag.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +6 -6
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/esm/parser/json/JsonParser.js +11 -4
- package/dist/esm/parser/json/JsonParser.js.map +1 -1
- package/dist/types/ast/Builder.d.ts +43 -24
- package/dist/types/ast/Builder.d.ts.map +1 -1
- package/dist/types/config/ConfigHydrator.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/generator/bitmark/BitmarkGenerator.d.ts +1 -1
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
- package/dist/types/generator/json/JsonGenerator.d.ts +1 -1
- package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
- package/dist/types/model/ast/NodeType.d.ts +22 -0
- package/dist/types/model/ast/NodeType.d.ts.map +1 -1
- package/dist/types/model/ast/Nodes.d.ts +8 -1
- package/dist/types/model/ast/Nodes.d.ts.map +1 -1
- package/dist/types/model/config/enum/ConfigKey.d.ts +333 -316
- package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/GroupConfigKey.d.ts +132 -0
- package/dist/types/model/config/enum/GroupConfigKey.d.ts.map +1 -0
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts +276 -0
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -0
- package/dist/types/model/config/enum/ResourceConfigKey.d.ts +78 -0
- package/dist/types/model/config/enum/ResourceConfigKey.d.ts.map +1 -0
- package/dist/types/model/config/enum/TagConfigKey.d.ts +57 -0
- package/dist/types/model/config/enum/TagConfigKey.d.ts.map +1 -0
- package/dist/types/model/enum/BitType.d.ts +34 -2
- package/dist/types/model/enum/BitType.d.ts.map +1 -1
- package/dist/types/model/enum/PropertyTag.d.ts +12 -0
- package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
- package/dist/types/model/json/BitJson.d.ts +11 -4
- package/dist/types/model/json/BitJson.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
- package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
- package/package.json +3 -4
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.BITS = void 0;
|
|
4
4
|
const CardSetConfigKey_1 = require("../../model/config/enum/CardSetConfigKey");
|
|
5
|
-
const
|
|
5
|
+
const GroupConfigKey_1 = require("../../model/config/enum/GroupConfigKey");
|
|
6
|
+
const PropertyConfigKey_1 = require("../../model/config/enum/PropertyConfigKey");
|
|
7
|
+
const TagConfigKey_1 = require("../../model/config/enum/TagConfigKey");
|
|
6
8
|
const BitTagType_1 = require("../../model/enum/BitTagType");
|
|
7
9
|
const BitType_1 = require("../../model/enum/BitType");
|
|
8
10
|
const Count_1 = require("../../model/enum/Count");
|
|
@@ -19,15 +21,15 @@ const BITS = {
|
|
|
19
21
|
tags: [
|
|
20
22
|
{
|
|
21
23
|
type: BitTagType_1.BitTagType.group,
|
|
22
|
-
configKey:
|
|
24
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
23
25
|
},
|
|
24
26
|
{
|
|
25
27
|
type: BitTagType_1.BitTagType.tag,
|
|
26
|
-
configKey:
|
|
28
|
+
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
27
29
|
},
|
|
28
30
|
{
|
|
29
31
|
type: BitTagType_1.BitTagType.property,
|
|
30
|
-
configKey:
|
|
32
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.flashcardSet,
|
|
31
33
|
maxCount: Count_1.Count.infinity,
|
|
32
34
|
},
|
|
33
35
|
],
|
|
@@ -44,11 +46,11 @@ const BITS = {
|
|
|
44
46
|
tags: [
|
|
45
47
|
{
|
|
46
48
|
type: BitTagType_1.BitTagType.group,
|
|
47
|
-
configKey:
|
|
49
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
48
50
|
},
|
|
49
51
|
{
|
|
50
52
|
type: BitTagType_1.BitTagType.group,
|
|
51
|
-
configKey:
|
|
53
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAppLink,
|
|
52
54
|
minCount: 1,
|
|
53
55
|
},
|
|
54
56
|
],
|
|
@@ -59,11 +61,11 @@ const BITS = {
|
|
|
59
61
|
tags: [
|
|
60
62
|
{
|
|
61
63
|
type: BitTagType_1.BitTagType.group,
|
|
62
|
-
configKey:
|
|
64
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
63
65
|
},
|
|
64
66
|
{
|
|
65
67
|
type: BitTagType_1.BitTagType.tag,
|
|
66
|
-
configKey:
|
|
68
|
+
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
67
69
|
},
|
|
68
70
|
],
|
|
69
71
|
resourceAttachmentAllowed: true,
|
|
@@ -71,6 +73,7 @@ const BITS = {
|
|
|
71
73
|
aliases: {
|
|
72
74
|
[BitType_1.AliasBitType.page]: { since: '1.3.0' },
|
|
73
75
|
[BitType_1.AliasBitType.statement]: { since: '1.3.0' },
|
|
76
|
+
[BitType_1.AliasBitType.buttonCopyText]: { since: '1.4.3' },
|
|
74
77
|
},
|
|
75
78
|
},
|
|
76
79
|
[BitType_1.RootBitType.articleEmbed]: {
|
|
@@ -78,11 +81,11 @@ const BITS = {
|
|
|
78
81
|
tags: [
|
|
79
82
|
{
|
|
80
83
|
type: BitTagType_1.BitTagType.group,
|
|
81
|
-
configKey:
|
|
84
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
82
85
|
},
|
|
83
86
|
{
|
|
84
87
|
type: BitTagType_1.BitTagType.group,
|
|
85
|
-
configKey:
|
|
88
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceArticleEmbed,
|
|
86
89
|
minCount: 1,
|
|
87
90
|
},
|
|
88
91
|
],
|
|
@@ -93,11 +96,11 @@ const BITS = {
|
|
|
93
96
|
tags: [
|
|
94
97
|
{
|
|
95
98
|
type: BitTagType_1.BitTagType.group,
|
|
96
|
-
configKey:
|
|
99
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
97
100
|
},
|
|
98
101
|
{
|
|
99
102
|
type: BitTagType_1.BitTagType.group,
|
|
100
|
-
configKey:
|
|
103
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceArticleLink,
|
|
101
104
|
minCount: 1,
|
|
102
105
|
},
|
|
103
106
|
],
|
|
@@ -108,11 +111,11 @@ const BITS = {
|
|
|
108
111
|
tags: [
|
|
109
112
|
{
|
|
110
113
|
type: BitTagType_1.BitTagType.group,
|
|
111
|
-
configKey:
|
|
114
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
112
115
|
},
|
|
113
116
|
{
|
|
114
117
|
type: BitTagType_1.BitTagType.group,
|
|
115
|
-
configKey:
|
|
118
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAudio,
|
|
116
119
|
minCount: 1,
|
|
117
120
|
},
|
|
118
121
|
],
|
|
@@ -123,11 +126,11 @@ const BITS = {
|
|
|
123
126
|
tags: [
|
|
124
127
|
{
|
|
125
128
|
type: BitTagType_1.BitTagType.group,
|
|
126
|
-
configKey:
|
|
129
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
127
130
|
},
|
|
128
131
|
{
|
|
129
132
|
type: BitTagType_1.BitTagType.group,
|
|
130
|
-
configKey:
|
|
133
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAudioEmbed,
|
|
131
134
|
minCount: 1,
|
|
132
135
|
},
|
|
133
136
|
],
|
|
@@ -138,11 +141,11 @@ const BITS = {
|
|
|
138
141
|
tags: [
|
|
139
142
|
{
|
|
140
143
|
type: BitTagType_1.BitTagType.group,
|
|
141
|
-
configKey:
|
|
144
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
142
145
|
},
|
|
143
146
|
{
|
|
144
147
|
type: BitTagType_1.BitTagType.group,
|
|
145
|
-
configKey:
|
|
148
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAudioLink,
|
|
146
149
|
minCount: 1,
|
|
147
150
|
},
|
|
148
151
|
],
|
|
@@ -153,15 +156,15 @@ const BITS = {
|
|
|
153
156
|
tags: [
|
|
154
157
|
{
|
|
155
158
|
type: BitTagType_1.BitTagType.group,
|
|
156
|
-
configKey:
|
|
159
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
157
160
|
},
|
|
158
161
|
{
|
|
159
162
|
type: BitTagType_1.BitTagType.tag,
|
|
160
|
-
configKey:
|
|
163
|
+
configKey: TagConfigKey_1.TagConfigKey.tag_reference,
|
|
161
164
|
},
|
|
162
165
|
{
|
|
163
166
|
type: BitTagType_1.BitTagType.tag,
|
|
164
|
-
configKey:
|
|
167
|
+
configKey: TagConfigKey_1.TagConfigKey.anchor,
|
|
165
168
|
},
|
|
166
169
|
],
|
|
167
170
|
bodyAllowed: true,
|
|
@@ -171,41 +174,11 @@ const BITS = {
|
|
|
171
174
|
tags: [
|
|
172
175
|
{
|
|
173
176
|
type: BitTagType_1.BitTagType.group,
|
|
174
|
-
configKey:
|
|
177
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
175
178
|
},
|
|
176
179
|
{
|
|
177
|
-
type: BitTagType_1.BitTagType.
|
|
178
|
-
configKey:
|
|
179
|
-
maxCount: Count_1.Count.infinity,
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
type: BitTagType_1.BitTagType.tag,
|
|
183
|
-
configKey: ConfigKey_1.ConfigKey._tag_title,
|
|
184
|
-
maxCount: 2,
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
type: BitTagType_1.BitTagType.property,
|
|
188
|
-
configKey: ConfigKey_1.ConfigKey._property_subtype,
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
type: BitTagType_1.BitTagType.property,
|
|
192
|
-
configKey: ConfigKey_1.ConfigKey._property_coverImage,
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
type: BitTagType_1.BitTagType.property,
|
|
196
|
-
configKey: ConfigKey_1.ConfigKey._property_publisher,
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
type: BitTagType_1.BitTagType.property,
|
|
200
|
-
configKey: ConfigKey_1.ConfigKey._property_subject,
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
type: BitTagType_1.BitTagType.property,
|
|
204
|
-
configKey: ConfigKey_1.ConfigKey._property_author,
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
type: BitTagType_1.BitTagType.property,
|
|
208
|
-
configKey: ConfigKey_1.ConfigKey._property_theme,
|
|
180
|
+
type: BitTagType_1.BitTagType.group,
|
|
181
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_bookCommon,
|
|
209
182
|
},
|
|
210
183
|
],
|
|
211
184
|
bodyAllowed: true,
|
|
@@ -243,12 +216,31 @@ const BITS = {
|
|
|
243
216
|
[BitType_1.AliasBitType.bookTitle]: { since: '1.3.0' },
|
|
244
217
|
},
|
|
245
218
|
},
|
|
219
|
+
[BitType_1.RootBitType.bookAlias]: {
|
|
220
|
+
since: '1.4.3',
|
|
221
|
+
tags: [
|
|
222
|
+
{
|
|
223
|
+
type: BitTagType_1.BitTagType.group,
|
|
224
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
type: BitTagType_1.BitTagType.group,
|
|
228
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_bookCommon,
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
type: BitTagType_1.BitTagType.property,
|
|
232
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.bookAlias,
|
|
233
|
+
maxCount: Count_1.Count.infinity,
|
|
234
|
+
},
|
|
235
|
+
],
|
|
236
|
+
bodyAllowed: true,
|
|
237
|
+
},
|
|
246
238
|
[BitType_1.RootBitType.botActionResponse]: {
|
|
247
239
|
since: '1.3.0',
|
|
248
240
|
tags: [
|
|
249
241
|
{
|
|
250
242
|
type: BitTagType_1.BitTagType.group,
|
|
251
|
-
configKey:
|
|
243
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
252
244
|
},
|
|
253
245
|
],
|
|
254
246
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._botActionResponses,
|
|
@@ -260,11 +252,11 @@ const BITS = {
|
|
|
260
252
|
tags: [
|
|
261
253
|
{
|
|
262
254
|
type: BitTagType_1.BitTagType.group,
|
|
263
|
-
configKey:
|
|
255
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
264
256
|
},
|
|
265
257
|
{
|
|
266
258
|
type: BitTagType_1.BitTagType.property,
|
|
267
|
-
configKey:
|
|
259
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.date,
|
|
268
260
|
},
|
|
269
261
|
],
|
|
270
262
|
bodyAllowed: true,
|
|
@@ -274,20 +266,20 @@ const BITS = {
|
|
|
274
266
|
tags: [
|
|
275
267
|
{
|
|
276
268
|
type: BitTagType_1.BitTagType.group,
|
|
277
|
-
configKey:
|
|
269
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
278
270
|
},
|
|
279
271
|
{
|
|
280
272
|
type: BitTagType_1.BitTagType.group,
|
|
281
|
-
configKey:
|
|
273
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
|
|
282
274
|
minCount: 1,
|
|
283
275
|
},
|
|
284
276
|
{
|
|
285
277
|
type: BitTagType_1.BitTagType.property,
|
|
286
|
-
configKey:
|
|
278
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.focusX,
|
|
287
279
|
},
|
|
288
280
|
{
|
|
289
281
|
type: BitTagType_1.BitTagType.property,
|
|
290
|
-
configKey:
|
|
282
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.focusY,
|
|
291
283
|
},
|
|
292
284
|
],
|
|
293
285
|
bodyAllowed: true,
|
|
@@ -297,7 +289,7 @@ const BITS = {
|
|
|
297
289
|
tags: [
|
|
298
290
|
{
|
|
299
291
|
type: BitTagType_1.BitTagType.group,
|
|
300
|
-
configKey:
|
|
292
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
301
293
|
},
|
|
302
294
|
],
|
|
303
295
|
resourceAttachmentAllowed: true,
|
|
@@ -313,15 +305,15 @@ const BITS = {
|
|
|
313
305
|
tags: [
|
|
314
306
|
{
|
|
315
307
|
type: BitTagType_1.BitTagType.group,
|
|
316
|
-
configKey:
|
|
308
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
317
309
|
},
|
|
318
310
|
{
|
|
319
311
|
type: BitTagType_1.BitTagType.tag,
|
|
320
|
-
configKey:
|
|
312
|
+
configKey: TagConfigKey_1.TagConfigKey.anchor,
|
|
321
313
|
},
|
|
322
314
|
{
|
|
323
315
|
type: BitTagType_1.BitTagType.tag,
|
|
324
|
-
configKey:
|
|
316
|
+
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
325
317
|
},
|
|
326
318
|
],
|
|
327
319
|
bodyAllowed: true,
|
|
@@ -331,15 +323,15 @@ const BITS = {
|
|
|
331
323
|
tags: [
|
|
332
324
|
{
|
|
333
325
|
type: BitTagType_1.BitTagType.group,
|
|
334
|
-
configKey:
|
|
326
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
335
327
|
},
|
|
336
328
|
{
|
|
337
329
|
type: BitTagType_1.BitTagType.group,
|
|
338
|
-
configKey:
|
|
330
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_gap,
|
|
339
331
|
},
|
|
340
332
|
{
|
|
341
333
|
type: BitTagType_1.BitTagType.group,
|
|
342
|
-
configKey:
|
|
334
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
|
|
343
335
|
},
|
|
344
336
|
],
|
|
345
337
|
resourceAttachmentAllowed: true,
|
|
@@ -353,11 +345,11 @@ const BITS = {
|
|
|
353
345
|
tags: [
|
|
354
346
|
{
|
|
355
347
|
type: BitTagType_1.BitTagType.group,
|
|
356
|
-
configKey:
|
|
348
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
357
349
|
},
|
|
358
350
|
{
|
|
359
351
|
type: BitTagType_1.BitTagType.group,
|
|
360
|
-
configKey:
|
|
352
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_gap,
|
|
361
353
|
},
|
|
362
354
|
],
|
|
363
355
|
resourceAttachmentAllowed: true,
|
|
@@ -374,25 +366,34 @@ const BITS = {
|
|
|
374
366
|
tags: [
|
|
375
367
|
{
|
|
376
368
|
type: BitTagType_1.BitTagType.group,
|
|
377
|
-
configKey:
|
|
369
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
378
370
|
},
|
|
379
371
|
{
|
|
380
372
|
type: BitTagType_1.BitTagType.property,
|
|
381
|
-
configKey:
|
|
373
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.computerLanguage,
|
|
382
374
|
},
|
|
383
375
|
],
|
|
384
376
|
bodyAllowed: true,
|
|
377
|
+
aliases: {
|
|
378
|
+
[BitType_1.AliasBitType.appCodeCell]: { since: '1.4.3' },
|
|
379
|
+
[BitType_1.AliasBitType.appCodeEditor]: { since: '1.4.3' },
|
|
380
|
+
[BitType_1.AliasBitType.appCodeIde]: { since: '1.4.3' },
|
|
381
|
+
[BitType_1.AliasBitType.codeRuntime]: { since: '1.4.3' },
|
|
382
|
+
[BitType_1.AliasBitType.consoleLog]: { since: '1.4.3' },
|
|
383
|
+
[BitType_1.AliasBitType.output]: { since: '1.4.3' },
|
|
384
|
+
[BitType_1.AliasBitType.stdout]: { since: '1.4.3' },
|
|
385
|
+
},
|
|
385
386
|
},
|
|
386
387
|
[BitType_1.RootBitType.conversationLeft1]: {
|
|
387
388
|
since: '1.3.0',
|
|
388
389
|
tags: [
|
|
389
390
|
{
|
|
390
391
|
type: BitTagType_1.BitTagType.group,
|
|
391
|
-
configKey:
|
|
392
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
392
393
|
},
|
|
393
394
|
{
|
|
394
395
|
type: BitTagType_1.BitTagType.group,
|
|
395
|
-
configKey:
|
|
396
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_partner,
|
|
396
397
|
},
|
|
397
398
|
],
|
|
398
399
|
resourceAttachmentAllowed: true,
|
|
@@ -410,11 +411,11 @@ const BITS = {
|
|
|
410
411
|
tags: [
|
|
411
412
|
{
|
|
412
413
|
type: BitTagType_1.BitTagType.group,
|
|
413
|
-
configKey:
|
|
414
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
414
415
|
},
|
|
415
416
|
{
|
|
416
417
|
type: BitTagType_1.BitTagType.group,
|
|
417
|
-
configKey:
|
|
418
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocument,
|
|
418
419
|
minCount: 1,
|
|
419
420
|
},
|
|
420
421
|
],
|
|
@@ -425,11 +426,11 @@ const BITS = {
|
|
|
425
426
|
tags: [
|
|
426
427
|
{
|
|
427
428
|
type: BitTagType_1.BitTagType.group,
|
|
428
|
-
configKey:
|
|
429
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
429
430
|
},
|
|
430
431
|
{
|
|
431
432
|
type: BitTagType_1.BitTagType.group,
|
|
432
|
-
configKey:
|
|
433
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocumentDownload,
|
|
433
434
|
minCount: 1,
|
|
434
435
|
},
|
|
435
436
|
],
|
|
@@ -440,11 +441,11 @@ const BITS = {
|
|
|
440
441
|
tags: [
|
|
441
442
|
{
|
|
442
443
|
type: BitTagType_1.BitTagType.group,
|
|
443
|
-
configKey:
|
|
444
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
444
445
|
},
|
|
445
446
|
{
|
|
446
447
|
type: BitTagType_1.BitTagType.group,
|
|
447
|
-
configKey:
|
|
448
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocumentEmbed,
|
|
448
449
|
minCount: 1,
|
|
449
450
|
},
|
|
450
451
|
],
|
|
@@ -455,11 +456,11 @@ const BITS = {
|
|
|
455
456
|
tags: [
|
|
456
457
|
{
|
|
457
458
|
type: BitTagType_1.BitTagType.group,
|
|
458
|
-
configKey:
|
|
459
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
459
460
|
},
|
|
460
461
|
{
|
|
461
462
|
type: BitTagType_1.BitTagType.group,
|
|
462
|
-
configKey:
|
|
463
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocumentLink,
|
|
463
464
|
minCount: 1,
|
|
464
465
|
},
|
|
465
466
|
],
|
|
@@ -470,11 +471,15 @@ const BITS = {
|
|
|
470
471
|
tags: [
|
|
471
472
|
{
|
|
472
473
|
type: BitTagType_1.BitTagType.group,
|
|
473
|
-
configKey:
|
|
474
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
474
475
|
},
|
|
475
476
|
{
|
|
476
477
|
type: BitTagType_1.BitTagType.property,
|
|
477
|
-
configKey:
|
|
478
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.reasonableNumOfChars,
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
type: BitTagType_1.BitTagType.property,
|
|
482
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.property_sampleSolution,
|
|
478
483
|
},
|
|
479
484
|
],
|
|
480
485
|
resourceAttachmentAllowed: true,
|
|
@@ -490,11 +495,11 @@ const BITS = {
|
|
|
490
495
|
tags: [
|
|
491
496
|
{
|
|
492
497
|
type: BitTagType_1.BitTagType.group,
|
|
493
|
-
configKey:
|
|
498
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
494
499
|
},
|
|
495
500
|
{
|
|
496
501
|
type: BitTagType_1.BitTagType.tag,
|
|
497
|
-
configKey:
|
|
502
|
+
configKey: TagConfigKey_1.TagConfigKey.title,
|
|
498
503
|
},
|
|
499
504
|
],
|
|
500
505
|
resourceAttachmentAllowed: true,
|
|
@@ -534,7 +539,6 @@ const BITS = {
|
|
|
534
539
|
[BitType_1.AliasBitType.details1]: { since: '1.3.0' },
|
|
535
540
|
[BitType_1.AliasBitType.details]: { since: '1.3.0' },
|
|
536
541
|
[BitType_1.AliasBitType.editorial]: { since: '1.3.0' },
|
|
537
|
-
// [AliasBitType.example]:{ since: '1.3.0'},
|
|
538
542
|
[BitType_1.AliasBitType.editorNote]: { since: '1.3.0' },
|
|
539
543
|
[BitType_1.AliasBitType.featured]: { since: '1.3.0' },
|
|
540
544
|
[BitType_1.AliasBitType.help]: { since: '1.3.0' },
|
|
@@ -564,7 +568,6 @@ const BITS = {
|
|
|
564
568
|
[BitType_1.AliasBitType.note]: { since: '1.3.0' },
|
|
565
569
|
[BitType_1.AliasBitType.noteAi]: { since: '1.3.0' },
|
|
566
570
|
[BitType_1.AliasBitType.notebookArticle]: { since: '1.3.0' },
|
|
567
|
-
// [AliasBitType.page]:{ since: '1.3.0'},
|
|
568
571
|
[BitType_1.AliasBitType.preparationNote]: { since: '1.3.0' },
|
|
569
572
|
[BitType_1.AliasBitType.releaseNotesSummary]: { since: '1.3.0' },
|
|
570
573
|
[BitType_1.AliasBitType.remark]: { since: '1.3.0' },
|
|
@@ -575,7 +578,6 @@ const BITS = {
|
|
|
575
578
|
[BitType_1.AliasBitType.reviewApprovedNote]: { since: '1.3.0' },
|
|
576
579
|
[BitType_1.AliasBitType.selfAssessment]: { since: '1.3.0' },
|
|
577
580
|
[BitType_1.AliasBitType.sideNote]: { since: '1.3.0' },
|
|
578
|
-
// [AliasBitType.statement]:{ since: '1.3.0'},
|
|
579
581
|
[BitType_1.AliasBitType.summary]: { since: '1.3.0' },
|
|
580
582
|
[BitType_1.AliasBitType.summaryAi]: { since: '1.3.0' },
|
|
581
583
|
[BitType_1.AliasBitType.videoTranscript]: { since: '1.3.0' },
|
|
@@ -588,7 +590,7 @@ const BITS = {
|
|
|
588
590
|
tags: [
|
|
589
591
|
{
|
|
590
592
|
type: BitTagType_1.BitTagType.group,
|
|
591
|
-
configKey:
|
|
593
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
592
594
|
},
|
|
593
595
|
],
|
|
594
596
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._flashcards,
|
|
@@ -604,20 +606,20 @@ const BITS = {
|
|
|
604
606
|
tags: [
|
|
605
607
|
{
|
|
606
608
|
type: BitTagType_1.BitTagType.group,
|
|
607
|
-
configKey:
|
|
609
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
608
610
|
},
|
|
609
611
|
{
|
|
610
612
|
type: BitTagType_1.BitTagType.group,
|
|
611
|
-
configKey:
|
|
613
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
|
|
612
614
|
minCount: 1,
|
|
613
615
|
},
|
|
614
616
|
{
|
|
615
617
|
type: BitTagType_1.BitTagType.property,
|
|
616
|
-
configKey:
|
|
618
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.focusX,
|
|
617
619
|
},
|
|
618
620
|
{
|
|
619
621
|
type: BitTagType_1.BitTagType.property,
|
|
620
|
-
configKey:
|
|
622
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.focusY,
|
|
621
623
|
},
|
|
622
624
|
],
|
|
623
625
|
bodyAllowed: true,
|
|
@@ -627,11 +629,11 @@ const BITS = {
|
|
|
627
629
|
tags: [
|
|
628
630
|
{
|
|
629
631
|
type: BitTagType_1.BitTagType.group,
|
|
630
|
-
configKey:
|
|
632
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
631
633
|
},
|
|
632
634
|
{
|
|
633
635
|
type: BitTagType_1.BitTagType.group,
|
|
634
|
-
configKey:
|
|
636
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
|
|
635
637
|
},
|
|
636
638
|
],
|
|
637
639
|
resourceAttachmentAllowed: true,
|
|
@@ -642,11 +644,11 @@ const BITS = {
|
|
|
642
644
|
tags: [
|
|
643
645
|
{
|
|
644
646
|
type: BitTagType_1.BitTagType.group,
|
|
645
|
-
configKey:
|
|
647
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
646
648
|
},
|
|
647
649
|
{
|
|
648
650
|
type: BitTagType_1.BitTagType.group,
|
|
649
|
-
configKey:
|
|
651
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
|
|
650
652
|
minCount: 1,
|
|
651
653
|
},
|
|
652
654
|
],
|
|
@@ -668,6 +670,7 @@ const BITS = {
|
|
|
668
670
|
[BitType_1.AliasBitType.imageZoom]: { since: '1.3.0' },
|
|
669
671
|
[BitType_1.AliasBitType.langLifeSkillIcon]: { since: '1.3.0' },
|
|
670
672
|
[BitType_1.AliasBitType.lifeSkillSticker]: { since: '1.3.0' },
|
|
673
|
+
[BitType_1.AliasBitType.pageBanner]: { since: '1.4.3' },
|
|
671
674
|
[BitType_1.AliasBitType.screenshot]: { since: '1.3.0', deprecated: '1.4.0' },
|
|
672
675
|
},
|
|
673
676
|
},
|
|
@@ -676,11 +679,11 @@ const BITS = {
|
|
|
676
679
|
tags: [
|
|
677
680
|
{
|
|
678
681
|
type: BitTagType_1.BitTagType.group,
|
|
679
|
-
configKey:
|
|
682
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
680
683
|
},
|
|
681
684
|
{
|
|
682
685
|
type: BitTagType_1.BitTagType.group,
|
|
683
|
-
configKey:
|
|
686
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImageLink,
|
|
684
687
|
minCount: 1,
|
|
685
688
|
},
|
|
686
689
|
],
|
|
@@ -691,15 +694,15 @@ const BITS = {
|
|
|
691
694
|
tags: [
|
|
692
695
|
{
|
|
693
696
|
type: BitTagType_1.BitTagType.group,
|
|
694
|
-
configKey:
|
|
697
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
695
698
|
},
|
|
696
699
|
{
|
|
697
700
|
type: BitTagType_1.BitTagType.group,
|
|
698
|
-
configKey:
|
|
701
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
|
|
699
702
|
},
|
|
700
703
|
{
|
|
701
704
|
type: BitTagType_1.BitTagType.group,
|
|
702
|
-
configKey:
|
|
705
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_imageSource,
|
|
703
706
|
},
|
|
704
707
|
],
|
|
705
708
|
bodyAllowed: true,
|
|
@@ -709,12 +712,12 @@ const BITS = {
|
|
|
709
712
|
tags: [
|
|
710
713
|
{
|
|
711
714
|
type: BitTagType_1.BitTagType.group,
|
|
712
|
-
configKey:
|
|
715
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
713
716
|
},
|
|
714
717
|
{
|
|
715
718
|
// Combo resource
|
|
716
719
|
type: BitTagType_1.BitTagType.group,
|
|
717
|
-
configKey:
|
|
720
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImageResponsive,
|
|
718
721
|
},
|
|
719
722
|
],
|
|
720
723
|
bodyAllowed: true, // false??
|
|
@@ -724,11 +727,11 @@ const BITS = {
|
|
|
724
727
|
tags: [
|
|
725
728
|
{
|
|
726
729
|
type: BitTagType_1.BitTagType.group,
|
|
727
|
-
configKey:
|
|
730
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
728
731
|
},
|
|
729
732
|
{
|
|
730
733
|
type: BitTagType_1.BitTagType.tag,
|
|
731
|
-
configKey:
|
|
734
|
+
configKey: TagConfigKey_1.TagConfigKey.tag_reference,
|
|
732
735
|
},
|
|
733
736
|
],
|
|
734
737
|
bodyAllowed: true,
|
|
@@ -738,7 +741,11 @@ const BITS = {
|
|
|
738
741
|
tags: [
|
|
739
742
|
{
|
|
740
743
|
type: BitTagType_1.BitTagType.group,
|
|
741
|
-
configKey:
|
|
744
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
type: BitTagType_1.BitTagType.property,
|
|
748
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.reasonableNumOfChars,
|
|
742
749
|
},
|
|
743
750
|
],
|
|
744
751
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._questions,
|
|
@@ -755,11 +762,11 @@ const BITS = {
|
|
|
755
762
|
tags: [
|
|
756
763
|
{
|
|
757
764
|
type: BitTagType_1.BitTagType.group,
|
|
758
|
-
configKey:
|
|
765
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
759
766
|
},
|
|
760
767
|
{
|
|
761
768
|
type: BitTagType_1.BitTagType.group,
|
|
762
|
-
configKey:
|
|
769
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
|
|
763
770
|
},
|
|
764
771
|
],
|
|
765
772
|
resourceAttachmentAllowed: true,
|
|
@@ -768,7 +775,6 @@ const BITS = {
|
|
|
768
775
|
[BitType_1.AliasBitType.bookLink]: { since: '1.3.0' },
|
|
769
776
|
[BitType_1.AliasBitType.bookLinkNext]: { since: '1.3.0' },
|
|
770
777
|
[BitType_1.AliasBitType.bookLinkPrev]: { since: '1.3.0' },
|
|
771
|
-
[BitType_1.AliasBitType.learningPathBotTraining]: { since: '1.3.0' },
|
|
772
778
|
[BitType_1.AliasBitType.learningPathClassroomEvent]: { since: '1.3.0' },
|
|
773
779
|
[BitType_1.AliasBitType.learningPathClassroomTraining]: { since: '1.3.0' },
|
|
774
780
|
[BitType_1.AliasBitType.learningPathClosing]: { since: '1.3.0' },
|
|
@@ -779,24 +785,43 @@ const BITS = {
|
|
|
779
785
|
[BitType_1.AliasBitType.learningPathStep]: { since: '1.3.0' },
|
|
780
786
|
},
|
|
781
787
|
},
|
|
788
|
+
[BitType_1.RootBitType.learningPathBotTraining]: {
|
|
789
|
+
since: '1.3.0',
|
|
790
|
+
tags: [
|
|
791
|
+
{
|
|
792
|
+
type: BitTagType_1.BitTagType.group,
|
|
793
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
type: BitTagType_1.BitTagType.group,
|
|
797
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
type: BitTagType_1.BitTagType.property,
|
|
801
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.bot,
|
|
802
|
+
},
|
|
803
|
+
],
|
|
804
|
+
resourceAttachmentAllowed: true,
|
|
805
|
+
bodyAllowed: true,
|
|
806
|
+
},
|
|
782
807
|
[BitType_1.RootBitType.learningPathExternalLink]: {
|
|
783
808
|
since: '1.3.0',
|
|
784
809
|
tags: [
|
|
785
810
|
{
|
|
786
811
|
type: BitTagType_1.BitTagType.group,
|
|
787
|
-
configKey:
|
|
812
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
788
813
|
},
|
|
789
814
|
{
|
|
790
815
|
type: BitTagType_1.BitTagType.group,
|
|
791
|
-
configKey:
|
|
816
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
|
|
792
817
|
},
|
|
793
818
|
{
|
|
794
819
|
type: BitTagType_1.BitTagType.property,
|
|
795
|
-
configKey:
|
|
820
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.externalLink,
|
|
796
821
|
},
|
|
797
822
|
{
|
|
798
823
|
type: BitTagType_1.BitTagType.property,
|
|
799
|
-
configKey:
|
|
824
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.externalLinkText,
|
|
800
825
|
},
|
|
801
826
|
],
|
|
802
827
|
resourceAttachmentAllowed: true,
|
|
@@ -807,15 +832,15 @@ const BITS = {
|
|
|
807
832
|
tags: [
|
|
808
833
|
{
|
|
809
834
|
type: BitTagType_1.BitTagType.group,
|
|
810
|
-
configKey:
|
|
835
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
811
836
|
},
|
|
812
837
|
{
|
|
813
838
|
type: BitTagType_1.BitTagType.group,
|
|
814
|
-
configKey:
|
|
839
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_learningPathCommon,
|
|
815
840
|
},
|
|
816
841
|
{
|
|
817
842
|
type: BitTagType_1.BitTagType.property,
|
|
818
|
-
configKey:
|
|
843
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.videoCallLink,
|
|
819
844
|
},
|
|
820
845
|
],
|
|
821
846
|
resourceAttachmentAllowed: true,
|
|
@@ -826,15 +851,15 @@ const BITS = {
|
|
|
826
851
|
tags: [
|
|
827
852
|
{
|
|
828
853
|
type: BitTagType_1.BitTagType.group,
|
|
829
|
-
configKey:
|
|
854
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
830
855
|
},
|
|
831
856
|
{
|
|
832
857
|
type: BitTagType_1.BitTagType.group,
|
|
833
|
-
configKey:
|
|
858
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_markConfig,
|
|
834
859
|
},
|
|
835
860
|
{
|
|
836
861
|
type: BitTagType_1.BitTagType.group,
|
|
837
|
-
configKey:
|
|
862
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_mark,
|
|
838
863
|
},
|
|
839
864
|
],
|
|
840
865
|
resourceAttachmentAllowed: true,
|
|
@@ -845,7 +870,7 @@ const BITS = {
|
|
|
845
870
|
tags: [
|
|
846
871
|
{
|
|
847
872
|
type: BitTagType_1.BitTagType.group,
|
|
848
|
-
configKey:
|
|
873
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
849
874
|
},
|
|
850
875
|
],
|
|
851
876
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._matchPairs,
|
|
@@ -864,7 +889,7 @@ const BITS = {
|
|
|
864
889
|
tags: [
|
|
865
890
|
{
|
|
866
891
|
type: BitTagType_1.BitTagType.group,
|
|
867
|
-
configKey:
|
|
892
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
868
893
|
},
|
|
869
894
|
],
|
|
870
895
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._matchMatrix,
|
|
@@ -877,7 +902,7 @@ const BITS = {
|
|
|
877
902
|
tags: [
|
|
878
903
|
{
|
|
879
904
|
type: BitTagType_1.BitTagType.group,
|
|
880
|
-
configKey:
|
|
905
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
881
906
|
},
|
|
882
907
|
],
|
|
883
908
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._matchAudioPairs,
|
|
@@ -890,7 +915,7 @@ const BITS = {
|
|
|
890
915
|
tags: [
|
|
891
916
|
{
|
|
892
917
|
type: BitTagType_1.BitTagType.group,
|
|
893
|
-
configKey:
|
|
918
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
894
919
|
},
|
|
895
920
|
],
|
|
896
921
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._matchImagePairs,
|
|
@@ -903,11 +928,11 @@ const BITS = {
|
|
|
903
928
|
tags: [
|
|
904
929
|
{
|
|
905
930
|
type: BitTagType_1.BitTagType.group,
|
|
906
|
-
configKey:
|
|
931
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
907
932
|
},
|
|
908
933
|
{
|
|
909
934
|
type: BitTagType_1.BitTagType.group,
|
|
910
|
-
configKey:
|
|
935
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
|
|
911
936
|
},
|
|
912
937
|
],
|
|
913
938
|
resourceAttachmentAllowed: true,
|
|
@@ -921,11 +946,11 @@ const BITS = {
|
|
|
921
946
|
tags: [
|
|
922
947
|
{
|
|
923
948
|
type: BitTagType_1.BitTagType.group,
|
|
924
|
-
configKey:
|
|
949
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
925
950
|
},
|
|
926
951
|
{
|
|
927
952
|
type: BitTagType_1.BitTagType.group,
|
|
928
|
-
configKey:
|
|
953
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
|
|
929
954
|
}, // This is actually for multiple-choice-1, but we support it here as well (as many bits are wrong)
|
|
930
955
|
],
|
|
931
956
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._quiz,
|
|
@@ -941,11 +966,11 @@ const BITS = {
|
|
|
941
966
|
tags: [
|
|
942
967
|
{
|
|
943
968
|
type: BitTagType_1.BitTagType.group,
|
|
944
|
-
configKey:
|
|
969
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
945
970
|
},
|
|
946
971
|
{
|
|
947
972
|
type: BitTagType_1.BitTagType.group,
|
|
948
|
-
configKey:
|
|
973
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
|
|
949
974
|
},
|
|
950
975
|
],
|
|
951
976
|
resourceAttachmentAllowed: true,
|
|
@@ -960,11 +985,11 @@ const BITS = {
|
|
|
960
985
|
tags: [
|
|
961
986
|
{
|
|
962
987
|
type: BitTagType_1.BitTagType.group,
|
|
963
|
-
configKey:
|
|
988
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
964
989
|
},
|
|
965
990
|
{
|
|
966
991
|
type: BitTagType_1.BitTagType.group,
|
|
967
|
-
configKey:
|
|
992
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
|
|
968
993
|
},
|
|
969
994
|
],
|
|
970
995
|
resourceAttachmentAllowed: true,
|
|
@@ -978,11 +1003,11 @@ const BITS = {
|
|
|
978
1003
|
tags: [
|
|
979
1004
|
{
|
|
980
1005
|
type: BitTagType_1.BitTagType.group,
|
|
981
|
-
configKey:
|
|
1006
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
982
1007
|
},
|
|
983
1008
|
{
|
|
984
1009
|
type: BitTagType_1.BitTagType.group,
|
|
985
|
-
configKey:
|
|
1010
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_trueFalse,
|
|
986
1011
|
}, // This is actually for multiple-response-1, but we support it here as well (as many bits are wrong)
|
|
987
1012
|
],
|
|
988
1013
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._quiz,
|
|
@@ -993,16 +1018,31 @@ const BITS = {
|
|
|
993
1018
|
[BitType_1.AliasBitType.coachSelfReflectionMultipleResponse]: { since: '1.3.0' },
|
|
994
1019
|
},
|
|
995
1020
|
},
|
|
1021
|
+
[BitType_1.RootBitType.pageBuyButton]: {
|
|
1022
|
+
since: '1.4.3',
|
|
1023
|
+
tags: [
|
|
1024
|
+
{
|
|
1025
|
+
type: BitTagType_1.BitTagType.group,
|
|
1026
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
type: BitTagType_1.BitTagType.property,
|
|
1030
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.content2Buy,
|
|
1031
|
+
},
|
|
1032
|
+
],
|
|
1033
|
+
resourceAttachmentAllowed: true,
|
|
1034
|
+
bodyAllowed: true,
|
|
1035
|
+
},
|
|
996
1036
|
[BitType_1.RootBitType.photo]: {
|
|
997
1037
|
since: '1.3.0',
|
|
998
1038
|
tags: [
|
|
999
1039
|
{
|
|
1000
1040
|
type: BitTagType_1.BitTagType.group,
|
|
1001
|
-
configKey:
|
|
1041
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1002
1042
|
},
|
|
1003
1043
|
{
|
|
1004
1044
|
type: BitTagType_1.BitTagType.group,
|
|
1005
|
-
configKey:
|
|
1045
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
|
|
1006
1046
|
minCount: 1,
|
|
1007
1047
|
},
|
|
1008
1048
|
],
|
|
@@ -1013,11 +1053,11 @@ const BITS = {
|
|
|
1013
1053
|
tags: [
|
|
1014
1054
|
{
|
|
1015
1055
|
type: BitTagType_1.BitTagType.group,
|
|
1016
|
-
configKey:
|
|
1056
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1017
1057
|
},
|
|
1018
1058
|
{
|
|
1019
1059
|
type: BitTagType_1.BitTagType.property,
|
|
1020
|
-
configKey:
|
|
1060
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.quotedPerson,
|
|
1021
1061
|
},
|
|
1022
1062
|
],
|
|
1023
1063
|
bodyAllowed: true,
|
|
@@ -1027,7 +1067,7 @@ const BITS = {
|
|
|
1027
1067
|
tags: [
|
|
1028
1068
|
{
|
|
1029
1069
|
type: BitTagType_1.BitTagType.group,
|
|
1030
|
-
configKey:
|
|
1070
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1031
1071
|
},
|
|
1032
1072
|
],
|
|
1033
1073
|
bodyAllowed: true,
|
|
@@ -1040,11 +1080,11 @@ const BITS = {
|
|
|
1040
1080
|
tags: [
|
|
1041
1081
|
{
|
|
1042
1082
|
type: BitTagType_1.BitTagType.group,
|
|
1043
|
-
configKey:
|
|
1083
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1044
1084
|
},
|
|
1045
1085
|
{
|
|
1046
1086
|
type: BitTagType_1.BitTagType.property,
|
|
1047
|
-
configKey:
|
|
1087
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.releaseVersion,
|
|
1048
1088
|
},
|
|
1049
1089
|
],
|
|
1050
1090
|
resourceAttachmentAllowed: true,
|
|
@@ -1055,16 +1095,16 @@ const BITS = {
|
|
|
1055
1095
|
tags: [
|
|
1056
1096
|
{
|
|
1057
1097
|
type: BitTagType_1.BitTagType.group,
|
|
1058
|
-
configKey:
|
|
1098
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1059
1099
|
},
|
|
1060
1100
|
// Not sure if these are actually valid here, but include them as they are in the test bit.
|
|
1061
1101
|
{
|
|
1062
1102
|
type: BitTagType_1.BitTagType.tag,
|
|
1063
|
-
configKey:
|
|
1103
|
+
configKey: TagConfigKey_1.TagConfigKey.anchor,
|
|
1064
1104
|
},
|
|
1065
1105
|
{
|
|
1066
1106
|
type: BitTagType_1.BitTagType.tag,
|
|
1067
|
-
configKey:
|
|
1107
|
+
configKey: TagConfigKey_1.TagConfigKey.tag_reference,
|
|
1068
1108
|
},
|
|
1069
1109
|
],
|
|
1070
1110
|
resourceAttachmentAllowed: true,
|
|
@@ -1075,7 +1115,7 @@ const BITS = {
|
|
|
1075
1115
|
tags: [
|
|
1076
1116
|
{
|
|
1077
1117
|
type: BitTagType_1.BitTagType.group,
|
|
1078
|
-
configKey:
|
|
1118
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1079
1119
|
},
|
|
1080
1120
|
],
|
|
1081
1121
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._elements,
|
|
@@ -1089,12 +1129,12 @@ const BITS = {
|
|
|
1089
1129
|
tags: [
|
|
1090
1130
|
{
|
|
1091
1131
|
type: BitTagType_1.BitTagType.group,
|
|
1092
|
-
configKey:
|
|
1132
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1093
1133
|
},
|
|
1094
1134
|
{
|
|
1095
1135
|
// Combo resource
|
|
1096
1136
|
type: BitTagType_1.BitTagType.group,
|
|
1097
|
-
configKey:
|
|
1137
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceStillImageFilm,
|
|
1098
1138
|
},
|
|
1099
1139
|
],
|
|
1100
1140
|
bodyAllowed: true,
|
|
@@ -1104,11 +1144,11 @@ const BITS = {
|
|
|
1104
1144
|
tags: [
|
|
1105
1145
|
{
|
|
1106
1146
|
type: BitTagType_1.BitTagType.group,
|
|
1107
|
-
configKey:
|
|
1147
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1108
1148
|
},
|
|
1109
1149
|
{
|
|
1110
1150
|
type: BitTagType_1.BitTagType.group,
|
|
1111
|
-
configKey:
|
|
1151
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceStillImageFilmEmbed,
|
|
1112
1152
|
minCount: 1,
|
|
1113
1153
|
},
|
|
1114
1154
|
],
|
|
@@ -1119,11 +1159,11 @@ const BITS = {
|
|
|
1119
1159
|
tags: [
|
|
1120
1160
|
{
|
|
1121
1161
|
type: BitTagType_1.BitTagType.group,
|
|
1122
|
-
configKey:
|
|
1162
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1123
1163
|
},
|
|
1124
1164
|
{
|
|
1125
1165
|
type: BitTagType_1.BitTagType.group,
|
|
1126
|
-
configKey:
|
|
1166
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceStillImageFilmLink,
|
|
1127
1167
|
minCount: 1,
|
|
1128
1168
|
},
|
|
1129
1169
|
],
|
|
@@ -1134,7 +1174,7 @@ const BITS = {
|
|
|
1134
1174
|
tags: [
|
|
1135
1175
|
{
|
|
1136
1176
|
type: BitTagType_1.BitTagType.group,
|
|
1137
|
-
configKey:
|
|
1177
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1138
1178
|
},
|
|
1139
1179
|
],
|
|
1140
1180
|
resourceAttachmentAllowed: true,
|
|
@@ -1145,7 +1185,7 @@ const BITS = {
|
|
|
1145
1185
|
tags: [
|
|
1146
1186
|
{
|
|
1147
1187
|
type: BitTagType_1.BitTagType.group,
|
|
1148
|
-
configKey:
|
|
1188
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1149
1189
|
},
|
|
1150
1190
|
],
|
|
1151
1191
|
resourceAttachmentAllowed: true,
|
|
@@ -1156,7 +1196,7 @@ const BITS = {
|
|
|
1156
1196
|
tags: [
|
|
1157
1197
|
{
|
|
1158
1198
|
type: BitTagType_1.BitTagType.group,
|
|
1159
|
-
configKey:
|
|
1199
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1160
1200
|
},
|
|
1161
1201
|
],
|
|
1162
1202
|
bodyAllowed: true,
|
|
@@ -1186,23 +1226,23 @@ const BITS = {
|
|
|
1186
1226
|
tags: [
|
|
1187
1227
|
{
|
|
1188
1228
|
type: BitTagType_1.BitTagType.group,
|
|
1189
|
-
configKey:
|
|
1229
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1190
1230
|
},
|
|
1191
1231
|
{
|
|
1192
1232
|
type: BitTagType_1.BitTagType.property,
|
|
1193
|
-
configKey:
|
|
1233
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.labelTrue,
|
|
1194
1234
|
},
|
|
1195
1235
|
{
|
|
1196
1236
|
type: BitTagType_1.BitTagType.property,
|
|
1197
|
-
configKey:
|
|
1237
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.labelFalse,
|
|
1198
1238
|
},
|
|
1199
1239
|
{
|
|
1200
1240
|
type: BitTagType_1.BitTagType.tag,
|
|
1201
|
-
configKey:
|
|
1241
|
+
configKey: TagConfigKey_1.TagConfigKey.true,
|
|
1202
1242
|
},
|
|
1203
1243
|
{
|
|
1204
1244
|
type: BitTagType_1.BitTagType.tag,
|
|
1205
|
-
configKey:
|
|
1245
|
+
configKey: TagConfigKey_1.TagConfigKey.false,
|
|
1206
1246
|
},
|
|
1207
1247
|
],
|
|
1208
1248
|
resourceAttachmentAllowed: true,
|
|
@@ -1214,15 +1254,15 @@ const BITS = {
|
|
|
1214
1254
|
tags: [
|
|
1215
1255
|
{
|
|
1216
1256
|
type: BitTagType_1.BitTagType.group,
|
|
1217
|
-
configKey:
|
|
1257
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1218
1258
|
},
|
|
1219
1259
|
{
|
|
1220
1260
|
type: BitTagType_1.BitTagType.property,
|
|
1221
|
-
configKey:
|
|
1261
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.labelTrue,
|
|
1222
1262
|
},
|
|
1223
1263
|
{
|
|
1224
1264
|
type: BitTagType_1.BitTagType.property,
|
|
1225
|
-
configKey:
|
|
1265
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.labelFalse,
|
|
1226
1266
|
},
|
|
1227
1267
|
],
|
|
1228
1268
|
cardSet: CardSetConfigKey_1.CardSetConfigKey._statements,
|
|
@@ -1235,25 +1275,53 @@ const BITS = {
|
|
|
1235
1275
|
tags: [
|
|
1236
1276
|
{
|
|
1237
1277
|
type: BitTagType_1.BitTagType.group,
|
|
1238
|
-
configKey:
|
|
1278
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
type: BitTagType_1.BitTagType.property,
|
|
1282
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.padletId,
|
|
1283
|
+
},
|
|
1284
|
+
],
|
|
1285
|
+
bodyAllowed: true,
|
|
1286
|
+
},
|
|
1287
|
+
[BitType_1.RootBitType.vendorJupyterOutput]: {
|
|
1288
|
+
since: '1.4.3',
|
|
1289
|
+
tags: [
|
|
1290
|
+
{
|
|
1291
|
+
type: BitTagType_1.BitTagType.group,
|
|
1292
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
type: BitTagType_1.BitTagType.property,
|
|
1296
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.jupyterId,
|
|
1239
1297
|
},
|
|
1240
1298
|
{
|
|
1241
1299
|
type: BitTagType_1.BitTagType.property,
|
|
1242
|
-
configKey:
|
|
1300
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.jupyterExecutionCount,
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
type: BitTagType_1.BitTagType.property,
|
|
1304
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.computerLanguage,
|
|
1243
1305
|
},
|
|
1244
1306
|
],
|
|
1245
1307
|
bodyAllowed: true,
|
|
1308
|
+
aliases: {
|
|
1309
|
+
[BitType_1.AliasBitType.vendorJupyterCellCode]: { since: '1.4.3' },
|
|
1310
|
+
[BitType_1.AliasBitType.vendorJupyterCellMarkdown]: { since: '1.4.3' },
|
|
1311
|
+
[BitType_1.AliasBitType.vendorJupyterCellRaw]: { since: '1.4.3' },
|
|
1312
|
+
[BitType_1.AliasBitType.vendorJupyterIpynb]: { since: '1.4.3' },
|
|
1313
|
+
},
|
|
1246
1314
|
},
|
|
1247
1315
|
[BitType_1.RootBitType.video]: {
|
|
1248
1316
|
since: '1.3.0',
|
|
1249
1317
|
tags: [
|
|
1250
1318
|
{
|
|
1251
1319
|
type: BitTagType_1.BitTagType.group,
|
|
1252
|
-
configKey:
|
|
1320
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1253
1321
|
},
|
|
1254
1322
|
{
|
|
1255
1323
|
type: BitTagType_1.BitTagType.group,
|
|
1256
|
-
configKey:
|
|
1324
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceVideo,
|
|
1257
1325
|
minCount: 1,
|
|
1258
1326
|
},
|
|
1259
1327
|
],
|
|
@@ -1268,11 +1336,11 @@ const BITS = {
|
|
|
1268
1336
|
tags: [
|
|
1269
1337
|
{
|
|
1270
1338
|
type: BitTagType_1.BitTagType.group,
|
|
1271
|
-
configKey:
|
|
1339
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1272
1340
|
},
|
|
1273
1341
|
{
|
|
1274
1342
|
type: BitTagType_1.BitTagType.group,
|
|
1275
|
-
configKey:
|
|
1343
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceVideoEmbed,
|
|
1276
1344
|
minCount: 1,
|
|
1277
1345
|
},
|
|
1278
1346
|
],
|
|
@@ -1287,11 +1355,11 @@ const BITS = {
|
|
|
1287
1355
|
tags: [
|
|
1288
1356
|
{
|
|
1289
1357
|
type: BitTagType_1.BitTagType.group,
|
|
1290
|
-
configKey:
|
|
1358
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1291
1359
|
},
|
|
1292
1360
|
{
|
|
1293
1361
|
type: BitTagType_1.BitTagType.group,
|
|
1294
|
-
configKey:
|
|
1362
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceVideoLink,
|
|
1295
1363
|
minCount: 1,
|
|
1296
1364
|
},
|
|
1297
1365
|
],
|
|
@@ -1306,11 +1374,11 @@ const BITS = {
|
|
|
1306
1374
|
tags: [
|
|
1307
1375
|
{
|
|
1308
1376
|
type: BitTagType_1.BitTagType.group,
|
|
1309
|
-
configKey:
|
|
1377
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1310
1378
|
},
|
|
1311
1379
|
{
|
|
1312
1380
|
type: BitTagType_1.BitTagType.group,
|
|
1313
|
-
configKey:
|
|
1381
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceWebsiteLink,
|
|
1314
1382
|
minCount: 1,
|
|
1315
1383
|
},
|
|
1316
1384
|
],
|