@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.
- package/package.json +1 -1
- package/server.js +23 -1
- package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +24 -0
- package/wwwroot/_framework/MindExecution.Core.2ftvuvqu67.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.n5peonkatw.dll → MindExecution.Kernel.cmj7iee8oy.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.5zyeb2m709.dll → MindExecution.Plugins.Admin.5yrzrhtmmm.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.qf0u584aql.dll → MindExecution.Plugins.Business.a3bmsg1dnh.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.dol9cxm11l.dll → MindExecution.Plugins.Concept.f9homr6n4i.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.1argo44nph.dll → MindExecution.Plugins.Directory.m7ysyihlbt.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll → MindExecution.Plugins.PlanMaster.8wjvup3b7p.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.wr4ic92azb.dll → MindExecution.Plugins.YouTube.17ghd27wl4.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.t8xvnypbv2.dll → MindExecution.Shared.l8qcfxyzrh.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.m8joypnkws.dll → MindExecution.Web.2k7mg1sk3c.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +6 -6
- package/wwwroot/service-worker-assets.js +24 -24
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Core.te2oaei5ec.dll +0 -0
package/package.json
CHANGED
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
|
|
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,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.m8joypnkws.dll → MindExecution.Web.2k7mg1sk3c.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
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.
|
|
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.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.
|
|
282
|
-
"MindExecution.Kernel.
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
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.
|
|
290
|
-
"MindExecution.Plugins.Business.
|
|
291
|
-
"MindExecution.Plugins.Directory.
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
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,
|
package/wwwroot/index.html
CHANGED
|
@@ -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 |
|
|
8
|
-
<meta name="description" content="MindExec is an AI 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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-
|
|
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
|
|
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-
|
|
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": "
|
|
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-
|
|
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-
|
|
414
|
-
"url": "_framework/MindExecution.Core.
|
|
413
|
+
"hash": "sha256-roAm0R9R5EcvDmkddrRfPBxzes/NOMAywwP1kFGVHvM=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.2ftvuvqu67.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-FIkseVYemh0/JXJjh3ylkXh1MdTOoIke4SAFlsdI/3E=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.cmj7iee8oy.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-Padus/RMWHdWsMVmnTLAfPB0wwRhGx5hGfEYfDbjEvg=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.5yrzrhtmmm.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-pg1rtZgWTHpigzwMuI6jMBjEyQA8EeCfjdkKJY0BYos=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.a3bmsg1dnh.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-Y6+S8b90AT5bLANz/TFdYE4F9Ch3+mELZyaeamp2gXo=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.f9homr6n4i.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-zim6x3zNF7DoFE2KXc1CLnsJ46NvM5s8VAZMdq/7fZY=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.m7ysyihlbt.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-iLfp4RHpNuzU11GA0tPbNx8dv5SPe7rA/fwkJBirgkU=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.8wjvup3b7p.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-w65qTL5GeBT8ecV4KnEXGD5NMUcgE4iSAlCi/i4YYkU=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.17ghd27wl4.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-1YLqE/8OfihJWNS2fvZMe2G21q5gfMtz0HEq2yzqgxc=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.l8qcfxyzrh.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
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-
|
|
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-
|
|
837
|
+
"hash": "sha256-a9d5TwibgvTP1dMLk0k50u9Gcj1DArMoZAK+cCYOViY=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|