@gmb/bitmark-parser-generator 5.34.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.
@@ -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";
@@ -835,6 +836,7 @@ declare const ConfigKey: {
835
836
  readonly property_dateEnd: "@dateEnd";
836
837
  readonly property_decimalPlaces: "@decimalPlaces";
837
838
  readonly property_deeplink: "@deeplink";
839
+ readonly property_displayName: "@displayName";
838
840
  readonly property_diffContext: "@diffContext";
839
841
  readonly property_diffOp: "@diffOp";
840
842
  readonly property_diffRef: "@diffRef";
@@ -989,6 +991,7 @@ declare const ConfigKey: {
989
991
  readonly property_revealSolutions: "@revealSolutions";
990
992
  readonly property_reviewTag: "@reviewTag";
991
993
  readonly property_reviewerTag: "@reviewerTag";
994
+ readonly property_rightsPolicy: "@rightsPolicy";
992
995
  readonly property_sampleSolution: "@sampleSolution";
993
996
  readonly property_scormSource: "@scormSource";
994
997
  readonly property_search: "@search";
@@ -1708,6 +1711,9 @@ interface BitJson {
1708
1711
  padletId: string;
1709
1712
  jupyterId: string;
1710
1713
  jupyterExecutionCount: number;
1714
+ copyright: string;
1715
+ license: string;
1716
+ rightsPolicy: string[];
1711
1717
  sourceRL: string;
1712
1718
  isPublic: boolean;
1713
1719
  isTemplate: boolean;
@@ -1770,6 +1776,7 @@ interface BitJson {
1770
1776
  backgroundImage: string | string[];
1771
1777
  publisher: string | string[];
1772
1778
  publisherName: string;
1779
+ displayName: string;
1773
1780
  publications: string | string[];
1774
1781
  relatedBook: string | string[];
1775
1782
  userFeedbackTranslationUrl: string;
@@ -2330,6 +2337,9 @@ interface Bit {
2330
2337
  padletId?: Property;
2331
2338
  jupyterId?: Property;
2332
2339
  jupyterExecutionCount?: Property;
2340
+ copyright?: Property;
2341
+ license?: Property;
2342
+ rightsPolicy?: Property;
2333
2343
  sourceRL?: Property;
2334
2344
  isPublic?: Property;
2335
2345
  isTemplate?: Property;
@@ -2366,6 +2376,7 @@ interface Bit {
2366
2376
  language?: Property;
2367
2377
  publisher?: Property;
2368
2378
  publisherName?: Property;
2379
+ displayName?: Property;
2369
2380
  theme?: Property;
2370
2381
  rtl?: Property;
2371
2382
  computerLanguage?: Property;
@@ -2841,6 +2852,8 @@ declare const NodeType: {
2841
2852
  readonly definition: "definition";
2842
2853
  readonly definitions: "definitions";
2843
2854
  readonly definitionsValue: "definitionsValue";
2855
+ readonly displayName: "displayName";
2856
+ readonly displayNameValue: "displayNameValue";
2844
2857
  readonly diffContext: "diffContext";
2845
2858
  readonly diffContextValue: "diffContextValue";
2846
2859
  readonly diffOp: "diffOp";
@@ -3236,6 +3249,8 @@ declare const NodeType: {
3236
3249
  readonly reviewTagValue: "reviewTagValue";
3237
3250
  readonly reviewerTag: "reviewerTag";
3238
3251
  readonly reviewerTagValue: "reviewerTagValue";
3252
+ readonly rightsPolicy: "rightsPolicy";
3253
+ readonly rightsPolicyValue: "rightsPolicyValue";
3239
3254
  readonly root: "root";
3240
3255
  readonly rows: "rows";
3241
3256
  readonly rowsValue: "rowsValue";
@@ -4338,6 +4353,9 @@ declare class Builder extends BaseBuilder {
4338
4353
  padletId?: string;
4339
4354
  jupyterId?: string;
4340
4355
  jupyterExecutionCount?: number;
4356
+ copyright?: string;
4357
+ license?: string;
4358
+ rightsPolicy?: string | string[];
4341
4359
  sourceRL?: string;
4342
4360
  isPublic?: boolean;
4343
4361
  isTemplate?: boolean;
@@ -4374,6 +4392,7 @@ declare class Builder extends BaseBuilder {
4374
4392
  language?: string | string[];
4375
4393
  publisher?: string | string[];
4376
4394
  publisherName?: string;
4395
+ displayName?: string;
4377
4396
  theme?: string | string[];
4378
4397
  rtl?: boolean;
4379
4398
  computerLanguage?: 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";
@@ -835,6 +836,7 @@ declare const ConfigKey: {
835
836
  readonly property_dateEnd: "@dateEnd";
836
837
  readonly property_decimalPlaces: "@decimalPlaces";
837
838
  readonly property_deeplink: "@deeplink";
839
+ readonly property_displayName: "@displayName";
838
840
  readonly property_diffContext: "@diffContext";
839
841
  readonly property_diffOp: "@diffOp";
840
842
  readonly property_diffRef: "@diffRef";
@@ -989,6 +991,7 @@ declare const ConfigKey: {
989
991
  readonly property_revealSolutions: "@revealSolutions";
990
992
  readonly property_reviewTag: "@reviewTag";
991
993
  readonly property_reviewerTag: "@reviewerTag";
994
+ readonly property_rightsPolicy: "@rightsPolicy";
992
995
  readonly property_sampleSolution: "@sampleSolution";
993
996
  readonly property_scormSource: "@scormSource";
994
997
  readonly property_search: "@search";
@@ -1708,6 +1711,9 @@ interface BitJson {
1708
1711
  padletId: string;
1709
1712
  jupyterId: string;
1710
1713
  jupyterExecutionCount: number;
1714
+ copyright: string;
1715
+ license: string;
1716
+ rightsPolicy: string[];
1711
1717
  sourceRL: string;
1712
1718
  isPublic: boolean;
1713
1719
  isTemplate: boolean;
@@ -1770,6 +1776,7 @@ interface BitJson {
1770
1776
  backgroundImage: string | string[];
1771
1777
  publisher: string | string[];
1772
1778
  publisherName: string;
1779
+ displayName: string;
1773
1780
  publications: string | string[];
1774
1781
  relatedBook: string | string[];
1775
1782
  userFeedbackTranslationUrl: string;
@@ -2330,6 +2337,9 @@ interface Bit {
2330
2337
  padletId?: Property;
2331
2338
  jupyterId?: Property;
2332
2339
  jupyterExecutionCount?: Property;
2340
+ copyright?: Property;
2341
+ license?: Property;
2342
+ rightsPolicy?: Property;
2333
2343
  sourceRL?: Property;
2334
2344
  isPublic?: Property;
2335
2345
  isTemplate?: Property;
@@ -2366,6 +2376,7 @@ interface Bit {
2366
2376
  language?: Property;
2367
2377
  publisher?: Property;
2368
2378
  publisherName?: Property;
2379
+ displayName?: Property;
2369
2380
  theme?: Property;
2370
2381
  rtl?: Property;
2371
2382
  computerLanguage?: Property;
@@ -2841,6 +2852,8 @@ declare const NodeType: {
2841
2852
  readonly definition: "definition";
2842
2853
  readonly definitions: "definitions";
2843
2854
  readonly definitionsValue: "definitionsValue";
2855
+ readonly displayName: "displayName";
2856
+ readonly displayNameValue: "displayNameValue";
2844
2857
  readonly diffContext: "diffContext";
2845
2858
  readonly diffContextValue: "diffContextValue";
2846
2859
  readonly diffOp: "diffOp";
@@ -3236,6 +3249,8 @@ declare const NodeType: {
3236
3249
  readonly reviewTagValue: "reviewTagValue";
3237
3250
  readonly reviewerTag: "reviewerTag";
3238
3251
  readonly reviewerTagValue: "reviewerTagValue";
3252
+ readonly rightsPolicy: "rightsPolicy";
3253
+ readonly rightsPolicyValue: "rightsPolicyValue";
3239
3254
  readonly root: "root";
3240
3255
  readonly rows: "rows";
3241
3256
  readonly rowsValue: "rowsValue";
@@ -4338,6 +4353,9 @@ declare class Builder extends BaseBuilder {
4338
4353
  padletId?: string;
4339
4354
  jupyterId?: string;
4340
4355
  jupyterExecutionCount?: number;
4356
+ copyright?: string;
4357
+ license?: string;
4358
+ rightsPolicy?: string | string[];
4341
4359
  sourceRL?: string;
4342
4360
  isPublic?: boolean;
4343
4361
  isTemplate?: boolean;
@@ -4374,6 +4392,7 @@ declare class Builder extends BaseBuilder {
4374
4392
  language?: string | string[];
4375
4393
  publisher?: string | string[];
4376
4394
  publisherName?: string;
4395
+ displayName?: string;
4377
4396
  theme?: string | string[];
4378
4397
  rtl?: boolean;
4379
4398
  computerLanguage?: string;