@gmb/bitmark-parser-generator 5.33.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/index.cjs CHANGED
@@ -1568,6 +1568,8 @@ var propertyKeys = {
1568
1568
  property_resolvedBy: "@resolvedBy",
1569
1569
  property_resolvedDate: "@resolvedDate",
1570
1570
  property_revealSolutions: "@revealSolutions",
1571
+ property_reviewTag: "@reviewTag",
1572
+ property_reviewerTag: "@reviewerTag",
1571
1573
  property_sampleSolution: "@sampleSolution",
1572
1574
  property_scormSource: "@scormSource",
1573
1575
  property_search: "@search",
@@ -4646,6 +4648,18 @@ var GROUPS = {
4646
4648
  }
4647
4649
  ]
4648
4650
  },
4651
+ {
4652
+ key: ConfigKey.property_reviewTag,
4653
+ description: "The review tag(s) for the bit",
4654
+ format: TagFormat.plainText,
4655
+ maxCount: Count.infinity
4656
+ },
4657
+ {
4658
+ key: ConfigKey.property_reviewerTag,
4659
+ description: "The reviewer tag(s) for the bit",
4660
+ format: TagFormat.plainText,
4661
+ maxCount: Count.infinity
4662
+ },
4649
4663
  {
4650
4664
  key: ConfigKey.property_reductionTag,
4651
4665
  description: "The reduction tag(s) for the bit",
@@ -13990,7 +14004,7 @@ var instance2 = new Config();
13990
14004
  // src/generated/package_info.ts
13991
14005
  var PACKAGE_INFO = {
13992
14006
  "name": "@gmb/bitmark-parser-generator",
13993
- "version": "5.33.0",
14007
+ "version": "5.34.0",
13994
14008
  "author": "Get More Brain Ltd",
13995
14009
  "license": "ISC",
13996
14010
  "description": "A bitmark parser and generator using Peggy.js"
@@ -14911,6 +14925,10 @@ var NodeType = {
14911
14925
  responses: "responses",
14912
14926
  responsesValue: "responsesValue",
14913
14927
  revealSolutions: "revealSolutions",
14928
+ reviewTag: "reviewTag",
14929
+ reviewTagValue: "reviewTagValue",
14930
+ reviewerTag: "reviewerTag",
14931
+ reviewerTagValue: "reviewerTagValue",
14914
14932
  root: "root",
14915
14933
  // bit type (root)
14916
14934
  rows: "rows",
@@ -28439,6 +28457,13 @@ var Builder = class extends BaseBuilder {
28439
28457
  slug: this.toAstProperty(bitType, ConfigKey.property_slug, data.slug, options),
28440
28458
  tag: this.toAstProperty(bitType, ConfigKey.property_tag, data.tag, options),
28441
28459
  groupTag: this.buildGroupTags(context, data.groupTag),
28460
+ reviewTag: this.toAstProperty(bitType, ConfigKey.property_reviewTag, data.reviewTag, options),
28461
+ reviewerTag: this.toAstProperty(
28462
+ bitType,
28463
+ ConfigKey.property_reviewerTag,
28464
+ data.reviewerTag,
28465
+ options
28466
+ ),
28442
28467
  reductionTag: this.toAstProperty(
28443
28468
  bitType,
28444
28469
  ConfigKey.property_reductionTag,