@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
package/dist/cli/main.js
CHANGED
|
@@ -1108,6 +1108,7 @@ var propertyKeys = {
|
|
|
1108
1108
|
property_aiGenerated: "@aiGenerated",
|
|
1109
1109
|
property_allowedBit: "@allowedBit",
|
|
1110
1110
|
property_allowPrint: "@allowPrint",
|
|
1111
|
+
property_allowPrintEnforceSpaceConfiguration: "@allowPrintEnforceSpaceConfiguration",
|
|
1111
1112
|
property_allowSubtitles: "@allowSubtitles",
|
|
1112
1113
|
property_alt: "@alt",
|
|
1113
1114
|
property_altLangTag: "@altLangTag",
|
|
@@ -1242,6 +1243,7 @@ var propertyKeys = {
|
|
|
1242
1243
|
property_location: "@location",
|
|
1243
1244
|
property_machineTranslated: "@machineTranslated",
|
|
1244
1245
|
property_translationOf: "@translationOf",
|
|
1246
|
+
property_translationOfBook: "@translationOfBook",
|
|
1245
1247
|
property_spansPageBreak: "@spansPageBreak",
|
|
1246
1248
|
property_mailingList: "@mailingList",
|
|
1247
1249
|
property_mark: "@mark",
|
|
@@ -3371,6 +3373,11 @@ var GROUPS = {
|
|
|
3371
3373
|
format: TagFormat.plainText,
|
|
3372
3374
|
maxCount: Count.infinity
|
|
3373
3375
|
},
|
|
3376
|
+
{
|
|
3377
|
+
key: ConfigKey.property_translationOfBook,
|
|
3378
|
+
description: "External Id of the translated book",
|
|
3379
|
+
format: TagFormat.plainText
|
|
3380
|
+
},
|
|
3374
3381
|
{
|
|
3375
3382
|
key: ConfigKey.property_duration,
|
|
3376
3383
|
description: "The duration of the book",
|
|
@@ -3397,6 +3404,12 @@ var GROUPS = {
|
|
|
3397
3404
|
format: TagFormat.boolean,
|
|
3398
3405
|
defaultValue: "false"
|
|
3399
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
|
+
},
|
|
3400
3413
|
{
|
|
3401
3414
|
key: ConfigKey.property_hasPrintRestriction,
|
|
3402
3415
|
description: "If true, the book has print restrictions",
|
|
@@ -10345,7 +10358,7 @@ var instance2 = new Config();
|
|
|
10345
10358
|
// src/generated/package_info.ts
|
|
10346
10359
|
var PACKAGE_INFO = {
|
|
10347
10360
|
"name": "@gmb/bitmark-parser-generator",
|
|
10348
|
-
"version": "5.
|
|
10361
|
+
"version": "5.9.0",
|
|
10349
10362
|
"license": "ISC"};
|
|
10350
10363
|
var Environment = {
|
|
10351
10364
|
unknown: "",
|
|
@@ -11177,6 +11190,8 @@ var NodeType = {
|
|
|
11177
11190
|
refPublisher: "refPublisher",
|
|
11178
11191
|
relatedBook: "relatedBook",
|
|
11179
11192
|
relatedBookValue: "relatedBookValue",
|
|
11193
|
+
translationOfBook: "translationOfBook",
|
|
11194
|
+
translationOfBookValue: "translationOfBookValue",
|
|
11180
11195
|
releaseDate: "releaseDate",
|
|
11181
11196
|
releaseDateValue: "releaseDateValue",
|
|
11182
11197
|
releaseKind: "releaseKind",
|
|
@@ -24108,6 +24123,12 @@ var Builder = class extends BaseBuilder {
|
|
|
24108
24123
|
data.relatedBook,
|
|
24109
24124
|
options
|
|
24110
24125
|
),
|
|
24126
|
+
translationOfBook: this.toAstProperty(
|
|
24127
|
+
bitType,
|
|
24128
|
+
ConfigKey.property_translationOfBook,
|
|
24129
|
+
data.translationOfBook,
|
|
24130
|
+
options
|
|
24131
|
+
),
|
|
24111
24132
|
author: this.toAstProperty(bitType, ConfigKey.property_author, data.author, options),
|
|
24112
24133
|
subject: this.toAstProperty(bitType, ConfigKey.property_subject, data.subject, options),
|
|
24113
24134
|
date: this.toAstProperty(bitType, ConfigKey.property_date, data.date, options),
|
|
@@ -24684,6 +24705,12 @@ var Builder = class extends BaseBuilder {
|
|
|
24684
24705
|
data.allowPrint,
|
|
24685
24706
|
options
|
|
24686
24707
|
),
|
|
24708
|
+
allowPrintEnforceSpaceConfiguration: this.toAstProperty(
|
|
24709
|
+
bitType,
|
|
24710
|
+
ConfigKey.property_allowPrintEnforceSpaceConfiguration,
|
|
24711
|
+
data.allowPrintEnforceSpaceConfiguration,
|
|
24712
|
+
options
|
|
24713
|
+
),
|
|
24687
24714
|
printParentChapterLevel: this.toAstProperty(
|
|
24688
24715
|
bitType,
|
|
24689
24716
|
ConfigKey.property_printParentChapterLevel,
|