@mindexec/cli 0.2.12 → 0.2.14
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/remote-hub.js +12 -0
- package/scripts/remote-fleet-render-smoke.mjs +15 -0
- package/scripts/remote-hub-scale-smoke.mjs +4 -2
- package/scripts/remote-hub-smoke.mjs +4 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +14 -2
- package/wwwroot/_framework/MindExecution.Core.q469sducjw.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.dt3w864bqn.dll → MindExecution.Kernel.lqglgq2jmo.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.z93cu32xru.dll → MindExecution.Plugins.Admin.2jqptn6ylw.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.b6da8sg85t.dll → MindExecution.Plugins.Business.8hzwity3fl.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.sj3ujw4e72.dll → MindExecution.Plugins.Concept.wqdtoeuumu.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.rjod6rdmly.dll → MindExecution.Plugins.Directory.hr2p0grenr.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.ec8ccog2o3.dll → MindExecution.Plugins.PlanMaster.fpq5ydr4s0.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.mk7a07org5.dll → MindExecution.Plugins.YouTube.43m89bf01o.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.mc9gi9kvqg.dll → MindExecution.Shared.y1hdnsq8zq.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.n70z8m41l3.dll → MindExecution.Web.ox678bzo06.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +24 -24
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Core.pnw79cgqjx.dll +0 -0
package/package.json
CHANGED
package/remote-hub.js
CHANGED
|
@@ -377,6 +377,8 @@ export function createRemoteHub(options = {}) {
|
|
|
377
377
|
completedAt: taskStatus === 'completed' || taskStatus === 'failed' ? seenAt : '',
|
|
378
378
|
error: taskStatus === 'failed' ? 'Synthetic task failure sample.' : '',
|
|
379
379
|
resultKind: 'synthetic-agent-task',
|
|
380
|
+
resultModel: hasAiAssist ? 'synthetic-ai' : '',
|
|
381
|
+
resultResponseId: hasAiAssist ? `synthetic-response-${ordinal}` : '',
|
|
380
382
|
resultSummary: taskStatus === 'failed'
|
|
381
383
|
? 'Synthetic task reported a sample issue.'
|
|
382
384
|
: 'Synthetic task completed for scale validation.'
|
|
@@ -638,6 +640,8 @@ export function createRemoteHub(options = {}) {
|
|
|
638
640
|
task.error = error;
|
|
639
641
|
task.resultSummary = error || summarizeTaskResult(result);
|
|
640
642
|
task.resultKind = safeString(result?.kind || result?.mode || 'agent-task', 80);
|
|
643
|
+
task.resultModel = safeString(result?.model || result?.aiModel || '', 120);
|
|
644
|
+
task.resultResponseId = safeString(result?.responseId || result?.id || '', 160);
|
|
641
645
|
device.latestTask = task;
|
|
642
646
|
device.pendingTaskCommands.delete(commandId);
|
|
643
647
|
device.counters.taskResultsReceived += 1;
|
|
@@ -1046,6 +1050,12 @@ export function createRemoteHub(options = {}) {
|
|
|
1046
1050
|
completedAt: now,
|
|
1047
1051
|
error: '',
|
|
1048
1052
|
resultKind: approvalLevel === 'ai-assist' ? 'synthetic-ai-assist' : 'synthetic-agent-task',
|
|
1053
|
+
resultModel: approvalLevel === 'ai-assist'
|
|
1054
|
+
? safeString(options.model, 120) || 'synthetic-ai'
|
|
1055
|
+
: '',
|
|
1056
|
+
resultResponseId: approvalLevel === 'ai-assist'
|
|
1057
|
+
? `synthetic-response-${taskId}`
|
|
1058
|
+
: '',
|
|
1049
1059
|
resultSummary: approvalLevel === 'ai-assist'
|
|
1050
1060
|
? `Synthetic AI assist completed for ${device.deviceName}.`
|
|
1051
1061
|
: `Synthetic task accepted by ${device.deviceName}.`
|
|
@@ -1108,6 +1118,8 @@ export function createRemoteHub(options = {}) {
|
|
|
1108
1118
|
completedAt: '',
|
|
1109
1119
|
error: '',
|
|
1110
1120
|
resultKind: '',
|
|
1121
|
+
resultModel: '',
|
|
1122
|
+
resultResponseId: '',
|
|
1111
1123
|
resultSummary: ''
|
|
1112
1124
|
};
|
|
1113
1125
|
|
|
@@ -362,6 +362,8 @@ function projectDevice(device) {
|
|
|
362
362
|
LatestTaskApprovalLevel: String(latestTask.approvalLevel || ''),
|
|
363
363
|
LatestTaskUpdatedAt: String(latestTask.updatedAt || latestTask.completedAt || latestTask.sentAt || ''),
|
|
364
364
|
LatestTaskError: String(latestTask.error || ''),
|
|
365
|
+
LatestTaskResultModel: String(latestTask.resultModel || ''),
|
|
366
|
+
LatestTaskResultResponseId: String(latestTask.resultResponseId || ''),
|
|
365
367
|
LatestTaskResultSummary: String(latestTask.resultSummary || '')
|
|
366
368
|
};
|
|
367
369
|
}
|
|
@@ -507,6 +509,17 @@ try {
|
|
|
507
509
|
assert.equal(seeded.ok, true);
|
|
508
510
|
assert.equal(seeded.seeded, SYNTHETIC_COUNT);
|
|
509
511
|
|
|
512
|
+
const seededAiTarget = hub.listDevices().find(device =>
|
|
513
|
+
device.connected && device.capabilities?.taskDispatch && device.capabilities?.aiAssist);
|
|
514
|
+
assert.ok(seededAiTarget);
|
|
515
|
+
const renderAiTask = hub.requestAgentTask(seededAiTarget.deviceId, {
|
|
516
|
+
instruction: 'Synthetic render smoke AI task: report model metadata to the canvas.',
|
|
517
|
+
title: 'Render smoke AI task',
|
|
518
|
+
approvalLevel: 'ai-assist',
|
|
519
|
+
model: 'synthetic-render-ai'
|
|
520
|
+
});
|
|
521
|
+
assert.equal(renderAiTask.ok, true);
|
|
522
|
+
|
|
510
523
|
const rawDevices = hub.listDevices();
|
|
511
524
|
const devices = rawDevices.map(projectDevice);
|
|
512
525
|
const connectedCount = devices.filter(device => device.Connected).length;
|
|
@@ -536,6 +549,8 @@ try {
|
|
|
536
549
|
assert.equal(bodyView.querySelector('[data-remote-fleet-action="task-visible"]')?.disabled, false);
|
|
537
550
|
assert.ok(bodyView.textContent.includes('all devices, no paging'));
|
|
538
551
|
assert.ok(bodyView.querySelector('code')?.textContent.includes('npx @mindexec/remote connect'));
|
|
552
|
+
assert.ok(bodyView.textContent.includes('synthetic-render-ai'));
|
|
553
|
+
assert.ok(devices.some(device => /^synthetic-response-/.test(device.LatestTaskResultResponseId)));
|
|
539
554
|
|
|
540
555
|
const searchInput = bodyView.querySelector('[data-remote-fleet-search="true"]');
|
|
541
556
|
searchInput.value = 'synthetic pc 0001';
|
|
@@ -95,8 +95,10 @@ try {
|
|
|
95
95
|
});
|
|
96
96
|
assert.equal(aiResult.ok, true);
|
|
97
97
|
assert.equal(aiResult.approvalLevel, 'ai-assist');
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
const updatedAiTarget = hub.listDevices().find(device => device.deviceId === aiTarget.deviceId);
|
|
99
|
+
assert.equal(updatedAiTarget?.latestTask?.approvalLevel, 'ai-assist');
|
|
100
|
+
assert.equal(updatedAiTarget?.latestTask?.resultModel, 'synthetic-ai');
|
|
101
|
+
assert.match(updatedAiTarget?.latestTask?.resultResponseId || '', /^synthetic-response-/);
|
|
100
102
|
|
|
101
103
|
const cleared = hub.clearSyntheticFleet();
|
|
102
104
|
assert.equal(cleared.ok, true);
|
|
@@ -210,6 +210,8 @@ try {
|
|
|
210
210
|
taskId: aiTaskCommand.taskId,
|
|
211
211
|
status: 'completed',
|
|
212
212
|
summary: 'Smoke AI task accepted.',
|
|
213
|
+
model: 'smoke-ai-model',
|
|
214
|
+
responseId: 'smoke-ai-response',
|
|
213
215
|
completedAt: new Date().toISOString()
|
|
214
216
|
}
|
|
215
217
|
});
|
|
@@ -223,6 +225,8 @@ try {
|
|
|
223
225
|
: null;
|
|
224
226
|
});
|
|
225
227
|
assert.equal(aiTaskDevice.latestTask.resultSummary, 'Smoke AI task accepted.');
|
|
228
|
+
assert.equal(aiTaskDevice.latestTask.resultModel, 'smoke-ai-model');
|
|
229
|
+
assert.equal(aiTaskDevice.latestTask.resultResponseId, 'smoke-ai-response');
|
|
226
230
|
assert.equal(aiTaskDevice.counters.tasksQueued, 2);
|
|
227
231
|
assert.equal(aiTaskDevice.counters.taskResultsReceived, 2);
|
|
228
232
|
|
|
@@ -12292,6 +12292,8 @@
|
|
|
12292
12292
|
isRemoteFleetLiveActive(device) ? 'live active remote-fast' : '',
|
|
12293
12293
|
getRemoteFleetDeviceField(device, 'latestTaskTitle', 'LatestTaskTitle', ''),
|
|
12294
12294
|
getRemoteFleetDeviceField(device, 'latestTaskStatus', 'LatestTaskStatus', ''),
|
|
12295
|
+
getRemoteFleetDeviceField(device, 'latestTaskResultModel', 'LatestTaskResultModel', ''),
|
|
12296
|
+
getRemoteFleetDeviceField(device, 'latestTaskResultResponseId', 'LatestTaskResultResponseId', ''),
|
|
12295
12297
|
getRemoteFleetDeviceField(device, 'latestTaskResultSummary', 'LatestTaskResultSummary', ''),
|
|
12296
12298
|
getRemoteFleetDeviceField(device, 'latestTaskError', 'LatestTaskError', '')
|
|
12297
12299
|
].join(' ').toLowerCase();
|
|
@@ -12470,6 +12472,8 @@
|
|
|
12470
12472
|
const latestTaskApproval = String(getRemoteFleetDeviceField(device, 'latestTaskApprovalLevel', 'LatestTaskApprovalLevel', ''));
|
|
12471
12473
|
const latestTaskUpdatedAt = String(getRemoteFleetDeviceField(device, 'latestTaskUpdatedAt', 'LatestTaskUpdatedAt', ''));
|
|
12472
12474
|
const latestTaskError = String(getRemoteFleetDeviceField(device, 'latestTaskError', 'LatestTaskError', ''));
|
|
12475
|
+
const latestTaskResultModel = String(getRemoteFleetDeviceField(device, 'latestTaskResultModel', 'LatestTaskResultModel', ''));
|
|
12476
|
+
const latestTaskResultResponseId = String(getRemoteFleetDeviceField(device, 'latestTaskResultResponseId', 'LatestTaskResultResponseId', ''));
|
|
12473
12477
|
const latestTaskResult = String(getRemoteFleetDeviceField(device, 'latestTaskResultSummary', 'LatestTaskResultSummary', ''));
|
|
12474
12478
|
|
|
12475
12479
|
const header = document.createElement('div');
|
|
@@ -12587,7 +12591,10 @@
|
|
|
12587
12591
|
`;
|
|
12588
12592
|
const taskLine = document.createElement('div');
|
|
12589
12593
|
const taskModeLabel = latestTaskApproval === 'ai-assist' ? 'AI' : 'Task';
|
|
12590
|
-
taskLine.textContent = `${taskModeLabel} ${latestTaskStatus || 'task'}${latestTaskUpdatedAt ? ` - ${formatRemoteFleetAge(latestTaskUpdatedAt)}` : ''}`;
|
|
12594
|
+
taskLine.textContent = `${taskModeLabel} ${latestTaskStatus || 'task'}${latestTaskUpdatedAt ? ` - ${formatRemoteFleetAge(latestTaskUpdatedAt)}` : ''}${latestTaskResultModel ? ` - ${latestTaskResultModel}` : ''}`;
|
|
12595
|
+
taskLine.title = latestTaskResultResponseId
|
|
12596
|
+
? `${taskLine.textContent} (${latestTaskResultResponseId})`
|
|
12597
|
+
: taskLine.textContent;
|
|
12591
12598
|
taskLine.style.cssText = `color:${taskTone === 'error' ? '#991b1b' : taskTone === 'done' ? '#047857' : '#1d4ed8'};font-size:10px;font-weight:900;line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0;`;
|
|
12592
12599
|
const taskSummary = document.createElement('div');
|
|
12593
12600
|
taskSummary.textContent = latestTaskError || latestTaskResult || latestTaskTitle || 'Task queued';
|
|
@@ -13376,6 +13383,8 @@
|
|
|
13376
13383
|
const latestTaskApproval = String(device?.latestTaskApprovalLevel || device?.LatestTaskApprovalLevel || '');
|
|
13377
13384
|
const latestTaskUpdatedAt = String(device?.latestTaskUpdatedAt || device?.LatestTaskUpdatedAt || '');
|
|
13378
13385
|
const latestTaskError = String(device?.latestTaskError || device?.LatestTaskError || '');
|
|
13386
|
+
const latestTaskResultModel = String(device?.latestTaskResultModel || device?.LatestTaskResultModel || '');
|
|
13387
|
+
const latestTaskResultResponseId = String(device?.latestTaskResultResponseId || device?.LatestTaskResultResponseId || '');
|
|
13379
13388
|
const latestTaskResult = String(device?.latestTaskResultSummary || device?.LatestTaskResultSummary || '');
|
|
13380
13389
|
const groupInfo = getRemoteFleetGroupInfo(device, groupState);
|
|
13381
13390
|
if (groupState !== 'none' && groupInfo.key && groupInfo.key !== lastGroupKey) {
|
|
@@ -13613,7 +13622,10 @@
|
|
|
13613
13622
|
`;
|
|
13614
13623
|
const taskLine = document.createElement('div');
|
|
13615
13624
|
const taskModeLabel = latestTaskApproval === 'ai-assist' ? 'AI' : 'Task';
|
|
13616
|
-
taskLine.textContent = `${taskModeLabel} ${latestTaskStatus || 'task'}${latestTaskUpdatedAt ? ` - ${formatRemoteFleetAge(latestTaskUpdatedAt)}` : ''}`;
|
|
13625
|
+
taskLine.textContent = `${taskModeLabel} ${latestTaskStatus || 'task'}${latestTaskUpdatedAt ? ` - ${formatRemoteFleetAge(latestTaskUpdatedAt)}` : ''}${latestTaskResultModel ? ` - ${latestTaskResultModel}` : ''}`;
|
|
13626
|
+
taskLine.title = latestTaskResultResponseId
|
|
13627
|
+
? `${taskLine.textContent} (${latestTaskResultResponseId})`
|
|
13628
|
+
: taskLine.textContent;
|
|
13617
13629
|
taskLine.style.cssText = `
|
|
13618
13630
|
color: ${taskTone === 'error' ? '#991b1b' : taskTone === 'done' ? '#047857' : '#1d4ed8'};
|
|
13619
13631
|
font-size: 10px;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.n70z8m41l3.dll → MindExecution.Web.ox678bzo06.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-GlTNEJ0ZfPP6DnkregRY8SmRVXZU12TGhQpfIuIwr0I=",
|
|
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.m05i39uvk9.dll": "System.dll",
|
|
124
124
|
"netstandard.0xet7jg7ky.dll": "netstandard.dll",
|
|
125
125
|
"System.Private.CoreLib.rkafq04oma.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.q469sducjw.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.lqglgq2jmo.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.2jqptn6ylw.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.8hzwity3fl.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.wqdtoeuumu.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.hr2p0grenr.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.fpq5ydr4s0.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.43m89bf01o.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.y1hdnsq8zq.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.ox678bzo06.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",
|
|
@@ -278,18 +278,18 @@
|
|
|
278
278
|
"System.Xml.XDocument.c539ki6cuq.dll": "sha256-MPTRJkptrL9nGa2tl4kF46+wErNUYRPCGblX3ANoKoY=",
|
|
279
279
|
"System.m05i39uvk9.dll": "sha256-5jDfIdbYAigw7/Q/lMzt5W/+cayGbW9ko9FvuaN1GsQ=",
|
|
280
280
|
"netstandard.0xet7jg7ky.dll": "sha256-xENDv620uJ8fHwLJ2bdhrTHz4QPjvqXOztnk2a4wr0c=",
|
|
281
|
-
"MindExecution.Core.
|
|
282
|
-
"MindExecution.Kernel.
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
281
|
+
"MindExecution.Core.q469sducjw.dll": "sha256-tqgvXepOZPfdkyxH1BK3KlhL8azJjoV+iV/BismieCc=",
|
|
282
|
+
"MindExecution.Kernel.lqglgq2jmo.dll": "sha256-AyAPsZpAwsH/HeC6cWVzRH50hBjGAoamzGup6clWJTg=",
|
|
283
|
+
"MindExecution.Plugins.Concept.wqdtoeuumu.dll": "sha256-2FoeeE612eZV39wbEI+Soq3dmXibSZjHP/IKnbzok70=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.fpq5ydr4s0.dll": "sha256-c3xRnRTCa3xuB2/xJyrLoyuZ1owk3BM6ft/SmnV4u7U=",
|
|
285
|
+
"MindExecution.Shared.y1hdnsq8zq.dll": "sha256-lp71ky431zxHwFMHmb2TKH+NQk4e+rs9Od4a0gOoBgU=",
|
|
286
|
+
"MindExecution.Web.ox678bzo06.dll": "sha256-JJ17QCB0KRHtXGQKuM7WQHQLtCfLg+s+CW7j3X/TE+I="
|
|
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.2jqptn6ylw.dll": "sha256-ctRNgHtUfPq0pCvAeG0DCzZPBRTgLtQC2c4pjGFM+Go=",
|
|
290
|
+
"MindExecution.Plugins.Business.8hzwity3fl.dll": "sha256-ZL74Jut/WgaNdDBWZzhC6ECsjBdm+0cB1P5fx4ACugM=",
|
|
291
|
+
"MindExecution.Plugins.Directory.hr2p0grenr.dll": "sha256-PUrdpFqGptJ5kxYaarWNwB2NmZ1TphHnFHlnyQL48DI=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.43m89bf01o.dll": "sha256-0MYkUpuqSUwsFGO/XYud82hbXMIngLds7GHRN4yyXjQ="
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
const base = '_content/MindExecution.Shared/js/';
|
|
561
|
-
const scriptVersion = '20260612-remote-
|
|
561
|
+
const scriptVersion = '20260612-remote-thumbnail-scheduler-v473';
|
|
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": "QLa+sMNb",
|
|
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-
|
|
89
|
+
"hash": "sha256-TRPlxHfTd5M/XAy1bnnYRmTFqExG/OMAo4jSJSVcZjk=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -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-tqgvXepOZPfdkyxH1BK3KlhL8azJjoV+iV/BismieCc=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.q469sducjw.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-AyAPsZpAwsH/HeC6cWVzRH50hBjGAoamzGup6clWJTg=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.lqglgq2jmo.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-ctRNgHtUfPq0pCvAeG0DCzZPBRTgLtQC2c4pjGFM+Go=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.2jqptn6ylw.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-ZL74Jut/WgaNdDBWZzhC6ECsjBdm+0cB1P5fx4ACugM=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.8hzwity3fl.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-2FoeeE612eZV39wbEI+Soq3dmXibSZjHP/IKnbzok70=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.wqdtoeuumu.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-PUrdpFqGptJ5kxYaarWNwB2NmZ1TphHnFHlnyQL48DI=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.hr2p0grenr.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-c3xRnRTCa3xuB2/xJyrLoyuZ1owk3BM6ft/SmnV4u7U=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.fpq5ydr4s0.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-0MYkUpuqSUwsFGO/XYud82hbXMIngLds7GHRN4yyXjQ=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.43m89bf01o.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-lp71ky431zxHwFMHmb2TKH+NQk4e+rs9Od4a0gOoBgU=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.y1hdnsq8zq.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-JJ17QCB0KRHtXGQKuM7WQHQLtCfLg+s+CW7j3X/TE+I=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.ox678bzo06.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-LPeEgdSHt/c+wCTt4C1Z8+0CvQSzl5rxeojM+0OQDcU=",
|
|
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-YtEozKS1KbDYp9w3j2ecyHIFvGm3zqvygqym/zN71vk=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|