@mindexec/cli 0.2.228 → 0.2.229

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.228",
3
+ "version": "0.2.229",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -5,7 +5,7 @@
5
5
  const DEBUG = false;
6
6
  const FPS_DEBUG = false;
7
7
  const FRAME_PERF_DEBUG = false;
8
- const MINDMAP_CORE_BUILD_ID = '20260619-ua-motion-input-fastpath-v675';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-ua-motion-hidden-work-v676';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -85,6 +85,7 @@
85
85
  const PASSIVE_OVERLAY_IDLE_DELAY_MS = 500;
86
86
  const PASSIVE_OVERLAY_PAN_IDLE_DELAY_MS = 500;
87
87
  const CURSOR_DOM_BLINK_DURATION_MS = 1000;
88
+ const RENDER_DEBUG_METRICS_CACHE_MS = 250;
88
89
  const ANIMATION_IDLE_LOW_FPS_DELAY_MS = 500;
89
90
  const HOME_CAMERA_NORMAL_MID_Z = 8250;
90
91
  const HOME_DENSE_CLUSTER_MIN_CELL_SIZE = 1200;
@@ -1169,6 +1170,70 @@
1169
1170
  module._framePathStats = stats;
1170
1171
  }
1171
1172
 
1173
+ function recordCameraMotionFastPathStatus(module, status, reason, details = {}) {
1174
+ if (!module) {
1175
+ return;
1176
+ }
1177
+
1178
+ const previous = module._cameraMotionFastPathStatus || null;
1179
+ const normalizedStatus = String(status || '').trim() || 'unknown';
1180
+ const normalizedReason = String(reason || '').trim() || normalizedStatus;
1181
+ const count = previous &&
1182
+ previous.status === normalizedStatus &&
1183
+ previous.reason === normalizedReason
1184
+ ? Number(previous.count || 0) + 1
1185
+ : 1;
1186
+ const updatedAt = typeof performance !== 'undefined' && typeof performance.now === 'function'
1187
+ ? performance.now()
1188
+ : Date.now();
1189
+
1190
+ module._cameraMotionFastPathStatus = {
1191
+ status: normalizedStatus,
1192
+ reason: normalizedReason,
1193
+ count,
1194
+ details,
1195
+ updatedAt
1196
+ };
1197
+ }
1198
+
1199
+ function getImmediateCameraFastPathMissReason(context = {}) {
1200
+ if (context.shouldPreferCameraOnlyMotionPipeline !== true) {
1201
+ return 'camera-motion-pipeline-disabled';
1202
+ }
1203
+ if (context.isCss3dEnabled !== true) {
1204
+ return 'css3d-disabled';
1205
+ }
1206
+ if (context.hasCssRenderer !== true) {
1207
+ return 'css-renderer-missing';
1208
+ }
1209
+ if (context.hasRenderCamera !== true) {
1210
+ return 'css-render-camera-missing';
1211
+ }
1212
+ if (context.hasWebglBootstrap !== true) {
1213
+ return 'webgl-bootstrap-missing';
1214
+ }
1215
+ if (context.isLodModeActive === true) {
1216
+ return 'lod-active';
1217
+ }
1218
+ if (context.isCameraMoving !== true) {
1219
+ return 'camera-not-moving';
1220
+ }
1221
+ if (context.isSelecting === true) {
1222
+ return 'selecting';
1223
+ }
1224
+ if (context.hasEditingTextOverlayFocus === true) {
1225
+ return 'editing-text-overlay';
1226
+ }
1227
+ if (context.hasPendingCss3dStructuralTransformWork === true) {
1228
+ return 'css3d-structural-dirty';
1229
+ }
1230
+ if (context.isBoardLoading === true) {
1231
+ return 'board-loading';
1232
+ }
1233
+
1234
+ return 'unknown';
1235
+ }
1236
+
1172
1237
  function resetFramePerfPeakProfile(module) {
1173
1238
  const peakProfile = createEmptyFramePerfPeakProfile();
1174
1239
  if (module) {
@@ -1312,6 +1377,7 @@
1312
1377
  module._fullResVisibilityReconcilePending = true;
1313
1378
  module._preserveVisibleSetThisFrame = true;
1314
1379
  module._lastVisibilityCullingSkipReason = 'ua-ultra-camera-only';
1380
+ recordCameraMotionFastPathStatus(module, 'hit', 'ua-ultra-camera-only');
1315
1381
  if (module._overlayDirty === true ||
1316
1382
  String(module._textOverlayV2State?.selectionNodeId || '').trim() ||
1317
1383
  String(module._selectableTextOverlayNodeId || '').trim()) {
@@ -1531,6 +1597,7 @@
1531
1597
  module._wasLodMotionFrozenLastFrame = true;
1532
1598
  module._preserveVisibleSetThisFrame = true;
1533
1599
  module._lastVisibilityCullingSkipReason = 'ua-ultra-resident-camera-only';
1600
+ recordCameraMotionFastPathStatus(module, 'hit', 'ua-ultra-resident-camera-only');
1534
1601
  if (module._overlayDirty === true ||
1535
1602
  String(module._textOverlayV2State?.selectionNodeId || '').trim() ||
1536
1603
  String(module._selectableTextOverlayNodeId || '').trim()) {
@@ -1702,12 +1769,28 @@
1702
1769
  overlayLayoutChanged: false,
1703
1770
  overlayContentChanged: false,
1704
1771
  overlayForceRefresh: false,
1772
+ cameraMotionFastPathStatus: null,
1705
1773
  metricsSnapshotMs: 0,
1774
+ metricsSnapshotCached: false,
1775
+ metricsSnapshotAgeMs: 0,
1706
1776
  metricsSnapshotPeakMs: 0,
1707
1777
  visibilityCullingProfile: null
1708
1778
  };
1709
1779
  }
1710
1780
 
1781
+ const cachedSnapshot = moduleInstance._lastRenderDebugMetricsSnapshot || null;
1782
+ const cachedAt = Number(moduleInstance._lastRenderDebugMetricsSnapshotAt || 0);
1783
+ if (cachedSnapshot &&
1784
+ cachedAt > 0 &&
1785
+ (snapshotStart - cachedAt) >= 0 &&
1786
+ (snapshotStart - cachedAt) < RENDER_DEBUG_METRICS_CACHE_MS) {
1787
+ return {
1788
+ ...cachedSnapshot,
1789
+ metricsSnapshotCached: true,
1790
+ metricsSnapshotAgeMs: Number((snapshotStart - cachedAt).toFixed(2))
1791
+ };
1792
+ }
1793
+
1711
1794
  const flags = moduleInstance.renderDebugFlags || getRenderDebugFlagsSnapshot();
1712
1795
  const overlayState = moduleInstance._textOverlayV2State || null;
1713
1796
  let overlayCardCount = 0;
@@ -1774,7 +1857,7 @@
1774
1857
  metricsSnapshotMs
1775
1858
  );
1776
1859
 
1777
- return {
1860
+ const snapshot = {
1778
1861
  fps: Number(moduleInstance._currentFps || 0),
1779
1862
  avgFrameMs: Number(moduleInstance._avgFrameTime || 0),
1780
1863
  lastFrameDeltaMs: Number(moduleInstance._lastFrameDeltaMs || 0),
@@ -1816,10 +1899,15 @@
1816
1899
  overlayLayoutChanged: moduleInstance._overlayDebugLayoutChanged === true,
1817
1900
  overlayContentChanged: moduleInstance._overlayDebugContentChanged === true,
1818
1901
  overlayForceRefresh: moduleInstance._overlayDebugForceRefresh === true,
1902
+ cameraMotionFastPathStatus: moduleInstance._cameraMotionFastPathStatus || null,
1819
1903
  metricsSnapshotMs: Number(metricsSnapshotMs.toFixed(2)),
1904
+ metricsSnapshotCached: false,
1905
+ metricsSnapshotAgeMs: 0,
1820
1906
  metricsSnapshotPeakMs: Number((moduleInstance._renderDebugMetricsSnapshotPeakMs || 0).toFixed(2)),
1821
1907
  visibilityCullingProfile: moduleInstance._lastVisibilityCullingProfile || null
1822
1908
  };
1909
+ moduleInstance._lastRenderDebugMetricsSnapshot = snapshot;
1910
+ return snapshot;
1823
1911
  }
1824
1912
 
1825
1913
  function applyRenderDebugFlagsToModule(module) {
@@ -5866,6 +5954,32 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5866
5954
  !hasPendingCss3dStructuralTransformWork &&
5867
5955
  !isBoardLoading
5868
5956
  );
5957
+ if (canUseUaImmediateCameraOnlyFrame !== true &&
5958
+ isCameraMoving === true &&
5959
+ shouldPreferCameraOnlyMotionPipeline === true) {
5960
+ recordCameraMotionFastPathStatus(
5961
+ this,
5962
+ 'miss',
5963
+ getImmediateCameraFastPathMissReason({
5964
+ shouldPreferCameraOnlyMotionPipeline,
5965
+ isCss3dEnabled,
5966
+ hasCssRenderer: !!this.cssRenderer,
5967
+ hasRenderCamera: typeof this.cssRenderer?.renderCamera === 'function',
5968
+ hasWebglBootstrap: !!this.renderer && !!this.scene && !!this.camera,
5969
+ isLodModeActive,
5970
+ isCameraMoving,
5971
+ isSelecting: this.isSelecting === true,
5972
+ hasEditingTextOverlayFocus,
5973
+ hasPendingCss3dStructuralTransformWork,
5974
+ isBoardLoading
5975
+ }),
5976
+ {
5977
+ dirtyCssTransforms: Number(this._cssTransformDirtyIds?.size || 0),
5978
+ cssParentRepairNeeded: this._cssParentRepairNeeded === true,
5979
+ lodModeActive: isLodModeActive === true
5980
+ }
5981
+ );
5982
+ }
5869
5983
  if (canUseUaImmediateCameraOnlyFrame) {
5870
5984
  this._fullResMotionFrozen = true;
5871
5985
  this._wasViewStateMotionFrozenLastFrame = true;
@@ -5873,6 +5987,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5873
5987
  this._fullResVisibilityReconcilePending = true;
5874
5988
  this._preserveVisibleSetThisFrame = true;
5875
5989
  this._lastVisibilityCullingSkipReason = 'ua-visual-only-motion';
5990
+ recordCameraMotionFastPathStatus(this, 'hit', 'ua-visual-only-motion');
5876
5991
  if (this._overlayDirty === true) {
5877
5992
  this._deferPassiveOverlayRefresh = true;
5878
5993
  }
@@ -6056,6 +6171,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6056
6171
  if (canUseUaStationaryCameraNavigationAnyModeFrame) {
6057
6172
  this._preserveVisibleSetThisFrame = true;
6058
6173
  this._lastVisibilityCullingSkipReason = 'ua-stationary-visual-motion';
6174
+ recordCameraMotionFastPathStatus(this, 'hit', 'ua-stationary-visual-motion');
6059
6175
  if (this._overlayDirty === true || hasSelectableTextOverlayFocus) {
6060
6176
  this._deferPassiveOverlayRefresh = true;
6061
6177
  }
@@ -6215,6 +6331,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6215
6331
  this._wasLodMotionFrozenLastFrame = true;
6216
6332
  this._preserveVisibleSetThisFrame = true;
6217
6333
  this._lastVisibilityCullingSkipReason = 'ua-resident-visual-only-motion';
6334
+ recordCameraMotionFastPathStatus(this, 'hit', 'ua-resident-visual-only-motion');
6218
6335
  if (this._overlayDirty === true || hasSelectableTextOverlayFocus) {
6219
6336
  this._deferPassiveOverlayRefresh = true;
6220
6337
  }
@@ -7438,6 +7555,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7438
7555
  _profileSection('css3dRender');
7439
7556
  if (canUseCss3dCameraFastPath) {
7440
7557
  this._syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransform);
7558
+ recordCameraMotionFastPathStatus(this, 'hit', 'css3d-camera-fast');
7441
7559
  this.cssRenderer.renderCamera(this.camera);
7442
7560
  }
7443
7561
  _profileSection('css3dCamera');
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-4t0ewNVBKVmyQUaKigUmyFXPOUxnry2SD5VblBRNXkI=",
4
+ "hash": "sha256-DQu1T01syPGUTKwCeZH93YMh9F7vmvLDJlTxW9bQNPI=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -127,12 +127,12 @@
127
127
  "MindExecution.Kernel.n80deqs1y7.dll": "MindExecution.Kernel.dll",
128
128
  "MindExecution.Plugins.Admin.m5d94977um.dll": "MindExecution.Plugins.Admin.dll",
129
129
  "MindExecution.Plugins.Business.ntqdn1hta3.dll": "MindExecution.Plugins.Business.dll",
130
- "MindExecution.Plugins.Concept.mqiyx4db4r.dll": "MindExecution.Plugins.Concept.dll",
130
+ "MindExecution.Plugins.Concept.ut38jcmcd9.dll": "MindExecution.Plugins.Concept.dll",
131
131
  "MindExecution.Plugins.Directory.k4hx7g84qs.dll": "MindExecution.Plugins.Directory.dll",
132
- "MindExecution.Plugins.PlanMaster.fnortumnuu.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.86osu6wpgh.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.wg2otcw4bv.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.gfio3kfxrd.dll": "MindExecution.Web.dll",
132
+ "MindExecution.Plugins.PlanMaster.y5lmjhb59y.dll": "MindExecution.Plugins.PlanMaster.dll",
133
+ "MindExecution.Plugins.YouTube.d69qzs3egn.dll": "MindExecution.Plugins.YouTube.dll",
134
+ "MindExecution.Shared.nm91iyihet.dll": "MindExecution.Shared.dll",
135
+ "MindExecution.Web.uwmu9shvoj.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",
@@ -281,15 +281,15 @@
281
281
  "MindExecution.Core.xsad4wu36e.dll": "sha256-D+Se8CCcof7akYxREkOQQzh0cTT/x7EqXhi+aNBo9mA=",
282
282
  "MindExecution.Kernel.n80deqs1y7.dll": "sha256-d7gGGpxiQNphs0at1uO1fAmYe28MFNVgGTEqxoM2uws=",
283
283
  "MindExecution.Plugins.Business.ntqdn1hta3.dll": "sha256-9cuauEjTbTWCFC5tZJZtf1uKn6XTO3KcM8nl+9JkIDc=",
284
- "MindExecution.Plugins.Concept.mqiyx4db4r.dll": "sha256-ootOqul/GcSLbYNdGfYOV7EGObUzu6xNhsplvrNkjC0=",
285
- "MindExecution.Plugins.PlanMaster.fnortumnuu.dll": "sha256-dbV8I5vAEdKha2tmGSPOCrla6tbnXND4+EI7TATxE8M=",
286
- "MindExecution.Shared.wg2otcw4bv.dll": "sha256-gPAFDB6AN1y/oig3BdtlEZqGYRl4YfJEjsBBh3Lbr54=",
287
- "MindExecution.Web.gfio3kfxrd.dll": "sha256-tKm1yX/UOGvqeOL8ZeQhxKJO+l0Bo8n8oBfAZI3AqtY="
284
+ "MindExecution.Plugins.Concept.ut38jcmcd9.dll": "sha256-YsjDXTY6d79me7Oj/MyK+77aoK2txK7RXWA2sb2sJD8=",
285
+ "MindExecution.Plugins.PlanMaster.y5lmjhb59y.dll": "sha256-ptt5TACrc9BHQ8vnpbktd0t37XAr6pxRsiSo4ILBDm8=",
286
+ "MindExecution.Shared.nm91iyihet.dll": "sha256-AZ9E/IGlJenaxuU4QLR/YSWJ7N1UD9WM/Y54IJixmS0=",
287
+ "MindExecution.Web.uwmu9shvoj.dll": "sha256-fjj0CM2UNwJcQteOBVIM8CoPgoSnvtRl8bgVfpOag5s="
288
288
  },
289
289
  "lazyAssembly": {
290
290
  "MindExecution.Plugins.Admin.m5d94977um.dll": "sha256-Jt1vsUZkolnZk+PcV3ysNyL99SfPUVcUHwvBQ/Y+pR8=",
291
291
  "MindExecution.Plugins.Directory.k4hx7g84qs.dll": "sha256-DAR/VFVaR1noVv49Z1mWA5rnhP39REfl4pa9D5Mdvvk=",
292
- "MindExecution.Plugins.YouTube.86osu6wpgh.dll": "sha256-oKAQeyoz+JqD+hk1lE1edkAh+lC1ApxDsLJNEkiH8yg="
292
+ "MindExecution.Plugins.YouTube.d69qzs3egn.dll": "sha256-9VNevp7riyMfxG9Ff2fk1lj3NlwvddZoW+rrADAIpys="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Business Execution OS for solo builders</title>
8
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=20260619-ua-motion-input-fastpath-v675" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260619-ua-motion-input-fastpath-v675" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-ua-motion-hidden-work-v676" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-ua-motion-hidden-work-v676" />
12
12
  <!-- ?占썩뼹??Font Awesome (local) ?占썩뼹??-->
13
13
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
14
14
  <!-- ?占썩뼯??-->
@@ -579,7 +579,7 @@
579
579
  }
580
580
 
581
581
  const base = '_content/MindExecution.Shared/js/';
582
- const scriptVersion = '20260619-ua-motion-input-fastpath-v675';
582
+ const scriptVersion = '20260620-ua-motion-hidden-work-v676';
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": "MMcg/gO3",
2
+ "version": "VnAlcNoP",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-z6FT62OrkOJftOttFt32Ty/EjS1EfoS2WPz2eLDt8Dk=",
81
+ "hash": "sha256-LL8TQ236UYPR+nrDB+BuNQg7YtHbAynrsXZr9Gpx7cI=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -426,28 +426,28 @@
426
426
  "url": "_framework/MindExecution.Plugins.Business.ntqdn1hta3.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-ootOqul/GcSLbYNdGfYOV7EGObUzu6xNhsplvrNkjC0=",
430
- "url": "_framework/MindExecution.Plugins.Concept.mqiyx4db4r.dll"
429
+ "hash": "sha256-YsjDXTY6d79me7Oj/MyK+77aoK2txK7RXWA2sb2sJD8=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.ut38jcmcd9.dll"
431
431
  },
432
432
  {
433
433
  "hash": "sha256-DAR/VFVaR1noVv49Z1mWA5rnhP39REfl4pa9D5Mdvvk=",
434
434
  "url": "_framework/MindExecution.Plugins.Directory.k4hx7g84qs.dll"
435
435
  },
436
436
  {
437
- "hash": "sha256-dbV8I5vAEdKha2tmGSPOCrla6tbnXND4+EI7TATxE8M=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.fnortumnuu.dll"
437
+ "hash": "sha256-ptt5TACrc9BHQ8vnpbktd0t37XAr6pxRsiSo4ILBDm8=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.y5lmjhb59y.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-oKAQeyoz+JqD+hk1lE1edkAh+lC1ApxDsLJNEkiH8yg=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.86osu6wpgh.dll"
441
+ "hash": "sha256-9VNevp7riyMfxG9Ff2fk1lj3NlwvddZoW+rrADAIpys=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.d69qzs3egn.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-gPAFDB6AN1y/oig3BdtlEZqGYRl4YfJEjsBBh3Lbr54=",
446
- "url": "_framework/MindExecution.Shared.wg2otcw4bv.dll"
445
+ "hash": "sha256-AZ9E/IGlJenaxuU4QLR/YSWJ7N1UD9WM/Y54IJixmS0=",
446
+ "url": "_framework/MindExecution.Shared.nm91iyihet.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-tKm1yX/UOGvqeOL8ZeQhxKJO+l0Bo8n8oBfAZI3AqtY=",
450
- "url": "_framework/MindExecution.Web.gfio3kfxrd.dll"
449
+ "hash": "sha256-fjj0CM2UNwJcQteOBVIM8CoPgoSnvtRl8bgVfpOag5s=",
450
+ "url": "_framework/MindExecution.Web.uwmu9shvoj.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-s3MWTdjQXEmz2ZjIjcOcbiTXTVqNiKd4AM3I9DlEibc=",
773
+ "hash": "sha256-/kx4/Z+SGkbkT4+wmMrBQ91vR0y1HO4cx6vXLUVfY2c=",
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-cppYkSOj+5AKjKVHxoN8IJpqDJl7KtTlWXNEowfMYAA=",
837
+ "hash": "sha256-b0TOZgtXtQWMz6WuiWNCLO8xogzs6alEuoL0oANwNCg=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: MMcg/gO3 */
1
+ /* Manifest version: VnAlcNoP */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4