@fluidframework/container-runtime 0.59.3000-66610 → 0.59.3001

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.
@@ -474,7 +474,7 @@ export class ContainerRuntime extends TypedEventEmitter {
474
474
  this.summarizerNode.loadBaseSummaryWithoutDifferential(this.context.baseSnapshot);
475
475
  }
476
476
  this.dataStores = new DataStores(getSummaryForDatastores(context.baseSnapshot, metadata), this, (attachMsg) => this.submit(ContainerMessageType.Attach, attachMsg), (id, createParam) => (summarizeInternal, getGCDataFn, getBaseGCDetailsFn) => this.summarizerNode.createChild(summarizeInternal, id, createParam, undefined, getGCDataFn, getBaseGCDetailsFn), (id) => this.summarizerNode.deleteChild(id), this.mc.logger, async () => this.garbageCollector.getBaseGCDetails(), (path, timestampMs, packagePath) => this.garbageCollector.nodeUpdated(path, "Changed", timestampMs, packagePath), new Map(dataStoreAliasMap), this.garbageCollector.writeDataAtRoot);
477
- this.blobManager = new BlobManager(this.handleContext, blobManagerSnapshot, () => this.storage, (blobId) => this.submit(ContainerMessageType.BlobAttach, undefined, undefined, { blobId }), this, this.logger);
477
+ this.blobManager = new BlobManager(this.handleContext, blobManagerSnapshot, () => this.storage, (blobId) => this.submit(ContainerMessageType.BlobAttach, undefined, undefined, { blobId }), (blobPath) => this.garbageCollector.nodeUpdated(blobPath, "Loaded"), this, this.logger);
478
478
  this.scheduleManager = new ScheduleManager(context.deltaManager, this, ChildLogger.create(this.logger, "ScheduleManager"));
479
479
  this.deltaSender = this.deltaManager;
480
480
  this.pendingStateManager = new PendingStateManager(this, async (type, content) => this.applyStashedOp(type, content), this._flushMode, context.pendingLocalState);
@@ -739,7 +739,8 @@ export class ContainerRuntime extends TypedEventEmitter {
739
739
  this.removeAllListeners();
740
740
  }
741
741
  get IFluidTokenProvider() {
742
- if (this.options && this.options.intelligence) {
742
+ var _a;
743
+ if ((_a = this.options) === null || _a === void 0 ? void 0 : _a.intelligence) {
743
744
  // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
744
745
  return {
745
746
  intelligence: this.options.intelligence,