@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/cli/main.js CHANGED
@@ -263,6 +263,7 @@ var BitType = {
263
263
  extractorPageWithBlocks: "extractor-page-with-blocks",
264
264
  extractorPageWithBlocksCollapsible: "extractor-page-with-blocks-collapsible",
265
265
  extractorRepeatedText: "extractor-repeated-text",
266
+ extractorTheme: "extractor-theme",
266
267
  featured: "featured",
267
268
  feedback: "feedback",
268
269
  figure: "figure",
@@ -478,6 +479,9 @@ var BitType = {
478
479
  reviewApprovedNote: "review-approved-note",
479
480
  reviewAuthorNote: "review-author-note",
480
481
  reviewCustomerNote: "review-customer-note",
482
+ reviewError: "review-error",
483
+ reviewErrorAi: "review-error-ai",
484
+ reviewErrorTranslation: "review-error-translation",
481
485
  reviewNote: "review-note",
482
486
  reviewRequestForReviewNote: "review-request-for-review-note",
483
487
  reviewReviewerNote: "review-reviewer-note",
@@ -1104,6 +1108,7 @@ var propertyKeys = {
1104
1108
  property_aiGenerated: "@aiGenerated",
1105
1109
  property_allowedBit: "@allowedBit",
1106
1110
  property_allowPrint: "@allowPrint",
1111
+ property_allowPrintEnforceSpaceConfiguration: "@allowPrintEnforceSpaceConfiguration",
1107
1112
  property_allowSubtitles: "@allowSubtitles",
1108
1113
  property_alt: "@alt",
1109
1114
  property_altLangTag: "@altLangTag",
@@ -1176,6 +1181,8 @@ var propertyKeys = {
1176
1181
  property_disableFeedback: "@disableFeedback",
1177
1182
  property_duration: "@duration",
1178
1183
  property_isEditable: "@isEditable",
1184
+ property_needsValidation: "@needsValidation",
1185
+ property_validationDate: "@validationDate",
1179
1186
  property_emphasis: "@emphasis",
1180
1187
  property_example: "@example",
1181
1188
  property_externalId: "@externalId",
@@ -1236,6 +1243,7 @@ var propertyKeys = {
1236
1243
  property_location: "@location",
1237
1244
  property_machineTranslated: "@machineTranslated",
1238
1245
  property_translationOf: "@translationOf",
1246
+ property_translationOfBook: "@translationOfBook",
1239
1247
  property_spansPageBreak: "@spansPageBreak",
1240
1248
  property_mailingList: "@mailingList",
1241
1249
  property_mark: "@mark",
@@ -2707,6 +2715,18 @@ var GROUPS = {
2707
2715
  format: TagFormat.boolean,
2708
2716
  defaultValue: "false"
2709
2717
  },
2718
+ {
2719
+ key: ConfigKey.property_needsValidation,
2720
+ description: "If true, the bit needs validation",
2721
+ format: TagFormat.boolean,
2722
+ defaultValue: "false"
2723
+ },
2724
+ {
2725
+ key: ConfigKey.property_validationDate,
2726
+ description: "The date when the bit was validated",
2727
+ format: TagFormat.plainText,
2728
+ defaultValue: ""
2729
+ },
2710
2730
  {
2711
2731
  key: ConfigKey.property_aiGenerated,
2712
2732
  description: "If true, the bit is AI-generated",
@@ -3353,6 +3373,11 @@ var GROUPS = {
3353
3373
  format: TagFormat.plainText,
3354
3374
  maxCount: Count.infinity
3355
3375
  },
3376
+ {
3377
+ key: ConfigKey.property_translationOfBook,
3378
+ description: "External Id of the translated book",
3379
+ format: TagFormat.plainText
3380
+ },
3356
3381
  {
3357
3382
  key: ConfigKey.property_duration,
3358
3383
  description: "The duration of the book",
@@ -3379,6 +3404,12 @@ var GROUPS = {
3379
3404
  format: TagFormat.boolean,
3380
3405
  defaultValue: "false"
3381
3406
  },
3407
+ {
3408
+ key: ConfigKey.property_allowPrintEnforceSpaceConfiguration,
3409
+ description: "If true, enforces space configuration for printing regardless of the allowPrint setting",
3410
+ format: TagFormat.boolean,
3411
+ defaultValue: "false"
3412
+ },
3382
3413
  {
3383
3414
  key: ConfigKey.property_hasPrintRestriction,
3384
3415
  description: "If true, the book has print restrictions",
@@ -7226,6 +7257,12 @@ var BITS = {
7226
7257
  description: "Extractor information bit, used to provide information about extractors in articles or books",
7227
7258
  textFormatDefault: TextFormat.json
7228
7259
  },
7260
+ [BitType.extractorTheme]: {
7261
+ since: "5.7.0",
7262
+ baseBitType: BitType._standard,
7263
+ description: "Extractor theme bit, used to store design/theme JSON extracted from documents",
7264
+ textFormatDefault: TextFormat.json
7265
+ },
7229
7266
  [BitType.extractorAiChat]: {
7230
7267
  since: "3.19.0",
7231
7268
  baseBitType: BitType._standard,
@@ -8992,6 +9029,21 @@ var BITS = {
8992
9029
  baseBitType: BitType.reviewNote,
8993
9030
  description: "Customer review note bit, used to create customer notes in reviews"
8994
9031
  },
9032
+ [BitType.reviewError]: {
9033
+ since: "5.8.0",
9034
+ baseBitType: BitType.reviewNote,
9035
+ description: "Review error note bit, used to create error notes in reviews"
9036
+ },
9037
+ [BitType.reviewErrorAi]: {
9038
+ since: "5.8.0",
9039
+ baseBitType: BitType.reviewNote,
9040
+ description: "Review error AI note bit, used to create AI error notes in reviews"
9041
+ },
9042
+ [BitType.reviewErrorTranslation]: {
9043
+ since: "5.8.0",
9044
+ baseBitType: BitType.reviewNote,
9045
+ description: "Review error translation note bit, used to create translation error notes in reviews"
9046
+ },
8995
9047
  [BitType.reviewReviewerNote]: {
8996
9048
  since: "1.3.0",
8997
9049
  baseBitType: BitType.reviewNote,
@@ -10306,7 +10358,7 @@ var instance2 = new Config();
10306
10358
  // src/generated/package_info.ts
10307
10359
  var PACKAGE_INFO = {
10308
10360
  "name": "@gmb/bitmark-parser-generator",
10309
- "version": "5.7.0",
10361
+ "version": "5.9.0",
10310
10362
  "license": "ISC"};
10311
10363
  var Environment = {
10312
10364
  unknown: "",
@@ -10623,10 +10675,6 @@ var NodeType = {
10623
10675
  advertisingClickUrl: "advertisingClickUrl",
10624
10676
  advertisingClickUrlValue: "advertisingClickUrlValue",
10625
10677
  ageRange: "ageRange",
10626
- brandColor: "brandColor",
10627
- brandColorValue: "brandColorValue",
10628
- brandColorName: "brandColorName",
10629
- brandColorNameValue: "brandColorNameValue",
10630
10678
  ageRangeValue: "ageRangeValue",
10631
10679
  aiGenerated: "aiGenerated",
10632
10680
  aiGeneratedValue: "aiGeneratedValue",
@@ -10654,7 +10702,6 @@ var NodeType = {
10654
10702
  audioEmbed: "audioEmbed",
10655
10703
  audioLink: "audioLink",
10656
10704
  author: "author",
10657
- authorValue: "authorValue",
10658
10705
  authorFullName: "authorFullName",
10659
10706
  authorFullNameValue: "authorFullNameValue",
10660
10707
  authorJobTitle: "authorJobTitle",
@@ -10663,6 +10710,7 @@ var NodeType = {
10663
10710
  authorPseudonymValue: "authorPseudonymValue",
10664
10711
  authorTitle: "authorTitle",
10665
10712
  authorTitleValue: "authorTitleValue",
10713
+ authorValue: "authorValue",
10666
10714
  availableClassifications: "availableClassifications",
10667
10715
  availableClassificationsValue: "availableClassificationsValue",
10668
10716
  avatarImage: "avatarImage",
@@ -10714,6 +10762,10 @@ var NodeType = {
10714
10762
  botResponses: "botResponses",
10715
10763
  botResponsesValue: "botResponsesValue",
10716
10764
  botValue: "botValue",
10765
+ brandColor: "brandColor",
10766
+ brandColorName: "brandColorName",
10767
+ brandColorNameValue: "brandColorNameValue",
10768
+ brandColorValue: "brandColorValue",
10717
10769
  bubbleTag: "bubbleTag",
10718
10770
  bubbleTagValue: "bubbleTagValue",
10719
10771
  buttonCaption: "buttonCaption",
@@ -10809,6 +10861,8 @@ var NodeType = {
10809
10861
  elementsValueValue: "elementsValueValue",
10810
10862
  emphasis: "emphasis",
10811
10863
  end: "end",
10864
+ enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
10865
+ enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
10812
10866
  errors: "errors",
10813
10867
  errorsValue: "errorsValue",
10814
10868
  example: "example",
@@ -10817,6 +10871,8 @@ var NodeType = {
10817
10871
  externalIdValue: "externalIdValue",
10818
10872
  externalLink: "externalLink",
10819
10873
  externalLinkText: "externalLinkText",
10874
+ extractorExtractionTimestamp: "extractorExtractionTimestamp",
10875
+ extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
10820
10876
  extractorTag: "extractorTag",
10821
10877
  extractorTagValue: "extractorTagValue",
10822
10878
  extraProperties: "extraProperties",
@@ -10835,8 +10891,8 @@ var NodeType = {
10835
10891
  focusY: "focusY",
10836
10892
  focusYValue: "focusYValue",
10837
10893
  footer: "footer",
10838
- footerValue: "footerValue",
10839
10894
  footerText: "footerText",
10895
+ footerValue: "footerValue",
10840
10896
  forKeys: "forKeys",
10841
10897
  format: "format",
10842
10898
  formula: "formula",
@@ -10860,6 +10916,8 @@ var NodeType = {
10860
10916
  hasBookNavigationValue: "hasBookNavigationValue",
10861
10917
  hasMarkAsDone: "hasMarkAsDone",
10862
10918
  hasMarkAsDoneValue: "hasMarkAsDoneValue",
10919
+ hasPrintRestriction: "hasPrintRestriction",
10920
+ hasPrintRestrictionValue: "hasPrintRestrictionValue",
10863
10921
  head: "head",
10864
10922
  heading: "heading",
10865
10923
  height: "height",
@@ -10874,8 +10932,8 @@ var NodeType = {
10874
10932
  iconValue: "iconValue",
10875
10933
  id: "id",
10876
10934
  idValue: "idValue",
10877
- iframeSrc: "iframeSrc",
10878
10935
  iframeName: "iframeName",
10936
+ iframeSrc: "iframeSrc",
10879
10937
  image: "image",
10880
10938
  imageFirst: "imageFirst",
10881
10939
  imageFirstValue: "imageFirstValue",
@@ -10895,12 +10953,6 @@ var NodeType = {
10895
10953
  internalCommentValue: "internalCommentValue",
10896
10954
  internalPrintPdf: "internalPrintPdf",
10897
10955
  internalPrintPdfValue: "internalPrintPdfValue",
10898
- hasPrintRestriction: "hasPrintRestriction",
10899
- hasPrintRestrictionValue: "hasPrintRestrictionValue",
10900
- enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
10901
- enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
10902
- extractorExtractionTimestamp: "extractorExtractionTimestamp",
10903
- extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
10904
10956
  isCaseSensitive: "isCaseSensitive",
10905
10957
  isCommented: "isCommented",
10906
10958
  isCorrect: "isCorrect",
@@ -10919,8 +10971,8 @@ var NodeType = {
10919
10971
  isTracked: "isTracked",
10920
10972
  isTrackedValue: "isTrackedValue",
10921
10973
  item: "item",
10922
- itemValue: "itemValue",
10923
10974
  itemLead: "itemLead",
10975
+ itemValue: "itemValue",
10924
10976
  jobTitle: "jobTitle",
10925
10977
  jobTitleValue: "jobTitleValue",
10926
10978
  jupyterExecutionCount: "jupyterExecutionCount",
@@ -10967,10 +11019,6 @@ var NodeType = {
10967
11019
  locationValue: "locationValue",
10968
11020
  machineTranslated: "machineTranslated",
10969
11021
  machineTranslatedValue: "machineTranslatedValue",
10970
- translationOf: "translationOf",
10971
- translationOfValue: "translationOfValue",
10972
- spansPageBreak: "spansPageBreak",
10973
- spansPageBreakValue: "spansPageBreakValue",
10974
11022
  mailingList: "mailingList",
10975
11023
  marginNumber: "marginNumber",
10976
11024
  marginNumberValue: "marginNumberValue",
@@ -10992,6 +11040,8 @@ var NodeType = {
10992
11040
  message: "message",
10993
11041
  mockupId: "mockupId",
10994
11042
  name: "name",
11043
+ needsValidation: "needsValidation",
11044
+ needsValidationValue: "needsValidationValue",
10995
11045
  offset: "offset",
10996
11046
  options: "options",
10997
11047
  optionsValue: "optionsValue",
@@ -11004,8 +11054,6 @@ var NodeType = {
11004
11054
  pageNumber: "pageNumber",
11005
11055
  pageNumberValue: "pageNumberValue",
11006
11056
  pageValue: "pageValue",
11007
- printParentChapterLevel: "printParentChapterLevel",
11008
- printParentChapterLevelValue: "printParentChapterLevelValue",
11009
11057
  pairs: "pairs",
11010
11058
  pairsValue: "pairsValue",
11011
11059
  parent: "parent",
@@ -11014,55 +11062,55 @@ var NodeType = {
11014
11062
  partialAnswerValue: "partialAnswerValue",
11015
11063
  path: "path",
11016
11064
  pathValue: "pathValue",
11065
+ person: "person",
11066
+ platformBackgroundColor: "platformBackgroundColor",
11067
+ platformBackgroundColorValue: "platformBackgroundColorValue",
11068
+ platformBackgroundImage: "platformBackgroundImage",
11069
+ platformBackgroundImageValue: "platformBackgroundImageValue",
11070
+ platformBaseLayerColor: "platformBaseLayerColor",
11071
+ platformBaseLayerColorValue: "platformBaseLayerColorValue",
11072
+ platformBorderColor: "platformBorderColor",
11073
+ platformBorderColorValue: "platformBorderColorValue",
11074
+ platformBorderRadius: "platformBorderRadius",
11075
+ platformBorderRadiusValue: "platformBorderRadiusValue",
11017
11076
  platformBrandTarget: "platformBrandTarget",
11018
11077
  platformBrandTargetValue: "platformBrandTargetValue",
11019
- platformName: "platformName",
11020
- platformNameValue: "platformNameValue",
11078
+ platformButtonBackgroundColor: "platformButtonBackgroundColor",
11079
+ platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11080
+ platformButtonPrimaryColor: "platformButtonPrimaryColor",
11081
+ platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11021
11082
  platformIcon: "platformIcon",
11022
11083
  platformIconValue: "platformIconValue",
11023
11084
  platformLogo: "platformLogo",
11024
- platformLogoValue: "platformLogoValue",
11025
11085
  platformLogoMaxHeight: "platformLogoMaxHeight",
11026
11086
  platformLogoMaxHeightValue: "platformLogoMaxHeightValue",
11087
+ platformLogoValue: "platformLogoValue",
11088
+ platformMargin: "platformMargin",
11089
+ platformMarginValue: "platformMarginValue",
11090
+ platformMessageBackgroundColor: "platformMessageBackgroundColor",
11091
+ platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11092
+ platformName: "platformName",
11093
+ platformNameValue: "platformNameValue",
11094
+ platformNeedsShadow: "platformNeedsShadow",
11095
+ platformNeedsShadowValue: "platformNeedsShadowValue",
11096
+ platformPlaceholderColor: "platformPlaceholderColor",
11097
+ platformPlaceholderColorValue: "platformPlaceholderColorValue",
11027
11098
  platformPrimaryColor: "platformPrimaryColor",
11028
11099
  platformPrimaryColorValue: "platformPrimaryColorValue",
11029
- platformSecondaryColor: "platformSecondaryColor",
11030
- platformSecondaryColorValue: "platformSecondaryColorValue",
11031
- platformBackgroundColor: "platformBackgroundColor",
11032
- platformBackgroundColorValue: "platformBackgroundColorValue",
11033
11100
  platformScrollbarColor: "platformScrollbarColor",
11034
11101
  platformScrollbarColorValue: "platformScrollbarColorValue",
11102
+ platformSecondaryColor: "platformSecondaryColor",
11103
+ platformSecondaryColorValue: "platformSecondaryColorValue",
11104
+ platformSelectionBorderRadius: "platformSelectionBorderRadius",
11105
+ platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11035
11106
  platformSelectionColor: "platformSelectionColor",
11036
11107
  platformSelectionColorValue: "platformSelectionColorValue",
11108
+ platformSelectionTextColor: "platformSelectionTextColor",
11109
+ platformSelectionTextColorValue: "platformSelectionTextColorValue",
11037
11110
  platformSeparatorColor: "platformSeparatorColor",
11038
11111
  platformSeparatorColorValue: "platformSeparatorColorValue",
11039
- platformPlaceholderColor: "platformPlaceholderColor",
11040
- platformPlaceholderColorValue: "platformPlaceholderColorValue",
11041
11112
  platformTextSelectionColor: "platformTextSelectionColor",
11042
11113
  platformTextSelectionColorValue: "platformTextSelectionColorValue",
11043
- platformButtonPrimaryColor: "platformButtonPrimaryColor",
11044
- platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11045
- platformButtonBackgroundColor: "platformButtonBackgroundColor",
11046
- platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11047
- platformMessageBackgroundColor: "platformMessageBackgroundColor",
11048
- platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11049
- platformBackgroundImage: "platformBackgroundImage",
11050
- platformBackgroundImageValue: "platformBackgroundImageValue",
11051
- platformBorderColor: "platformBorderColor",
11052
- platformBorderColorValue: "platformBorderColorValue",
11053
- platformSelectionTextColor: "platformSelectionTextColor",
11054
- platformSelectionTextColorValue: "platformSelectionTextColorValue",
11055
- platformBaseLayerColor: "platformBaseLayerColor",
11056
- platformBaseLayerColorValue: "platformBaseLayerColorValue",
11057
- platformMargin: "platformMargin",
11058
- platformMarginValue: "platformMarginValue",
11059
- platformBorderRadius: "platformBorderRadius",
11060
- platformBorderRadiusValue: "platformBorderRadiusValue",
11061
- platformSelectionBorderRadius: "platformSelectionBorderRadius",
11062
- platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11063
- platformNeedsShadow: "platformNeedsShadow",
11064
- platformNeedsShadowValue: "platformNeedsShadowValue",
11065
- person: "person",
11066
11114
  pointerLeft: "pointerLeft",
11067
11115
  pointerLeftValue: "pointerLeftValue",
11068
11116
  pointerTop: "pointerTop",
@@ -11075,6 +11123,8 @@ var NodeType = {
11075
11123
  previewImageValue: "previewImageValue",
11076
11124
  previewVideo: "previewVideo",
11077
11125
  previewVideoValue: "previewVideoValue",
11126
+ printParentChapterLevel: "printParentChapterLevel",
11127
+ printParentChapterLevelValue: "printParentChapterLevelValue",
11078
11128
  processHandIn: "processHandIn",
11079
11129
  processHandInLocation: "processHandInLocation",
11080
11130
  processHandInLocationValue: "processHandInLocationValue",
@@ -11110,9 +11160,9 @@ var NodeType = {
11110
11160
  publisherValue: "publisherValue",
11111
11161
  quantity: "quantity",
11112
11162
  question: "question",
11113
- questionValue: "questionValue",
11114
11163
  questions: "questions",
11115
11164
  questionsValue: "questionsValue",
11165
+ questionValue: "questionValue",
11116
11166
  quizCountItems: "quizCountItems",
11117
11167
  quizCountItemsValue: "quizCountItemsValue",
11118
11168
  quizStrikethroughSolutions: "quizStrikethroughSolutions",
@@ -11140,6 +11190,8 @@ var NodeType = {
11140
11190
  refPublisher: "refPublisher",
11141
11191
  relatedBook: "relatedBook",
11142
11192
  relatedBookValue: "relatedBookValue",
11193
+ translationOfBook: "translationOfBook",
11194
+ translationOfBookValue: "translationOfBookValue",
11143
11195
  releaseDate: "releaseDate",
11144
11196
  releaseDateValue: "releaseDateValue",
11145
11197
  releaseKind: "releaseKind",
@@ -11165,6 +11217,8 @@ var NodeType = {
11165
11217
  // bit type (root)
11166
11218
  rows: "rows",
11167
11219
  rowsValue: "rowsValue",
11220
+ rtl: "rtl",
11221
+ rtlValue: "rtlValue",
11168
11222
  rubric: "rubric",
11169
11223
  rubricValue: "rubricValue",
11170
11224
  sampleSolution: "sampleSolution",
@@ -11194,6 +11248,8 @@ var NodeType = {
11194
11248
  sourceRLValue: "sourceRLValue",
11195
11249
  spaceId: "spaceId",
11196
11250
  spaceIdValue: "spaceIdValue",
11251
+ spansPageBreak: "spansPageBreak",
11252
+ spansPageBreakValue: "spansPageBreakValue",
11197
11253
  src: "src",
11198
11254
  src1x: "src1x",
11199
11255
  src2x: "src2x",
@@ -11259,15 +11315,13 @@ var NodeType = {
11259
11315
  textsValue: "textsValue",
11260
11316
  theme: "theme",
11261
11317
  themeValue: "themeValue",
11262
- rtl: "rtl",
11263
- rtlValue: "rtlValue",
11264
11318
  thumbImage: "thumbImage",
11265
11319
  thumbImageValue: "thumbImageValue",
11266
11320
  thumbnails: "thumbnails",
11267
11321
  thumbnailsValue: "thumbnailsValue",
11268
11322
  title: "title",
11269
- titleValue: "titleValue",
11270
11323
  titleString: "titleString",
11324
+ titleValue: "titleValue",
11271
11325
  toc: "toc",
11272
11326
  tocContent: "tocContent",
11273
11327
  tocContentValue: "tocContentValue",
@@ -11276,11 +11330,15 @@ var NodeType = {
11276
11330
  tocValue: "tocValue",
11277
11331
  topicTag: "topicTag",
11278
11332
  topicTagValue: "topicTagValue",
11333
+ translationOf: "translationOf",
11334
+ translationOfValue: "translationOfValue",
11279
11335
  trim: "trim",
11280
11336
  type: "type",
11281
11337
  unit: "unit",
11282
11338
  unitAbbr: "unitAbbr",
11283
11339
  url: "url",
11340
+ validationDate: "validationDate",
11341
+ validationDateValue: "validationDateValue",
11284
11342
  value: "value",
11285
11343
  values: "values",
11286
11344
  valuesValue: "valuesValue",
@@ -23863,6 +23921,18 @@ var Builder = class extends BaseBuilder {
23863
23921
  data.isEditable,
23864
23922
  options
23865
23923
  ),
23924
+ needsValidation: this.toAstProperty(
23925
+ bitType,
23926
+ ConfigKey.property_needsValidation,
23927
+ data.needsValidation,
23928
+ options
23929
+ ),
23930
+ validationDate: this.toAstProperty(
23931
+ bitType,
23932
+ ConfigKey.property_validationDate,
23933
+ data.validationDate,
23934
+ options
23935
+ ),
23866
23936
  aiGenerated: this.toAstProperty(
23867
23937
  bitType,
23868
23938
  ConfigKey.property_aiGenerated,
@@ -24053,6 +24123,12 @@ var Builder = class extends BaseBuilder {
24053
24123
  data.relatedBook,
24054
24124
  options
24055
24125
  ),
24126
+ translationOfBook: this.toAstProperty(
24127
+ bitType,
24128
+ ConfigKey.property_translationOfBook,
24129
+ data.translationOfBook,
24130
+ options
24131
+ ),
24056
24132
  author: this.toAstProperty(bitType, ConfigKey.property_author, data.author, options),
24057
24133
  subject: this.toAstProperty(bitType, ConfigKey.property_subject, data.subject, options),
24058
24134
  date: this.toAstProperty(bitType, ConfigKey.property_date, data.date, options),
@@ -24629,6 +24705,12 @@ var Builder = class extends BaseBuilder {
24629
24705
  data.allowPrint,
24630
24706
  options
24631
24707
  ),
24708
+ allowPrintEnforceSpaceConfiguration: this.toAstProperty(
24709
+ bitType,
24710
+ ConfigKey.property_allowPrintEnforceSpaceConfiguration,
24711
+ data.allowPrintEnforceSpaceConfiguration,
24712
+ options
24713
+ ),
24632
24714
  printParentChapterLevel: this.toAstProperty(
24633
24715
  bitType,
24634
24716
  ConfigKey.property_printParentChapterLevel,