@mindexec/cli 0.2.461 → 0.2.464
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/electron/main.cjs +6 -3
- package/electron/recurring-update-owner-smoke.mjs +18 -1
- package/electron/recurring-update-owner.cjs +9 -5
- package/package.json +5 -4
- package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
- package/scripts/drive-installed-update-smoke.mjs +67 -0
- package/wwwroot/_framework/{MindExecution.Core.0b8jdcyhj8.dll → MindExecution.Core.8qo2jd7tuo.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.hm6hmoblm6.dll → MindExecution.Kernel.s20qz1vf5c.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.oztzw186ns.dll → MindExecution.Plugins.Admin.th7yn9x0f6.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.a1e73rkgjv.dll → MindExecution.Plugins.Business.5oxedy1s9k.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.rgwn0b8m2o.dll → MindExecution.Plugins.Concept.3687y3dptp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.2qeqqundtn.dll → MindExecution.Plugins.Directory.9nttshvjo8.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.mlf2c4st5u.dll → MindExecution.Plugins.PlanMaster.poo6g7knqo.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.acobc6tmxc.dll → MindExecution.Plugins.YouTube.fyved6pyst.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.6lbogo6eek.dll → MindExecution.Shared.pldp11njra.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.y97l6vu05i.dll → MindExecution.Web.vldms1qzyf.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/service-worker-assets.js +22 -22
- package/wwwroot/service-worker.js +1 -1
package/electron/main.cjs
CHANGED
|
@@ -8,7 +8,10 @@ const net = require('net');
|
|
|
8
8
|
const path = require('path');
|
|
9
9
|
const workspaceState = require('../desktop-workspace-state.cjs');
|
|
10
10
|
const { createProductUpdateManager } = require('./update-manager.cjs');
|
|
11
|
-
const {
|
|
11
|
+
const {
|
|
12
|
+
DEFAULT_UPDATE_INTERVAL_MS,
|
|
13
|
+
createRecurringProductUpdateOwner
|
|
14
|
+
} = require('./recurring-update-owner.cjs');
|
|
12
15
|
|
|
13
16
|
const { resolveDesktopWorkspace } = workspaceState;
|
|
14
17
|
|
|
@@ -295,8 +298,8 @@ function initializeProductUpdates() {
|
|
|
295
298
|
recurringProductUpdates = createRecurringProductUpdateOwner({
|
|
296
299
|
manager: productUpdates,
|
|
297
300
|
canRun: () => !isQuitting && !updateInstallSequenceStarted,
|
|
298
|
-
initialDelayMs:
|
|
299
|
-
intervalMs:
|
|
301
|
+
initialDelayMs: DEFAULT_UPDATE_INTERVAL_MS,
|
|
302
|
+
intervalMs: DEFAULT_UPDATE_INTERVAL_MS,
|
|
300
303
|
onError: error => appendDesktopLog(`[update:recurring-error] ${error?.stack || error}`)
|
|
301
304
|
});
|
|
302
305
|
}
|
|
@@ -2,7 +2,24 @@ import assert from 'node:assert/strict';
|
|
|
2
2
|
import test from 'node:test';
|
|
3
3
|
import recurringOwnerModule from './recurring-update-owner.cjs';
|
|
4
4
|
|
|
5
|
-
const {
|
|
5
|
+
const {
|
|
6
|
+
DEFAULT_UPDATE_INTERVAL_MS,
|
|
7
|
+
createRecurringProductUpdateOwner
|
|
8
|
+
} = recurringOwnerModule;
|
|
9
|
+
|
|
10
|
+
test('default recurring update cadence is one minute after the startup check', () => {
|
|
11
|
+
const owner = createRecurringProductUpdateOwner({
|
|
12
|
+
manager: { check: async () => ({ state: 'current' }) },
|
|
13
|
+
setTimer: () => ({ unref() {} }),
|
|
14
|
+
clearTimer: () => undefined
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
owner.start();
|
|
18
|
+
assert.equal(DEFAULT_UPDATE_INTERVAL_MS, 60_000);
|
|
19
|
+
assert.equal(owner.inspect().initialDelayMs, 60_000);
|
|
20
|
+
assert.equal(owner.inspect().intervalMs, 60_000);
|
|
21
|
+
owner.stop();
|
|
22
|
+
});
|
|
6
23
|
|
|
7
24
|
test('one recurring owner checks once and never installs without user approval', async () => {
|
|
8
25
|
let checkCalls = 0;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const MINIMUM_UPDATE_DELAY_MS = 1_000;
|
|
4
|
+
const DEFAULT_UPDATE_INTERVAL_MS = 60_000;
|
|
4
5
|
|
|
5
6
|
function normalizeDelay(value, fallback) {
|
|
6
7
|
const delay = Number(value);
|
|
@@ -12,8 +13,8 @@ function normalizeDelay(value, fallback) {
|
|
|
12
13
|
function createRecurringProductUpdateOwner({
|
|
13
14
|
manager,
|
|
14
15
|
canRun = () => true,
|
|
15
|
-
initialDelayMs =
|
|
16
|
-
intervalMs =
|
|
16
|
+
initialDelayMs = DEFAULT_UPDATE_INTERVAL_MS,
|
|
17
|
+
intervalMs = DEFAULT_UPDATE_INTERVAL_MS,
|
|
17
18
|
setTimer = setTimeout,
|
|
18
19
|
clearTimer = clearTimeout,
|
|
19
20
|
onError = () => undefined
|
|
@@ -22,8 +23,8 @@ function createRecurringProductUpdateOwner({
|
|
|
22
23
|
throw new TypeError('recurring-product-update-manager-required');
|
|
23
24
|
}
|
|
24
25
|
|
|
25
|
-
const initialDelay = normalizeDelay(initialDelayMs,
|
|
26
|
-
const interval = normalizeDelay(intervalMs,
|
|
26
|
+
const initialDelay = normalizeDelay(initialDelayMs, DEFAULT_UPDATE_INTERVAL_MS);
|
|
27
|
+
const interval = normalizeDelay(intervalMs, DEFAULT_UPDATE_INTERVAL_MS);
|
|
27
28
|
let stopped = true;
|
|
28
29
|
let generation = 0;
|
|
29
30
|
let timer = null;
|
|
@@ -90,4 +91,7 @@ function createRecurringProductUpdateOwner({
|
|
|
90
91
|
};
|
|
91
92
|
}
|
|
92
93
|
|
|
93
|
-
module.exports = {
|
|
94
|
+
module.exports = {
|
|
95
|
+
DEFAULT_UPDATE_INTERVAL_MS,
|
|
96
|
+
createRecurringProductUpdateOwner
|
|
97
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindexec/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.464",
|
|
4
4
|
"description": "MindExec local runtime and bridge CLI",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"type": "module",
|
|
@@ -90,9 +90,10 @@
|
|
|
90
90
|
"web-tree-sitter": "^0.22.6",
|
|
91
91
|
"ws": "^8.16.0"
|
|
92
92
|
},
|
|
93
|
-
"overrides": {
|
|
94
|
-
"body-parser": "1.20.6"
|
|
95
|
-
|
|
93
|
+
"overrides": {
|
|
94
|
+
"body-parser": "1.20.6",
|
|
95
|
+
"js-yaml": "4.3.1"
|
|
96
|
+
},
|
|
96
97
|
"bin": {
|
|
97
98
|
"mindexec": "launch-bridge.cjs",
|
|
98
99
|
"mind-bridge": "launch-bridge.cjs"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { chromium } from 'playwright-core';
|
|
2
|
+
|
|
3
|
+
function readArgument(name, fallback = '') {
|
|
4
|
+
const index = process.argv.indexOf(name);
|
|
5
|
+
return index >= 0 ? String(process.argv[index + 1] || fallback) : fallback;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const debugPort = Number.parseInt(readArgument('--debug-port'), 10);
|
|
9
|
+
const expectedVersion = readArgument('--expected-version');
|
|
10
|
+
const timeoutMs = Number.parseInt(readArgument('--timeout-ms', '300000'), 10);
|
|
11
|
+
if (!Number.isInteger(debugPort) || debugPort <= 0 || !expectedVersion) {
|
|
12
|
+
throw new Error('usage: --debug-port <port> --expected-version <version> [--timeout-ms <ms>]');
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const endpoint = `http://127.0.0.1:${debugPort}`;
|
|
16
|
+
const deadline = Date.now() + timeoutMs;
|
|
17
|
+
let browser = null;
|
|
18
|
+
let page = null;
|
|
19
|
+
let lastError = null;
|
|
20
|
+
|
|
21
|
+
while (Date.now() < deadline && !page) {
|
|
22
|
+
try {
|
|
23
|
+
browser = await chromium.connectOverCDP(endpoint);
|
|
24
|
+
const contexts = browser.contexts();
|
|
25
|
+
page = contexts.flatMap(context => context.pages()).find(candidate =>
|
|
26
|
+
candidate.url().startsWith('http://127.0.0.1:')) || contexts[0]?.pages()[0] || null;
|
|
27
|
+
if (!page) throw new Error('desktop-page-not-ready');
|
|
28
|
+
await page.waitForFunction(() => Boolean(window.mindExecDesktop?.updates), null, { timeout: 5_000 });
|
|
29
|
+
} catch (error) {
|
|
30
|
+
lastError = error;
|
|
31
|
+
page = null;
|
|
32
|
+
await new Promise(resolve => setTimeout(resolve, 500));
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
if (!page) throw new Error(`desktop-cdp-not-ready:${lastError?.message || 'timeout'}`);
|
|
36
|
+
|
|
37
|
+
await page.evaluate(() => window.mindExecDesktop.updates.check());
|
|
38
|
+
let status = null;
|
|
39
|
+
while (Date.now() < deadline) {
|
|
40
|
+
status = await page.evaluate(() => window.mindExecDesktop.updates.getStatus());
|
|
41
|
+
if (status?.state === 'error') throw new Error(`desktop-update-check-failed:${status.error}`);
|
|
42
|
+
if (status?.downloaded && status?.availableVersion === expectedVersion) break;
|
|
43
|
+
await new Promise(resolve => setTimeout(resolve, 500));
|
|
44
|
+
}
|
|
45
|
+
if (!status?.downloaded || status?.availableVersion !== expectedVersion) {
|
|
46
|
+
throw new Error(`desktop-update-not-downloaded:${JSON.stringify(status)}`);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
let rendererClosedDuringInstall = false;
|
|
50
|
+
try {
|
|
51
|
+
await page.evaluate(() => window.mindExecDesktop.updates.install());
|
|
52
|
+
} catch (error) {
|
|
53
|
+
const message = String(error?.message || error);
|
|
54
|
+
if (!/Target page, context or browser has been closed|Execution context was destroyed|Protocol error|closed/i.test(message)) {
|
|
55
|
+
throw error;
|
|
56
|
+
}
|
|
57
|
+
rendererClosedDuringInstall = true;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
console.log(JSON.stringify({
|
|
61
|
+
ok: true,
|
|
62
|
+
downloadedVersion: status.availableVersion,
|
|
63
|
+
progress: status.progress,
|
|
64
|
+
installInvoked: true,
|
|
65
|
+
rendererClosedDuringInstall
|
|
66
|
+
}));
|
|
67
|
+
process.exit(0);
|
package/wwwroot/_framework/{MindExecution.Core.0b8jdcyhj8.dll → MindExecution.Core.8qo2jd7tuo.dll}
RENAMED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.y97l6vu05i.dll → MindExecution.Web.vldms1qzyf.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-xbkd7KcJBy5yAqXFmgsgo5SumL+g/uWuXdnaagEWtp4=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -122,16 +122,16 @@
|
|
|
122
122
|
"System.brmz7yk5qh.dll": "System.dll",
|
|
123
123
|
"netstandard.b50t77veor.dll": "netstandard.dll",
|
|
124
124
|
"System.Private.CoreLib.g6ztz7cmo2.dll": "System.Private.CoreLib.dll",
|
|
125
|
-
"MindExecution.Core.
|
|
126
|
-
"MindExecution.Kernel.
|
|
127
|
-
"MindExecution.Plugins.Admin.
|
|
128
|
-
"MindExecution.Plugins.Business.
|
|
129
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
-
"MindExecution.Plugins.Directory.
|
|
131
|
-
"MindExecution.Plugins.PlanMaster.
|
|
132
|
-
"MindExecution.Plugins.YouTube.
|
|
133
|
-
"MindExecution.Shared.
|
|
134
|
-
"MindExecution.Web.
|
|
125
|
+
"MindExecution.Core.8qo2jd7tuo.dll": "MindExecution.Core.dll",
|
|
126
|
+
"MindExecution.Kernel.s20qz1vf5c.dll": "MindExecution.Kernel.dll",
|
|
127
|
+
"MindExecution.Plugins.Admin.th7yn9x0f6.dll": "MindExecution.Plugins.Admin.dll",
|
|
128
|
+
"MindExecution.Plugins.Business.5oxedy1s9k.dll": "MindExecution.Plugins.Business.dll",
|
|
129
|
+
"MindExecution.Plugins.Concept.3687y3dptp.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
|
+
"MindExecution.Plugins.Directory.9nttshvjo8.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.poo6g7knqo.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.fyved6pyst.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.pldp11njra.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.vldms1qzyf.dll": "MindExecution.Web.dll",
|
|
135
135
|
"dotnet.native.566r55w3xu.js": "dotnet.native.js",
|
|
136
136
|
"dotnet.native.x6q5aixc38.wasm": "dotnet.native.wasm",
|
|
137
137
|
"dotnet.js": "dotnet.js",
|
|
@@ -276,18 +276,18 @@
|
|
|
276
276
|
"System.Xml.XDocument.sn51jas17n.dll": "sha256-GNI2kFgFmPTwzuzwUn8gxK+AzGLUWRJFdg9JzIbrybQ=",
|
|
277
277
|
"System.brmz7yk5qh.dll": "sha256-CfM2miyj1KHApFmqMdLYWio3S/jrdON2pW9Xr2nTwlo=",
|
|
278
278
|
"netstandard.b50t77veor.dll": "sha256-//jQGOXjb8ET8WtXgOJrAxLx6E7zDJ5RjRRutwkvmxo=",
|
|
279
|
-
"MindExecution.Core.
|
|
280
|
-
"MindExecution.Kernel.
|
|
281
|
-
"MindExecution.Plugins.Business.
|
|
282
|
-
"MindExecution.Plugins.Concept.
|
|
283
|
-
"MindExecution.Plugins.PlanMaster.
|
|
284
|
-
"MindExecution.Shared.
|
|
285
|
-
"MindExecution.Web.
|
|
279
|
+
"MindExecution.Core.8qo2jd7tuo.dll": "sha256-UB+YROrcEWb6I4nydNzxKyQ9fBCOxkaeG3XGHIGj3S0=",
|
|
280
|
+
"MindExecution.Kernel.s20qz1vf5c.dll": "sha256-HCZUf78F2vPjE90+3B7gu9szT0aZrDhxXIYfhUMPIC8=",
|
|
281
|
+
"MindExecution.Plugins.Business.5oxedy1s9k.dll": "sha256-C1kXmGh4joC1+xuxg852zNLVCu1guJVBeGp7r2Va69s=",
|
|
282
|
+
"MindExecution.Plugins.Concept.3687y3dptp.dll": "sha256-G4PF9cKO1vsYJzt0MxtaqiNSXFnrbzNMj4BDW+SxvUE=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.poo6g7knqo.dll": "sha256-eU4Y5urUDih0nB6rdQFMZuPzvFDSYUWv5FEtYzHxdAk=",
|
|
284
|
+
"MindExecution.Shared.pldp11njra.dll": "sha256-HYbCnuYBXiUPns9zUuxim1rMuRlce1t3SPIgvNi+Q2o=",
|
|
285
|
+
"MindExecution.Web.vldms1qzyf.dll": "sha256-Y46Q9q5gwtB+csgwQ8TuZ/IItDXUh1vAermjbIgvko0="
|
|
286
286
|
},
|
|
287
287
|
"lazyAssembly": {
|
|
288
|
-
"MindExecution.Plugins.Admin.
|
|
289
|
-
"MindExecution.Plugins.Directory.
|
|
290
|
-
"MindExecution.Plugins.YouTube.
|
|
288
|
+
"MindExecution.Plugins.Admin.th7yn9x0f6.dll": "sha256-caUd7zEMOuYZGzR7PxhDMdtZ+H5/yQAhaZzRIdKoSxw=",
|
|
289
|
+
"MindExecution.Plugins.Directory.9nttshvjo8.dll": "sha256-q5Quc/lapBHAK0CFLI1aXcbqc2wXdX+W08YiF9oLfGI=",
|
|
290
|
+
"MindExecution.Plugins.YouTube.fyved6pyst.dll": "sha256-uVELlFlT4/2LY6FukJfYzAY39+0WKxaBsZg1AZa1Yvo="
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"cacheBootResources": true,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "HCgT1KJn",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -434,44 +434,44 @@ self.assetsManifest = {
|
|
|
434
434
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Core.
|
|
437
|
+
"hash": "sha256-UB+YROrcEWb6I4nydNzxKyQ9fBCOxkaeG3XGHIGj3S0=",
|
|
438
|
+
"url": "_framework/MindExecution.Core.8qo2jd7tuo.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Kernel.
|
|
441
|
+
"hash": "sha256-HCZUf78F2vPjE90+3B7gu9szT0aZrDhxXIYfhUMPIC8=",
|
|
442
|
+
"url": "_framework/MindExecution.Kernel.s20qz1vf5c.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
445
|
+
"hash": "sha256-caUd7zEMOuYZGzR7PxhDMdtZ+H5/yQAhaZzRIdKoSxw=",
|
|
446
|
+
"url": "_framework/MindExecution.Plugins.Admin.th7yn9x0f6.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
449
|
+
"hash": "sha256-C1kXmGh4joC1+xuxg852zNLVCu1guJVBeGp7r2Va69s=",
|
|
450
|
+
"url": "_framework/MindExecution.Plugins.Business.5oxedy1s9k.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
|
-
"hash": "sha256-
|
|
454
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
453
|
+
"hash": "sha256-G4PF9cKO1vsYJzt0MxtaqiNSXFnrbzNMj4BDW+SxvUE=",
|
|
454
|
+
"url": "_framework/MindExecution.Plugins.Concept.3687y3dptp.dll"
|
|
455
455
|
},
|
|
456
456
|
{
|
|
457
|
-
"hash": "sha256-
|
|
458
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
457
|
+
"hash": "sha256-q5Quc/lapBHAK0CFLI1aXcbqc2wXdX+W08YiF9oLfGI=",
|
|
458
|
+
"url": "_framework/MindExecution.Plugins.Directory.9nttshvjo8.dll"
|
|
459
459
|
},
|
|
460
460
|
{
|
|
461
|
-
"hash": "sha256-
|
|
462
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
461
|
+
"hash": "sha256-eU4Y5urUDih0nB6rdQFMZuPzvFDSYUWv5FEtYzHxdAk=",
|
|
462
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.poo6g7knqo.dll"
|
|
463
463
|
},
|
|
464
464
|
{
|
|
465
|
-
"hash": "sha256
|
|
466
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
465
|
+
"hash": "sha256-uVELlFlT4/2LY6FukJfYzAY39+0WKxaBsZg1AZa1Yvo=",
|
|
466
|
+
"url": "_framework/MindExecution.Plugins.YouTube.fyved6pyst.dll"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
469
|
-
"hash": "sha256-
|
|
470
|
-
"url": "_framework/MindExecution.Shared.
|
|
469
|
+
"hash": "sha256-HYbCnuYBXiUPns9zUuxim1rMuRlce1t3SPIgvNi+Q2o=",
|
|
470
|
+
"url": "_framework/MindExecution.Shared.pldp11njra.dll"
|
|
471
471
|
},
|
|
472
472
|
{
|
|
473
|
-
"hash": "sha256-
|
|
474
|
-
"url": "_framework/MindExecution.Web.
|
|
473
|
+
"hash": "sha256-Y46Q9q5gwtB+csgwQ8TuZ/IItDXUh1vAermjbIgvko0=",
|
|
474
|
+
"url": "_framework/MindExecution.Web.vldms1qzyf.dll"
|
|
475
475
|
},
|
|
476
476
|
{
|
|
477
477
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -790,7 +790,7 @@ self.assetsManifest = {
|
|
|
790
790
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
791
791
|
},
|
|
792
792
|
{
|
|
793
|
-
"hash": "sha256-
|
|
793
|
+
"hash": "sha256-F6SkqJxelIktlfhzsZMmDvyAWyZ/3RWpJFWh8KuUgh4=",
|
|
794
794
|
"url": "_framework/blazor.boot.json"
|
|
795
795
|
},
|
|
796
796
|
{
|