@adminide-stack/core 13.5.3-alpha.273 → 13.5.3-alpha.278
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.
|
@@ -15,6 +15,8 @@ export interface IMiddlewareLoaderData {
|
|
|
15
15
|
*/
|
|
16
16
|
configurations?: IPreferences;
|
|
17
17
|
configurationsBySchemaId?: Record<string, unknown>;
|
|
18
|
+
pageInfoBySchemaId?: Record<string, unknown>;
|
|
19
|
+
pageInfoDeferredBySchemaId?: Record<string, Promise<unknown> | unknown>;
|
|
18
20
|
/**
|
|
19
21
|
* Query variables used to fetch configurations, indexed by schemaId.
|
|
20
22
|
* Used by client middleware to write configurations to Apollo cache with correct cache keys.
|
|
@@ -51,6 +53,8 @@ export interface IMiddlewareLoaderData {
|
|
|
51
53
|
*/
|
|
52
54
|
configurations?: IPreferences;
|
|
53
55
|
configurationsBySchemaId?: Record<string, unknown>;
|
|
56
|
+
pageInfoBySchemaId?: Record<string, unknown>;
|
|
57
|
+
pageInfoDeferredBySchemaId?: Record<string, Promise<unknown> | unknown>;
|
|
54
58
|
queryVariablesBySchemaId?: Record<string, {
|
|
55
59
|
resourceUri: unknown;
|
|
56
60
|
options?: unknown;
|
|
@@ -73,6 +77,8 @@ export interface IMiddlewareLoaderData {
|
|
|
73
77
|
*/
|
|
74
78
|
preferencesInput?: unknown;
|
|
75
79
|
configurationsBySchemaId?: Record<string, unknown>;
|
|
80
|
+
pageInfoBySchemaId?: Record<string, unknown>;
|
|
81
|
+
pageInfoDeferredBySchemaId?: Record<string, Promise<unknown> | unknown>;
|
|
76
82
|
queryVariablesBySchemaId?: Record<string, {
|
|
77
83
|
resourceUri: unknown;
|
|
78
84
|
options?: unknown;
|
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.278",
|
|
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.
|
|
33
|
+
"common": "13.5.3-alpha.278"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@common-stack/server-core": ">=0.5.21",
|
|
37
37
|
"vscode-uri": "*"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "d38d26534163982e5086f37bb5ea7d7fd6064e76",
|
|
40
40
|
"typescript": {
|
|
41
41
|
"definition": "lib/index.d.ts"
|
|
42
42
|
}
|