@adminide-stack/core 13.5.3-alpha.268 → 13.5.3-alpha.272
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.
|
@@ -23,12 +23,23 @@ export interface IMiddlewareLoaderData {
|
|
|
23
23
|
resourceUri: unknown;
|
|
24
24
|
options?: unknown;
|
|
25
25
|
}>;
|
|
26
|
+
marketplaceDeferredBySchemaId?: Record<string, Promise<unknown> | unknown>;
|
|
27
|
+
marketplaceQueryVariablesBySchemaId?: Record<string, {
|
|
28
|
+
resourceUri: unknown;
|
|
29
|
+
options?: unknown;
|
|
30
|
+
}>;
|
|
26
31
|
/**
|
|
27
32
|
* @deprecated use preferencesInputBySchemaId instead
|
|
28
33
|
*/
|
|
29
34
|
preferencesInput?: unknown;
|
|
30
35
|
preferencesInputBySchemaId?: Record<string, unknown>;
|
|
31
36
|
resourceParams?: IResourceParams | IResourceParams[];
|
|
37
|
+
/**
|
|
38
|
+
* URL-style params resolved by middleware.
|
|
39
|
+
* Generated loaders merge this under route params so prefetch queries can use values
|
|
40
|
+
* derived from context on routes that do not have matching URL segments.
|
|
41
|
+
*/
|
|
42
|
+
resolvedParams?: Record<string, unknown>;
|
|
32
43
|
/**
|
|
33
44
|
* Internal use only - stores the raw serverData from serverLoader().
|
|
34
45
|
* This is extracted to top-level properties and then deleted before returning.
|
|
@@ -44,6 +55,11 @@ export interface IMiddlewareLoaderData {
|
|
|
44
55
|
resourceUri: unknown;
|
|
45
56
|
options?: unknown;
|
|
46
57
|
}>;
|
|
58
|
+
marketplaceDeferredBySchemaId?: Record<string, Promise<unknown> | unknown>;
|
|
59
|
+
marketplaceQueryVariablesBySchemaId?: Record<string, {
|
|
60
|
+
resourceUri: unknown;
|
|
61
|
+
options?: unknown;
|
|
62
|
+
}>;
|
|
47
63
|
preferencesInputBySchemaId?: Record<string, unknown>;
|
|
48
64
|
permissions?: IPermissions | null;
|
|
49
65
|
policies?: Record<string, unknown> | null;
|
|
@@ -51,6 +67,7 @@ export interface IMiddlewareLoaderData {
|
|
|
51
67
|
apolloState?: Record<string, any>;
|
|
52
68
|
lifecycleStatus?: number;
|
|
53
69
|
resourceParams?: IResourceParams | IResourceParams[];
|
|
70
|
+
resolvedParams?: Record<string, unknown>;
|
|
54
71
|
/**
|
|
55
72
|
* @deprecated use preferencesInputBySchemaId instead
|
|
56
73
|
*/
|
|
@@ -60,6 +77,11 @@ export interface IMiddlewareLoaderData {
|
|
|
60
77
|
resourceUri: unknown;
|
|
61
78
|
options?: unknown;
|
|
62
79
|
}>;
|
|
80
|
+
marketplaceDeferredBySchemaId?: Record<string, Promise<unknown> | unknown>;
|
|
81
|
+
marketplaceQueryVariablesBySchemaId?: Record<string, {
|
|
82
|
+
resourceUri: unknown;
|
|
83
|
+
options?: unknown;
|
|
84
|
+
}>;
|
|
63
85
|
configurations?: IPreferences;
|
|
64
86
|
permissions?: IPermissions | null;
|
|
65
87
|
policies?: Record<string, unknown> | null;
|
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.272",
|
|
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.272"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@common-stack/server-core": ">=0.5.21",
|
|
37
37
|
"vscode-uri": "*"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "72016542814d3cb95f4050d0c24a8ba14b068388",
|
|
40
40
|
"typescript": {
|
|
41
41
|
"definition": "lib/index.d.ts"
|
|
42
42
|
}
|