@gmb/bitmark-parser-generator 1.4.16 → 1.4.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/cjs/BitmarkParserGenerator.js +2 -13
- package/dist/cjs/BitmarkParserGenerator.js.map +1 -1
- package/dist/cjs/ast/Builder.js +8 -8
- package/dist/cjs/ast/Builder.js.map +1 -1
- package/dist/cjs/ast/rules/NodeValidator.js +6 -23
- package/dist/cjs/ast/rules/NodeValidator.js.map +1 -1
- package/dist/cjs/config/Config.js +57 -86
- package/dist/cjs/config/Config.js.map +1 -1
- package/dist/cjs/config/raw/bits.js +388 -450
- package/dist/cjs/config/raw/bits.js.map +1 -1
- package/dist/cjs/config/raw/properties.js +37 -0
- package/dist/cjs/config/raw/properties.js.map +1 -1
- package/dist/cjs/generated/build-info.js +1 -1
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js +9 -11
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/cjs/generator/json/JsonGenerator.js +236 -208
- package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
- package/dist/cjs/index.js +2 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/info/InfoBuilder.js +10 -33
- package/dist/cjs/info/InfoBuilder.js.map +1 -1
- package/dist/cjs/model/ast/NodeType.js +16 -0
- package/dist/cjs/model/ast/NodeType.js.map +1 -1
- package/dist/cjs/model/config/BitConfig.js +8 -7
- package/dist/cjs/model/config/BitConfig.js.map +1 -1
- package/dist/cjs/model/config/enum/PropertyConfigKey.js +7 -0
- package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/cjs/model/enum/BitType.js +86 -84
- package/dist/cjs/model/enum/BitType.js.map +1 -1
- package/dist/cjs/model/enum/PropertyAstKey.js +2 -0
- package/dist/cjs/model/enum/PropertyAstKey.js.map +1 -1
- package/dist/cjs/model/enum/PropertyTag.js +5 -0
- package/dist/cjs/model/enum/PropertyTag.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js +14 -14
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +6 -6
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +11 -10
- package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +52 -47
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/{CommentTagContentProcessor.js → InternalCommentTagContentProcessor.js} +5 -5
- package/dist/cjs/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -0
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +2 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +15 -17
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +14 -11
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/json/JsonParser.js +9 -9
- package/dist/cjs/parser/json/JsonParser.js.map +1 -1
- package/dist/cjs/utils/ObjectUtils.js +62 -0
- package/dist/cjs/utils/ObjectUtils.js.map +1 -1
- package/dist/esm/BitmarkParserGenerator.js +2 -13
- package/dist/esm/BitmarkParserGenerator.js.map +1 -1
- package/dist/esm/ast/Builder.js +9 -9
- package/dist/esm/ast/Builder.js.map +1 -1
- package/dist/esm/ast/rules/NodeValidator.js +6 -23
- package/dist/esm/ast/rules/NodeValidator.js.map +1 -1
- package/dist/esm/config/Config.js +57 -86
- package/dist/esm/config/Config.js.map +1 -1
- package/dist/esm/config/raw/bits.js +389 -451
- package/dist/esm/config/raw/bits.js.map +1 -1
- package/dist/esm/config/raw/properties.js +37 -0
- package/dist/esm/config/raw/properties.js.map +1 -1
- package/dist/esm/generated/build-info.js +1 -1
- package/dist/esm/generator/bitmark/BitmarkGenerator.js +10 -12
- package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/esm/generator/json/JsonGenerator.js +237 -209
- package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/info/InfoBuilder.js +11 -34
- package/dist/esm/info/InfoBuilder.js.map +1 -1
- package/dist/esm/model/ast/NodeType.js +16 -0
- package/dist/esm/model/ast/NodeType.js.map +1 -1
- package/dist/esm/model/config/BitConfig.js +8 -7
- package/dist/esm/model/config/BitConfig.js.map +1 -1
- package/dist/esm/model/config/enum/PropertyConfigKey.js +7 -0
- package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/esm/model/enum/BitType.js +85 -82
- package/dist/esm/model/enum/BitType.js.map +1 -1
- package/dist/esm/model/enum/PropertyAstKey.js +2 -0
- package/dist/esm/model/enum/PropertyAstKey.js.map +1 -1
- package/dist/esm/model/enum/PropertyTag.js +5 -0
- package/dist/esm/model/enum/PropertyTag.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js +15 -15
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +6 -6
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +12 -11
- package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +53 -48
- package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/{CommentTagContentProcessor.js → InternalCommentTagContentProcessor.js} +5 -5
- package/dist/esm/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -0
- package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +2 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +16 -18
- package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +15 -12
- package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/json/JsonParser.js +10 -10
- package/dist/esm/parser/json/JsonParser.js.map +1 -1
- package/dist/esm/utils/ObjectUtils.js +59 -0
- package/dist/esm/utils/ObjectUtils.js.map +1 -1
- package/dist/types/BitmarkParserGenerator.d.ts.map +1 -1
- package/dist/types/ast/Builder.d.ts +9 -2
- package/dist/types/ast/Builder.d.ts.map +1 -1
- package/dist/types/ast/rules/NodeValidator.d.ts +0 -1
- package/dist/types/ast/rules/NodeValidator.d.ts.map +1 -1
- package/dist/types/config/Config.d.ts +16 -28
- package/dist/types/config/Config.d.ts.map +1 -1
- package/dist/types/config/raw/bits.d.ts.map +1 -1
- package/dist/types/config/raw/properties.d.ts.map +1 -1
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +4 -4
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
- package/dist/types/generator/json/JsonGenerator.d.ts +22 -22
- package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
- package/dist/types/generator/text/TextGenerator.d.ts +2 -2
- package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/info/InfoBuilder.d.ts +3 -4
- package/dist/types/info/InfoBuilder.d.ts.map +1 -1
- package/dist/types/model/ast/NodeType.d.ts +32 -0
- package/dist/types/model/ast/NodeType.d.ts.map +1 -1
- package/dist/types/model/ast/Nodes.d.ts +9 -2
- package/dist/types/model/ast/Nodes.d.ts.map +1 -1
- package/dist/types/model/config/BitConfig.d.ts +5 -4
- package/dist/types/model/config/BitConfig.d.ts.map +1 -1
- package/dist/types/model/config/_Config.d.ts +3 -5
- package/dist/types/model/config/_Config.d.ts.map +1 -1
- package/dist/types/model/config/enum/ConfigKey.d.ts +14 -0
- package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts +21 -0
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
- package/dist/types/model/enum/BitType.d.ts +171 -178
- package/dist/types/model/enum/BitType.d.ts.map +1 -1
- package/dist/types/model/enum/PropertyAstKey.d.ts +4 -0
- package/dist/types/model/enum/PropertyAstKey.d.ts.map +1 -1
- package/dist/types/model/enum/PropertyTag.d.ts +10 -0
- package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
- package/dist/types/model/json/BitJson.d.ts +5 -0
- package/dist/types/model/json/BitJson.d.ts.map +1 -1
- package/dist/types/model/json/ParserJson.d.ts +1 -1
- package/dist/types/model/json/ParserJson.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +6 -6
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts +6 -6
- package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts +5 -0
- package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts.map +1 -0
- package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/PartnerChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts +3 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts +3 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts +2 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
- package/dist/types/utils/ObjectUtils.d.ts +9 -0
- package/dist/types/utils/ObjectUtils.d.ts.map +1 -1
- package/package.json +3 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.js.map +0 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.js.map +0 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.d.ts +0 -5
- package/dist/types/parser/bitmark/peg/contentProcessors/CommentTagContentProcessor.d.ts.map +0 -1
|
@@ -1,202 +1,42 @@
|
|
|
1
1
|
import { EnumType } from '@ncoderz/superenum';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* The bit type
|
|
5
|
-
*
|
|
6
|
-
* This will be a root bit type or alias bit type, and is the definitive type of the bit
|
|
7
|
-
*/
|
|
8
|
-
alias: RootOrAliasBitTypeType;
|
|
9
|
-
/**
|
|
10
|
-
* The root bit type
|
|
11
|
-
*
|
|
12
|
-
* This defines the behaviour of the bit.
|
|
13
|
-
*/
|
|
14
|
-
root: RootBitTypeType;
|
|
15
|
-
}
|
|
16
|
-
export type RootBitTypeType = EnumType<typeof RootBitType>;
|
|
17
|
-
export type AliasBitTypeType = EnumType<typeof AliasBitType>;
|
|
18
|
-
export type RootOrAliasBitTypeType = RootBitTypeType | AliasBitTypeType;
|
|
19
|
-
declare const RootBitType: Readonly<{
|
|
2
|
+
declare const BitType: Readonly<{
|
|
20
3
|
_error: "_error";
|
|
21
4
|
_comment: "_comment";
|
|
22
|
-
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
23
|
-
appFlashcards: "app-flashcards";
|
|
24
|
-
appLink: "app-link";
|
|
25
|
-
article: "article";
|
|
26
|
-
articleEmbed: "article-embed";
|
|
27
|
-
articleLink: "article-link";
|
|
28
|
-
audio: "audio";
|
|
29
|
-
audioEmbed: "audio-embed";
|
|
30
|
-
audioLink: "audio-link";
|
|
31
|
-
bitAlias: "bit-alias";
|
|
32
|
-
book: "book";
|
|
33
|
-
bookAlias: "book-alias";
|
|
34
|
-
botActionResponse: "bot-action-response";
|
|
35
|
-
botActionSend: "bot-action-send";
|
|
36
|
-
browserImage: "browser-image";
|
|
37
|
-
card1: "card-1";
|
|
38
|
-
chapter: "chapter";
|
|
39
|
-
cloze: "cloze";
|
|
40
|
-
clozeAndMultipleChoiceText: "cloze-and-multiple-choice-text";
|
|
41
|
-
clozeList: "cloze-list";
|
|
42
|
-
code: "code";
|
|
43
|
-
conversationLeft1: "conversation-left-1";
|
|
44
|
-
document: "document";
|
|
45
|
-
documentDownload: "document-download";
|
|
46
|
-
documentEmbed: "document-embed";
|
|
47
|
-
documentLink: "document-link";
|
|
48
|
-
essay: "essay";
|
|
49
|
-
example: "example";
|
|
50
|
-
exampleList: "example-list";
|
|
51
|
-
flashcard: "flashcard";
|
|
52
|
-
focusImage: "focus-image";
|
|
53
|
-
highlightText: "highlight-text";
|
|
54
|
-
image: "image";
|
|
55
|
-
imageLink: "image-link";
|
|
56
|
-
imageOnDevice: "image-on-device";
|
|
57
|
-
imageResponsive: "image-responsive";
|
|
58
|
-
internalLink: "internal-link";
|
|
59
|
-
interview: "interview";
|
|
60
|
-
learningPathBook: "learning-path-book";
|
|
61
|
-
learningPathBotTraining: "learning-path-bot-training";
|
|
62
|
-
learningPathExternalLink: "learning-path-external-link";
|
|
63
|
-
learningPathVideoCall: "learning-path-video-call";
|
|
64
|
-
mark: "mark";
|
|
65
|
-
match: "match";
|
|
66
|
-
matchAudio: "match-audio";
|
|
67
|
-
matchMatrix: "match-matrix";
|
|
68
|
-
matchPicture: "match-picture";
|
|
69
|
-
multipleChoice: "multiple-choice";
|
|
70
|
-
multipleChoice1: "multiple-choice-1";
|
|
71
|
-
multipleChoiceText: "multiple-choice-text";
|
|
72
|
-
multipleResponse: "multiple-response";
|
|
73
|
-
multipleResponse1: "multiple-response-1";
|
|
74
|
-
page: "page";
|
|
75
|
-
pageBuyButton: "page-buy-button";
|
|
76
|
-
photo: "photo";
|
|
77
|
-
quote: "quote";
|
|
78
|
-
rating: "rating";
|
|
79
|
-
releaseNote: "release-note";
|
|
80
|
-
sampleSolution: "sample-solution";
|
|
81
|
-
sequence: "sequence";
|
|
82
|
-
stillImageFilm: "still-image-film";
|
|
83
|
-
stillImageFilmEmbed: "still-image-film-embed";
|
|
84
|
-
stillImageFilmLink: "still-image-film-link";
|
|
85
|
-
survey: "survey";
|
|
86
|
-
surveyAnonymous: "survey-anonymous";
|
|
87
|
-
toc: "toc";
|
|
88
|
-
trueFalse: "true-false";
|
|
89
|
-
trueFalse1: "true-false-1";
|
|
90
|
-
reviewNote: "review-note";
|
|
91
|
-
vendorPadletEmbed: "vendor-padlet-embed";
|
|
92
|
-
vendorJupyterOutput: "vendor-jupyter-output";
|
|
93
|
-
video: "video";
|
|
94
|
-
videoEmbed: "video-embed";
|
|
95
|
-
videoLink: "video-link";
|
|
96
|
-
websiteLink: "website-link";
|
|
97
|
-
}> & import("@ncoderz/superenum").EnumExtensions<EnumType<{
|
|
98
|
-
_error: "_error";
|
|
99
|
-
_comment: "_comment";
|
|
100
|
-
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
101
|
-
appFlashcards: "app-flashcards";
|
|
102
|
-
appLink: "app-link";
|
|
103
|
-
article: "article";
|
|
104
|
-
articleEmbed: "article-embed";
|
|
105
|
-
articleLink: "article-link";
|
|
106
|
-
audio: "audio";
|
|
107
|
-
audioEmbed: "audio-embed";
|
|
108
|
-
audioLink: "audio-link";
|
|
109
|
-
bitAlias: "bit-alias";
|
|
110
|
-
book: "book";
|
|
111
|
-
bookAlias: "book-alias";
|
|
112
|
-
botActionResponse: "bot-action-response";
|
|
113
|
-
botActionSend: "bot-action-send";
|
|
114
|
-
browserImage: "browser-image";
|
|
115
|
-
card1: "card-1";
|
|
116
|
-
chapter: "chapter";
|
|
117
|
-
cloze: "cloze";
|
|
118
|
-
clozeAndMultipleChoiceText: "cloze-and-multiple-choice-text";
|
|
119
|
-
clozeList: "cloze-list";
|
|
120
|
-
code: "code";
|
|
121
|
-
conversationLeft1: "conversation-left-1";
|
|
122
|
-
document: "document";
|
|
123
|
-
documentDownload: "document-download";
|
|
124
|
-
documentEmbed: "document-embed";
|
|
125
|
-
documentLink: "document-link";
|
|
126
|
-
essay: "essay";
|
|
127
|
-
example: "example";
|
|
128
|
-
exampleList: "example-list";
|
|
129
|
-
flashcard: "flashcard";
|
|
130
|
-
focusImage: "focus-image";
|
|
131
|
-
highlightText: "highlight-text";
|
|
132
|
-
image: "image";
|
|
133
|
-
imageLink: "image-link";
|
|
134
|
-
imageOnDevice: "image-on-device";
|
|
135
|
-
imageResponsive: "image-responsive";
|
|
136
|
-
internalLink: "internal-link";
|
|
137
|
-
interview: "interview";
|
|
138
|
-
learningPathBook: "learning-path-book";
|
|
139
|
-
learningPathBotTraining: "learning-path-bot-training";
|
|
140
|
-
learningPathExternalLink: "learning-path-external-link";
|
|
141
|
-
learningPathVideoCall: "learning-path-video-call";
|
|
142
|
-
mark: "mark";
|
|
143
|
-
match: "match";
|
|
144
|
-
matchAudio: "match-audio";
|
|
145
|
-
matchMatrix: "match-matrix";
|
|
146
|
-
matchPicture: "match-picture";
|
|
147
|
-
multipleChoice: "multiple-choice";
|
|
148
|
-
multipleChoice1: "multiple-choice-1";
|
|
149
|
-
multipleChoiceText: "multiple-choice-text";
|
|
150
|
-
multipleResponse: "multiple-response";
|
|
151
|
-
multipleResponse1: "multiple-response-1";
|
|
152
|
-
page: "page";
|
|
153
|
-
pageBuyButton: "page-buy-button";
|
|
154
|
-
photo: "photo";
|
|
155
|
-
quote: "quote";
|
|
156
|
-
rating: "rating";
|
|
157
|
-
releaseNote: "release-note";
|
|
158
|
-
sampleSolution: "sample-solution";
|
|
159
|
-
sequence: "sequence";
|
|
160
|
-
stillImageFilm: "still-image-film";
|
|
161
|
-
stillImageFilmEmbed: "still-image-film-embed";
|
|
162
|
-
stillImageFilmLink: "still-image-film-link";
|
|
163
|
-
survey: "survey";
|
|
164
|
-
surveyAnonymous: "survey-anonymous";
|
|
165
|
-
toc: "toc";
|
|
166
|
-
trueFalse: "true-false";
|
|
167
|
-
trueFalse1: "true-false-1";
|
|
168
|
-
reviewNote: "review-note";
|
|
169
|
-
vendorPadletEmbed: "vendor-padlet-embed";
|
|
170
|
-
vendorJupyterOutput: "vendor-jupyter-output";
|
|
171
|
-
video: "video";
|
|
172
|
-
videoEmbed: "video-embed";
|
|
173
|
-
videoLink: "video-link";
|
|
174
|
-
websiteLink: "website-link";
|
|
175
|
-
}>>;
|
|
176
|
-
declare const AliasBitType: Readonly<{
|
|
177
5
|
aiPrompt: "ai-prompt";
|
|
178
6
|
anchor: "anchor";
|
|
179
7
|
appAiPrompt: "app-ai-prompt";
|
|
180
8
|
appBitmarkFromEditor: "app-bitmark-from-editor";
|
|
9
|
+
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
181
10
|
appCodeCell: "app-code-cell";
|
|
182
11
|
appCodeEditor: "app-code-editor";
|
|
183
12
|
appCodeIde: "app-code-ide";
|
|
184
13
|
appCreateBitsFromImage: "app-create-bits-from-image";
|
|
14
|
+
appFlashcards: "app-flashcards";
|
|
185
15
|
appFlashcardsLearn: "app-flashcards-learn";
|
|
186
16
|
appFlashcardsQuiz: "app-flashcards-quiz";
|
|
187
17
|
appGetScreenshot: "app-get-screenshot";
|
|
18
|
+
appLink: "app-link";
|
|
19
|
+
article: "article";
|
|
188
20
|
articleAi: "article-ai";
|
|
189
21
|
articleAttachment: "article-attachment";
|
|
22
|
+
articleEmbed: "article-embed";
|
|
23
|
+
articleLink: "article-link";
|
|
190
24
|
assignment: "assignment";
|
|
191
25
|
assignmentList: "assignment-list";
|
|
26
|
+
audio: "audio";
|
|
27
|
+
audioEmbed: "audio-embed";
|
|
28
|
+
audioLink: "audio-link";
|
|
192
29
|
audioTranscript: "audio-transcript";
|
|
30
|
+
bitAlias: "bit-alias";
|
|
193
31
|
bitBookEnding: "bit-book-ending";
|
|
194
32
|
bitBookSummary: "bit-book-summary";
|
|
195
33
|
bitmarkExample: "bitmark-example";
|
|
196
34
|
blogArticle: "blog-article";
|
|
35
|
+
book: "book";
|
|
197
36
|
bookAcknowledgments: "book-acknowledgments";
|
|
198
37
|
bookAddendum: "book-addendum";
|
|
199
38
|
bookAfterword: "book-afterword";
|
|
39
|
+
bookAlias: "book-alias";
|
|
200
40
|
bookAppendix: "book-appendix";
|
|
201
41
|
bookArticle: "book-article";
|
|
202
42
|
bookAutherBio: "book-author-bio";
|
|
@@ -231,15 +71,23 @@ declare const AliasBitType: Readonly<{
|
|
|
231
71
|
botActionAnnounce: "bot-action-announce";
|
|
232
72
|
botActionRatingNumber: "bot-action-rating-number";
|
|
233
73
|
botActionRemind: "bot-action-remind";
|
|
74
|
+
botActionResponse: "bot-action-response";
|
|
234
75
|
botActionSave: "bot-action-save";
|
|
76
|
+
botActionSend: "bot-action-send";
|
|
235
77
|
botActionTrueFalse: "bot-action-true-false";
|
|
236
78
|
botInterview: "bot-interview";
|
|
79
|
+
browserImage: "browser-image";
|
|
237
80
|
bug: "bug";
|
|
238
81
|
buttonCopyText: "button-copy-text";
|
|
82
|
+
card1: "card-1";
|
|
83
|
+
chapter: "chapter";
|
|
239
84
|
chapterSubjectMatter: "chapter-subject-matter";
|
|
240
85
|
chat: "chat";
|
|
241
86
|
checklist: "checklist";
|
|
87
|
+
cloze: "cloze";
|
|
88
|
+
clozeAndMultipleChoiceText: "cloze-and-multiple-choice-text";
|
|
242
89
|
clozeInstructionGrouped: "cloze-instruction-grouped";
|
|
90
|
+
clozeList: "cloze-list";
|
|
243
91
|
clozeSolutionGrouped: "cloze-solution-grouped";
|
|
244
92
|
coachAudioTranscript: "coach-audio-transcript";
|
|
245
93
|
coachCallToActionChecklist: "coach-call-to-action-checklist";
|
|
@@ -257,9 +105,11 @@ declare const AliasBitType: Readonly<{
|
|
|
257
105
|
coachSelfReflectionMultipleResponse1: "coach-self-reflection-multiple-response-1";
|
|
258
106
|
coachSelfReflectionRating: "coach-self-reflection-rating";
|
|
259
107
|
coachVideoTranscript: "coach-video-transcript";
|
|
108
|
+
code: "code";
|
|
260
109
|
codeRuntime: "code-runtime";
|
|
261
110
|
conclusion: "conclusion";
|
|
262
111
|
consoleLog: "console-log";
|
|
112
|
+
conversationLeft1: "conversation-left-1";
|
|
263
113
|
conversationLeft1Scream: "conversation-left-1-scream";
|
|
264
114
|
conversationLeft1Thought: "conversation-left-1-thought";
|
|
265
115
|
conversationRight1: "conversation-right-1";
|
|
@@ -284,29 +134,45 @@ declare const AliasBitType: Readonly<{
|
|
|
284
134
|
details: "details";
|
|
285
135
|
details1: "details-1";
|
|
286
136
|
detailsImage: "details-image";
|
|
137
|
+
document: "document";
|
|
138
|
+
documentDownload: "document-download";
|
|
139
|
+
documentEmbed: "document-embed";
|
|
140
|
+
documentLink: "document-link";
|
|
287
141
|
documentUpload: "document-upload";
|
|
288
142
|
editorial: "editorial";
|
|
289
143
|
editorNote: "editor-note";
|
|
144
|
+
essay: "essay";
|
|
145
|
+
example: "example";
|
|
146
|
+
exampleList: "example-list";
|
|
290
147
|
featured: "featured";
|
|
291
148
|
figure: "figure";
|
|
149
|
+
flashcard: "flashcard";
|
|
292
150
|
flashcard1: "flashcard-1";
|
|
151
|
+
focusImage: "focus-image";
|
|
293
152
|
footNote: "foot-note";
|
|
294
153
|
groupBorn: "group-born";
|
|
295
154
|
groupDied: "group-died";
|
|
296
155
|
help: "help";
|
|
156
|
+
highlightText: "highlight-text";
|
|
297
157
|
hint: "hint";
|
|
158
|
+
image: "image";
|
|
298
159
|
imageBanner: "image-banner";
|
|
299
160
|
imageFigure: "image-figure";
|
|
300
161
|
imageLandscape: "image-landscape";
|
|
162
|
+
imageLink: "image-link";
|
|
301
163
|
imageMood: "image-mood";
|
|
164
|
+
imageOnDevice: "image-on-device";
|
|
302
165
|
imagePortrait: "image-portrait";
|
|
303
166
|
imagePrototype: "image-prototype";
|
|
167
|
+
imageResponsive: "image-responsive";
|
|
304
168
|
imageScreenshot: "image-screenshot";
|
|
305
169
|
imageSeparator: "image-separator";
|
|
306
170
|
imageStyled: "image-styled";
|
|
307
171
|
imageSuperWide: "image-super-wide";
|
|
308
172
|
imageZoom: "image-zoom";
|
|
309
173
|
info: "info";
|
|
174
|
+
internalLink: "internal-link";
|
|
175
|
+
interview: "interview";
|
|
310
176
|
interviewInstructionGrouped: "interview-instruction-grouped";
|
|
311
177
|
langAudioScript: "lang-audio-script";
|
|
312
178
|
langEnablingLanguageSkills: "lang-enabling-language-skills";
|
|
@@ -328,6 +194,8 @@ declare const AliasBitType: Readonly<{
|
|
|
328
194
|
langUsefulPhrases: "lang-useful-phrases";
|
|
329
195
|
langVideoScript: "lang-video-script";
|
|
330
196
|
langVocabulary: "lang-vocabulary";
|
|
197
|
+
learningPathBook: "learning-path-book";
|
|
198
|
+
learningPathBotTraining: "learning-path-bot-training";
|
|
331
199
|
learningPathClassroomEvent: "learning-path-classroom-event";
|
|
332
200
|
learningPathClassroomTraining: "learning-path-classroom-training";
|
|
333
201
|
learningPathClosing: "learning-path-closing";
|
|
@@ -339,76 +207,131 @@ declare const AliasBitType: Readonly<{
|
|
|
339
207
|
learningPathStep: "learning-path-step";
|
|
340
208
|
learningPathVideoCall: "learning-path-video-call";
|
|
341
209
|
lifeSkillSticker: "life-skill-sticker";
|
|
210
|
+
mark: "mark";
|
|
211
|
+
match: "match";
|
|
342
212
|
matchAll: "match-all";
|
|
343
213
|
matchAllReverse: "match-all-reverse";
|
|
214
|
+
matchAudio: "match-audio";
|
|
215
|
+
matchMatrix: "match-matrix";
|
|
216
|
+
matchPicture: "match-picture";
|
|
344
217
|
matchReverse: "match-reverse";
|
|
345
218
|
matchSolutionGrouped: "match-solution-grouped";
|
|
346
219
|
message: "message";
|
|
220
|
+
multipleChoice: "multiple-choice";
|
|
221
|
+
multipleChoice1: "multiple-choice-1";
|
|
222
|
+
multipleChoiceText: "multiple-choice-text";
|
|
223
|
+
multipleResponse: "multiple-response";
|
|
224
|
+
multipleResponse1: "multiple-response-1";
|
|
347
225
|
newspaperArticle: "newspaper-article";
|
|
348
226
|
note: "note";
|
|
349
227
|
noteAi: "note-ai";
|
|
350
228
|
notebookArticle: "notebook-article";
|
|
351
229
|
output: "output";
|
|
230
|
+
page: "page";
|
|
352
231
|
pageBanner: "page-banner";
|
|
232
|
+
pageBuyButton: "page-buy-button";
|
|
353
233
|
pageFooter: "page-footer";
|
|
234
|
+
pageProduct: "page-product";
|
|
235
|
+
pageProductList: "page-product-list";
|
|
236
|
+
pageProductVideo: "page-product-video";
|
|
237
|
+
pageProductVideoList: "page-product-video-list";
|
|
238
|
+
pageSectionFolder: "page-section-folder";
|
|
239
|
+
photo: "photo";
|
|
354
240
|
preparationNote: "preparation-note";
|
|
355
241
|
question1: "question-1";
|
|
242
|
+
quote: "quote";
|
|
243
|
+
rating: "rating";
|
|
356
244
|
recordAudio: "record-audio";
|
|
245
|
+
releaseNote: "release-note";
|
|
357
246
|
releaseNotesSummary: "release-notes-summary";
|
|
358
247
|
remark: "remark";
|
|
359
248
|
reviewApprovedNote: "review-approved-note";
|
|
360
249
|
reviewAuthorNote: "review-author-note";
|
|
250
|
+
reviewNote: "review-note";
|
|
361
251
|
reviewRequestForReviewNote: "review-request-for-review-note";
|
|
362
252
|
reviewReviewerNote: "review-reviewer-note";
|
|
253
|
+
sampleSolution: "sample-solution";
|
|
363
254
|
screenshot: "screenshot";
|
|
364
255
|
selfAssessment: "self-assessment";
|
|
365
256
|
separator: "separator";
|
|
257
|
+
sequence: "sequence";
|
|
366
258
|
sideNote: "side-note";
|
|
367
259
|
statement: "statement";
|
|
368
260
|
stdout: "stdout";
|
|
261
|
+
step: "step";
|
|
262
|
+
stepImageScreenshot: "step-image-screenshot";
|
|
263
|
+
stepImageScreenshotWithPointer: "step-image-screenshot-with-pointer";
|
|
369
264
|
stickyNote: "sticky-note";
|
|
265
|
+
stillImageFilm: "still-image-film";
|
|
266
|
+
stillImageFilmEmbed: "still-image-film-embed";
|
|
267
|
+
stillImageFilmLink: "still-image-film-link";
|
|
370
268
|
summary: "summary";
|
|
371
269
|
summaryAi: "summary-ai";
|
|
270
|
+
survey: "survey";
|
|
372
271
|
survey1: "survey-1";
|
|
272
|
+
surveyAnonymous: "survey-anonymous";
|
|
373
273
|
surveyAnonymous1: "survey-anonymous-1";
|
|
374
274
|
takePicture: "take-picture";
|
|
275
|
+
toc: "toc";
|
|
276
|
+
trueFalse: "true-false";
|
|
277
|
+
trueFalse1: "true-false-1";
|
|
375
278
|
vendorJupyterCellCode: "vendor-jupyter-cell-code";
|
|
376
279
|
vendorJupyterCellMarkdown: "vendor-jupyter-cell-markdown";
|
|
377
280
|
vendorJupyterCellRaw: "vendor-jupyter-cell-raw";
|
|
378
281
|
vendorJupyterIpynb: "vendor-jupyter-ipynb";
|
|
379
|
-
|
|
380
|
-
|
|
282
|
+
vendorJupyterOutput: "vendor-jupyter-output";
|
|
283
|
+
vendorPadletEmbed: "vendor-padlet-embed";
|
|
284
|
+
video: "video";
|
|
285
|
+
videoEmbed: "video-embed";
|
|
381
286
|
videoEmbedLandscape: "video-embed-landscape";
|
|
382
287
|
videoEmbedPortrait: "video-embed-portrait";
|
|
288
|
+
videoLandscape: "video-landscape";
|
|
289
|
+
videoLink: "video-link";
|
|
383
290
|
videoLinkLandscape: "video-link-landscape";
|
|
384
291
|
videoLinkPortrait: "video-link-portrait";
|
|
292
|
+
videoPortrait: "video-portrait";
|
|
385
293
|
videoTranscript: "video-transcript";
|
|
386
294
|
warning: "warning";
|
|
295
|
+
websiteLink: "website-link";
|
|
387
296
|
workbookArticle: "workbook-article";
|
|
388
297
|
}> & import("@ncoderz/superenum").EnumExtensions<EnumType<{
|
|
298
|
+
_error: "_error";
|
|
299
|
+
_comment: "_comment";
|
|
389
300
|
aiPrompt: "ai-prompt";
|
|
390
301
|
anchor: "anchor";
|
|
391
302
|
appAiPrompt: "app-ai-prompt";
|
|
392
303
|
appBitmarkFromEditor: "app-bitmark-from-editor";
|
|
304
|
+
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
393
305
|
appCodeCell: "app-code-cell";
|
|
394
306
|
appCodeEditor: "app-code-editor";
|
|
395
307
|
appCodeIde: "app-code-ide";
|
|
396
308
|
appCreateBitsFromImage: "app-create-bits-from-image";
|
|
309
|
+
appFlashcards: "app-flashcards";
|
|
397
310
|
appFlashcardsLearn: "app-flashcards-learn";
|
|
398
311
|
appFlashcardsQuiz: "app-flashcards-quiz";
|
|
399
312
|
appGetScreenshot: "app-get-screenshot";
|
|
313
|
+
appLink: "app-link";
|
|
314
|
+
article: "article";
|
|
400
315
|
articleAi: "article-ai";
|
|
401
316
|
articleAttachment: "article-attachment";
|
|
317
|
+
articleEmbed: "article-embed";
|
|
318
|
+
articleLink: "article-link";
|
|
402
319
|
assignment: "assignment";
|
|
403
320
|
assignmentList: "assignment-list";
|
|
321
|
+
audio: "audio";
|
|
322
|
+
audioEmbed: "audio-embed";
|
|
323
|
+
audioLink: "audio-link";
|
|
404
324
|
audioTranscript: "audio-transcript";
|
|
325
|
+
bitAlias: "bit-alias";
|
|
405
326
|
bitBookEnding: "bit-book-ending";
|
|
406
327
|
bitBookSummary: "bit-book-summary";
|
|
407
328
|
bitmarkExample: "bitmark-example";
|
|
408
329
|
blogArticle: "blog-article";
|
|
330
|
+
book: "book";
|
|
409
331
|
bookAcknowledgments: "book-acknowledgments";
|
|
410
332
|
bookAddendum: "book-addendum";
|
|
411
333
|
bookAfterword: "book-afterword";
|
|
334
|
+
bookAlias: "book-alias";
|
|
412
335
|
bookAppendix: "book-appendix";
|
|
413
336
|
bookArticle: "book-article";
|
|
414
337
|
bookAutherBio: "book-author-bio";
|
|
@@ -443,15 +366,23 @@ declare const AliasBitType: Readonly<{
|
|
|
443
366
|
botActionAnnounce: "bot-action-announce";
|
|
444
367
|
botActionRatingNumber: "bot-action-rating-number";
|
|
445
368
|
botActionRemind: "bot-action-remind";
|
|
369
|
+
botActionResponse: "bot-action-response";
|
|
446
370
|
botActionSave: "bot-action-save";
|
|
371
|
+
botActionSend: "bot-action-send";
|
|
447
372
|
botActionTrueFalse: "bot-action-true-false";
|
|
448
373
|
botInterview: "bot-interview";
|
|
374
|
+
browserImage: "browser-image";
|
|
449
375
|
bug: "bug";
|
|
450
376
|
buttonCopyText: "button-copy-text";
|
|
377
|
+
card1: "card-1";
|
|
378
|
+
chapter: "chapter";
|
|
451
379
|
chapterSubjectMatter: "chapter-subject-matter";
|
|
452
380
|
chat: "chat";
|
|
453
381
|
checklist: "checklist";
|
|
382
|
+
cloze: "cloze";
|
|
383
|
+
clozeAndMultipleChoiceText: "cloze-and-multiple-choice-text";
|
|
454
384
|
clozeInstructionGrouped: "cloze-instruction-grouped";
|
|
385
|
+
clozeList: "cloze-list";
|
|
455
386
|
clozeSolutionGrouped: "cloze-solution-grouped";
|
|
456
387
|
coachAudioTranscript: "coach-audio-transcript";
|
|
457
388
|
coachCallToActionChecklist: "coach-call-to-action-checklist";
|
|
@@ -469,9 +400,11 @@ declare const AliasBitType: Readonly<{
|
|
|
469
400
|
coachSelfReflectionMultipleResponse1: "coach-self-reflection-multiple-response-1";
|
|
470
401
|
coachSelfReflectionRating: "coach-self-reflection-rating";
|
|
471
402
|
coachVideoTranscript: "coach-video-transcript";
|
|
403
|
+
code: "code";
|
|
472
404
|
codeRuntime: "code-runtime";
|
|
473
405
|
conclusion: "conclusion";
|
|
474
406
|
consoleLog: "console-log";
|
|
407
|
+
conversationLeft1: "conversation-left-1";
|
|
475
408
|
conversationLeft1Scream: "conversation-left-1-scream";
|
|
476
409
|
conversationLeft1Thought: "conversation-left-1-thought";
|
|
477
410
|
conversationRight1: "conversation-right-1";
|
|
@@ -496,29 +429,45 @@ declare const AliasBitType: Readonly<{
|
|
|
496
429
|
details: "details";
|
|
497
430
|
details1: "details-1";
|
|
498
431
|
detailsImage: "details-image";
|
|
432
|
+
document: "document";
|
|
433
|
+
documentDownload: "document-download";
|
|
434
|
+
documentEmbed: "document-embed";
|
|
435
|
+
documentLink: "document-link";
|
|
499
436
|
documentUpload: "document-upload";
|
|
500
437
|
editorial: "editorial";
|
|
501
438
|
editorNote: "editor-note";
|
|
439
|
+
essay: "essay";
|
|
440
|
+
example: "example";
|
|
441
|
+
exampleList: "example-list";
|
|
502
442
|
featured: "featured";
|
|
503
443
|
figure: "figure";
|
|
444
|
+
flashcard: "flashcard";
|
|
504
445
|
flashcard1: "flashcard-1";
|
|
446
|
+
focusImage: "focus-image";
|
|
505
447
|
footNote: "foot-note";
|
|
506
448
|
groupBorn: "group-born";
|
|
507
449
|
groupDied: "group-died";
|
|
508
450
|
help: "help";
|
|
451
|
+
highlightText: "highlight-text";
|
|
509
452
|
hint: "hint";
|
|
453
|
+
image: "image";
|
|
510
454
|
imageBanner: "image-banner";
|
|
511
455
|
imageFigure: "image-figure";
|
|
512
456
|
imageLandscape: "image-landscape";
|
|
457
|
+
imageLink: "image-link";
|
|
513
458
|
imageMood: "image-mood";
|
|
459
|
+
imageOnDevice: "image-on-device";
|
|
514
460
|
imagePortrait: "image-portrait";
|
|
515
461
|
imagePrototype: "image-prototype";
|
|
462
|
+
imageResponsive: "image-responsive";
|
|
516
463
|
imageScreenshot: "image-screenshot";
|
|
517
464
|
imageSeparator: "image-separator";
|
|
518
465
|
imageStyled: "image-styled";
|
|
519
466
|
imageSuperWide: "image-super-wide";
|
|
520
467
|
imageZoom: "image-zoom";
|
|
521
468
|
info: "info";
|
|
469
|
+
internalLink: "internal-link";
|
|
470
|
+
interview: "interview";
|
|
522
471
|
interviewInstructionGrouped: "interview-instruction-grouped";
|
|
523
472
|
langAudioScript: "lang-audio-script";
|
|
524
473
|
langEnablingLanguageSkills: "lang-enabling-language-skills";
|
|
@@ -540,6 +489,8 @@ declare const AliasBitType: Readonly<{
|
|
|
540
489
|
langUsefulPhrases: "lang-useful-phrases";
|
|
541
490
|
langVideoScript: "lang-video-script";
|
|
542
491
|
langVocabulary: "lang-vocabulary";
|
|
492
|
+
learningPathBook: "learning-path-book";
|
|
493
|
+
learningPathBotTraining: "learning-path-bot-training";
|
|
543
494
|
learningPathClassroomEvent: "learning-path-classroom-event";
|
|
544
495
|
learningPathClassroomTraining: "learning-path-classroom-training";
|
|
545
496
|
learningPathClosing: "learning-path-closing";
|
|
@@ -551,52 +502,94 @@ declare const AliasBitType: Readonly<{
|
|
|
551
502
|
learningPathStep: "learning-path-step";
|
|
552
503
|
learningPathVideoCall: "learning-path-video-call";
|
|
553
504
|
lifeSkillSticker: "life-skill-sticker";
|
|
505
|
+
mark: "mark";
|
|
506
|
+
match: "match";
|
|
554
507
|
matchAll: "match-all";
|
|
555
508
|
matchAllReverse: "match-all-reverse";
|
|
509
|
+
matchAudio: "match-audio";
|
|
510
|
+
matchMatrix: "match-matrix";
|
|
511
|
+
matchPicture: "match-picture";
|
|
556
512
|
matchReverse: "match-reverse";
|
|
557
513
|
matchSolutionGrouped: "match-solution-grouped";
|
|
558
514
|
message: "message";
|
|
515
|
+
multipleChoice: "multiple-choice";
|
|
516
|
+
multipleChoice1: "multiple-choice-1";
|
|
517
|
+
multipleChoiceText: "multiple-choice-text";
|
|
518
|
+
multipleResponse: "multiple-response";
|
|
519
|
+
multipleResponse1: "multiple-response-1";
|
|
559
520
|
newspaperArticle: "newspaper-article";
|
|
560
521
|
note: "note";
|
|
561
522
|
noteAi: "note-ai";
|
|
562
523
|
notebookArticle: "notebook-article";
|
|
563
524
|
output: "output";
|
|
525
|
+
page: "page";
|
|
564
526
|
pageBanner: "page-banner";
|
|
527
|
+
pageBuyButton: "page-buy-button";
|
|
565
528
|
pageFooter: "page-footer";
|
|
529
|
+
pageProduct: "page-product";
|
|
530
|
+
pageProductList: "page-product-list";
|
|
531
|
+
pageProductVideo: "page-product-video";
|
|
532
|
+
pageProductVideoList: "page-product-video-list";
|
|
533
|
+
pageSectionFolder: "page-section-folder";
|
|
534
|
+
photo: "photo";
|
|
566
535
|
preparationNote: "preparation-note";
|
|
567
536
|
question1: "question-1";
|
|
537
|
+
quote: "quote";
|
|
538
|
+
rating: "rating";
|
|
568
539
|
recordAudio: "record-audio";
|
|
540
|
+
releaseNote: "release-note";
|
|
569
541
|
releaseNotesSummary: "release-notes-summary";
|
|
570
542
|
remark: "remark";
|
|
571
543
|
reviewApprovedNote: "review-approved-note";
|
|
572
544
|
reviewAuthorNote: "review-author-note";
|
|
545
|
+
reviewNote: "review-note";
|
|
573
546
|
reviewRequestForReviewNote: "review-request-for-review-note";
|
|
574
547
|
reviewReviewerNote: "review-reviewer-note";
|
|
548
|
+
sampleSolution: "sample-solution";
|
|
575
549
|
screenshot: "screenshot";
|
|
576
550
|
selfAssessment: "self-assessment";
|
|
577
551
|
separator: "separator";
|
|
552
|
+
sequence: "sequence";
|
|
578
553
|
sideNote: "side-note";
|
|
579
554
|
statement: "statement";
|
|
580
555
|
stdout: "stdout";
|
|
556
|
+
step: "step";
|
|
557
|
+
stepImageScreenshot: "step-image-screenshot";
|
|
558
|
+
stepImageScreenshotWithPointer: "step-image-screenshot-with-pointer";
|
|
581
559
|
stickyNote: "sticky-note";
|
|
560
|
+
stillImageFilm: "still-image-film";
|
|
561
|
+
stillImageFilmEmbed: "still-image-film-embed";
|
|
562
|
+
stillImageFilmLink: "still-image-film-link";
|
|
582
563
|
summary: "summary";
|
|
583
564
|
summaryAi: "summary-ai";
|
|
565
|
+
survey: "survey";
|
|
584
566
|
survey1: "survey-1";
|
|
567
|
+
surveyAnonymous: "survey-anonymous";
|
|
585
568
|
surveyAnonymous1: "survey-anonymous-1";
|
|
586
569
|
takePicture: "take-picture";
|
|
570
|
+
toc: "toc";
|
|
571
|
+
trueFalse: "true-false";
|
|
572
|
+
trueFalse1: "true-false-1";
|
|
587
573
|
vendorJupyterCellCode: "vendor-jupyter-cell-code";
|
|
588
574
|
vendorJupyterCellMarkdown: "vendor-jupyter-cell-markdown";
|
|
589
575
|
vendorJupyterCellRaw: "vendor-jupyter-cell-raw";
|
|
590
576
|
vendorJupyterIpynb: "vendor-jupyter-ipynb";
|
|
591
|
-
|
|
592
|
-
|
|
577
|
+
vendorJupyterOutput: "vendor-jupyter-output";
|
|
578
|
+
vendorPadletEmbed: "vendor-padlet-embed";
|
|
579
|
+
video: "video";
|
|
580
|
+
videoEmbed: "video-embed";
|
|
593
581
|
videoEmbedLandscape: "video-embed-landscape";
|
|
594
582
|
videoEmbedPortrait: "video-embed-portrait";
|
|
583
|
+
videoLandscape: "video-landscape";
|
|
584
|
+
videoLink: "video-link";
|
|
595
585
|
videoLinkLandscape: "video-link-landscape";
|
|
596
586
|
videoLinkPortrait: "video-link-portrait";
|
|
587
|
+
videoPortrait: "video-portrait";
|
|
597
588
|
videoTranscript: "video-transcript";
|
|
598
589
|
warning: "warning";
|
|
590
|
+
websiteLink: "website-link";
|
|
599
591
|
workbookArticle: "workbook-article";
|
|
600
592
|
}>>;
|
|
601
|
-
export
|
|
593
|
+
export type BitTypeType = EnumType<typeof BitType>;
|
|
594
|
+
export { BitType };
|
|
602
595
|
//# sourceMappingURL=BitType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BitType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/BitType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"BitType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/BitType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuSX,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;AAEnD,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -9,11 +9,15 @@ declare const PropertyAstKey: Readonly<{
|
|
|
9
9
|
isCaseSensitive: "isCaseSensitive";
|
|
10
10
|
referenceProperty: "referenceProperty";
|
|
11
11
|
markConfig: "markConfig";
|
|
12
|
+
productList: "productList";
|
|
13
|
+
productVideoList: "productVideoList";
|
|
12
14
|
}> & import("@ncoderz/superenum").EnumExtensions<EnumType<{
|
|
13
15
|
aiGenerated: "aiGenerated";
|
|
14
16
|
isCaseSensitive: "isCaseSensitive";
|
|
15
17
|
referenceProperty: "referenceProperty";
|
|
16
18
|
markConfig: "markConfig";
|
|
19
|
+
productList: "productList";
|
|
20
|
+
productVideoList: "productVideoList";
|
|
17
21
|
}>>;
|
|
18
22
|
export type PropertyAstKeyType = EnumType<typeof PropertyAstKey>;
|
|
19
23
|
export { PropertyAstKey };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PropertyAstKey.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/PropertyAstKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;;;GAIG;AACH,QAAA,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"PropertyAstKey.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/PropertyAstKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;;;GAIG;AACH,QAAA,MAAM,cAAc;;;;;;;;;;;;;;GAOlB,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CAAC,OAAO,cAAc,CAAC,CAAC;AAEjE,OAAO,EAAE,cAAc,EAAE,CAAC"}
|
|
@@ -55,7 +55,12 @@ declare const PropertyTag: Readonly<{
|
|
|
55
55
|
padletId: "padletId";
|
|
56
56
|
partialAnswer: "partialAnswer";
|
|
57
57
|
partner: "partner";
|
|
58
|
+
pointerLeft: "pointerLeft";
|
|
59
|
+
pointerTop: "pointerTop";
|
|
58
60
|
posterImage: "posterImage";
|
|
61
|
+
product: "product";
|
|
62
|
+
productVideo: "productVideo";
|
|
63
|
+
productFolder: "productFolder";
|
|
59
64
|
progress: "progress";
|
|
60
65
|
publications: "publications";
|
|
61
66
|
publisher: "publisher";
|
|
@@ -145,7 +150,12 @@ declare const PropertyTag: Readonly<{
|
|
|
145
150
|
padletId: "padletId";
|
|
146
151
|
partialAnswer: "partialAnswer";
|
|
147
152
|
partner: "partner";
|
|
153
|
+
pointerLeft: "pointerLeft";
|
|
154
|
+
pointerTop: "pointerTop";
|
|
148
155
|
posterImage: "posterImage";
|
|
156
|
+
product: "product";
|
|
157
|
+
productVideo: "productVideo";
|
|
158
|
+
productFolder: "productFolder";
|
|
149
159
|
progress: "progress";
|
|
150
160
|
publications: "publications";
|
|
151
161
|
publisher: "publisher";
|