@mindexec/cli 0.2.173 → 0.2.174

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 (18) hide show
  1. package/package.json +1 -1
  2. package/server.js +23 -1
  3. package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +24 -0
  4. package/wwwroot/_framework/MindExecution.Core.2ftvuvqu67.dll +0 -0
  5. package/wwwroot/_framework/{MindExecution.Kernel.n5peonkatw.dll → MindExecution.Kernel.cmj7iee8oy.dll} +0 -0
  6. package/wwwroot/_framework/{MindExecution.Plugins.Admin.5zyeb2m709.dll → MindExecution.Plugins.Admin.5yrzrhtmmm.dll} +0 -0
  7. package/wwwroot/_framework/{MindExecution.Plugins.Business.qf0u584aql.dll → MindExecution.Plugins.Business.a3bmsg1dnh.dll} +0 -0
  8. package/wwwroot/_framework/{MindExecution.Plugins.Concept.dol9cxm11l.dll → MindExecution.Plugins.Concept.f9homr6n4i.dll} +0 -0
  9. package/wwwroot/_framework/{MindExecution.Plugins.Directory.1argo44nph.dll → MindExecution.Plugins.Directory.m7ysyihlbt.dll} +0 -0
  10. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll → MindExecution.Plugins.PlanMaster.8wjvup3b7p.dll} +0 -0
  11. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.wr4ic92azb.dll → MindExecution.Plugins.YouTube.17ghd27wl4.dll} +0 -0
  12. package/wwwroot/_framework/{MindExecution.Shared.t8xvnypbv2.dll → MindExecution.Shared.l8qcfxyzrh.dll} +0 -0
  13. package/wwwroot/_framework/{MindExecution.Web.m8joypnkws.dll → MindExecution.Web.2k7mg1sk3c.dll} +0 -0
  14. package/wwwroot/_framework/blazor.boot.json +21 -21
  15. package/wwwroot/index.html +6 -6
  16. package/wwwroot/service-worker-assets.js +24 -24
  17. package/wwwroot/service-worker.js +1 -1
  18. package/wwwroot/_framework/MindExecution.Core.te2oaei5ec.dll +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.173",
3
+ "version": "0.2.174",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
package/server.js CHANGED
@@ -3350,6 +3350,9 @@ const remoteHub = createRemoteHub({
3350
3350
  const REMOTE_AGENT_STDIO_TAIL_CHARS = 12000;
3351
3351
  const REMOTE_AGENT_EARLY_EXIT_MS = 1200;
3352
3352
  const REMOTE_AGENT_READY_TIMEOUT_MS = 5000;
3353
+ const REMOTE_AGENT_READY_STALE_MS = Math.max(
3354
+ REMOTE_AGENT_READY_TIMEOUT_MS + 1000,
3355
+ Number(process.env.MINDEXEC_REMOTE_AGENT_READY_STALE_MS || 8000) || 8000);
3353
3356
  const REMOTE_AGENT_DEFAULT_ENGINE = 'auto';
3354
3357
  const REMOTE_AGENT_SYNC_REPORT_LOG_REPEAT_MS = 30000;
3355
3358
  const REMOTE_AGENT_SYNC_REPORT_WAKE_MS = Math.max(500, Number(process.env.MINDEXEC_REMOTE_AGENT_SYNC_REPORT_WAKE_MS || 1500) || 1500);
@@ -3607,6 +3610,10 @@ function shouldRestartRemoteAgentForTarget(managers = [], leaseId = '') {
3607
3610
  return true;
3608
3611
  }
3609
3612
 
3613
+ if (isRemoteAgentRunningButNotReadyStale()) {
3614
+ return true;
3615
+ }
3616
+
3610
3617
  return isRemoteAgentRegistryOwned()
3611
3618
  && isRemoteAgentSyncReportReconnectSignal(remoteAgentSyncReportState)
3612
3619
  && isRemoteAgentSyncReportForManagers(remoteAgentSyncReportState, managers, leaseId);
@@ -4047,6 +4054,17 @@ function isRemoteAgentProcessRunning() {
4047
4054
  && !proc.killed;
4048
4055
  }
4049
4056
 
4057
+ function getRemoteAgentRunningAgeMs(agent = remoteAgentState) {
4058
+ const startedAt = Date.parse(agent?.startedAt || agent?.updatedAt || '');
4059
+ return Number.isFinite(startedAt) ? Math.max(0, Date.now() - startedAt) : 0;
4060
+ }
4061
+
4062
+ function isRemoteAgentRunningButNotReadyStale() {
4063
+ return isRemoteAgentRegistryOwned()
4064
+ && remoteAgentState.ready !== true
4065
+ && getRemoteAgentRunningAgeMs(remoteAgentState) >= REMOTE_AGENT_READY_STALE_MS;
4066
+ }
4067
+
4050
4068
  function isRemoteAgentRegistryOwned() {
4051
4069
  return isRemoteAgentProcessRunning()
4052
4070
  && /registry/i.test(String(remoteAgentState.source || ''));
@@ -4445,7 +4463,11 @@ async function startRemoteAgentConnection(options = {}) {
4445
4463
  if (isRemoteAgentProcessRunning()
4446
4464
  && activeConnectionKeys.has(remoteAgentState.connectionKey)) {
4447
4465
  if (shouldRestartRemoteAgentForTarget(managers, leaseId)) {
4448
- const reason = remoteAgentState.reconnectReason || remoteAgentState.lastError || 'registry-agent-stale';
4466
+ const reason = remoteAgentState.reconnectReason
4467
+ || remoteAgentState.lastError
4468
+ || (isRemoteAgentRunningButNotReadyStale()
4469
+ ? 'registry-agent-not-ready'
4470
+ : 'registry-agent-stale');
4449
4471
  logWarn(
4450
4472
  'remote',
4451
4473
  `managed RemoteAgent restarting stale registry process ${formatKeyValue('manager', remoteAgentState.manager || managers[0])} ${formatKeyValue('reason', reason)}`);
@@ -456,6 +456,14 @@ body.is-panning .map-node-memo__icon-popover {
456
456
  letter-spacing: 0;
457
457
  }
458
458
 
459
+ .mindcanvas-toolbar-menu__subtitle {
460
+ margin: -1px 2px 8px;
461
+ color: #64748b;
462
+ font-size: 11px;
463
+ font-weight: 620;
464
+ line-height: 1.35;
465
+ }
466
+
459
467
  .mindcanvas-toolbar-menu__format-list {
460
468
  display: grid;
461
469
  grid-template-columns: repeat(3, minmax(0, 1fr));
@@ -2766,6 +2774,22 @@ body.mindcanvas-is-dense .css3d-resolution-wrapper.node-type-templatelauncher.se
2766
2774
  pointer-events: auto;
2767
2775
  touch-action: none;
2768
2776
  opacity: 0;
2777
+ border: 1px solid rgba(37, 99, 235, 0.38);
2778
+ background: rgba(255, 255, 255, 0.82);
2779
+ box-shadow: 0 2px 7px rgba(37, 99, 235, 0.12);
2780
+ transition: opacity 120ms ease, background 120ms ease, border-color 120ms ease;
2781
+ }
2782
+
2783
+ .css3d-resolution-wrapper.selected .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle,
2784
+ .map-node-template-card.map-node-remote-fleet:hover .remote-fleet-resize-handle,
2785
+ .map-node-template-card.map-node-remote-fleet:focus-within .remote-fleet-resize-handle {
2786
+ opacity: 0.78;
2787
+ }
2788
+
2789
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle:hover {
2790
+ opacity: 1;
2791
+ border-color: rgba(37, 99, 235, 0.72);
2792
+ background: rgba(239, 246, 255, 0.96);
2769
2793
  }
2770
2794
 
2771
2795
  .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.nw,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-TgvCjZ1dqCGRJxQ8io7+BgHhAWdNWEvDamL5lrXcC0g=",
4
+ "hash": "sha256-PO0qRV/C0SCkvzqZkkY4WN4RjSGitnePoKjU1GUYI9M=",
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.te2oaei5ec.dll": "MindExecution.Core.dll",
127
- "MindExecution.Kernel.n5peonkatw.dll": "MindExecution.Kernel.dll",
128
- "MindExecution.Plugins.Admin.5zyeb2m709.dll": "MindExecution.Plugins.Admin.dll",
129
- "MindExecution.Plugins.Business.qf0u584aql.dll": "MindExecution.Plugins.Business.dll",
130
- "MindExecution.Plugins.Concept.dol9cxm11l.dll": "MindExecution.Plugins.Concept.dll",
131
- "MindExecution.Plugins.Directory.1argo44nph.dll": "MindExecution.Plugins.Directory.dll",
132
- "MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.wr4ic92azb.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.t8xvnypbv2.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.m8joypnkws.dll": "MindExecution.Web.dll",
126
+ "MindExecution.Core.2ftvuvqu67.dll": "MindExecution.Core.dll",
127
+ "MindExecution.Kernel.cmj7iee8oy.dll": "MindExecution.Kernel.dll",
128
+ "MindExecution.Plugins.Admin.5yrzrhtmmm.dll": "MindExecution.Plugins.Admin.dll",
129
+ "MindExecution.Plugins.Business.a3bmsg1dnh.dll": "MindExecution.Plugins.Business.dll",
130
+ "MindExecution.Plugins.Concept.f9homr6n4i.dll": "MindExecution.Plugins.Concept.dll",
131
+ "MindExecution.Plugins.Directory.m7ysyihlbt.dll": "MindExecution.Plugins.Directory.dll",
132
+ "MindExecution.Plugins.PlanMaster.8wjvup3b7p.dll": "MindExecution.Plugins.PlanMaster.dll",
133
+ "MindExecution.Plugins.YouTube.17ghd27wl4.dll": "MindExecution.Plugins.YouTube.dll",
134
+ "MindExecution.Shared.l8qcfxyzrh.dll": "MindExecution.Shared.dll",
135
+ "MindExecution.Web.2k7mg1sk3c.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.te2oaei5ec.dll": "sha256-yzvF/UwfBMiJb2zQvlW0HSNU9VJeFPsgsB40BszINvc=",
282
- "MindExecution.Kernel.n5peonkatw.dll": "sha256-JfXgzqcnjRbW+XlMja53/jDG+/10sNVp+2V4F8w9s+Q=",
283
- "MindExecution.Plugins.Concept.dol9cxm11l.dll": "sha256-/SUIEG5MZb4+puDsZDDWw6hfS4PONtwIzE1h2aiQIPc=",
284
- "MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll": "sha256-C6A2SvumFM2lEygQcugCNBnUS5cyLMARvLTKpvET4K0=",
285
- "MindExecution.Shared.t8xvnypbv2.dll": "sha256-87Z1nJZ+TMTxIUmG78ic/qVGB0GvCTiAvNmoIcg8kNY=",
286
- "MindExecution.Web.m8joypnkws.dll": "sha256-Zk0KZ23Oeosh0KXUoUXS6GFzT30CaG1L9L2GZqtETR4="
281
+ "MindExecution.Core.2ftvuvqu67.dll": "sha256-roAm0R9R5EcvDmkddrRfPBxzes/NOMAywwP1kFGVHvM=",
282
+ "MindExecution.Kernel.cmj7iee8oy.dll": "sha256-FIkseVYemh0/JXJjh3ylkXh1MdTOoIke4SAFlsdI/3E=",
283
+ "MindExecution.Plugins.Concept.f9homr6n4i.dll": "sha256-Y6+S8b90AT5bLANz/TFdYE4F9Ch3+mELZyaeamp2gXo=",
284
+ "MindExecution.Plugins.PlanMaster.8wjvup3b7p.dll": "sha256-iLfp4RHpNuzU11GA0tPbNx8dv5SPe7rA/fwkJBirgkU=",
285
+ "MindExecution.Shared.l8qcfxyzrh.dll": "sha256-1YLqE/8OfihJWNS2fvZMe2G21q5gfMtz0HEq2yzqgxc=",
286
+ "MindExecution.Web.2k7mg1sk3c.dll": "sha256-wkOKwT98ZcpOu8xkmP7nvXCNnaH0i0DoioXyjNBhQ94="
287
287
  },
288
288
  "lazyAssembly": {
289
- "MindExecution.Plugins.Admin.5zyeb2m709.dll": "sha256-kfvMS18tjQsoBT/nL40x6HiLaNM3Ls5G71Fk4skXtLg=",
290
- "MindExecution.Plugins.Business.qf0u584aql.dll": "sha256-tmIjZsRdM+ZZmXS7a8QWtO4F4uQnzlF0LaMox4tyS0o=",
291
- "MindExecution.Plugins.Directory.1argo44nph.dll": "sha256-GZZuAT3WZd9wDjQd+H8f6V9R2UYeLl/VOZxl9BnQVO0=",
292
- "MindExecution.Plugins.YouTube.wr4ic92azb.dll": "sha256-rNhLCFWuy8MyuyPOFJo03MHWrULpJe4pzQTPYu/mqbg="
289
+ "MindExecution.Plugins.Admin.5yrzrhtmmm.dll": "sha256-Padus/RMWHdWsMVmnTLAfPB0wwRhGx5hGfEYfDbjEvg=",
290
+ "MindExecution.Plugins.Business.a3bmsg1dnh.dll": "sha256-pg1rtZgWTHpigzwMuI6jMBjEyQA8EeCfjdkKJY0BYos=",
291
+ "MindExecution.Plugins.Directory.m7ysyihlbt.dll": "sha256-zim6x3zNF7DoFE2KXc1CLnsJ46NvM5s8VAZMdq/7fZY=",
292
+ "MindExecution.Plugins.YouTube.17ghd27wl4.dll": "sha256-w65qTL5GeBT8ecV4KnEXGD5NMUcgE4iSAlCi/i4YYkU="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -4,11 +4,11 @@
4
4
  <head>
5
5
  <meta charset="utf-8" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>MindExec | Turn ideas into revenue execution</title>
8
- <meta name="description" content="MindExec is an AI execution canvas for solo builders who want to turn notes, research, assets, and repeatable Skills into practical business execution." />
7
+ <title>MindExec | Business Execution OS for solo builders</title>
8
+ <meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-mdm-resize-reconnect-v603" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-mdm-resize-reconnect-v603" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-business-execution-os-v604" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-business-execution-os-v604" />
12
12
  <!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
13
13
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
14
14
  <!-- ?꿎뼯??-->
@@ -97,7 +97,7 @@
97
97
  <article class="app-static-fallback" id="app-static-fallback">
98
98
  <div class="app-static-fallback__eyebrow">MindExec</div>
99
99
  <h1>MindExec</h1>
100
- <p>Turn ideas into revenue execution. MindExec starts with free browser tools for notes and previews, then moves serious work into MindCanvas where context, AI Tasks, Skills, media, and results stay connected.</p>
100
+ <p>Turn ideas into revenue execution. MindExec is a Business Execution OS that moves serious work into MindCanvas, where context, AI Tasks, execution Skills, media, and results stay connected.</p>
101
101
  <p><a href="/mindcanvas">Open MindCanvas</a> | <a href="/pricing">See pricing</a> | <a href="/tools">Browse free tools</a></p>
102
102
  <noscript>
103
103
  <p>JavaScript is required for the interactive tool experience.</p>
@@ -579,7 +579,7 @@
579
579
  }
580
580
 
581
581
  const base = '_content/MindExecution.Shared/js/';
582
- const scriptVersion = '20260617-mdm-resize-reconnect-v603';
582
+ const scriptVersion = '20260617-business-execution-os-v604';
583
583
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
584
584
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
585
585
  const criticalScripts = [
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "eiceNpLK",
2
+ "version": "2cIg9Ur2",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -42,7 +42,7 @@
42
42
  "url": "_content/MindExecution.Shared/css/app.css"
43
43
  },
44
44
  {
45
- "hash": "sha256-fLjQy3sDstLUw2vPbbHYxDRRywLLKUCeSvDhQgPwvmY=",
45
+ "hash": "sha256-3VvOK3TEYopH8gdNweOO+vbl4QsoekgenYV1HuU5q7k=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -410,44 +410,44 @@
410
410
  "url": "_framework/MimeMapping.og9ys58ylm.dll"
411
411
  },
412
412
  {
413
- "hash": "sha256-yzvF/UwfBMiJb2zQvlW0HSNU9VJeFPsgsB40BszINvc=",
414
- "url": "_framework/MindExecution.Core.te2oaei5ec.dll"
413
+ "hash": "sha256-roAm0R9R5EcvDmkddrRfPBxzes/NOMAywwP1kFGVHvM=",
414
+ "url": "_framework/MindExecution.Core.2ftvuvqu67.dll"
415
415
  },
416
416
  {
417
- "hash": "sha256-JfXgzqcnjRbW+XlMja53/jDG+/10sNVp+2V4F8w9s+Q=",
418
- "url": "_framework/MindExecution.Kernel.n5peonkatw.dll"
417
+ "hash": "sha256-FIkseVYemh0/JXJjh3ylkXh1MdTOoIke4SAFlsdI/3E=",
418
+ "url": "_framework/MindExecution.Kernel.cmj7iee8oy.dll"
419
419
  },
420
420
  {
421
- "hash": "sha256-kfvMS18tjQsoBT/nL40x6HiLaNM3Ls5G71Fk4skXtLg=",
422
- "url": "_framework/MindExecution.Plugins.Admin.5zyeb2m709.dll"
421
+ "hash": "sha256-Padus/RMWHdWsMVmnTLAfPB0wwRhGx5hGfEYfDbjEvg=",
422
+ "url": "_framework/MindExecution.Plugins.Admin.5yrzrhtmmm.dll"
423
423
  },
424
424
  {
425
- "hash": "sha256-tmIjZsRdM+ZZmXS7a8QWtO4F4uQnzlF0LaMox4tyS0o=",
426
- "url": "_framework/MindExecution.Plugins.Business.qf0u584aql.dll"
425
+ "hash": "sha256-pg1rtZgWTHpigzwMuI6jMBjEyQA8EeCfjdkKJY0BYos=",
426
+ "url": "_framework/MindExecution.Plugins.Business.a3bmsg1dnh.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-/SUIEG5MZb4+puDsZDDWw6hfS4PONtwIzE1h2aiQIPc=",
430
- "url": "_framework/MindExecution.Plugins.Concept.dol9cxm11l.dll"
429
+ "hash": "sha256-Y6+S8b90AT5bLANz/TFdYE4F9Ch3+mELZyaeamp2gXo=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.f9homr6n4i.dll"
431
431
  },
432
432
  {
433
- "hash": "sha256-GZZuAT3WZd9wDjQd+H8f6V9R2UYeLl/VOZxl9BnQVO0=",
434
- "url": "_framework/MindExecution.Plugins.Directory.1argo44nph.dll"
433
+ "hash": "sha256-zim6x3zNF7DoFE2KXc1CLnsJ46NvM5s8VAZMdq/7fZY=",
434
+ "url": "_framework/MindExecution.Plugins.Directory.m7ysyihlbt.dll"
435
435
  },
436
436
  {
437
- "hash": "sha256-C6A2SvumFM2lEygQcugCNBnUS5cyLMARvLTKpvET4K0=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll"
437
+ "hash": "sha256-iLfp4RHpNuzU11GA0tPbNx8dv5SPe7rA/fwkJBirgkU=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.8wjvup3b7p.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-rNhLCFWuy8MyuyPOFJo03MHWrULpJe4pzQTPYu/mqbg=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.wr4ic92azb.dll"
441
+ "hash": "sha256-w65qTL5GeBT8ecV4KnEXGD5NMUcgE4iSAlCi/i4YYkU=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.17ghd27wl4.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-87Z1nJZ+TMTxIUmG78ic/qVGB0GvCTiAvNmoIcg8kNY=",
446
- "url": "_framework/MindExecution.Shared.t8xvnypbv2.dll"
445
+ "hash": "sha256-1YLqE/8OfihJWNS2fvZMe2G21q5gfMtz0HEq2yzqgxc=",
446
+ "url": "_framework/MindExecution.Shared.l8qcfxyzrh.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-Zk0KZ23Oeosh0KXUoUXS6GFzT30CaG1L9L2GZqtETR4=",
450
- "url": "_framework/MindExecution.Web.m8joypnkws.dll"
449
+ "hash": "sha256-wkOKwT98ZcpOu8xkmP7nvXCNnaH0i0DoioXyjNBhQ94=",
450
+ "url": "_framework/MindExecution.Web.2k7mg1sk3c.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-u7906sB+wUPNOO2/kISyDTP821RL/vVklUScBkrAyrU=",
773
+ "hash": "sha256-LNd2lHcfHaHXsMsTC3qIacrF6mA/jhXKMjx7uU1/98Y=",
774
774
  "url": "_framework/blazor.boot.json"
775
775
  },
776
776
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-C3sh+TxLtsJO1qKy6hXv1WjUV+B+hrswm2oJE/xbw1Q=",
837
+ "hash": "sha256-a9d5TwibgvTP1dMLk0k50u9Gcj1DArMoZAK+cCYOViY=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: eiceNpLK */
1
+ /* Manifest version: 2cIg9Ur2 */
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