@give-tech/lingxi-mcp-server 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/dist/tools/model.d.ts +38 -4
- package/dist/tools/model.d.ts.map +1 -1
- package/dist/tools/model.js +23 -11
- package/dist/tools/model.js.map +1 -1
- package/package.json +1 -1
package/dist/tools/model.d.ts
CHANGED
|
@@ -11,11 +11,14 @@ export declare function registerModelTools(client: ApiClient): ({
|
|
|
11
11
|
description: string;
|
|
12
12
|
};
|
|
13
13
|
id?: undefined;
|
|
14
|
+
projectId?: undefined;
|
|
14
15
|
name?: undefined;
|
|
15
16
|
description?: undefined;
|
|
16
17
|
type?: undefined;
|
|
17
|
-
|
|
18
|
+
genericParams?: undefined;
|
|
19
|
+
extendsModelId?: undefined;
|
|
18
20
|
fields?: undefined;
|
|
21
|
+
generics?: undefined;
|
|
19
22
|
};
|
|
20
23
|
required: string[];
|
|
21
24
|
};
|
|
@@ -31,11 +34,14 @@ export declare function registerModelTools(client: ApiClient): ({
|
|
|
31
34
|
description: string;
|
|
32
35
|
};
|
|
33
36
|
moduleId?: undefined;
|
|
37
|
+
projectId?: undefined;
|
|
34
38
|
name?: undefined;
|
|
35
39
|
description?: undefined;
|
|
36
40
|
type?: undefined;
|
|
37
|
-
|
|
41
|
+
genericParams?: undefined;
|
|
42
|
+
extendsModelId?: undefined;
|
|
38
43
|
fields?: undefined;
|
|
44
|
+
generics?: undefined;
|
|
39
45
|
};
|
|
40
46
|
required: string[];
|
|
41
47
|
};
|
|
@@ -46,6 +52,10 @@ export declare function registerModelTools(client: ApiClient): ({
|
|
|
46
52
|
inputSchema: {
|
|
47
53
|
type: "object";
|
|
48
54
|
properties: {
|
|
55
|
+
projectId: {
|
|
56
|
+
type: "string";
|
|
57
|
+
description: string;
|
|
58
|
+
};
|
|
49
59
|
moduleId: {
|
|
50
60
|
type: "string";
|
|
51
61
|
description: string;
|
|
@@ -62,7 +72,14 @@ export declare function registerModelTools(client: ApiClient): ({
|
|
|
62
72
|
type: "number";
|
|
63
73
|
description: string;
|
|
64
74
|
};
|
|
65
|
-
|
|
75
|
+
genericParams: {
|
|
76
|
+
type: "array";
|
|
77
|
+
description: string;
|
|
78
|
+
items: {
|
|
79
|
+
type: "string";
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
extendsModelId: {
|
|
66
83
|
type: "string";
|
|
67
84
|
description: string;
|
|
68
85
|
};
|
|
@@ -74,23 +91,29 @@ export declare function registerModelTools(client: ApiClient): ({
|
|
|
74
91
|
properties: {
|
|
75
92
|
name: {
|
|
76
93
|
type: "string";
|
|
94
|
+
description: string;
|
|
77
95
|
};
|
|
78
96
|
type: {
|
|
79
97
|
type: "string";
|
|
98
|
+
description: string;
|
|
80
99
|
};
|
|
81
100
|
required: {
|
|
82
101
|
type: "boolean";
|
|
102
|
+
description: string;
|
|
83
103
|
};
|
|
84
104
|
description: {
|
|
85
105
|
type: "string";
|
|
106
|
+
description: string;
|
|
86
107
|
};
|
|
87
108
|
example: {
|
|
88
109
|
type: "string";
|
|
110
|
+
description: string;
|
|
89
111
|
};
|
|
90
112
|
};
|
|
91
113
|
};
|
|
92
114
|
};
|
|
93
115
|
id?: undefined;
|
|
116
|
+
generics?: undefined;
|
|
94
117
|
};
|
|
95
118
|
required: string[];
|
|
96
119
|
};
|
|
@@ -129,23 +152,31 @@ export declare function registerModelTools(client: ApiClient): ({
|
|
|
129
152
|
properties: {
|
|
130
153
|
name: {
|
|
131
154
|
type: "string";
|
|
155
|
+
description?: undefined;
|
|
132
156
|
};
|
|
133
157
|
type: {
|
|
134
158
|
type: "string";
|
|
159
|
+
description?: undefined;
|
|
135
160
|
};
|
|
136
161
|
required: {
|
|
137
162
|
type: "boolean";
|
|
163
|
+
description?: undefined;
|
|
138
164
|
};
|
|
139
165
|
description: {
|
|
140
166
|
type: "string";
|
|
167
|
+
description?: undefined;
|
|
141
168
|
};
|
|
142
169
|
example: {
|
|
143
170
|
type: "string";
|
|
171
|
+
description?: undefined;
|
|
144
172
|
};
|
|
145
173
|
};
|
|
146
174
|
};
|
|
147
175
|
};
|
|
148
176
|
moduleId?: undefined;
|
|
177
|
+
projectId?: undefined;
|
|
178
|
+
genericParams?: undefined;
|
|
179
|
+
extendsModelId?: undefined;
|
|
149
180
|
};
|
|
150
181
|
required: string[];
|
|
151
182
|
};
|
|
@@ -161,11 +192,14 @@ export declare function registerModelTools(client: ApiClient): ({
|
|
|
161
192
|
description: string;
|
|
162
193
|
};
|
|
163
194
|
moduleId?: undefined;
|
|
195
|
+
projectId?: undefined;
|
|
164
196
|
name?: undefined;
|
|
165
197
|
description?: undefined;
|
|
166
198
|
type?: undefined;
|
|
167
|
-
|
|
199
|
+
genericParams?: undefined;
|
|
200
|
+
extendsModelId?: undefined;
|
|
168
201
|
fields?: undefined;
|
|
202
|
+
generics?: undefined;
|
|
169
203
|
};
|
|
170
204
|
required: string[];
|
|
171
205
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/tools/model.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAAE,KAAK,EAAsD,MAAM,aAAa,CAAC;AAE7F,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,SAAS
|
|
1
|
+
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/tools/model.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAAE,KAAK,EAAsD,MAAM,aAAa,CAAC;AAE7F,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,SAAS;;;;;;;;;;;;;;;;;;;;;;qBAevB,OAAO;;;;;;;;;;;;;;;;;;;;;;;qBAkBP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAyDP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAiEP,OAAO;;;;;;;;;;;;;;;;;;;;;;;qBAyBP,OAAO;iBAEU,MAAM;;KAInD"}
|
package/dist/tools/model.js
CHANGED
|
@@ -44,6 +44,10 @@ export function registerModelTools(client) {
|
|
|
44
44
|
inputSchema: {
|
|
45
45
|
type: 'object',
|
|
46
46
|
properties: {
|
|
47
|
+
projectId: {
|
|
48
|
+
type: 'string',
|
|
49
|
+
description: '项目ID',
|
|
50
|
+
},
|
|
47
51
|
moduleId: {
|
|
48
52
|
type: 'string',
|
|
49
53
|
description: '模块ID',
|
|
@@ -60,9 +64,14 @@ export function registerModelTools(client) {
|
|
|
60
64
|
type: 'number',
|
|
61
65
|
description: 'Model 类型: 0-通用, 1-请求体, 2-响应体, 3-泛型',
|
|
62
66
|
},
|
|
63
|
-
|
|
67
|
+
genericParams: {
|
|
68
|
+
type: 'array',
|
|
69
|
+
description: '泛型参数名称列表,如 ["T", "E"]',
|
|
70
|
+
items: { type: 'string' },
|
|
71
|
+
},
|
|
72
|
+
extendsModelId: {
|
|
64
73
|
type: 'string',
|
|
65
|
-
description: '
|
|
74
|
+
description: '继承的父 Model ID',
|
|
66
75
|
},
|
|
67
76
|
fields: {
|
|
68
77
|
type: 'array',
|
|
@@ -70,32 +79,35 @@ export function registerModelTools(client) {
|
|
|
70
79
|
items: {
|
|
71
80
|
type: 'object',
|
|
72
81
|
properties: {
|
|
73
|
-
name: { type: 'string' },
|
|
74
|
-
type: { type: 'string' },
|
|
75
|
-
required: { type: 'boolean' },
|
|
76
|
-
description: { type: 'string' },
|
|
77
|
-
example: { type: 'string' },
|
|
82
|
+
name: { type: 'string', description: '字段名' },
|
|
83
|
+
type: { type: 'string', description: '字段类型' },
|
|
84
|
+
required: { type: 'boolean', description: '是否必填' },
|
|
85
|
+
description: { type: 'string', description: '字段描述' },
|
|
86
|
+
example: { type: 'string', description: '示例值' },
|
|
78
87
|
},
|
|
79
88
|
},
|
|
80
89
|
},
|
|
81
90
|
},
|
|
82
|
-
required: ['moduleId', 'name'],
|
|
91
|
+
required: ['projectId', 'moduleId', 'name', 'fields'],
|
|
83
92
|
},
|
|
84
93
|
handler: async (input) => {
|
|
85
94
|
const data = z.object({
|
|
95
|
+
projectId: z.string(),
|
|
86
96
|
moduleId: z.string(),
|
|
87
97
|
name: z.string(),
|
|
88
98
|
description: z.string().optional(),
|
|
89
99
|
type: z.number().optional(),
|
|
90
|
-
|
|
100
|
+
genericParams: z.array(z.string()).optional(),
|
|
101
|
+
extendsModelId: z.string().optional(),
|
|
91
102
|
fields: z.array(z.custom()).optional(),
|
|
92
103
|
}).parse(input);
|
|
93
104
|
return await client.post('/api/v1/models', {
|
|
105
|
+
project_id: data.projectId,
|
|
94
106
|
module_id: data.moduleId,
|
|
95
107
|
name: data.name,
|
|
96
108
|
description: data.description,
|
|
97
|
-
|
|
98
|
-
|
|
109
|
+
generic_params: data.genericParams,
|
|
110
|
+
extends_model_id: data.extendsModelId,
|
|
99
111
|
fields: data.fields,
|
|
100
112
|
});
|
|
101
113
|
},
|
package/dist/tools/model.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","sourceRoot":"","sources":["../../src/tools/model.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAElB,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,MAAM,UAAU,kBAAkB,CAAC,MAAiB;IAClD,OAAO;QACL;YACE,IAAI,EAAE,oBAAoB;YAC1B,WAAW,EAAE,gBAAgB;YAC7B,WAAW,EAAE;gBACX,IAAI,EAAE,QAAiB;gBACvB,UAAU,EAAE;oBACV,QAAQ,EAAE;wBACR,IAAI,EAAE,QAAiB;wBACvB,WAAW,EAAE,MAAM;qBACpB;iBACF;gBACD,QAAQ,EAAE,CAAC,UAAU,CAAC;aACvB;YACD,OAAO,EAAE,KAAK,EAAE,KAAc,EAAE,EAAE;gBAChC,MAAM,EAAE,QAAQ,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBACrE,OAAO,MAAM,MAAM,CAAC,GAAG,CAAU,mBAAmB,QAAQ,SAAS,CAAC,CAAC;YACzE,CAAC;SACF;QACD;YACE,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE;gBACX,IAAI,EAAE,QAAiB;gBACvB,UAAU,EAAE;oBACV,EAAE,EAAE;wBACF,IAAI,EAAE,QAAiB;wBACvB,WAAW,EAAE,UAAU;qBACxB;iBACF;gBACD,QAAQ,EAAE,CAAC,IAAI,CAAC;aACjB;YACD,OAAO,EAAE,KAAK,EAAE,KAAc,EAAE,EAAE;gBAChC,MAAM,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBACzD,OAAO,MAAM,MAAM,CAAC,GAAG,CAAQ,kBAAkB,EAAE,EAAE,CAAC,CAAC;YACzD,CAAC;SACF;QACD;YACE,IAAI,EAAE,qBAAqB;YAC3B,WAAW,EAAE,WAAW;YACxB,WAAW,EAAE;gBACX,IAAI,EAAE,QAAiB;gBACvB,UAAU,EAAE;oBACV,QAAQ,EAAE;wBACR,IAAI,EAAE,QAAiB;wBACvB,WAAW,EAAE,MAAM;qBACpB;oBACD,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAiB;wBACvB,WAAW,EAAE,UAAU;qBACxB;oBACD,WAAW,EAAE;wBACX,IAAI,EAAE,QAAiB;wBACvB,WAAW,EAAE,UAAU;qBACxB;oBACD,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAiB;wBACvB,WAAW,EAAE,oCAAoC;qBAClD;oBACD,
|
|
1
|
+
{"version":3,"file":"model.js","sourceRoot":"","sources":["../../src/tools/model.ts"],"names":[],"mappings":"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"}
|