@gmb/bitmark-parser-generator 5.33.0 → 5.35.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 +2 -2
- package/dist/browser/cjs/index.cjs +133 -21
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +25 -0
- package/dist/browser/esm/index.d.ts +25 -0
- package/dist/browser/esm/index.js +133 -21
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +133 -21
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +133 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +25 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +133 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -258,6 +258,7 @@ declare const BitType: {
|
|
|
258
258
|
readonly extractorPageNumberCollapsible: "extractor-page-number-collapsible";
|
|
259
259
|
readonly extractorPageWithBlocks: "extractor-page-with-blocks";
|
|
260
260
|
readonly extractorPageWithBlocksCollapsible: "extractor-page-with-blocks-collapsible";
|
|
261
|
+
readonly extractorReconcile: "extractor-reconcile";
|
|
261
262
|
readonly extractorRepeatedText: "extractor-repeated-text";
|
|
262
263
|
readonly extractorRule: "extractor-rule";
|
|
263
264
|
readonly extractorTheme: "extractor-theme";
|
|
@@ -987,6 +988,9 @@ declare const ConfigKey: {
|
|
|
987
988
|
readonly property_resolvedBy: "@resolvedBy";
|
|
988
989
|
readonly property_resolvedDate: "@resolvedDate";
|
|
989
990
|
readonly property_revealSolutions: "@revealSolutions";
|
|
991
|
+
readonly property_reviewTag: "@reviewTag";
|
|
992
|
+
readonly property_reviewerTag: "@reviewerTag";
|
|
993
|
+
readonly property_rightsPolicy: "@rightsPolicy";
|
|
990
994
|
readonly property_sampleSolution: "@sampleSolution";
|
|
991
995
|
readonly property_scormSource: "@scormSource";
|
|
992
996
|
readonly property_search: "@search";
|
|
@@ -1706,6 +1710,9 @@ interface BitJson {
|
|
|
1706
1710
|
padletId: string;
|
|
1707
1711
|
jupyterId: string;
|
|
1708
1712
|
jupyterExecutionCount: number;
|
|
1713
|
+
copyright: string;
|
|
1714
|
+
license: string;
|
|
1715
|
+
rightsPolicy: string[];
|
|
1709
1716
|
sourceRL: string;
|
|
1710
1717
|
isPublic: boolean;
|
|
1711
1718
|
isTemplate: boolean;
|
|
@@ -1744,6 +1751,8 @@ interface BitJson {
|
|
|
1744
1751
|
slug: string;
|
|
1745
1752
|
tag: string | string[];
|
|
1746
1753
|
groupTag: GroupTagJson[];
|
|
1754
|
+
reviewTag: string | string[];
|
|
1755
|
+
reviewerTag: string | string[];
|
|
1747
1756
|
reductionTag: string | string[];
|
|
1748
1757
|
bubbleTag: string | string[];
|
|
1749
1758
|
extractorTag: string | string[];
|
|
@@ -2326,6 +2335,9 @@ interface Bit {
|
|
|
2326
2335
|
padletId?: Property;
|
|
2327
2336
|
jupyterId?: Property;
|
|
2328
2337
|
jupyterExecutionCount?: Property;
|
|
2338
|
+
copyright?: Property;
|
|
2339
|
+
license?: Property;
|
|
2340
|
+
rightsPolicy?: Property;
|
|
2329
2341
|
sourceRL?: Property;
|
|
2330
2342
|
isPublic?: Property;
|
|
2331
2343
|
isTemplate?: Property;
|
|
@@ -2369,6 +2381,8 @@ interface Bit {
|
|
|
2369
2381
|
slug?: Property;
|
|
2370
2382
|
tag?: Property;
|
|
2371
2383
|
groupTag?: GroupTagJson[];
|
|
2384
|
+
reviewTag?: Property;
|
|
2385
|
+
reviewerTag?: Property;
|
|
2372
2386
|
reductionTag?: Property;
|
|
2373
2387
|
bubbleTag?: Property;
|
|
2374
2388
|
extractorTag?: Property;
|
|
@@ -3226,6 +3240,12 @@ declare const NodeType: {
|
|
|
3226
3240
|
readonly responses: "responses";
|
|
3227
3241
|
readonly responsesValue: "responsesValue";
|
|
3228
3242
|
readonly revealSolutions: "revealSolutions";
|
|
3243
|
+
readonly reviewTag: "reviewTag";
|
|
3244
|
+
readonly reviewTagValue: "reviewTagValue";
|
|
3245
|
+
readonly reviewerTag: "reviewerTag";
|
|
3246
|
+
readonly reviewerTagValue: "reviewerTagValue";
|
|
3247
|
+
readonly rightsPolicy: "rightsPolicy";
|
|
3248
|
+
readonly rightsPolicyValue: "rightsPolicyValue";
|
|
3229
3249
|
readonly root: "root";
|
|
3230
3250
|
readonly rows: "rows";
|
|
3231
3251
|
readonly rowsValue: "rowsValue";
|
|
@@ -4328,6 +4348,9 @@ declare class Builder extends BaseBuilder {
|
|
|
4328
4348
|
padletId?: string;
|
|
4329
4349
|
jupyterId?: string;
|
|
4330
4350
|
jupyterExecutionCount?: number;
|
|
4351
|
+
copyright?: string;
|
|
4352
|
+
license?: string;
|
|
4353
|
+
rightsPolicy?: string | string[];
|
|
4331
4354
|
sourceRL?: string;
|
|
4332
4355
|
isPublic?: boolean;
|
|
4333
4356
|
isTemplate?: boolean;
|
|
@@ -4371,6 +4394,8 @@ declare class Builder extends BaseBuilder {
|
|
|
4371
4394
|
slug?: string;
|
|
4372
4395
|
tag?: string | string[];
|
|
4373
4396
|
groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
|
|
4397
|
+
reviewTag?: string | string[];
|
|
4398
|
+
reviewerTag?: string | string[];
|
|
4374
4399
|
reductionTag?: string | string[];
|
|
4375
4400
|
bubbleTag?: string | string[];
|
|
4376
4401
|
extractorTag?: string | string[];
|
|
@@ -258,6 +258,7 @@ declare const BitType: {
|
|
|
258
258
|
readonly extractorPageNumberCollapsible: "extractor-page-number-collapsible";
|
|
259
259
|
readonly extractorPageWithBlocks: "extractor-page-with-blocks";
|
|
260
260
|
readonly extractorPageWithBlocksCollapsible: "extractor-page-with-blocks-collapsible";
|
|
261
|
+
readonly extractorReconcile: "extractor-reconcile";
|
|
261
262
|
readonly extractorRepeatedText: "extractor-repeated-text";
|
|
262
263
|
readonly extractorRule: "extractor-rule";
|
|
263
264
|
readonly extractorTheme: "extractor-theme";
|
|
@@ -987,6 +988,9 @@ declare const ConfigKey: {
|
|
|
987
988
|
readonly property_resolvedBy: "@resolvedBy";
|
|
988
989
|
readonly property_resolvedDate: "@resolvedDate";
|
|
989
990
|
readonly property_revealSolutions: "@revealSolutions";
|
|
991
|
+
readonly property_reviewTag: "@reviewTag";
|
|
992
|
+
readonly property_reviewerTag: "@reviewerTag";
|
|
993
|
+
readonly property_rightsPolicy: "@rightsPolicy";
|
|
990
994
|
readonly property_sampleSolution: "@sampleSolution";
|
|
991
995
|
readonly property_scormSource: "@scormSource";
|
|
992
996
|
readonly property_search: "@search";
|
|
@@ -1706,6 +1710,9 @@ interface BitJson {
|
|
|
1706
1710
|
padletId: string;
|
|
1707
1711
|
jupyterId: string;
|
|
1708
1712
|
jupyterExecutionCount: number;
|
|
1713
|
+
copyright: string;
|
|
1714
|
+
license: string;
|
|
1715
|
+
rightsPolicy: string[];
|
|
1709
1716
|
sourceRL: string;
|
|
1710
1717
|
isPublic: boolean;
|
|
1711
1718
|
isTemplate: boolean;
|
|
@@ -1744,6 +1751,8 @@ interface BitJson {
|
|
|
1744
1751
|
slug: string;
|
|
1745
1752
|
tag: string | string[];
|
|
1746
1753
|
groupTag: GroupTagJson[];
|
|
1754
|
+
reviewTag: string | string[];
|
|
1755
|
+
reviewerTag: string | string[];
|
|
1747
1756
|
reductionTag: string | string[];
|
|
1748
1757
|
bubbleTag: string | string[];
|
|
1749
1758
|
extractorTag: string | string[];
|
|
@@ -2326,6 +2335,9 @@ interface Bit {
|
|
|
2326
2335
|
padletId?: Property;
|
|
2327
2336
|
jupyterId?: Property;
|
|
2328
2337
|
jupyterExecutionCount?: Property;
|
|
2338
|
+
copyright?: Property;
|
|
2339
|
+
license?: Property;
|
|
2340
|
+
rightsPolicy?: Property;
|
|
2329
2341
|
sourceRL?: Property;
|
|
2330
2342
|
isPublic?: Property;
|
|
2331
2343
|
isTemplate?: Property;
|
|
@@ -2369,6 +2381,8 @@ interface Bit {
|
|
|
2369
2381
|
slug?: Property;
|
|
2370
2382
|
tag?: Property;
|
|
2371
2383
|
groupTag?: GroupTagJson[];
|
|
2384
|
+
reviewTag?: Property;
|
|
2385
|
+
reviewerTag?: Property;
|
|
2372
2386
|
reductionTag?: Property;
|
|
2373
2387
|
bubbleTag?: Property;
|
|
2374
2388
|
extractorTag?: Property;
|
|
@@ -3226,6 +3240,12 @@ declare const NodeType: {
|
|
|
3226
3240
|
readonly responses: "responses";
|
|
3227
3241
|
readonly responsesValue: "responsesValue";
|
|
3228
3242
|
readonly revealSolutions: "revealSolutions";
|
|
3243
|
+
readonly reviewTag: "reviewTag";
|
|
3244
|
+
readonly reviewTagValue: "reviewTagValue";
|
|
3245
|
+
readonly reviewerTag: "reviewerTag";
|
|
3246
|
+
readonly reviewerTagValue: "reviewerTagValue";
|
|
3247
|
+
readonly rightsPolicy: "rightsPolicy";
|
|
3248
|
+
readonly rightsPolicyValue: "rightsPolicyValue";
|
|
3229
3249
|
readonly root: "root";
|
|
3230
3250
|
readonly rows: "rows";
|
|
3231
3251
|
readonly rowsValue: "rowsValue";
|
|
@@ -4328,6 +4348,9 @@ declare class Builder extends BaseBuilder {
|
|
|
4328
4348
|
padletId?: string;
|
|
4329
4349
|
jupyterId?: string;
|
|
4330
4350
|
jupyterExecutionCount?: number;
|
|
4351
|
+
copyright?: string;
|
|
4352
|
+
license?: string;
|
|
4353
|
+
rightsPolicy?: string | string[];
|
|
4331
4354
|
sourceRL?: string;
|
|
4332
4355
|
isPublic?: boolean;
|
|
4333
4356
|
isTemplate?: boolean;
|
|
@@ -4371,6 +4394,8 @@ declare class Builder extends BaseBuilder {
|
|
|
4371
4394
|
slug?: string;
|
|
4372
4395
|
tag?: string | string[];
|
|
4373
4396
|
groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
|
|
4397
|
+
reviewTag?: string | string[];
|
|
4398
|
+
reviewerTag?: string | string[];
|
|
4374
4399
|
reductionTag?: string | string[];
|
|
4375
4400
|
bubbleTag?: string | string[];
|
|
4376
4401
|
extractorTag?: string | string[];
|
|
@@ -267,6 +267,7 @@ var BitType2 = {
|
|
|
267
267
|
extractorPageNumberCollapsible: "extractor-page-number-collapsible",
|
|
268
268
|
extractorPageWithBlocks: "extractor-page-with-blocks",
|
|
269
269
|
extractorPageWithBlocksCollapsible: "extractor-page-with-blocks-collapsible",
|
|
270
|
+
extractorReconcile: "extractor-reconcile",
|
|
270
271
|
extractorRepeatedText: "extractor-repeated-text",
|
|
271
272
|
extractorRule: "extractor-rule",
|
|
272
273
|
extractorTheme: "extractor-theme",
|
|
@@ -1503,6 +1504,9 @@ var propertyKeys = {
|
|
|
1503
1504
|
property_resolvedBy: "@resolvedBy",
|
|
1504
1505
|
property_resolvedDate: "@resolvedDate",
|
|
1505
1506
|
property_revealSolutions: "@revealSolutions",
|
|
1507
|
+
property_reviewTag: "@reviewTag",
|
|
1508
|
+
property_reviewerTag: "@reviewerTag",
|
|
1509
|
+
property_rightsPolicy: "@rightsPolicy",
|
|
1506
1510
|
property_sampleSolution: "@sampleSolution",
|
|
1507
1511
|
property_scormSource: "@scormSource",
|
|
1508
1512
|
property_search: "@search",
|
|
@@ -2512,6 +2516,7 @@ var CARDSETS = {
|
|
|
2512
2516
|
key: ConfigKey.tag_title,
|
|
2513
2517
|
description: "Title of the definition.",
|
|
2514
2518
|
format: TagFormat.plainText,
|
|
2519
|
+
nullable: true,
|
|
2515
2520
|
jsonKey: "^heading.forKeys",
|
|
2516
2521
|
exportJsonKey: { "@bit": { heading: { forKeys: "$" } } }
|
|
2517
2522
|
},
|
|
@@ -2552,6 +2557,7 @@ var CARDSETS = {
|
|
|
2552
2557
|
key: ConfigKey.tag_title,
|
|
2553
2558
|
description: "Title of the definition.",
|
|
2554
2559
|
format: TagFormat.plainText,
|
|
2560
|
+
nullable: true,
|
|
2555
2561
|
jsonKey: "^heading.forValues",
|
|
2556
2562
|
exportJsonKey: { "@bit": { heading: { forValues: "$" } } }
|
|
2557
2563
|
},
|
|
@@ -2630,6 +2636,7 @@ var CARDSETS = {
|
|
|
2630
2636
|
key: ConfigKey.tag_title,
|
|
2631
2637
|
description: "Title of the definition.",
|
|
2632
2638
|
format: TagFormat.plainText,
|
|
2639
|
+
nullable: true,
|
|
2633
2640
|
jsonKey: "^heading.forKeys",
|
|
2634
2641
|
exportJsonKey: { "@bit": { heading: { forKeys: "$" } } }
|
|
2635
2642
|
},
|
|
@@ -2671,6 +2678,7 @@ var CARDSETS = {
|
|
|
2671
2678
|
key: ConfigKey.tag_title,
|
|
2672
2679
|
description: "Title of the definition.",
|
|
2673
2680
|
format: TagFormat.plainText,
|
|
2681
|
+
nullable: true,
|
|
2674
2682
|
jsonKey: "^heading.forValues",
|
|
2675
2683
|
exportJsonKey: { "@bit": { heading: { forValues: "$" } } }
|
|
2676
2684
|
},
|
|
@@ -2784,6 +2792,7 @@ var CARDSETS = {
|
|
|
2784
2792
|
key: ConfigKey.tag_title,
|
|
2785
2793
|
description: "Title of the match pair.",
|
|
2786
2794
|
format: TagFormat.plainText,
|
|
2795
|
+
nullable: true,
|
|
2787
2796
|
jsonKey: "^heading.forKeys",
|
|
2788
2797
|
exportJsonKey: { "@bit": { heading: { forKeys: "$" } } }
|
|
2789
2798
|
},
|
|
@@ -2913,6 +2922,7 @@ var CARDSETS = {
|
|
|
2913
2922
|
key: ConfigKey.tag_title,
|
|
2914
2923
|
description: "Title of the match pair.",
|
|
2915
2924
|
format: TagFormat.plainText,
|
|
2925
|
+
nullable: true,
|
|
2916
2926
|
jsonKey: "^heading.forValues",
|
|
2917
2927
|
exportJsonKey: { "@bit": { heading: { forValues: "$" } } }
|
|
2918
2928
|
},
|
|
@@ -2959,6 +2969,7 @@ var CARDSETS = {
|
|
|
2959
2969
|
key: ConfigKey.tag_title,
|
|
2960
2970
|
description: "Title of the audio match pair.",
|
|
2961
2971
|
format: TagFormat.plainText,
|
|
2972
|
+
nullable: true,
|
|
2962
2973
|
jsonKey: "^heading.forKeys",
|
|
2963
2974
|
exportJsonKey: { "@bit": { heading: { forKeys: "$" } } }
|
|
2964
2975
|
},
|
|
@@ -2990,6 +3001,7 @@ var CARDSETS = {
|
|
|
2990
3001
|
key: ConfigKey.tag_title,
|
|
2991
3002
|
description: "Title of the audio match pair.",
|
|
2992
3003
|
format: TagFormat.plainText,
|
|
3004
|
+
nullable: true,
|
|
2993
3005
|
jsonKey: "^heading.forValues",
|
|
2994
3006
|
exportJsonKey: { "@bit": { heading: { forValues: "$" } } }
|
|
2995
3007
|
},
|
|
@@ -3027,6 +3039,7 @@ var CARDSETS = {
|
|
|
3027
3039
|
key: ConfigKey.tag_title,
|
|
3028
3040
|
description: "Title of the image match pair.",
|
|
3029
3041
|
format: TagFormat.plainText,
|
|
3042
|
+
nullable: true,
|
|
3030
3043
|
jsonKey: "^heading.forKeys",
|
|
3031
3044
|
exportJsonKey: { "@bit": { heading: { forKeys: "$" } } }
|
|
3032
3045
|
},
|
|
@@ -3058,6 +3071,7 @@ var CARDSETS = {
|
|
|
3058
3071
|
key: ConfigKey.tag_title,
|
|
3059
3072
|
description: "Title of the image match pair.",
|
|
3060
3073
|
format: TagFormat.plainText,
|
|
3074
|
+
nullable: true,
|
|
3061
3075
|
jsonKey: "^heading.forValues",
|
|
3062
3076
|
exportJsonKey: { "@bit": { heading: { forValues: "$" } } }
|
|
3063
3077
|
},
|
|
@@ -3133,6 +3147,7 @@ var CARDSETS = {
|
|
|
3133
3147
|
key: ConfigKey.tag_title,
|
|
3134
3148
|
description: "Title of the match matrix.",
|
|
3135
3149
|
format: TagFormat.plainText,
|
|
3150
|
+
nullable: true,
|
|
3136
3151
|
jsonKey: "^heading.forKeys",
|
|
3137
3152
|
exportJsonKey: { "@bit": { heading: { forKeys: "$" } } }
|
|
3138
3153
|
},
|
|
@@ -3245,6 +3260,7 @@ var CARDSETS = {
|
|
|
3245
3260
|
key: ConfigKey.tag_title,
|
|
3246
3261
|
description: "Title of the match matrix.",
|
|
3247
3262
|
format: TagFormat.plainText,
|
|
3263
|
+
nullable: true,
|
|
3248
3264
|
jsonKey: "^heading.forValues",
|
|
3249
3265
|
exportJsonKey: [
|
|
3250
3266
|
{ "@keyonly": { "@bit": { heading: { forValues: [""] } } } },
|
|
@@ -3527,6 +3543,7 @@ var CARDSETS = {
|
|
|
3527
3543
|
key: ConfigKey.tag_title,
|
|
3528
3544
|
description: "Title of the feedback.",
|
|
3529
3545
|
format: TagFormat.plainText,
|
|
3546
|
+
nullable: true,
|
|
3530
3547
|
jsonKey: "^heading.forKeys",
|
|
3531
3548
|
exportJsonKey: { "@bit": { heading: { forKeys: "$" } } }
|
|
3532
3549
|
}
|
|
@@ -3609,6 +3626,7 @@ var CARDSETS = {
|
|
|
3609
3626
|
key: ConfigKey.tag_title,
|
|
3610
3627
|
description: "Title of the feedback.",
|
|
3611
3628
|
format: TagFormat.plainText,
|
|
3629
|
+
nullable: true,
|
|
3612
3630
|
jsonKey: "^heading.forValues",
|
|
3613
3631
|
exportJsonKey: { "@bit": { heading: { forValues: "$" } } }
|
|
3614
3632
|
}
|
|
@@ -4396,6 +4414,22 @@ var GROUPS = {
|
|
|
4396
4414
|
description: "The original location of the information in the original source material",
|
|
4397
4415
|
format: TagFormat.plainText
|
|
4398
4416
|
},
|
|
4417
|
+
{
|
|
4418
|
+
key: ConfigKey.property_copyright,
|
|
4419
|
+
description: "The copyright information for the bit",
|
|
4420
|
+
format: TagFormat.plainText
|
|
4421
|
+
},
|
|
4422
|
+
{
|
|
4423
|
+
key: ConfigKey.property_license,
|
|
4424
|
+
description: "The license for the bit",
|
|
4425
|
+
format: TagFormat.plainText
|
|
4426
|
+
},
|
|
4427
|
+
{
|
|
4428
|
+
key: ConfigKey.property_rightsPolicy,
|
|
4429
|
+
description: "The rights policy or policies for the bit",
|
|
4430
|
+
format: TagFormat.plainText,
|
|
4431
|
+
maxCount: Count.infinity
|
|
4432
|
+
},
|
|
4399
4433
|
{
|
|
4400
4434
|
key: ConfigKey.property_isTemplate,
|
|
4401
4435
|
description: "If true, the bit is a template",
|
|
@@ -4422,7 +4456,8 @@ var GROUPS = {
|
|
|
4422
4456
|
{
|
|
4423
4457
|
key: ConfigKey.property_aiGenerated,
|
|
4424
4458
|
description: "If true, the bit is AI-generated",
|
|
4425
|
-
format: TagFormat.boolean
|
|
4459
|
+
format: TagFormat.boolean,
|
|
4460
|
+
nullable: true
|
|
4426
4461
|
},
|
|
4427
4462
|
{
|
|
4428
4463
|
key: ConfigKey.property_machineTranslated,
|
|
@@ -4437,7 +4472,8 @@ var GROUPS = {
|
|
|
4437
4472
|
{
|
|
4438
4473
|
key: ConfigKey.property_spansPageBreak,
|
|
4439
4474
|
description: "If true, the bit spans a page break",
|
|
4440
|
-
format: TagFormat.boolean
|
|
4475
|
+
format: TagFormat.boolean,
|
|
4476
|
+
nullable: true
|
|
4441
4477
|
},
|
|
4442
4478
|
{
|
|
4443
4479
|
key: ConfigKey.property_searchIndex,
|
|
@@ -4540,6 +4576,7 @@ var GROUPS = {
|
|
|
4540
4576
|
key: ConfigKey.property_theme,
|
|
4541
4577
|
description: "The theme(s) for the bit",
|
|
4542
4578
|
format: TagFormat.plainText,
|
|
4579
|
+
nullable: true,
|
|
4543
4580
|
maxCount: Count.infinity
|
|
4544
4581
|
},
|
|
4545
4582
|
{
|
|
@@ -4558,6 +4595,7 @@ var GROUPS = {
|
|
|
4558
4595
|
key: ConfigKey.property_tag,
|
|
4559
4596
|
description: "The tag(s) for the bit",
|
|
4560
4597
|
format: TagFormat.plainText,
|
|
4598
|
+
nullable: true,
|
|
4561
4599
|
maxCount: Count.infinity
|
|
4562
4600
|
},
|
|
4563
4601
|
{
|
|
@@ -4577,10 +4615,23 @@ var GROUPS = {
|
|
|
4577
4615
|
exportJsonKey: { tags: ["$"] },
|
|
4578
4616
|
description: "The tag(s) for the group",
|
|
4579
4617
|
format: TagFormat.plainText,
|
|
4618
|
+
nullable: true,
|
|
4580
4619
|
maxCount: Count.infinity
|
|
4581
4620
|
}
|
|
4582
4621
|
]
|
|
4583
4622
|
},
|
|
4623
|
+
{
|
|
4624
|
+
key: ConfigKey.property_reviewTag,
|
|
4625
|
+
description: "The review tag(s) for the bit",
|
|
4626
|
+
format: TagFormat.plainText,
|
|
4627
|
+
maxCount: Count.infinity
|
|
4628
|
+
},
|
|
4629
|
+
{
|
|
4630
|
+
key: ConfigKey.property_reviewerTag,
|
|
4631
|
+
description: "The reviewer tag(s) for the bit",
|
|
4632
|
+
format: TagFormat.plainText,
|
|
4633
|
+
maxCount: Count.infinity
|
|
4634
|
+
},
|
|
4584
4635
|
{
|
|
4585
4636
|
key: ConfigKey.property_reductionTag,
|
|
4586
4637
|
description: "The reduction tag(s) for the bit",
|
|
@@ -4682,6 +4733,20 @@ var GROUPS = {
|
|
|
4682
4733
|
description: "The layer role(s) for the bit",
|
|
4683
4734
|
format: TagFormat.plainText,
|
|
4684
4735
|
maxCount: Count.infinity
|
|
4736
|
+
},
|
|
4737
|
+
{
|
|
4738
|
+
// Universal @internalComment — declares in config what Config.ts also
|
|
4739
|
+
// injects programmatically into every bit (its push runs last and wins
|
|
4740
|
+
// the keyed merge, so runtime behaviour is unchanged). Declared here so
|
|
4741
|
+
// the config export (ConfigBuilder → assets/config → configurator →
|
|
4742
|
+
// bitmark.json) carries the tag for downstream parsers. Empty
|
|
4743
|
+
// exportJsonKey: consumed but never emitted to the bit JSON (the value
|
|
4744
|
+
// is routed to parser.internalComments).
|
|
4745
|
+
key: ConfigKey.property_internalComment,
|
|
4746
|
+
description: "Internal comment for the bit.",
|
|
4747
|
+
format: TagFormat.plainText,
|
|
4748
|
+
maxCount: Count.infinity,
|
|
4749
|
+
exportJsonKey: {}
|
|
4685
4750
|
}
|
|
4686
4751
|
]
|
|
4687
4752
|
},
|
|
@@ -4838,7 +4903,8 @@ var GROUPS = {
|
|
|
4838
4903
|
{
|
|
4839
4904
|
key: ConfigKey.property_size,
|
|
4840
4905
|
description: "The size of the image",
|
|
4841
|
-
format: TagFormat.number
|
|
4906
|
+
format: TagFormat.number,
|
|
4907
|
+
nullable: true
|
|
4842
4908
|
},
|
|
4843
4909
|
{
|
|
4844
4910
|
key: ConfigKey.property_format,
|
|
@@ -5741,6 +5807,7 @@ var GROUPS = {
|
|
|
5741
5807
|
key: ConfigKey.property_coverImage,
|
|
5742
5808
|
description: "The cover image(s) of the book",
|
|
5743
5809
|
format: TagFormat.plainText,
|
|
5810
|
+
nullable: true,
|
|
5744
5811
|
maxCount: Count.infinity
|
|
5745
5812
|
},
|
|
5746
5813
|
{
|
|
@@ -6057,7 +6124,8 @@ var GROUPS = {
|
|
|
6057
6124
|
{
|
|
6058
6125
|
key: ConfigKey.property_platformNeedsShadow,
|
|
6059
6126
|
description: "If true, the platform needs shadow",
|
|
6060
|
-
format: TagFormat.boolean
|
|
6127
|
+
format: TagFormat.boolean,
|
|
6128
|
+
nullable: true
|
|
6061
6129
|
}
|
|
6062
6130
|
]
|
|
6063
6131
|
},
|
|
@@ -6068,7 +6136,8 @@ var GROUPS = {
|
|
|
6068
6136
|
{
|
|
6069
6137
|
key: ConfigKey.property_revealSolutions,
|
|
6070
6138
|
description: "If true, the quiz solutions are revealed",
|
|
6071
|
-
format: TagFormat.boolean
|
|
6139
|
+
format: TagFormat.boolean,
|
|
6140
|
+
nullable: true
|
|
6072
6141
|
// defaultValue: 'false',
|
|
6073
6142
|
},
|
|
6074
6143
|
{
|
|
@@ -6215,12 +6284,14 @@ var GROUPS = {
|
|
|
6215
6284
|
{
|
|
6216
6285
|
key: ConfigKey.property_width,
|
|
6217
6286
|
description: "The width of the image",
|
|
6218
|
-
format: TagFormat.number
|
|
6287
|
+
format: TagFormat.number,
|
|
6288
|
+
nullable: true
|
|
6219
6289
|
},
|
|
6220
6290
|
{
|
|
6221
6291
|
key: ConfigKey.property_height,
|
|
6222
6292
|
description: "The height of the image",
|
|
6223
|
-
format: TagFormat.number
|
|
6293
|
+
format: TagFormat.number,
|
|
6294
|
+
nullable: true
|
|
6224
6295
|
},
|
|
6225
6296
|
{
|
|
6226
6297
|
key: ConfigKey.property_alt,
|
|
@@ -6265,12 +6336,14 @@ var GROUPS = {
|
|
|
6265
6336
|
{
|
|
6266
6337
|
key: ConfigKey.property_width,
|
|
6267
6338
|
description: "The width of the image",
|
|
6268
|
-
format: TagFormat.number
|
|
6339
|
+
format: TagFormat.number,
|
|
6340
|
+
nullable: true
|
|
6269
6341
|
},
|
|
6270
6342
|
{
|
|
6271
6343
|
key: ConfigKey.property_height,
|
|
6272
6344
|
description: "The height of the image",
|
|
6273
|
-
format: TagFormat.number
|
|
6345
|
+
format: TagFormat.number,
|
|
6346
|
+
nullable: true
|
|
6274
6347
|
},
|
|
6275
6348
|
{
|
|
6276
6349
|
key: ConfigKey.property_alt,
|
|
@@ -6322,12 +6395,14 @@ var GROUPS = {
|
|
|
6322
6395
|
{
|
|
6323
6396
|
key: ConfigKey.property_width,
|
|
6324
6397
|
description: "The width of the video",
|
|
6325
|
-
format: TagFormat.number
|
|
6398
|
+
format: TagFormat.number,
|
|
6399
|
+
nullable: true
|
|
6326
6400
|
},
|
|
6327
6401
|
{
|
|
6328
6402
|
key: ConfigKey.property_height,
|
|
6329
6403
|
description: "The height of the video",
|
|
6330
|
-
format: TagFormat.number
|
|
6404
|
+
format: TagFormat.number,
|
|
6405
|
+
nullable: true
|
|
6331
6406
|
},
|
|
6332
6407
|
{
|
|
6333
6408
|
key: ConfigKey.property_duration,
|
|
@@ -7412,7 +7487,8 @@ var BITS = {
|
|
|
7412
7487
|
{
|
|
7413
7488
|
key: ConfigKey.property_coverImage,
|
|
7414
7489
|
description: "Cover image of the catalog item",
|
|
7415
|
-
format: TagFormat.plainText
|
|
7490
|
+
format: TagFormat.plainText,
|
|
7491
|
+
nullable: true
|
|
7416
7492
|
},
|
|
7417
7493
|
{
|
|
7418
7494
|
key: ConfigKey.resource_coverImage,
|
|
@@ -7576,7 +7652,8 @@ var BITS = {
|
|
|
7576
7652
|
{
|
|
7577
7653
|
key: ConfigKey.property_coverImage,
|
|
7578
7654
|
description: "Cover image of the catalog item",
|
|
7579
|
-
format: TagFormat.plainText
|
|
7655
|
+
format: TagFormat.plainText,
|
|
7656
|
+
nullable: true
|
|
7580
7657
|
},
|
|
7581
7658
|
{
|
|
7582
7659
|
key: ConfigKey.resource_coverImage,
|
|
@@ -7740,7 +7817,8 @@ var BITS = {
|
|
|
7740
7817
|
{
|
|
7741
7818
|
key: ConfigKey.property_coverImage,
|
|
7742
7819
|
description: "Cover image of the catalog item",
|
|
7743
|
-
format: TagFormat.plainText
|
|
7820
|
+
format: TagFormat.plainText,
|
|
7821
|
+
nullable: true
|
|
7744
7822
|
},
|
|
7745
7823
|
{
|
|
7746
7824
|
key: ConfigKey.property_content2Buy,
|
|
@@ -8526,12 +8604,14 @@ var BITS = {
|
|
|
8526
8604
|
{
|
|
8527
8605
|
key: ConfigKey.property_quizCountItems,
|
|
8528
8606
|
description: "The number of items in the cloze quiz",
|
|
8529
|
-
format: TagFormat.boolean
|
|
8607
|
+
format: TagFormat.boolean,
|
|
8608
|
+
nullable: true
|
|
8530
8609
|
},
|
|
8531
8610
|
{
|
|
8532
8611
|
key: ConfigKey.property_quizStrikethroughSolutions,
|
|
8533
8612
|
description: "If the cloze solutions should be strikethrough",
|
|
8534
|
-
format: TagFormat.boolean
|
|
8613
|
+
format: TagFormat.boolean,
|
|
8614
|
+
nullable: true
|
|
8535
8615
|
},
|
|
8536
8616
|
{
|
|
8537
8617
|
key: ConfigKey.group_gap,
|
|
@@ -10227,6 +10307,12 @@ var BITS = {
|
|
|
10227
10307
|
description: "Extractor theme bit, used to store design/theme JSON extracted from documents",
|
|
10228
10308
|
textFormatDefault: TextFormat2.json
|
|
10229
10309
|
},
|
|
10310
|
+
[BitType2.extractorReconcile]: {
|
|
10311
|
+
since: "5.35.0",
|
|
10312
|
+
baseBitType: BitType2._standard,
|
|
10313
|
+
description: "Extractor reconcile bit, used to store PDF-compare reconciliation decisions (config and issues) in JSON",
|
|
10314
|
+
textFormatDefault: TextFormat2.json
|
|
10315
|
+
},
|
|
10230
10316
|
[BitType2.extractorAiChat]: {
|
|
10231
10317
|
since: "3.19.0",
|
|
10232
10318
|
baseBitType: BitType2._standard,
|
|
@@ -10250,12 +10336,14 @@ var BITS = {
|
|
|
10250
10336
|
{
|
|
10251
10337
|
key: ConfigKey.property_x,
|
|
10252
10338
|
description: "X-coordinate for the block, used to position the block on the page",
|
|
10253
|
-
format: TagFormat.number
|
|
10339
|
+
format: TagFormat.number,
|
|
10340
|
+
nullable: true
|
|
10254
10341
|
},
|
|
10255
10342
|
{
|
|
10256
10343
|
key: ConfigKey.property_y,
|
|
10257
10344
|
description: "Y-coordinate for the block, used to position the block on the page",
|
|
10258
|
-
format: TagFormat.number
|
|
10345
|
+
format: TagFormat.number,
|
|
10346
|
+
nullable: true
|
|
10259
10347
|
},
|
|
10260
10348
|
{
|
|
10261
10349
|
key: ConfigKey.property_width,
|
|
@@ -12013,7 +12101,8 @@ var BITS = {
|
|
|
12013
12101
|
{
|
|
12014
12102
|
key: ConfigKey.property_product,
|
|
12015
12103
|
description: "Product reference for the product page, used to link to the product",
|
|
12016
|
-
format: TagFormat.plainText
|
|
12104
|
+
format: TagFormat.plainText,
|
|
12105
|
+
nullable: true
|
|
12017
12106
|
}
|
|
12018
12107
|
]
|
|
12019
12108
|
},
|
|
@@ -12032,6 +12121,7 @@ var BITS = {
|
|
|
12032
12121
|
key: ConfigKey.property_product,
|
|
12033
12122
|
description: "Product reference for the product list, used to link to the product",
|
|
12034
12123
|
format: TagFormat.plainText,
|
|
12124
|
+
nullable: true,
|
|
12035
12125
|
maxCount: Count.infinity
|
|
12036
12126
|
}
|
|
12037
12127
|
// {
|
|
@@ -12593,7 +12683,8 @@ var BITS = {
|
|
|
12593
12683
|
{
|
|
12594
12684
|
key: ConfigKey.property_ratingLevelSelected,
|
|
12595
12685
|
description: "Selected level for the rating survey, used to define the default rating",
|
|
12596
|
-
format: TagFormat.number
|
|
12686
|
+
format: TagFormat.number,
|
|
12687
|
+
nullable: true
|
|
12597
12688
|
},
|
|
12598
12689
|
{
|
|
12599
12690
|
key: ConfigKey.property_buttonCaption,
|
|
@@ -13925,7 +14016,7 @@ var instance2 = new Config();
|
|
|
13925
14016
|
// src/generated/package_info.ts
|
|
13926
14017
|
var PACKAGE_INFO = {
|
|
13927
14018
|
"name": "@gmb/bitmark-parser-generator",
|
|
13928
|
-
"version": "5.
|
|
14019
|
+
"version": "5.35.0",
|
|
13929
14020
|
"author": "Get More Brain Ltd",
|
|
13930
14021
|
"license": "ISC",
|
|
13931
14022
|
"description": "A bitmark parser and generator using Peggy.js"
|
|
@@ -14846,6 +14937,12 @@ var NodeType = {
|
|
|
14846
14937
|
responses: "responses",
|
|
14847
14938
|
responsesValue: "responsesValue",
|
|
14848
14939
|
revealSolutions: "revealSolutions",
|
|
14940
|
+
reviewTag: "reviewTag",
|
|
14941
|
+
reviewTagValue: "reviewTagValue",
|
|
14942
|
+
reviewerTag: "reviewerTag",
|
|
14943
|
+
reviewerTagValue: "reviewerTagValue",
|
|
14944
|
+
rightsPolicy: "rightsPolicy",
|
|
14945
|
+
rightsPolicyValue: "rightsPolicyValue",
|
|
14849
14946
|
root: "root",
|
|
14850
14947
|
// bit type (root)
|
|
14851
14948
|
rows: "rows",
|
|
@@ -28215,6 +28312,14 @@ var Builder = class extends BaseBuilder {
|
|
|
28215
28312
|
data.jupyterExecutionCount,
|
|
28216
28313
|
options
|
|
28217
28314
|
),
|
|
28315
|
+
copyright: this.toAstProperty(bitType, ConfigKey.property_copyright, data.copyright, options),
|
|
28316
|
+
license: this.toAstProperty(bitType, ConfigKey.property_license, data.license, options),
|
|
28317
|
+
rightsPolicy: this.toAstProperty(
|
|
28318
|
+
bitType,
|
|
28319
|
+
ConfigKey.property_rightsPolicy,
|
|
28320
|
+
data.rightsPolicy,
|
|
28321
|
+
options
|
|
28322
|
+
),
|
|
28218
28323
|
sourceRL: this.toAstProperty(bitType, ConfigKey.property_sourceRL, data.sourceRL, options),
|
|
28219
28324
|
isPublic: this.toAstProperty(bitType, ConfigKey.property_isPublic, data.isPublic, options),
|
|
28220
28325
|
isTemplate: this.toAstProperty(
|
|
@@ -28374,6 +28479,13 @@ var Builder = class extends BaseBuilder {
|
|
|
28374
28479
|
slug: this.toAstProperty(bitType, ConfigKey.property_slug, data.slug, options),
|
|
28375
28480
|
tag: this.toAstProperty(bitType, ConfigKey.property_tag, data.tag, options),
|
|
28376
28481
|
groupTag: this.buildGroupTags(context, data.groupTag),
|
|
28482
|
+
reviewTag: this.toAstProperty(bitType, ConfigKey.property_reviewTag, data.reviewTag, options),
|
|
28483
|
+
reviewerTag: this.toAstProperty(
|
|
28484
|
+
bitType,
|
|
28485
|
+
ConfigKey.property_reviewerTag,
|
|
28486
|
+
data.reviewerTag,
|
|
28487
|
+
options
|
|
28488
|
+
),
|
|
28377
28489
|
reductionTag: this.toAstProperty(
|
|
28378
28490
|
bitType,
|
|
28379
28491
|
ConfigKey.property_reductionTag,
|