@adminide-stack/core 13.5.3-alpha.293 → 13.5.3-alpha.296
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.
|
|
3
|
+
"version": "13.5.3-alpha.296",
|
|
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": "
|
|
33
|
+
"common": "13.5.3-alpha.293"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@common-stack/server-core": ">=0.5.21",
|
|
37
37
|
"vscode-uri": "*"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "e92edef57d2c874fdb8e8397032eaae610c75c4f",
|
|
40
40
|
"typescript": {
|
|
41
41
|
"definition": "lib/index.d.ts"
|
|
42
42
|
}
|