@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.
@@ -310,6 +310,7 @@ var BitType = {
310
310
  extractorPageWithBlocks: "extractor-page-with-blocks",
311
311
  extractorPageWithBlocksCollapsible: "extractor-page-with-blocks-collapsible",
312
312
  extractorRepeatedText: "extractor-repeated-text",
313
+ extractorTheme: "extractor-theme",
313
314
  featured: "featured",
314
315
  feedback: "feedback",
315
316
  figure: "figure",
@@ -525,6 +526,9 @@ var BitType = {
525
526
  reviewApprovedNote: "review-approved-note",
526
527
  reviewAuthorNote: "review-author-note",
527
528
  reviewCustomerNote: "review-customer-note",
529
+ reviewError: "review-error",
530
+ reviewErrorAi: "review-error-ai",
531
+ reviewErrorTranslation: "review-error-translation",
528
532
  reviewNote: "review-note",
529
533
  reviewRequestForReviewNote: "review-request-for-review-note",
530
534
  reviewReviewerNote: "review-reviewer-note",
@@ -1186,6 +1190,7 @@ var propertyKeys = {
1186
1190
  property_aiGenerated: "@aiGenerated",
1187
1191
  property_allowedBit: "@allowedBit",
1188
1192
  property_allowPrint: "@allowPrint",
1193
+ property_allowPrintEnforceSpaceConfiguration: "@allowPrintEnforceSpaceConfiguration",
1189
1194
  property_allowSubtitles: "@allowSubtitles",
1190
1195
  property_alt: "@alt",
1191
1196
  property_altLangTag: "@altLangTag",
@@ -1258,6 +1263,8 @@ var propertyKeys = {
1258
1263
  property_disableFeedback: "@disableFeedback",
1259
1264
  property_duration: "@duration",
1260
1265
  property_isEditable: "@isEditable",
1266
+ property_needsValidation: "@needsValidation",
1267
+ property_validationDate: "@validationDate",
1261
1268
  property_emphasis: "@emphasis",
1262
1269
  property_example: "@example",
1263
1270
  property_externalId: "@externalId",
@@ -1318,6 +1325,7 @@ var propertyKeys = {
1318
1325
  property_location: "@location",
1319
1326
  property_machineTranslated: "@machineTranslated",
1320
1327
  property_translationOf: "@translationOf",
1328
+ property_translationOfBook: "@translationOfBook",
1321
1329
  property_spansPageBreak: "@spansPageBreak",
1322
1330
  property_mailingList: "@mailingList",
1323
1331
  property_mark: "@mark",
@@ -2798,6 +2806,18 @@ var GROUPS = {
2798
2806
  format: TagFormat.boolean,
2799
2807
  defaultValue: "false"
2800
2808
  },
2809
+ {
2810
+ key: ConfigKey.property_needsValidation,
2811
+ description: "If true, the bit needs validation",
2812
+ format: TagFormat.boolean,
2813
+ defaultValue: "false"
2814
+ },
2815
+ {
2816
+ key: ConfigKey.property_validationDate,
2817
+ description: "The date when the bit was validated",
2818
+ format: TagFormat.plainText,
2819
+ defaultValue: ""
2820
+ },
2801
2821
  {
2802
2822
  key: ConfigKey.property_aiGenerated,
2803
2823
  description: "If true, the bit is AI-generated",
@@ -3444,6 +3464,11 @@ var GROUPS = {
3444
3464
  format: TagFormat.plainText,
3445
3465
  maxCount: Count.infinity
3446
3466
  },
3467
+ {
3468
+ key: ConfigKey.property_translationOfBook,
3469
+ description: "External Id of the translated book",
3470
+ format: TagFormat.plainText
3471
+ },
3447
3472
  {
3448
3473
  key: ConfigKey.property_duration,
3449
3474
  description: "The duration of the book",
@@ -3470,6 +3495,12 @@ var GROUPS = {
3470
3495
  format: TagFormat.boolean,
3471
3496
  defaultValue: "false"
3472
3497
  },
3498
+ {
3499
+ key: ConfigKey.property_allowPrintEnforceSpaceConfiguration,
3500
+ description: "If true, enforces space configuration for printing regardless of the allowPrint setting",
3501
+ format: TagFormat.boolean,
3502
+ defaultValue: "false"
3503
+ },
3473
3504
  {
3474
3505
  key: ConfigKey.property_hasPrintRestriction,
3475
3506
  description: "If true, the book has print restrictions",
@@ -7317,6 +7348,12 @@ var BITS = {
7317
7348
  description: "Extractor information bit, used to provide information about extractors in articles or books",
7318
7349
  textFormatDefault: TextFormat2.json
7319
7350
  },
7351
+ [BitType.extractorTheme]: {
7352
+ since: "5.7.0",
7353
+ baseBitType: BitType._standard,
7354
+ description: "Extractor theme bit, used to store design/theme JSON extracted from documents",
7355
+ textFormatDefault: TextFormat2.json
7356
+ },
7320
7357
  [BitType.extractorAiChat]: {
7321
7358
  since: "3.19.0",
7322
7359
  baseBitType: BitType._standard,
@@ -9083,6 +9120,21 @@ var BITS = {
9083
9120
  baseBitType: BitType.reviewNote,
9084
9121
  description: "Customer review note bit, used to create customer notes in reviews"
9085
9122
  },
9123
+ [BitType.reviewError]: {
9124
+ since: "5.8.0",
9125
+ baseBitType: BitType.reviewNote,
9126
+ description: "Review error note bit, used to create error notes in reviews"
9127
+ },
9128
+ [BitType.reviewErrorAi]: {
9129
+ since: "5.8.0",
9130
+ baseBitType: BitType.reviewNote,
9131
+ description: "Review error AI note bit, used to create AI error notes in reviews"
9132
+ },
9133
+ [BitType.reviewErrorTranslation]: {
9134
+ since: "5.8.0",
9135
+ baseBitType: BitType.reviewNote,
9136
+ description: "Review error translation note bit, used to create translation error notes in reviews"
9137
+ },
9086
9138
  [BitType.reviewReviewerNote]: {
9087
9139
  since: "1.3.0",
9088
9140
  baseBitType: BitType.reviewNote,
@@ -10397,7 +10449,7 @@ var instance2 = new Config();
10397
10449
  // src/generated/package_info.ts
10398
10450
  var PACKAGE_INFO = {
10399
10451
  "name": "@gmb/bitmark-parser-generator",
10400
- "version": "5.7.0",
10452
+ "version": "5.9.0",
10401
10453
  "author": "Get More Brain Ltd",
10402
10454
  "license": "ISC",
10403
10455
  "description": "A bitmark parser and generator using Peggy.js"
@@ -10746,10 +10798,6 @@ var NodeType = {
10746
10798
  advertisingClickUrl: "advertisingClickUrl",
10747
10799
  advertisingClickUrlValue: "advertisingClickUrlValue",
10748
10800
  ageRange: "ageRange",
10749
- brandColor: "brandColor",
10750
- brandColorValue: "brandColorValue",
10751
- brandColorName: "brandColorName",
10752
- brandColorNameValue: "brandColorNameValue",
10753
10801
  ageRangeValue: "ageRangeValue",
10754
10802
  aiGenerated: "aiGenerated",
10755
10803
  aiGeneratedValue: "aiGeneratedValue",
@@ -10777,7 +10825,6 @@ var NodeType = {
10777
10825
  audioEmbed: "audioEmbed",
10778
10826
  audioLink: "audioLink",
10779
10827
  author: "author",
10780
- authorValue: "authorValue",
10781
10828
  authorFullName: "authorFullName",
10782
10829
  authorFullNameValue: "authorFullNameValue",
10783
10830
  authorJobTitle: "authorJobTitle",
@@ -10786,6 +10833,7 @@ var NodeType = {
10786
10833
  authorPseudonymValue: "authorPseudonymValue",
10787
10834
  authorTitle: "authorTitle",
10788
10835
  authorTitleValue: "authorTitleValue",
10836
+ authorValue: "authorValue",
10789
10837
  availableClassifications: "availableClassifications",
10790
10838
  availableClassificationsValue: "availableClassificationsValue",
10791
10839
  avatarImage: "avatarImage",
@@ -10837,6 +10885,10 @@ var NodeType = {
10837
10885
  botResponses: "botResponses",
10838
10886
  botResponsesValue: "botResponsesValue",
10839
10887
  botValue: "botValue",
10888
+ brandColor: "brandColor",
10889
+ brandColorName: "brandColorName",
10890
+ brandColorNameValue: "brandColorNameValue",
10891
+ brandColorValue: "brandColorValue",
10840
10892
  bubbleTag: "bubbleTag",
10841
10893
  bubbleTagValue: "bubbleTagValue",
10842
10894
  buttonCaption: "buttonCaption",
@@ -10932,6 +10984,8 @@ var NodeType = {
10932
10984
  elementsValueValue: "elementsValueValue",
10933
10985
  emphasis: "emphasis",
10934
10986
  end: "end",
10987
+ enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
10988
+ enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
10935
10989
  errors: "errors",
10936
10990
  errorsValue: "errorsValue",
10937
10991
  example: "example",
@@ -10940,6 +10994,8 @@ var NodeType = {
10940
10994
  externalIdValue: "externalIdValue",
10941
10995
  externalLink: "externalLink",
10942
10996
  externalLinkText: "externalLinkText",
10997
+ extractorExtractionTimestamp: "extractorExtractionTimestamp",
10998
+ extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
10943
10999
  extractorTag: "extractorTag",
10944
11000
  extractorTagValue: "extractorTagValue",
10945
11001
  extraProperties: "extraProperties",
@@ -10958,8 +11014,8 @@ var NodeType = {
10958
11014
  focusY: "focusY",
10959
11015
  focusYValue: "focusYValue",
10960
11016
  footer: "footer",
10961
- footerValue: "footerValue",
10962
11017
  footerText: "footerText",
11018
+ footerValue: "footerValue",
10963
11019
  forKeys: "forKeys",
10964
11020
  format: "format",
10965
11021
  formula: "formula",
@@ -10983,6 +11039,8 @@ var NodeType = {
10983
11039
  hasBookNavigationValue: "hasBookNavigationValue",
10984
11040
  hasMarkAsDone: "hasMarkAsDone",
10985
11041
  hasMarkAsDoneValue: "hasMarkAsDoneValue",
11042
+ hasPrintRestriction: "hasPrintRestriction",
11043
+ hasPrintRestrictionValue: "hasPrintRestrictionValue",
10986
11044
  head: "head",
10987
11045
  heading: "heading",
10988
11046
  height: "height",
@@ -10997,8 +11055,8 @@ var NodeType = {
10997
11055
  iconValue: "iconValue",
10998
11056
  id: "id",
10999
11057
  idValue: "idValue",
11000
- iframeSrc: "iframeSrc",
11001
11058
  iframeName: "iframeName",
11059
+ iframeSrc: "iframeSrc",
11002
11060
  image: "image",
11003
11061
  imageFirst: "imageFirst",
11004
11062
  imageFirstValue: "imageFirstValue",
@@ -11018,12 +11076,6 @@ var NodeType = {
11018
11076
  internalCommentValue: "internalCommentValue",
11019
11077
  internalPrintPdf: "internalPrintPdf",
11020
11078
  internalPrintPdfValue: "internalPrintPdfValue",
11021
- hasPrintRestriction: "hasPrintRestriction",
11022
- hasPrintRestrictionValue: "hasPrintRestrictionValue",
11023
- enforceUpdateOverUserInput: "enforceUpdateOverUserInput",
11024
- enforceUpdateOverUserInputValue: "enforceUpdateOverUserInputValue",
11025
- extractorExtractionTimestamp: "extractorExtractionTimestamp",
11026
- extractorExtractionTimestampValue: "extractorExtractionTimestampValue",
11027
11079
  isCaseSensitive: "isCaseSensitive",
11028
11080
  isCommented: "isCommented",
11029
11081
  isCorrect: "isCorrect",
@@ -11042,8 +11094,8 @@ var NodeType = {
11042
11094
  isTracked: "isTracked",
11043
11095
  isTrackedValue: "isTrackedValue",
11044
11096
  item: "item",
11045
- itemValue: "itemValue",
11046
11097
  itemLead: "itemLead",
11098
+ itemValue: "itemValue",
11047
11099
  jobTitle: "jobTitle",
11048
11100
  jobTitleValue: "jobTitleValue",
11049
11101
  jupyterExecutionCount: "jupyterExecutionCount",
@@ -11090,10 +11142,6 @@ var NodeType = {
11090
11142
  locationValue: "locationValue",
11091
11143
  machineTranslated: "machineTranslated",
11092
11144
  machineTranslatedValue: "machineTranslatedValue",
11093
- translationOf: "translationOf",
11094
- translationOfValue: "translationOfValue",
11095
- spansPageBreak: "spansPageBreak",
11096
- spansPageBreakValue: "spansPageBreakValue",
11097
11145
  mailingList: "mailingList",
11098
11146
  marginNumber: "marginNumber",
11099
11147
  marginNumberValue: "marginNumberValue",
@@ -11115,6 +11163,8 @@ var NodeType = {
11115
11163
  message: "message",
11116
11164
  mockupId: "mockupId",
11117
11165
  name: "name",
11166
+ needsValidation: "needsValidation",
11167
+ needsValidationValue: "needsValidationValue",
11118
11168
  offset: "offset",
11119
11169
  options: "options",
11120
11170
  optionsValue: "optionsValue",
@@ -11127,8 +11177,6 @@ var NodeType = {
11127
11177
  pageNumber: "pageNumber",
11128
11178
  pageNumberValue: "pageNumberValue",
11129
11179
  pageValue: "pageValue",
11130
- printParentChapterLevel: "printParentChapterLevel",
11131
- printParentChapterLevelValue: "printParentChapterLevelValue",
11132
11180
  pairs: "pairs",
11133
11181
  pairsValue: "pairsValue",
11134
11182
  parent: "parent",
@@ -11137,55 +11185,55 @@ var NodeType = {
11137
11185
  partialAnswerValue: "partialAnswerValue",
11138
11186
  path: "path",
11139
11187
  pathValue: "pathValue",
11188
+ person: "person",
11189
+ platformBackgroundColor: "platformBackgroundColor",
11190
+ platformBackgroundColorValue: "platformBackgroundColorValue",
11191
+ platformBackgroundImage: "platformBackgroundImage",
11192
+ platformBackgroundImageValue: "platformBackgroundImageValue",
11193
+ platformBaseLayerColor: "platformBaseLayerColor",
11194
+ platformBaseLayerColorValue: "platformBaseLayerColorValue",
11195
+ platformBorderColor: "platformBorderColor",
11196
+ platformBorderColorValue: "platformBorderColorValue",
11197
+ platformBorderRadius: "platformBorderRadius",
11198
+ platformBorderRadiusValue: "platformBorderRadiusValue",
11140
11199
  platformBrandTarget: "platformBrandTarget",
11141
11200
  platformBrandTargetValue: "platformBrandTargetValue",
11142
- platformName: "platformName",
11143
- platformNameValue: "platformNameValue",
11201
+ platformButtonBackgroundColor: "platformButtonBackgroundColor",
11202
+ platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11203
+ platformButtonPrimaryColor: "platformButtonPrimaryColor",
11204
+ platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11144
11205
  platformIcon: "platformIcon",
11145
11206
  platformIconValue: "platformIconValue",
11146
11207
  platformLogo: "platformLogo",
11147
- platformLogoValue: "platformLogoValue",
11148
11208
  platformLogoMaxHeight: "platformLogoMaxHeight",
11149
11209
  platformLogoMaxHeightValue: "platformLogoMaxHeightValue",
11210
+ platformLogoValue: "platformLogoValue",
11211
+ platformMargin: "platformMargin",
11212
+ platformMarginValue: "platformMarginValue",
11213
+ platformMessageBackgroundColor: "platformMessageBackgroundColor",
11214
+ platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11215
+ platformName: "platformName",
11216
+ platformNameValue: "platformNameValue",
11217
+ platformNeedsShadow: "platformNeedsShadow",
11218
+ platformNeedsShadowValue: "platformNeedsShadowValue",
11219
+ platformPlaceholderColor: "platformPlaceholderColor",
11220
+ platformPlaceholderColorValue: "platformPlaceholderColorValue",
11150
11221
  platformPrimaryColor: "platformPrimaryColor",
11151
11222
  platformPrimaryColorValue: "platformPrimaryColorValue",
11152
- platformSecondaryColor: "platformSecondaryColor",
11153
- platformSecondaryColorValue: "platformSecondaryColorValue",
11154
- platformBackgroundColor: "platformBackgroundColor",
11155
- platformBackgroundColorValue: "platformBackgroundColorValue",
11156
11223
  platformScrollbarColor: "platformScrollbarColor",
11157
11224
  platformScrollbarColorValue: "platformScrollbarColorValue",
11225
+ platformSecondaryColor: "platformSecondaryColor",
11226
+ platformSecondaryColorValue: "platformSecondaryColorValue",
11227
+ platformSelectionBorderRadius: "platformSelectionBorderRadius",
11228
+ platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11158
11229
  platformSelectionColor: "platformSelectionColor",
11159
11230
  platformSelectionColorValue: "platformSelectionColorValue",
11231
+ platformSelectionTextColor: "platformSelectionTextColor",
11232
+ platformSelectionTextColorValue: "platformSelectionTextColorValue",
11160
11233
  platformSeparatorColor: "platformSeparatorColor",
11161
11234
  platformSeparatorColorValue: "platformSeparatorColorValue",
11162
- platformPlaceholderColor: "platformPlaceholderColor",
11163
- platformPlaceholderColorValue: "platformPlaceholderColorValue",
11164
11235
  platformTextSelectionColor: "platformTextSelectionColor",
11165
11236
  platformTextSelectionColorValue: "platformTextSelectionColorValue",
11166
- platformButtonPrimaryColor: "platformButtonPrimaryColor",
11167
- platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue",
11168
- platformButtonBackgroundColor: "platformButtonBackgroundColor",
11169
- platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue",
11170
- platformMessageBackgroundColor: "platformMessageBackgroundColor",
11171
- platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
11172
- platformBackgroundImage: "platformBackgroundImage",
11173
- platformBackgroundImageValue: "platformBackgroundImageValue",
11174
- platformBorderColor: "platformBorderColor",
11175
- platformBorderColorValue: "platformBorderColorValue",
11176
- platformSelectionTextColor: "platformSelectionTextColor",
11177
- platformSelectionTextColorValue: "platformSelectionTextColorValue",
11178
- platformBaseLayerColor: "platformBaseLayerColor",
11179
- platformBaseLayerColorValue: "platformBaseLayerColorValue",
11180
- platformMargin: "platformMargin",
11181
- platformMarginValue: "platformMarginValue",
11182
- platformBorderRadius: "platformBorderRadius",
11183
- platformBorderRadiusValue: "platformBorderRadiusValue",
11184
- platformSelectionBorderRadius: "platformSelectionBorderRadius",
11185
- platformSelectionBorderRadiusValue: "platformSelectionBorderRadiusValue",
11186
- platformNeedsShadow: "platformNeedsShadow",
11187
- platformNeedsShadowValue: "platformNeedsShadowValue",
11188
- person: "person",
11189
11237
  pointerLeft: "pointerLeft",
11190
11238
  pointerLeftValue: "pointerLeftValue",
11191
11239
  pointerTop: "pointerTop",
@@ -11198,6 +11246,8 @@ var NodeType = {
11198
11246
  previewImageValue: "previewImageValue",
11199
11247
  previewVideo: "previewVideo",
11200
11248
  previewVideoValue: "previewVideoValue",
11249
+ printParentChapterLevel: "printParentChapterLevel",
11250
+ printParentChapterLevelValue: "printParentChapterLevelValue",
11201
11251
  processHandIn: "processHandIn",
11202
11252
  processHandInLocation: "processHandInLocation",
11203
11253
  processHandInLocationValue: "processHandInLocationValue",
@@ -11233,9 +11283,9 @@ var NodeType = {
11233
11283
  publisherValue: "publisherValue",
11234
11284
  quantity: "quantity",
11235
11285
  question: "question",
11236
- questionValue: "questionValue",
11237
11286
  questions: "questions",
11238
11287
  questionsValue: "questionsValue",
11288
+ questionValue: "questionValue",
11239
11289
  quizCountItems: "quizCountItems",
11240
11290
  quizCountItemsValue: "quizCountItemsValue",
11241
11291
  quizStrikethroughSolutions: "quizStrikethroughSolutions",
@@ -11263,6 +11313,8 @@ var NodeType = {
11263
11313
  refPublisher: "refPublisher",
11264
11314
  relatedBook: "relatedBook",
11265
11315
  relatedBookValue: "relatedBookValue",
11316
+ translationOfBook: "translationOfBook",
11317
+ translationOfBookValue: "translationOfBookValue",
11266
11318
  releaseDate: "releaseDate",
11267
11319
  releaseDateValue: "releaseDateValue",
11268
11320
  releaseKind: "releaseKind",
@@ -11288,6 +11340,8 @@ var NodeType = {
11288
11340
  // bit type (root)
11289
11341
  rows: "rows",
11290
11342
  rowsValue: "rowsValue",
11343
+ rtl: "rtl",
11344
+ rtlValue: "rtlValue",
11291
11345
  rubric: "rubric",
11292
11346
  rubricValue: "rubricValue",
11293
11347
  sampleSolution: "sampleSolution",
@@ -11317,6 +11371,8 @@ var NodeType = {
11317
11371
  sourceRLValue: "sourceRLValue",
11318
11372
  spaceId: "spaceId",
11319
11373
  spaceIdValue: "spaceIdValue",
11374
+ spansPageBreak: "spansPageBreak",
11375
+ spansPageBreakValue: "spansPageBreakValue",
11320
11376
  src: "src",
11321
11377
  src1x: "src1x",
11322
11378
  src2x: "src2x",
@@ -11382,15 +11438,13 @@ var NodeType = {
11382
11438
  textsValue: "textsValue",
11383
11439
  theme: "theme",
11384
11440
  themeValue: "themeValue",
11385
- rtl: "rtl",
11386
- rtlValue: "rtlValue",
11387
11441
  thumbImage: "thumbImage",
11388
11442
  thumbImageValue: "thumbImageValue",
11389
11443
  thumbnails: "thumbnails",
11390
11444
  thumbnailsValue: "thumbnailsValue",
11391
11445
  title: "title",
11392
- titleValue: "titleValue",
11393
11446
  titleString: "titleString",
11447
+ titleValue: "titleValue",
11394
11448
  toc: "toc",
11395
11449
  tocContent: "tocContent",
11396
11450
  tocContentValue: "tocContentValue",
@@ -11399,11 +11453,15 @@ var NodeType = {
11399
11453
  tocValue: "tocValue",
11400
11454
  topicTag: "topicTag",
11401
11455
  topicTagValue: "topicTagValue",
11456
+ translationOf: "translationOf",
11457
+ translationOfValue: "translationOfValue",
11402
11458
  trim: "trim",
11403
11459
  type: "type",
11404
11460
  unit: "unit",
11405
11461
  unitAbbr: "unitAbbr",
11406
11462
  url: "url",
11463
+ validationDate: "validationDate",
11464
+ validationDateValue: "validationDateValue",
11407
11465
  value: "value",
11408
11466
  values: "values",
11409
11467
  valuesValue: "valuesValue",
@@ -24170,6 +24228,18 @@ var Builder = class extends BaseBuilder {
24170
24228
  data.isEditable,
24171
24229
  options
24172
24230
  ),
24231
+ needsValidation: this.toAstProperty(
24232
+ bitType,
24233
+ ConfigKey.property_needsValidation,
24234
+ data.needsValidation,
24235
+ options
24236
+ ),
24237
+ validationDate: this.toAstProperty(
24238
+ bitType,
24239
+ ConfigKey.property_validationDate,
24240
+ data.validationDate,
24241
+ options
24242
+ ),
24173
24243
  aiGenerated: this.toAstProperty(
24174
24244
  bitType,
24175
24245
  ConfigKey.property_aiGenerated,
@@ -24360,6 +24430,12 @@ var Builder = class extends BaseBuilder {
24360
24430
  data.relatedBook,
24361
24431
  options
24362
24432
  ),
24433
+ translationOfBook: this.toAstProperty(
24434
+ bitType,
24435
+ ConfigKey.property_translationOfBook,
24436
+ data.translationOfBook,
24437
+ options
24438
+ ),
24363
24439
  author: this.toAstProperty(bitType, ConfigKey.property_author, data.author, options),
24364
24440
  subject: this.toAstProperty(bitType, ConfigKey.property_subject, data.subject, options),
24365
24441
  date: this.toAstProperty(bitType, ConfigKey.property_date, data.date, options),
@@ -24936,6 +25012,12 @@ var Builder = class extends BaseBuilder {
24936
25012
  data.allowPrint,
24937
25013
  options
24938
25014
  ),
25015
+ allowPrintEnforceSpaceConfiguration: this.toAstProperty(
25016
+ bitType,
25017
+ ConfigKey.property_allowPrintEnforceSpaceConfiguration,
25018
+ data.allowPrintEnforceSpaceConfiguration,
25019
+ options
25020
+ ),
24939
25021
  printParentChapterLevel: this.toAstProperty(
24940
25022
  bitType,
24941
25023
  ConfigKey.property_printParentChapterLevel,