@gmb/bitmark-parser-generator 5.6.0 → 5.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/browser/cjs/index.cjs +120 -55
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +75 -54
- package/dist/browser/esm/index.d.ts +75 -54
- package/dist/browser/esm/index.js +120 -55
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +120 -55
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +120 -55
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +75 -54
- package/dist/index.d.ts +75 -54
- package/dist/index.js +120 -55
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -254,6 +254,7 @@ declare const BitType: {
|
|
|
254
254
|
readonly extractorPageWithBlocks: "extractor-page-with-blocks";
|
|
255
255
|
readonly extractorPageWithBlocksCollapsible: "extractor-page-with-blocks-collapsible";
|
|
256
256
|
readonly extractorRepeatedText: "extractor-repeated-text";
|
|
257
|
+
readonly extractorTheme: "extractor-theme";
|
|
257
258
|
readonly featured: "featured";
|
|
258
259
|
readonly feedback: "feedback";
|
|
259
260
|
readonly figure: "figure";
|
|
@@ -469,6 +470,9 @@ declare const BitType: {
|
|
|
469
470
|
readonly reviewApprovedNote: "review-approved-note";
|
|
470
471
|
readonly reviewAuthorNote: "review-author-note";
|
|
471
472
|
readonly reviewCustomerNote: "review-customer-note";
|
|
473
|
+
readonly reviewError: "review-error";
|
|
474
|
+
readonly reviewErrorAi: "review-error-ai";
|
|
475
|
+
readonly reviewErrorTranslation: "review-error-translation";
|
|
472
476
|
readonly reviewNote: "review-note";
|
|
473
477
|
readonly reviewRequestForReviewNote: "review-request-for-review-note";
|
|
474
478
|
readonly reviewReviewerNote: "review-reviewer-note";
|
|
@@ -786,6 +790,8 @@ declare const ConfigKey: {
|
|
|
786
790
|
readonly property_disableFeedback: "@disableFeedback";
|
|
787
791
|
readonly property_duration: "@duration";
|
|
788
792
|
readonly property_isEditable: "@isEditable";
|
|
793
|
+
readonly property_needsValidation: "@needsValidation";
|
|
794
|
+
readonly property_validationDate: "@validationDate";
|
|
789
795
|
readonly property_emphasis: "@emphasis";
|
|
790
796
|
readonly property_example: "@example";
|
|
791
797
|
readonly property_externalId: "@externalId";
|
|
@@ -963,6 +969,7 @@ declare const ConfigKey: {
|
|
|
963
969
|
readonly property_technicalTerm: "@technicalTerm";
|
|
964
970
|
readonly property_textReference: "@textReference";
|
|
965
971
|
readonly property_theme: "@theme";
|
|
972
|
+
readonly property_rtl: "@rtl";
|
|
966
973
|
readonly property_thumbImage: "@thumbImage";
|
|
967
974
|
readonly property_title: "@title";
|
|
968
975
|
readonly property_toc: "@toc";
|
|
@@ -1625,6 +1632,8 @@ interface BitJson {
|
|
|
1625
1632
|
isTemplate: boolean;
|
|
1626
1633
|
isTemplateStripTheme: boolean;
|
|
1627
1634
|
isEditable: boolean;
|
|
1635
|
+
needsValidation: boolean;
|
|
1636
|
+
validationDate: string;
|
|
1628
1637
|
aiGenerated: boolean;
|
|
1629
1638
|
machineTranslated: string;
|
|
1630
1639
|
translationOf: string;
|
|
@@ -2230,6 +2239,8 @@ interface Bit {
|
|
|
2230
2239
|
isTemplate?: Property;
|
|
2231
2240
|
isTemplateStripTheme?: Property;
|
|
2232
2241
|
isEditable?: Property;
|
|
2242
|
+
needsValidation?: Property;
|
|
2243
|
+
validationDate?: Property;
|
|
2233
2244
|
aiGenerated?: Property;
|
|
2234
2245
|
machineTranslated?: Property;
|
|
2235
2246
|
translationOf?: Property;
|
|
@@ -2260,6 +2271,7 @@ interface Bit {
|
|
|
2260
2271
|
publisher?: Property;
|
|
2261
2272
|
publisherName?: Property;
|
|
2262
2273
|
theme?: Property;
|
|
2274
|
+
rtl?: Property;
|
|
2263
2275
|
computerLanguage?: Property;
|
|
2264
2276
|
target?: Property;
|
|
2265
2277
|
slug?: Property;
|
|
@@ -2559,10 +2571,6 @@ declare const NodeType: {
|
|
|
2559
2571
|
readonly advertisingClickUrl: "advertisingClickUrl";
|
|
2560
2572
|
readonly advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
2561
2573
|
readonly ageRange: "ageRange";
|
|
2562
|
-
readonly brandColor: "brandColor";
|
|
2563
|
-
readonly brandColorValue: "brandColorValue";
|
|
2564
|
-
readonly brandColorName: "brandColorName";
|
|
2565
|
-
readonly brandColorNameValue: "brandColorNameValue";
|
|
2566
2574
|
readonly ageRangeValue: "ageRangeValue";
|
|
2567
2575
|
readonly aiGenerated: "aiGenerated";
|
|
2568
2576
|
readonly aiGeneratedValue: "aiGeneratedValue";
|
|
@@ -2589,7 +2597,6 @@ declare const NodeType: {
|
|
|
2589
2597
|
readonly audioEmbed: "audioEmbed";
|
|
2590
2598
|
readonly audioLink: "audioLink";
|
|
2591
2599
|
readonly author: "author";
|
|
2592
|
-
readonly authorValue: "authorValue";
|
|
2593
2600
|
readonly authorFullName: "authorFullName";
|
|
2594
2601
|
readonly authorFullNameValue: "authorFullNameValue";
|
|
2595
2602
|
readonly authorJobTitle: "authorJobTitle";
|
|
@@ -2598,6 +2605,7 @@ declare const NodeType: {
|
|
|
2598
2605
|
readonly authorPseudonymValue: "authorPseudonymValue";
|
|
2599
2606
|
readonly authorTitle: "authorTitle";
|
|
2600
2607
|
readonly authorTitleValue: "authorTitleValue";
|
|
2608
|
+
readonly authorValue: "authorValue";
|
|
2601
2609
|
readonly availableClassifications: "availableClassifications";
|
|
2602
2610
|
readonly availableClassificationsValue: "availableClassificationsValue";
|
|
2603
2611
|
readonly avatarImage: "avatarImage";
|
|
@@ -2644,6 +2652,10 @@ declare const NodeType: {
|
|
|
2644
2652
|
readonly botResponses: "botResponses";
|
|
2645
2653
|
readonly botResponsesValue: "botResponsesValue";
|
|
2646
2654
|
readonly botValue: "botValue";
|
|
2655
|
+
readonly brandColor: "brandColor";
|
|
2656
|
+
readonly brandColorName: "brandColorName";
|
|
2657
|
+
readonly brandColorNameValue: "brandColorNameValue";
|
|
2658
|
+
readonly brandColorValue: "brandColorValue";
|
|
2647
2659
|
readonly bubbleTag: "bubbleTag";
|
|
2648
2660
|
readonly bubbleTagValue: "bubbleTagValue";
|
|
2649
2661
|
readonly buttonCaption: "buttonCaption";
|
|
@@ -2739,6 +2751,8 @@ declare const NodeType: {
|
|
|
2739
2751
|
readonly elementsValueValue: "elementsValueValue";
|
|
2740
2752
|
readonly emphasis: "emphasis";
|
|
2741
2753
|
readonly end: "end";
|
|
2754
|
+
readonly enforceUpdateOverUserInput: "enforceUpdateOverUserInput";
|
|
2755
|
+
readonly enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue";
|
|
2742
2756
|
readonly errors: "errors";
|
|
2743
2757
|
readonly errorsValue: "errorsValue";
|
|
2744
2758
|
readonly example: "example";
|
|
@@ -2747,6 +2761,8 @@ declare const NodeType: {
|
|
|
2747
2761
|
readonly externalIdValue: "externalIdValue";
|
|
2748
2762
|
readonly externalLink: "externalLink";
|
|
2749
2763
|
readonly externalLinkText: "externalLinkText";
|
|
2764
|
+
readonly extractorExtractionTimestamp: "extractorExtractionTimestamp";
|
|
2765
|
+
readonly extractorExtractionTimestampValue: "extractorExtractionTimestampValue";
|
|
2750
2766
|
readonly extractorTag: "extractorTag";
|
|
2751
2767
|
readonly extractorTagValue: "extractorTagValue";
|
|
2752
2768
|
readonly extraProperties: "extraProperties";
|
|
@@ -2765,8 +2781,8 @@ declare const NodeType: {
|
|
|
2765
2781
|
readonly focusY: "focusY";
|
|
2766
2782
|
readonly focusYValue: "focusYValue";
|
|
2767
2783
|
readonly footer: "footer";
|
|
2768
|
-
readonly footerValue: "footerValue";
|
|
2769
2784
|
readonly footerText: "footerText";
|
|
2785
|
+
readonly footerValue: "footerValue";
|
|
2770
2786
|
readonly forKeys: "forKeys";
|
|
2771
2787
|
readonly format: "format";
|
|
2772
2788
|
readonly formula: "formula";
|
|
@@ -2790,6 +2806,8 @@ declare const NodeType: {
|
|
|
2790
2806
|
readonly hasBookNavigationValue: "hasBookNavigationValue";
|
|
2791
2807
|
readonly hasMarkAsDone: "hasMarkAsDone";
|
|
2792
2808
|
readonly hasMarkAsDoneValue: "hasMarkAsDoneValue";
|
|
2809
|
+
readonly hasPrintRestriction: "hasPrintRestriction";
|
|
2810
|
+
readonly hasPrintRestrictionValue: "hasPrintRestrictionValue";
|
|
2793
2811
|
readonly head: "head";
|
|
2794
2812
|
readonly heading: "heading";
|
|
2795
2813
|
readonly height: "height";
|
|
@@ -2804,8 +2822,8 @@ declare const NodeType: {
|
|
|
2804
2822
|
readonly iconValue: "iconValue";
|
|
2805
2823
|
readonly id: "id";
|
|
2806
2824
|
readonly idValue: "idValue";
|
|
2807
|
-
readonly iframeSrc: "iframeSrc";
|
|
2808
2825
|
readonly iframeName: "iframeName";
|
|
2826
|
+
readonly iframeSrc: "iframeSrc";
|
|
2809
2827
|
readonly image: "image";
|
|
2810
2828
|
readonly imageFirst: "imageFirst";
|
|
2811
2829
|
readonly imageFirstValue: "imageFirstValue";
|
|
@@ -2825,12 +2843,6 @@ declare const NodeType: {
|
|
|
2825
2843
|
readonly internalCommentValue: "internalCommentValue";
|
|
2826
2844
|
readonly internalPrintPdf: "internalPrintPdf";
|
|
2827
2845
|
readonly internalPrintPdfValue: "internalPrintPdfValue";
|
|
2828
|
-
readonly hasPrintRestriction: "hasPrintRestriction";
|
|
2829
|
-
readonly hasPrintRestrictionValue: "hasPrintRestrictionValue";
|
|
2830
|
-
readonly enforceUpdateOverUserInput: "enforceUpdateOverUserInput";
|
|
2831
|
-
readonly enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue";
|
|
2832
|
-
readonly extractorExtractionTimestamp: "extractorExtractionTimestamp";
|
|
2833
|
-
readonly extractorExtractionTimestampValue: "extractorExtractionTimestampValue";
|
|
2834
2846
|
readonly isCaseSensitive: "isCaseSensitive";
|
|
2835
2847
|
readonly isCommented: "isCommented";
|
|
2836
2848
|
readonly isCorrect: "isCorrect";
|
|
@@ -2849,8 +2861,8 @@ declare const NodeType: {
|
|
|
2849
2861
|
readonly isTracked: "isTracked";
|
|
2850
2862
|
readonly isTrackedValue: "isTrackedValue";
|
|
2851
2863
|
readonly item: "item";
|
|
2852
|
-
readonly itemValue: "itemValue";
|
|
2853
2864
|
readonly itemLead: "itemLead";
|
|
2865
|
+
readonly itemValue: "itemValue";
|
|
2854
2866
|
readonly jobTitle: "jobTitle";
|
|
2855
2867
|
readonly jobTitleValue: "jobTitleValue";
|
|
2856
2868
|
readonly jupyterExecutionCount: "jupyterExecutionCount";
|
|
@@ -2897,10 +2909,6 @@ declare const NodeType: {
|
|
|
2897
2909
|
readonly locationValue: "locationValue";
|
|
2898
2910
|
readonly machineTranslated: "machineTranslated";
|
|
2899
2911
|
readonly machineTranslatedValue: "machineTranslatedValue";
|
|
2900
|
-
readonly translationOf: "translationOf";
|
|
2901
|
-
readonly translationOfValue: "translationOfValue";
|
|
2902
|
-
readonly spansPageBreak: "spansPageBreak";
|
|
2903
|
-
readonly spansPageBreakValue: "spansPageBreakValue";
|
|
2904
2912
|
readonly mailingList: "mailingList";
|
|
2905
2913
|
readonly marginNumber: "marginNumber";
|
|
2906
2914
|
readonly marginNumberValue: "marginNumberValue";
|
|
@@ -2921,6 +2929,8 @@ declare const NodeType: {
|
|
|
2921
2929
|
readonly message: "message";
|
|
2922
2930
|
readonly mockupId: "mockupId";
|
|
2923
2931
|
readonly name: "name";
|
|
2932
|
+
readonly needsValidation: "needsValidation";
|
|
2933
|
+
readonly needsValidationValue: "needsValidationValue";
|
|
2924
2934
|
readonly offset: "offset";
|
|
2925
2935
|
readonly options: "options";
|
|
2926
2936
|
readonly optionsValue: "optionsValue";
|
|
@@ -2933,8 +2943,6 @@ declare const NodeType: {
|
|
|
2933
2943
|
readonly pageNumber: "pageNumber";
|
|
2934
2944
|
readonly pageNumberValue: "pageNumberValue";
|
|
2935
2945
|
readonly pageValue: "pageValue";
|
|
2936
|
-
readonly printParentChapterLevel: "printParentChapterLevel";
|
|
2937
|
-
readonly printParentChapterLevelValue: "printParentChapterLevelValue";
|
|
2938
2946
|
readonly pairs: "pairs";
|
|
2939
2947
|
readonly pairsValue: "pairsValue";
|
|
2940
2948
|
readonly parent: "parent";
|
|
@@ -2943,55 +2951,55 @@ declare const NodeType: {
|
|
|
2943
2951
|
readonly partialAnswerValue: "partialAnswerValue";
|
|
2944
2952
|
readonly path: "path";
|
|
2945
2953
|
readonly pathValue: "pathValue";
|
|
2954
|
+
readonly person: "person";
|
|
2955
|
+
readonly platformBackgroundColor: "platformBackgroundColor";
|
|
2956
|
+
readonly platformBackgroundColorValue: "platformBackgroundColorValue";
|
|
2957
|
+
readonly platformBackgroundImage: "platformBackgroundImage";
|
|
2958
|
+
readonly platformBackgroundImageValue: "platformBackgroundImageValue";
|
|
2959
|
+
readonly platformBaseLayerColor: "platformBaseLayerColor";
|
|
2960
|
+
readonly platformBaseLayerColorValue: "platformBaseLayerColorValue";
|
|
2961
|
+
readonly platformBorderColor: "platformBorderColor";
|
|
2962
|
+
readonly platformBorderColorValue: "platformBorderColorValue";
|
|
2963
|
+
readonly platformBorderRadius: "platformBorderRadius";
|
|
2964
|
+
readonly platformBorderRadiusValue: "platformBorderRadiusValue";
|
|
2946
2965
|
readonly platformBrandTarget: "platformBrandTarget";
|
|
2947
2966
|
readonly platformBrandTargetValue: "platformBrandTargetValue";
|
|
2948
|
-
readonly
|
|
2949
|
-
readonly
|
|
2967
|
+
readonly platformButtonBackgroundColor: "platformButtonBackgroundColor";
|
|
2968
|
+
readonly platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
|
|
2969
|
+
readonly platformButtonPrimaryColor: "platformButtonPrimaryColor";
|
|
2970
|
+
readonly platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
|
|
2950
2971
|
readonly platformIcon: "platformIcon";
|
|
2951
2972
|
readonly platformIconValue: "platformIconValue";
|
|
2952
2973
|
readonly platformLogo: "platformLogo";
|
|
2953
|
-
readonly platformLogoValue: "platformLogoValue";
|
|
2954
2974
|
readonly platformLogoMaxHeight: "platformLogoMaxHeight";
|
|
2955
2975
|
readonly platformLogoMaxHeightValue: "platformLogoMaxHeightValue";
|
|
2976
|
+
readonly platformLogoValue: "platformLogoValue";
|
|
2977
|
+
readonly platformMargin: "platformMargin";
|
|
2978
|
+
readonly platformMarginValue: "platformMarginValue";
|
|
2979
|
+
readonly platformMessageBackgroundColor: "platformMessageBackgroundColor";
|
|
2980
|
+
readonly platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
|
|
2981
|
+
readonly platformName: "platformName";
|
|
2982
|
+
readonly platformNameValue: "platformNameValue";
|
|
2983
|
+
readonly platformNeedsShadow: "platformNeedsShadow";
|
|
2984
|
+
readonly platformNeedsShadowValue: "platformNeedsShadowValue";
|
|
2985
|
+
readonly platformPlaceholderColor: "platformPlaceholderColor";
|
|
2986
|
+
readonly platformPlaceholderColorValue: "platformPlaceholderColorValue";
|
|
2956
2987
|
readonly platformPrimaryColor: "platformPrimaryColor";
|
|
2957
2988
|
readonly platformPrimaryColorValue: "platformPrimaryColorValue";
|
|
2958
|
-
readonly platformSecondaryColor: "platformSecondaryColor";
|
|
2959
|
-
readonly platformSecondaryColorValue: "platformSecondaryColorValue";
|
|
2960
|
-
readonly platformBackgroundColor: "platformBackgroundColor";
|
|
2961
|
-
readonly platformBackgroundColorValue: "platformBackgroundColorValue";
|
|
2962
2989
|
readonly platformScrollbarColor: "platformScrollbarColor";
|
|
2963
2990
|
readonly platformScrollbarColorValue: "platformScrollbarColorValue";
|
|
2991
|
+
readonly platformSecondaryColor: "platformSecondaryColor";
|
|
2992
|
+
readonly platformSecondaryColorValue: "platformSecondaryColorValue";
|
|
2993
|
+
readonly platformSelectionBorderRadius: "platformSelectionBorderRadius";
|
|
2994
|
+
readonly platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue";
|
|
2964
2995
|
readonly platformSelectionColor: "platformSelectionColor";
|
|
2965
2996
|
readonly platformSelectionColorValue: "platformSelectionColorValue";
|
|
2997
|
+
readonly platformSelectionTextColor: "platformSelectionTextColor";
|
|
2998
|
+
readonly platformSelectionTextColorValue: "platformSelectionTextColorValue";
|
|
2966
2999
|
readonly platformSeparatorColor: "platformSeparatorColor";
|
|
2967
3000
|
readonly platformSeparatorColorValue: "platformSeparatorColorValue";
|
|
2968
|
-
readonly platformPlaceholderColor: "platformPlaceholderColor";
|
|
2969
|
-
readonly platformPlaceholderColorValue: "platformPlaceholderColorValue";
|
|
2970
3001
|
readonly platformTextSelectionColor: "platformTextSelectionColor";
|
|
2971
3002
|
readonly platformTextSelectionColorValue: "platformTextSelectionColorValue";
|
|
2972
|
-
readonly platformButtonPrimaryColor: "platformButtonPrimaryColor";
|
|
2973
|
-
readonly platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
|
|
2974
|
-
readonly platformButtonBackgroundColor: "platformButtonBackgroundColor";
|
|
2975
|
-
readonly platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
|
|
2976
|
-
readonly platformMessageBackgroundColor: "platformMessageBackgroundColor";
|
|
2977
|
-
readonly platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
|
|
2978
|
-
readonly platformBackgroundImage: "platformBackgroundImage";
|
|
2979
|
-
readonly platformBackgroundImageValue: "platformBackgroundImageValue";
|
|
2980
|
-
readonly platformBorderColor: "platformBorderColor";
|
|
2981
|
-
readonly platformBorderColorValue: "platformBorderColorValue";
|
|
2982
|
-
readonly platformSelectionTextColor: "platformSelectionTextColor";
|
|
2983
|
-
readonly platformSelectionTextColorValue: "platformSelectionTextColorValue";
|
|
2984
|
-
readonly platformBaseLayerColor: "platformBaseLayerColor";
|
|
2985
|
-
readonly platformBaseLayerColorValue: "platformBaseLayerColorValue";
|
|
2986
|
-
readonly platformMargin: "platformMargin";
|
|
2987
|
-
readonly platformMarginValue: "platformMarginValue";
|
|
2988
|
-
readonly platformBorderRadius: "platformBorderRadius";
|
|
2989
|
-
readonly platformBorderRadiusValue: "platformBorderRadiusValue";
|
|
2990
|
-
readonly platformSelectionBorderRadius: "platformSelectionBorderRadius";
|
|
2991
|
-
readonly platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue";
|
|
2992
|
-
readonly platformNeedsShadow: "platformNeedsShadow";
|
|
2993
|
-
readonly platformNeedsShadowValue: "platformNeedsShadowValue";
|
|
2994
|
-
readonly person: "person";
|
|
2995
3003
|
readonly pointerLeft: "pointerLeft";
|
|
2996
3004
|
readonly pointerLeftValue: "pointerLeftValue";
|
|
2997
3005
|
readonly pointerTop: "pointerTop";
|
|
@@ -3004,6 +3012,8 @@ declare const NodeType: {
|
|
|
3004
3012
|
readonly previewImageValue: "previewImageValue";
|
|
3005
3013
|
readonly previewVideo: "previewVideo";
|
|
3006
3014
|
readonly previewVideoValue: "previewVideoValue";
|
|
3015
|
+
readonly printParentChapterLevel: "printParentChapterLevel";
|
|
3016
|
+
readonly printParentChapterLevelValue: "printParentChapterLevelValue";
|
|
3007
3017
|
readonly processHandIn: "processHandIn";
|
|
3008
3018
|
readonly processHandInLocation: "processHandInLocation";
|
|
3009
3019
|
readonly processHandInLocationValue: "processHandInLocationValue";
|
|
@@ -3039,9 +3049,9 @@ declare const NodeType: {
|
|
|
3039
3049
|
readonly publisherValue: "publisherValue";
|
|
3040
3050
|
readonly quantity: "quantity";
|
|
3041
3051
|
readonly question: "question";
|
|
3042
|
-
readonly questionValue: "questionValue";
|
|
3043
3052
|
readonly questions: "questions";
|
|
3044
3053
|
readonly questionsValue: "questionsValue";
|
|
3054
|
+
readonly questionValue: "questionValue";
|
|
3045
3055
|
readonly quizCountItems: "quizCountItems";
|
|
3046
3056
|
readonly quizCountItemsValue: "quizCountItemsValue";
|
|
3047
3057
|
readonly quizStrikethroughSolutions: "quizStrikethroughSolutions";
|
|
@@ -3093,6 +3103,8 @@ declare const NodeType: {
|
|
|
3093
3103
|
readonly root: "root";
|
|
3094
3104
|
readonly rows: "rows";
|
|
3095
3105
|
readonly rowsValue: "rowsValue";
|
|
3106
|
+
readonly rtl: "rtl";
|
|
3107
|
+
readonly rtlValue: "rtlValue";
|
|
3096
3108
|
readonly rubric: "rubric";
|
|
3097
3109
|
readonly rubricValue: "rubricValue";
|
|
3098
3110
|
readonly sampleSolution: "sampleSolution";
|
|
@@ -3122,6 +3134,8 @@ declare const NodeType: {
|
|
|
3122
3134
|
readonly sourceRLValue: "sourceRLValue";
|
|
3123
3135
|
readonly spaceId: "spaceId";
|
|
3124
3136
|
readonly spaceIdValue: "spaceIdValue";
|
|
3137
|
+
readonly spansPageBreak: "spansPageBreak";
|
|
3138
|
+
readonly spansPageBreakValue: "spansPageBreakValue";
|
|
3125
3139
|
readonly src: "src";
|
|
3126
3140
|
readonly src1x: "src1x";
|
|
3127
3141
|
readonly src2x: "src2x";
|
|
@@ -3192,8 +3206,8 @@ declare const NodeType: {
|
|
|
3192
3206
|
readonly thumbnails: "thumbnails";
|
|
3193
3207
|
readonly thumbnailsValue: "thumbnailsValue";
|
|
3194
3208
|
readonly title: "title";
|
|
3195
|
-
readonly titleValue: "titleValue";
|
|
3196
3209
|
readonly titleString: "titleString";
|
|
3210
|
+
readonly titleValue: "titleValue";
|
|
3197
3211
|
readonly toc: "toc";
|
|
3198
3212
|
readonly tocContent: "tocContent";
|
|
3199
3213
|
readonly tocContentValue: "tocContentValue";
|
|
@@ -3202,11 +3216,15 @@ declare const NodeType: {
|
|
|
3202
3216
|
readonly tocValue: "tocValue";
|
|
3203
3217
|
readonly topicTag: "topicTag";
|
|
3204
3218
|
readonly topicTagValue: "topicTagValue";
|
|
3219
|
+
readonly translationOf: "translationOf";
|
|
3220
|
+
readonly translationOfValue: "translationOfValue";
|
|
3205
3221
|
readonly trim: "trim";
|
|
3206
3222
|
readonly type: "type";
|
|
3207
3223
|
readonly unit: "unit";
|
|
3208
3224
|
readonly unitAbbr: "unitAbbr";
|
|
3209
3225
|
readonly url: "url";
|
|
3226
|
+
readonly validationDate: "validationDate";
|
|
3227
|
+
readonly validationDateValue: "validationDateValue";
|
|
3210
3228
|
readonly value: "value";
|
|
3211
3229
|
readonly values: "values";
|
|
3212
3230
|
readonly valuesValue: "valuesValue";
|
|
@@ -4051,6 +4069,8 @@ declare class Builder extends BaseBuilder {
|
|
|
4051
4069
|
isTemplate?: boolean;
|
|
4052
4070
|
isTemplateStripTheme?: boolean;
|
|
4053
4071
|
isEditable?: boolean;
|
|
4072
|
+
needsValidation?: boolean;
|
|
4073
|
+
validationDate?: string;
|
|
4054
4074
|
aiGenerated?: boolean;
|
|
4055
4075
|
machineTranslated?: string;
|
|
4056
4076
|
translationOf?: string;
|
|
@@ -4081,6 +4101,7 @@ declare class Builder extends BaseBuilder {
|
|
|
4081
4101
|
publisher?: string | string[];
|
|
4082
4102
|
publisherName?: string;
|
|
4083
4103
|
theme?: string | string[];
|
|
4104
|
+
rtl?: boolean;
|
|
4084
4105
|
computerLanguage?: string;
|
|
4085
4106
|
target?: string | string[];
|
|
4086
4107
|
slug?: string;
|