@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/cli/main.js CHANGED
@@ -1468,6 +1468,8 @@ var propertyKeys = {
1468
1468
  property_resolvedBy: "@resolvedBy",
1469
1469
  property_resolvedDate: "@resolvedDate",
1470
1470
  property_revealSolutions: "@revealSolutions",
1471
+ property_reviewTag: "@reviewTag",
1472
+ property_reviewerTag: "@reviewerTag",
1471
1473
  property_sampleSolution: "@sampleSolution",
1472
1474
  property_scormSource: "@scormSource",
1473
1475
  property_search: "@search",
@@ -4537,6 +4539,18 @@ var GROUPS = {
4537
4539
  }
4538
4540
  ]
4539
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
+ },
4540
4554
  {
4541
4555
  key: ConfigKey.property_reductionTag,
4542
4556
  description: "The reduction tag(s) for the bit",
@@ -13881,7 +13895,7 @@ var instance2 = new Config();
13881
13895
  // src/generated/package_info.ts
13882
13896
  var PACKAGE_INFO = {
13883
13897
  "name": "@gmb/bitmark-parser-generator",
13884
- "version": "5.33.0",
13898
+ "version": "5.34.0",
13885
13899
  "license": "ISC"};
13886
13900
  var Environment = {
13887
13901
  unknown: "",
@@ -14770,6 +14784,10 @@ var NodeType = {
14770
14784
  responses: "responses",
14771
14785
  responsesValue: "responsesValue",
14772
14786
  revealSolutions: "revealSolutions",
14787
+ reviewTag: "reviewTag",
14788
+ reviewTagValue: "reviewTagValue",
14789
+ reviewerTag: "reviewerTag",
14790
+ reviewerTagValue: "reviewerTagValue",
14773
14791
  root: "root",
14774
14792
  // bit type (root)
14775
14793
  rows: "rows",
@@ -28113,6 +28131,13 @@ var Builder = class extends BaseBuilder {
28113
28131
  slug: this.toAstProperty(bitType, ConfigKey.property_slug, data.slug, options),
28114
28132
  tag: this.toAstProperty(bitType, ConfigKey.property_tag, data.tag, options),
28115
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
+ ),
28116
28141
  reductionTag: this.toAstProperty(
28117
28142
  bitType,
28118
28143
  ConfigKey.property_reductionTag,