@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.
@@ -987,6 +987,8 @@ declare const ConfigKey: {
987
987
  readonly property_resolvedBy: "@resolvedBy";
988
988
  readonly property_resolvedDate: "@resolvedDate";
989
989
  readonly property_revealSolutions: "@revealSolutions";
990
+ readonly property_reviewTag: "@reviewTag";
991
+ readonly property_reviewerTag: "@reviewerTag";
990
992
  readonly property_sampleSolution: "@sampleSolution";
991
993
  readonly property_scormSource: "@scormSource";
992
994
  readonly property_search: "@search";
@@ -1744,6 +1746,8 @@ interface BitJson {
1744
1746
  slug: string;
1745
1747
  tag: string | string[];
1746
1748
  groupTag: GroupTagJson[];
1749
+ reviewTag: string | string[];
1750
+ reviewerTag: string | string[];
1747
1751
  reductionTag: string | string[];
1748
1752
  bubbleTag: string | string[];
1749
1753
  extractorTag: string | string[];
@@ -2369,6 +2373,8 @@ interface Bit {
2369
2373
  slug?: Property;
2370
2374
  tag?: Property;
2371
2375
  groupTag?: GroupTagJson[];
2376
+ reviewTag?: Property;
2377
+ reviewerTag?: Property;
2372
2378
  reductionTag?: Property;
2373
2379
  bubbleTag?: Property;
2374
2380
  extractorTag?: Property;
@@ -3226,6 +3232,10 @@ declare const NodeType: {
3226
3232
  readonly responses: "responses";
3227
3233
  readonly responsesValue: "responsesValue";
3228
3234
  readonly revealSolutions: "revealSolutions";
3235
+ readonly reviewTag: "reviewTag";
3236
+ readonly reviewTagValue: "reviewTagValue";
3237
+ readonly reviewerTag: "reviewerTag";
3238
+ readonly reviewerTagValue: "reviewerTagValue";
3229
3239
  readonly root: "root";
3230
3240
  readonly rows: "rows";
3231
3241
  readonly rowsValue: "rowsValue";
@@ -4371,6 +4381,8 @@ declare class Builder extends BaseBuilder {
4371
4381
  slug?: string;
4372
4382
  tag?: string | string[];
4373
4383
  groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
4384
+ reviewTag?: string | string[];
4385
+ reviewerTag?: string | string[];
4374
4386
  reductionTag?: string | string[];
4375
4387
  bubbleTag?: string | string[];
4376
4388
  extractorTag?: string | string[];
@@ -987,6 +987,8 @@ declare const ConfigKey: {
987
987
  readonly property_resolvedBy: "@resolvedBy";
988
988
  readonly property_resolvedDate: "@resolvedDate";
989
989
  readonly property_revealSolutions: "@revealSolutions";
990
+ readonly property_reviewTag: "@reviewTag";
991
+ readonly property_reviewerTag: "@reviewerTag";
990
992
  readonly property_sampleSolution: "@sampleSolution";
991
993
  readonly property_scormSource: "@scormSource";
992
994
  readonly property_search: "@search";
@@ -1744,6 +1746,8 @@ interface BitJson {
1744
1746
  slug: string;
1745
1747
  tag: string | string[];
1746
1748
  groupTag: GroupTagJson[];
1749
+ reviewTag: string | string[];
1750
+ reviewerTag: string | string[];
1747
1751
  reductionTag: string | string[];
1748
1752
  bubbleTag: string | string[];
1749
1753
  extractorTag: string | string[];
@@ -2369,6 +2373,8 @@ interface Bit {
2369
2373
  slug?: Property;
2370
2374
  tag?: Property;
2371
2375
  groupTag?: GroupTagJson[];
2376
+ reviewTag?: Property;
2377
+ reviewerTag?: Property;
2372
2378
  reductionTag?: Property;
2373
2379
  bubbleTag?: Property;
2374
2380
  extractorTag?: Property;
@@ -3226,6 +3232,10 @@ declare const NodeType: {
3226
3232
  readonly responses: "responses";
3227
3233
  readonly responsesValue: "responsesValue";
3228
3234
  readonly revealSolutions: "revealSolutions";
3235
+ readonly reviewTag: "reviewTag";
3236
+ readonly reviewTagValue: "reviewTagValue";
3237
+ readonly reviewerTag: "reviewerTag";
3238
+ readonly reviewerTagValue: "reviewerTagValue";
3229
3239
  readonly root: "root";
3230
3240
  readonly rows: "rows";
3231
3241
  readonly rowsValue: "rowsValue";
@@ -4371,6 +4381,8 @@ declare class Builder extends BaseBuilder {
4371
4381
  slug?: string;
4372
4382
  tag?: string | string[];
4373
4383
  groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
4384
+ reviewTag?: string | string[];
4385
+ reviewerTag?: string | string[];
4374
4386
  reductionTag?: string | string[];
4375
4387
  bubbleTag?: string | string[];
4376
4388
  extractorTag?: string | string[];
@@ -1503,6 +1503,8 @@ var propertyKeys = {
1503
1503
  property_resolvedBy: "@resolvedBy",
1504
1504
  property_resolvedDate: "@resolvedDate",
1505
1505
  property_revealSolutions: "@revealSolutions",
1506
+ property_reviewTag: "@reviewTag",
1507
+ property_reviewerTag: "@reviewerTag",
1506
1508
  property_sampleSolution: "@sampleSolution",
1507
1509
  property_scormSource: "@scormSource",
1508
1510
  property_search: "@search",
@@ -4581,6 +4583,18 @@ var GROUPS = {
4581
4583
  }
4582
4584
  ]
4583
4585
  },
4586
+ {
4587
+ key: ConfigKey.property_reviewTag,
4588
+ description: "The review tag(s) for the bit",
4589
+ format: TagFormat.plainText,
4590
+ maxCount: Count.infinity
4591
+ },
4592
+ {
4593
+ key: ConfigKey.property_reviewerTag,
4594
+ description: "The reviewer tag(s) for the bit",
4595
+ format: TagFormat.plainText,
4596
+ maxCount: Count.infinity
4597
+ },
4584
4598
  {
4585
4599
  key: ConfigKey.property_reductionTag,
4586
4600
  description: "The reduction tag(s) for the bit",
@@ -13925,7 +13939,7 @@ var instance2 = new Config();
13925
13939
  // src/generated/package_info.ts
13926
13940
  var PACKAGE_INFO = {
13927
13941
  "name": "@gmb/bitmark-parser-generator",
13928
- "version": "5.33.0",
13942
+ "version": "5.34.0",
13929
13943
  "author": "Get More Brain Ltd",
13930
13944
  "license": "ISC",
13931
13945
  "description": "A bitmark parser and generator using Peggy.js"
@@ -14846,6 +14860,10 @@ var NodeType = {
14846
14860
  responses: "responses",
14847
14861
  responsesValue: "responsesValue",
14848
14862
  revealSolutions: "revealSolutions",
14863
+ reviewTag: "reviewTag",
14864
+ reviewTagValue: "reviewTagValue",
14865
+ reviewerTag: "reviewerTag",
14866
+ reviewerTagValue: "reviewerTagValue",
14849
14867
  root: "root",
14850
14868
  // bit type (root)
14851
14869
  rows: "rows",
@@ -28374,6 +28392,13 @@ var Builder = class extends BaseBuilder {
28374
28392
  slug: this.toAstProperty(bitType, ConfigKey.property_slug, data.slug, options),
28375
28393
  tag: this.toAstProperty(bitType, ConfigKey.property_tag, data.tag, options),
28376
28394
  groupTag: this.buildGroupTags(context, data.groupTag),
28395
+ reviewTag: this.toAstProperty(bitType, ConfigKey.property_reviewTag, data.reviewTag, options),
28396
+ reviewerTag: this.toAstProperty(
28397
+ bitType,
28398
+ ConfigKey.property_reviewerTag,
28399
+ data.reviewerTag,
28400
+ options
28401
+ ),
28377
28402
  reductionTag: this.toAstProperty(
28378
28403
  bitType,
28379
28404
  ConfigKey.property_reductionTag,