@mindexec/cli 0.2.21 → 0.2.22
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 +4 -4
- package/scripts/remote-fleet-render-smoke.mjs +17 -2
- package/scripts/remote-http-smoke.mjs +2 -1
- package/scripts/remote-hub-scale-smoke.mjs +2 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +1 -1
- package/wwwroot/_framework/{MindExecution.Core.ckgjbdvvxl.dll → MindExecution.Core.c9fyqe953v.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.lm7kgq8l8h.dll → MindExecution.Kernel.badrt1tkvv.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.k085kt3dls.dll → MindExecution.Plugins.Admin.73w1bvz4r1.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.dsz9uwkxih.dll → MindExecution.Plugins.Business.dvd82y422m.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.wnkch6jqjz.dll → MindExecution.Plugins.Concept.m3ukc0xvom.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.ufbriq6js4.dll → MindExecution.Plugins.Directory.23tm2uvfvu.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.ygbsp1z4z0.dll → MindExecution.Plugins.PlanMaster.8nrc7ge4ob.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.a992061fhz.dll → MindExecution.Plugins.YouTube.3ox59073d8.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.y27t6njaw0.dll → MindExecution.Shared.va1gxp0crd.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.bqamgu5gq1.dll → MindExecution.Web.jmawk7z8d3.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/package.json
CHANGED
package/remote-hub.js
CHANGED
|
@@ -289,7 +289,7 @@ export function createRemoteHub(options = {}) {
|
|
|
289
289
|
mimeType: 'image/png',
|
|
290
290
|
format: 'image/png',
|
|
291
291
|
mode,
|
|
292
|
-
fps: clampNumber(options.fps, 1, 24, mode === 'remote-fast' ?
|
|
292
|
+
fps: clampNumber(options.fps, 1, 24, mode === 'remote-fast' ? 20 : 1),
|
|
293
293
|
capturedAt: now,
|
|
294
294
|
receivedAt: now,
|
|
295
295
|
byteLength: 68,
|
|
@@ -503,7 +503,7 @@ export function createRemoteHub(options = {}) {
|
|
|
503
503
|
commandId: `synthetic-live-command-${ordinal}`,
|
|
504
504
|
active: true,
|
|
505
505
|
mode: 'remote-fast',
|
|
506
|
-
fps:
|
|
506
|
+
fps: 20,
|
|
507
507
|
startedAt: seenAt,
|
|
508
508
|
stoppedAt: '',
|
|
509
509
|
stopReason: '',
|
|
@@ -513,7 +513,7 @@ export function createRemoteHub(options = {}) {
|
|
|
513
513
|
};
|
|
514
514
|
applySyntheticLiveFrame(device, device.activeLiveStream.streamId, {
|
|
515
515
|
commandId: device.activeLiveStream.commandId,
|
|
516
|
-
fps:
|
|
516
|
+
fps: 20
|
|
517
517
|
});
|
|
518
518
|
live += 1;
|
|
519
519
|
}
|
|
@@ -1528,7 +1528,7 @@ export function createRemoteHub(options = {}) {
|
|
|
1528
1528
|
|
|
1529
1529
|
const now = new Date().toISOString();
|
|
1530
1530
|
const streamId = safeString(options.streamId, 128) || `live-${Date.now()}`;
|
|
1531
|
-
const fps = clampNumber(options.fps, 1, 24,
|
|
1531
|
+
const fps = clampNumber(options.fps, 1, 24, 20);
|
|
1532
1532
|
const commandId = safeString(options.commandId, 128) || crypto.randomUUID();
|
|
1533
1533
|
device.counters.commandsSent += 1;
|
|
1534
1534
|
device.activeLiveStream = {
|
|
@@ -526,12 +526,25 @@ try {
|
|
|
526
526
|
});
|
|
527
527
|
assert.equal(renderAiTask.ok, true);
|
|
528
528
|
|
|
529
|
+
const seededLiveTarget = hub.listDevices().find(device =>
|
|
530
|
+
device.connected && device.capabilities?.liveStream);
|
|
531
|
+
assert.ok(seededLiveTarget);
|
|
532
|
+
const renderLive = hub.startLiveStream(seededLiveTarget.deviceId, {
|
|
533
|
+
streamId: 'render-smoke-live',
|
|
534
|
+
fps: 20,
|
|
535
|
+
maxWidth: 960,
|
|
536
|
+
maxHeight: 540,
|
|
537
|
+
quality: 60
|
|
538
|
+
});
|
|
539
|
+
assert.equal(renderLive.ok, true);
|
|
540
|
+
|
|
529
541
|
const rawDevices = hub.listDevices();
|
|
530
542
|
const devices = rawDevices.map(projectDevice);
|
|
531
543
|
const connectedCount = devices.filter(device => device.Connected).length;
|
|
532
544
|
const offlineCount = devices.length - connectedCount;
|
|
533
545
|
const aiCount = devices.filter(device => device.Connected && device.AiAssistEnabled).length;
|
|
534
|
-
const focusedDevice = devices.find(device => device.Connected)
|
|
546
|
+
const focusedDevice = devices.find(device => device.Connected && device.LiveStreamActive)
|
|
547
|
+
|| devices.find(device => device.Connected);
|
|
535
548
|
assert.ok(focusedDevice);
|
|
536
549
|
focusedDevice.LatestTaskId = 'render-smoke-timeout-task';
|
|
537
550
|
focusedDevice.LatestTaskCommandId = 'render-smoke-timeout-command';
|
|
@@ -632,9 +645,11 @@ try {
|
|
|
632
645
|
assert.equal(bodyView.querySelectorAll('[data-remote-fleet-action="pin-device"]').length, SYNTHETIC_COUNT);
|
|
633
646
|
assert.equal(bodyView.querySelectorAll('[data-remote-fleet-action="task-device"]').length, connectedCount);
|
|
634
647
|
assert.equal(bodyView.querySelectorAll('[data-remote-fleet-action="thumbnail-device"]').length, devices.filter(device => device.Connected && device.ThumbnailEnabled).length);
|
|
635
|
-
|
|
648
|
+
const livePanel = bodyView.querySelector('[data-remote-fleet-live-panel="true"]');
|
|
649
|
+
assert.equal(livePanel?.dataset.deviceId, focusedDevice.DeviceId);
|
|
636
650
|
assert.equal(bodyView.querySelector('[data-remote-fleet-action="task-visible"]')?.disabled, false);
|
|
637
651
|
assert.ok(bodyView.textContent.includes('all devices, no paging'));
|
|
652
|
+
assert.ok(livePanel?.textContent.includes('RemoteFast 20 fps'), livePanel?.textContent || bodyView.textContent);
|
|
638
653
|
assert.ok(bodyView.querySelector('code')?.textContent.includes('npx @mindexec/remote connect'));
|
|
639
654
|
assert.ok(bodyView.textContent.includes('synthetic-render-ai'));
|
|
640
655
|
assert.ok(bodyView.textContent.includes('Task timed out waiting for the agent response.'));
|
|
@@ -218,7 +218,7 @@ try {
|
|
|
218
218
|
token: BRIDGE_TOKEN,
|
|
219
219
|
body: JSON.stringify({
|
|
220
220
|
streamId: 'http-smoke-live',
|
|
221
|
-
fps:
|
|
221
|
+
fps: 20,
|
|
222
222
|
maxWidth: 960,
|
|
223
223
|
maxHeight: 540,
|
|
224
224
|
quality: 60
|
|
@@ -233,6 +233,7 @@ try {
|
|
|
233
233
|
assert.equal(liveFrame.ok, true, JSON.stringify(liveFrame.payload));
|
|
234
234
|
assert.equal(liveFrame.payload?.frame?.streamId, 'http-smoke-live');
|
|
235
235
|
assert.equal(liveFrame.payload?.frame?.mode, 'remote-fast');
|
|
236
|
+
assert.equal(liveFrame.payload?.frame?.fps, 20);
|
|
236
237
|
|
|
237
238
|
const liveStop = await fetchJson(`${baseUrl}/api/remote/devices/${encodeURIComponent(liveTarget.deviceId)}/live/stop`, {
|
|
238
239
|
method: 'POST',
|
|
@@ -63,13 +63,14 @@ try {
|
|
|
63
63
|
assert.ok(liveTarget);
|
|
64
64
|
const liveResult = hub.startLiveStream(liveTarget.deviceId, {
|
|
65
65
|
streamId: 'scale-live',
|
|
66
|
-
fps:
|
|
66
|
+
fps: 20,
|
|
67
67
|
maxWidth: 960,
|
|
68
68
|
maxHeight: 540,
|
|
69
69
|
quality: 60
|
|
70
70
|
});
|
|
71
71
|
assert.equal(liveResult.ok, true);
|
|
72
72
|
assert.equal(hub.getDeviceLiveFrame(liveTarget.deviceId).streamId, 'scale-live');
|
|
73
|
+
assert.equal(hub.getDeviceLiveFrame(liveTarget.deviceId).fps, 20);
|
|
73
74
|
const stopResult = hub.stopLiveStream(liveTarget.deviceId, { streamId: 'scale-live' });
|
|
74
75
|
assert.equal(stopResult.ok, true);
|
|
75
76
|
|
|
@@ -13554,7 +13554,7 @@
|
|
|
13554
13554
|
liveName.style.cssText = 'color:#0f172a;font-size:15px;font-weight:950;line-height:1.15;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0;';
|
|
13555
13555
|
const liveMeta = document.createElement('span');
|
|
13556
13556
|
liveMeta.textContent = liveActive
|
|
13557
|
-
? `RemoteFast ${getRemoteFleetDeviceField(focusedDevice, 'liveStreamFps', 'LiveStreamFps', 0) ||
|
|
13557
|
+
? `RemoteFast ${getRemoteFleetDeviceField(focusedDevice, 'liveStreamFps', 'LiveStreamFps', 0) || 20} fps`
|
|
13558
13558
|
: 'View-only focused screen stream';
|
|
13559
13559
|
liveMeta.style.cssText = 'color:#475569;font-size:11px;font-weight:800;line-height:1.25;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0;';
|
|
13560
13560
|
liveTitle.appendChild(liveName);
|
package/wwwroot/_framework/{MindExecution.Core.ckgjbdvvxl.dll → MindExecution.Core.c9fyqe953v.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.bqamgu5gq1.dll → MindExecution.Web.jmawk7z8d3.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-U10u85TRNQ5EuHSJ6CDlslJbcSBCmbE+UPKJl/T8OtY=",
|
|
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.c9fyqe953v.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.badrt1tkvv.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.73w1bvz4r1.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.dvd82y422m.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.m3ukc0xvom.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.23tm2uvfvu.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.8nrc7ge4ob.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.3ox59073d8.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.va1gxp0crd.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.jmawk7z8d3.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.c9fyqe953v.dll": "sha256-QFzKrrCvQhHKuzHmjZNnWfLRs8Zvg90nlG23JMRuPiA=",
|
|
282
|
+
"MindExecution.Kernel.badrt1tkvv.dll": "sha256-Ay3ypEtsJuNsBYsha1gUwQ98jBnWGZFyOEEd2TmsNew=",
|
|
283
|
+
"MindExecution.Plugins.Concept.m3ukc0xvom.dll": "sha256-YjENe8QVAOo4XYknnQD3hSMouQMSQQQ7sryMHObA0Qc=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.8nrc7ge4ob.dll": "sha256-DGJpulGGAuvc9KS9plHJi8BLX8EBiqV3A90QMAadYCY=",
|
|
285
|
+
"MindExecution.Shared.va1gxp0crd.dll": "sha256-ly99wDAapShB+jZ1V95wYNfWyd1Q+JNGxL870fY6XKI=",
|
|
286
|
+
"MindExecution.Web.jmawk7z8d3.dll": "sha256-yz2Mpwuz+oEBj6sVtdQOjSPIrLj4cQICK7ZDFVWwy5o="
|
|
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.73w1bvz4r1.dll": "sha256-s0/shhl1o5sjys9RDDMPM5TWYZNk64K5RggeZ8gsDKA=",
|
|
290
|
+
"MindExecution.Plugins.Business.dvd82y422m.dll": "sha256-OcLlpkGPe6VinOzGw5cDKNjIcQLZW+nv6zGjvzewc8w=",
|
|
291
|
+
"MindExecution.Plugins.Directory.23tm2uvfvu.dll": "sha256-vmai+Tkzmk5CeReKLxTMz/gp+uPrt8EaftPIbljEZ0E=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.3ox59073d8.dll": "sha256-Te3jpmTgl3HFoKoMct4HMXhg6a9PgTHmVaQltQjKrak="
|
|
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-fast-20fps-v479';
|
|
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": "4y4C9wve",
|
|
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-E6d/sEnHvzwsyrryEFowSagM2Y3LCxsotUHJe+5X9mE=",
|
|
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-QFzKrrCvQhHKuzHmjZNnWfLRs8Zvg90nlG23JMRuPiA=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.c9fyqe953v.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-Ay3ypEtsJuNsBYsha1gUwQ98jBnWGZFyOEEd2TmsNew=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.badrt1tkvv.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-s0/shhl1o5sjys9RDDMPM5TWYZNk64K5RggeZ8gsDKA=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.73w1bvz4r1.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-OcLlpkGPe6VinOzGw5cDKNjIcQLZW+nv6zGjvzewc8w=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.dvd82y422m.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-YjENe8QVAOo4XYknnQD3hSMouQMSQQQ7sryMHObA0Qc=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.m3ukc0xvom.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-vmai+Tkzmk5CeReKLxTMz/gp+uPrt8EaftPIbljEZ0E=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.23tm2uvfvu.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-DGJpulGGAuvc9KS9plHJi8BLX8EBiqV3A90QMAadYCY=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.8nrc7ge4ob.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-Te3jpmTgl3HFoKoMct4HMXhg6a9PgTHmVaQltQjKrak=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.3ox59073d8.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-ly99wDAapShB+jZ1V95wYNfWyd1Q+JNGxL870fY6XKI=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.va1gxp0crd.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-yz2Mpwuz+oEBj6sVtdQOjSPIrLj4cQICK7ZDFVWwy5o=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.jmawk7z8d3.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-YFYbUXsuU5KT0E7N+xUyIA0vztkOHHRPlmdp4kBB67c=",
|
|
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-tL38lnMES1WBgTPkRcwiazc1i1T3td1aYgwrUvoxQOo=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|