@mindexec/cli 0.2.418 → 0.2.419
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/server.js +17 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +1 -1
- package/wwwroot/_framework/MindExecution.Web.d8y80arq4m.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +3 -3
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +6 -6
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Web.b244ha7c5k.dll +0 -0
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -6185,6 +6185,7 @@ function buildRefreshedSupabaseSessionPayload(content, refreshedSession) {
|
|
|
6185
6185
|
const expiresInRaw = Number(readSupabaseSessionField(refreshedSession, 'expires_in', 'expiresIn', 'ExpiresIn') || 0);
|
|
6186
6186
|
const expiresAtFromResponse = readSupabaseSessionField(refreshedSession, 'expires_at', 'expiresAt', 'ExpiresAt');
|
|
6187
6187
|
const expiresAtMs = parseSupabaseSessionExpiresAtMs(expiresAtFromResponse)
|
|
6188
|
+
|| (Number.isFinite(expiresInRaw) && expiresInRaw > 999999999 ? parseSupabaseSessionExpiresAtMs(expiresInRaw) : 0)
|
|
6188
6189
|
|| (Number.isFinite(expiresInRaw) && expiresInRaw > 0 ? Date.now() + (expiresInRaw * 1000) : 0);
|
|
6189
6190
|
const expiresAtSeconds = expiresAtMs > 0 ? Math.floor(expiresAtMs / 1000) : 0;
|
|
6190
6191
|
|
|
@@ -6229,7 +6230,7 @@ function parseSupabaseSessionForRegistry(content) {
|
|
|
6229
6230
|
const userId = String(
|
|
6230
6231
|
readSupabaseSessionField(user, 'id', 'Id')
|
|
6231
6232
|
|| readSupabaseSessionField(session, 'user_id', 'userId', 'UserId')).trim();
|
|
6232
|
-
|
|
6233
|
+
let expiresAtMs = parseSupabaseSessionExpiresAtMs(readSupabaseSessionField(
|
|
6233
6234
|
session,
|
|
6234
6235
|
'expires_at',
|
|
6235
6236
|
'expiresAt',
|
|
@@ -6239,6 +6240,21 @@ function parseSupabaseSessionForRegistry(content) {
|
|
|
6239
6240
|
'ExpiresAtMs',
|
|
6240
6241
|
'expiresAtUnixTime',
|
|
6241
6242
|
'ExpiresAtUnixTime'));
|
|
6243
|
+
if (!expiresAtMs) {
|
|
6244
|
+
const expiresInRaw = Number(readSupabaseSessionField(session, 'expires_in', 'expiresIn', 'ExpiresIn') || 0);
|
|
6245
|
+
if (Number.isFinite(expiresInRaw) && expiresInRaw > 999999999) {
|
|
6246
|
+
expiresAtMs = parseSupabaseSessionExpiresAtMs(expiresInRaw);
|
|
6247
|
+
} else if (Number.isFinite(expiresInRaw) && expiresInRaw > 0) {
|
|
6248
|
+
const createdAtMs = parseSupabaseSessionExpiresAtMs(readSupabaseSessionField(
|
|
6249
|
+
session,
|
|
6250
|
+
'created_at',
|
|
6251
|
+
'createdAt',
|
|
6252
|
+
'CreatedAt'));
|
|
6253
|
+
if (createdAtMs > 0) {
|
|
6254
|
+
expiresAtMs = createdAtMs + (expiresInRaw * 1000);
|
|
6255
|
+
}
|
|
6256
|
+
}
|
|
6257
|
+
}
|
|
6242
6258
|
|
|
6243
6259
|
if (!accessToken || !userId) {
|
|
6244
6260
|
return null;
|
|
@@ -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 = '20260628-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260628-google-oauth-pkce-v853';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-lfANXRBzPDDr3VMCE7XYyf20cBIsubYY+/TbsqeIJqs=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"MindExecution.Plugins.PlanMaster.0fb3d2by4x.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
133
|
"MindExecution.Plugins.YouTube.8k0sthce42.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
134
|
"MindExecution.Shared.5azabuayvq.dll": "MindExecution.Shared.dll",
|
|
135
|
-
"MindExecution.Web.
|
|
135
|
+
"MindExecution.Web.d8y80arq4m.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",
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
"MindExecution.Plugins.Concept.5wy4pksmui.dll": "sha256-W63xdVGXylTdyZseFs224N6j1Mplai2G0zsxvOPgjZk=",
|
|
285
285
|
"MindExecution.Plugins.PlanMaster.0fb3d2by4x.dll": "sha256-jAEHt2nT48991+Q48+xYla2BmzGFE4RMNnBMoiK2D84=",
|
|
286
286
|
"MindExecution.Shared.5azabuayvq.dll": "sha256-4+ssyeCzUXueKL7KyMN9uxlLdlIUXG9qosXQdnbEoFY=",
|
|
287
|
-
"MindExecution.Web.
|
|
287
|
+
"MindExecution.Web.d8y80arq4m.dll": "sha256-TfdlRSl1DOBA2ZeHhg2qOrd4GBdX7hAPBpk+KroEMbU="
|
|
288
288
|
},
|
|
289
289
|
"lazyAssembly": {
|
|
290
290
|
"MindExecution.Plugins.Admin.j8r53ny1yk.dll": "sha256-IxjG4k/zJiUqItA1VJm4FISwJ1CYLo+xAXJUTUXsQKc=",
|
package/wwwroot/index.html
CHANGED
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260628-
|
|
582
|
+
const scriptVersion = '20260628-google-oauth-pkce-v853';
|
|
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": "
|
|
2
|
+
"version": "V+w5yktL",
|
|
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-
|
|
81
|
+
"hash": "sha256-jSAGVrf4ozvjP+Aq6C78+TctFHmOCdW9CvQzWHMipGc=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -442,8 +442,8 @@
|
|
|
442
442
|
"url": "_framework/MindExecution.Shared.5azabuayvq.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Web.
|
|
445
|
+
"hash": "sha256-TfdlRSl1DOBA2ZeHhg2qOrd4GBdX7hAPBpk+KroEMbU=",
|
|
446
|
+
"url": "_framework/MindExecution.Web.d8y80arq4m.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
449
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -766,7 +766,7 @@
|
|
|
766
766
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
767
767
|
},
|
|
768
768
|
{
|
|
769
|
-
"hash": "sha256-
|
|
769
|
+
"hash": "sha256-j+X4hLoSP7Y4PD/Pod1kQcyPS8IrV0oUIR77CxmZkpU=",
|
|
770
770
|
"url": "_framework/blazor.boot.json"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
@@ -826,7 +826,7 @@
|
|
|
826
826
|
"url": "icon-512.png"
|
|
827
827
|
},
|
|
828
828
|
{
|
|
829
|
-
"hash": "sha256-
|
|
829
|
+
"hash": "sha256-0A9+1rtEIXzrj709gnMiqe9M+e9NKzQ5spRGPKjsN1g=",
|
|
830
830
|
"url": "index.html"
|
|
831
831
|
},
|
|
832
832
|
{
|
|
Binary file
|