@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.cjs CHANGED
@@ -324,6 +324,7 @@ var BitType = {
324
324
  extractorPageWithBlocks: "extractor-page-with-blocks",
325
325
  extractorPageWithBlocksCollapsible: "extractor-page-with-blocks-collapsible",
326
326
  extractorRepeatedText: "extractor-repeated-text",
327
+ extractorTheme: "extractor-theme",
327
328
  featured: "featured",
328
329
  feedback: "feedback",
329
330
  figure: "figure",
@@ -539,6 +540,9 @@ var BitType = {
539
540
  reviewApprovedNote: "review-approved-note",
540
541
  reviewAuthorNote: "review-author-note",
541
542
  reviewCustomerNote: "review-customer-note",
543
+ reviewError: "review-error",
544
+ reviewErrorAi: "review-error-ai",
545
+ reviewErrorTranslation: "review-error-translation",
542
546
  reviewNote: "review-note",
543
547
  reviewRequestForReviewNote: "review-request-for-review-note",
544
548
  reviewReviewerNote: "review-reviewer-note",
@@ -1200,6 +1204,7 @@ var propertyKeys = {
1200
1204
  property_aiGenerated: "@aiGenerated",
1201
1205
  property_allowedBit: "@allowedBit",
1202
1206
  property_allowPrint: "@allowPrint",
1207
+ property_allowPrintEnforceSpaceConfiguration: "@allowPrintEnforceSpaceConfiguration",
1203
1208
  property_allowSubtitles: "@allowSubtitles",
1204
1209
  property_alt: "@alt",
1205
1210
  property_altLangTag: "@altLangTag",
@@ -1272,6 +1277,8 @@ var propertyKeys = {
1272
1277
  property_disableFeedback: "@disableFeedback",
1273
1278
  property_duration: "@duration",
1274
1279
  property_isEditable: "@isEditable",
1280
+ property_needsValidation: "@needsValidation",
1281
+ property_validationDate: "@validationDate",
1275
1282
  property_emphasis: "@emphasis",
1276
1283
  property_example: "@example",
1277
1284
  property_externalId: "@externalId",
@@ -1332,6 +1339,7 @@ var propertyKeys = {
1332
1339
  property_location: "@location",
1333
1340
  property_machineTranslated: "@machineTranslated",
1334
1341
  property_translationOf: "@translationOf",
1342
+ property_translationOfBook: "@translationOfBook",
1335
1343
  property_spansPageBreak: "@spansPageBreak",
1336
1344
  property_mailingList: "@mailingList",
1337
1345
  property_mark: "@mark",
@@ -2812,6 +2820,18 @@ var GROUPS = {
2812
2820
  format: TagFormat.boolean,
2813
2821
  defaultValue: "false"
2814
2822
  },
2823
+ {
2824
+ key: ConfigKey.property_needsValidation,
2825
+ description: "If true, the bit needs validation",
2826
+ format: TagFormat.boolean,
2827
+ defaultValue: "false"
2828
+ },
2829
+ {
2830
+ key: ConfigKey.property_validationDate,
2831
+ description: "The date when the bit was validated",
2832
+ format: TagFormat.plainText,
2833
+ defaultValue: ""
2834
+ },
2815
2835
  {
2816
2836
  key: ConfigKey.property_aiGenerated,
2817
2837
  description: "If true, the bit is AI-generated",
@@ -3458,6 +3478,11 @@ var GROUPS = {
3458
3478
  format: TagFormat.plainText,
3459
3479
  maxCount: Count.infinity
3460
3480
  },
3481
+ {
3482
+ key: ConfigKey.property_translationOfBook,
3483
+ description: "External Id of the translated book",
3484
+ format: TagFormat.plainText
3485
+ },
3461
3486
  {
3462
3487
  key: ConfigKey.property_duration,
3463
3488
  description: "The duration of the book",
@@ -3484,6 +3509,12 @@ var GROUPS = {
3484
3509
  format: TagFormat.boolean,
3485
3510
  defaultValue: "false"
3486
3511
  },
3512
+ {
3513
+ key: ConfigKey.property_allowPrintEnforceSpaceConfiguration,
3514
+ description: "If true, enforces space configuration for printing regardless of the allowPrint setting",
3515
+ format: TagFormat.boolean,
3516
+ defaultValue: "false"
3517
+ },
3487
3518
  {
3488
3519
  key: ConfigKey.property_hasPrintRestriction,
3489
3520
  description: "If true, the book has print restrictions",
@@ -7331,6 +7362,12 @@ var BITS = {
7331
7362
  description: "Extractor information bit, used to provide information about extractors in articles or books",
7332
7363
  textFormatDefault: TextFormat.json
7333
7364
  },
7365
+ [BitType.extractorTheme]: {
7366
+ since: "5.7.0",
7367
+ baseBitType: BitType._standard,
7368
+ description: "Extractor theme bit, used to store design/theme JSON extracted from documents",
7369
+ textFormatDefault: TextFormat.json
7370
+ },
7334
7371
  [BitType.extractorAiChat]: {
7335
7372
  since: "3.19.0",
7336
7373
  baseBitType: BitType._standard,
@@ -9097,6 +9134,21 @@ var BITS = {
9097
9134
  baseBitType: BitType.reviewNote,
9098
9135
  description: "Customer review note bit, used to create customer notes in reviews"
9099
9136
  },
9137
+ [BitType.reviewError]: {
9138
+ since: "5.8.0",
9139
+ baseBitType: BitType.reviewNote,
9140
+ description: "Review error note bit, used to create error notes in reviews"
9141
+ },
9142
+ [BitType.reviewErrorAi]: {
9143
+ since: "5.8.0",
9144
+ baseBitType: BitType.reviewNote,
9145
+ description: "Review error AI note bit, used to create AI error notes in reviews"
9146
+ },
9147
+ [BitType.reviewErrorTranslation]: {
9148
+ since: "5.8.0",
9149
+ baseBitType: BitType.reviewNote,
9150
+ description: "Review error translation note bit, used to create translation error notes in reviews"
9151
+ },
9100
9152
  [BitType.reviewReviewerNote]: {
9101
9153
  since: "1.3.0",
9102
9154
  baseBitType: BitType.reviewNote,
@@ -10411,7 +10463,7 @@ var instance2 = new Config();
10411
10463
  // src/generated/package_info.ts
10412
10464
  var PACKAGE_INFO = {
10413
10465
  "name": "@gmb/bitmark-parser-generator",
10414
- "version": "5.7.0",
10466
+ "version": "5.9.0",
10415
10467
  "author": "Get More Brain Ltd",
10416
10468
  "license": "ISC",
10417
10469
  "description": "A bitmark parser and generator using Peggy.js"
@@ -10760,10 +10812,6 @@ var NodeType = {
10760
10812
  advertisingClickUrl: "advertisingClickUrl",
10761
10813
  advertisingClickUrlValue: "advertisingClickUrlValue",
10762
10814
  ageRange: "ageRange",
10763
- brandColor: "brandColor",
10764
- brandColorValue: "brandColorValue",
10765
- brandColorName: "brandColorName",
10766
- brandColorNameValue: "brandColorNameValue",
10767
10815
  ageRangeValue: "ageRangeValue",
10768
10816
  aiGenerated: "aiGenerated",
10769
10817
  aiGeneratedValue: "aiGeneratedValue",
@@ -10791,7 +10839,6 @@ var NodeType = {
10791
10839
  audioEmbed: "audioEmbed",
10792
10840
  audioLink: "audioLink",
10793
10841
  author: "author",
10794
- authorValue: "authorValue",
10795
10842
  authorFullName: "authorFullName",
10796
10843
  authorFullNameValue: "authorFullNameValue",
10797
10844
  authorJobTitle: "authorJobTitle",
@@ -10800,6 +10847,7 @@ var NodeType = {
10800
10847
  authorPseudonymValue: "authorPseudonymValue",
10801
10848
  authorTitle: "authorTitle",
10802
10849
  authorTitleValue: "authorTitleValue",
10850
+ authorValue: "authorValue",
10803
10851
  availableClassifications: "availableClassifications",
10804
10852
  availableClassificationsValue: "availableClassificationsValue",
10805
10853
  avatarImage: "avatarImage",
@@ -10851,6 +10899,10 @@ var NodeType = {
10851
10899
  botResponses: "botResponses",
10852
10900
  botResponsesValue: "botResponsesValue",
10853
10901
  botValue: "botValue",
10902
+ brandColor: "brandColor",
10903
+ brandColorName: "brandColorName",
10904
+ brandColorNameValue: "brandColorNameValue",
10905
+ brandColorValue: "brandColorValue",
10854
10906
  bubbleTag: "bubbleTag",
10855
10907
  bubbleTagValue: "bubbleTagValue",
10856
10908
  buttonCaption: "buttonCaption",
@@ -10946,6 +10998,8 @@ var NodeType = {
10946
10998
  elementsValueValue: "elementsValueValue",
10947
10999
  emphasis: "emphasis",
10948
11000
  end: "end",
11001
+ enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
11002
+ enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
10949
11003
  errors: "errors",
10950
11004
  errorsValue: "errorsValue",
10951
11005
  example: "example",
@@ -10954,6 +11008,8 @@ var NodeType = {
10954
11008
  externalIdValue: "externalIdValue",
10955
11009
  externalLink: "externalLink",
10956
11010
  externalLinkText: "externalLinkText",
11011
+ extractorExtractionTimestamp: "extractorExtractionTimestamp",
11012
+ extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
10957
11013
  extractorTag: "extractorTag",
10958
11014
  extractorTagValue: "extractorTagValue",
10959
11015
  extraProperties: "extraProperties",
@@ -10972,8 +11028,8 @@ var NodeType = {
10972
11028
  focusY: "focusY",
10973
11029
  focusYValue: "focusYValue",
10974
11030
  footer: "footer",
10975
- footerValue: "footerValue",
10976
11031
  footerText: "footerText",
11032
+ footerValue: "footerValue",
10977
11033
  forKeys: "forKeys",
10978
11034
  format: "format",
10979
11035
  formula: "formula",
@@ -10997,6 +11053,8 @@ var NodeType = {
10997
11053
  hasBookNavigationValue: "hasBookNavigationValue",
10998
11054
  hasMarkAsDone: "hasMarkAsDone",
10999
11055
  hasMarkAsDoneValue: "hasMarkAsDoneValue",
11056
+ hasPrintRestriction: "hasPrintRestriction",
11057
+ hasPrintRestrictionValue: "hasPrintRestrictionValue",
11000
11058
  head: "head",
11001
11059
  heading: "heading",
11002
11060
  height: "height",
@@ -11011,8 +11069,8 @@ var NodeType = {
11011
11069
  iconValue: "iconValue",
11012
11070
  id: "id",
11013
11071
  idValue: "idValue",
11014
- iframeSrc: "iframeSrc",
11015
11072
  iframeName: "iframeName",
11073
+ iframeSrc: "iframeSrc",
11016
11074
  image: "image",
11017
11075
  imageFirst: "imageFirst",
11018
11076
  imageFirstValue: "imageFirstValue",
@@ -11032,12 +11090,6 @@ var NodeType = {
11032
11090
  internalCommentValue: "internalCommentValue",
11033
11091
  internalPrintPdf: "internalPrintPdf",
11034
11092
  internalPrintPdfValue: "internalPrintPdfValue",
11035
- hasPrintRestriction: "hasPrintRestriction",
11036
- hasPrintRestrictionValue: "hasPrintRestrictionValue",
11037
- enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
11038
- enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
11039
- extractorExtractionTimestamp: "extractorExtractionTimestamp",
11040
- extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
11041
11093
  isCaseSensitive: "isCaseSensitive",
11042
11094
  isCommented: "isCommented",
11043
11095
  isCorrect: "isCorrect",
@@ -11056,8 +11108,8 @@ var NodeType = {
11056
11108
  isTracked: "isTracked",
11057
11109
  isTrackedValue: "isTrackedValue",
11058
11110
  item: "item",
11059
- itemValue: "itemValue",
11060
11111
  itemLead: "itemLead",
11112
+ itemValue: "itemValue",
11061
11113
  jobTitle: "jobTitle",
11062
11114
  jobTitleValue: "jobTitleValue",
11063
11115
  jupyterExecutionCount: "jupyterExecutionCount",
@@ -11104,10 +11156,6 @@ var NodeType = {
11104
11156
  locationValue: "locationValue",
11105
11157
  machineTranslated: "machineTranslated",
11106
11158
  machineTranslatedValue: "machineTranslatedValue",
11107
- translationOf: "translationOf",
11108
- translationOfValue: "translationOfValue",
11109
- spansPageBreak: "spansPageBreak",
11110
- spansPageBreakValue: "spansPageBreakValue",
11111
11159
  mailingList: "mailingList",
11112
11160
  marginNumber: "marginNumber",
11113
11161
  marginNumberValue: "marginNumberValue",
@@ -11129,6 +11177,8 @@ var NodeType = {
11129
11177
  message: "message",
11130
11178
  mockupId: "mockupId",
11131
11179
  name: "name",
11180
+ needsValidation: "needsValidation",
11181
+ needsValidationValue: "needsValidationValue",
11132
11182
  offset: "offset",
11133
11183
  options: "options",
11134
11184
  optionsValue: "optionsValue",
@@ -11141,8 +11191,6 @@ var NodeType = {
11141
11191
  pageNumber: "pageNumber",
11142
11192
  pageNumberValue: "pageNumberValue",
11143
11193
  pageValue: "pageValue",
11144
- printParentChapterLevel: "printParentChapterLevel",
11145
- printParentChapterLevelValue: "printParentChapterLevelValue",
11146
11194
  pairs: "pairs",
11147
11195
  pairsValue: "pairsValue",
11148
11196
  parent: "parent",
@@ -11151,55 +11199,55 @@ var NodeType = {
11151
11199
  partialAnswerValue: "partialAnswerValue",
11152
11200
  path: "path",
11153
11201
  pathValue: "pathValue",
11202
+ person: "person",
11203
+ platformBackgroundColor: "platformBackgroundColor",
11204
+ platformBackgroundColorValue: "platformBackgroundColorValue",
11205
+ platformBackgroundImage: "platformBackgroundImage",
11206
+ platformBackgroundImageValue: "platformBackgroundImageValue",
11207
+ platformBaseLayerColor: "platformBaseLayerColor",
11208
+ platformBaseLayerColorValue: "platformBaseLayerColorValue",
11209
+ platformBorderColor: "platformBorderColor",
11210
+ platformBorderColorValue: "platformBorderColorValue",
11211
+ platformBorderRadius: "platformBorderRadius",
11212
+ platformBorderRadiusValue: "platformBorderRadiusValue",
11154
11213
  platformBrandTarget: "platformBrandTarget",
11155
11214
  platformBrandTargetValue: "platformBrandTargetValue",
11156
- platformName: "platformName",
11157
- platformNameValue: "platformNameValue",
11215
+ platformButtonBackgroundColor: "platformButtonBackgroundColor",
11216
+ platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11217
+ platformButtonPrimaryColor: "platformButtonPrimaryColor",
11218
+ platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11158
11219
  platformIcon: "platformIcon",
11159
11220
  platformIconValue: "platformIconValue",
11160
11221
  platformLogo: "platformLogo",
11161
- platformLogoValue: "platformLogoValue",
11162
11222
  platformLogoMaxHeight: "platformLogoMaxHeight",
11163
11223
  platformLogoMaxHeightValue: "platformLogoMaxHeightValue",
11224
+ platformLogoValue: "platformLogoValue",
11225
+ platformMargin: "platformMargin",
11226
+ platformMarginValue: "platformMarginValue",
11227
+ platformMessageBackgroundColor: "platformMessageBackgroundColor",
11228
+ platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11229
+ platformName: "platformName",
11230
+ platformNameValue: "platformNameValue",
11231
+ platformNeedsShadow: "platformNeedsShadow",
11232
+ platformNeedsShadowValue: "platformNeedsShadowValue",
11233
+ platformPlaceholderColor: "platformPlaceholderColor",
11234
+ platformPlaceholderColorValue: "platformPlaceholderColorValue",
11164
11235
  platformPrimaryColor: "platformPrimaryColor",
11165
11236
  platformPrimaryColorValue: "platformPrimaryColorValue",
11166
- platformSecondaryColor: "platformSecondaryColor",
11167
- platformSecondaryColorValue: "platformSecondaryColorValue",
11168
- platformBackgroundColor: "platformBackgroundColor",
11169
- platformBackgroundColorValue: "platformBackgroundColorValue",
11170
11237
  platformScrollbarColor: "platformScrollbarColor",
11171
11238
  platformScrollbarColorValue: "platformScrollbarColorValue",
11239
+ platformSecondaryColor: "platformSecondaryColor",
11240
+ platformSecondaryColorValue: "platformSecondaryColorValue",
11241
+ platformSelectionBorderRadius: "platformSelectionBorderRadius",
11242
+ platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11172
11243
  platformSelectionColor: "platformSelectionColor",
11173
11244
  platformSelectionColorValue: "platformSelectionColorValue",
11245
+ platformSelectionTextColor: "platformSelectionTextColor",
11246
+ platformSelectionTextColorValue: "platformSelectionTextColorValue",
11174
11247
  platformSeparatorColor: "platformSeparatorColor",
11175
11248
  platformSeparatorColorValue: "platformSeparatorColorValue",
11176
- platformPlaceholderColor: "platformPlaceholderColor",
11177
- platformPlaceholderColorValue: "platformPlaceholderColorValue",
11178
11249
  platformTextSelectionColor: "platformTextSelectionColor",
11179
11250
  platformTextSelectionColorValue: "platformTextSelectionColorValue",
11180
- platformButtonPrimaryColor: "platformButtonPrimaryColor",
11181
- platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11182
- platformButtonBackgroundColor: "platformButtonBackgroundColor",
11183
- platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11184
- platformMessageBackgroundColor: "platformMessageBackgroundColor",
11185
- platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11186
- platformBackgroundImage: "platformBackgroundImage",
11187
- platformBackgroundImageValue: "platformBackgroundImageValue",
11188
- platformBorderColor: "platformBorderColor",
11189
- platformBorderColorValue: "platformBorderColorValue",
11190
- platformSelectionTextColor: "platformSelectionTextColor",
11191
- platformSelectionTextColorValue: "platformSelectionTextColorValue",
11192
- platformBaseLayerColor: "platformBaseLayerColor",
11193
- platformBaseLayerColorValue: "platformBaseLayerColorValue",
11194
- platformMargin: "platformMargin",
11195
- platformMarginValue: "platformMarginValue",
11196
- platformBorderRadius: "platformBorderRadius",
11197
- platformBorderRadiusValue: "platformBorderRadiusValue",
11198
- platformSelectionBorderRadius: "platformSelectionBorderRadius",
11199
- platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11200
- platformNeedsShadow: "platformNeedsShadow",
11201
- platformNeedsShadowValue: "platformNeedsShadowValue",
11202
- person: "person",
11203
11251
  pointerLeft: "pointerLeft",
11204
11252
  pointerLeftValue: "pointerLeftValue",
11205
11253
  pointerTop: "pointerTop",
@@ -11212,6 +11260,8 @@ var NodeType = {
11212
11260
  previewImageValue: "previewImageValue",
11213
11261
  previewVideo: "previewVideo",
11214
11262
  previewVideoValue: "previewVideoValue",
11263
+ printParentChapterLevel: "printParentChapterLevel",
11264
+ printParentChapterLevelValue: "printParentChapterLevelValue",
11215
11265
  processHandIn: "processHandIn",
11216
11266
  processHandInLocation: "processHandInLocation",
11217
11267
  processHandInLocationValue: "processHandInLocationValue",
@@ -11247,9 +11297,9 @@ var NodeType = {
11247
11297
  publisherValue: "publisherValue",
11248
11298
  quantity: "quantity",
11249
11299
  question: "question",
11250
- questionValue: "questionValue",
11251
11300
  questions: "questions",
11252
11301
  questionsValue: "questionsValue",
11302
+ questionValue: "questionValue",
11253
11303
  quizCountItems: "quizCountItems",
11254
11304
  quizCountItemsValue: "quizCountItemsValue",
11255
11305
  quizStrikethroughSolutions: "quizStrikethroughSolutions",
@@ -11277,6 +11327,8 @@ var NodeType = {
11277
11327
  refPublisher: "refPublisher",
11278
11328
  relatedBook: "relatedBook",
11279
11329
  relatedBookValue: "relatedBookValue",
11330
+ translationOfBook: "translationOfBook",
11331
+ translationOfBookValue: "translationOfBookValue",
11280
11332
  releaseDate: "releaseDate",
11281
11333
  releaseDateValue: "releaseDateValue",
11282
11334
  releaseKind: "releaseKind",
@@ -11302,6 +11354,8 @@ var NodeType = {
11302
11354
  // bit type (root)
11303
11355
  rows: "rows",
11304
11356
  rowsValue: "rowsValue",
11357
+ rtl: "rtl",
11358
+ rtlValue: "rtlValue",
11305
11359
  rubric: "rubric",
11306
11360
  rubricValue: "rubricValue",
11307
11361
  sampleSolution: "sampleSolution",
@@ -11331,6 +11385,8 @@ var NodeType = {
11331
11385
  sourceRLValue: "sourceRLValue",
11332
11386
  spaceId: "spaceId",
11333
11387
  spaceIdValue: "spaceIdValue",
11388
+ spansPageBreak: "spansPageBreak",
11389
+ spansPageBreakValue: "spansPageBreakValue",
11334
11390
  src: "src",
11335
11391
  src1x: "src1x",
11336
11392
  src2x: "src2x",
@@ -11396,15 +11452,13 @@ var NodeType = {
11396
11452
  textsValue: "textsValue",
11397
11453
  theme: "theme",
11398
11454
  themeValue: "themeValue",
11399
- rtl: "rtl",
11400
- rtlValue: "rtlValue",
11401
11455
  thumbImage: "thumbImage",
11402
11456
  thumbImageValue: "thumbImageValue",
11403
11457
  thumbnails: "thumbnails",
11404
11458
  thumbnailsValue: "thumbnailsValue",
11405
11459
  title: "title",
11406
- titleValue: "titleValue",
11407
11460
  titleString: "titleString",
11461
+ titleValue: "titleValue",
11408
11462
  toc: "toc",
11409
11463
  tocContent: "tocContent",
11410
11464
  tocContentValue: "tocContentValue",
@@ -11413,11 +11467,15 @@ var NodeType = {
11413
11467
  tocValue: "tocValue",
11414
11468
  topicTag: "topicTag",
11415
11469
  topicTagValue: "topicTagValue",
11470
+ translationOf: "translationOf",
11471
+ translationOfValue: "translationOfValue",
11416
11472
  trim: "trim",
11417
11473
  type: "type",
11418
11474
  unit: "unit",
11419
11475
  unitAbbr: "unitAbbr",
11420
11476
  url: "url",
11477
+ validationDate: "validationDate",
11478
+ validationDateValue: "validationDateValue",
11421
11479
  value: "value",
11422
11480
  values: "values",
11423
11481
  valuesValue: "valuesValue",
@@ -24184,6 +24242,18 @@ var Builder = class extends BaseBuilder {
24184
24242
  data.isEditable,
24185
24243
  options
24186
24244
  ),
24245
+ needsValidation: this.toAstProperty(
24246
+ bitType,
24247
+ ConfigKey.property_needsValidation,
24248
+ data.needsValidation,
24249
+ options
24250
+ ),
24251
+ validationDate: this.toAstProperty(
24252
+ bitType,
24253
+ ConfigKey.property_validationDate,
24254
+ data.validationDate,
24255
+ options
24256
+ ),
24187
24257
  aiGenerated: this.toAstProperty(
24188
24258
  bitType,
24189
24259
  ConfigKey.property_aiGenerated,
@@ -24374,6 +24444,12 @@ var Builder = class extends BaseBuilder {
24374
24444
  data.relatedBook,
24375
24445
  options
24376
24446
  ),
24447
+ translationOfBook: this.toAstProperty(
24448
+ bitType,
24449
+ ConfigKey.property_translationOfBook,
24450
+ data.translationOfBook,
24451
+ options
24452
+ ),
24377
24453
  author: this.toAstProperty(bitType, ConfigKey.property_author, data.author, options),
24378
24454
  subject: this.toAstProperty(bitType, ConfigKey.property_subject, data.subject, options),
24379
24455
  date: this.toAstProperty(bitType, ConfigKey.property_date, data.date, options),
@@ -24950,6 +25026,12 @@ var Builder = class extends BaseBuilder {
24950
25026
  data.allowPrint,
24951
25027
  options
24952
25028
  ),
25029
+ allowPrintEnforceSpaceConfiguration: this.toAstProperty(
25030
+ bitType,
25031
+ ConfigKey.property_allowPrintEnforceSpaceConfiguration,
25032
+ data.allowPrintEnforceSpaceConfiguration,
25033
+ options
25034
+ ),
24953
25035
  printParentChapterLevel: this.toAstProperty(
24954
25036
  bitType,
24955
25037
  ConfigKey.property_printParentChapterLevel,