@gmb/bitmark-parser-generator 5.7.0 → 5.9.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 +5 -5
- package/dist/browser/cjs/index.cjs +139 -57
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +81 -56
- package/dist/browser/esm/index.d.ts +81 -56
- package/dist/browser/esm/index.js +139 -57
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +139 -57
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +139 -57
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +81 -56
- package/dist/index.d.ts +81 -56
- package/dist/index.js +139 -57
- package/dist/index.js.map +1 -1
- package/package.json +16 -16
|
@@ -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";
|
|
@@ -714,6 +718,7 @@ declare const ConfigKey: {
|
|
|
714
718
|
readonly property_aiGenerated: "@aiGenerated";
|
|
715
719
|
readonly property_allowedBit: "@allowedBit";
|
|
716
720
|
readonly property_allowPrint: "@allowPrint";
|
|
721
|
+
readonly property_allowPrintEnforceSpaceConfiguration: "@allowPrintEnforceSpaceConfiguration";
|
|
717
722
|
readonly property_allowSubtitles: "@allowSubtitles";
|
|
718
723
|
readonly property_alt: "@alt";
|
|
719
724
|
readonly property_altLangTag: "@altLangTag";
|
|
@@ -786,6 +791,8 @@ declare const ConfigKey: {
|
|
|
786
791
|
readonly property_disableFeedback: "@disableFeedback";
|
|
787
792
|
readonly property_duration: "@duration";
|
|
788
793
|
readonly property_isEditable: "@isEditable";
|
|
794
|
+
readonly property_needsValidation: "@needsValidation";
|
|
795
|
+
readonly property_validationDate: "@validationDate";
|
|
789
796
|
readonly property_emphasis: "@emphasis";
|
|
790
797
|
readonly property_example: "@example";
|
|
791
798
|
readonly property_externalId: "@externalId";
|
|
@@ -846,6 +853,7 @@ declare const ConfigKey: {
|
|
|
846
853
|
readonly property_location: "@location";
|
|
847
854
|
readonly property_machineTranslated: "@machineTranslated";
|
|
848
855
|
readonly property_translationOf: "@translationOf";
|
|
856
|
+
readonly property_translationOfBook: "@translationOfBook";
|
|
849
857
|
readonly property_spansPageBreak: "@spansPageBreak";
|
|
850
858
|
readonly property_mailingList: "@mailingList";
|
|
851
859
|
readonly property_mark: "@mark";
|
|
@@ -1626,6 +1634,8 @@ interface BitJson {
|
|
|
1626
1634
|
isTemplate: boolean;
|
|
1627
1635
|
isTemplateStripTheme: boolean;
|
|
1628
1636
|
isEditable: boolean;
|
|
1637
|
+
needsValidation: boolean;
|
|
1638
|
+
validationDate: string;
|
|
1629
1639
|
aiGenerated: boolean;
|
|
1630
1640
|
machineTranslated: string;
|
|
1631
1641
|
translationOf: string;
|
|
@@ -1797,6 +1807,7 @@ interface BitJson {
|
|
|
1797
1807
|
maxDisplayLevel: number;
|
|
1798
1808
|
maxTocChapterLevel: number;
|
|
1799
1809
|
allowPrint: boolean;
|
|
1810
|
+
allowPrintEnforceSpaceConfiguration: boolean;
|
|
1800
1811
|
printParentChapterLevel: number;
|
|
1801
1812
|
sourceDocument: string;
|
|
1802
1813
|
internalPrintPdf: string;
|
|
@@ -2231,6 +2242,8 @@ interface Bit {
|
|
|
2231
2242
|
isTemplate?: Property;
|
|
2232
2243
|
isTemplateStripTheme?: Property;
|
|
2233
2244
|
isEditable?: Property;
|
|
2245
|
+
needsValidation?: Property;
|
|
2246
|
+
validationDate?: Property;
|
|
2234
2247
|
aiGenerated?: Property;
|
|
2235
2248
|
machineTranslated?: Property;
|
|
2236
2249
|
translationOf?: Property;
|
|
@@ -2285,6 +2298,7 @@ interface Bit {
|
|
|
2285
2298
|
coverColor?: Property;
|
|
2286
2299
|
publications?: Property;
|
|
2287
2300
|
relatedBook?: Property;
|
|
2301
|
+
translationOfBook?: Property;
|
|
2288
2302
|
author?: Property;
|
|
2289
2303
|
subject?: Property;
|
|
2290
2304
|
date?: Property;
|
|
@@ -2422,6 +2436,7 @@ interface Bit {
|
|
|
2422
2436
|
tocContent?: Property;
|
|
2423
2437
|
page?: Property;
|
|
2424
2438
|
allowPrint?: Property;
|
|
2439
|
+
allowPrintEnforceSpaceConfiguration?: Property;
|
|
2425
2440
|
allowPrintValue?: Property;
|
|
2426
2441
|
printParentChapterLevel?: Property;
|
|
2427
2442
|
platformBrandTarget?: Property;
|
|
@@ -2561,10 +2576,6 @@ declare const NodeType: {
|
|
|
2561
2576
|
readonly advertisingClickUrl: "advertisingClickUrl";
|
|
2562
2577
|
readonly advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
2563
2578
|
readonly ageRange: "ageRange";
|
|
2564
|
-
readonly brandColor: "brandColor";
|
|
2565
|
-
readonly brandColorValue: "brandColorValue";
|
|
2566
|
-
readonly brandColorName: "brandColorName";
|
|
2567
|
-
readonly brandColorNameValue: "brandColorNameValue";
|
|
2568
2579
|
readonly ageRangeValue: "ageRangeValue";
|
|
2569
2580
|
readonly aiGenerated: "aiGenerated";
|
|
2570
2581
|
readonly aiGeneratedValue: "aiGeneratedValue";
|
|
@@ -2591,7 +2602,6 @@ declare const NodeType: {
|
|
|
2591
2602
|
readonly audioEmbed: "audioEmbed";
|
|
2592
2603
|
readonly audioLink: "audioLink";
|
|
2593
2604
|
readonly author: "author";
|
|
2594
|
-
readonly authorValue: "authorValue";
|
|
2595
2605
|
readonly authorFullName: "authorFullName";
|
|
2596
2606
|
readonly authorFullNameValue: "authorFullNameValue";
|
|
2597
2607
|
readonly authorJobTitle: "authorJobTitle";
|
|
@@ -2600,6 +2610,7 @@ declare const NodeType: {
|
|
|
2600
2610
|
readonly authorPseudonymValue: "authorPseudonymValue";
|
|
2601
2611
|
readonly authorTitle: "authorTitle";
|
|
2602
2612
|
readonly authorTitleValue: "authorTitleValue";
|
|
2613
|
+
readonly authorValue: "authorValue";
|
|
2603
2614
|
readonly availableClassifications: "availableClassifications";
|
|
2604
2615
|
readonly availableClassificationsValue: "availableClassificationsValue";
|
|
2605
2616
|
readonly avatarImage: "avatarImage";
|
|
@@ -2646,6 +2657,10 @@ declare const NodeType: {
|
|
|
2646
2657
|
readonly botResponses: "botResponses";
|
|
2647
2658
|
readonly botResponsesValue: "botResponsesValue";
|
|
2648
2659
|
readonly botValue: "botValue";
|
|
2660
|
+
readonly brandColor: "brandColor";
|
|
2661
|
+
readonly brandColorName: "brandColorName";
|
|
2662
|
+
readonly brandColorNameValue: "brandColorNameValue";
|
|
2663
|
+
readonly brandColorValue: "brandColorValue";
|
|
2649
2664
|
readonly bubbleTag: "bubbleTag";
|
|
2650
2665
|
readonly bubbleTagValue: "bubbleTagValue";
|
|
2651
2666
|
readonly buttonCaption: "buttonCaption";
|
|
@@ -2741,6 +2756,8 @@ declare const NodeType: {
|
|
|
2741
2756
|
readonly elementsValueValue: "elementsValueValue";
|
|
2742
2757
|
readonly emphasis: "emphasis";
|
|
2743
2758
|
readonly end: "end";
|
|
2759
|
+
readonly enforceUpdateOverUserInput: "enforceUpdateOverUserInput";
|
|
2760
|
+
readonly enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue";
|
|
2744
2761
|
readonly errors: "errors";
|
|
2745
2762
|
readonly errorsValue: "errorsValue";
|
|
2746
2763
|
readonly example: "example";
|
|
@@ -2749,6 +2766,8 @@ declare const NodeType: {
|
|
|
2749
2766
|
readonly externalIdValue: "externalIdValue";
|
|
2750
2767
|
readonly externalLink: "externalLink";
|
|
2751
2768
|
readonly externalLinkText: "externalLinkText";
|
|
2769
|
+
readonly extractorExtractionTimestamp: "extractorExtractionTimestamp";
|
|
2770
|
+
readonly extractorExtractionTimestampValue: "extractorExtractionTimestampValue";
|
|
2752
2771
|
readonly extractorTag: "extractorTag";
|
|
2753
2772
|
readonly extractorTagValue: "extractorTagValue";
|
|
2754
2773
|
readonly extraProperties: "extraProperties";
|
|
@@ -2767,8 +2786,8 @@ declare const NodeType: {
|
|
|
2767
2786
|
readonly focusY: "focusY";
|
|
2768
2787
|
readonly focusYValue: "focusYValue";
|
|
2769
2788
|
readonly footer: "footer";
|
|
2770
|
-
readonly footerValue: "footerValue";
|
|
2771
2789
|
readonly footerText: "footerText";
|
|
2790
|
+
readonly footerValue: "footerValue";
|
|
2772
2791
|
readonly forKeys: "forKeys";
|
|
2773
2792
|
readonly format: "format";
|
|
2774
2793
|
readonly formula: "formula";
|
|
@@ -2792,6 +2811,8 @@ declare const NodeType: {
|
|
|
2792
2811
|
readonly hasBookNavigationValue: "hasBookNavigationValue";
|
|
2793
2812
|
readonly hasMarkAsDone: "hasMarkAsDone";
|
|
2794
2813
|
readonly hasMarkAsDoneValue: "hasMarkAsDoneValue";
|
|
2814
|
+
readonly hasPrintRestriction: "hasPrintRestriction";
|
|
2815
|
+
readonly hasPrintRestrictionValue: "hasPrintRestrictionValue";
|
|
2795
2816
|
readonly head: "head";
|
|
2796
2817
|
readonly heading: "heading";
|
|
2797
2818
|
readonly height: "height";
|
|
@@ -2806,8 +2827,8 @@ declare const NodeType: {
|
|
|
2806
2827
|
readonly iconValue: "iconValue";
|
|
2807
2828
|
readonly id: "id";
|
|
2808
2829
|
readonly idValue: "idValue";
|
|
2809
|
-
readonly iframeSrc: "iframeSrc";
|
|
2810
2830
|
readonly iframeName: "iframeName";
|
|
2831
|
+
readonly iframeSrc: "iframeSrc";
|
|
2811
2832
|
readonly image: "image";
|
|
2812
2833
|
readonly imageFirst: "imageFirst";
|
|
2813
2834
|
readonly imageFirstValue: "imageFirstValue";
|
|
@@ -2827,12 +2848,6 @@ declare const NodeType: {
|
|
|
2827
2848
|
readonly internalCommentValue: "internalCommentValue";
|
|
2828
2849
|
readonly internalPrintPdf: "internalPrintPdf";
|
|
2829
2850
|
readonly internalPrintPdfValue: "internalPrintPdfValue";
|
|
2830
|
-
readonly hasPrintRestriction: "hasPrintRestriction";
|
|
2831
|
-
readonly hasPrintRestrictionValue: "hasPrintRestrictionValue";
|
|
2832
|
-
readonly enforceUpdateOverUserInput: "enforceUpdateOverUserInput";
|
|
2833
|
-
readonly enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue";
|
|
2834
|
-
readonly extractorExtractionTimestamp: "extractorExtractionTimestamp";
|
|
2835
|
-
readonly extractorExtractionTimestampValue: "extractorExtractionTimestampValue";
|
|
2836
2851
|
readonly isCaseSensitive: "isCaseSensitive";
|
|
2837
2852
|
readonly isCommented: "isCommented";
|
|
2838
2853
|
readonly isCorrect: "isCorrect";
|
|
@@ -2851,8 +2866,8 @@ declare const NodeType: {
|
|
|
2851
2866
|
readonly isTracked: "isTracked";
|
|
2852
2867
|
readonly isTrackedValue: "isTrackedValue";
|
|
2853
2868
|
readonly item: "item";
|
|
2854
|
-
readonly itemValue: "itemValue";
|
|
2855
2869
|
readonly itemLead: "itemLead";
|
|
2870
|
+
readonly itemValue: "itemValue";
|
|
2856
2871
|
readonly jobTitle: "jobTitle";
|
|
2857
2872
|
readonly jobTitleValue: "jobTitleValue";
|
|
2858
2873
|
readonly jupyterExecutionCount: "jupyterExecutionCount";
|
|
@@ -2899,10 +2914,6 @@ declare const NodeType: {
|
|
|
2899
2914
|
readonly locationValue: "locationValue";
|
|
2900
2915
|
readonly machineTranslated: "machineTranslated";
|
|
2901
2916
|
readonly machineTranslatedValue: "machineTranslatedValue";
|
|
2902
|
-
readonly translationOf: "translationOf";
|
|
2903
|
-
readonly translationOfValue: "translationOfValue";
|
|
2904
|
-
readonly spansPageBreak: "spansPageBreak";
|
|
2905
|
-
readonly spansPageBreakValue: "spansPageBreakValue";
|
|
2906
2917
|
readonly mailingList: "mailingList";
|
|
2907
2918
|
readonly marginNumber: "marginNumber";
|
|
2908
2919
|
readonly marginNumberValue: "marginNumberValue";
|
|
@@ -2923,6 +2934,8 @@ declare const NodeType: {
|
|
|
2923
2934
|
readonly message: "message";
|
|
2924
2935
|
readonly mockupId: "mockupId";
|
|
2925
2936
|
readonly name: "name";
|
|
2937
|
+
readonly needsValidation: "needsValidation";
|
|
2938
|
+
readonly needsValidationValue: "needsValidationValue";
|
|
2926
2939
|
readonly offset: "offset";
|
|
2927
2940
|
readonly options: "options";
|
|
2928
2941
|
readonly optionsValue: "optionsValue";
|
|
@@ -2935,8 +2948,6 @@ declare const NodeType: {
|
|
|
2935
2948
|
readonly pageNumber: "pageNumber";
|
|
2936
2949
|
readonly pageNumberValue: "pageNumberValue";
|
|
2937
2950
|
readonly pageValue: "pageValue";
|
|
2938
|
-
readonly printParentChapterLevel: "printParentChapterLevel";
|
|
2939
|
-
readonly printParentChapterLevelValue: "printParentChapterLevelValue";
|
|
2940
2951
|
readonly pairs: "pairs";
|
|
2941
2952
|
readonly pairsValue: "pairsValue";
|
|
2942
2953
|
readonly parent: "parent";
|
|
@@ -2945,55 +2956,55 @@ declare const NodeType: {
|
|
|
2945
2956
|
readonly partialAnswerValue: "partialAnswerValue";
|
|
2946
2957
|
readonly path: "path";
|
|
2947
2958
|
readonly pathValue: "pathValue";
|
|
2959
|
+
readonly person: "person";
|
|
2960
|
+
readonly platformBackgroundColor: "platformBackgroundColor";
|
|
2961
|
+
readonly platformBackgroundColorValue: "platformBackgroundColorValue";
|
|
2962
|
+
readonly platformBackgroundImage: "platformBackgroundImage";
|
|
2963
|
+
readonly platformBackgroundImageValue: "platformBackgroundImageValue";
|
|
2964
|
+
readonly platformBaseLayerColor: "platformBaseLayerColor";
|
|
2965
|
+
readonly platformBaseLayerColorValue: "platformBaseLayerColorValue";
|
|
2966
|
+
readonly platformBorderColor: "platformBorderColor";
|
|
2967
|
+
readonly platformBorderColorValue: "platformBorderColorValue";
|
|
2968
|
+
readonly platformBorderRadius: "platformBorderRadius";
|
|
2969
|
+
readonly platformBorderRadiusValue: "platformBorderRadiusValue";
|
|
2948
2970
|
readonly platformBrandTarget: "platformBrandTarget";
|
|
2949
2971
|
readonly platformBrandTargetValue: "platformBrandTargetValue";
|
|
2950
|
-
readonly
|
|
2951
|
-
readonly
|
|
2972
|
+
readonly platformButtonBackgroundColor: "platformButtonBackgroundColor";
|
|
2973
|
+
readonly platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
|
|
2974
|
+
readonly platformButtonPrimaryColor: "platformButtonPrimaryColor";
|
|
2975
|
+
readonly platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
|
|
2952
2976
|
readonly platformIcon: "platformIcon";
|
|
2953
2977
|
readonly platformIconValue: "platformIconValue";
|
|
2954
2978
|
readonly platformLogo: "platformLogo";
|
|
2955
|
-
readonly platformLogoValue: "platformLogoValue";
|
|
2956
2979
|
readonly platformLogoMaxHeight: "platformLogoMaxHeight";
|
|
2957
2980
|
readonly platformLogoMaxHeightValue: "platformLogoMaxHeightValue";
|
|
2981
|
+
readonly platformLogoValue: "platformLogoValue";
|
|
2982
|
+
readonly platformMargin: "platformMargin";
|
|
2983
|
+
readonly platformMarginValue: "platformMarginValue";
|
|
2984
|
+
readonly platformMessageBackgroundColor: "platformMessageBackgroundColor";
|
|
2985
|
+
readonly platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
|
|
2986
|
+
readonly platformName: "platformName";
|
|
2987
|
+
readonly platformNameValue: "platformNameValue";
|
|
2988
|
+
readonly platformNeedsShadow: "platformNeedsShadow";
|
|
2989
|
+
readonly platformNeedsShadowValue: "platformNeedsShadowValue";
|
|
2990
|
+
readonly platformPlaceholderColor: "platformPlaceholderColor";
|
|
2991
|
+
readonly platformPlaceholderColorValue: "platformPlaceholderColorValue";
|
|
2958
2992
|
readonly platformPrimaryColor: "platformPrimaryColor";
|
|
2959
2993
|
readonly platformPrimaryColorValue: "platformPrimaryColorValue";
|
|
2960
|
-
readonly platformSecondaryColor: "platformSecondaryColor";
|
|
2961
|
-
readonly platformSecondaryColorValue: "platformSecondaryColorValue";
|
|
2962
|
-
readonly platformBackgroundColor: "platformBackgroundColor";
|
|
2963
|
-
readonly platformBackgroundColorValue: "platformBackgroundColorValue";
|
|
2964
2994
|
readonly platformScrollbarColor: "platformScrollbarColor";
|
|
2965
2995
|
readonly platformScrollbarColorValue: "platformScrollbarColorValue";
|
|
2996
|
+
readonly platformSecondaryColor: "platformSecondaryColor";
|
|
2997
|
+
readonly platformSecondaryColorValue: "platformSecondaryColorValue";
|
|
2998
|
+
readonly platformSelectionBorderRadius: "platformSelectionBorderRadius";
|
|
2999
|
+
readonly platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue";
|
|
2966
3000
|
readonly platformSelectionColor: "platformSelectionColor";
|
|
2967
3001
|
readonly platformSelectionColorValue: "platformSelectionColorValue";
|
|
3002
|
+
readonly platformSelectionTextColor: "platformSelectionTextColor";
|
|
3003
|
+
readonly platformSelectionTextColorValue: "platformSelectionTextColorValue";
|
|
2968
3004
|
readonly platformSeparatorColor: "platformSeparatorColor";
|
|
2969
3005
|
readonly platformSeparatorColorValue: "platformSeparatorColorValue";
|
|
2970
|
-
readonly platformPlaceholderColor: "platformPlaceholderColor";
|
|
2971
|
-
readonly platformPlaceholderColorValue: "platformPlaceholderColorValue";
|
|
2972
3006
|
readonly platformTextSelectionColor: "platformTextSelectionColor";
|
|
2973
3007
|
readonly platformTextSelectionColorValue: "platformTextSelectionColorValue";
|
|
2974
|
-
readonly platformButtonPrimaryColor: "platformButtonPrimaryColor";
|
|
2975
|
-
readonly platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
|
|
2976
|
-
readonly platformButtonBackgroundColor: "platformButtonBackgroundColor";
|
|
2977
|
-
readonly platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
|
|
2978
|
-
readonly platformMessageBackgroundColor: "platformMessageBackgroundColor";
|
|
2979
|
-
readonly platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
|
|
2980
|
-
readonly platformBackgroundImage: "platformBackgroundImage";
|
|
2981
|
-
readonly platformBackgroundImageValue: "platformBackgroundImageValue";
|
|
2982
|
-
readonly platformBorderColor: "platformBorderColor";
|
|
2983
|
-
readonly platformBorderColorValue: "platformBorderColorValue";
|
|
2984
|
-
readonly platformSelectionTextColor: "platformSelectionTextColor";
|
|
2985
|
-
readonly platformSelectionTextColorValue: "platformSelectionTextColorValue";
|
|
2986
|
-
readonly platformBaseLayerColor: "platformBaseLayerColor";
|
|
2987
|
-
readonly platformBaseLayerColorValue: "platformBaseLayerColorValue";
|
|
2988
|
-
readonly platformMargin: "platformMargin";
|
|
2989
|
-
readonly platformMarginValue: "platformMarginValue";
|
|
2990
|
-
readonly platformBorderRadius: "platformBorderRadius";
|
|
2991
|
-
readonly platformBorderRadiusValue: "platformBorderRadiusValue";
|
|
2992
|
-
readonly platformSelectionBorderRadius: "platformSelectionBorderRadius";
|
|
2993
|
-
readonly platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue";
|
|
2994
|
-
readonly platformNeedsShadow: "platformNeedsShadow";
|
|
2995
|
-
readonly platformNeedsShadowValue: "platformNeedsShadowValue";
|
|
2996
|
-
readonly person: "person";
|
|
2997
3008
|
readonly pointerLeft: "pointerLeft";
|
|
2998
3009
|
readonly pointerLeftValue: "pointerLeftValue";
|
|
2999
3010
|
readonly pointerTop: "pointerTop";
|
|
@@ -3006,6 +3017,8 @@ declare const NodeType: {
|
|
|
3006
3017
|
readonly previewImageValue: "previewImageValue";
|
|
3007
3018
|
readonly previewVideo: "previewVideo";
|
|
3008
3019
|
readonly previewVideoValue: "previewVideoValue";
|
|
3020
|
+
readonly printParentChapterLevel: "printParentChapterLevel";
|
|
3021
|
+
readonly printParentChapterLevelValue: "printParentChapterLevelValue";
|
|
3009
3022
|
readonly processHandIn: "processHandIn";
|
|
3010
3023
|
readonly processHandInLocation: "processHandInLocation";
|
|
3011
3024
|
readonly processHandInLocationValue: "processHandInLocationValue";
|
|
@@ -3041,9 +3054,9 @@ declare const NodeType: {
|
|
|
3041
3054
|
readonly publisherValue: "publisherValue";
|
|
3042
3055
|
readonly quantity: "quantity";
|
|
3043
3056
|
readonly question: "question";
|
|
3044
|
-
readonly questionValue: "questionValue";
|
|
3045
3057
|
readonly questions: "questions";
|
|
3046
3058
|
readonly questionsValue: "questionsValue";
|
|
3059
|
+
readonly questionValue: "questionValue";
|
|
3047
3060
|
readonly quizCountItems: "quizCountItems";
|
|
3048
3061
|
readonly quizCountItemsValue: "quizCountItemsValue";
|
|
3049
3062
|
readonly quizStrikethroughSolutions: "quizStrikethroughSolutions";
|
|
@@ -3071,6 +3084,8 @@ declare const NodeType: {
|
|
|
3071
3084
|
readonly refPublisher: "refPublisher";
|
|
3072
3085
|
readonly relatedBook: "relatedBook";
|
|
3073
3086
|
readonly relatedBookValue: "relatedBookValue";
|
|
3087
|
+
readonly translationOfBook: "translationOfBook";
|
|
3088
|
+
readonly translationOfBookValue: "translationOfBookValue";
|
|
3074
3089
|
readonly releaseDate: "releaseDate";
|
|
3075
3090
|
readonly releaseDateValue: "releaseDateValue";
|
|
3076
3091
|
readonly releaseKind: "releaseKind";
|
|
@@ -3095,6 +3110,8 @@ declare const NodeType: {
|
|
|
3095
3110
|
readonly root: "root";
|
|
3096
3111
|
readonly rows: "rows";
|
|
3097
3112
|
readonly rowsValue: "rowsValue";
|
|
3113
|
+
readonly rtl: "rtl";
|
|
3114
|
+
readonly rtlValue: "rtlValue";
|
|
3098
3115
|
readonly rubric: "rubric";
|
|
3099
3116
|
readonly rubricValue: "rubricValue";
|
|
3100
3117
|
readonly sampleSolution: "sampleSolution";
|
|
@@ -3124,6 +3141,8 @@ declare const NodeType: {
|
|
|
3124
3141
|
readonly sourceRLValue: "sourceRLValue";
|
|
3125
3142
|
readonly spaceId: "spaceId";
|
|
3126
3143
|
readonly spaceIdValue: "spaceIdValue";
|
|
3144
|
+
readonly spansPageBreak: "spansPageBreak";
|
|
3145
|
+
readonly spansPageBreakValue: "spansPageBreakValue";
|
|
3127
3146
|
readonly src: "src";
|
|
3128
3147
|
readonly src1x: "src1x";
|
|
3129
3148
|
readonly src2x: "src2x";
|
|
@@ -3189,15 +3208,13 @@ declare const NodeType: {
|
|
|
3189
3208
|
readonly textsValue: "textsValue";
|
|
3190
3209
|
readonly theme: "theme";
|
|
3191
3210
|
readonly themeValue: "themeValue";
|
|
3192
|
-
readonly rtl: "rtl";
|
|
3193
|
-
readonly rtlValue: "rtlValue";
|
|
3194
3211
|
readonly thumbImage: "thumbImage";
|
|
3195
3212
|
readonly thumbImageValue: "thumbImageValue";
|
|
3196
3213
|
readonly thumbnails: "thumbnails";
|
|
3197
3214
|
readonly thumbnailsValue: "thumbnailsValue";
|
|
3198
3215
|
readonly title: "title";
|
|
3199
|
-
readonly titleValue: "titleValue";
|
|
3200
3216
|
readonly titleString: "titleString";
|
|
3217
|
+
readonly titleValue: "titleValue";
|
|
3201
3218
|
readonly toc: "toc";
|
|
3202
3219
|
readonly tocContent: "tocContent";
|
|
3203
3220
|
readonly tocContentValue: "tocContentValue";
|
|
@@ -3206,11 +3223,15 @@ declare const NodeType: {
|
|
|
3206
3223
|
readonly tocValue: "tocValue";
|
|
3207
3224
|
readonly topicTag: "topicTag";
|
|
3208
3225
|
readonly topicTagValue: "topicTagValue";
|
|
3226
|
+
readonly translationOf: "translationOf";
|
|
3227
|
+
readonly translationOfValue: "translationOfValue";
|
|
3209
3228
|
readonly trim: "trim";
|
|
3210
3229
|
readonly type: "type";
|
|
3211
3230
|
readonly unit: "unit";
|
|
3212
3231
|
readonly unitAbbr: "unitAbbr";
|
|
3213
3232
|
readonly url: "url";
|
|
3233
|
+
readonly validationDate: "validationDate";
|
|
3234
|
+
readonly validationDateValue: "validationDateValue";
|
|
3214
3235
|
readonly value: "value";
|
|
3215
3236
|
readonly values: "values";
|
|
3216
3237
|
readonly valuesValue: "valuesValue";
|
|
@@ -4055,6 +4076,8 @@ declare class Builder extends BaseBuilder {
|
|
|
4055
4076
|
isTemplate?: boolean;
|
|
4056
4077
|
isTemplateStripTheme?: boolean;
|
|
4057
4078
|
isEditable?: boolean;
|
|
4079
|
+
needsValidation?: boolean;
|
|
4080
|
+
validationDate?: string;
|
|
4058
4081
|
aiGenerated?: boolean;
|
|
4059
4082
|
machineTranslated?: string;
|
|
4060
4083
|
translationOf?: string;
|
|
@@ -4109,6 +4132,7 @@ declare class Builder extends BaseBuilder {
|
|
|
4109
4132
|
coverColor?: string;
|
|
4110
4133
|
publications?: string | string[];
|
|
4111
4134
|
relatedBook?: string | string[];
|
|
4135
|
+
translationOfBook?: string;
|
|
4112
4136
|
author?: string | string[];
|
|
4113
4137
|
subject?: string | string[];
|
|
4114
4138
|
date?: string;
|
|
@@ -4235,6 +4259,7 @@ declare class Builder extends BaseBuilder {
|
|
|
4235
4259
|
sourceDocument?: string;
|
|
4236
4260
|
internalPrintPdf?: string;
|
|
4237
4261
|
allowPrint?: boolean;
|
|
4262
|
+
allowPrintEnforceSpaceConfiguration?: boolean;
|
|
4238
4263
|
hasPrintRestriction?: boolean;
|
|
4239
4264
|
enforceUpdateOverUserInput?: boolean;
|
|
4240
4265
|
extractorExtractionTimestamp?: string[];
|