@gmb/bitmark-parser-generator 4.10.0 → 4.12.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 +190 -23
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +35 -8
- package/dist/browser/esm/index.d.ts +35 -8
- package/dist/browser/esm/index.js +190 -23
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/index.cjs +190 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +35 -8
- package/dist/index.d.ts +35 -8
- package/dist/index.js +190 -23
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1254,6 +1254,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1254
1254
|
group_mark: "group_mark";
|
|
1255
1255
|
group_bookCommon: "group_bookCommon";
|
|
1256
1256
|
group_learningPathCommon: "group_learningPathCommon";
|
|
1257
|
+
group_advertisingCommon: "group_advertisingCommon";
|
|
1257
1258
|
group_quizCommon: "group_quizCommon";
|
|
1258
1259
|
group_resourceBitTags: "group_resourceBitTags";
|
|
1259
1260
|
group_resourceCommon: "group_resourceCommon";
|
|
@@ -1288,6 +1289,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1288
1289
|
property_action: "@action";
|
|
1289
1290
|
property_activityType: "@activityType";
|
|
1290
1291
|
property_additionalSolutions: "@additionalSolutions";
|
|
1292
|
+
property_advertisingClickUrl: "@advertisingClickUrl";
|
|
1291
1293
|
property_ageRange: "@ageRange";
|
|
1292
1294
|
property_aiGenerated: "@aiGenerated";
|
|
1293
1295
|
property_allowedBit: "@allowedBit";
|
|
@@ -1451,6 +1453,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1451
1453
|
property_siteName: "@siteName";
|
|
1452
1454
|
property_size: "@size";
|
|
1453
1455
|
property_slug: "@slug";
|
|
1456
|
+
property_sourceDocument: "@sourceDocument";
|
|
1454
1457
|
property_spaceId: "@spaceId";
|
|
1455
1458
|
property_src1x: "@src1x";
|
|
1456
1459
|
property_src2x: "@src2x";
|
|
@@ -1548,6 +1551,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1548
1551
|
group_mark: "group_mark";
|
|
1549
1552
|
group_bookCommon: "group_bookCommon";
|
|
1550
1553
|
group_learningPathCommon: "group_learningPathCommon";
|
|
1554
|
+
group_advertisingCommon: "group_advertisingCommon";
|
|
1551
1555
|
group_quizCommon: "group_quizCommon";
|
|
1552
1556
|
group_resourceBitTags: "group_resourceBitTags";
|
|
1553
1557
|
group_resourceCommon: "group_resourceCommon";
|
|
@@ -1582,6 +1586,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1582
1586
|
property_action: "@action";
|
|
1583
1587
|
property_activityType: "@activityType";
|
|
1584
1588
|
property_additionalSolutions: "@additionalSolutions";
|
|
1589
|
+
property_advertisingClickUrl: "@advertisingClickUrl";
|
|
1585
1590
|
property_ageRange: "@ageRange";
|
|
1586
1591
|
property_aiGenerated: "@aiGenerated";
|
|
1587
1592
|
property_allowedBit: "@allowedBit";
|
|
@@ -1745,6 +1750,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1745
1750
|
property_siteName: "@siteName";
|
|
1746
1751
|
property_size: "@size";
|
|
1747
1752
|
property_slug: "@slug";
|
|
1753
|
+
property_sourceDocument: "@sourceDocument";
|
|
1748
1754
|
property_spaceId: "@spaceId";
|
|
1749
1755
|
property_src1x: "@src1x";
|
|
1750
1756
|
property_src2x: "@src2x";
|
|
@@ -2634,6 +2640,7 @@ interface BitJson {
|
|
|
2634
2640
|
mailingList: string;
|
|
2635
2641
|
buttonCaption: string;
|
|
2636
2642
|
callToActionUrl: string;
|
|
2643
|
+
advertisingClickUrl: string;
|
|
2637
2644
|
caption: JsonText;
|
|
2638
2645
|
quotedPerson: string;
|
|
2639
2646
|
reasonableNumOfChars: number;
|
|
@@ -2646,6 +2653,7 @@ interface BitJson {
|
|
|
2646
2653
|
maxCreatedBits: number;
|
|
2647
2654
|
maxDisplayLevel: number;
|
|
2648
2655
|
maxTocChapterLevel: number;
|
|
2656
|
+
sourceDocument: string;
|
|
2649
2657
|
tocResource: string | string[];
|
|
2650
2658
|
tocContent: string | string[];
|
|
2651
2659
|
page: string;
|
|
@@ -2671,6 +2679,7 @@ interface BitJson {
|
|
|
2671
2679
|
item: JsonText;
|
|
2672
2680
|
lead: JsonText;
|
|
2673
2681
|
pageNumber: JsonText;
|
|
2682
|
+
sourcePageNumber: JsonText;
|
|
2674
2683
|
marginNumber: JsonText;
|
|
2675
2684
|
hint: JsonText;
|
|
2676
2685
|
instruction: JsonText;
|
|
@@ -3161,6 +3170,7 @@ interface Bit {
|
|
|
3161
3170
|
mailingList?: Property;
|
|
3162
3171
|
buttonCaption?: Property;
|
|
3163
3172
|
callToActionUrl?: Property;
|
|
3173
|
+
advertisingClickUrl?: Property;
|
|
3164
3174
|
caption?: TextAst;
|
|
3165
3175
|
quotedPerson?: Property;
|
|
3166
3176
|
partialAnswer?: Property;
|
|
@@ -3174,6 +3184,7 @@ interface Bit {
|
|
|
3174
3184
|
maxCreatedBits?: Property;
|
|
3175
3185
|
maxDisplayLevel?: Property;
|
|
3176
3186
|
maxTocChapterLevel?: Property;
|
|
3187
|
+
sourceDocument?: Property;
|
|
3177
3188
|
tocResource?: Property;
|
|
3178
3189
|
tocContent?: Property;
|
|
3179
3190
|
page?: Property;
|
|
@@ -3204,6 +3215,7 @@ interface Bit {
|
|
|
3204
3215
|
item?: TextAst;
|
|
3205
3216
|
lead?: TextAst;
|
|
3206
3217
|
pageNumber?: TextAst;
|
|
3218
|
+
sourcePageNumber?: TextAst;
|
|
3207
3219
|
marginNumber?: TextAst;
|
|
3208
3220
|
hint?: TextAst;
|
|
3209
3221
|
instruction?: TextAst;
|
|
@@ -3285,6 +3297,8 @@ declare const NodeType: Readonly<{
|
|
|
3285
3297
|
activityTypeValue: "activityTypeValue";
|
|
3286
3298
|
additionalSolutions: "additionalSolutions";
|
|
3287
3299
|
additionalSolutionsValue: "additionalSolutionsValue";
|
|
3300
|
+
advertisingClickUrl: "advertisingClickUrl";
|
|
3301
|
+
advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
3288
3302
|
ageRange: "ageRange";
|
|
3289
3303
|
ageRangeValue: "ageRangeValue";
|
|
3290
3304
|
aiGenerated: "aiGenerated";
|
|
@@ -3345,8 +3359,6 @@ declare const NodeType: Readonly<{
|
|
|
3345
3359
|
botValue: "botValue";
|
|
3346
3360
|
bubbleTag: "bubbleTag";
|
|
3347
3361
|
bubbleTagValue: "bubbleTagValue";
|
|
3348
|
-
extractorTag: "extractorTag";
|
|
3349
|
-
extractorTagValue: "extractorTagValue";
|
|
3350
3362
|
buttonCaption: "buttonCaption";
|
|
3351
3363
|
buttonCaptionValue: "buttonCaptionValue";
|
|
3352
3364
|
callToActionUrl: "callToActionUrl";
|
|
@@ -3444,6 +3456,8 @@ declare const NodeType: Readonly<{
|
|
|
3444
3456
|
externalIdValue: "externalIdValue";
|
|
3445
3457
|
externalLink: "externalLink";
|
|
3446
3458
|
externalLinkText: "externalLinkText";
|
|
3459
|
+
extractorTag: "extractorTag";
|
|
3460
|
+
extractorTagValue: "extractorTagValue";
|
|
3447
3461
|
extraProperties: "extraProperties";
|
|
3448
3462
|
feedback: "feedback";
|
|
3449
3463
|
feedbackEngine: "feedbackEngine";
|
|
@@ -3726,15 +3740,18 @@ declare const NodeType: Readonly<{
|
|
|
3726
3740
|
solution: "solution";
|
|
3727
3741
|
solutions: "solutions";
|
|
3728
3742
|
solutionsValue: "solutionsValue";
|
|
3743
|
+
sourceDocument: "sourceDocument";
|
|
3744
|
+
sourceDocumentValue: "sourceDocumentValue";
|
|
3745
|
+
sourcePageNumber: "sourcePageNumber";
|
|
3729
3746
|
spaceId: "spaceId";
|
|
3730
3747
|
spaceIdValue: "spaceIdValue";
|
|
3731
3748
|
src: "src";
|
|
3732
|
-
srcAlt: "srcAlt";
|
|
3733
|
-
srcAltValue: "srcAltValue";
|
|
3734
3749
|
src1x: "src1x";
|
|
3735
3750
|
src2x: "src2x";
|
|
3736
3751
|
src3x: "src3x";
|
|
3737
3752
|
src4x: "src4x";
|
|
3753
|
+
srcAlt: "srcAlt";
|
|
3754
|
+
srcAltValue: "srcAltValue";
|
|
3738
3755
|
start: "start";
|
|
3739
3756
|
statement: "statement";
|
|
3740
3757
|
statements: "statements";
|
|
@@ -3846,6 +3863,8 @@ declare const NodeType: Readonly<{
|
|
|
3846
3863
|
activityTypeValue: "activityTypeValue";
|
|
3847
3864
|
additionalSolutions: "additionalSolutions";
|
|
3848
3865
|
additionalSolutionsValue: "additionalSolutionsValue";
|
|
3866
|
+
advertisingClickUrl: "advertisingClickUrl";
|
|
3867
|
+
advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
3849
3868
|
ageRange: "ageRange";
|
|
3850
3869
|
ageRangeValue: "ageRangeValue";
|
|
3851
3870
|
aiGenerated: "aiGenerated";
|
|
@@ -3906,8 +3925,6 @@ declare const NodeType: Readonly<{
|
|
|
3906
3925
|
botValue: "botValue";
|
|
3907
3926
|
bubbleTag: "bubbleTag";
|
|
3908
3927
|
bubbleTagValue: "bubbleTagValue";
|
|
3909
|
-
extractorTag: "extractorTag";
|
|
3910
|
-
extractorTagValue: "extractorTagValue";
|
|
3911
3928
|
buttonCaption: "buttonCaption";
|
|
3912
3929
|
buttonCaptionValue: "buttonCaptionValue";
|
|
3913
3930
|
callToActionUrl: "callToActionUrl";
|
|
@@ -4005,6 +4022,8 @@ declare const NodeType: Readonly<{
|
|
|
4005
4022
|
externalIdValue: "externalIdValue";
|
|
4006
4023
|
externalLink: "externalLink";
|
|
4007
4024
|
externalLinkText: "externalLinkText";
|
|
4025
|
+
extractorTag: "extractorTag";
|
|
4026
|
+
extractorTagValue: "extractorTagValue";
|
|
4008
4027
|
extraProperties: "extraProperties";
|
|
4009
4028
|
feedback: "feedback";
|
|
4010
4029
|
feedbackEngine: "feedbackEngine";
|
|
@@ -4287,15 +4306,18 @@ declare const NodeType: Readonly<{
|
|
|
4287
4306
|
solution: "solution";
|
|
4288
4307
|
solutions: "solutions";
|
|
4289
4308
|
solutionsValue: "solutionsValue";
|
|
4309
|
+
sourceDocument: "sourceDocument";
|
|
4310
|
+
sourceDocumentValue: "sourceDocumentValue";
|
|
4311
|
+
sourcePageNumber: "sourcePageNumber";
|
|
4290
4312
|
spaceId: "spaceId";
|
|
4291
4313
|
spaceIdValue: "spaceIdValue";
|
|
4292
4314
|
src: "src";
|
|
4293
|
-
srcAlt: "srcAlt";
|
|
4294
|
-
srcAltValue: "srcAltValue";
|
|
4295
4315
|
src1x: "src1x";
|
|
4296
4316
|
src2x: "src2x";
|
|
4297
4317
|
src3x: "src3x";
|
|
4298
4318
|
src4x: "src4x";
|
|
4319
|
+
srcAlt: "srcAlt";
|
|
4320
|
+
srcAltValue: "srcAltValue";
|
|
4299
4321
|
start: "start";
|
|
4300
4322
|
statement: "statement";
|
|
4301
4323
|
statements: "statements";
|
|
@@ -5398,6 +5420,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5398
5420
|
mailingList?: string;
|
|
5399
5421
|
buttonCaption?: string;
|
|
5400
5422
|
callToActionUrl?: string;
|
|
5423
|
+
advertisingClickUrl?: string;
|
|
5401
5424
|
caption?: JsonText;
|
|
5402
5425
|
quotedPerson?: string;
|
|
5403
5426
|
reasonableNumOfChars?: number;
|
|
@@ -5410,6 +5433,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5410
5433
|
maxCreatedBits?: number;
|
|
5411
5434
|
maxDisplayLevel?: number;
|
|
5412
5435
|
maxTocChapterLevel?: number;
|
|
5436
|
+
sourceDocument?: string;
|
|
5413
5437
|
tocResource?: string | string[];
|
|
5414
5438
|
tocContent?: string | string[];
|
|
5415
5439
|
page?: string | string[];
|
|
@@ -5438,6 +5462,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5438
5462
|
item?: JsonText;
|
|
5439
5463
|
lead?: JsonText;
|
|
5440
5464
|
pageNumber?: JsonText;
|
|
5465
|
+
sourcePageNumber?: JsonText;
|
|
5441
5466
|
marginNumber?: JsonText;
|
|
5442
5467
|
hint?: JsonText;
|
|
5443
5468
|
instruction?: JsonText;
|
|
@@ -6574,6 +6599,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6574
6599
|
protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6575
6600
|
protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6576
6601
|
protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6602
|
+
protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6577
6603
|
protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6578
6604
|
protected enter_body(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6579
6605
|
protected exit_body(_node: NodeInfo, _route: NodeInfo[]): void;
|
|
@@ -6966,6 +6992,7 @@ declare class JsonGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6966
6992
|
protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6967
6993
|
protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6968
6994
|
protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6995
|
+
protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6969
6996
|
protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6970
6997
|
protected enter_hint(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6971
6998
|
protected enter_instruction(node: NodeInfo, route: NodeInfo[]): boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1254,6 +1254,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1254
1254
|
group_mark: "group_mark";
|
|
1255
1255
|
group_bookCommon: "group_bookCommon";
|
|
1256
1256
|
group_learningPathCommon: "group_learningPathCommon";
|
|
1257
|
+
group_advertisingCommon: "group_advertisingCommon";
|
|
1257
1258
|
group_quizCommon: "group_quizCommon";
|
|
1258
1259
|
group_resourceBitTags: "group_resourceBitTags";
|
|
1259
1260
|
group_resourceCommon: "group_resourceCommon";
|
|
@@ -1288,6 +1289,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1288
1289
|
property_action: "@action";
|
|
1289
1290
|
property_activityType: "@activityType";
|
|
1290
1291
|
property_additionalSolutions: "@additionalSolutions";
|
|
1292
|
+
property_advertisingClickUrl: "@advertisingClickUrl";
|
|
1291
1293
|
property_ageRange: "@ageRange";
|
|
1292
1294
|
property_aiGenerated: "@aiGenerated";
|
|
1293
1295
|
property_allowedBit: "@allowedBit";
|
|
@@ -1451,6 +1453,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1451
1453
|
property_siteName: "@siteName";
|
|
1452
1454
|
property_size: "@size";
|
|
1453
1455
|
property_slug: "@slug";
|
|
1456
|
+
property_sourceDocument: "@sourceDocument";
|
|
1454
1457
|
property_spaceId: "@spaceId";
|
|
1455
1458
|
property_src1x: "@src1x";
|
|
1456
1459
|
property_src2x: "@src2x";
|
|
@@ -1548,6 +1551,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1548
1551
|
group_mark: "group_mark";
|
|
1549
1552
|
group_bookCommon: "group_bookCommon";
|
|
1550
1553
|
group_learningPathCommon: "group_learningPathCommon";
|
|
1554
|
+
group_advertisingCommon: "group_advertisingCommon";
|
|
1551
1555
|
group_quizCommon: "group_quizCommon";
|
|
1552
1556
|
group_resourceBitTags: "group_resourceBitTags";
|
|
1553
1557
|
group_resourceCommon: "group_resourceCommon";
|
|
@@ -1582,6 +1586,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1582
1586
|
property_action: "@action";
|
|
1583
1587
|
property_activityType: "@activityType";
|
|
1584
1588
|
property_additionalSolutions: "@additionalSolutions";
|
|
1589
|
+
property_advertisingClickUrl: "@advertisingClickUrl";
|
|
1585
1590
|
property_ageRange: "@ageRange";
|
|
1586
1591
|
property_aiGenerated: "@aiGenerated";
|
|
1587
1592
|
property_allowedBit: "@allowedBit";
|
|
@@ -1745,6 +1750,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1745
1750
|
property_siteName: "@siteName";
|
|
1746
1751
|
property_size: "@size";
|
|
1747
1752
|
property_slug: "@slug";
|
|
1753
|
+
property_sourceDocument: "@sourceDocument";
|
|
1748
1754
|
property_spaceId: "@spaceId";
|
|
1749
1755
|
property_src1x: "@src1x";
|
|
1750
1756
|
property_src2x: "@src2x";
|
|
@@ -2634,6 +2640,7 @@ interface BitJson {
|
|
|
2634
2640
|
mailingList: string;
|
|
2635
2641
|
buttonCaption: string;
|
|
2636
2642
|
callToActionUrl: string;
|
|
2643
|
+
advertisingClickUrl: string;
|
|
2637
2644
|
caption: JsonText;
|
|
2638
2645
|
quotedPerson: string;
|
|
2639
2646
|
reasonableNumOfChars: number;
|
|
@@ -2646,6 +2653,7 @@ interface BitJson {
|
|
|
2646
2653
|
maxCreatedBits: number;
|
|
2647
2654
|
maxDisplayLevel: number;
|
|
2648
2655
|
maxTocChapterLevel: number;
|
|
2656
|
+
sourceDocument: string;
|
|
2649
2657
|
tocResource: string | string[];
|
|
2650
2658
|
tocContent: string | string[];
|
|
2651
2659
|
page: string;
|
|
@@ -2671,6 +2679,7 @@ interface BitJson {
|
|
|
2671
2679
|
item: JsonText;
|
|
2672
2680
|
lead: JsonText;
|
|
2673
2681
|
pageNumber: JsonText;
|
|
2682
|
+
sourcePageNumber: JsonText;
|
|
2674
2683
|
marginNumber: JsonText;
|
|
2675
2684
|
hint: JsonText;
|
|
2676
2685
|
instruction: JsonText;
|
|
@@ -3161,6 +3170,7 @@ interface Bit {
|
|
|
3161
3170
|
mailingList?: Property;
|
|
3162
3171
|
buttonCaption?: Property;
|
|
3163
3172
|
callToActionUrl?: Property;
|
|
3173
|
+
advertisingClickUrl?: Property;
|
|
3164
3174
|
caption?: TextAst;
|
|
3165
3175
|
quotedPerson?: Property;
|
|
3166
3176
|
partialAnswer?: Property;
|
|
@@ -3174,6 +3184,7 @@ interface Bit {
|
|
|
3174
3184
|
maxCreatedBits?: Property;
|
|
3175
3185
|
maxDisplayLevel?: Property;
|
|
3176
3186
|
maxTocChapterLevel?: Property;
|
|
3187
|
+
sourceDocument?: Property;
|
|
3177
3188
|
tocResource?: Property;
|
|
3178
3189
|
tocContent?: Property;
|
|
3179
3190
|
page?: Property;
|
|
@@ -3204,6 +3215,7 @@ interface Bit {
|
|
|
3204
3215
|
item?: TextAst;
|
|
3205
3216
|
lead?: TextAst;
|
|
3206
3217
|
pageNumber?: TextAst;
|
|
3218
|
+
sourcePageNumber?: TextAst;
|
|
3207
3219
|
marginNumber?: TextAst;
|
|
3208
3220
|
hint?: TextAst;
|
|
3209
3221
|
instruction?: TextAst;
|
|
@@ -3285,6 +3297,8 @@ declare const NodeType: Readonly<{
|
|
|
3285
3297
|
activityTypeValue: "activityTypeValue";
|
|
3286
3298
|
additionalSolutions: "additionalSolutions";
|
|
3287
3299
|
additionalSolutionsValue: "additionalSolutionsValue";
|
|
3300
|
+
advertisingClickUrl: "advertisingClickUrl";
|
|
3301
|
+
advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
3288
3302
|
ageRange: "ageRange";
|
|
3289
3303
|
ageRangeValue: "ageRangeValue";
|
|
3290
3304
|
aiGenerated: "aiGenerated";
|
|
@@ -3345,8 +3359,6 @@ declare const NodeType: Readonly<{
|
|
|
3345
3359
|
botValue: "botValue";
|
|
3346
3360
|
bubbleTag: "bubbleTag";
|
|
3347
3361
|
bubbleTagValue: "bubbleTagValue";
|
|
3348
|
-
extractorTag: "extractorTag";
|
|
3349
|
-
extractorTagValue: "extractorTagValue";
|
|
3350
3362
|
buttonCaption: "buttonCaption";
|
|
3351
3363
|
buttonCaptionValue: "buttonCaptionValue";
|
|
3352
3364
|
callToActionUrl: "callToActionUrl";
|
|
@@ -3444,6 +3456,8 @@ declare const NodeType: Readonly<{
|
|
|
3444
3456
|
externalIdValue: "externalIdValue";
|
|
3445
3457
|
externalLink: "externalLink";
|
|
3446
3458
|
externalLinkText: "externalLinkText";
|
|
3459
|
+
extractorTag: "extractorTag";
|
|
3460
|
+
extractorTagValue: "extractorTagValue";
|
|
3447
3461
|
extraProperties: "extraProperties";
|
|
3448
3462
|
feedback: "feedback";
|
|
3449
3463
|
feedbackEngine: "feedbackEngine";
|
|
@@ -3726,15 +3740,18 @@ declare const NodeType: Readonly<{
|
|
|
3726
3740
|
solution: "solution";
|
|
3727
3741
|
solutions: "solutions";
|
|
3728
3742
|
solutionsValue: "solutionsValue";
|
|
3743
|
+
sourceDocument: "sourceDocument";
|
|
3744
|
+
sourceDocumentValue: "sourceDocumentValue";
|
|
3745
|
+
sourcePageNumber: "sourcePageNumber";
|
|
3729
3746
|
spaceId: "spaceId";
|
|
3730
3747
|
spaceIdValue: "spaceIdValue";
|
|
3731
3748
|
src: "src";
|
|
3732
|
-
srcAlt: "srcAlt";
|
|
3733
|
-
srcAltValue: "srcAltValue";
|
|
3734
3749
|
src1x: "src1x";
|
|
3735
3750
|
src2x: "src2x";
|
|
3736
3751
|
src3x: "src3x";
|
|
3737
3752
|
src4x: "src4x";
|
|
3753
|
+
srcAlt: "srcAlt";
|
|
3754
|
+
srcAltValue: "srcAltValue";
|
|
3738
3755
|
start: "start";
|
|
3739
3756
|
statement: "statement";
|
|
3740
3757
|
statements: "statements";
|
|
@@ -3846,6 +3863,8 @@ declare const NodeType: Readonly<{
|
|
|
3846
3863
|
activityTypeValue: "activityTypeValue";
|
|
3847
3864
|
additionalSolutions: "additionalSolutions";
|
|
3848
3865
|
additionalSolutionsValue: "additionalSolutionsValue";
|
|
3866
|
+
advertisingClickUrl: "advertisingClickUrl";
|
|
3867
|
+
advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
3849
3868
|
ageRange: "ageRange";
|
|
3850
3869
|
ageRangeValue: "ageRangeValue";
|
|
3851
3870
|
aiGenerated: "aiGenerated";
|
|
@@ -3906,8 +3925,6 @@ declare const NodeType: Readonly<{
|
|
|
3906
3925
|
botValue: "botValue";
|
|
3907
3926
|
bubbleTag: "bubbleTag";
|
|
3908
3927
|
bubbleTagValue: "bubbleTagValue";
|
|
3909
|
-
extractorTag: "extractorTag";
|
|
3910
|
-
extractorTagValue: "extractorTagValue";
|
|
3911
3928
|
buttonCaption: "buttonCaption";
|
|
3912
3929
|
buttonCaptionValue: "buttonCaptionValue";
|
|
3913
3930
|
callToActionUrl: "callToActionUrl";
|
|
@@ -4005,6 +4022,8 @@ declare const NodeType: Readonly<{
|
|
|
4005
4022
|
externalIdValue: "externalIdValue";
|
|
4006
4023
|
externalLink: "externalLink";
|
|
4007
4024
|
externalLinkText: "externalLinkText";
|
|
4025
|
+
extractorTag: "extractorTag";
|
|
4026
|
+
extractorTagValue: "extractorTagValue";
|
|
4008
4027
|
extraProperties: "extraProperties";
|
|
4009
4028
|
feedback: "feedback";
|
|
4010
4029
|
feedbackEngine: "feedbackEngine";
|
|
@@ -4287,15 +4306,18 @@ declare const NodeType: Readonly<{
|
|
|
4287
4306
|
solution: "solution";
|
|
4288
4307
|
solutions: "solutions";
|
|
4289
4308
|
solutionsValue: "solutionsValue";
|
|
4309
|
+
sourceDocument: "sourceDocument";
|
|
4310
|
+
sourceDocumentValue: "sourceDocumentValue";
|
|
4311
|
+
sourcePageNumber: "sourcePageNumber";
|
|
4290
4312
|
spaceId: "spaceId";
|
|
4291
4313
|
spaceIdValue: "spaceIdValue";
|
|
4292
4314
|
src: "src";
|
|
4293
|
-
srcAlt: "srcAlt";
|
|
4294
|
-
srcAltValue: "srcAltValue";
|
|
4295
4315
|
src1x: "src1x";
|
|
4296
4316
|
src2x: "src2x";
|
|
4297
4317
|
src3x: "src3x";
|
|
4298
4318
|
src4x: "src4x";
|
|
4319
|
+
srcAlt: "srcAlt";
|
|
4320
|
+
srcAltValue: "srcAltValue";
|
|
4299
4321
|
start: "start";
|
|
4300
4322
|
statement: "statement";
|
|
4301
4323
|
statements: "statements";
|
|
@@ -5398,6 +5420,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5398
5420
|
mailingList?: string;
|
|
5399
5421
|
buttonCaption?: string;
|
|
5400
5422
|
callToActionUrl?: string;
|
|
5423
|
+
advertisingClickUrl?: string;
|
|
5401
5424
|
caption?: JsonText;
|
|
5402
5425
|
quotedPerson?: string;
|
|
5403
5426
|
reasonableNumOfChars?: number;
|
|
@@ -5410,6 +5433,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5410
5433
|
maxCreatedBits?: number;
|
|
5411
5434
|
maxDisplayLevel?: number;
|
|
5412
5435
|
maxTocChapterLevel?: number;
|
|
5436
|
+
sourceDocument?: string;
|
|
5413
5437
|
tocResource?: string | string[];
|
|
5414
5438
|
tocContent?: string | string[];
|
|
5415
5439
|
page?: string | string[];
|
|
@@ -5438,6 +5462,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5438
5462
|
item?: JsonText;
|
|
5439
5463
|
lead?: JsonText;
|
|
5440
5464
|
pageNumber?: JsonText;
|
|
5465
|
+
sourcePageNumber?: JsonText;
|
|
5441
5466
|
marginNumber?: JsonText;
|
|
5442
5467
|
hint?: JsonText;
|
|
5443
5468
|
instruction?: JsonText;
|
|
@@ -6574,6 +6599,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6574
6599
|
protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6575
6600
|
protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6576
6601
|
protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6602
|
+
protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6577
6603
|
protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6578
6604
|
protected enter_body(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6579
6605
|
protected exit_body(_node: NodeInfo, _route: NodeInfo[]): void;
|
|
@@ -6966,6 +6992,7 @@ declare class JsonGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6966
6992
|
protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6967
6993
|
protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6968
6994
|
protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6995
|
+
protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6969
6996
|
protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6970
6997
|
protected enter_hint(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6971
6998
|
protected enter_instruction(node: NodeInfo, route: NodeInfo[]): boolean;
|