@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/index.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",
@@ -1139,6 +1143,7 @@ var propertyKeys = {
1139
1143
  property_aiGenerated: "@aiGenerated",
1140
1144
  property_allowedBit: "@allowedBit",
1141
1145
  property_allowPrint: "@allowPrint",
1146
+ property_allowPrintEnforceSpaceConfiguration: "@allowPrintEnforceSpaceConfiguration",
1142
1147
  property_allowSubtitles: "@allowSubtitles",
1143
1148
  property_alt: "@alt",
1144
1149
  property_altLangTag: "@altLangTag",
@@ -1211,6 +1216,8 @@ var propertyKeys = {
1211
1216
  property_disableFeedback: "@disableFeedback",
1212
1217
  property_duration: "@duration",
1213
1218
  property_isEditable: "@isEditable",
1219
+ property_needsValidation: "@needsValidation",
1220
+ property_validationDate: "@validationDate",
1214
1221
  property_emphasis: "@emphasis",
1215
1222
  property_example: "@example",
1216
1223
  property_externalId: "@externalId",
@@ -1271,6 +1278,7 @@ var propertyKeys = {
1271
1278
  property_location: "@location",
1272
1279
  property_machineTranslated: "@machineTranslated",
1273
1280
  property_translationOf: "@translationOf",
1281
+ property_translationOfBook: "@translationOfBook",
1274
1282
  property_spansPageBreak: "@spansPageBreak",
1275
1283
  property_mailingList: "@mailingList",
1276
1284
  property_mark: "@mark",
@@ -2751,6 +2759,18 @@ var GROUPS = {
2751
2759
  format: TagFormat.boolean,
2752
2760
  defaultValue: "false"
2753
2761
  },
2762
+ {
2763
+ key: ConfigKey.property_needsValidation,
2764
+ description: "If true, the bit needs validation",
2765
+ format: TagFormat.boolean,
2766
+ defaultValue: "false"
2767
+ },
2768
+ {
2769
+ key: ConfigKey.property_validationDate,
2770
+ description: "The date when the bit was validated",
2771
+ format: TagFormat.plainText,
2772
+ defaultValue: ""
2773
+ },
2754
2774
  {
2755
2775
  key: ConfigKey.property_aiGenerated,
2756
2776
  description: "If true, the bit is AI-generated",
@@ -3397,6 +3417,11 @@ var GROUPS = {
3397
3417
  format: TagFormat.plainText,
3398
3418
  maxCount: Count.infinity
3399
3419
  },
3420
+ {
3421
+ key: ConfigKey.property_translationOfBook,
3422
+ description: "External Id of the translated book",
3423
+ format: TagFormat.plainText
3424
+ },
3400
3425
  {
3401
3426
  key: ConfigKey.property_duration,
3402
3427
  description: "The duration of the book",
@@ -3423,6 +3448,12 @@ var GROUPS = {
3423
3448
  format: TagFormat.boolean,
3424
3449
  defaultValue: "false"
3425
3450
  },
3451
+ {
3452
+ key: ConfigKey.property_allowPrintEnforceSpaceConfiguration,
3453
+ description: "If true, enforces space configuration for printing regardless of the allowPrint setting",
3454
+ format: TagFormat.boolean,
3455
+ defaultValue: "false"
3456
+ },
3426
3457
  {
3427
3458
  key: ConfigKey.property_hasPrintRestriction,
3428
3459
  description: "If true, the book has print restrictions",
@@ -7270,6 +7301,12 @@ var BITS = {
7270
7301
  description: "Extractor information bit, used to provide information about extractors in articles or books",
7271
7302
  textFormatDefault: TextFormat.json
7272
7303
  },
7304
+ [BitType.extractorTheme]: {
7305
+ since: "5.7.0",
7306
+ baseBitType: BitType._standard,
7307
+ description: "Extractor theme bit, used to store design/theme JSON extracted from documents",
7308
+ textFormatDefault: TextFormat.json
7309
+ },
7273
7310
  [BitType.extractorAiChat]: {
7274
7311
  since: "3.19.0",
7275
7312
  baseBitType: BitType._standard,
@@ -9036,6 +9073,21 @@ var BITS = {
9036
9073
  baseBitType: BitType.reviewNote,
9037
9074
  description: "Customer review note bit, used to create customer notes in reviews"
9038
9075
  },
9076
+ [BitType.reviewError]: {
9077
+ since: "5.8.0",
9078
+ baseBitType: BitType.reviewNote,
9079
+ description: "Review error note bit, used to create error notes in reviews"
9080
+ },
9081
+ [BitType.reviewErrorAi]: {
9082
+ since: "5.8.0",
9083
+ baseBitType: BitType.reviewNote,
9084
+ description: "Review error AI note bit, used to create AI error notes in reviews"
9085
+ },
9086
+ [BitType.reviewErrorTranslation]: {
9087
+ since: "5.8.0",
9088
+ baseBitType: BitType.reviewNote,
9089
+ description: "Review error translation note bit, used to create translation error notes in reviews"
9090
+ },
9039
9091
  [BitType.reviewReviewerNote]: {
9040
9092
  since: "1.3.0",
9041
9093
  baseBitType: BitType.reviewNote,
@@ -10350,7 +10402,7 @@ var instance2 = new Config();
10350
10402
  // src/generated/package_info.ts
10351
10403
  var PACKAGE_INFO = {
10352
10404
  "name": "@gmb/bitmark-parser-generator",
10353
- "version": "5.7.0",
10405
+ "version": "5.9.0",
10354
10406
  "author": "Get More Brain Ltd",
10355
10407
  "license": "ISC",
10356
10408
  "description": "A bitmark parser and generator using Peggy.js"
@@ -10699,10 +10751,6 @@ var NodeType = {
10699
10751
  advertisingClickUrl: "advertisingClickUrl",
10700
10752
  advertisingClickUrlValue: "advertisingClickUrlValue",
10701
10753
  ageRange: "ageRange",
10702
- brandColor: "brandColor",
10703
- brandColorValue: "brandColorValue",
10704
- brandColorName: "brandColorName",
10705
- brandColorNameValue: "brandColorNameValue",
10706
10754
  ageRangeValue: "ageRangeValue",
10707
10755
  aiGenerated: "aiGenerated",
10708
10756
  aiGeneratedValue: "aiGeneratedValue",
@@ -10730,7 +10778,6 @@ var NodeType = {
10730
10778
  audioEmbed: "audioEmbed",
10731
10779
  audioLink: "audioLink",
10732
10780
  author: "author",
10733
- authorValue: "authorValue",
10734
10781
  authorFullName: "authorFullName",
10735
10782
  authorFullNameValue: "authorFullNameValue",
10736
10783
  authorJobTitle: "authorJobTitle",
@@ -10739,6 +10786,7 @@ var NodeType = {
10739
10786
  authorPseudonymValue: "authorPseudonymValue",
10740
10787
  authorTitle: "authorTitle",
10741
10788
  authorTitleValue: "authorTitleValue",
10789
+ authorValue: "authorValue",
10742
10790
  availableClassifications: "availableClassifications",
10743
10791
  availableClassificationsValue: "availableClassificationsValue",
10744
10792
  avatarImage: "avatarImage",
@@ -10790,6 +10838,10 @@ var NodeType = {
10790
10838
  botResponses: "botResponses",
10791
10839
  botResponsesValue: "botResponsesValue",
10792
10840
  botValue: "botValue",
10841
+ brandColor: "brandColor",
10842
+ brandColorName: "brandColorName",
10843
+ brandColorNameValue: "brandColorNameValue",
10844
+ brandColorValue: "brandColorValue",
10793
10845
  bubbleTag: "bubbleTag",
10794
10846
  bubbleTagValue: "bubbleTagValue",
10795
10847
  buttonCaption: "buttonCaption",
@@ -10885,6 +10937,8 @@ var NodeType = {
10885
10937
  elementsValueValue: "elementsValueValue",
10886
10938
  emphasis: "emphasis",
10887
10939
  end: "end",
10940
+ enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
10941
+ enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
10888
10942
  errors: "errors",
10889
10943
  errorsValue: "errorsValue",
10890
10944
  example: "example",
@@ -10893,6 +10947,8 @@ var NodeType = {
10893
10947
  externalIdValue: "externalIdValue",
10894
10948
  externalLink: "externalLink",
10895
10949
  externalLinkText: "externalLinkText",
10950
+ extractorExtractionTimestamp: "extractorExtractionTimestamp",
10951
+ extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
10896
10952
  extractorTag: "extractorTag",
10897
10953
  extractorTagValue: "extractorTagValue",
10898
10954
  extraProperties: "extraProperties",
@@ -10911,8 +10967,8 @@ var NodeType = {
10911
10967
  focusY: "focusY",
10912
10968
  focusYValue: "focusYValue",
10913
10969
  footer: "footer",
10914
- footerValue: "footerValue",
10915
10970
  footerText: "footerText",
10971
+ footerValue: "footerValue",
10916
10972
  forKeys: "forKeys",
10917
10973
  format: "format",
10918
10974
  formula: "formula",
@@ -10936,6 +10992,8 @@ var NodeType = {
10936
10992
  hasBookNavigationValue: "hasBookNavigationValue",
10937
10993
  hasMarkAsDone: "hasMarkAsDone",
10938
10994
  hasMarkAsDoneValue: "hasMarkAsDoneValue",
10995
+ hasPrintRestriction: "hasPrintRestriction",
10996
+ hasPrintRestrictionValue: "hasPrintRestrictionValue",
10939
10997
  head: "head",
10940
10998
  heading: "heading",
10941
10999
  height: "height",
@@ -10950,8 +11008,8 @@ var NodeType = {
10950
11008
  iconValue: "iconValue",
10951
11009
  id: "id",
10952
11010
  idValue: "idValue",
10953
- iframeSrc: "iframeSrc",
10954
11011
  iframeName: "iframeName",
11012
+ iframeSrc: "iframeSrc",
10955
11013
  image: "image",
10956
11014
  imageFirst: "imageFirst",
10957
11015
  imageFirstValue: "imageFirstValue",
@@ -10971,12 +11029,6 @@ var NodeType = {
10971
11029
  internalCommentValue: "internalCommentValue",
10972
11030
  internalPrintPdf: "internalPrintPdf",
10973
11031
  internalPrintPdfValue: "internalPrintPdfValue",
10974
- hasPrintRestriction: "hasPrintRestriction",
10975
- hasPrintRestrictionValue: "hasPrintRestrictionValue",
10976
- enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
10977
- enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
10978
- extractorExtractionTimestamp: "extractorExtractionTimestamp",
10979
- extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
10980
11032
  isCaseSensitive: "isCaseSensitive",
10981
11033
  isCommented: "isCommented",
10982
11034
  isCorrect: "isCorrect",
@@ -10995,8 +11047,8 @@ var NodeType = {
10995
11047
  isTracked: "isTracked",
10996
11048
  isTrackedValue: "isTrackedValue",
10997
11049
  item: "item",
10998
- itemValue: "itemValue",
10999
11050
  itemLead: "itemLead",
11051
+ itemValue: "itemValue",
11000
11052
  jobTitle: "jobTitle",
11001
11053
  jobTitleValue: "jobTitleValue",
11002
11054
  jupyterExecutionCount: "jupyterExecutionCount",
@@ -11043,10 +11095,6 @@ var NodeType = {
11043
11095
  locationValue: "locationValue",
11044
11096
  machineTranslated: "machineTranslated",
11045
11097
  machineTranslatedValue: "machineTranslatedValue",
11046
- translationOf: "translationOf",
11047
- translationOfValue: "translationOfValue",
11048
- spansPageBreak: "spansPageBreak",
11049
- spansPageBreakValue: "spansPageBreakValue",
11050
11098
  mailingList: "mailingList",
11051
11099
  marginNumber: "marginNumber",
11052
11100
  marginNumberValue: "marginNumberValue",
@@ -11068,6 +11116,8 @@ var NodeType = {
11068
11116
  message: "message",
11069
11117
  mockupId: "mockupId",
11070
11118
  name: "name",
11119
+ needsValidation: "needsValidation",
11120
+ needsValidationValue: "needsValidationValue",
11071
11121
  offset: "offset",
11072
11122
  options: "options",
11073
11123
  optionsValue: "optionsValue",
@@ -11080,8 +11130,6 @@ var NodeType = {
11080
11130
  pageNumber: "pageNumber",
11081
11131
  pageNumberValue: "pageNumberValue",
11082
11132
  pageValue: "pageValue",
11083
- printParentChapterLevel: "printParentChapterLevel",
11084
- printParentChapterLevelValue: "printParentChapterLevelValue",
11085
11133
  pairs: "pairs",
11086
11134
  pairsValue: "pairsValue",
11087
11135
  parent: "parent",
@@ -11090,55 +11138,55 @@ var NodeType = {
11090
11138
  partialAnswerValue: "partialAnswerValue",
11091
11139
  path: "path",
11092
11140
  pathValue: "pathValue",
11141
+ person: "person",
11142
+ platformBackgroundColor: "platformBackgroundColor",
11143
+ platformBackgroundColorValue: "platformBackgroundColorValue",
11144
+ platformBackgroundImage: "platformBackgroundImage",
11145
+ platformBackgroundImageValue: "platformBackgroundImageValue",
11146
+ platformBaseLayerColor: "platformBaseLayerColor",
11147
+ platformBaseLayerColorValue: "platformBaseLayerColorValue",
11148
+ platformBorderColor: "platformBorderColor",
11149
+ platformBorderColorValue: "platformBorderColorValue",
11150
+ platformBorderRadius: "platformBorderRadius",
11151
+ platformBorderRadiusValue: "platformBorderRadiusValue",
11093
11152
  platformBrandTarget: "platformBrandTarget",
11094
11153
  platformBrandTargetValue: "platformBrandTargetValue",
11095
- platformName: "platformName",
11096
- platformNameValue: "platformNameValue",
11154
+ platformButtonBackgroundColor: "platformButtonBackgroundColor",
11155
+ platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11156
+ platformButtonPrimaryColor: "platformButtonPrimaryColor",
11157
+ platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11097
11158
  platformIcon: "platformIcon",
11098
11159
  platformIconValue: "platformIconValue",
11099
11160
  platformLogo: "platformLogo",
11100
- platformLogoValue: "platformLogoValue",
11101
11161
  platformLogoMaxHeight: "platformLogoMaxHeight",
11102
11162
  platformLogoMaxHeightValue: "platformLogoMaxHeightValue",
11163
+ platformLogoValue: "platformLogoValue",
11164
+ platformMargin: "platformMargin",
11165
+ platformMarginValue: "platformMarginValue",
11166
+ platformMessageBackgroundColor: "platformMessageBackgroundColor",
11167
+ platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11168
+ platformName: "platformName",
11169
+ platformNameValue: "platformNameValue",
11170
+ platformNeedsShadow: "platformNeedsShadow",
11171
+ platformNeedsShadowValue: "platformNeedsShadowValue",
11172
+ platformPlaceholderColor: "platformPlaceholderColor",
11173
+ platformPlaceholderColorValue: "platformPlaceholderColorValue",
11103
11174
  platformPrimaryColor: "platformPrimaryColor",
11104
11175
  platformPrimaryColorValue: "platformPrimaryColorValue",
11105
- platformSecondaryColor: "platformSecondaryColor",
11106
- platformSecondaryColorValue: "platformSecondaryColorValue",
11107
- platformBackgroundColor: "platformBackgroundColor",
11108
- platformBackgroundColorValue: "platformBackgroundColorValue",
11109
11176
  platformScrollbarColor: "platformScrollbarColor",
11110
11177
  platformScrollbarColorValue: "platformScrollbarColorValue",
11178
+ platformSecondaryColor: "platformSecondaryColor",
11179
+ platformSecondaryColorValue: "platformSecondaryColorValue",
11180
+ platformSelectionBorderRadius: "platformSelectionBorderRadius",
11181
+ platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11111
11182
  platformSelectionColor: "platformSelectionColor",
11112
11183
  platformSelectionColorValue: "platformSelectionColorValue",
11184
+ platformSelectionTextColor: "platformSelectionTextColor",
11185
+ platformSelectionTextColorValue: "platformSelectionTextColorValue",
11113
11186
  platformSeparatorColor: "platformSeparatorColor",
11114
11187
  platformSeparatorColorValue: "platformSeparatorColorValue",
11115
- platformPlaceholderColor: "platformPlaceholderColor",
11116
- platformPlaceholderColorValue: "platformPlaceholderColorValue",
11117
11188
  platformTextSelectionColor: "platformTextSelectionColor",
11118
11189
  platformTextSelectionColorValue: "platformTextSelectionColorValue",
11119
- platformButtonPrimaryColor: "platformButtonPrimaryColor",
11120
- platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11121
- platformButtonBackgroundColor: "platformButtonBackgroundColor",
11122
- platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11123
- platformMessageBackgroundColor: "platformMessageBackgroundColor",
11124
- platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11125
- platformBackgroundImage: "platformBackgroundImage",
11126
- platformBackgroundImageValue: "platformBackgroundImageValue",
11127
- platformBorderColor: "platformBorderColor",
11128
- platformBorderColorValue: "platformBorderColorValue",
11129
- platformSelectionTextColor: "platformSelectionTextColor",
11130
- platformSelectionTextColorValue: "platformSelectionTextColorValue",
11131
- platformBaseLayerColor: "platformBaseLayerColor",
11132
- platformBaseLayerColorValue: "platformBaseLayerColorValue",
11133
- platformMargin: "platformMargin",
11134
- platformMarginValue: "platformMarginValue",
11135
- platformBorderRadius: "platformBorderRadius",
11136
- platformBorderRadiusValue: "platformBorderRadiusValue",
11137
- platformSelectionBorderRadius: "platformSelectionBorderRadius",
11138
- platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11139
- platformNeedsShadow: "platformNeedsShadow",
11140
- platformNeedsShadowValue: "platformNeedsShadowValue",
11141
- person: "person",
11142
11190
  pointerLeft: "pointerLeft",
11143
11191
  pointerLeftValue: "pointerLeftValue",
11144
11192
  pointerTop: "pointerTop",
@@ -11151,6 +11199,8 @@ var NodeType = {
11151
11199
  previewImageValue: "previewImageValue",
11152
11200
  previewVideo: "previewVideo",
11153
11201
  previewVideoValue: "previewVideoValue",
11202
+ printParentChapterLevel: "printParentChapterLevel",
11203
+ printParentChapterLevelValue: "printParentChapterLevelValue",
11154
11204
  processHandIn: "processHandIn",
11155
11205
  processHandInLocation: "processHandInLocation",
11156
11206
  processHandInLocationValue: "processHandInLocationValue",
@@ -11186,9 +11236,9 @@ var NodeType = {
11186
11236
  publisherValue: "publisherValue",
11187
11237
  quantity: "quantity",
11188
11238
  question: "question",
11189
- questionValue: "questionValue",
11190
11239
  questions: "questions",
11191
11240
  questionsValue: "questionsValue",
11241
+ questionValue: "questionValue",
11192
11242
  quizCountItems: "quizCountItems",
11193
11243
  quizCountItemsValue: "quizCountItemsValue",
11194
11244
  quizStrikethroughSolutions: "quizStrikethroughSolutions",
@@ -11216,6 +11266,8 @@ var NodeType = {
11216
11266
  refPublisher: "refPublisher",
11217
11267
  relatedBook: "relatedBook",
11218
11268
  relatedBookValue: "relatedBookValue",
11269
+ translationOfBook: "translationOfBook",
11270
+ translationOfBookValue: "translationOfBookValue",
11219
11271
  releaseDate: "releaseDate",
11220
11272
  releaseDateValue: "releaseDateValue",
11221
11273
  releaseKind: "releaseKind",
@@ -11241,6 +11293,8 @@ var NodeType = {
11241
11293
  // bit type (root)
11242
11294
  rows: "rows",
11243
11295
  rowsValue: "rowsValue",
11296
+ rtl: "rtl",
11297
+ rtlValue: "rtlValue",
11244
11298
  rubric: "rubric",
11245
11299
  rubricValue: "rubricValue",
11246
11300
  sampleSolution: "sampleSolution",
@@ -11270,6 +11324,8 @@ var NodeType = {
11270
11324
  sourceRLValue: "sourceRLValue",
11271
11325
  spaceId: "spaceId",
11272
11326
  spaceIdValue: "spaceIdValue",
11327
+ spansPageBreak: "spansPageBreak",
11328
+ spansPageBreakValue: "spansPageBreakValue",
11273
11329
  src: "src",
11274
11330
  src1x: "src1x",
11275
11331
  src2x: "src2x",
@@ -11335,15 +11391,13 @@ var NodeType = {
11335
11391
  textsValue: "textsValue",
11336
11392
  theme: "theme",
11337
11393
  themeValue: "themeValue",
11338
- rtl: "rtl",
11339
- rtlValue: "rtlValue",
11340
11394
  thumbImage: "thumbImage",
11341
11395
  thumbImageValue: "thumbImageValue",
11342
11396
  thumbnails: "thumbnails",
11343
11397
  thumbnailsValue: "thumbnailsValue",
11344
11398
  title: "title",
11345
- titleValue: "titleValue",
11346
11399
  titleString: "titleString",
11400
+ titleValue: "titleValue",
11347
11401
  toc: "toc",
11348
11402
  tocContent: "tocContent",
11349
11403
  tocContentValue: "tocContentValue",
@@ -11352,11 +11406,15 @@ var NodeType = {
11352
11406
  tocValue: "tocValue",
11353
11407
  topicTag: "topicTag",
11354
11408
  topicTagValue: "topicTagValue",
11409
+ translationOf: "translationOf",
11410
+ translationOfValue: "translationOfValue",
11355
11411
  trim: "trim",
11356
11412
  type: "type",
11357
11413
  unit: "unit",
11358
11414
  unitAbbr: "unitAbbr",
11359
11415
  url: "url",
11416
+ validationDate: "validationDate",
11417
+ validationDateValue: "validationDateValue",
11360
11418
  value: "value",
11361
11419
  values: "values",
11362
11420
  valuesValue: "valuesValue",
@@ -24123,6 +24181,18 @@ var Builder = class extends BaseBuilder {
24123
24181
  data.isEditable,
24124
24182
  options
24125
24183
  ),
24184
+ needsValidation: this.toAstProperty(
24185
+ bitType,
24186
+ ConfigKey.property_needsValidation,
24187
+ data.needsValidation,
24188
+ options
24189
+ ),
24190
+ validationDate: this.toAstProperty(
24191
+ bitType,
24192
+ ConfigKey.property_validationDate,
24193
+ data.validationDate,
24194
+ options
24195
+ ),
24126
24196
  aiGenerated: this.toAstProperty(
24127
24197
  bitType,
24128
24198
  ConfigKey.property_aiGenerated,
@@ -24313,6 +24383,12 @@ var Builder = class extends BaseBuilder {
24313
24383
  data.relatedBook,
24314
24384
  options
24315
24385
  ),
24386
+ translationOfBook: this.toAstProperty(
24387
+ bitType,
24388
+ ConfigKey.property_translationOfBook,
24389
+ data.translationOfBook,
24390
+ options
24391
+ ),
24316
24392
  author: this.toAstProperty(bitType, ConfigKey.property_author, data.author, options),
24317
24393
  subject: this.toAstProperty(bitType, ConfigKey.property_subject, data.subject, options),
24318
24394
  date: this.toAstProperty(bitType, ConfigKey.property_date, data.date, options),
@@ -24889,6 +24965,12 @@ var Builder = class extends BaseBuilder {
24889
24965
  data.allowPrint,
24890
24966
  options
24891
24967
  ),
24968
+ allowPrintEnforceSpaceConfiguration: this.toAstProperty(
24969
+ bitType,
24970
+ ConfigKey.property_allowPrintEnforceSpaceConfiguration,
24971
+ data.allowPrintEnforceSpaceConfiguration,
24972
+ options
24973
+ ),
24892
24974
  printParentChapterLevel: this.toAstProperty(
24893
24975
  bitType,
24894
24976
  ConfigKey.property_printParentChapterLevel,