@mindexec/cli 0.2.59 → 0.2.61
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 +2 -2
- package/remote-hub.js +52 -0
- package/scripts/remote-http-smoke.mjs +13 -0
- package/scripts/remote-hub-smoke.mjs +19 -1
- package/server.js +4 -0
- package/wwwroot/_content/MindExecution.Shared/css/app.css +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +556 -17
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +64 -18
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +2 -2
- package/wwwroot/_framework/MindExecution.Core.csfu1xtj3l.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.cqcbagjpqb.dll → MindExecution.Kernel.mdo1lzjvvp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.tsn0j478un.dll → MindExecution.Plugins.Admin.5fctwf65dx.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.xg74dmn0vz.dll → MindExecution.Plugins.Business.nwivpk9djf.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.xyf0dtv4lr.dll → MindExecution.Plugins.Concept.aa243ne54e.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.9i4bd043ia.dll → MindExecution.Plugins.Directory.jnzcrwl049.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.6awpgrbi0w.dll → MindExecution.Plugins.PlanMaster.udoktewe31.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.phonjrgb40.dll → MindExecution.Plugins.YouTube.z4bhlt9iy7.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.wv4gm07egs.dll → MindExecution.Shared.32hytvk3ws.dll} +0 -0
- package/wwwroot/_framework/MindExecution.Web.730hm0dubp.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +27 -27
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Core.fu1rl67yt3.dll +0 -0
- package/wwwroot/_framework/MindExecution.Web.2qteyfmk41.dll +0 -0
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
{ key: 'gray', swatch: '#6b7280', ring: 'rgba(107, 114, 128, 0.22)' },
|
|
20
20
|
{ key: 'slate', swatch: '#64748b', ring: 'rgba(100, 116, 139, 0.22)' }
|
|
21
21
|
];
|
|
22
|
+
const BUSINESS_AUTOMATION_SEMANTIC_TYPE = 'BusinessAutomationNode';
|
|
22
23
|
|
|
23
24
|
function ensureFeedbackStyles() {
|
|
24
25
|
if (document.getElementById('mindmap-feedback-styles')) return;
|
|
@@ -253,7 +254,36 @@
|
|
|
253
254
|
|
|
254
255
|
function isAgentStyledMemoNode(model) {
|
|
255
256
|
const semanticType = getNodeSemanticType(model);
|
|
256
|
-
return semanticType === 'MindCanvasAgent'
|
|
257
|
+
return semanticType === 'MindCanvasAgent'
|
|
258
|
+
|| semanticType === 'AgentCommand'
|
|
259
|
+
|| semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
function isBusinessAutomationNode(model) {
|
|
263
|
+
return getNodeSemanticType(model) === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
function canRunExecutableNode(model) {
|
|
267
|
+
return isBusinessAutomationNode(model);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
function isExecutableNodeRunning(model) {
|
|
271
|
+
const metadata = ensureMetadata(model);
|
|
272
|
+
return String(metadata.AutomationRunState || '').trim().toLowerCase() === 'running';
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
async function syncNodeRunResultStates(result) {
|
|
276
|
+
if (!result) {
|
|
277
|
+
return;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const nodeStates = Array.isArray(result.nodeStates)
|
|
281
|
+
? result.nodeStates
|
|
282
|
+
: (result.agentNodeState ? [result.agentNodeState] : []);
|
|
283
|
+
|
|
284
|
+
if (nodeStates.length > 0 && window.mindMap?.syncNodeStates) {
|
|
285
|
+
await window.mindMap.syncNodeStates(nodeStates);
|
|
286
|
+
}
|
|
257
287
|
}
|
|
258
288
|
|
|
259
289
|
function isTextFitNode(model) {
|
|
@@ -810,12 +840,27 @@
|
|
|
810
840
|
const btn = document.createElement('button');
|
|
811
841
|
btn.className = `menu-btn ${className}${isDisabled ? ' disabled' : ''}`.trim();
|
|
812
842
|
btn.title = title;
|
|
843
|
+
btn.disabled = isDisabled === true;
|
|
813
844
|
const icon = document.createElement('i');
|
|
814
845
|
icon.className = iconClass;
|
|
815
846
|
btn.appendChild(icon);
|
|
816
847
|
return btn;
|
|
817
848
|
};
|
|
818
849
|
|
|
850
|
+
const appendNodeRunButton = () => {
|
|
851
|
+
if (!canRunExecutableNode(nodeEntry.model)) {
|
|
852
|
+
return false;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
const isRunning = isExecutableNodeRunning(nodeEntry.model);
|
|
856
|
+
container.appendChild(addButton(
|
|
857
|
+
'js-btn-node-run',
|
|
858
|
+
isRunning ? 'Node is running' : 'Run node',
|
|
859
|
+
isRunning ? 'fa-solid fa-spinner' : 'fa-solid fa-play',
|
|
860
|
+
isRunning));
|
|
861
|
+
return true;
|
|
862
|
+
};
|
|
863
|
+
|
|
819
864
|
const appendCompanyButtons = () => {
|
|
820
865
|
if (!canRunAsCompany(nodeEntry.model)) {
|
|
821
866
|
return false;
|
|
@@ -851,8 +896,7 @@
|
|
|
851
896
|
return true;
|
|
852
897
|
}
|
|
853
898
|
|
|
854
|
-
|
|
855
|
-
return true;
|
|
899
|
+
return false;
|
|
856
900
|
};
|
|
857
901
|
|
|
858
902
|
// AI toggle (non-image)
|
|
@@ -869,7 +913,7 @@
|
|
|
869
913
|
hasPrimaryActions = true;
|
|
870
914
|
}
|
|
871
915
|
|
|
872
|
-
hasPrimaryActions = appendCompanyButtons() || hasPrimaryActions;
|
|
916
|
+
hasPrimaryActions = appendNodeRunButton() || appendCompanyButtons() || hasPrimaryActions;
|
|
873
917
|
|
|
874
918
|
if (hasPrimaryActions) {
|
|
875
919
|
addSeparator();
|
|
@@ -1285,28 +1329,30 @@
|
|
|
1285
1329
|
}
|
|
1286
1330
|
// ▲▲▲ [NEW] ▲▲▲
|
|
1287
1331
|
|
|
1288
|
-
const
|
|
1289
|
-
if (
|
|
1290
|
-
|
|
1332
|
+
const nodeRunBtn = element.querySelector('.js-btn-node-run');
|
|
1333
|
+
if (nodeRunBtn) {
|
|
1334
|
+
nodeRunBtn.addEventListener('click', async (e) => {
|
|
1291
1335
|
e.stopPropagation();
|
|
1292
|
-
if (!_module?.dotNetHelper ||
|
|
1336
|
+
if (!_module?.dotNetHelper || nodeRunBtn.disabled) {
|
|
1293
1337
|
return;
|
|
1294
1338
|
}
|
|
1295
1339
|
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
showMenu(nodeId);
|
|
1340
|
+
nodeRunBtn.disabled = true;
|
|
1341
|
+
nodeRunBtn.classList.add('disabled');
|
|
1342
|
+
hideMenu();
|
|
1300
1343
|
|
|
1301
1344
|
try {
|
|
1302
|
-
const result = await _module.dotNetHelper.invokeMethodAsync('
|
|
1303
|
-
|
|
1345
|
+
const result = await _module.dotNetHelper.invokeMethodAsync('RunExecutableNodeFromJs', nodeId);
|
|
1346
|
+
await syncNodeRunResultStates(result);
|
|
1347
|
+
if (result?.success === false) {
|
|
1348
|
+
window.MindMapFeedback?.toast?.(result.message || 'Node run failed.', { kind: 'error' });
|
|
1349
|
+
}
|
|
1304
1350
|
} catch (error) {
|
|
1305
|
-
console.error(`[MindMapMenuManager]
|
|
1306
|
-
|
|
1351
|
+
console.error(`[MindMapMenuManager] RunExecutableNodeFromJs failed for node ${nodeId}`, error);
|
|
1352
|
+
window.MindMapFeedback?.toast?.('Node run failed.', { kind: 'error' });
|
|
1307
1353
|
} finally {
|
|
1308
|
-
|
|
1309
|
-
|
|
1354
|
+
nodeRunBtn.disabled = false;
|
|
1355
|
+
nodeRunBtn.classList.remove('disabled');
|
|
1310
1356
|
}
|
|
1311
1357
|
});
|
|
1312
1358
|
}
|
|
@@ -3822,7 +3822,7 @@
|
|
|
3822
3822
|
});
|
|
3823
3823
|
module._lastLodSelectionIds = currentIds;
|
|
3824
3824
|
}
|
|
3825
|
-
window.MindMapCss3DManager?.syncBusinessAutomationSelectionContext?.(module);
|
|
3825
|
+
window.MindMapCss3DManager?.syncBusinessAutomationSelectionContext?.(module, { force: true });
|
|
3826
3826
|
return;
|
|
3827
3827
|
}
|
|
3828
3828
|
|
|
@@ -3864,7 +3864,7 @@
|
|
|
3864
3864
|
} else {
|
|
3865
3865
|
lodRenderer._lastAppliedLodSelectionKey = `${primarySelectionId}|${Array.from(multiSelectedIds).sort().join(',')}`;
|
|
3866
3866
|
}
|
|
3867
|
-
window.MindMapCss3DManager?.syncBusinessAutomationSelectionContext?.(module);
|
|
3867
|
+
window.MindMapCss3DManager?.syncBusinessAutomationSelectionContext?.(module, { force: true });
|
|
3868
3868
|
module._forceUpdateFrames = Math.max(module._forceUpdateFrames || 0, 1);
|
|
3869
3869
|
}
|
|
3870
3870
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-XzGxmsqKt6pTKBQH7jASc/VuVHQRSCAikBRssoqJlXw=",
|
|
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.56o0tq2bfs.dll": "System.Private.CoreLib.dll",
|
|
126
|
-
"MindExecution.Core.
|
|
127
|
-
"MindExecution.Kernel.
|
|
128
|
-
"MindExecution.Plugins.Admin.
|
|
129
|
-
"MindExecution.Plugins.Business.
|
|
130
|
-
"MindExecution.Plugins.Concept.
|
|
131
|
-
"MindExecution.Plugins.Directory.
|
|
132
|
-
"MindExecution.Plugins.PlanMaster.
|
|
133
|
-
"MindExecution.Plugins.YouTube.
|
|
134
|
-
"MindExecution.Shared.
|
|
135
|
-
"MindExecution.Web.
|
|
126
|
+
"MindExecution.Core.csfu1xtj3l.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.mdo1lzjvvp.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.5fctwf65dx.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.nwivpk9djf.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.aa243ne54e.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.jnzcrwl049.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.udoktewe31.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.z4bhlt9iy7.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.32hytvk3ws.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.730hm0dubp.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.
|
|
282
|
-
"MindExecution.Kernel.
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
281
|
+
"MindExecution.Core.csfu1xtj3l.dll": "sha256-lP9GUQU4xFLsUU4IOwpUjt09mQO5M/bgLAAS8UnjLMs=",
|
|
282
|
+
"MindExecution.Kernel.mdo1lzjvvp.dll": "sha256-Vj21M+Th5MKfLG5Hvg6/uwlDDdwAJwzeIxfWsK9gYhM=",
|
|
283
|
+
"MindExecution.Plugins.Concept.aa243ne54e.dll": "sha256-kqO6iq00qPABm7FxfQn/RwOXA52GczWaaHtmskjOwvY=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.udoktewe31.dll": "sha256-jpIEe1RPYoW2STZ7wD4lViWqu1Ew9ews2hLmYgv3r2E=",
|
|
285
|
+
"MindExecution.Shared.32hytvk3ws.dll": "sha256-JVwuRWe2ggPFDASqFlBF8h9+eNUsaracGVSE5Ki9gxI=",
|
|
286
|
+
"MindExecution.Web.730hm0dubp.dll": "sha256-s0CeFtIorYkdSQXLu29/q8zCPmqTE5U1wLl3480NUOE="
|
|
287
287
|
},
|
|
288
288
|
"lazyAssembly": {
|
|
289
|
-
"MindExecution.Plugins.Admin.
|
|
290
|
-
"MindExecution.Plugins.Business.
|
|
291
|
-
"MindExecution.Plugins.Directory.
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
289
|
+
"MindExecution.Plugins.Admin.5fctwf65dx.dll": "sha256-37+Egd35menNv18hEZ64qjiu0x1r+wFOuO5zDiOGfug=",
|
|
290
|
+
"MindExecution.Plugins.Business.nwivpk9djf.dll": "sha256-iTV0NyCB7fnU+l8brClBd+KYnBDw628yHCwoRrQdTWE=",
|
|
291
|
+
"MindExecution.Plugins.Directory.jnzcrwl049.dll": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.z4bhlt9iy7.dll": "sha256-oyuhbErFTqRSFlpTyhUY3RF/wQvSAho4GDjtDOWXCmk="
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-node-run-relation-v521" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-node-run-relation-v521" />
|
|
12
12
|
<!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
14
|
<!-- ?꿎뼯??-->
|
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
const base = '_content/MindExecution.Shared/js/';
|
|
561
|
-
const scriptVersion = '20260614-
|
|
561
|
+
const scriptVersion = '20260614-node-run-relation-v521';
|
|
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": "
|
|
2
|
+
"version": "WkJSaGa7",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"url": "_content/MindExecution.Shared/css/admin-dashboard.css"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
|
-
"hash": "sha256-
|
|
41
|
+
"hash": "sha256-73c3F3Zgy5mGLfkWcFA7/kVrugrTrP+2iMmzQS/ihzA=",
|
|
42
42
|
"url": "_content/MindExecution.Shared/css/app.css"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-7c4d6Olun819rHgdthAFWTuNFTPa5UQWKKbh+pm+y+s=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
|
-
"hash": "sha256
|
|
125
|
+
"hash": "sha256-3zRp8SDEj138NHYNRni4biazcGvPQ5AcSszA3cGozQ4=",
|
|
126
126
|
"url": "_content/MindExecution.Shared/js/mind-map-menu-manager.js"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"url": "_content/MindExecution.Shared/js/mind-map-node-search-worker.js"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
|
-
"hash": "sha256-
|
|
137
|
+
"hash": "sha256-mrSICB/4JzcwkJIOsnYx0UKe2+LULVfWlw8S7r/clPg=",
|
|
138
138
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
@@ -410,44 +410,44 @@
|
|
|
410
410
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
|
-
"hash": "sha256-
|
|
414
|
-
"url": "_framework/MindExecution.Core.
|
|
413
|
+
"hash": "sha256-lP9GUQU4xFLsUU4IOwpUjt09mQO5M/bgLAAS8UnjLMs=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.csfu1xtj3l.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-Vj21M+Th5MKfLG5Hvg6/uwlDDdwAJwzeIxfWsK9gYhM=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.mdo1lzjvvp.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-37+Egd35menNv18hEZ64qjiu0x1r+wFOuO5zDiOGfug=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.5fctwf65dx.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-iTV0NyCB7fnU+l8brClBd+KYnBDw628yHCwoRrQdTWE=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.nwivpk9djf.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-kqO6iq00qPABm7FxfQn/RwOXA52GczWaaHtmskjOwvY=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.aa243ne54e.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.jnzcrwl049.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-jpIEe1RPYoW2STZ7wD4lViWqu1Ew9ews2hLmYgv3r2E=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.udoktewe31.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-oyuhbErFTqRSFlpTyhUY3RF/wQvSAho4GDjtDOWXCmk=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.z4bhlt9iy7.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-JVwuRWe2ggPFDASqFlBF8h9+eNUsaracGVSE5Ki9gxI=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.32hytvk3ws.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-s0CeFtIorYkdSQXLu29/q8zCPmqTE5U1wLl3480NUOE=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.730hm0dubp.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-
|
|
773
|
+
"hash": "sha256-rgQhJkHCZt7lvFWtGcRdh0rEEhlqOmPHTMNzDuBa7/A=",
|
|
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-
|
|
837
|
+
"hash": "sha256-IV6SkyB7xngjOhQRIIsTrkgkfcyD6d2C4PfsfSNWi9I=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
Binary file
|