@gmb/bitmark-parser-generator 5.8.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 +28 -1
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +9 -0
- package/dist/browser/esm/index.d.ts +9 -0
- package/dist/browser/esm/index.js +28 -1
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +28 -1
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +28 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +28 -1
- package/dist/index.js.map +1 -1
- package/package.json +16 -16
|
@@ -1190,6 +1190,7 @@ var propertyKeys = {
|
|
|
1190
1190
|
property_aiGenerated: "@aiGenerated",
|
|
1191
1191
|
property_allowedBit: "@allowedBit",
|
|
1192
1192
|
property_allowPrint: "@allowPrint",
|
|
1193
|
+
property_allowPrintEnforceSpaceConfiguration: "@allowPrintEnforceSpaceConfiguration",
|
|
1193
1194
|
property_allowSubtitles: "@allowSubtitles",
|
|
1194
1195
|
property_alt: "@alt",
|
|
1195
1196
|
property_altLangTag: "@altLangTag",
|
|
@@ -1324,6 +1325,7 @@ var propertyKeys = {
|
|
|
1324
1325
|
property_location: "@location",
|
|
1325
1326
|
property_machineTranslated: "@machineTranslated",
|
|
1326
1327
|
property_translationOf: "@translationOf",
|
|
1328
|
+
property_translationOfBook: "@translationOfBook",
|
|
1327
1329
|
property_spansPageBreak: "@spansPageBreak",
|
|
1328
1330
|
property_mailingList: "@mailingList",
|
|
1329
1331
|
property_mark: "@mark",
|
|
@@ -3462,6 +3464,11 @@ var GROUPS = {
|
|
|
3462
3464
|
format: TagFormat.plainText,
|
|
3463
3465
|
maxCount: Count.infinity
|
|
3464
3466
|
},
|
|
3467
|
+
{
|
|
3468
|
+
key: ConfigKey.property_translationOfBook,
|
|
3469
|
+
description: "External Id of the translated book",
|
|
3470
|
+
format: TagFormat.plainText
|
|
3471
|
+
},
|
|
3465
3472
|
{
|
|
3466
3473
|
key: ConfigKey.property_duration,
|
|
3467
3474
|
description: "The duration of the book",
|
|
@@ -3488,6 +3495,12 @@ var GROUPS = {
|
|
|
3488
3495
|
format: TagFormat.boolean,
|
|
3489
3496
|
defaultValue: "false"
|
|
3490
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
|
+
},
|
|
3491
3504
|
{
|
|
3492
3505
|
key: ConfigKey.property_hasPrintRestriction,
|
|
3493
3506
|
description: "If true, the book has print restrictions",
|
|
@@ -10436,7 +10449,7 @@ var instance2 = new Config();
|
|
|
10436
10449
|
// src/generated/package_info.ts
|
|
10437
10450
|
var PACKAGE_INFO = {
|
|
10438
10451
|
"name": "@gmb/bitmark-parser-generator",
|
|
10439
|
-
"version": "5.
|
|
10452
|
+
"version": "5.9.0",
|
|
10440
10453
|
"author": "Get More Brain Ltd",
|
|
10441
10454
|
"license": "ISC",
|
|
10442
10455
|
"description": "A bitmark parser and generator using Peggy.js"
|
|
@@ -11300,6 +11313,8 @@ var NodeType = {
|
|
|
11300
11313
|
refPublisher: "refPublisher",
|
|
11301
11314
|
relatedBook: "relatedBook",
|
|
11302
11315
|
relatedBookValue: "relatedBookValue",
|
|
11316
|
+
translationOfBook: "translationOfBook",
|
|
11317
|
+
translationOfBookValue: "translationOfBookValue",
|
|
11303
11318
|
releaseDate: "releaseDate",
|
|
11304
11319
|
releaseDateValue: "releaseDateValue",
|
|
11305
11320
|
releaseKind: "releaseKind",
|
|
@@ -24415,6 +24430,12 @@ var Builder = class extends BaseBuilder {
|
|
|
24415
24430
|
data.relatedBook,
|
|
24416
24431
|
options
|
|
24417
24432
|
),
|
|
24433
|
+
translationOfBook: this.toAstProperty(
|
|
24434
|
+
bitType,
|
|
24435
|
+
ConfigKey.property_translationOfBook,
|
|
24436
|
+
data.translationOfBook,
|
|
24437
|
+
options
|
|
24438
|
+
),
|
|
24418
24439
|
author: this.toAstProperty(bitType, ConfigKey.property_author, data.author, options),
|
|
24419
24440
|
subject: this.toAstProperty(bitType, ConfigKey.property_subject, data.subject, options),
|
|
24420
24441
|
date: this.toAstProperty(bitType, ConfigKey.property_date, data.date, options),
|
|
@@ -24991,6 +25012,12 @@ var Builder = class extends BaseBuilder {
|
|
|
24991
25012
|
data.allowPrint,
|
|
24992
25013
|
options
|
|
24993
25014
|
),
|
|
25015
|
+
allowPrintEnforceSpaceConfiguration: this.toAstProperty(
|
|
25016
|
+
bitType,
|
|
25017
|
+
ConfigKey.property_allowPrintEnforceSpaceConfiguration,
|
|
25018
|
+
data.allowPrintEnforceSpaceConfiguration,
|
|
25019
|
+
options
|
|
25020
|
+
),
|
|
24994
25021
|
printParentChapterLevel: this.toAstProperty(
|
|
24995
25022
|
bitType,
|
|
24996
25023
|
ConfigKey.property_printParentChapterLevel,
|