@adminide-stack/core 13.3.1-alpha.0 → 13.3.1-alpha.3
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.
|
@@ -9,26 +9,52 @@ export interface IMiddlewareLoaderData {
|
|
|
9
9
|
*/
|
|
10
10
|
configurations?: IPreferences;
|
|
11
11
|
configurationsBySchemaId?: Record<string, unknown>;
|
|
12
|
+
/**
|
|
13
|
+
* Query variables used to fetch configurations, indexed by schemaId.
|
|
14
|
+
* Used by client middleware to write configurations to Apollo cache with correct cache keys.
|
|
15
|
+
*/
|
|
16
|
+
queryVariablesBySchemaId?: Record<string, {
|
|
17
|
+
resourceUri: unknown;
|
|
18
|
+
options?: unknown;
|
|
19
|
+
}>;
|
|
12
20
|
/**
|
|
13
21
|
* @deprecated use preferencesInputBySchemaId instead
|
|
14
22
|
*/
|
|
15
23
|
preferencesInput?: unknown;
|
|
16
24
|
preferencesInputBySchemaId?: Record<string, unknown>;
|
|
17
25
|
resourceParams?: IResourceParams | IResourceParams[];
|
|
26
|
+
/**
|
|
27
|
+
* Internal use only - stores the raw serverData from serverLoader().
|
|
28
|
+
* This is extracted to top-level properties and then deleted before returning.
|
|
29
|
+
*/
|
|
30
|
+
_serverData?: Record<string, unknown>;
|
|
18
31
|
serverData?: {
|
|
19
32
|
/**
|
|
20
33
|
* @deprecated use configurationsBySchemaId instead
|
|
21
34
|
*/
|
|
22
35
|
configurations?: IPreferences;
|
|
23
36
|
configurationsBySchemaId?: Record<string, unknown>;
|
|
37
|
+
queryVariablesBySchemaId?: Record<string, {
|
|
38
|
+
resourceUri: unknown;
|
|
39
|
+
options?: unknown;
|
|
40
|
+
}>;
|
|
24
41
|
preferencesInputBySchemaId?: Record<string, unknown>;
|
|
25
42
|
permissions?: IPermissions | null;
|
|
26
43
|
dataContext?: {
|
|
44
|
+
apolloState?: Record<string, any>;
|
|
45
|
+
lifecycleStatus?: number;
|
|
46
|
+
resourceParams?: IResourceParams | IResourceParams[];
|
|
27
47
|
/**
|
|
28
48
|
* @deprecated use preferencesInputBySchemaId instead
|
|
29
49
|
*/
|
|
30
50
|
preferencesInput?: unknown;
|
|
31
51
|
configurationsBySchemaId?: Record<string, unknown>;
|
|
52
|
+
queryVariablesBySchemaId?: Record<string, {
|
|
53
|
+
resourceUri: unknown;
|
|
54
|
+
options?: unknown;
|
|
55
|
+
}>;
|
|
56
|
+
configurations?: IPreferences;
|
|
57
|
+
permissions?: IPermissions | null;
|
|
32
58
|
preferencesInputBySchemaId?: Record<string, unknown>;
|
|
33
59
|
};
|
|
34
60
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminide-stack/core",
|
|
3
|
-
"version": "13.3.1-alpha.
|
|
3
|
+
"version": "13.3.1-alpha.3",
|
|
4
4
|
"description": "AdminIDE core for higher packages to depend on",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "adminide-stack-user",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"vscode-uri": "^3.0.8"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"common": "13.3.1-alpha.
|
|
33
|
+
"common": "13.3.1-alpha.3"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@common-stack/server-core": ">=0.5.21",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"typescript": {
|
|
40
40
|
"definition": "lib/index.d.ts"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "8885c4697486e4f914f57d4707f091245476bf7e"
|
|
43
43
|
}
|