@gmb/bitmark-parser-generator 5.28.0 → 5.30.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 +658 -410
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +6 -0
- package/dist/browser/esm/index.d.ts +6 -0
- package/dist/browser/esm/index.js +658 -410
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +655 -409
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +658 -410
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +658 -410
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -789,6 +789,7 @@ declare const ConfigKey: {
|
|
|
789
789
|
readonly property_bubbleTag: "@bubbleTag";
|
|
790
790
|
readonly property_extractorTag: "@extractorTag";
|
|
791
791
|
readonly property_extractorInternal: "@extractorInternal";
|
|
792
|
+
readonly property_bitFingerprint: "@bitFingerprint";
|
|
792
793
|
readonly property_buttonCaption: "@buttonCaption";
|
|
793
794
|
readonly property_callToActionUrl: "@callToActionUrl";
|
|
794
795
|
readonly property_caption: "@caption";
|
|
@@ -1744,6 +1745,7 @@ interface BitJson {
|
|
|
1744
1745
|
extractorTag: string | string[];
|
|
1745
1746
|
extractorInternal: string | string[];
|
|
1746
1747
|
sourceBB?: number[] | number[][];
|
|
1748
|
+
bitFingerprint: string | string[];
|
|
1747
1749
|
levelCEFRp: string;
|
|
1748
1750
|
levelCEFR: string;
|
|
1749
1751
|
levelILR: string;
|
|
@@ -2368,6 +2370,7 @@ interface Bit {
|
|
|
2368
2370
|
extractorTag?: Property;
|
|
2369
2371
|
extractorInternal?: Property;
|
|
2370
2372
|
sourceBB?: number[][];
|
|
2373
|
+
bitFingerprint?: Property;
|
|
2371
2374
|
levelCEFRp?: Property;
|
|
2372
2375
|
levelCEFR?: Property;
|
|
2373
2376
|
levelILR?: Property;
|
|
@@ -2716,6 +2719,8 @@ declare const NodeType: {
|
|
|
2716
2719
|
readonly bits: "bits";
|
|
2717
2720
|
readonly bitsValue: "bitsValue";
|
|
2718
2721
|
readonly bitType: "bitType";
|
|
2722
|
+
readonly bitFingerprint: "bitFingerprint";
|
|
2723
|
+
readonly bitFingerprintValue: "bitFingerprintValue";
|
|
2719
2724
|
readonly blockId: "blockId";
|
|
2720
2725
|
readonly blockIdValue: "blockIdValue";
|
|
2721
2726
|
readonly body: "body";
|
|
@@ -4346,6 +4351,7 @@ declare class Builder extends BaseBuilder {
|
|
|
4346
4351
|
extractorTag?: string | string[];
|
|
4347
4352
|
extractorInternal?: string | string[];
|
|
4348
4353
|
sourceBB?: number[] | number[][];
|
|
4354
|
+
bitFingerprint?: string | string[];
|
|
4349
4355
|
levelCEFRp?: string | string[];
|
|
4350
4356
|
levelCEFR?: string | string[];
|
|
4351
4357
|
levelILR?: string | string[];
|
|
@@ -789,6 +789,7 @@ declare const ConfigKey: {
|
|
|
789
789
|
readonly property_bubbleTag: "@bubbleTag";
|
|
790
790
|
readonly property_extractorTag: "@extractorTag";
|
|
791
791
|
readonly property_extractorInternal: "@extractorInternal";
|
|
792
|
+
readonly property_bitFingerprint: "@bitFingerprint";
|
|
792
793
|
readonly property_buttonCaption: "@buttonCaption";
|
|
793
794
|
readonly property_callToActionUrl: "@callToActionUrl";
|
|
794
795
|
readonly property_caption: "@caption";
|
|
@@ -1744,6 +1745,7 @@ interface BitJson {
|
|
|
1744
1745
|
extractorTag: string | string[];
|
|
1745
1746
|
extractorInternal: string | string[];
|
|
1746
1747
|
sourceBB?: number[] | number[][];
|
|
1748
|
+
bitFingerprint: string | string[];
|
|
1747
1749
|
levelCEFRp: string;
|
|
1748
1750
|
levelCEFR: string;
|
|
1749
1751
|
levelILR: string;
|
|
@@ -2368,6 +2370,7 @@ interface Bit {
|
|
|
2368
2370
|
extractorTag?: Property;
|
|
2369
2371
|
extractorInternal?: Property;
|
|
2370
2372
|
sourceBB?: number[][];
|
|
2373
|
+
bitFingerprint?: Property;
|
|
2371
2374
|
levelCEFRp?: Property;
|
|
2372
2375
|
levelCEFR?: Property;
|
|
2373
2376
|
levelILR?: Property;
|
|
@@ -2716,6 +2719,8 @@ declare const NodeType: {
|
|
|
2716
2719
|
readonly bits: "bits";
|
|
2717
2720
|
readonly bitsValue: "bitsValue";
|
|
2718
2721
|
readonly bitType: "bitType";
|
|
2722
|
+
readonly bitFingerprint: "bitFingerprint";
|
|
2723
|
+
readonly bitFingerprintValue: "bitFingerprintValue";
|
|
2719
2724
|
readonly blockId: "blockId";
|
|
2720
2725
|
readonly blockIdValue: "blockIdValue";
|
|
2721
2726
|
readonly body: "body";
|
|
@@ -4346,6 +4351,7 @@ declare class Builder extends BaseBuilder {
|
|
|
4346
4351
|
extractorTag?: string | string[];
|
|
4347
4352
|
extractorInternal?: string | string[];
|
|
4348
4353
|
sourceBB?: number[] | number[][];
|
|
4354
|
+
bitFingerprint?: string | string[];
|
|
4349
4355
|
levelCEFRp?: string | string[];
|
|
4350
4356
|
levelCEFR?: string | string[];
|
|
4351
4357
|
levelILR?: string | string[];
|