@powerhousedao/ph-cli 6.0.0-dev.84 → 6.0.0-dev.88

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/src/cli.js CHANGED
@@ -330103,6 +330103,11 @@ class CollectionMembershipCache {
330103
330103
  constructor(operationIndex) {
330104
330104
  this.operationIndex = operationIndex;
330105
330105
  }
330106
+ withScopedIndex(operationIndex) {
330107
+ const scoped = new CollectionMembershipCache(operationIndex);
330108
+ scoped.cache = this.cache;
330109
+ return scoped;
330110
+ }
330106
330111
  async getCollectionsForDocuments(documentIds) {
330107
330112
  const result = {};
330108
330113
  const missing = [];