@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/index.cjs CHANGED
@@ -514,6 +514,8 @@ var BitType = {
514
514
  pageSectionFolder: "page-section-folder",
515
515
  pageShopInShop: "page-shop-in-shop",
516
516
  pageSpecial: "page-special",
517
+ pageEnd: "page-end",
518
+ pageStart: "page-start",
517
519
  pageSubpage: "page-subpage",
518
520
  pageSubscribe: "page-subscribe",
519
521
  parameters: "parameters",
@@ -1566,6 +1568,8 @@ var propertyKeys = {
1566
1568
  property_resolvedBy: "@resolvedBy",
1567
1569
  property_resolvedDate: "@resolvedDate",
1568
1570
  property_revealSolutions: "@revealSolutions",
1571
+ property_reviewTag: "@reviewTag",
1572
+ property_reviewerTag: "@reviewerTag",
1569
1573
  property_sampleSolution: "@sampleSolution",
1570
1574
  property_scormSource: "@scormSource",
1571
1575
  property_search: "@search",
@@ -4644,6 +4648,18 @@ var GROUPS = {
4644
4648
  }
4645
4649
  ]
4646
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
+ },
4647
4663
  {
4648
4664
  key: ConfigKey.property_reductionTag,
4649
4665
  description: "The reduction tag(s) for the bit",
@@ -12032,6 +12048,16 @@ var BITS = {
12032
12048
  baseBitType: BitType.pageSubpage,
12033
12049
  description: "Page special bit, used to create special pages in articles or books"
12034
12050
  },
12051
+ [BitType.pageEnd]: {
12052
+ since: "5.33.0",
12053
+ baseBitType: BitType.article,
12054
+ description: "Page end bit, used to mark the end of a page section in articles or books"
12055
+ },
12056
+ [BitType.pageStart]: {
12057
+ since: "5.33.0",
12058
+ baseBitType: BitType.article,
12059
+ description: "Page start bit, used to mark the start of a page section in articles or books"
12060
+ },
12035
12061
  [BitType.pagePerson]: {
12036
12062
  since: "1.5.16",
12037
12063
  baseBitType: BitType._standard,
@@ -13978,7 +14004,7 @@ var instance2 = new Config();
13978
14004
  // src/generated/package_info.ts
13979
14005
  var PACKAGE_INFO = {
13980
14006
  "name": "@gmb/bitmark-parser-generator",
13981
- "version": "5.32.0",
14007
+ "version": "5.34.0",
13982
14008
  "author": "Get More Brain Ltd",
13983
14009
  "license": "ISC",
13984
14010
  "description": "A bitmark parser and generator using Peggy.js"
@@ -14899,6 +14925,10 @@ var NodeType = {
14899
14925
  responses: "responses",
14900
14926
  responsesValue: "responsesValue",
14901
14927
  revealSolutions: "revealSolutions",
14928
+ reviewTag: "reviewTag",
14929
+ reviewTagValue: "reviewTagValue",
14930
+ reviewerTag: "reviewerTag",
14931
+ reviewerTagValue: "reviewerTagValue",
14902
14932
  root: "root",
14903
14933
  // bit type (root)
14904
14934
  rows: "rows",
@@ -28427,6 +28457,13 @@ var Builder = class extends BaseBuilder {
28427
28457
  slug: this.toAstProperty(bitType, ConfigKey.property_slug, data.slug, options),
28428
28458
  tag: this.toAstProperty(bitType, ConfigKey.property_tag, data.tag, options),
28429
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
+ ),
28430
28467
  reductionTag: this.toAstProperty(
28431
28468
  bitType,
28432
28469
  ConfigKey.property_reductionTag,