@mindexec/cli 0.2.52 → 0.2.53
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 +29 -0
- package/scripts/remote-http-smoke.mjs +34 -0
- package/server.js +17 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +35 -3
- package/wwwroot/_framework/MindExecution.Core.fu1rl67yt3.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.jgfwunsvz4.dll → MindExecution.Kernel.cqcbagjpqb.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.uz1ws5p7x5.dll → MindExecution.Plugins.Admin.tsn0j478un.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.yeedyl4etv.dll → MindExecution.Plugins.Business.xg74dmn0vz.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.i8wxwseow8.dll → MindExecution.Plugins.Concept.j0zntvuecv.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.mbuksx1hqq.dll → MindExecution.Plugins.Directory.9i4bd043ia.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.vp3cl6bvxb.dll → MindExecution.Plugins.PlanMaster.vml3qie2ji.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.snkp6shzuk.dll → MindExecution.Plugins.YouTube.0gfbwq1jfg.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.irzb0k7hye.dll → MindExecution.Shared.f3bclzo6k4.dll} +0 -0
- package/wwwroot/_framework/MindExecution.Web.4jhsxoiqgz.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +24 -24
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Core.07ktly047n.dll +0 -0
- package/wwwroot/_framework/MindExecution.Web.td6ps8xw4t.dll +0 -0
package/package.json
CHANGED
package/remote-hub.js
CHANGED
|
@@ -512,6 +512,34 @@ export function createRemoteHub(options = {}) {
|
|
|
512
512
|
});
|
|
513
513
|
}
|
|
514
514
|
|
|
515
|
+
function listDeviceFrames(options = {}) {
|
|
516
|
+
const ids = Array.isArray(options.deviceIds)
|
|
517
|
+
? options.deviceIds.map(value => safeString(value, 160)).filter(Boolean)
|
|
518
|
+
: [];
|
|
519
|
+
const idSet = ids.length > 0 ? new Set(ids) : null;
|
|
520
|
+
const includeThumbnail = options.includeThumbnail !== false;
|
|
521
|
+
const includeLive = options.includeLive !== false;
|
|
522
|
+
|
|
523
|
+
return [...devices.values()]
|
|
524
|
+
.filter(device => !idSet || idSet.has(device.deviceId))
|
|
525
|
+
.map(device => ({
|
|
526
|
+
deviceId: device.deviceId,
|
|
527
|
+
connected: device.connected === true,
|
|
528
|
+
thumbnailEnabled: readCapabilityFlag(device.capabilities, 'thumbnail'),
|
|
529
|
+
liveStreamActive: device.activeLiveStream?.active === true,
|
|
530
|
+
liveStreamId: device.activeLiveStream?.streamId || '',
|
|
531
|
+
liveStreamFps: Number(device.activeLiveStream?.fps || 0),
|
|
532
|
+
liveStreamLastFrameAt: device.activeLiveStream?.lastFrameAt || '',
|
|
533
|
+
thumbnail: includeThumbnail
|
|
534
|
+
? serializeRemoteFrame(device.latestThumbnail, device.deviceId, 'thumbnail', { includeDataUrl: false })
|
|
535
|
+
: null,
|
|
536
|
+
live: includeLive
|
|
537
|
+
? serializeRemoteFrame(device.latestLiveFrame, device.deviceId, 'live', { includeDataUrl: false })
|
|
538
|
+
: null
|
|
539
|
+
}))
|
|
540
|
+
.sort((a, b) => String(a.deviceId).localeCompare(String(b.deviceId)));
|
|
541
|
+
}
|
|
542
|
+
|
|
515
543
|
function listTaskBatches() {
|
|
516
544
|
return [...taskBatches.values()]
|
|
517
545
|
.map(serializeTaskBatch)
|
|
@@ -2100,6 +2128,7 @@ export function createRemoteHub(options = {}) {
|
|
|
2100
2128
|
listDevices,
|
|
2101
2129
|
listTaskBatches,
|
|
2102
2130
|
getLatestTaskBatch,
|
|
2131
|
+
listDeviceFrames,
|
|
2103
2132
|
disconnectDevice,
|
|
2104
2133
|
sendCommand,
|
|
2105
2134
|
requestAgentTask,
|
|
@@ -377,6 +377,23 @@ async function runSyntheticEnabledSmoke() {
|
|
|
377
377
|
assert.ok(urlOnlyThumbnailDevice?.latestThumbnail?.framePath);
|
|
378
378
|
assert.ok(!('dataUrl' in urlOnlyThumbnailDevice.latestThumbnail));
|
|
379
379
|
|
|
380
|
+
const thumbnailFramesOnly = await fetchJson(`${baseUrl}/api/remote/frames`, {
|
|
381
|
+
method: 'POST',
|
|
382
|
+
token: BRIDGE_TOKEN,
|
|
383
|
+
body: JSON.stringify({
|
|
384
|
+
deviceIds: [thumbnailTarget.deviceId],
|
|
385
|
+
includeThumbnail: true,
|
|
386
|
+
includeLive: true
|
|
387
|
+
})
|
|
388
|
+
});
|
|
389
|
+
assert.equal(thumbnailFramesOnly.ok, true, JSON.stringify(thumbnailFramesOnly.payload));
|
|
390
|
+
assert.equal(thumbnailFramesOnly.payload?.ok, true);
|
|
391
|
+
assert.equal(thumbnailFramesOnly.payload?.frames?.length, 1);
|
|
392
|
+
assert.equal(thumbnailFramesOnly.payload.frames[0].deviceId, thumbnailTarget.deviceId);
|
|
393
|
+
assert.equal(thumbnailFramesOnly.payload.frames[0].thumbnailEnabled, true);
|
|
394
|
+
assert.ok(String(thumbnailFramesOnly.payload.frames[0].thumbnail?.framePath || '').includes(`/api/remote/devices/${encodeURIComponent(thumbnailTarget.deviceId)}/thumbnail?`));
|
|
395
|
+
assert.ok(!('dataUrl' in thumbnailFramesOnly.payload.frames[0].thumbnail));
|
|
396
|
+
|
|
380
397
|
const liveTarget = devicesResult.payload.devices.find(device =>
|
|
381
398
|
device.connected && device.capabilities?.liveStream);
|
|
382
399
|
assert.ok(liveTarget);
|
|
@@ -419,6 +436,23 @@ async function runSyntheticEnabledSmoke() {
|
|
|
419
436
|
const badLiveSeq = await fetchBinary(`${baseUrl}${liveFrame.payload.frame.framePath.replace(/seq=\d+/, 'seq=999999')}`);
|
|
420
437
|
assert.equal(badLiveSeq.status, 401);
|
|
421
438
|
|
|
439
|
+
const liveFramesOnly = await fetchJson(`${baseUrl}/api/remote/frames`, {
|
|
440
|
+
method: 'POST',
|
|
441
|
+
token: BRIDGE_TOKEN,
|
|
442
|
+
body: JSON.stringify({
|
|
443
|
+
deviceIds: [liveTarget.deviceId],
|
|
444
|
+
includeThumbnail: true,
|
|
445
|
+
includeLive: true
|
|
446
|
+
})
|
|
447
|
+
});
|
|
448
|
+
assert.equal(liveFramesOnly.ok, true, JSON.stringify(liveFramesOnly.payload));
|
|
449
|
+
assert.equal(liveFramesOnly.payload?.ok, true);
|
|
450
|
+
assert.equal(liveFramesOnly.payload?.frames?.length, 1);
|
|
451
|
+
assert.equal(liveFramesOnly.payload.frames[0].deviceId, liveTarget.deviceId);
|
|
452
|
+
assert.equal(liveFramesOnly.payload.frames[0].liveStreamActive, true);
|
|
453
|
+
assert.ok(String(liveFramesOnly.payload.frames[0].live?.framePath || '').includes(`/api/remote/devices/${encodeURIComponent(liveTarget.deviceId)}/live/frame?`));
|
|
454
|
+
assert.ok(!('dataUrl' in liveFramesOnly.payload.frames[0].live));
|
|
455
|
+
|
|
422
456
|
const liveStop = await fetchJson(`${baseUrl}/api/remote/devices/${encodeURIComponent(liveTarget.deviceId)}/live/stop`, {
|
|
423
457
|
method: 'POST',
|
|
424
458
|
token: BRIDGE_TOKEN,
|
package/server.js
CHANGED
|
@@ -7284,6 +7284,23 @@ app.get('/api/remote/devices', (req, res) => {
|
|
|
7284
7284
|
});
|
|
7285
7285
|
});
|
|
7286
7286
|
|
|
7287
|
+
app.post('/api/remote/frames', (req, res) => {
|
|
7288
|
+
res.setHeader('Cache-Control', 'no-store');
|
|
7289
|
+
const deviceIds = Array.isArray(req.body?.deviceIds)
|
|
7290
|
+
? req.body.deviceIds.map(value => String(value || '').trim()).filter(Boolean).slice(0, 120)
|
|
7291
|
+
: [];
|
|
7292
|
+
const frames = remoteHub.listDeviceFrames({
|
|
7293
|
+
deviceIds,
|
|
7294
|
+
includeThumbnail: req.body?.includeThumbnail !== false,
|
|
7295
|
+
includeLive: req.body?.includeLive !== false
|
|
7296
|
+
});
|
|
7297
|
+
res.json({
|
|
7298
|
+
ok: true,
|
|
7299
|
+
total: frames.length,
|
|
7300
|
+
frames
|
|
7301
|
+
});
|
|
7302
|
+
});
|
|
7303
|
+
|
|
7287
7304
|
app.post('/api/remote/host-target', (req, res) => {
|
|
7288
7305
|
res.setHeader('Cache-Control', 'no-store');
|
|
7289
7306
|
res.json(remoteHub.setHostTarget({
|
|
@@ -12920,7 +12920,7 @@
|
|
|
12920
12920
|
bodyView._remoteFleetMonitorRefreshTimer = null;
|
|
12921
12921
|
}
|
|
12922
12922
|
if (bodyView._remoteFleetFrameLoopRaf) {
|
|
12923
|
-
|
|
12923
|
+
cancelRemoteFleetFrameLoopFrame(bodyView._remoteFleetFrameLoopRaf);
|
|
12924
12924
|
bodyView._remoteFleetFrameLoopRaf = null;
|
|
12925
12925
|
}
|
|
12926
12926
|
bodyView._remoteFleetFrameLoopActive = false;
|
|
@@ -12935,6 +12935,38 @@
|
|
|
12935
12935
|
}
|
|
12936
12936
|
}
|
|
12937
12937
|
|
|
12938
|
+
function requestRemoteFleetFrameLoopFrame(callback) {
|
|
12939
|
+
if (typeof requestAnimationFrame === 'function') {
|
|
12940
|
+
return {
|
|
12941
|
+
kind: 'raf',
|
|
12942
|
+
id: requestAnimationFrame(callback)
|
|
12943
|
+
};
|
|
12944
|
+
}
|
|
12945
|
+
|
|
12946
|
+
return {
|
|
12947
|
+
kind: 'timeout',
|
|
12948
|
+
id: setTimeout(
|
|
12949
|
+
() => callback(typeof performance !== 'undefined' ? performance.now() : Date.now()),
|
|
12950
|
+
33
|
|
12951
|
+
)
|
|
12952
|
+
};
|
|
12953
|
+
}
|
|
12954
|
+
|
|
12955
|
+
function cancelRemoteFleetFrameLoopFrame(handle) {
|
|
12956
|
+
if (!handle) {
|
|
12957
|
+
return;
|
|
12958
|
+
}
|
|
12959
|
+
|
|
12960
|
+
if (handle.kind === 'timeout') {
|
|
12961
|
+
clearTimeout(handle.id);
|
|
12962
|
+
return;
|
|
12963
|
+
}
|
|
12964
|
+
|
|
12965
|
+
if (typeof cancelAnimationFrame === 'function') {
|
|
12966
|
+
cancelAnimationFrame(handle.id);
|
|
12967
|
+
}
|
|
12968
|
+
}
|
|
12969
|
+
|
|
12938
12970
|
function getRemoteFleetDeviceField(device, camelKey, pascalKey, fallback = '') {
|
|
12939
12971
|
const value = device?.[camelKey] ?? device?.[pascalKey] ?? fallback;
|
|
12940
12972
|
return value === undefined || value === null ? fallback : value;
|
|
@@ -13179,10 +13211,10 @@
|
|
|
13179
13211
|
});
|
|
13180
13212
|
}
|
|
13181
13213
|
|
|
13182
|
-
bodyView._remoteFleetFrameLoopRaf =
|
|
13214
|
+
bodyView._remoteFleetFrameLoopRaf = requestRemoteFleetFrameLoopFrame(loop);
|
|
13183
13215
|
};
|
|
13184
13216
|
|
|
13185
|
-
bodyView._remoteFleetFrameLoopRaf =
|
|
13217
|
+
bodyView._remoteFleetFrameLoopRaf = requestRemoteFleetFrameLoopFrame(loop);
|
|
13186
13218
|
}
|
|
13187
13219
|
|
|
13188
13220
|
function isRemoteFleetLiveActive(device) {
|
|
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-FI1aVvJXZHMtJ4l634osWbTe8sQ5rfdCKfSBgDnqQ70=",
|
|
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.ns29bor93l.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.fu1rl67yt3.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.cqcbagjpqb.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.tsn0j478un.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.xg74dmn0vz.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.j0zntvuecv.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.9i4bd043ia.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.vml3qie2ji.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.0gfbwq1jfg.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.f3bclzo6k4.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.4jhsxoiqgz.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.fu1rl67yt3.dll": "sha256-6cDbehKdjX71zeL9Ro5GNupn7wqRYfb7yLW2w3Wp05g=",
|
|
282
|
+
"MindExecution.Kernel.cqcbagjpqb.dll": "sha256-zPB0tmwi/UKdJ//g0xMH1Y02ahDX5ii6ZKdB3yiQQz4=",
|
|
283
|
+
"MindExecution.Plugins.Concept.j0zntvuecv.dll": "sha256-/XUaopvgQk71o+jBdb3ljhCAQkXrda6XxCzS0242pIo=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.vml3qie2ji.dll": "sha256-uS3p/j4Kq171sz/xkiEn08DZni3X6HLbq2OHsYcxIjg=",
|
|
285
|
+
"MindExecution.Shared.f3bclzo6k4.dll": "sha256-1ZuF0eTN8dm8o0BzDJX+lyuKB1Wlc8MO2+kPJx/TYec=",
|
|
286
|
+
"MindExecution.Web.4jhsxoiqgz.dll": "sha256-QPegscpX6rm9Fp7lPqHdeKDVUFshfip6frFo62NWuss="
|
|
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.tsn0j478un.dll": "sha256-g5Q4Ihy2PJKx6EFB6k78dIszLgK4hZ3Xintjvso/zmw=",
|
|
290
|
+
"MindExecution.Plugins.Business.xg74dmn0vz.dll": "sha256-0bP/QgMyXSk9IlQVun63rnWvkwqqZmJcRe90QoPC6jw=",
|
|
291
|
+
"MindExecution.Plugins.Directory.9i4bd043ia.dll": "sha256-b+fpVz2RkQC8uL4dIvN6wMWWefoII84Jyfe85EU/URk=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.0gfbwq1jfg.dll": "sha256-EEXiqTRw/mDzke0TaI/QAlp2DRCQCfL4lzGSH0pRZ4c="
|
|
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-remote-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-remote-frame-meta-v513" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-frame-meta-v513" />
|
|
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-remote-
|
|
561
|
+
const scriptVersion = '20260614-remote-frame-meta-v513';
|
|
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": "3rReX/U0",
|
|
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-U5R3dUgCFR7qo8wM4p3MlIDxa9ZCd686fnrWvQFfSfs=",
|
|
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-6cDbehKdjX71zeL9Ro5GNupn7wqRYfb7yLW2w3Wp05g=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.fu1rl67yt3.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-zPB0tmwi/UKdJ//g0xMH1Y02ahDX5ii6ZKdB3yiQQz4=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.cqcbagjpqb.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-g5Q4Ihy2PJKx6EFB6k78dIszLgK4hZ3Xintjvso/zmw=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.tsn0j478un.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-0bP/QgMyXSk9IlQVun63rnWvkwqqZmJcRe90QoPC6jw=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.xg74dmn0vz.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-/XUaopvgQk71o+jBdb3ljhCAQkXrda6XxCzS0242pIo=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.j0zntvuecv.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-b+fpVz2RkQC8uL4dIvN6wMWWefoII84Jyfe85EU/URk=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.9i4bd043ia.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-uS3p/j4Kq171sz/xkiEn08DZni3X6HLbq2OHsYcxIjg=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.vml3qie2ji.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-EEXiqTRw/mDzke0TaI/QAlp2DRCQCfL4lzGSH0pRZ4c=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.0gfbwq1jfg.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-1ZuF0eTN8dm8o0BzDJX+lyuKB1Wlc8MO2+kPJx/TYec=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.f3bclzo6k4.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-QPegscpX6rm9Fp7lPqHdeKDVUFshfip6frFo62NWuss=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.4jhsxoiqgz.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-XdUGtIDw1SDDWXPLtg2RaeuvCW6T6yjMxok5H9KUFaE=",
|
|
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-KqDHFUlmca/5qM/MGimpiIQKNxh1Udxo7/O1bDIsk+s=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
Binary file
|