@mindexec/cli 0.2.87 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.87",
3
+ "version": "0.2.88",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -12810,6 +12810,34 @@
12810
12810
  return button;
12811
12811
  }
12812
12812
 
12813
+ function selectRemoteFleetMonitorNodeFromPointer(nodeId, event) {
12814
+ const normalizedId = String(nodeId || '').trim();
12815
+ if (!normalizedId || event?.button !== 0) {
12816
+ return false;
12817
+ }
12818
+
12819
+ if (_module?.selectedNodeIdJs === normalizedId) {
12820
+ window.MindMapMenuManager?.showMenu?.(normalizedId);
12821
+ return true;
12822
+ }
12823
+
12824
+ const selected = window.MindMapInteractions?.selectNodeById?.(_module, normalizedId, {
12825
+ notifyBlazor: true,
12826
+ bringToFront: true,
12827
+ showMenu: true
12828
+ }) === true;
12829
+
12830
+ if (selected) {
12831
+ _module._forceUpdateFrames = Math.max(Number(_module._forceUpdateFrames || 0), 2);
12832
+ window.RuntimeTrace?.emit?.('remote.monitor.nodeSelected', {
12833
+ nodeId: normalizedId,
12834
+ source: 'remote-monitor-pointer'
12835
+ });
12836
+ }
12837
+
12838
+ return selected;
12839
+ }
12840
+
12813
12841
  function attachRemoteFleetTitleActions(bodyView, hostButton, hostState) {
12814
12842
  const container = bodyView?.closest?.('.map-node-remote-fleet');
12815
12843
  const header = container?.querySelector?.('.template-card__header')
@@ -15060,7 +15088,19 @@
15060
15088
  bodyView.dataset.src = `remote-fleet:${refreshedAt}:${devices.length}:${connected}`;
15061
15089
  bodyView.dataset.remoteFleetHostState = hostTargetState;
15062
15090
  bodyView.dataset.remoteFleetDensity = densityState;
15091
+ bodyView.dataset.remoteFleetMonitorNodeId = nodeId;
15063
15092
  bodyView.classList.add('map-node-remote-fleet__body');
15093
+ if (bodyView._remoteFleetNodeSelectionBound !== true) {
15094
+ bodyView._remoteFleetNodeSelectionBound = true;
15095
+ bodyView.addEventListener('mousedown', event => {
15096
+ const controlTarget = event.target?.closest?.('button, input, textarea, select, [contenteditable="true"]');
15097
+ if (controlTarget) {
15098
+ return;
15099
+ }
15100
+
15101
+ selectRemoteFleetMonitorNodeFromPointer(bodyView.dataset.remoteFleetMonitorNodeId, event);
15102
+ }, true);
15103
+ }
15064
15104
  bodyView.innerHTML = '';
15065
15105
  bodyView.style.cssText = `
15066
15106
  flex: 1 1 auto;
@@ -7589,6 +7589,19 @@ window.MindMapInteractions = (function () {
7589
7589
  onResize: onResize,
7590
7590
  syncViewportMetrics: syncViewportMetrics,
7591
7591
  // ▼▼▼ [New] Expose selectNode and startEditingNode ▼▼▼
7592
+ selectNodeById: function (module, nodeId, options = {}) {
7593
+ const normalizedId = String(nodeId || '').trim();
7594
+ if (!normalizedId || !module?.nodeObjectsById?.has?.(normalizedId)) {
7595
+ return false;
7596
+ }
7597
+
7598
+ finalizeSingleSelection(module, normalizedId, {
7599
+ notifyBlazor: options?.notifyBlazor !== false,
7600
+ bringToFront: options?.bringToFront !== false,
7601
+ showMenu: options?.showMenu !== false
7602
+ });
7603
+ return true;
7604
+ },
7592
7605
  selectNode: function (module, nodeObject) {
7593
7606
  const nodeId = nodeObject.userData?.nodeId;
7594
7607
  if (nodeId) {
@@ -366,8 +366,7 @@
366
366
  contentType === 'memo' ||
367
367
  contentType === 'markdown' ||
368
368
  contentType === 'code' ||
369
- isAgentLikeLodNode(model) ||
370
- isTemplateLauncherLodProxyModel(model);
369
+ isAgentLikeLodNode(model);
371
370
  }
372
371
 
373
372
  function isTemplateLauncherModel(model) {
@@ -380,10 +379,6 @@
380
379
  semanticType === REMOTE_FLEET_DEVICE_SEMANTIC_TYPE;
381
380
  }
382
381
 
383
- function isTemplateLauncherLodProxyModel(model) {
384
- return isTemplateLauncherModel(model) && !isRemoteFleetNodeModel(model);
385
- }
386
-
387
382
  function isCssMediaFallbackModel(model) {
388
383
  const contentType = getNodeContentType(model);
389
384
  return contentType === 'image' ||
@@ -940,7 +935,7 @@
940
935
  this._consoleNodeIdToIndex = new Map();
941
936
  this._lodConsoleProxyNodeIds = new Set();
942
937
  this._lodImageCssFallbackNodeIds = new Set();
943
- this._lodRemoteFleetCssNodeIds = new Set();
938
+ this._lodTemplateCssNodeIds = new Set();
944
939
  this._lodCleanupPending = true;
945
940
  this._lodCleanupDone = false;
946
941
  this._lodVisualEpoch = 0;
@@ -4242,7 +4237,7 @@
4242
4237
 
4243
4238
  const entry = nodeObjectsById.get(nodeId);
4244
4239
  if (!entry?.cssObject || !supportsCss3dNodeModel(entry.model)) continue;
4245
- if (isRemoteFleetNodeModel(entry.model)) continue;
4240
+ if (isTemplateLauncherModel(entry.model)) continue;
4246
4241
  if (shouldShowAgentConsoleInLodBand(lodBand) && hasAgentConsoleOpenForEntry(entry)) continue;
4247
4242
 
4248
4243
  nextWarmIds.add(nodeId);
@@ -4272,7 +4267,7 @@
4272
4267
  const nodeId = warmIds[i];
4273
4268
  if (keepAttachedIds?.has(nodeId)) continue;
4274
4269
  const entry = nodeObjectsById.get(nodeId);
4275
- if (isRemoteFleetNodeModel(entry?.model)) continue;
4270
+ if (isTemplateLauncherModel(entry?.model)) continue;
4276
4271
  this._detachCss3dObject(entry);
4277
4272
  }
4278
4273
  }
@@ -4407,31 +4402,19 @@
4407
4402
  for (const entry of nodeObjectsById.values()) {
4408
4403
  if (!entry || !isTemplateLauncherModel(entry.model)) continue;
4409
4404
 
4410
- if (isRemoteFleetNodeModel(entry.model)) {
4411
- const nodeId = String(entry.model?.id || entry.model?.Id || entry.glObject?.userData?.nodeId || '').trim();
4412
- if (isCss3dRendererEnabled(module)) {
4413
- if (this.isInLODMode === true && nodeId) {
4414
- this._lodRemoteFleetCssNodeIds.add(nodeId);
4415
- } else if (nodeId) {
4416
- this._lodRemoteFleetCssNodeIds.delete(nodeId);
4417
- }
4418
- this._showNodeCss3d(entry, module);
4419
- } else {
4420
- if (nodeId) {
4421
- this._lodRemoteFleetCssNodeIds.delete(nodeId);
4422
- }
4423
- this._hideNodeCss3d(entry);
4424
- }
4425
- continue;
4426
- }
4427
-
4428
- if (this.isInLODMode === true) {
4429
- if (entry.cssObject) {
4430
- this._hideNodeCss3d(entry);
4405
+ const nodeId = String(entry.model?.id || entry.model?.Id || entry.glObject?.userData?.nodeId || '').trim();
4406
+ if (isCss3dRendererEnabled(module)) {
4407
+ if (this.isInLODMode === true && nodeId) {
4408
+ this._lodTemplateCssNodeIds.add(nodeId);
4409
+ } else if (nodeId) {
4410
+ this._lodTemplateCssNodeIds.delete(nodeId);
4431
4411
  }
4432
- this._hideTextLodFullVisual(entry);
4433
- } else if (isCss3dRendererEnabled(module)) {
4434
4412
  this._showNodeCss3d(entry, module);
4413
+ } else {
4414
+ if (nodeId) {
4415
+ this._lodTemplateCssNodeIds.delete(nodeId);
4416
+ }
4417
+ this._hideNodeCss3d(entry);
4435
4418
  }
4436
4419
  }
4437
4420
  }
@@ -4651,7 +4634,7 @@
4651
4634
  if (nodeId) {
4652
4635
  this._nearCssVisibleIds.delete(nodeId);
4653
4636
  this._lodImageCssFallbackNodeIds.delete(nodeId);
4654
- this._lodRemoteFleetCssNodeIds.delete(nodeId);
4637
+ this._lodTemplateCssNodeIds.delete(nodeId);
4655
4638
  }
4656
4639
  if (this._module) {
4657
4640
  this._module._css3dVisualChangedThisFrame = true;
@@ -4886,24 +4869,24 @@
4886
4869
  shouldRenderCss3dInLod() {
4887
4870
  return this.isInLODMode === true &&
4888
4871
  (this._getActiveCssMediaLodFallbackCount(this._module) > 0 ||
4889
- this._getActiveRemoteFleetCssLodCount(this._module) > 0);
4872
+ this._getActiveTemplateCssLodCount(this._module) > 0);
4890
4873
  }
4891
4874
 
4892
- _getActiveRemoteFleetCssLodCount(module = this._module) {
4893
- if (this.isInLODMode !== true || !this._lodRemoteFleetCssNodeIds || this._lodRemoteFleetCssNodeIds.size === 0) {
4875
+ _getActiveTemplateCssLodCount(module = this._module) {
4876
+ if (this.isInLODMode !== true || !this._lodTemplateCssNodeIds || this._lodTemplateCssNodeIds.size === 0) {
4894
4877
  return 0;
4895
4878
  }
4896
4879
 
4897
4880
  const nodeObjectsById = module?.nodeObjectsById || this._module?.nodeObjectsById || null;
4898
4881
  if (!nodeObjectsById) {
4899
- return this._lodRemoteFleetCssNodeIds.size;
4882
+ return this._lodTemplateCssNodeIds.size;
4900
4883
  }
4901
4884
 
4902
4885
  let count = 0;
4903
- for (const nodeId of Array.from(this._lodRemoteFleetCssNodeIds)) {
4886
+ for (const nodeId of Array.from(this._lodTemplateCssNodeIds)) {
4904
4887
  const entry = nodeObjectsById.get(nodeId) || null;
4905
- if (!entry || !isRemoteFleetNodeModel(entry.model)) {
4906
- this._lodRemoteFleetCssNodeIds.delete(nodeId);
4888
+ if (!entry || !isTemplateLauncherModel(entry.model)) {
4889
+ this._lodTemplateCssNodeIds.delete(nodeId);
4907
4890
  continue;
4908
4891
  }
4909
4892
 
@@ -6054,13 +6037,13 @@
6054
6037
  }
6055
6038
  }
6056
6039
  }
6057
- const shouldSyncRemoteFleetCss3d =
6040
+ const shouldSyncTemplateCss3d =
6058
6041
  bandChangedWithoutModeSwitch === true ||
6059
6042
  this._instancesDirty === true ||
6060
6043
  this._isNodeArrayDirty === true ||
6061
- (this._lodRemoteFleetCssNodeIds?.size > 0 &&
6062
- this._getActiveRemoteFleetCssLodCount(module) <= 0);
6063
- if (shouldSyncRemoteFleetCss3d) {
6044
+ (this._lodTemplateCssNodeIds?.size > 0 &&
6045
+ this._getActiveTemplateCssLodCount(module) <= 0);
6046
+ if (shouldSyncTemplateCss3d) {
6064
6047
  this._syncTemplateLauncherCss3dForLod(nodeObjectsById, module);
6065
6048
  }
6066
6049
  this._setInstancedAgentBadgeVisibility(lodBand === 'MID');
@@ -9213,7 +9196,7 @@
9213
9196
  this._nearCssVisibleIds.clear();
9214
9197
  this._lodConsoleProxyNodeIds.clear();
9215
9198
  this._lodImageCssFallbackNodeIds.clear();
9216
- this._lodRemoteFleetCssNodeIds.clear();
9199
+ this._lodTemplateCssNodeIds.clear();
9217
9200
  this._clearCss3dQueue();
9218
9201
  this._clearCss3dPrewarmQueue();
9219
9202
  this._css3dProcessing = false;
@@ -9413,7 +9396,7 @@
9413
9396
  this._fullResImageVisualIds?.delete?.(nodeId);
9414
9397
  this._lodConsoleProxyNodeIds?.delete?.(nodeId);
9415
9398
  this._lodImageCssFallbackNodeIds?.delete?.(nodeId);
9416
- this._lodRemoteFleetCssNodeIds?.delete?.(nodeId);
9399
+ this._lodTemplateCssNodeIds?.delete?.(nodeId);
9417
9400
  removedAny = true;
9418
9401
  }
9419
9402
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-4VaftOESBnQE+Q1Rm+Hxk+BcDEAXOHXNFE6dpmlgyyg=",
4
+ "hash": "sha256-FkYckiFDay4A9e3HxdrRCNsw5tmmvI8BmELK8eab0hw=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -110,7 +110,7 @@
110
110
  "System.Security.Cryptography.qqgybpoucx.dll": "System.Security.Cryptography.dll",
111
111
  "System.Text.Encoding.Extensions.9t3hs6kyll.dll": "System.Text.Encoding.Extensions.dll",
112
112
  "System.Text.Encodings.Web.wftjfh2crk.dll": "System.Text.Encodings.Web.dll",
113
- "System.Text.Json.4s25e3op6i.dll": "System.Text.Json.dll",
113
+ "System.Text.Json.0v0qgmri0w.dll": "System.Text.Json.dll",
114
114
  "System.Text.RegularExpressions.cvkox11l6l.dll": "System.Text.RegularExpressions.dll",
115
115
  "System.Threading.Channels.419493szqu.dll": "System.Threading.Channels.dll",
116
116
  "System.Threading.Thread.xhmys87xh5.dll": "System.Threading.Thread.dll",
@@ -127,12 +127,12 @@
127
127
  "MindExecution.Kernel.mdo1lzjvvp.dll": "MindExecution.Kernel.dll",
128
128
  "MindExecution.Plugins.Admin.5fctwf65dx.dll": "MindExecution.Plugins.Admin.dll",
129
129
  "MindExecution.Plugins.Business.nwivpk9djf.dll": "MindExecution.Plugins.Business.dll",
130
- "MindExecution.Plugins.Concept.urf2igpscm.dll": "MindExecution.Plugins.Concept.dll",
130
+ "MindExecution.Plugins.Concept.d66vf951hc.dll": "MindExecution.Plugins.Concept.dll",
131
131
  "MindExecution.Plugins.Directory.jnzcrwl049.dll": "MindExecution.Plugins.Directory.dll",
132
- "MindExecution.Plugins.PlanMaster.88ikwl696h.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.wf48rh6hfh.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.6aa15yqsqi.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.8gp839zb62.dll": "MindExecution.Web.dll",
132
+ "MindExecution.Plugins.PlanMaster.3nmh4z5z35.dll": "MindExecution.Plugins.PlanMaster.dll",
133
+ "MindExecution.Plugins.YouTube.pk0nd21ct1.dll": "MindExecution.Plugins.YouTube.dll",
134
+ "MindExecution.Shared.kjl470mcqw.dll": "MindExecution.Shared.dll",
135
+ "MindExecution.Web.w30rv8f29g.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",
@@ -266,7 +266,7 @@
266
266
  "System.Security.Cryptography.qqgybpoucx.dll": "sha256-vofefYZi5S+7Rg61EmobeWUJQoIefwuF7PwjL7nrr+c=",
267
267
  "System.Text.Encoding.Extensions.9t3hs6kyll.dll": "sha256-c54L8A/dPQGmGXDWsmLgXCcq34jyZ/z2QWBpZogPwJs=",
268
268
  "System.Text.Encodings.Web.wftjfh2crk.dll": "sha256-NHGoSuaQLhC8vk+biDWqKZAlhpNTJdJwilcCbgbr8as=",
269
- "System.Text.Json.4s25e3op6i.dll": "sha256-VBeG+FY8NhlMOdQOTUozG5Zn+jrC3jPw6TfF0idE0RA=",
269
+ "System.Text.Json.0v0qgmri0w.dll": "sha256-3N6tKQuQtSdGn3qtvUdWOhhUlCzccYdgA25P3NFSLKI=",
270
270
  "System.Text.RegularExpressions.cvkox11l6l.dll": "sha256-WMuhtIW2iGfPEIJN2je+ijXB+VM7uodRrUIdvsXl4Q4=",
271
271
  "System.Threading.Channels.419493szqu.dll": "sha256-uBskY7pwTdtCHuVyY04ihoSM1DZ2QXqthW9t/BCLBIk=",
272
272
  "System.Threading.Thread.xhmys87xh5.dll": "sha256-ZRIAn9jRxhpyGpYyBH+MJbsb2SxgzNESn5/JGjqIVkY=",
@@ -280,16 +280,16 @@
280
280
  "netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
281
281
  "MindExecution.Core.csfu1xtj3l.dll": "sha256-lP9GUQU4xFLsUU4IOwpUjt09mQO5M/bgLAAS8UnjLMs=",
282
282
  "MindExecution.Kernel.mdo1lzjvvp.dll": "sha256-Vj21M+Th5MKfLG5Hvg6/uwlDDdwAJwzeIxfWsK9gYhM=",
283
- "MindExecution.Plugins.Concept.urf2igpscm.dll": "sha256-Wt70v+ewfVpQNKSMo/aRLfM1lB63lFl/gc8o3tJRsUE=",
284
- "MindExecution.Plugins.PlanMaster.88ikwl696h.dll": "sha256-uDJJpu3uYLPDj7P/pcAZfWQcSrwlMeJTE10hFgVqNrM=",
285
- "MindExecution.Shared.6aa15yqsqi.dll": "sha256-TneDrusLNLsSxPIeMiAAmkornUdHBE4lKZHTlBxG9mI=",
286
- "MindExecution.Web.8gp839zb62.dll": "sha256-KDaD6cqDNMvAoTAc6wfsq27l4tV/+tP3sOYx6r//KxA="
283
+ "MindExecution.Plugins.Concept.d66vf951hc.dll": "sha256-BfSg6eO0Whhlebn79gn/1KzUaJufnQ+vnpBy2nn3MA4=",
284
+ "MindExecution.Plugins.PlanMaster.3nmh4z5z35.dll": "sha256-34yMohlN570l7hVY8M50ddZu8rhP91MzQgxFR5BvCF8=",
285
+ "MindExecution.Shared.kjl470mcqw.dll": "sha256-8PIYJXaYrenW4t2I7BZun1WQ8jTMUctPutWsGqdWAJk=",
286
+ "MindExecution.Web.w30rv8f29g.dll": "sha256-TEjqD1qStW1dbPnahMdnbtzKD9hRmZnZdPTREVVMdDg="
287
287
  },
288
288
  "lazyAssembly": {
289
289
  "MindExecution.Plugins.Admin.5fctwf65dx.dll": "sha256-37+Egd35menNv18hEZ64qjiu0x1r+wFOuO5zDiOGfug=",
290
290
  "MindExecution.Plugins.Business.nwivpk9djf.dll": "sha256-iTV0NyCB7fnU+l8brClBd+KYnBDw628yHCwoRrQdTWE=",
291
291
  "MindExecution.Plugins.Directory.jnzcrwl049.dll": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
292
- "MindExecution.Plugins.YouTube.wf48rh6hfh.dll": "sha256-hLixuuQuhimSYlTFe2yf75UnrSRfFv0PrkKxMdHtN0c="
292
+ "MindExecution.Plugins.YouTube.pk0nd21ct1.dll": "sha256-VxiyjfefagL09Utr1A8+YOy/t6F+455WI1ENfWFzqso="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Run your ideas as AI task graphs</title>
8
8
  <meta name="description" content="MindExec is an AI execution canvas for solo builders, researchers, developers, and creators. Start with free browser tools, then move serious work into saved MindCanvas projects." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-cloud-snapshot-rpc-v545" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-cloud-snapshot-rpc-v545" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260615-template-css3d-v552" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260615-template-css3d-v552" />
12
12
  <!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
13
13
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
14
14
  <!-- ?꿎뼯??-->
@@ -579,7 +579,7 @@
579
579
  }
580
580
 
581
581
  const base = '_content/MindExecution.Shared/js/';
582
- const scriptVersion = '20260614-cloud-snapshot-rpc-v545';
582
+ const scriptVersion = '20260615-template-css3d-v552';
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": "fenz19NA",
2
+ "version": "e510O9xl",
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-hzl6gNvjb9faAA2tUeCfriNvdohhGaDtasnYOCMum7E=",
89
+ "hash": "sha256-C/+w78To8XgmLIpNeOK3HtqkdKCQKklm792P0hSCaMk=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -106,7 +106,7 @@
106
106
  "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
107
  },
108
108
  {
109
- "hash": "sha256-nseRIuaG6io+m/7GgaLuIS4srEQZYhVv8SQB2Z9aiF4=",
109
+ "hash": "sha256-QJh7a93uHYeGLXH8R87u9/oky9uJLW2p6eSMODlGjY0=",
110
110
  "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
111
  },
112
112
  {
@@ -114,7 +114,7 @@
114
114
  "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
115
  },
116
116
  {
117
- "hash": "sha256-XwNOU+9TwMGIuKGjkijfVM68KlLN7k0fUYB/aInPg0k=",
117
+ "hash": "sha256-NTCDYnA/mG2tplidYmMv50OhHhdXjP985NlsjsyQ38g=",
118
118
  "url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
119
119
  },
120
120
  {
@@ -426,28 +426,28 @@
426
426
  "url": "_framework/MindExecution.Plugins.Business.nwivpk9djf.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-Wt70v+ewfVpQNKSMo/aRLfM1lB63lFl/gc8o3tJRsUE=",
430
- "url": "_framework/MindExecution.Plugins.Concept.urf2igpscm.dll"
429
+ "hash": "sha256-BfSg6eO0Whhlebn79gn/1KzUaJufnQ+vnpBy2nn3MA4=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.d66vf951hc.dll"
431
431
  },
432
432
  {
433
433
  "hash": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
434
434
  "url": "_framework/MindExecution.Plugins.Directory.jnzcrwl049.dll"
435
435
  },
436
436
  {
437
- "hash": "sha256-uDJJpu3uYLPDj7P/pcAZfWQcSrwlMeJTE10hFgVqNrM=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.88ikwl696h.dll"
437
+ "hash": "sha256-34yMohlN570l7hVY8M50ddZu8rhP91MzQgxFR5BvCF8=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.3nmh4z5z35.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-hLixuuQuhimSYlTFe2yf75UnrSRfFv0PrkKxMdHtN0c=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.wf48rh6hfh.dll"
441
+ "hash": "sha256-VxiyjfefagL09Utr1A8+YOy/t6F+455WI1ENfWFzqso=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.pk0nd21ct1.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-TneDrusLNLsSxPIeMiAAmkornUdHBE4lKZHTlBxG9mI=",
446
- "url": "_framework/MindExecution.Shared.6aa15yqsqi.dll"
445
+ "hash": "sha256-8PIYJXaYrenW4t2I7BZun1WQ8jTMUctPutWsGqdWAJk=",
446
+ "url": "_framework/MindExecution.Shared.kjl470mcqw.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-KDaD6cqDNMvAoTAc6wfsq27l4tV/+tP3sOYx6r//KxA=",
450
- "url": "_framework/MindExecution.Web.8gp839zb62.dll"
449
+ "hash": "sha256-TEjqD1qStW1dbPnahMdnbtzKD9hRmZnZdPTREVVMdDg=",
450
+ "url": "_framework/MindExecution.Web.w30rv8f29g.dll"
451
451
  },
452
452
  {
453
453
  "hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
@@ -722,8 +722,8 @@
722
722
  "url": "_framework/System.Text.Encodings.Web.wftjfh2crk.dll"
723
723
  },
724
724
  {
725
- "hash": "sha256-VBeG+FY8NhlMOdQOTUozG5Zn+jrC3jPw6TfF0idE0RA=",
726
- "url": "_framework/System.Text.Json.4s25e3op6i.dll"
725
+ "hash": "sha256-3N6tKQuQtSdGn3qtvUdWOhhUlCzccYdgA25P3NFSLKI=",
726
+ "url": "_framework/System.Text.Json.0v0qgmri0w.dll"
727
727
  },
728
728
  {
729
729
  "hash": "sha256-WMuhtIW2iGfPEIJN2je+ijXB+VM7uodRrUIdvsXl4Q4=",
@@ -770,7 +770,7 @@
770
770
  "url": "_framework/Websocket.Client.vapounvmnl.dll"
771
771
  },
772
772
  {
773
- "hash": "sha256-wQvF4BNyeJqPVcMEHfyJfBzt/cPWl4IlZ5aq0sIaI+A=",
773
+ "hash": "sha256-bmXXN+uzXoKNR+7AWGzYPLKdBHoBnVGUPns77ucJlYA=",
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-6gWdXbSErtDsra/qSzpM3jZXQ5z+Ug6S53/VkuNS9uU=",
837
+ "hash": "sha256-o0UhvEoaDO27HItUU1Jjt6rCMzgqbcXNVD6Or8XcEHM=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: fenz19NA */
1
+ /* Manifest version: e510O9xl */
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