@gmb/bitmark-parser-generator 5.35.0 → 5.36.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 +386 -41
- 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 +386 -41
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +532 -136
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +532 -136
- 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 +532 -136
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -836,6 +836,7 @@ declare const ConfigKey: {
|
|
|
836
836
|
readonly property_dateEnd: "@dateEnd";
|
|
837
837
|
readonly property_decimalPlaces: "@decimalPlaces";
|
|
838
838
|
readonly property_deeplink: "@deeplink";
|
|
839
|
+
readonly property_displayName: "@displayName";
|
|
839
840
|
readonly property_diffContext: "@diffContext";
|
|
840
841
|
readonly property_diffOp: "@diffOp";
|
|
841
842
|
readonly property_diffRef: "@diffRef";
|
|
@@ -1775,6 +1776,7 @@ interface BitJson {
|
|
|
1775
1776
|
backgroundImage: string | string[];
|
|
1776
1777
|
publisher: string | string[];
|
|
1777
1778
|
publisherName: string;
|
|
1779
|
+
displayName: string;
|
|
1778
1780
|
publications: string | string[];
|
|
1779
1781
|
relatedBook: string | string[];
|
|
1780
1782
|
userFeedbackTranslationUrl: string;
|
|
@@ -2374,6 +2376,7 @@ interface Bit {
|
|
|
2374
2376
|
language?: Property;
|
|
2375
2377
|
publisher?: Property;
|
|
2376
2378
|
publisherName?: Property;
|
|
2379
|
+
displayName?: Property;
|
|
2377
2380
|
theme?: Property;
|
|
2378
2381
|
rtl?: Property;
|
|
2379
2382
|
computerLanguage?: Property;
|
|
@@ -2849,6 +2852,8 @@ declare const NodeType: {
|
|
|
2849
2852
|
readonly definition: "definition";
|
|
2850
2853
|
readonly definitions: "definitions";
|
|
2851
2854
|
readonly definitionsValue: "definitionsValue";
|
|
2855
|
+
readonly displayName: "displayName";
|
|
2856
|
+
readonly displayNameValue: "displayNameValue";
|
|
2852
2857
|
readonly diffContext: "diffContext";
|
|
2853
2858
|
readonly diffContextValue: "diffContextValue";
|
|
2854
2859
|
readonly diffOp: "diffOp";
|
|
@@ -4387,6 +4392,7 @@ declare class Builder extends BaseBuilder {
|
|
|
4387
4392
|
language?: string | string[];
|
|
4388
4393
|
publisher?: string | string[];
|
|
4389
4394
|
publisherName?: string;
|
|
4395
|
+
displayName?: string;
|
|
4390
4396
|
theme?: string | string[];
|
|
4391
4397
|
rtl?: boolean;
|
|
4392
4398
|
computerLanguage?: string;
|
|
@@ -836,6 +836,7 @@ declare const ConfigKey: {
|
|
|
836
836
|
readonly property_dateEnd: "@dateEnd";
|
|
837
837
|
readonly property_decimalPlaces: "@decimalPlaces";
|
|
838
838
|
readonly property_deeplink: "@deeplink";
|
|
839
|
+
readonly property_displayName: "@displayName";
|
|
839
840
|
readonly property_diffContext: "@diffContext";
|
|
840
841
|
readonly property_diffOp: "@diffOp";
|
|
841
842
|
readonly property_diffRef: "@diffRef";
|
|
@@ -1775,6 +1776,7 @@ interface BitJson {
|
|
|
1775
1776
|
backgroundImage: string | string[];
|
|
1776
1777
|
publisher: string | string[];
|
|
1777
1778
|
publisherName: string;
|
|
1779
|
+
displayName: string;
|
|
1778
1780
|
publications: string | string[];
|
|
1779
1781
|
relatedBook: string | string[];
|
|
1780
1782
|
userFeedbackTranslationUrl: string;
|
|
@@ -2374,6 +2376,7 @@ interface Bit {
|
|
|
2374
2376
|
language?: Property;
|
|
2375
2377
|
publisher?: Property;
|
|
2376
2378
|
publisherName?: Property;
|
|
2379
|
+
displayName?: Property;
|
|
2377
2380
|
theme?: Property;
|
|
2378
2381
|
rtl?: Property;
|
|
2379
2382
|
computerLanguage?: Property;
|
|
@@ -2849,6 +2852,8 @@ declare const NodeType: {
|
|
|
2849
2852
|
readonly definition: "definition";
|
|
2850
2853
|
readonly definitions: "definitions";
|
|
2851
2854
|
readonly definitionsValue: "definitionsValue";
|
|
2855
|
+
readonly displayName: "displayName";
|
|
2856
|
+
readonly displayNameValue: "displayNameValue";
|
|
2852
2857
|
readonly diffContext: "diffContext";
|
|
2853
2858
|
readonly diffContextValue: "diffContextValue";
|
|
2854
2859
|
readonly diffOp: "diffOp";
|
|
@@ -4387,6 +4392,7 @@ declare class Builder extends BaseBuilder {
|
|
|
4387
4392
|
language?: string | string[];
|
|
4388
4393
|
publisher?: string | string[];
|
|
4389
4394
|
publisherName?: string;
|
|
4395
|
+
displayName?: string;
|
|
4390
4396
|
theme?: string | string[];
|
|
4391
4397
|
rtl?: boolean;
|
|
4392
4398
|
computerLanguage?: string;
|