@mindexec/cli 0.2.18 → 0.2.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.18",
3
+ "version": "0.2.19",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -412,7 +412,7 @@ function wait(ms = 0) {
412
412
  return new Promise(resolve => setTimeout(resolve, ms));
413
413
  }
414
414
 
415
- function buildMonitorNode(devices, hubStatus, latestTaskBatch = null) {
415
+ function buildMonitorNode(devices, hubStatus, latestTaskBatch = null, recentTaskBatches = []) {
416
416
  const connected = devices.filter(device => device.Connected).length;
417
417
  const endpoint = hubStatus.agentEndpoint || '127.0.0.1:5197';
418
418
  const pairToken = hubStatus.pairToken || 'render-smoke-token';
@@ -434,6 +434,7 @@ function buildMonitorNode(devices, hubStatus, latestTaskBatch = null) {
434
434
  RemoteFleetCanvasPagination: 'none',
435
435
  RemoteFleetDevicesJson: JSON.stringify(devices),
436
436
  RemoteFleetLatestTaskBatchJson: latestTaskBatch ? JSON.stringify(latestTaskBatch) : '',
437
+ RemoteFleetRecentTaskBatchesJson: JSON.stringify(recentTaskBatches),
437
438
  RemoteFleetLastError: ''
438
439
  }
439
440
  };
@@ -541,6 +542,20 @@ try {
541
542
  focusedDevice.LatestTaskUpdatedAt = new Date().toISOString();
542
543
  focusedDevice.LatestTaskError = 'task-timeout';
543
544
  focusedDevice.LatestTaskResultSummary = '';
545
+ const aiResultDevice = devices.find(device =>
546
+ device.DeviceId !== focusedDevice.DeviceId
547
+ && device.Connected);
548
+ assert.ok(aiResultDevice);
549
+ aiResultDevice.LatestTaskId = 'render-smoke-overview-ai-task';
550
+ aiResultDevice.LatestTaskCommandId = 'render-smoke-overview-ai-command';
551
+ aiResultDevice.LatestTaskTitle = 'Overview AI result';
552
+ aiResultDevice.LatestTaskStatus = 'completed';
553
+ aiResultDevice.LatestTaskApprovalLevel = 'ai-assist';
554
+ aiResultDevice.LatestTaskUpdatedAt = new Date(Date.now() - 1000).toISOString();
555
+ aiResultDevice.LatestTaskError = '';
556
+ aiResultDevice.LatestTaskResultModel = 'synthetic-render-ai';
557
+ aiResultDevice.LatestTaskResultResponseId = 'synthetic-response-overview';
558
+ aiResultDevice.LatestTaskResultSummary = 'Overview AI result visible in the fleet monitor.';
544
559
  const latestTaskBatch = {
545
560
  batchId: 'render-smoke-batch',
546
561
  title: 'Render smoke batch',
@@ -557,6 +572,25 @@ try {
557
572
  timedOut: 1,
558
573
  results: []
559
574
  };
575
+ const recentTaskBatches = [
576
+ latestTaskBatch,
577
+ {
578
+ batchId: 'render-smoke-previous-ai-batch',
579
+ title: 'Previous AI batch',
580
+ instructionPreview: 'Previous AI batch instruction preview.',
581
+ approvalLevel: 'ai-assist',
582
+ status: 'completed',
583
+ requestedAt: new Date(Date.now() - 180000).toISOString(),
584
+ updatedAt: new Date(Date.now() - 150000).toISOString(),
585
+ total: 42,
586
+ queued: 42,
587
+ pending: 0,
588
+ completed: 42,
589
+ failed: 0,
590
+ timedOut: 0,
591
+ results: []
592
+ }
593
+ ];
560
594
 
561
595
  const { manager, document } = await loadCss3DManager();
562
596
  assert.equal(typeof manager?.renderRemoteFleetMonitorForTest, 'function');
@@ -590,7 +624,7 @@ try {
590
624
  bodyView.dataset.remoteFleetFocusDeviceId = focusedDevice.DeviceId;
591
625
  document.body.appendChild(bodyView);
592
626
 
593
- manager.renderRemoteFleetMonitorForTest(bodyView, buildMonitorNode(devices, hub.getStatus({ includeSecrets: true }), latestTaskBatch));
627
+ manager.renderRemoteFleetMonitorForTest(bodyView, buildMonitorNode(devices, hub.getStatus({ includeSecrets: true }), latestTaskBatch, recentTaskBatches));
594
628
 
595
629
  let cards = bodyView.querySelectorAll('article[data-device-id]');
596
630
  assert.equal(cards.length, SYNTHETIC_COUNT);
@@ -609,6 +643,14 @@ try {
609
643
  assert.ok(batchSummary.textContent.includes('Render smoke batch'));
610
644
  assert.ok(batchSummary.textContent.includes('208/210 done'));
611
645
  assert.ok(batchSummary.textContent.includes('1 timed out'));
646
+ const batchHistory = bodyView.querySelector('[data-remote-fleet-task-history="true"]');
647
+ assert.ok(batchHistory);
648
+ assert.ok(batchHistory.textContent.includes('Previous AI batch'));
649
+ assert.ok(batchHistory.textContent.includes('42/42 done'));
650
+ const resultPanel = bodyView.querySelector('[data-remote-fleet-task-results="true"]');
651
+ assert.ok(resultPanel);
652
+ assert.ok(resultPanel.textContent.includes('synthetic-render-ai'));
653
+ assert.ok(resultPanel.textContent.includes('Overview AI result visible'));
612
654
  assert.ok(devices.some(device => /^synthetic-response-/.test(device.LatestTaskResultResponseId)));
613
655
 
614
656
  const searchInput = bodyView.querySelector('[data-remote-fleet-search="true"]');
@@ -11991,6 +11991,20 @@
11991
11991
  }
11992
11992
  }
11993
11993
 
11994
+ function parseRemoteFleetRecentTaskBatches(nodeModel) {
11995
+ const raw = getRemoteFleetMetadataValue(nodeModel, 'RemoteFleetRecentTaskBatchesJson', '[]');
11996
+ if (!raw.trim()) {
11997
+ return [];
11998
+ }
11999
+
12000
+ try {
12001
+ const parsed = JSON.parse(raw);
12002
+ return Array.isArray(parsed) ? parsed.filter(item => item && typeof item === 'object') : [];
12003
+ } catch {
12004
+ return [];
12005
+ }
12006
+ }
12007
+
11994
12008
  function parseRemoteFleetPinnedDevice(nodeModel) {
11995
12009
  const raw = getRemoteFleetMetadataValue(nodeModel, 'RemoteFleetPinnedDeviceJson', '{}');
11996
12010
  if (!raw.trim()) {
@@ -12885,6 +12899,7 @@
12885
12899
  const autoMonitorState = bodyView.dataset.remoteFleetAutoMonitor !== 'false';
12886
12900
  const focusState = bodyView.dataset.remoteFleetFocusDeviceId || '';
12887
12901
  const latestTaskBatch = parseRemoteFleetLatestTaskBatch(nodeModel);
12902
+ const recentTaskBatches = parseRemoteFleetRecentTaskBatches(nodeModel);
12888
12903
  const sortedDevices = [...parseRemoteFleetDevices(nodeModel)]
12889
12904
  .sort((left, right) => compareRemoteFleetDevices(left, right, sortState));
12890
12905
  const devices = groupState === 'none'
@@ -13250,6 +13265,114 @@
13250
13265
  bodyView.appendChild(batchBox);
13251
13266
  }
13252
13267
 
13268
+ const visibleRecentBatches = recentTaskBatches
13269
+ .filter(batch => batch && String(batch.batchId ?? batch.BatchId ?? '').trim())
13270
+ .slice(0, 3);
13271
+ if (visibleRecentBatches.length > 0) {
13272
+ const history = document.createElement('div');
13273
+ history.dataset.remoteFleetTaskHistory = 'true';
13274
+ history.style.cssText = `
13275
+ flex: 0 0 auto;
13276
+ display: grid;
13277
+ grid-template-columns: repeat(${Math.min(3, visibleRecentBatches.length)}, minmax(0, 1fr));
13278
+ gap: 7px;
13279
+ min-width: 0;
13280
+ `;
13281
+ visibleRecentBatches.forEach(batch => {
13282
+ const totalCount = Number(batch.total ?? batch.Total ?? 0);
13283
+ const completedCount = Number(batch.completed ?? batch.Completed ?? 0);
13284
+ const failedCount = Number(batch.failed ?? batch.Failed ?? 0);
13285
+ const pendingCount = Number(batch.pending ?? batch.Pending ?? 0);
13286
+ const timedOutCount = Number(batch.timedOut ?? batch.TimedOut ?? 0);
13287
+ const statusText = String(batch.status ?? batch.Status ?? '').trim() || 'batch';
13288
+ const titleText = String(batch.title ?? batch.Title ?? 'Remote task batch').trim();
13289
+ const updatedText = String(batch.updatedAt ?? batch.UpdatedAt ?? batch.requestedAt ?? batch.RequestedAt ?? '').trim();
13290
+ const item = document.createElement('div');
13291
+ item.dataset.remoteFleetTaskHistoryItem = 'true';
13292
+ item.style.cssText = `
13293
+ min-width: 0;
13294
+ padding: 7px 8px;
13295
+ border-radius: 7px;
13296
+ background: ${failedCount > 0 ? 'rgba(254, 242, 242, 0.82)' : 'rgba(248, 250, 252, 0.90)'};
13297
+ border: 1px solid ${failedCount > 0 ? 'rgba(248, 113, 113, 0.22)' : 'rgba(148, 163, 184, 0.22)'};
13298
+ `;
13299
+ const line = document.createElement('div');
13300
+ line.textContent = `${titleText} - ${statusText}`;
13301
+ line.title = line.textContent;
13302
+ line.style.cssText = `color:${failedCount > 0 ? '#991b1b' : '#334155'};font-size:10px;font-weight:950;line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0;`;
13303
+ const stats = document.createElement('div');
13304
+ stats.textContent = `${completedCount}/${totalCount || completedCount + failedCount + pendingCount} done - ${failedCount} failed${timedOutCount > 0 ? ` - ${timedOutCount} timed out` : ''}${updatedText ? ` - ${formatRemoteFleetAge(updatedText)}` : ''}`;
13305
+ stats.title = stats.textContent;
13306
+ stats.style.cssText = 'color:#64748b;font-size:9px;font-weight:850;line-height:1.25;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0;';
13307
+ item.appendChild(line);
13308
+ item.appendChild(stats);
13309
+ history.appendChild(item);
13310
+ });
13311
+ bodyView.appendChild(history);
13312
+ }
13313
+
13314
+ const recentTaskResults = devices
13315
+ .map(device => {
13316
+ const updatedAt = String(getRemoteFleetDeviceField(device, 'latestTaskUpdatedAt', 'LatestTaskUpdatedAt', ''));
13317
+ const status = String(getRemoteFleetDeviceField(device, 'latestTaskStatus', 'LatestTaskStatus', ''));
13318
+ const title = String(getRemoteFleetDeviceField(device, 'latestTaskTitle', 'LatestTaskTitle', ''));
13319
+ const approval = String(getRemoteFleetDeviceField(device, 'latestTaskApprovalLevel', 'LatestTaskApprovalLevel', ''));
13320
+ const error = String(getRemoteFleetDeviceField(device, 'latestTaskError', 'LatestTaskError', ''));
13321
+ const model = String(getRemoteFleetDeviceField(device, 'latestTaskResultModel', 'LatestTaskResultModel', ''));
13322
+ const summary = String(getRemoteFleetDeviceField(device, 'latestTaskResultSummary', 'LatestTaskResultSummary', ''));
13323
+ return {
13324
+ device,
13325
+ updatedAt,
13326
+ status,
13327
+ title,
13328
+ approval,
13329
+ error,
13330
+ model,
13331
+ summary,
13332
+ updatedMs: getRemoteFleetTimestampMs(updatedAt)
13333
+ };
13334
+ })
13335
+ .filter(item => item.status || item.title || item.summary || item.error)
13336
+ .sort((left, right) => right.updatedMs - left.updatedMs)
13337
+ .slice(0, 4);
13338
+ if (recentTaskResults.length > 0) {
13339
+ const resultPanel = document.createElement('div');
13340
+ resultPanel.dataset.remoteFleetTaskResults = 'true';
13341
+ resultPanel.style.cssText = `
13342
+ flex: 0 0 auto;
13343
+ display: grid;
13344
+ grid-template-columns: repeat(2, minmax(0, 1fr));
13345
+ gap: 7px;
13346
+ min-width: 0;
13347
+ `;
13348
+ recentTaskResults.forEach(item => {
13349
+ const failed = !!item.error || item.status === 'failed';
13350
+ const row = document.createElement('div');
13351
+ row.dataset.remoteFleetTaskResultItem = 'true';
13352
+ row.dataset.deviceId = getRemoteFleetDeviceId(item.device);
13353
+ row.style.cssText = `
13354
+ min-width: 0;
13355
+ padding: 7px 8px;
13356
+ border-radius: 7px;
13357
+ background: ${failed ? 'rgba(248, 113, 113, 0.10)' : 'rgba(16, 185, 129, 0.08)'};
13358
+ border: 1px solid ${failed ? 'rgba(248, 113, 113, 0.22)' : 'rgba(16, 185, 129, 0.16)'};
13359
+ `;
13360
+ const headline = document.createElement('div');
13361
+ const mode = item.approval === 'ai-assist' ? 'AI' : 'Task';
13362
+ headline.textContent = `${mode} ${item.status || 'task'} - ${getRemoteFleetDeviceName(item.device)}${item.model ? ` - ${item.model}` : ''}`;
13363
+ headline.title = headline.textContent;
13364
+ headline.style.cssText = `color:${failed ? '#991b1b' : '#047857'};font-size:10px;font-weight:950;line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0;`;
13365
+ const summary = document.createElement('div');
13366
+ summary.textContent = formatRemoteFleetTaskError(item.error) || item.summary || item.title || 'Task queued';
13367
+ summary.title = summary.textContent;
13368
+ summary.style.cssText = 'color:#334155;font-size:10px;font-weight:750;line-height:1.25;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0;';
13369
+ row.appendChild(headline);
13370
+ row.appendChild(summary);
13371
+ resultPanel.appendChild(row);
13372
+ });
13373
+ bodyView.appendChild(resultPanel);
13374
+ }
13375
+
13253
13376
  if (focusedDevice) {
13254
13377
  const focusedId = getRemoteFleetDeviceId(focusedDevice);
13255
13378
  const focusedName = getRemoteFleetDeviceName(focusedDevice);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-x+zuHEgludyG90VHm7vAvh24gxrcXgpLsHEMSmn3EZA=",
4
+ "hash": "sha256-uiy622hnTDJkSexxzoeajNAT7LDKXgnVH7DvRNAiX9w=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -127,12 +127,12 @@
127
127
  "MindExecution.Kernel.lm7kgq8l8h.dll": "MindExecution.Kernel.dll",
128
128
  "MindExecution.Plugins.Admin.k085kt3dls.dll": "MindExecution.Plugins.Admin.dll",
129
129
  "MindExecution.Plugins.Business.dsz9uwkxih.dll": "MindExecution.Plugins.Business.dll",
130
- "MindExecution.Plugins.Concept.6gcazss69r.dll": "MindExecution.Plugins.Concept.dll",
130
+ "MindExecution.Plugins.Concept.wnkch6jqjz.dll": "MindExecution.Plugins.Concept.dll",
131
131
  "MindExecution.Plugins.Directory.ufbriq6js4.dll": "MindExecution.Plugins.Directory.dll",
132
- "MindExecution.Plugins.PlanMaster.zqc0kv9n5d.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.5ojg8vbf9w.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.ahf7j9dymw.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.6i9vy7xy1k.dll": "MindExecution.Web.dll",
132
+ "MindExecution.Plugins.PlanMaster.ygbsp1z4z0.dll": "MindExecution.Plugins.PlanMaster.dll",
133
+ "MindExecution.Plugins.YouTube.a992061fhz.dll": "MindExecution.Plugins.YouTube.dll",
134
+ "MindExecution.Shared.y27t6njaw0.dll": "MindExecution.Shared.dll",
135
+ "MindExecution.Web.bqamgu5gq1.dll": "MindExecution.Web.dll",
136
136
  "dotnet.js": "dotnet.js",
137
137
  "dotnet.native.xsn1d6x2kd.js": "dotnet.native.js",
138
138
  "dotnet.native.vz0adxojrz.wasm": "dotnet.native.wasm",
@@ -280,16 +280,16 @@
280
280
  "netstandard.0xet7jg7ky.dll": "sha256-xENDv620uJ8fHwLJ2bdhrTHz4QPjvqXOztnk2a4wr0c=",
281
281
  "MindExecution.Core.ckgjbdvvxl.dll": "sha256-ZDas50sgMQGCNt0UC1ZErP+uv7PQ7z/skK7zCwnmU2I=",
282
282
  "MindExecution.Kernel.lm7kgq8l8h.dll": "sha256-ndscepu8d8g/nrJmBP8VrkIOTIkSA57t5shOq/rp/ys=",
283
- "MindExecution.Plugins.Concept.6gcazss69r.dll": "sha256-hpCyKxiQxk50zHE8iOWtoIiBapBG83wfaos3jZzeaYg=",
284
- "MindExecution.Plugins.PlanMaster.zqc0kv9n5d.dll": "sha256-iwATrRDt3Wwr/DKLxUl7GzqwKdhMLZNBKYVJPAkrhdM=",
285
- "MindExecution.Shared.ahf7j9dymw.dll": "sha256-HlFaI9iZybI0VDe6KpsgRqLb3GTfUVXoU3KMlx0gQ0o=",
286
- "MindExecution.Web.6i9vy7xy1k.dll": "sha256-IlDxFyeBhZWgici5UD0RtmqRNwynyD6n9Q0IJ8f4eBE="
283
+ "MindExecution.Plugins.Concept.wnkch6jqjz.dll": "sha256-nCycvHAVswddeF1J0XSbpQSsVsutbCpx+52o7ne+kZw=",
284
+ "MindExecution.Plugins.PlanMaster.ygbsp1z4z0.dll": "sha256-ErbKkuXxJANIiJahFjEUZq9TH1Kz/y2LEuepW6ZxJnU=",
285
+ "MindExecution.Shared.y27t6njaw0.dll": "sha256-Gvuf30dJMtENks7FSoBydnPkKJp4NS10DjvJmsTLEV0=",
286
+ "MindExecution.Web.bqamgu5gq1.dll": "sha256-LYhJEP8rDmDCLhf8aQxkiGEmpsffoNzT6S37CxSfNQ8="
287
287
  },
288
288
  "lazyAssembly": {
289
289
  "MindExecution.Plugins.Admin.k085kt3dls.dll": "sha256-LLDLGzE3yaP+rL+8CMZGWBmGQZBfrRWgUMijX/fxTxw=",
290
290
  "MindExecution.Plugins.Business.dsz9uwkxih.dll": "sha256-bfvFu7Pq58deN7TnwfhsUZdvWhS4RpA0LdO77UsBnY8=",
291
291
  "MindExecution.Plugins.Directory.ufbriq6js4.dll": "sha256-qoxaegrVr9oaXJgQqU7t7CrCf0EYgsd22BcWXg/+91I=",
292
- "MindExecution.Plugins.YouTube.5ojg8vbf9w.dll": "sha256-a+S4Xha/L7um0foEwb8E0p8VqEw21M6ETzjrEUpIYTk="
292
+ "MindExecution.Plugins.YouTube.a992061fhz.dll": "sha256-orw8lB1/+iy3s9EoeG+MDueyomsbPTC7vq0UIjUwtfQ="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -558,7 +558,7 @@
558
558
  }
559
559
 
560
560
  const base = '_content/MindExecution.Shared/js/';
561
- const scriptVersion = '20260612-remote-task-batch-v476';
561
+ const scriptVersion = '20260612-remote-task-results-v477';
562
562
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
563
563
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
564
564
  const criticalScripts = [
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "wUCVSTgn",
2
+ "version": "dMeuj/jH",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-MaP05yuNb/XsfihViUh/bL9svf11oMZGMZiAWnpm/Gk=",
89
+ "hash": "sha256-XktC8d/MT50tOHPQODkji8pOIOfC9eaaACAGUJVxd3I=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -426,28 +426,28 @@
426
426
  "url": "_framework/MindExecution.Plugins.Business.dsz9uwkxih.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-hpCyKxiQxk50zHE8iOWtoIiBapBG83wfaos3jZzeaYg=",
430
- "url": "_framework/MindExecution.Plugins.Concept.6gcazss69r.dll"
429
+ "hash": "sha256-nCycvHAVswddeF1J0XSbpQSsVsutbCpx+52o7ne+kZw=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.wnkch6jqjz.dll"
431
431
  },
432
432
  {
433
433
  "hash": "sha256-qoxaegrVr9oaXJgQqU7t7CrCf0EYgsd22BcWXg/+91I=",
434
434
  "url": "_framework/MindExecution.Plugins.Directory.ufbriq6js4.dll"
435
435
  },
436
436
  {
437
- "hash": "sha256-iwATrRDt3Wwr/DKLxUl7GzqwKdhMLZNBKYVJPAkrhdM=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.zqc0kv9n5d.dll"
437
+ "hash": "sha256-ErbKkuXxJANIiJahFjEUZq9TH1Kz/y2LEuepW6ZxJnU=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.ygbsp1z4z0.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-a+S4Xha/L7um0foEwb8E0p8VqEw21M6ETzjrEUpIYTk=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.5ojg8vbf9w.dll"
441
+ "hash": "sha256-orw8lB1/+iy3s9EoeG+MDueyomsbPTC7vq0UIjUwtfQ=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.a992061fhz.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-HlFaI9iZybI0VDe6KpsgRqLb3GTfUVXoU3KMlx0gQ0o=",
446
- "url": "_framework/MindExecution.Shared.ahf7j9dymw.dll"
445
+ "hash": "sha256-Gvuf30dJMtENks7FSoBydnPkKJp4NS10DjvJmsTLEV0=",
446
+ "url": "_framework/MindExecution.Shared.y27t6njaw0.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-IlDxFyeBhZWgici5UD0RtmqRNwynyD6n9Q0IJ8f4eBE=",
450
- "url": "_framework/MindExecution.Web.6i9vy7xy1k.dll"
449
+ "hash": "sha256-LYhJEP8rDmDCLhf8aQxkiGEmpsffoNzT6S37CxSfNQ8=",
450
+ "url": "_framework/MindExecution.Web.bqamgu5gq1.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-fGH3vBiA9K4LY1+siDEi6C1uyYfJgDAywmyOxn+xGY8=",
773
+ "hash": "sha256-6xyfZZneOcB1qKLApN7yPISkoN/wp8qEwfDnH0h9JhA=",
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-2i4bXinqysl6fMxtRowvbfVpJyKIfPSm3wdbCBcX5i4=",
837
+ "hash": "sha256-fxCftcGIM5m9govtiX7DVdEDfsIDikwU9HHnJ4KMvEc=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: wUCVSTgn */
1
+ /* Manifest version: dMeuj/jH */
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