blueprint-extractor-mcp 8.0.0 → 8.1.0
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.
- package/README.md +8 -4
- package/dist/execution/adaptive-executor.js +49 -1
- package/dist/helpers/tool-help.js +4 -1
- package/dist/prompts/prompt-catalog.d.ts +2 -2
- package/dist/prompts/prompt-catalog.js +4 -1
- package/dist/register-server-resources.d.ts +5 -2
- package/dist/register-server-resources.js +2 -1
- package/dist/resources/static-doc-resources.js +3 -0
- package/dist/schemas/tool-inputs.d.ts +24 -24
- package/dist/schemas/tool-results.d.ts +623 -2
- package/dist/schemas/tool-results.js +69 -0
- package/dist/server-config.js +6 -2
- package/dist/server-factory.js +35 -2
- package/dist/tool-surface-manager.js +1 -1
- package/dist/tools/project-control.js +112 -1
- package/dist/tools/project-intelligence.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Blueprint Extractor MCP is a [Model Context Protocol](https://modelcontextprotoc
|
|
|
23
23
|
AI Assistant stdio MCP Server HTTP :30010 Unreal Editor
|
|
24
24
|
───────────── ◄────────────► ───────────────── ◄──────────────────► ─────────────────
|
|
25
25
|
Claude Code Node.js process Remote Control API
|
|
26
|
-
Codex / OpenCode
|
|
26
|
+
Codex / OpenCode 112 tools BlueprintExtractor
|
|
27
27
|
... 38 resources plugin
|
|
28
28
|
4 resource templates
|
|
29
29
|
12 prompts
|
|
@@ -86,6 +86,10 @@ codex mcp add --env UE_REMOTE_CONTROL_PORT=30010 \
|
|
|
86
86
|
<tr><td><b>OpenCode</b></td></tr>
|
|
87
87
|
<tr><td>
|
|
88
88
|
|
|
89
|
+
```bash
|
|
90
|
+
npm install --prefix ~/.config/opencode --save-exact blueprint-extractor-mcp@latest
|
|
91
|
+
```
|
|
92
|
+
|
|
89
93
|
```jsonc
|
|
90
94
|
// ~/.config/opencode/opencode.json
|
|
91
95
|
{
|
|
@@ -93,7 +97,7 @@ codex mcp add --env UE_REMOTE_CONTROL_PORT=30010 \
|
|
|
93
97
|
"mcp": {
|
|
94
98
|
"blueprint-extractor": {
|
|
95
99
|
"type": "local",
|
|
96
|
-
"command": ["
|
|
100
|
+
"command": ["/absolute/path/to/.config/opencode/node_modules/.bin/blueprint-extractor-mcp"],
|
|
97
101
|
"enabled": true,
|
|
98
102
|
"environment": {
|
|
99
103
|
"UE_REMOTE_CONTROL_PORT": "30010"
|
|
@@ -106,7 +110,7 @@ codex mcp add --env UE_REMOTE_CONTROL_PORT=30010 \
|
|
|
106
110
|
</td></tr>
|
|
107
111
|
</table>
|
|
108
112
|
|
|
109
|
-
> On Windows,
|
|
113
|
+
> On Windows, point `command` at `C:\Users\you\.config\opencode\node_modules\.bin\blueprint-extractor-mcp.cmd`.
|
|
110
114
|
|
|
111
115
|
<br>
|
|
112
116
|
|
|
@@ -127,7 +131,7 @@ Use `activate_tool_profile` to switch between the compact `default` surface and
|
|
|
127
131
|
| `animation_authoring` | Anim sequences, montages, blend spaces, and widget motion authoring |
|
|
128
132
|
| `data_tables` | Data assets, data tables, curves, Input Actions, and Input Mapping Contexts |
|
|
129
133
|
| `import` | Async asset import and import-job polling |
|
|
130
|
-
| `project_control` | Editor-session binding, launch/wait, project automation context, PIE lifecycle control, host build/restart/sync, and `apply_window_ui_changes` |
|
|
134
|
+
| `project_control` | Editor-session binding, launch/wait, project automation context, Output Log and Message Log inspection, PIE lifecycle control, host build/restart/sync, and `apply_window_ui_changes` |
|
|
131
135
|
| `automation_testing` | Host-side automation runs and automation-run polling |
|
|
132
136
|
| `analysis` | Deterministic Blueprint review and low-noise project asset audits |
|
|
133
137
|
| `project_intelligence` | Bounded editor context, project indexing, freshness status, and snippet-first context search |
|
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
* AdaptiveExecutor routes tool calls to the best available adapter.
|
|
3
3
|
* Falls back from editor to commandlet for compatible operations.
|
|
4
4
|
*/
|
|
5
|
+
const EDITOR_FALLBACK_ERROR_FRAGMENTS = [
|
|
6
|
+
'UE Editor not running or Remote Control not available',
|
|
7
|
+
'BlueprintExtractor subsystem not found',
|
|
8
|
+
'No active editor is selected for this MCP session',
|
|
9
|
+
'Multiple running editors match the workspace project',
|
|
10
|
+
'Active editor mismatch',
|
|
11
|
+
'previously selected active editor',
|
|
12
|
+
'The selected active editor is currently unavailable on its registered Remote Control endpoint.',
|
|
13
|
+
];
|
|
5
14
|
export class AdaptiveExecutor {
|
|
6
15
|
editorAdapter;
|
|
7
16
|
commandletAdapter;
|
|
@@ -47,10 +56,42 @@ export class AdaptiveExecutor {
|
|
|
47
56
|
async executeRouted(editorFallback, method, params, options) {
|
|
48
57
|
const toolName = this._activeToolName;
|
|
49
58
|
const detection = await this.detector.detect();
|
|
59
|
+
const tryCommandletFallback = async (error, requiredCapability) => {
|
|
60
|
+
if (!toolName || !this.commandletAdapter || !shouldFallbackToCommandlet(error)) {
|
|
61
|
+
throw error;
|
|
62
|
+
}
|
|
63
|
+
const commandletCapabilities = this.commandletAdapter.getCapabilities();
|
|
64
|
+
if (!commandletCapabilities.has(requiredCapability) && requiredCapability !== 'write_simple') {
|
|
65
|
+
throw error;
|
|
66
|
+
}
|
|
67
|
+
const available = await this.commandletAdapter.isAvailable();
|
|
68
|
+
if (!available) {
|
|
69
|
+
throw error;
|
|
70
|
+
}
|
|
71
|
+
this.detector.invalidateCache();
|
|
72
|
+
return this.commandletAdapter.execute('BlueprintExtractor', method, params);
|
|
73
|
+
};
|
|
50
74
|
// If no active tool context or editor mode, use the original path
|
|
51
75
|
// (preserves callSubsystemJson error-checking layer)
|
|
52
76
|
if (!toolName || detection.mode === 'editor') {
|
|
53
|
-
|
|
77
|
+
if (!toolName) {
|
|
78
|
+
return editorFallback(method, params, options);
|
|
79
|
+
}
|
|
80
|
+
const toolMode = this.getToolMode(toolName);
|
|
81
|
+
const requiredCapability = toolMode === 'read_only'
|
|
82
|
+
? 'read'
|
|
83
|
+
: toolMode === 'both'
|
|
84
|
+
? 'write_simple'
|
|
85
|
+
: 'write_complex';
|
|
86
|
+
try {
|
|
87
|
+
return await editorFallback(method, params, options);
|
|
88
|
+
}
|
|
89
|
+
catch (error) {
|
|
90
|
+
if (toolMode === 'editor_only') {
|
|
91
|
+
throw error;
|
|
92
|
+
}
|
|
93
|
+
return tryCommandletFallback(error, requiredCapability);
|
|
94
|
+
}
|
|
54
95
|
}
|
|
55
96
|
const toolMode = this.getToolMode(toolName);
|
|
56
97
|
const requiredCapability = toolMode === 'read_only'
|
|
@@ -100,6 +141,13 @@ export class AdaptiveExecutor {
|
|
|
100
141
|
throw new ExecutorError('MODE_UNAVAILABLE', `No execution mode available for tool '${toolName}'. ${detection.reason}`, toolName, detection.mode, requiredCapability);
|
|
101
142
|
}
|
|
102
143
|
}
|
|
144
|
+
function shouldFallbackToCommandlet(error) {
|
|
145
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
146
|
+
if (message.startsWith('Failed to call ')) {
|
|
147
|
+
return true;
|
|
148
|
+
}
|
|
149
|
+
return EDITOR_FALLBACK_ERROR_FRAGMENTS.some((fragment) => message.includes(fragment));
|
|
150
|
+
}
|
|
103
151
|
export class ExecutorError extends Error {
|
|
104
152
|
code;
|
|
105
153
|
toolName;
|
|
@@ -158,7 +158,10 @@ export function collectRelatedResources(toolName) {
|
|
|
158
158
|
|| toolName === 'sync_project_code'
|
|
159
159
|
|| toolName === 'start_pie'
|
|
160
160
|
|| toolName === 'stop_pie'
|
|
161
|
-
|| toolName === 'relaunch_pie'
|
|
161
|
+
|| toolName === 'relaunch_pie'
|
|
162
|
+
|| toolName === 'read_output_log'
|
|
163
|
+
|| toolName === 'list_message_log_listings'
|
|
164
|
+
|| toolName === 'read_message_log') {
|
|
162
165
|
resources.add('blueprint://project-automation');
|
|
163
166
|
}
|
|
164
167
|
if (toolName === 'review_blueprint' || toolName === 'audit_project_assets') {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
1
|
+
import type { McpServer, RegisteredPrompt } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
export type PromptCatalogEntry = {
|
|
4
4
|
title: string;
|
|
@@ -105,4 +105,4 @@ export declare const designSpecSchemaExample: {
|
|
|
105
105
|
};
|
|
106
106
|
};
|
|
107
107
|
export declare const promptCatalog: Record<string, PromptCatalogEntry>;
|
|
108
|
-
export declare function registerPromptCatalog(server: Pick<McpServer, 'registerPrompt'>):
|
|
108
|
+
export declare function registerPromptCatalog(server: Pick<McpServer, 'registerPrompt'>): Map<string, RegisteredPrompt>;
|
|
@@ -342,8 +342,9 @@ export const promptCatalog = {
|
|
|
342
342
|
},
|
|
343
343
|
};
|
|
344
344
|
export function registerPromptCatalog(server) {
|
|
345
|
+
const registeredPrompts = new Map();
|
|
345
346
|
for (const [name, prompt] of Object.entries(promptCatalog)) {
|
|
346
|
-
server.registerPrompt(name, {
|
|
347
|
+
const registeredPrompt = server.registerPrompt(name, {
|
|
347
348
|
title: prompt.title,
|
|
348
349
|
description: prompt.description,
|
|
349
350
|
argsSchema: prompt.args,
|
|
@@ -357,5 +358,7 @@ export function registerPromptCatalog(server) {
|
|
|
357
358
|
},
|
|
358
359
|
}],
|
|
359
360
|
}));
|
|
361
|
+
registeredPrompts.set(name, registeredPrompt);
|
|
360
362
|
}
|
|
363
|
+
return registeredPrompts;
|
|
361
364
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
1
|
+
import { McpServer, type RegisteredPrompt } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
2
2
|
import type { AutomationControllerLike } from './automation-controller.js';
|
|
3
3
|
type JsonSubsystemCaller = (method: string, params: Record<string, unknown>) => Promise<Record<string, unknown>>;
|
|
4
4
|
type RegisterServerResourcesOptions = {
|
|
@@ -6,5 +6,8 @@ type RegisterServerResourcesOptions = {
|
|
|
6
6
|
automationController: AutomationControllerLike;
|
|
7
7
|
callSubsystemJson: JsonSubsystemCaller;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
type RegisterServerResourcesResult = {
|
|
10
|
+
registeredPrompts: Map<string, RegisteredPrompt>;
|
|
11
|
+
};
|
|
12
|
+
export declare function registerServerResources({ server, automationController, callSubsystemJson, }: RegisterServerResourcesOptions): RegisterServerResourcesResult;
|
|
10
13
|
export {};
|
|
@@ -221,6 +221,9 @@ export function registerStaticDocResources(server) {
|
|
|
221
221
|
'',
|
|
222
222
|
'- activate_tool_profile selects the compact default scoped surface or the expert flat surface.',
|
|
223
223
|
'- get_project_automation_context returns the editor-derived engine root, project file path, editor target, and isPlayingInEditor state that project_control tools use as their first fallback.',
|
|
224
|
+
'- read_output_log returns buffered Output Log lines with text/category/verbosity/time filters.',
|
|
225
|
+
'- list_message_log_listings probes known built-in and caller-supplied Message Log listing names and reports which ones are currently registered.',
|
|
226
|
+
'- read_message_log reads one registered Message Log listing with severity, token, text, and paging filters.',
|
|
224
227
|
'- compile_project_code runs an external UBT build from the MCP host.',
|
|
225
228
|
'- compile_project_code and sync_project_code resolve engine_root, project_path, and target in this order: explicit args -> editor context -> environment.',
|
|
226
229
|
'- trigger_live_coding requests an editor-side Live Coding compile and is only supported on Windows-focused setups. changed_paths remains an accepted compatibility input but the current editor-side trigger ignores it. When Live Coding reports NoChanges or another fallback state, the result includes fallbackRecommended, reason, and the last external build context when available.',
|
|
@@ -318,12 +318,12 @@ export declare const MaterialParameterSelectorSchema: z.ZodObject<{
|
|
|
318
318
|
index: z.ZodOptional<z.ZodNumber>;
|
|
319
319
|
}, "strip", z.ZodTypeAny, {
|
|
320
320
|
name: string;
|
|
321
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
322
321
|
index?: number | undefined;
|
|
322
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
323
323
|
}, {
|
|
324
324
|
name: string;
|
|
325
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
326
325
|
index?: number | undefined;
|
|
326
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
327
327
|
}>;
|
|
328
328
|
export declare const MaterialColorValueSchema: z.ZodObject<{
|
|
329
329
|
r: z.ZodNumber;
|
|
@@ -350,13 +350,13 @@ export declare const MaterialScalarParameterSchema: z.ZodObject<{
|
|
|
350
350
|
}, "strip", z.ZodTypeAny, {
|
|
351
351
|
name: string;
|
|
352
352
|
value: number;
|
|
353
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
354
353
|
index?: number | undefined;
|
|
354
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
355
355
|
}, {
|
|
356
356
|
name: string;
|
|
357
357
|
value: number;
|
|
358
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
359
358
|
index?: number | undefined;
|
|
359
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
360
360
|
}>;
|
|
361
361
|
export declare const MaterialVectorParameterSchema: z.ZodObject<{
|
|
362
362
|
name: z.ZodString;
|
|
@@ -387,8 +387,8 @@ export declare const MaterialVectorParameterSchema: z.ZodObject<{
|
|
|
387
387
|
b: number;
|
|
388
388
|
a: number;
|
|
389
389
|
};
|
|
390
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
391
390
|
index?: number | undefined;
|
|
391
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
392
392
|
}, {
|
|
393
393
|
name: string;
|
|
394
394
|
value: {
|
|
@@ -397,8 +397,8 @@ export declare const MaterialVectorParameterSchema: z.ZodObject<{
|
|
|
397
397
|
b: number;
|
|
398
398
|
a: number;
|
|
399
399
|
};
|
|
400
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
401
400
|
index?: number | undefined;
|
|
401
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
402
402
|
}>;
|
|
403
403
|
export declare const MaterialTextureParameterSchema: z.ZodObject<{
|
|
404
404
|
name: z.ZodString;
|
|
@@ -409,13 +409,13 @@ export declare const MaterialTextureParameterSchema: z.ZodObject<{
|
|
|
409
409
|
}, "strip", z.ZodTypeAny, {
|
|
410
410
|
name: string;
|
|
411
411
|
value: string | null;
|
|
412
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
413
412
|
index?: number | undefined;
|
|
413
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
414
414
|
}, {
|
|
415
415
|
name: string;
|
|
416
416
|
value: string | null;
|
|
417
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
418
417
|
index?: number | undefined;
|
|
418
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
419
419
|
}>;
|
|
420
420
|
export declare const MaterialFontParameterSchema: z.ZodObject<{
|
|
421
421
|
name: z.ZodString;
|
|
@@ -427,14 +427,14 @@ export declare const MaterialFontParameterSchema: z.ZodObject<{
|
|
|
427
427
|
}, "strip", z.ZodTypeAny, {
|
|
428
428
|
name: string;
|
|
429
429
|
value: string | null;
|
|
430
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
431
430
|
index?: number | undefined;
|
|
431
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
432
432
|
fontPage?: number | undefined;
|
|
433
433
|
}, {
|
|
434
434
|
name: string;
|
|
435
435
|
value: string | null;
|
|
436
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
437
436
|
index?: number | undefined;
|
|
437
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
438
438
|
fontPage?: number | undefined;
|
|
439
439
|
}>;
|
|
440
440
|
export declare const MaterialStaticSwitchParameterSchema: z.ZodObject<{
|
|
@@ -446,13 +446,13 @@ export declare const MaterialStaticSwitchParameterSchema: z.ZodObject<{
|
|
|
446
446
|
}, "strip", z.ZodTypeAny, {
|
|
447
447
|
name: string;
|
|
448
448
|
value: boolean;
|
|
449
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
450
449
|
index?: number | undefined;
|
|
450
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
451
451
|
}, {
|
|
452
452
|
name: string;
|
|
453
453
|
value: boolean;
|
|
454
|
-
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
455
454
|
index?: number | undefined;
|
|
455
|
+
association?: "layer" | "GlobalParameter" | "LayerParameter" | "BlendParameter" | "global" | "blend" | undefined;
|
|
456
456
|
}>;
|
|
457
457
|
export declare const MaterialLayerEntrySchema: z.ZodObject<{
|
|
458
458
|
layerPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1201,8 +1201,8 @@ export declare const ImportJobItemSchema: z.ZodObject<{
|
|
|
1201
1201
|
severity: string;
|
|
1202
1202
|
path?: string | undefined;
|
|
1203
1203
|
}[];
|
|
1204
|
-
dirtyPackages: string[];
|
|
1205
1204
|
index: number;
|
|
1205
|
+
dirtyPackages: string[];
|
|
1206
1206
|
importedObjects: string[];
|
|
1207
1207
|
url?: string | undefined;
|
|
1208
1208
|
assetPath?: string | undefined;
|
|
@@ -1218,8 +1218,8 @@ export declare const ImportJobItemSchema: z.ZodObject<{
|
|
|
1218
1218
|
severity: string;
|
|
1219
1219
|
path?: string | undefined;
|
|
1220
1220
|
}[];
|
|
1221
|
-
dirtyPackages: string[];
|
|
1222
1221
|
index: number;
|
|
1222
|
+
dirtyPackages: string[];
|
|
1223
1223
|
importedObjects: string[];
|
|
1224
1224
|
url?: string | undefined;
|
|
1225
1225
|
assetPath?: string | undefined;
|
|
@@ -1298,8 +1298,8 @@ export declare const ImportJobSchema: z.ZodObject<{
|
|
|
1298
1298
|
severity: string;
|
|
1299
1299
|
path?: string | undefined;
|
|
1300
1300
|
}[];
|
|
1301
|
-
dirtyPackages: string[];
|
|
1302
1301
|
index: number;
|
|
1302
|
+
dirtyPackages: string[];
|
|
1303
1303
|
importedObjects: string[];
|
|
1304
1304
|
url?: string | undefined;
|
|
1305
1305
|
assetPath?: string | undefined;
|
|
@@ -1315,8 +1315,8 @@ export declare const ImportJobSchema: z.ZodObject<{
|
|
|
1315
1315
|
severity: string;
|
|
1316
1316
|
path?: string | undefined;
|
|
1317
1317
|
}[];
|
|
1318
|
-
dirtyPackages: string[];
|
|
1319
1318
|
index: number;
|
|
1319
|
+
dirtyPackages: string[];
|
|
1320
1320
|
importedObjects: string[];
|
|
1321
1321
|
url?: string | undefined;
|
|
1322
1322
|
assetPath?: string | undefined;
|
|
@@ -1361,8 +1361,8 @@ export declare const ImportJobSchema: z.ZodObject<{
|
|
|
1361
1361
|
severity: string;
|
|
1362
1362
|
path?: string | undefined;
|
|
1363
1363
|
}[];
|
|
1364
|
-
dirtyPackages: string[];
|
|
1365
1364
|
index: number;
|
|
1365
|
+
dirtyPackages: string[];
|
|
1366
1366
|
importedObjects: string[];
|
|
1367
1367
|
url?: string | undefined;
|
|
1368
1368
|
assetPath?: string | undefined;
|
|
@@ -1411,8 +1411,8 @@ export declare const ImportJobSchema: z.ZodObject<{
|
|
|
1411
1411
|
severity: string;
|
|
1412
1412
|
path?: string | undefined;
|
|
1413
1413
|
}[];
|
|
1414
|
-
dirtyPackages: string[];
|
|
1415
1414
|
index: number;
|
|
1415
|
+
dirtyPackages: string[];
|
|
1416
1416
|
importedObjects: string[];
|
|
1417
1417
|
url?: string | undefined;
|
|
1418
1418
|
assetPath?: string | undefined;
|
|
@@ -1557,8 +1557,8 @@ export declare const ImportJobListSchema: z.ZodObject<{
|
|
|
1557
1557
|
severity: string;
|
|
1558
1558
|
path?: string | undefined;
|
|
1559
1559
|
}[];
|
|
1560
|
-
dirtyPackages: string[];
|
|
1561
1560
|
index: number;
|
|
1561
|
+
dirtyPackages: string[];
|
|
1562
1562
|
importedObjects: string[];
|
|
1563
1563
|
url?: string | undefined;
|
|
1564
1564
|
assetPath?: string | undefined;
|
|
@@ -1574,8 +1574,8 @@ export declare const ImportJobListSchema: z.ZodObject<{
|
|
|
1574
1574
|
severity: string;
|
|
1575
1575
|
path?: string | undefined;
|
|
1576
1576
|
}[];
|
|
1577
|
-
dirtyPackages: string[];
|
|
1578
1577
|
index: number;
|
|
1578
|
+
dirtyPackages: string[];
|
|
1579
1579
|
importedObjects: string[];
|
|
1580
1580
|
url?: string | undefined;
|
|
1581
1581
|
assetPath?: string | undefined;
|
|
@@ -1620,8 +1620,8 @@ export declare const ImportJobListSchema: z.ZodObject<{
|
|
|
1620
1620
|
severity: string;
|
|
1621
1621
|
path?: string | undefined;
|
|
1622
1622
|
}[];
|
|
1623
|
-
dirtyPackages: string[];
|
|
1624
1623
|
index: number;
|
|
1624
|
+
dirtyPackages: string[];
|
|
1625
1625
|
importedObjects: string[];
|
|
1626
1626
|
url?: string | undefined;
|
|
1627
1627
|
assetPath?: string | undefined;
|
|
@@ -1670,8 +1670,8 @@ export declare const ImportJobListSchema: z.ZodObject<{
|
|
|
1670
1670
|
severity: string;
|
|
1671
1671
|
path?: string | undefined;
|
|
1672
1672
|
}[];
|
|
1673
|
-
dirtyPackages: string[];
|
|
1674
1673
|
index: number;
|
|
1674
|
+
dirtyPackages: string[];
|
|
1675
1675
|
importedObjects: string[];
|
|
1676
1676
|
url?: string | undefined;
|
|
1677
1677
|
assetPath?: string | undefined;
|
|
@@ -1726,8 +1726,8 @@ export declare const ImportJobListSchema: z.ZodObject<{
|
|
|
1726
1726
|
severity: string;
|
|
1727
1727
|
path?: string | undefined;
|
|
1728
1728
|
}[];
|
|
1729
|
-
dirtyPackages: string[];
|
|
1730
1729
|
index: number;
|
|
1730
|
+
dirtyPackages: string[];
|
|
1731
1731
|
importedObjects: string[];
|
|
1732
1732
|
url?: string | undefined;
|
|
1733
1733
|
assetPath?: string | undefined;
|
|
@@ -1799,8 +1799,8 @@ export declare const ImportJobListSchema: z.ZodObject<{
|
|
|
1799
1799
|
severity: string;
|
|
1800
1800
|
path?: string | undefined;
|
|
1801
1801
|
}[];
|
|
1802
|
-
dirtyPackages: string[];
|
|
1803
1802
|
index: number;
|
|
1803
|
+
dirtyPackages: string[];
|
|
1804
1804
|
importedObjects: string[];
|
|
1805
1805
|
url?: string | undefined;
|
|
1806
1806
|
assetPath?: string | undefined;
|