@mindexec/cli 0.2.286 → 0.2.288

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.
Files changed (17) hide show
  1. package/package.json +1 -1
  2. package/server.js +1 -1
  3. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +73 -9
  4. package/wwwroot/_framework/MindExecution.Core.y7ffihhajj.dll +0 -0
  5. package/wwwroot/_framework/{MindExecution.Kernel.n80deqs1y7.dll → MindExecution.Kernel.l5y3qroa7p.dll} +0 -0
  6. package/wwwroot/_framework/{MindExecution.Plugins.Admin.m5d94977um.dll → MindExecution.Plugins.Admin.uuf238xa0h.dll} +0 -0
  7. package/wwwroot/_framework/{MindExecution.Plugins.Business.ntqdn1hta3.dll → MindExecution.Plugins.Business.nyr3v25v48.dll} +0 -0
  8. package/wwwroot/_framework/{MindExecution.Plugins.Concept.cjp3ty08t0.dll → MindExecution.Plugins.Concept.d70e7soqnf.dll} +0 -0
  9. package/wwwroot/_framework/{MindExecution.Plugins.Directory.k4hx7g84qs.dll → MindExecution.Plugins.Directory.ju87t8h3zs.dll} +0 -0
  10. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.w9msy01tp9.dll → MindExecution.Plugins.PlanMaster.xg4mkokjr1.dll} +0 -0
  11. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.iob4817wtf.dll → MindExecution.Plugins.YouTube.c631ocfbcp.dll} +0 -0
  12. package/wwwroot/_framework/{MindExecution.Shared.lvqhaceogf.dll → MindExecution.Shared.km4gh9ya5b.dll} +0 -0
  13. package/wwwroot/_framework/{MindExecution.Web.f4nix6qubf.dll → MindExecution.Web.lam9b8vdjf.dll} +0 -0
  14. package/wwwroot/_framework/blazor.boot.json +21 -21
  15. package/wwwroot/service-worker-assets.js +23 -23
  16. package/wwwroot/service-worker.js +1 -1
  17. package/wwwroot/_framework/MindExecution.Core.xsad4wu36e.dll +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.286",
3
+ "version": "0.2.288",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
package/server.js CHANGED
@@ -6122,7 +6122,7 @@ function isRemoteRegistryTargetExpired(target) {
6122
6122
  }
6123
6123
 
6124
6124
  function isRecoverableInactiveRemoteRegistryTarget(target) {
6125
- if (!target || target.active === true || !isRemoteRegistryTargetExpired(target)) {
6125
+ if (!target || (target.active === true && !isRemoteRegistryTargetExpired(target))) {
6126
6126
  return false;
6127
6127
  }
6128
6128
 
@@ -5,7 +5,7 @@
5
5
  const DEBUG = false;
6
6
  const FPS_DEBUG = false;
7
7
  const FRAME_PERF_DEBUG = false;
8
- const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v733';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v734';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -4099,18 +4099,80 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4099
4099
 
4100
4100
  const roundedX = Math.round(nextX * 2) / 2;
4101
4101
  const roundedY = Math.round(nextY * 2) / 2;
4102
- if (this._lastSnapGridClientX === roundedX &&
4103
- this._lastSnapGridClientY === roundedY) {
4102
+ const previousX = this._lastSnapGridClientX;
4103
+ const previousY = this._lastSnapGridClientY;
4104
+ this._lastSnapGridClientX = roundedX;
4105
+ this._lastSnapGridClientY = roundedY;
4106
+
4107
+ const fallbackGrid = Math.max(1, Number(this.GRID_SIZE || 10));
4108
+ let pointerSnapKey = `screen:${Math.round(roundedX / fallbackGrid)}|${Math.round(roundedY / fallbackGrid)}`;
4109
+ if (this.container && this.camera?.isPerspectiveCamera) {
4110
+ const viewportMetrics = getCachedViewportMetrics(this);
4111
+ const width = Math.max(1, Number(viewportMetrics.width || 0));
4112
+ const height = Math.max(1, Number(viewportMetrics.height || 0));
4113
+ const left = Number(viewportMetrics.left || 0);
4114
+ const top = Number(viewportMetrics.top || 0);
4115
+ const centerX = Math.max(0, Math.min(width, roundedX - left));
4116
+ const centerY = Math.max(0, Math.min(height, roundedY - top));
4117
+ const snappedCenter = this._getLocalSnapGridSnappedScreenCenter(centerX, centerY, width, height, this.camera);
4118
+ pointerSnapKey = snappedCenter.snapKey || pointerSnapKey;
4119
+ }
4120
+
4121
+ if (this._lastLocalSnapGridPointerSnapKey === pointerSnapKey) {
4104
4122
  return false;
4105
4123
  }
4106
4124
 
4107
- this._lastSnapGridClientX = roundedX;
4108
- this._lastSnapGridClientY = roundedY;
4125
+ this._lastLocalSnapGridPointerSnapKey = pointerSnapKey;
4109
4126
  this._localSnapGridPointerRevision = Math.max(0, Number(this._localSnapGridPointerRevision || 0)) + 1;
4110
4127
  this._lastLocalSnapGridTransformKey = '';
4128
+ if (previousX !== roundedX || previousY !== roundedY) {
4129
+ this._lastLocalSnapGridClientMovedAt =
4130
+ typeof performance !== 'undefined' && typeof performance.now === 'function'
4131
+ ? performance.now()
4132
+ : Date.now();
4133
+ }
4111
4134
  return true;
4112
4135
  }
4113
4136
 
4137
+ _getLocalSnapGridSnappedScreenCenter(rawCenterX, rawCenterY, width, height, camera = null) {
4138
+ const safeWidth = Math.max(1, Number(width || 0));
4139
+ const safeHeight = Math.max(1, Number(height || 0));
4140
+ const fallbackGrid = Math.max(1, Number(this.GRID_SIZE || 10));
4141
+ const fallback = {
4142
+ centerX: Math.max(0, Math.min(safeWidth, Number(rawCenterX || 0))),
4143
+ centerY: Math.max(0, Math.min(safeHeight, Number(rawCenterY || 0))),
4144
+ snapKey: `screen:${Math.round(Number(rawCenterX || 0) / fallbackGrid)}|${Math.round(Number(rawCenterY || 0) / fallbackGrid)}`
4145
+ };
4146
+ const activeCamera = camera || this.camera;
4147
+ if (!activeCamera?.isPerspectiveCamera) {
4148
+ return fallback;
4149
+ }
4150
+
4151
+ const cameraZ = Math.max(1, Number(activeCamera.position?.z || 1));
4152
+ const vfov = (Number(activeCamera.fov || 45) * Math.PI) / 180;
4153
+ const viewHeight = 2 * Math.tan(vfov / 2) * cameraZ;
4154
+ const viewWidth = viewHeight * Math.max(0.1, Number(activeCamera.aspect || (safeWidth / safeHeight) || 1));
4155
+ if (viewWidth <= 0 || viewHeight <= 0) {
4156
+ return fallback;
4157
+ }
4158
+
4159
+ const cameraX = Number(activeCamera.position?.x || 0);
4160
+ const cameraY = Number(activeCamera.position?.y || 0);
4161
+ const worldX = cameraX + ((fallback.centerX / safeWidth) - 0.5) * viewWidth;
4162
+ const worldY = cameraY + (0.5 - (fallback.centerY / safeHeight)) * viewHeight;
4163
+ const grid = fallbackGrid;
4164
+ const snappedWorldX = Math.round(worldX / grid) * grid;
4165
+ const snappedWorldY = Math.round(worldY / grid) * grid;
4166
+ const snappedCenterX = (((snappedWorldX - cameraX) / viewWidth) + 0.5) * safeWidth;
4167
+ const snappedCenterY = (0.5 - ((snappedWorldY - cameraY) / viewHeight)) * safeHeight;
4168
+
4169
+ return {
4170
+ centerX: Math.max(0, Math.min(safeWidth, snappedCenterX)),
4171
+ centerY: Math.max(0, Math.min(safeHeight, snappedCenterY)),
4172
+ snapKey: `world:${Math.round(snappedWorldX / grid)}|${Math.round(snappedWorldY / grid)}`
4173
+ };
4174
+ }
4175
+
4114
4176
  _ensureLocalSnapGridLayer() {
4115
4177
  if (!this.container || typeof document === 'undefined') {
4116
4178
  return null;
@@ -4388,8 +4450,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4388
4450
  const centerY = hasPointer
4389
4451
  ? Math.max(0, Math.min(height, Number(this._lastSnapGridClientY) - top))
4390
4452
  : height / 2;
4391
- const layerLeft = centerX - LOCAL_SNAP_GRID_RADIUS_PX;
4392
- const layerTop = centerY - LOCAL_SNAP_GRID_RADIUS_PX;
4453
+ const snappedCenter = this._getLocalSnapGridSnappedScreenCenter(centerX, centerY, width, height, this.camera);
4454
+ const layerLeft = snappedCenter.centerX - LOCAL_SNAP_GRID_RADIUS_PX;
4455
+ const layerTop = snappedCenter.centerY - LOCAL_SNAP_GRID_RADIUS_PX;
4393
4456
 
4394
4457
  if (this.isZooming === true && !!this._lastLocalSnapGridKey) {
4395
4458
  const transformKey = `${Math.round(layerLeft * 2)}|${Math.round(layerTop * 2)}`;
@@ -4497,8 +4560,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4497
4560
  const centerY = hasPointer
4498
4561
  ? Math.max(0, Math.min(height, Number(this._lastSnapGridClientY) - top))
4499
4562
  : height / 2;
4500
- const layerLeft = centerX - LOCAL_SNAP_GRID_RADIUS_PX;
4501
- const layerTop = centerY - LOCAL_SNAP_GRID_RADIUS_PX;
4563
+ const snappedCenter = this._getLocalSnapGridSnappedScreenCenter(centerX, centerY, width, height, this.camera);
4564
+ const layerLeft = snappedCenter.centerX - LOCAL_SNAP_GRID_RADIUS_PX;
4565
+ const layerTop = snappedCenter.centerY - LOCAL_SNAP_GRID_RADIUS_PX;
4502
4566
  const transformKey = `${Math.round(layerLeft * 2)}|${Math.round(layerTop * 2)}`;
4503
4567
 
4504
4568
  if (transformKey !== this._lastLocalSnapGridTransformKey) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-qAJZS2gJhj1UEBPo3ENSQdIHVUddkYUsKaosccaB7nY=",
4
+ "hash": "sha256-xWHhfNfn3/NFVQ8lKCNPMeOhJwjh38wF9ezQURomDfE=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -123,16 +123,16 @@
123
123
  "System.brmz7yk5qh.dll": "System.dll",
124
124
  "netstandard.yvr3prsx0x.dll": "netstandard.dll",
125
125
  "System.Private.CoreLib.c1dbswx1b2.dll": "System.Private.CoreLib.dll",
126
- "MindExecution.Core.xsad4wu36e.dll": "MindExecution.Core.dll",
127
- "MindExecution.Kernel.n80deqs1y7.dll": "MindExecution.Kernel.dll",
128
- "MindExecution.Plugins.Admin.m5d94977um.dll": "MindExecution.Plugins.Admin.dll",
129
- "MindExecution.Plugins.Business.ntqdn1hta3.dll": "MindExecution.Plugins.Business.dll",
130
- "MindExecution.Plugins.Concept.cjp3ty08t0.dll": "MindExecution.Plugins.Concept.dll",
131
- "MindExecution.Plugins.Directory.k4hx7g84qs.dll": "MindExecution.Plugins.Directory.dll",
132
- "MindExecution.Plugins.PlanMaster.w9msy01tp9.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.iob4817wtf.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.lvqhaceogf.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.f4nix6qubf.dll": "MindExecution.Web.dll",
126
+ "MindExecution.Core.y7ffihhajj.dll": "MindExecution.Core.dll",
127
+ "MindExecution.Kernel.l5y3qroa7p.dll": "MindExecution.Kernel.dll",
128
+ "MindExecution.Plugins.Admin.uuf238xa0h.dll": "MindExecution.Plugins.Admin.dll",
129
+ "MindExecution.Plugins.Business.nyr3v25v48.dll": "MindExecution.Plugins.Business.dll",
130
+ "MindExecution.Plugins.Concept.d70e7soqnf.dll": "MindExecution.Plugins.Concept.dll",
131
+ "MindExecution.Plugins.Directory.ju87t8h3zs.dll": "MindExecution.Plugins.Directory.dll",
132
+ "MindExecution.Plugins.PlanMaster.xg4mkokjr1.dll": "MindExecution.Plugins.PlanMaster.dll",
133
+ "MindExecution.Plugins.YouTube.c631ocfbcp.dll": "MindExecution.Plugins.YouTube.dll",
134
+ "MindExecution.Shared.km4gh9ya5b.dll": "MindExecution.Shared.dll",
135
+ "MindExecution.Web.lam9b8vdjf.dll": "MindExecution.Web.dll",
136
136
  "dotnet.js": "dotnet.js",
137
137
  "dotnet.native.qc8g39g30v.js": "dotnet.native.js",
138
138
  "dotnet.native.boem75ye5i.wasm": "dotnet.native.wasm",
@@ -278,18 +278,18 @@
278
278
  "System.Xml.XDocument.sn51jas17n.dll": "sha256-GNI2kFgFmPTwzuzwUn8gxK+AzGLUWRJFdg9JzIbrybQ=",
279
279
  "System.brmz7yk5qh.dll": "sha256-CfM2miyj1KHApFmqMdLYWio3S/jrdON2pW9Xr2nTwlo=",
280
280
  "netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
281
- "MindExecution.Core.xsad4wu36e.dll": "sha256-D+Se8CCcof7akYxREkOQQzh0cTT/x7EqXhi+aNBo9mA=",
282
- "MindExecution.Kernel.n80deqs1y7.dll": "sha256-d7gGGpxiQNphs0at1uO1fAmYe28MFNVgGTEqxoM2uws=",
283
- "MindExecution.Plugins.Business.ntqdn1hta3.dll": "sha256-9cuauEjTbTWCFC5tZJZtf1uKn6XTO3KcM8nl+9JkIDc=",
284
- "MindExecution.Plugins.Concept.cjp3ty08t0.dll": "sha256-+FZtYvFT7aqaThaaATz4C7YmMZEDy3z8i2JcplL+fJs=",
285
- "MindExecution.Plugins.PlanMaster.w9msy01tp9.dll": "sha256-xBGl/hx1xJ1XCAy1wfZJv0/LSsm825PrufniNvTFpdk=",
286
- "MindExecution.Shared.lvqhaceogf.dll": "sha256-UXxhTxZwmtsqxr4Tf3DmjWKLbihsP91u88dZhsubRQU=",
287
- "MindExecution.Web.f4nix6qubf.dll": "sha256-j/4kL30Kb8VYCRXGcr0Ireb4S3IDzFuKmP9oZxdmMVI="
281
+ "MindExecution.Core.y7ffihhajj.dll": "sha256-zsCKUWBWzDly1h5/vMtqVRb7PeG4lgfIZbQuJFyY1QU=",
282
+ "MindExecution.Kernel.l5y3qroa7p.dll": "sha256-V4pQTxua0lGWpdsFpo7bHr6rPFWZeofry7e9On+OJmo=",
283
+ "MindExecution.Plugins.Business.nyr3v25v48.dll": "sha256-T4c7+fDE4TQAXAoFmHnYM+tT7RSvAM7W0VinLPoD+6U=",
284
+ "MindExecution.Plugins.Concept.d70e7soqnf.dll": "sha256-iU+GA8ky8EMgkX1HvaZnq7niGkGFADlPbbEZws5wBzs=",
285
+ "MindExecution.Plugins.PlanMaster.xg4mkokjr1.dll": "sha256-IbRqhxJiKStOUy36JNELSuIhbqNkaJNxKC9RdDtcdHM=",
286
+ "MindExecution.Shared.km4gh9ya5b.dll": "sha256-lG8xtDTFexPjilxL/kpzaW262mFdEHgt0oEPGPNZFz4=",
287
+ "MindExecution.Web.lam9b8vdjf.dll": "sha256-4+s+2+44kJjwUnoHpqPM8COug1NJCCJdFxr0ZRXzOvQ="
288
288
  },
289
289
  "lazyAssembly": {
290
- "MindExecution.Plugins.Admin.m5d94977um.dll": "sha256-Jt1vsUZkolnZk+PcV3ysNyL99SfPUVcUHwvBQ/Y+pR8=",
291
- "MindExecution.Plugins.Directory.k4hx7g84qs.dll": "sha256-DAR/VFVaR1noVv49Z1mWA5rnhP39REfl4pa9D5Mdvvk=",
292
- "MindExecution.Plugins.YouTube.iob4817wtf.dll": "sha256-IjCldqW4IxsEN2OEcaevPXQtlLBozhk7N+iRG2uKrtw="
290
+ "MindExecution.Plugins.Admin.uuf238xa0h.dll": "sha256-OrCIUack8nSWBBiZK65DlJ3YGM677RAA8cX/oJjhm5c=",
291
+ "MindExecution.Plugins.Directory.ju87t8h3zs.dll": "sha256-dapAkel5qj7fK6BiDDmvkzZL96frl8k/3yP8SDr3rMw=",
292
+ "MindExecution.Plugins.YouTube.c631ocfbcp.dll": "sha256-rMFZtm/5KmHnPJ2z3o4YhmghevxIElnnS59AgkRXjbo="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "Xn/pulp5",
2
+ "version": "ToI1beX6",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-B5uKSPKpIYDJXgbeZPzIL2gPYW/ZVLR2IZX1gnzLgyk=",
81
+ "hash": "sha256-QITE2bVrNgLnaeels2LD0jTvsuO0skzETdnVSQylZwg=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -410,44 +410,44 @@
410
410
  "url": "_framework/MimeMapping.og9ys58ylm.dll"
411
411
  },
412
412
  {
413
- "hash": "sha256-D+Se8CCcof7akYxREkOQQzh0cTT/x7EqXhi+aNBo9mA=",
414
- "url": "_framework/MindExecution.Core.xsad4wu36e.dll"
413
+ "hash": "sha256-zsCKUWBWzDly1h5/vMtqVRb7PeG4lgfIZbQuJFyY1QU=",
414
+ "url": "_framework/MindExecution.Core.y7ffihhajj.dll"
415
415
  },
416
416
  {
417
- "hash": "sha256-d7gGGpxiQNphs0at1uO1fAmYe28MFNVgGTEqxoM2uws=",
418
- "url": "_framework/MindExecution.Kernel.n80deqs1y7.dll"
417
+ "hash": "sha256-V4pQTxua0lGWpdsFpo7bHr6rPFWZeofry7e9On+OJmo=",
418
+ "url": "_framework/MindExecution.Kernel.l5y3qroa7p.dll"
419
419
  },
420
420
  {
421
- "hash": "sha256-Jt1vsUZkolnZk+PcV3ysNyL99SfPUVcUHwvBQ/Y+pR8=",
422
- "url": "_framework/MindExecution.Plugins.Admin.m5d94977um.dll"
421
+ "hash": "sha256-OrCIUack8nSWBBiZK65DlJ3YGM677RAA8cX/oJjhm5c=",
422
+ "url": "_framework/MindExecution.Plugins.Admin.uuf238xa0h.dll"
423
423
  },
424
424
  {
425
- "hash": "sha256-9cuauEjTbTWCFC5tZJZtf1uKn6XTO3KcM8nl+9JkIDc=",
426
- "url": "_framework/MindExecution.Plugins.Business.ntqdn1hta3.dll"
425
+ "hash": "sha256-T4c7+fDE4TQAXAoFmHnYM+tT7RSvAM7W0VinLPoD+6U=",
426
+ "url": "_framework/MindExecution.Plugins.Business.nyr3v25v48.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-+FZtYvFT7aqaThaaATz4C7YmMZEDy3z8i2JcplL+fJs=",
430
- "url": "_framework/MindExecution.Plugins.Concept.cjp3ty08t0.dll"
429
+ "hash": "sha256-iU+GA8ky8EMgkX1HvaZnq7niGkGFADlPbbEZws5wBzs=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.d70e7soqnf.dll"
431
431
  },
432
432
  {
433
- "hash": "sha256-DAR/VFVaR1noVv49Z1mWA5rnhP39REfl4pa9D5Mdvvk=",
434
- "url": "_framework/MindExecution.Plugins.Directory.k4hx7g84qs.dll"
433
+ "hash": "sha256-dapAkel5qj7fK6BiDDmvkzZL96frl8k/3yP8SDr3rMw=",
434
+ "url": "_framework/MindExecution.Plugins.Directory.ju87t8h3zs.dll"
435
435
  },
436
436
  {
437
- "hash": "sha256-xBGl/hx1xJ1XCAy1wfZJv0/LSsm825PrufniNvTFpdk=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.w9msy01tp9.dll"
437
+ "hash": "sha256-IbRqhxJiKStOUy36JNELSuIhbqNkaJNxKC9RdDtcdHM=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.xg4mkokjr1.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-IjCldqW4IxsEN2OEcaevPXQtlLBozhk7N+iRG2uKrtw=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.iob4817wtf.dll"
441
+ "hash": "sha256-rMFZtm/5KmHnPJ2z3o4YhmghevxIElnnS59AgkRXjbo=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.c631ocfbcp.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-UXxhTxZwmtsqxr4Tf3DmjWKLbihsP91u88dZhsubRQU=",
446
- "url": "_framework/MindExecution.Shared.lvqhaceogf.dll"
445
+ "hash": "sha256-lG8xtDTFexPjilxL/kpzaW262mFdEHgt0oEPGPNZFz4=",
446
+ "url": "_framework/MindExecution.Shared.km4gh9ya5b.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-j/4kL30Kb8VYCRXGcr0Ireb4S3IDzFuKmP9oZxdmMVI=",
450
- "url": "_framework/MindExecution.Web.f4nix6qubf.dll"
449
+ "hash": "sha256-4+s+2+44kJjwUnoHpqPM8COug1NJCCJdFxr0ZRXzOvQ=",
450
+ "url": "_framework/MindExecution.Web.lam9b8vdjf.dll"
451
451
  },
452
452
  {
453
453
  "hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
@@ -770,7 +770,7 @@
770
770
  "url": "_framework/Websocket.Client.vapounvmnl.dll"
771
771
  },
772
772
  {
773
- "hash": "sha256-YBSr20c7qRbSof/FmV2prtF/F52GFhVGyW27i1MjBis=",
773
+ "hash": "sha256-+L8b48+RY+B5jUKR3TCnYLnKbBoKD2Dfd2snIzNSaTs=",
774
774
  "url": "_framework/blazor.boot.json"
775
775
  },
776
776
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: Xn/pulp5 */
1
+ /* Manifest version: ToI1beX6 */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4