@gmb/bitmark-parser-generator 5.32.0 → 5.34.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/cli/main.js CHANGED
@@ -449,6 +449,8 @@ var BitType = {
449
449
  pageSectionFolder: "page-section-folder",
450
450
  pageShopInShop: "page-shop-in-shop",
451
451
  pageSpecial: "page-special",
452
+ pageEnd: "page-end",
453
+ pageStart: "page-start",
452
454
  pageSubpage: "page-subpage",
453
455
  pageSubscribe: "page-subscribe",
454
456
  parameters: "parameters",
@@ -1466,6 +1468,8 @@ var propertyKeys = {
1466
1468
  property_resolvedBy: "@resolvedBy",
1467
1469
  property_resolvedDate: "@resolvedDate",
1468
1470
  property_revealSolutions: "@revealSolutions",
1471
+ property_reviewTag: "@reviewTag",
1472
+ property_reviewerTag: "@reviewerTag",
1469
1473
  property_sampleSolution: "@sampleSolution",
1470
1474
  property_scormSource: "@scormSource",
1471
1475
  property_search: "@search",
@@ -4535,6 +4539,18 @@ var GROUPS = {
4535
4539
  }
4536
4540
  ]
4537
4541
  },
4542
+ {
4543
+ key: ConfigKey.property_reviewTag,
4544
+ description: "The review tag(s) for the bit",
4545
+ format: TagFormat.plainText,
4546
+ maxCount: Count.infinity
4547
+ },
4548
+ {
4549
+ key: ConfigKey.property_reviewerTag,
4550
+ description: "The reviewer tag(s) for the bit",
4551
+ format: TagFormat.plainText,
4552
+ maxCount: Count.infinity
4553
+ },
4538
4554
  {
4539
4555
  key: ConfigKey.property_reductionTag,
4540
4556
  description: "The reduction tag(s) for the bit",
@@ -11923,6 +11939,16 @@ var BITS = {
11923
11939
  baseBitType: BitType.pageSubpage,
11924
11940
  description: "Page special bit, used to create special pages in articles or books"
11925
11941
  },
11942
+ [BitType.pageEnd]: {
11943
+ since: "5.33.0",
11944
+ baseBitType: BitType.article,
11945
+ description: "Page end bit, used to mark the end of a page section in articles or books"
11946
+ },
11947
+ [BitType.pageStart]: {
11948
+ since: "5.33.0",
11949
+ baseBitType: BitType.article,
11950
+ description: "Page start bit, used to mark the start of a page section in articles or books"
11951
+ },
11926
11952
  [BitType.pagePerson]: {
11927
11953
  since: "1.5.16",
11928
11954
  baseBitType: BitType._standard,
@@ -13869,7 +13895,7 @@ var instance2 = new Config();
13869
13895
  // src/generated/package_info.ts
13870
13896
  var PACKAGE_INFO = {
13871
13897
  "name": "@gmb/bitmark-parser-generator",
13872
- "version": "5.32.0",
13898
+ "version": "5.34.0",
13873
13899
  "license": "ISC"};
13874
13900
  var Environment = {
13875
13901
  unknown: "",
@@ -14758,6 +14784,10 @@ var NodeType = {
14758
14784
  responses: "responses",
14759
14785
  responsesValue: "responsesValue",
14760
14786
  revealSolutions: "revealSolutions",
14787
+ reviewTag: "reviewTag",
14788
+ reviewTagValue: "reviewTagValue",
14789
+ reviewerTag: "reviewerTag",
14790
+ reviewerTagValue: "reviewerTagValue",
14761
14791
  root: "root",
14762
14792
  // bit type (root)
14763
14793
  rows: "rows",
@@ -28101,6 +28131,13 @@ var Builder = class extends BaseBuilder {
28101
28131
  slug: this.toAstProperty(bitType, ConfigKey.property_slug, data.slug, options),
28102
28132
  tag: this.toAstProperty(bitType, ConfigKey.property_tag, data.tag, options),
28103
28133
  groupTag: this.buildGroupTags(context, data.groupTag),
28134
+ reviewTag: this.toAstProperty(bitType, ConfigKey.property_reviewTag, data.reviewTag, options),
28135
+ reviewerTag: this.toAstProperty(
28136
+ bitType,
28137
+ ConfigKey.property_reviewerTag,
28138
+ data.reviewerTag,
28139
+ options
28140
+ ),
28104
28141
  reductionTag: this.toAstProperty(
28105
28142
  bitType,
28106
28143
  ConfigKey.property_reductionTag,