@adminide-stack/core 13.5.3-alpha.294 → 13.5.3-alpha.298

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.
@@ -96,4 +96,12 @@ export interface IMiddlewareLoaderData {
96
96
  };
97
97
  permissions?: IPermissions | null;
98
98
  policies?: Record<string, unknown> | null;
99
+ /**
100
+ * In-flight serverLoader() result for a non-blocking first visit during SPA
101
+ * navigation (set by lifecycleStatusMiddleware when the route has no memoized
102
+ * serverData). Resolves to the serverData shape, or null on failure/redirect.
103
+ * Client middlewares and generated defaultClientLoaders chain their Apollo
104
+ * cache writes on it instead of blocking the navigation.
105
+ */
106
+ serverDataPromise?: Promise<IMiddlewareLoaderData['serverData'] | null>;
99
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminide-stack/core",
3
- "version": "13.5.3-alpha.294",
3
+ "version": "13.5.3-alpha.298",
4
4
  "description": "AdminIDE core for higher packages to depend on",
5
5
  "license": "UNLICENSED",
6
6
  "author": "adminide-stack-user",
@@ -30,13 +30,13 @@
30
30
  "vscode-uri": "^3.0.8"
31
31
  },
32
32
  "devDependencies": {
33
- "common": "13.5.3-alpha.293"
33
+ "common": "13.5.3-alpha.298"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@common-stack/server-core": ">=0.5.21",
37
37
  "vscode-uri": "*"
38
38
  },
39
- "gitHead": "f38f533d2d5e79dd9470d3e3e2119ff663fc5eb4",
39
+ "gitHead": "fdd910deaf38d800289d8e3967b00ca313db4a78",
40
40
  "typescript": {
41
41
  "definition": "lib/index.d.ts"
42
42
  }