@wonderlandengine/mcp-plugin 1.1.0 → 1.1.1
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/build/schemas.d.ts +47 -79
- package/package.json +1 -1
package/build/schemas.d.ts
CHANGED
|
@@ -1,121 +1,89 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const ResourceTypes: readonly ["objects", "textures", "meshes", "materials", "animations", "skins", "images", "shaders", "pipelines", "fonts", "morphTargets", "particleEffects"];
|
|
3
3
|
export declare const queryResourcesSchema: {
|
|
4
|
-
resourceType: z.ZodEnum<
|
|
5
|
-
|
|
4
|
+
resourceType: z.ZodEnum<{
|
|
5
|
+
objects: "objects";
|
|
6
|
+
textures: "textures";
|
|
7
|
+
meshes: "meshes";
|
|
8
|
+
materials: "materials";
|
|
9
|
+
animations: "animations";
|
|
10
|
+
skins: "skins";
|
|
11
|
+
images: "images";
|
|
12
|
+
shaders: "shaders";
|
|
13
|
+
pipelines: "pipelines";
|
|
14
|
+
fonts: "fonts";
|
|
15
|
+
morphTargets: "morphTargets";
|
|
16
|
+
particleEffects: "particleEffects";
|
|
17
|
+
}>;
|
|
18
|
+
ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6
19
|
includeFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7
20
|
excludeFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8
|
-
paths: z.ZodOptional<z.ZodArray<z.ZodString
|
|
21
|
+
paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9
22
|
};
|
|
10
23
|
export declare const querySettingsSchema: {
|
|
11
|
-
paths: z.ZodOptional<z.ZodArray<z.ZodString
|
|
24
|
+
paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12
25
|
};
|
|
13
26
|
export declare const modifySettingsSchema: {
|
|
14
27
|
changeSettings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15
|
-
resetPaths: z.ZodOptional<z.ZodArray<z.ZodString
|
|
28
|
+
resetPaths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16
29
|
};
|
|
17
30
|
export declare const queryComponentTypesSchema: {
|
|
18
|
-
names: z.ZodOptional<z.ZodArray<z.ZodString
|
|
31
|
+
names: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19
32
|
};
|
|
20
33
|
export declare const deleteObjectsSchema: {
|
|
21
|
-
objectIds: z.ZodArray<z.ZodString
|
|
34
|
+
objectIds: z.ZodArray<z.ZodString>;
|
|
22
35
|
};
|
|
23
36
|
export declare const modifyObjectsSchema: {
|
|
24
37
|
modifications: z.ZodArray<z.ZodObject<{
|
|
25
38
|
name: z.ZodOptional<z.ZodString>;
|
|
26
39
|
id: z.ZodOptional<z.ZodString>;
|
|
27
40
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
|
-
position: z.ZodOptional<z.ZodArray<z.ZodNumber
|
|
29
|
-
rotation: z.ZodOptional<z.ZodArray<z.ZodNumber
|
|
30
|
-
scaling: z.ZodOptional<z.ZodArray<z.ZodNumber
|
|
41
|
+
position: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
42
|
+
rotation: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
43
|
+
scaling: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
31
44
|
addComponents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32
45
|
type: z.ZodString;
|
|
33
46
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
34
|
-
},
|
|
35
|
-
type: string;
|
|
36
|
-
properties?: Record<string, any> | undefined;
|
|
37
|
-
}, {
|
|
38
|
-
type: string;
|
|
39
|
-
properties?: Record<string, any> | undefined;
|
|
40
|
-
}>, "many">>;
|
|
47
|
+
}, z.core.$strip>>>;
|
|
41
48
|
modifyComponents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
42
49
|
index: z.ZodNumber;
|
|
43
50
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}, {
|
|
48
|
-
index: number;
|
|
49
|
-
properties?: Record<string, any> | undefined;
|
|
50
|
-
}>, "many">>;
|
|
51
|
-
removeComponents: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
52
|
-
}, "strip", z.ZodTypeAny, {
|
|
53
|
-
name?: string | undefined;
|
|
54
|
-
id?: string | undefined;
|
|
55
|
-
parentId?: string | null | undefined;
|
|
56
|
-
position?: number[] | undefined;
|
|
57
|
-
rotation?: number[] | undefined;
|
|
58
|
-
scaling?: number[] | undefined;
|
|
59
|
-
addComponents?: {
|
|
60
|
-
type: string;
|
|
61
|
-
properties?: Record<string, any> | undefined;
|
|
62
|
-
}[] | undefined;
|
|
63
|
-
modifyComponents?: {
|
|
64
|
-
index: number;
|
|
65
|
-
properties?: Record<string, any> | undefined;
|
|
66
|
-
}[] | undefined;
|
|
67
|
-
removeComponents?: number[] | undefined;
|
|
68
|
-
}, {
|
|
69
|
-
name?: string | undefined;
|
|
70
|
-
id?: string | undefined;
|
|
71
|
-
parentId?: string | null | undefined;
|
|
72
|
-
position?: number[] | undefined;
|
|
73
|
-
rotation?: number[] | undefined;
|
|
74
|
-
scaling?: number[] | undefined;
|
|
75
|
-
addComponents?: {
|
|
76
|
-
type: string;
|
|
77
|
-
properties?: Record<string, any> | undefined;
|
|
78
|
-
}[] | undefined;
|
|
79
|
-
modifyComponents?: {
|
|
80
|
-
index: number;
|
|
81
|
-
properties?: Record<string, any> | undefined;
|
|
82
|
-
}[] | undefined;
|
|
83
|
-
removeComponents?: number[] | undefined;
|
|
84
|
-
}>, "many">;
|
|
51
|
+
}, z.core.$strip>>>;
|
|
52
|
+
removeComponents: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
53
|
+
}, z.core.$strip>>;
|
|
85
54
|
};
|
|
86
55
|
export declare const modifyResourcesSchema: {
|
|
87
56
|
modifications: z.ZodArray<z.ZodObject<{
|
|
88
|
-
resourceType: z.ZodEnum<
|
|
57
|
+
resourceType: z.ZodEnum<{
|
|
58
|
+
objects: "objects";
|
|
59
|
+
textures: "textures";
|
|
60
|
+
meshes: "meshes";
|
|
61
|
+
materials: "materials";
|
|
62
|
+
animations: "animations";
|
|
63
|
+
skins: "skins";
|
|
64
|
+
images: "images";
|
|
65
|
+
shaders: "shaders";
|
|
66
|
+
pipelines: "pipelines";
|
|
67
|
+
fonts: "fonts";
|
|
68
|
+
morphTargets: "morphTargets";
|
|
69
|
+
particleEffects: "particleEffects";
|
|
70
|
+
}>;
|
|
89
71
|
id: z.ZodOptional<z.ZodString>;
|
|
90
72
|
changeProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
91
|
-
resetProperties: z.ZodOptional<z.ZodArray<z.ZodString
|
|
92
|
-
},
|
|
93
|
-
resourceType: "objects" | "textures" | "meshes" | "materials" | "animations" | "skins" | "images" | "shaders" | "pipelines" | "fonts" | "morphTargets" | "particleEffects";
|
|
94
|
-
id?: string | undefined;
|
|
95
|
-
changeProperties?: Record<string, any> | undefined;
|
|
96
|
-
resetProperties?: string[] | undefined;
|
|
97
|
-
}, {
|
|
98
|
-
resourceType: "objects" | "textures" | "meshes" | "materials" | "animations" | "skins" | "images" | "shaders" | "pipelines" | "fonts" | "morphTargets" | "particleEffects";
|
|
99
|
-
id?: string | undefined;
|
|
100
|
-
changeProperties?: Record<string, any> | undefined;
|
|
101
|
-
resetProperties?: string[] | undefined;
|
|
102
|
-
}>, "many">;
|
|
73
|
+
resetProperties: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
74
|
+
}, z.core.$strip>>;
|
|
103
75
|
};
|
|
104
76
|
export declare const importSceneFilesSchema: {
|
|
105
77
|
imports: z.ZodArray<z.ZodObject<{
|
|
106
78
|
path: z.ZodString;
|
|
107
|
-
},
|
|
108
|
-
path: string;
|
|
109
|
-
}, {
|
|
110
|
-
path: string;
|
|
111
|
-
}>, "many">;
|
|
79
|
+
}, z.core.$strip>>;
|
|
112
80
|
};
|
|
113
81
|
export declare const importFilesSchema: {
|
|
114
|
-
imports: z.ZodArray<z.ZodString
|
|
82
|
+
imports: z.ZodArray<z.ZodString>;
|
|
115
83
|
};
|
|
116
84
|
export declare const computeMeshBoundsSchema: {
|
|
117
|
-
meshIds: z.ZodArray<z.ZodString
|
|
85
|
+
meshIds: z.ZodArray<z.ZodString>;
|
|
118
86
|
};
|
|
119
87
|
export declare const computeObjectBoundsSchema: {
|
|
120
|
-
objectIds: z.ZodArray<z.ZodString
|
|
88
|
+
objectIds: z.ZodArray<z.ZodString>;
|
|
121
89
|
};
|