@bcts/envelope-pattern 1.0.0-beta.0 → 1.0.0-beta.1

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/README.md CHANGED
@@ -10,4 +10,4 @@ The pattern language is designed to be expressive yet concise, allowing you to m
10
10
 
11
11
  ## Rust Reference Implementation
12
12
 
13
- This TypeScript implementation is based on [bc-envelope-pattern-rust](https://github.com/BlockchainCommons/bc-envelope-pattern-rust) **v0.13.0** ([commit](https://github.com/BlockchainCommons/bc-envelope-pattern-rust/tree/0be775ec5c954a29f7cf842c80da36bc8be91b43)).
13
+ This TypeScript implementation is based on [bc-envelope-pattern-rust](https://github.com/BlockchainCommons/bc-envelope-pattern-rust) **v0.14.0** ([commit](https://github.com/BlockchainCommons/bc-envelope-pattern-rust/tree/44fe39832e9321445dc5d6a10b0e1f852d28f982)).
package/dist/index.cjs CHANGED
@@ -5612,7 +5612,6 @@ function registerAllFactories() {
5612
5612
  registerTaggedPatternFactory((p) => patternLeaf(leafTag(p)));
5613
5613
  registerCBORPatternFactory((p) => patternLeaf(leafCbor(p)));
5614
5614
  registerLeafStructurePatternFactory((p) => patternStructure(structureLeaf(p)));
5615
- registerSubjectPatternFactory((p) => patternStructure(structureSubject(p)));
5616
5615
  registerPredicatePatternFactory((p) => patternStructure(structurePredicate(p)));
5617
5616
  registerObjectPatternFactory((p) => patternStructure(structureObject(p)));
5618
5617
  registerAssertionsPatternFactory((p) => patternStructure(structureAssertions(p)));
@@ -5632,13 +5631,6 @@ function registerAllFactories() {
5632
5631
  toString: patternToString
5633
5632
  });
5634
5633
  registerAnyPatternFactory((p) => patternMeta(metaAny(p)));
5635
- registerAndPatternFactory((p) => patternMeta(metaAnd(p)));
5636
- registerOrPatternFactory((p) => patternMeta(metaOr(p)));
5637
- registerNotPatternFactory((p) => patternMeta(metaNot(p)));
5638
- registerCapturePatternFactory((p) => patternMeta(metaCapture(p)));
5639
- registerSearchPatternFactory((p) => patternMeta(metaSearch(p)));
5640
- registerTraversePatternFactory((p) => patternMeta(metaTraverse(p)));
5641
- registerGroupPatternFactory((p) => patternMeta(metaGroup(p)));
5642
5634
  }
5643
5635
  registerAllFactories();
5644
5636
  registerVMPatternFunctions(patternPathsWithCaptures, patternMatches, patternPaths);