@huaqiu/hqeda 0.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/README.md +2405 -0
- package/SKILL.md +279 -0
- package/dist/index.d.ts +44 -0
- package/dist/index.js +2008 -0
- package/dist/index.js.map +1 -0
- package/generated/capability-registry.json +4837 -0
- package/guides/bom-review.md +49 -0
- package/guides/erc-review.md +48 -0
- package/guides/manufacturing-readiness.md +51 -0
- package/guides/schematic-review.md +38 -0
- package/package.json +67 -0
- package/playbooks/bom-review.json +42 -0
- package/playbooks/erc-review.json +46 -0
- package/playbooks/manufacturing-review.json +45 -0
- package/playbooks/schematic-review.json +44 -0
- package/prompts/reporting-template.md +45 -0
- package/prompts/review-style.md +41 -0
- package/skill.json +132 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,2008 @@
|
|
|
1
|
+
// generated/common/runtime.ts
|
|
2
|
+
function defineSkill(def) {
|
|
3
|
+
return def;
|
|
4
|
+
}
|
|
5
|
+
var REGISTRY = /* @__PURE__ */ new Map();
|
|
6
|
+
function registerSkill(skill) {
|
|
7
|
+
if (REGISTRY.has(skill.id)) {
|
|
8
|
+
throw new Error(`Duplicate skill id: ${skill.id}`);
|
|
9
|
+
}
|
|
10
|
+
REGISTRY.set(skill.id, skill);
|
|
11
|
+
return skill;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// generated/ai/execute-prompt.ts
|
|
15
|
+
import { HqServicesV1AiService } from "@hqedge/connect";
|
|
16
|
+
var ExecutePromptSkill = defineSkill({
|
|
17
|
+
id: "ai-execute-prompt",
|
|
18
|
+
title: "Execute Prompt",
|
|
19
|
+
description: "Execute Prompt via AIService.ExecutePrompt",
|
|
20
|
+
domain: "ai",
|
|
21
|
+
service: "AIService",
|
|
22
|
+
method: "ExecutePrompt",
|
|
23
|
+
isStreaming: false,
|
|
24
|
+
inputSchema: HqServicesV1AiService.AIRequestSchema,
|
|
25
|
+
async execute(ctx, input) {
|
|
26
|
+
return await ctx.client.ai.executePrompt(input);
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
registerSkill(ExecutePromptSkill);
|
|
30
|
+
|
|
31
|
+
// generated/bom/get-bom.ts
|
|
32
|
+
import { HqFabV1GetEdaBom } from "@hqedge/connect";
|
|
33
|
+
var GetBomSkill = defineSkill({
|
|
34
|
+
id: "bom-get-bom",
|
|
35
|
+
title: "Get Bom",
|
|
36
|
+
description: "Get full BOM snapshot from current schematic state",
|
|
37
|
+
domain: "bom",
|
|
38
|
+
service: "EdaBomService",
|
|
39
|
+
method: "GetBom",
|
|
40
|
+
isStreaming: false,
|
|
41
|
+
inputSchema: HqFabV1GetEdaBom.GetBomRequestSchema,
|
|
42
|
+
async execute(ctx, input) {
|
|
43
|
+
return await ctx.client.edaBom.getBom(input);
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
registerSkill(GetBomSkill);
|
|
47
|
+
|
|
48
|
+
// generated/canvas/align-objects.ts
|
|
49
|
+
import { HqServicesV1CanvasOpsService } from "@hqedge/connect";
|
|
50
|
+
var AlignObjectsSkill = defineSkill({
|
|
51
|
+
id: "canvas-align-objects",
|
|
52
|
+
title: "Align Objects",
|
|
53
|
+
description: "transform",
|
|
54
|
+
domain: "canvas",
|
|
55
|
+
service: "CanvasOpsService",
|
|
56
|
+
method: "AlignObjects",
|
|
57
|
+
isStreaming: false,
|
|
58
|
+
inputSchema: HqServicesV1CanvasOpsService.AlignModeRequestSchema,
|
|
59
|
+
async execute(ctx, input) {
|
|
60
|
+
return await ctx.client.canvasOps.alignObjects(input);
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
registerSkill(AlignObjectsSkill);
|
|
64
|
+
|
|
65
|
+
// generated/canvas/can-paste.ts
|
|
66
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService2 } from "@hqedge/connect";
|
|
67
|
+
var CanPasteSkill = defineSkill({
|
|
68
|
+
id: "canvas-can-paste",
|
|
69
|
+
title: "Can Paste",
|
|
70
|
+
description: "Can Paste via CanvasOpsService.CanPaste",
|
|
71
|
+
domain: "canvas",
|
|
72
|
+
service: "CanvasOpsService",
|
|
73
|
+
method: "CanPaste",
|
|
74
|
+
isStreaming: false,
|
|
75
|
+
inputSchema: HqServicesV1CanvasOpsService2.CanvasContextRequestSchema,
|
|
76
|
+
async execute(ctx, input) {
|
|
77
|
+
return await ctx.client.canvasOps.canPaste(input);
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
registerSkill(CanPasteSkill);
|
|
81
|
+
|
|
82
|
+
// generated/canvas/clear-all-sel.ts
|
|
83
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService3 } from "@hqedge/connect";
|
|
84
|
+
var ClearAllSelSkill = defineSkill({
|
|
85
|
+
id: "canvas-clear-all-sel",
|
|
86
|
+
title: "Clear All Sel",
|
|
87
|
+
description: "selection",
|
|
88
|
+
domain: "canvas",
|
|
89
|
+
service: "CanvasOpsService",
|
|
90
|
+
method: "ClearAllSel",
|
|
91
|
+
isStreaming: false,
|
|
92
|
+
inputSchema: HqServicesV1CanvasOpsService3.CanvasContextRequestSchema,
|
|
93
|
+
async execute(ctx, input) {
|
|
94
|
+
return await ctx.client.canvasOps.clearAllSel(input);
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
registerSkill(ClearAllSelSkill);
|
|
98
|
+
|
|
99
|
+
// generated/canvas/copy-selected.ts
|
|
100
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService4 } from "@hqedge/connect";
|
|
101
|
+
var CopySelectedSkill = defineSkill({
|
|
102
|
+
id: "canvas-copy-selected",
|
|
103
|
+
title: "Copy Selected",
|
|
104
|
+
description: "Copy Selected via CanvasOpsService.CopySelected",
|
|
105
|
+
domain: "canvas",
|
|
106
|
+
service: "CanvasOpsService",
|
|
107
|
+
method: "CopySelected",
|
|
108
|
+
isStreaming: false,
|
|
109
|
+
inputSchema: HqServicesV1CanvasOpsService4.CanvasContextRequestSchema,
|
|
110
|
+
async execute(ctx, input) {
|
|
111
|
+
return await ctx.client.canvasOps.copySelected(input);
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
registerSkill(CopySelectedSkill);
|
|
115
|
+
|
|
116
|
+
// generated/canvas/delete-selected.ts
|
|
117
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService5 } from "@hqedge/connect";
|
|
118
|
+
var DeleteSelectedSkill = defineSkill({
|
|
119
|
+
id: "canvas-delete-selected",
|
|
120
|
+
title: "Delete Selected",
|
|
121
|
+
description: "edit",
|
|
122
|
+
domain: "canvas",
|
|
123
|
+
service: "CanvasOpsService",
|
|
124
|
+
method: "DeleteSelected",
|
|
125
|
+
isStreaming: false,
|
|
126
|
+
inputSchema: HqServicesV1CanvasOpsService5.CanvasContextRequestSchema,
|
|
127
|
+
async execute(ctx, input) {
|
|
128
|
+
return await ctx.client.canvasOps.deleteSelected(input);
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
registerSkill(DeleteSelectedSkill);
|
|
132
|
+
|
|
133
|
+
// generated/canvas/distribute-objects.ts
|
|
134
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService6 } from "@hqedge/connect";
|
|
135
|
+
var DistributeObjectsSkill = defineSkill({
|
|
136
|
+
id: "canvas-distribute-objects",
|
|
137
|
+
title: "Distribute Objects",
|
|
138
|
+
description: "Distribute Objects via CanvasOpsService.DistributeObjects",
|
|
139
|
+
domain: "canvas",
|
|
140
|
+
service: "CanvasOpsService",
|
|
141
|
+
method: "DistributeObjects",
|
|
142
|
+
isStreaming: false,
|
|
143
|
+
inputSchema: HqServicesV1CanvasOpsService6.AlignModeRequestSchema,
|
|
144
|
+
async execute(ctx, input) {
|
|
145
|
+
return await ctx.client.canvasOps.distributeObjects(input);
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
registerSkill(DistributeObjectsSkill);
|
|
149
|
+
|
|
150
|
+
// generated/canvas/get-align-type.ts
|
|
151
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService7 } from "@hqedge/connect";
|
|
152
|
+
var GetAlignTypeSkill = defineSkill({
|
|
153
|
+
id: "canvas-get-align-type",
|
|
154
|
+
title: "Get Align Type",
|
|
155
|
+
description: "Get Align Type via CanvasOpsService.GetAlignType",
|
|
156
|
+
domain: "canvas",
|
|
157
|
+
service: "CanvasOpsService",
|
|
158
|
+
method: "GetAlignType",
|
|
159
|
+
isStreaming: false,
|
|
160
|
+
inputSchema: HqServicesV1CanvasOpsService7.GetAlignTypeRequestSchema,
|
|
161
|
+
async execute(ctx, input) {
|
|
162
|
+
return await ctx.client.canvasOps.getAlignType(input);
|
|
163
|
+
}
|
|
164
|
+
});
|
|
165
|
+
registerSkill(GetAlignTypeSkill);
|
|
166
|
+
|
|
167
|
+
// generated/canvas/get-selected-object-json.ts
|
|
168
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService8 } from "@hqedge/connect";
|
|
169
|
+
var GetSelectedObjectJsonSkill = defineSkill({
|
|
170
|
+
id: "canvas-get-selected-object-json",
|
|
171
|
+
title: "Get Selected Object Json",
|
|
172
|
+
description: "Get Selected Object Json via CanvasOpsService.GetSelectedObjectJson",
|
|
173
|
+
domain: "canvas",
|
|
174
|
+
service: "CanvasOpsService",
|
|
175
|
+
method: "GetSelectedObjectJson",
|
|
176
|
+
isStreaming: false,
|
|
177
|
+
inputSchema: HqServicesV1CanvasOpsService8.CanvasContextRequestSchema,
|
|
178
|
+
async execute(ctx, input) {
|
|
179
|
+
return await ctx.client.canvasOps.getSelectedObjectJson(input);
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
registerSkill(GetSelectedObjectJsonSkill);
|
|
183
|
+
|
|
184
|
+
// generated/canvas/get-selected-objects-json.ts
|
|
185
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService9 } from "@hqedge/connect";
|
|
186
|
+
var GetSelectedObjectsJsonSkill = defineSkill({
|
|
187
|
+
id: "canvas-get-selected-objects-json",
|
|
188
|
+
title: "Get Selected Objects Json",
|
|
189
|
+
description: "Get Selected Objects Json via CanvasOpsService.GetSelectedObjectsJson",
|
|
190
|
+
domain: "canvas",
|
|
191
|
+
service: "CanvasOpsService",
|
|
192
|
+
method: "GetSelectedObjectsJson",
|
|
193
|
+
isStreaming: false,
|
|
194
|
+
inputSchema: HqServicesV1CanvasOpsService9.CanvasContextRequestSchema,
|
|
195
|
+
async execute(ctx, input) {
|
|
196
|
+
return await ctx.client.canvasOps.getSelectedObjectsJson(input);
|
|
197
|
+
}
|
|
198
|
+
});
|
|
199
|
+
registerSkill(GetSelectedObjectsJsonSkill);
|
|
200
|
+
|
|
201
|
+
// generated/canvas/mirror-objects.ts
|
|
202
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService10 } from "@hqedge/connect";
|
|
203
|
+
var MirrorObjectsSkill = defineSkill({
|
|
204
|
+
id: "canvas-mirror-objects",
|
|
205
|
+
title: "Mirror Objects",
|
|
206
|
+
description: "Mirror Objects via CanvasOpsService.MirrorObjects",
|
|
207
|
+
domain: "canvas",
|
|
208
|
+
service: "CanvasOpsService",
|
|
209
|
+
method: "MirrorObjects",
|
|
210
|
+
isStreaming: false,
|
|
211
|
+
inputSchema: HqServicesV1CanvasOpsService10.AlignModeRequestSchema,
|
|
212
|
+
async execute(ctx, input) {
|
|
213
|
+
return await ctx.client.canvasOps.mirrorObjects(input);
|
|
214
|
+
}
|
|
215
|
+
});
|
|
216
|
+
registerSkill(MirrorObjectsSkill);
|
|
217
|
+
|
|
218
|
+
// generated/canvas/move-selected-objs.ts
|
|
219
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService11 } from "@hqedge/connect";
|
|
220
|
+
var MoveSelectedObjsSkill = defineSkill({
|
|
221
|
+
id: "canvas-move-selected-objs",
|
|
222
|
+
title: "Move Selected Objs",
|
|
223
|
+
description: "Move Selected Objs via CanvasOpsService.MoveSelectedObjs",
|
|
224
|
+
domain: "canvas",
|
|
225
|
+
service: "CanvasOpsService",
|
|
226
|
+
method: "MoveSelectedObjs",
|
|
227
|
+
isStreaming: false,
|
|
228
|
+
inputSchema: HqServicesV1CanvasOpsService11.MoveSelectedObjsRequestSchema,
|
|
229
|
+
async execute(ctx, input) {
|
|
230
|
+
return await ctx.client.canvasOps.moveSelectedObjs(input);
|
|
231
|
+
}
|
|
232
|
+
});
|
|
233
|
+
registerSkill(MoveSelectedObjsSkill);
|
|
234
|
+
|
|
235
|
+
// generated/canvas/on-canvas-escape.ts
|
|
236
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService12 } from "@hqedge/connect";
|
|
237
|
+
var OnCanvasEscapeSkill = defineSkill({
|
|
238
|
+
id: "canvas-on-canvas-escape",
|
|
239
|
+
title: "On Canvas Escape",
|
|
240
|
+
description: "state",
|
|
241
|
+
domain: "canvas",
|
|
242
|
+
service: "CanvasOpsService",
|
|
243
|
+
method: "OnCanvasEscape",
|
|
244
|
+
isStreaming: false,
|
|
245
|
+
inputSchema: HqServicesV1CanvasOpsService12.OnCanvasEscapeRequestSchema,
|
|
246
|
+
async execute(ctx, input) {
|
|
247
|
+
return await ctx.client.canvasOps.onCanvasEscape(input);
|
|
248
|
+
}
|
|
249
|
+
});
|
|
250
|
+
registerSkill(OnCanvasEscapeSkill);
|
|
251
|
+
|
|
252
|
+
// generated/canvas/pan-canvas.ts
|
|
253
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService13 } from "@hqedge/connect";
|
|
254
|
+
var PanCanvasSkill = defineSkill({
|
|
255
|
+
id: "canvas-pan-canvas",
|
|
256
|
+
title: "Pan Canvas",
|
|
257
|
+
description: "viewport",
|
|
258
|
+
domain: "canvas",
|
|
259
|
+
service: "CanvasOpsService",
|
|
260
|
+
method: "PanCanvas",
|
|
261
|
+
isStreaming: false,
|
|
262
|
+
inputSchema: HqServicesV1CanvasOpsService13.PanCanvasRequestSchema,
|
|
263
|
+
async execute(ctx, input) {
|
|
264
|
+
return await ctx.client.canvasOps.panCanvas(input);
|
|
265
|
+
}
|
|
266
|
+
});
|
|
267
|
+
registerSkill(PanCanvasSkill);
|
|
268
|
+
|
|
269
|
+
// generated/canvas/paste-selected.ts
|
|
270
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService14 } from "@hqedge/connect";
|
|
271
|
+
var PasteSelectedSkill = defineSkill({
|
|
272
|
+
id: "canvas-paste-selected",
|
|
273
|
+
title: "Paste Selected",
|
|
274
|
+
description: "Paste Selected via CanvasOpsService.PasteSelected",
|
|
275
|
+
domain: "canvas",
|
|
276
|
+
service: "CanvasOpsService",
|
|
277
|
+
method: "PasteSelected",
|
|
278
|
+
isStreaming: false,
|
|
279
|
+
inputSchema: HqServicesV1CanvasOpsService14.PasteRequestSchema,
|
|
280
|
+
async execute(ctx, input) {
|
|
281
|
+
return await ctx.client.canvasOps.pasteSelected(input);
|
|
282
|
+
}
|
|
283
|
+
});
|
|
284
|
+
registerSkill(PasteSelectedSkill);
|
|
285
|
+
|
|
286
|
+
// generated/canvas/rotate-objects.ts
|
|
287
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService15 } from "@hqedge/connect";
|
|
288
|
+
var RotateObjectsSkill = defineSkill({
|
|
289
|
+
id: "canvas-rotate-objects",
|
|
290
|
+
title: "Rotate Objects",
|
|
291
|
+
description: "Rotate Objects via CanvasOpsService.RotateObjects",
|
|
292
|
+
domain: "canvas",
|
|
293
|
+
service: "CanvasOpsService",
|
|
294
|
+
method: "RotateObjects",
|
|
295
|
+
isStreaming: false,
|
|
296
|
+
inputSchema: HqServicesV1CanvasOpsService15.CanvasContextRequestSchema,
|
|
297
|
+
async execute(ctx, input) {
|
|
298
|
+
return await ctx.client.canvasOps.rotateObjects(input);
|
|
299
|
+
}
|
|
300
|
+
});
|
|
301
|
+
registerSkill(RotateObjectsSkill);
|
|
302
|
+
|
|
303
|
+
// generated/canvas/screen-to-canvas-local.ts
|
|
304
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService16 } from "@hqedge/connect";
|
|
305
|
+
var ScreenToCanvasLocalSkill = defineSkill({
|
|
306
|
+
id: "canvas-screen-to-canvas-local",
|
|
307
|
+
title: "Screen To Canvas Local",
|
|
308
|
+
description: "coordinate",
|
|
309
|
+
domain: "canvas",
|
|
310
|
+
service: "CanvasOpsService",
|
|
311
|
+
method: "ScreenToCanvasLocal",
|
|
312
|
+
isStreaming: false,
|
|
313
|
+
inputSchema: HqServicesV1CanvasOpsService16.ScreenToCanvasLocalRequestSchema,
|
|
314
|
+
async execute(ctx, input) {
|
|
315
|
+
return await ctx.client.canvasOps.screenToCanvasLocal(input);
|
|
316
|
+
}
|
|
317
|
+
});
|
|
318
|
+
registerSkill(ScreenToCanvasLocalSkill);
|
|
319
|
+
|
|
320
|
+
// generated/canvas/select-all.ts
|
|
321
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService17 } from "@hqedge/connect";
|
|
322
|
+
var SelectAllSkill = defineSkill({
|
|
323
|
+
id: "canvas-select-all",
|
|
324
|
+
title: "Select All",
|
|
325
|
+
description: "Select All via CanvasOpsService.SelectAll",
|
|
326
|
+
domain: "canvas",
|
|
327
|
+
service: "CanvasOpsService",
|
|
328
|
+
method: "SelectAll",
|
|
329
|
+
isStreaming: false,
|
|
330
|
+
inputSchema: HqServicesV1CanvasOpsService17.CanvasContextRequestSchema,
|
|
331
|
+
async execute(ctx, input) {
|
|
332
|
+
return await ctx.client.canvasOps.selectAll(input);
|
|
333
|
+
}
|
|
334
|
+
});
|
|
335
|
+
registerSkill(SelectAllSkill);
|
|
336
|
+
|
|
337
|
+
// generated/canvas/select-object-at.ts
|
|
338
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService18 } from "@hqedge/connect";
|
|
339
|
+
var SelectObjectAtSkill = defineSkill({
|
|
340
|
+
id: "canvas-select-object-at",
|
|
341
|
+
title: "Select Object At",
|
|
342
|
+
description: "Select Object At via CanvasOpsService.SelectObjectAt",
|
|
343
|
+
domain: "canvas",
|
|
344
|
+
service: "CanvasOpsService",
|
|
345
|
+
method: "SelectObjectAt",
|
|
346
|
+
isStreaming: false,
|
|
347
|
+
inputSchema: HqServicesV1CanvasOpsService18.WindowClickRequestSchema,
|
|
348
|
+
async execute(ctx, input) {
|
|
349
|
+
return await ctx.client.canvasOps.selectObjectAt(input);
|
|
350
|
+
}
|
|
351
|
+
});
|
|
352
|
+
registerSkill(SelectObjectAtSkill);
|
|
353
|
+
|
|
354
|
+
// generated/canvas/set-align-type.ts
|
|
355
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService19 } from "@hqedge/connect";
|
|
356
|
+
var SetAlignTypeSkill = defineSkill({
|
|
357
|
+
id: "canvas-set-align-type",
|
|
358
|
+
title: "Set Align Type",
|
|
359
|
+
description: "grid align",
|
|
360
|
+
domain: "canvas",
|
|
361
|
+
service: "CanvasOpsService",
|
|
362
|
+
method: "SetAlignType",
|
|
363
|
+
isStreaming: false,
|
|
364
|
+
inputSchema: HqServicesV1CanvasOpsService19.SetAlignTypeRequestSchema,
|
|
365
|
+
async execute(ctx, input) {
|
|
366
|
+
return await ctx.client.canvasOps.setAlignType(input);
|
|
367
|
+
}
|
|
368
|
+
});
|
|
369
|
+
registerSkill(SetAlignTypeSkill);
|
|
370
|
+
|
|
371
|
+
// generated/canvas/set-page-size.ts
|
|
372
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService20 } from "@hqedge/connect";
|
|
373
|
+
var SetPageSizeSkill = defineSkill({
|
|
374
|
+
id: "canvas-set-page-size",
|
|
375
|
+
title: "Set Page Size",
|
|
376
|
+
description: "page",
|
|
377
|
+
domain: "canvas",
|
|
378
|
+
service: "CanvasOpsService",
|
|
379
|
+
method: "SetPageSize",
|
|
380
|
+
isStreaming: false,
|
|
381
|
+
inputSchema: HqServicesV1CanvasOpsService20.SetPageSizeRequestSchema,
|
|
382
|
+
async execute(ctx, input) {
|
|
383
|
+
return await ctx.client.canvasOps.setPageSize(input);
|
|
384
|
+
}
|
|
385
|
+
});
|
|
386
|
+
registerSkill(SetPageSizeSkill);
|
|
387
|
+
|
|
388
|
+
// generated/canvas/set-page-size-rect.ts
|
|
389
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService21 } from "@hqedge/connect";
|
|
390
|
+
var SetPageSizeRectSkill = defineSkill({
|
|
391
|
+
id: "canvas-set-page-size-rect",
|
|
392
|
+
title: "Set Page Size Rect",
|
|
393
|
+
description: "Set Page Size Rect via CanvasOpsService.SetPageSizeRect",
|
|
394
|
+
domain: "canvas",
|
|
395
|
+
service: "CanvasOpsService",
|
|
396
|
+
method: "SetPageSizeRect",
|
|
397
|
+
isStreaming: false,
|
|
398
|
+
inputSchema: HqServicesV1CanvasOpsService21.SetPageSizeRectRequestSchema,
|
|
399
|
+
async execute(ctx, input) {
|
|
400
|
+
return await ctx.client.canvasOps.setPageSizeRect(input);
|
|
401
|
+
}
|
|
402
|
+
});
|
|
403
|
+
registerSkill(SetPageSizeRectSkill);
|
|
404
|
+
|
|
405
|
+
// generated/canvas/zoom-all.ts
|
|
406
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService22 } from "@hqedge/connect";
|
|
407
|
+
var ZoomAllSkill = defineSkill({
|
|
408
|
+
id: "canvas-zoom-all",
|
|
409
|
+
title: "Zoom All",
|
|
410
|
+
description: "Zoom All via CanvasOpsService.ZoomAll",
|
|
411
|
+
domain: "canvas",
|
|
412
|
+
service: "CanvasOpsService",
|
|
413
|
+
method: "ZoomAll",
|
|
414
|
+
isStreaming: false,
|
|
415
|
+
inputSchema: HqServicesV1CanvasOpsService22.CanvasContextRequestSchema,
|
|
416
|
+
async execute(ctx, input) {
|
|
417
|
+
return await ctx.client.canvasOps.zoomAll(input);
|
|
418
|
+
}
|
|
419
|
+
});
|
|
420
|
+
registerSkill(ZoomAllSkill);
|
|
421
|
+
|
|
422
|
+
// generated/canvas/zoom-area-by-double-box.ts
|
|
423
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService23 } from "@hqedge/connect";
|
|
424
|
+
var ZoomAreaByDoubleBoxSkill = defineSkill({
|
|
425
|
+
id: "canvas-zoom-area-by-double-box",
|
|
426
|
+
title: "Zoom Area By Double Box",
|
|
427
|
+
description: "Zoom Area By Double Box via CanvasOpsService.ZoomAreaByDoubleBox",
|
|
428
|
+
domain: "canvas",
|
|
429
|
+
service: "CanvasOpsService",
|
|
430
|
+
method: "ZoomAreaByDoubleBox",
|
|
431
|
+
isStreaming: false,
|
|
432
|
+
inputSchema: HqServicesV1CanvasOpsService23.ZoomAreaDoubleBoxRequestSchema,
|
|
433
|
+
async execute(ctx, input) {
|
|
434
|
+
return await ctx.client.canvasOps.zoomAreaByDoubleBox(input);
|
|
435
|
+
}
|
|
436
|
+
});
|
|
437
|
+
registerSkill(ZoomAreaByDoubleBoxSkill);
|
|
438
|
+
|
|
439
|
+
// generated/canvas/zoom-area-by-int-box.ts
|
|
440
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService24 } from "@hqedge/connect";
|
|
441
|
+
var ZoomAreaByIntBoxSkill = defineSkill({
|
|
442
|
+
id: "canvas-zoom-area-by-int-box",
|
|
443
|
+
title: "Zoom Area By Int Box",
|
|
444
|
+
description: "Zoom Area By Int Box via CanvasOpsService.ZoomAreaByIntBox",
|
|
445
|
+
domain: "canvas",
|
|
446
|
+
service: "CanvasOpsService",
|
|
447
|
+
method: "ZoomAreaByIntBox",
|
|
448
|
+
isStreaming: false,
|
|
449
|
+
inputSchema: HqServicesV1CanvasOpsService24.ZoomAreaIntBoxRequestSchema,
|
|
450
|
+
async execute(ctx, input) {
|
|
451
|
+
return await ctx.client.canvasOps.zoomAreaByIntBox(input);
|
|
452
|
+
}
|
|
453
|
+
});
|
|
454
|
+
registerSkill(ZoomAreaByIntBoxSkill);
|
|
455
|
+
|
|
456
|
+
// generated/canvas/zoom-area-by-points.ts
|
|
457
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService25 } from "@hqedge/connect";
|
|
458
|
+
var ZoomAreaByPointsSkill = defineSkill({
|
|
459
|
+
id: "canvas-zoom-area-by-points",
|
|
460
|
+
title: "Zoom Area By Points",
|
|
461
|
+
description: "Zoom Area By Points via CanvasOpsService.ZoomAreaByPoints",
|
|
462
|
+
domain: "canvas",
|
|
463
|
+
service: "CanvasOpsService",
|
|
464
|
+
method: "ZoomAreaByPoints",
|
|
465
|
+
isStreaming: false,
|
|
466
|
+
inputSchema: HqServicesV1CanvasOpsService25.ZoomAreaPointsRequestSchema,
|
|
467
|
+
async execute(ctx, input) {
|
|
468
|
+
return await ctx.client.canvasOps.zoomAreaByPoints(input);
|
|
469
|
+
}
|
|
470
|
+
});
|
|
471
|
+
registerSkill(ZoomAreaByPointsSkill);
|
|
472
|
+
|
|
473
|
+
// generated/canvas/zoom-in.ts
|
|
474
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService26 } from "@hqedge/connect";
|
|
475
|
+
var ZoomInSkill = defineSkill({
|
|
476
|
+
id: "canvas-zoom-in",
|
|
477
|
+
title: "Zoom In",
|
|
478
|
+
description: "zoom",
|
|
479
|
+
domain: "canvas",
|
|
480
|
+
service: "CanvasOpsService",
|
|
481
|
+
method: "ZoomIn",
|
|
482
|
+
isStreaming: false,
|
|
483
|
+
inputSchema: HqServicesV1CanvasOpsService26.CanvasContextRequestSchema,
|
|
484
|
+
async execute(ctx, input) {
|
|
485
|
+
return await ctx.client.canvasOps.zoomIn(input);
|
|
486
|
+
}
|
|
487
|
+
});
|
|
488
|
+
registerSkill(ZoomInSkill);
|
|
489
|
+
|
|
490
|
+
// generated/canvas/zoom-out.ts
|
|
491
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService27 } from "@hqedge/connect";
|
|
492
|
+
var ZoomOutSkill = defineSkill({
|
|
493
|
+
id: "canvas-zoom-out",
|
|
494
|
+
title: "Zoom Out",
|
|
495
|
+
description: "Zoom Out via CanvasOpsService.ZoomOut",
|
|
496
|
+
domain: "canvas",
|
|
497
|
+
service: "CanvasOpsService",
|
|
498
|
+
method: "ZoomOut",
|
|
499
|
+
isStreaming: false,
|
|
500
|
+
inputSchema: HqServicesV1CanvasOpsService27.CanvasContextRequestSchema,
|
|
501
|
+
async execute(ctx, input) {
|
|
502
|
+
return await ctx.client.canvasOps.zoomOut(input);
|
|
503
|
+
}
|
|
504
|
+
});
|
|
505
|
+
registerSkill(ZoomOutSkill);
|
|
506
|
+
|
|
507
|
+
// generated/canvas/zoom-selected.ts
|
|
508
|
+
import { HqServicesV1CanvasOpsService as HqServicesV1CanvasOpsService28 } from "@hqedge/connect";
|
|
509
|
+
var ZoomSelectedSkill = defineSkill({
|
|
510
|
+
id: "canvas-zoom-selected",
|
|
511
|
+
title: "Zoom Selected",
|
|
512
|
+
description: "Zoom Selected via CanvasOpsService.ZoomSelected",
|
|
513
|
+
domain: "canvas",
|
|
514
|
+
service: "CanvasOpsService",
|
|
515
|
+
method: "ZoomSelected",
|
|
516
|
+
isStreaming: false,
|
|
517
|
+
inputSchema: HqServicesV1CanvasOpsService28.CanvasContextRequestSchema,
|
|
518
|
+
async execute(ctx, input) {
|
|
519
|
+
return await ctx.client.canvasOps.zoomSelected(input);
|
|
520
|
+
}
|
|
521
|
+
});
|
|
522
|
+
registerSkill(ZoomSelectedSkill);
|
|
523
|
+
|
|
524
|
+
// generated/capability/get-capabilities.ts
|
|
525
|
+
import { HqServicesV1CapabilityService } from "@hqedge/connect";
|
|
526
|
+
var GetCapabilitiesSkill = defineSkill({
|
|
527
|
+
id: "capability-get-capabilities",
|
|
528
|
+
title: "Get Capabilities",
|
|
529
|
+
description: "Get Capabilities via CapabilityService.GetCapabilities",
|
|
530
|
+
domain: "capability",
|
|
531
|
+
service: "CapabilityService",
|
|
532
|
+
method: "GetCapabilities",
|
|
533
|
+
isStreaming: false,
|
|
534
|
+
inputSchema: HqServicesV1CapabilityService.GetCapabilitiesRequestSchema,
|
|
535
|
+
async execute(ctx, input) {
|
|
536
|
+
return await ctx.client.capability.getCapabilities(input);
|
|
537
|
+
}
|
|
538
|
+
});
|
|
539
|
+
registerSkill(GetCapabilitiesSkill);
|
|
540
|
+
|
|
541
|
+
// generated/context/get-context.ts
|
|
542
|
+
import { HqServicesV1ContextService } from "@hqedge/connect";
|
|
543
|
+
var GetContextSkill = defineSkill({
|
|
544
|
+
id: "context-get-context",
|
|
545
|
+
title: "Get Context",
|
|
546
|
+
description: "Get Context via ContextService.GetContext",
|
|
547
|
+
domain: "context",
|
|
548
|
+
service: "ContextService",
|
|
549
|
+
method: "GetContext",
|
|
550
|
+
isStreaming: false,
|
|
551
|
+
inputSchema: HqServicesV1ContextService.GetContextRequestSchema,
|
|
552
|
+
async execute(ctx, input) {
|
|
553
|
+
return await ctx.client.context.getContext(input);
|
|
554
|
+
}
|
|
555
|
+
});
|
|
556
|
+
registerSkill(GetContextSkill);
|
|
557
|
+
|
|
558
|
+
// generated/discovery/get-server-info.ts
|
|
559
|
+
import { HqDiscoveryV1Discovery } from "@hqedge/connect";
|
|
560
|
+
var GetServerInfoSkill = defineSkill({
|
|
561
|
+
id: "discovery-get-server-info",
|
|
562
|
+
title: "Get Server Info",
|
|
563
|
+
description: "Get Server Info via DiscoveryService.GetServerInfo",
|
|
564
|
+
domain: "discovery",
|
|
565
|
+
service: "DiscoveryService",
|
|
566
|
+
method: "GetServerInfo",
|
|
567
|
+
isStreaming: false,
|
|
568
|
+
inputSchema: HqDiscoveryV1Discovery.GetServerInfoRequestSchema,
|
|
569
|
+
async execute(ctx, input) {
|
|
570
|
+
return await ctx.client.discovery.getServerInfo(input);
|
|
571
|
+
}
|
|
572
|
+
});
|
|
573
|
+
registerSkill(GetServerInfoSkill);
|
|
574
|
+
|
|
575
|
+
// generated/erc/clear-all-findings.ts
|
|
576
|
+
import { HqServicesV1ErcService } from "@hqedge/connect";
|
|
577
|
+
var ClearAllFindingsSkill = defineSkill({
|
|
578
|
+
id: "erc-clear-all-findings",
|
|
579
|
+
title: "Clear All Findings",
|
|
580
|
+
description: "Clear All Findings via ERCService.ClearAllFindings",
|
|
581
|
+
domain: "erc",
|
|
582
|
+
service: "ERCService",
|
|
583
|
+
method: "ClearAllFindings",
|
|
584
|
+
isStreaming: false,
|
|
585
|
+
inputSchema: HqServicesV1ErcService.ClearAllFindingsRequestSchema,
|
|
586
|
+
async execute(ctx, input) {
|
|
587
|
+
return await ctx.client.erc.clearAllFindings(input);
|
|
588
|
+
}
|
|
589
|
+
});
|
|
590
|
+
registerSkill(ClearAllFindingsSkill);
|
|
591
|
+
|
|
592
|
+
// generated/erc/clear-findings.ts
|
|
593
|
+
import { HqServicesV1ErcService as HqServicesV1ErcService2 } from "@hqedge/connect";
|
|
594
|
+
var ClearFindingsSkill = defineSkill({
|
|
595
|
+
id: "erc-clear-findings",
|
|
596
|
+
title: "Clear Findings",
|
|
597
|
+
description: "Clear Findings via ERCService.ClearFindings",
|
|
598
|
+
domain: "erc",
|
|
599
|
+
service: "ERCService",
|
|
600
|
+
method: "ClearFindings",
|
|
601
|
+
isStreaming: false,
|
|
602
|
+
inputSchema: HqServicesV1ErcService2.ClearFindingsRequestSchema,
|
|
603
|
+
async execute(ctx, input) {
|
|
604
|
+
return await ctx.client.erc.clearFindings(input);
|
|
605
|
+
}
|
|
606
|
+
});
|
|
607
|
+
registerSkill(ClearFindingsSkill);
|
|
608
|
+
|
|
609
|
+
// generated/erc/run-checks.ts
|
|
610
|
+
import { HqServicesV1ErcService as HqServicesV1ErcService3 } from "@hqedge/connect";
|
|
611
|
+
var RunChecksSkill = defineSkill({
|
|
612
|
+
id: "erc-run-checks",
|
|
613
|
+
title: "Run Checks",
|
|
614
|
+
description: "Run erc check with the eda's built-in engine",
|
|
615
|
+
domain: "erc",
|
|
616
|
+
service: "ERCService",
|
|
617
|
+
method: "RunChecks",
|
|
618
|
+
isStreaming: false,
|
|
619
|
+
inputSchema: HqServicesV1ErcService3.RunChecksRequestSchema,
|
|
620
|
+
async execute(ctx, input) {
|
|
621
|
+
return await ctx.client.erc.runChecks(input);
|
|
622
|
+
}
|
|
623
|
+
});
|
|
624
|
+
registerSkill(RunChecksSkill);
|
|
625
|
+
|
|
626
|
+
// generated/erc/set-erc-report-webview-visibility.ts
|
|
627
|
+
import { HqServicesV1ErcService as HqServicesV1ErcService4 } from "@hqedge/connect";
|
|
628
|
+
var SetErcReportWebviewVisibilitySkill = defineSkill({
|
|
629
|
+
id: "erc-set-erc-report-webview-visibility",
|
|
630
|
+
title: "Set Erc Report Webview Visibility",
|
|
631
|
+
description: "ONLY controls report webview visibility",
|
|
632
|
+
domain: "erc",
|
|
633
|
+
service: "ERCService",
|
|
634
|
+
method: "SetErcReportWebviewVisibility",
|
|
635
|
+
isStreaming: false,
|
|
636
|
+
inputSchema: HqServicesV1ErcService4.SetErcReportWebviewVisibilityRequestSchema,
|
|
637
|
+
async execute(ctx, input) {
|
|
638
|
+
return await ctx.client.erc.setErcReportWebviewVisibility(input);
|
|
639
|
+
}
|
|
640
|
+
});
|
|
641
|
+
registerSkill(SetErcReportWebviewVisibilitySkill);
|
|
642
|
+
|
|
643
|
+
// generated/erc/set-report-webview-state.ts
|
|
644
|
+
import { HqServicesV1ErcService as HqServicesV1ErcService5 } from "@hqedge/connect";
|
|
645
|
+
var SetReportWebviewStateSkill = defineSkill({
|
|
646
|
+
id: "erc-set-report-webview-state",
|
|
647
|
+
title: "Set Report Webview State",
|
|
648
|
+
description: "Set Report Webview State via ERCService.SetReportWebviewState",
|
|
649
|
+
domain: "erc",
|
|
650
|
+
service: "ERCService",
|
|
651
|
+
method: "SetReportWebviewState",
|
|
652
|
+
isStreaming: false,
|
|
653
|
+
inputSchema: HqServicesV1ErcService5.SetReportWebviewStateRequestSchema,
|
|
654
|
+
async execute(ctx, input) {
|
|
655
|
+
return await ctx.client.erc.setReportWebviewState(input);
|
|
656
|
+
}
|
|
657
|
+
});
|
|
658
|
+
registerSkill(SetReportWebviewStateSkill);
|
|
659
|
+
|
|
660
|
+
// generated/erc/show-findings.ts
|
|
661
|
+
import { HqServicesV1ErcService as HqServicesV1ErcService6 } from "@hqedge/connect";
|
|
662
|
+
var ShowFindingsSkill = defineSkill({
|
|
663
|
+
id: "erc-show-findings",
|
|
664
|
+
title: "Show Findings",
|
|
665
|
+
description: "Canvas interaction (row click \u2192 highlight in EDA view)",
|
|
666
|
+
domain: "erc",
|
|
667
|
+
service: "ERCService",
|
|
668
|
+
method: "ShowFindings",
|
|
669
|
+
isStreaming: false,
|
|
670
|
+
inputSchema: HqServicesV1ErcService6.ShowFindingsRequestSchema,
|
|
671
|
+
async execute(ctx, input) {
|
|
672
|
+
return await ctx.client.erc.showFindings(input);
|
|
673
|
+
}
|
|
674
|
+
});
|
|
675
|
+
registerSkill(ShowFindingsSkill);
|
|
676
|
+
|
|
677
|
+
// generated/event/subscribe.ts
|
|
678
|
+
import { HqServicesV1EventService } from "@hqedge/connect";
|
|
679
|
+
var SubscribeSkill = defineSkill({
|
|
680
|
+
id: "event-subscribe",
|
|
681
|
+
title: "Subscribe",
|
|
682
|
+
description: "Subscribe via EventService.Subscribe",
|
|
683
|
+
domain: "event",
|
|
684
|
+
service: "EventService",
|
|
685
|
+
method: "Subscribe",
|
|
686
|
+
isStreaming: true,
|
|
687
|
+
inputSchema: HqServicesV1EventService.SubscribeRequestSchema,
|
|
688
|
+
async execute(ctx, input) {
|
|
689
|
+
return await ctx.client.event.subscribe(input);
|
|
690
|
+
}
|
|
691
|
+
});
|
|
692
|
+
registerSkill(SubscribeSkill);
|
|
693
|
+
|
|
694
|
+
// generated/export/export-bom.ts
|
|
695
|
+
import { HqServicesV1ExportService } from "@hqedge/connect";
|
|
696
|
+
var ExportBOMSkill = defineSkill({
|
|
697
|
+
id: "export-export-bom",
|
|
698
|
+
title: "Export Bom",
|
|
699
|
+
description: "Export Bom via ExportService.ExportBOM",
|
|
700
|
+
domain: "export",
|
|
701
|
+
service: "ExportService",
|
|
702
|
+
method: "ExportBOM",
|
|
703
|
+
isStreaming: false,
|
|
704
|
+
inputSchema: HqServicesV1ExportService.ExportBOMRequestSchema,
|
|
705
|
+
async execute(ctx, input) {
|
|
706
|
+
return await ctx.client.export.exportBOM(input);
|
|
707
|
+
}
|
|
708
|
+
});
|
|
709
|
+
registerSkill(ExportBOMSkill);
|
|
710
|
+
|
|
711
|
+
// generated/export/export-target.ts
|
|
712
|
+
import { HqServicesV1ExportService as HqServicesV1ExportService2 } from "@hqedge/connect";
|
|
713
|
+
var ExportTargetSkill = defineSkill({
|
|
714
|
+
id: "export-export-target",
|
|
715
|
+
title: "Export Target",
|
|
716
|
+
description: "Export Target via ExportService.ExportTarget",
|
|
717
|
+
domain: "export",
|
|
718
|
+
service: "ExportService",
|
|
719
|
+
method: "ExportTarget",
|
|
720
|
+
isStreaming: false,
|
|
721
|
+
inputSchema: HqServicesV1ExportService2.ExportTargetRequestSchema,
|
|
722
|
+
async execute(ctx, input) {
|
|
723
|
+
return await ctx.client.export.exportTarget(input);
|
|
724
|
+
}
|
|
725
|
+
});
|
|
726
|
+
registerSkill(ExportTargetSkill);
|
|
727
|
+
|
|
728
|
+
// generated/graph/get-connectivity.ts
|
|
729
|
+
import { HqServicesV1GraphService } from "@hqedge/connect";
|
|
730
|
+
var GetConnectivitySkill = defineSkill({
|
|
731
|
+
id: "graph-get-connectivity",
|
|
732
|
+
title: "Get Connectivity",
|
|
733
|
+
description: "Get Connectivity via GraphService.GetConnectivity",
|
|
734
|
+
domain: "graph",
|
|
735
|
+
service: "GraphService",
|
|
736
|
+
method: "GetConnectivity",
|
|
737
|
+
isStreaming: false,
|
|
738
|
+
inputSchema: HqServicesV1GraphService.ConnectivityRequestSchema,
|
|
739
|
+
async execute(ctx, input) {
|
|
740
|
+
return await ctx.client.graph.getConnectivity(input);
|
|
741
|
+
}
|
|
742
|
+
});
|
|
743
|
+
registerSkill(GetConnectivitySkill);
|
|
744
|
+
|
|
745
|
+
// generated/graph/query-graph.ts
|
|
746
|
+
import { HqServicesV1GraphService as HqServicesV1GraphService2 } from "@hqedge/connect";
|
|
747
|
+
var QueryGraphSkill = defineSkill({
|
|
748
|
+
id: "graph-query-graph",
|
|
749
|
+
title: "Query Graph",
|
|
750
|
+
description: "Query Graph via GraphService.QueryGraph",
|
|
751
|
+
domain: "graph",
|
|
752
|
+
service: "GraphService",
|
|
753
|
+
method: "QueryGraph",
|
|
754
|
+
isStreaming: false,
|
|
755
|
+
inputSchema: HqServicesV1GraphService2.GraphQueryRequestSchema,
|
|
756
|
+
async execute(ctx, input) {
|
|
757
|
+
return await ctx.client.graph.queryGraph(input);
|
|
758
|
+
}
|
|
759
|
+
});
|
|
760
|
+
registerSkill(QueryGraphSkill);
|
|
761
|
+
|
|
762
|
+
// generated/import/import-design.ts
|
|
763
|
+
import { HqServicesV1ImportService } from "@hqedge/connect";
|
|
764
|
+
var ImportDesignSkill = defineSkill({
|
|
765
|
+
id: "import-import-design",
|
|
766
|
+
title: "Import Design",
|
|
767
|
+
description: "Import a design from an external EDA system",
|
|
768
|
+
domain: "import",
|
|
769
|
+
service: "ImportService",
|
|
770
|
+
method: "ImportDesign",
|
|
771
|
+
isStreaming: false,
|
|
772
|
+
inputSchema: HqServicesV1ImportService.ImportDesignRequestSchema,
|
|
773
|
+
async execute(ctx, input) {
|
|
774
|
+
return await ctx.client.import.importDesign(input);
|
|
775
|
+
}
|
|
776
|
+
});
|
|
777
|
+
registerSkill(ImportDesignSkill);
|
|
778
|
+
|
|
779
|
+
// generated/kernel/get-entity.ts
|
|
780
|
+
import { HqServicesV1KernelService } from "@hqedge/connect";
|
|
781
|
+
var GetEntitySkill = defineSkill({
|
|
782
|
+
id: "kernel-get-entity",
|
|
783
|
+
title: "Get Entity",
|
|
784
|
+
description: "Get Entity via KernelService.GetEntity",
|
|
785
|
+
domain: "kernel",
|
|
786
|
+
service: "KernelService",
|
|
787
|
+
method: "GetEntity",
|
|
788
|
+
isStreaming: false,
|
|
789
|
+
inputSchema: HqServicesV1KernelService.GetEntityRequestSchema,
|
|
790
|
+
async execute(ctx, input) {
|
|
791
|
+
return await ctx.client.kernel.getEntity(input);
|
|
792
|
+
}
|
|
793
|
+
});
|
|
794
|
+
registerSkill(GetEntitySkill);
|
|
795
|
+
|
|
796
|
+
// generated/kernel/get-snapshot.ts
|
|
797
|
+
import { HqServicesV1KernelService as HqServicesV1KernelService2 } from "@hqedge/connect";
|
|
798
|
+
var GetSnapshotSkill = defineSkill({
|
|
799
|
+
id: "kernel-get-snapshot",
|
|
800
|
+
title: "Get Snapshot",
|
|
801
|
+
description: "Get Snapshot via KernelService.GetSnapshot",
|
|
802
|
+
domain: "kernel",
|
|
803
|
+
service: "KernelService",
|
|
804
|
+
method: "GetSnapshot",
|
|
805
|
+
isStreaming: false,
|
|
806
|
+
inputSchema: HqServicesV1KernelService2.GetSnapshotRequestSchema,
|
|
807
|
+
async execute(ctx, input) {
|
|
808
|
+
return await ctx.client.kernel.getSnapshot(input);
|
|
809
|
+
}
|
|
810
|
+
});
|
|
811
|
+
registerSkill(GetSnapshotSkill);
|
|
812
|
+
|
|
813
|
+
// generated/obj-place/add-bus-segment.ts
|
|
814
|
+
import { HqServicesV1ObjPlaceService } from "@hqedge/connect";
|
|
815
|
+
var AddBusSegmentSkill = defineSkill({
|
|
816
|
+
id: "obj-place-add-bus-segment",
|
|
817
|
+
title: "Add Bus Segment",
|
|
818
|
+
description: "Add Bus Segment via ObjPlaceService.AddBusSegment",
|
|
819
|
+
domain: "obj-place",
|
|
820
|
+
service: "ObjPlaceService",
|
|
821
|
+
method: "AddBusSegment",
|
|
822
|
+
isStreaming: false,
|
|
823
|
+
inputSchema: HqServicesV1ObjPlaceService.LocalClickRequestSchema,
|
|
824
|
+
async execute(ctx, input) {
|
|
825
|
+
return await ctx.client.objPlace.addBusSegment(input);
|
|
826
|
+
}
|
|
827
|
+
});
|
|
828
|
+
registerSkill(AddBusSegmentSkill);
|
|
829
|
+
|
|
830
|
+
// generated/obj-place/add-ellipse.ts
|
|
831
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService2 } from "@hqedge/connect";
|
|
832
|
+
var AddEllipseSkill = defineSkill({
|
|
833
|
+
id: "obj-place-add-ellipse",
|
|
834
|
+
title: "Add Ellipse",
|
|
835
|
+
description: "Add Ellipse via ObjPlaceService.AddEllipse",
|
|
836
|
+
domain: "obj-place",
|
|
837
|
+
service: "ObjPlaceService",
|
|
838
|
+
method: "AddEllipse",
|
|
839
|
+
isStreaming: false,
|
|
840
|
+
inputSchema: HqServicesV1ObjPlaceService2.BoxShiftPlaceRequestSchema,
|
|
841
|
+
async execute(ctx, input) {
|
|
842
|
+
return await ctx.client.objPlace.addEllipse(input);
|
|
843
|
+
}
|
|
844
|
+
});
|
|
845
|
+
registerSkill(AddEllipseSkill);
|
|
846
|
+
|
|
847
|
+
// generated/obj-place/add-free-line-segment.ts
|
|
848
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService3 } from "@hqedge/connect";
|
|
849
|
+
var AddFreeLineSegmentSkill = defineSkill({
|
|
850
|
+
id: "obj-place-add-free-line-segment",
|
|
851
|
+
title: "Add Free Line Segment",
|
|
852
|
+
description: "Add Free Line Segment via ObjPlaceService.AddFreeLineSegment",
|
|
853
|
+
domain: "obj-place",
|
|
854
|
+
service: "ObjPlaceService",
|
|
855
|
+
method: "AddFreeLineSegment",
|
|
856
|
+
isStreaming: false,
|
|
857
|
+
inputSchema: HqServicesV1ObjPlaceService3.AddFreeLineSegmentRequestSchema,
|
|
858
|
+
async execute(ctx, input) {
|
|
859
|
+
return await ctx.client.objPlace.addFreeLineSegment(input);
|
|
860
|
+
}
|
|
861
|
+
});
|
|
862
|
+
registerSkill(AddFreeLineSegmentSkill);
|
|
863
|
+
|
|
864
|
+
// generated/obj-place/add-line.ts
|
|
865
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService4 } from "@hqedge/connect";
|
|
866
|
+
var AddLineSkill = defineSkill({
|
|
867
|
+
id: "obj-place-add-line",
|
|
868
|
+
title: "Add Line",
|
|
869
|
+
description: "Add Line via ObjPlaceService.AddLine",
|
|
870
|
+
domain: "obj-place",
|
|
871
|
+
service: "ObjPlaceService",
|
|
872
|
+
method: "AddLine",
|
|
873
|
+
isStreaming: false,
|
|
874
|
+
inputSchema: HqServicesV1ObjPlaceService4.AddLineRequestSchema,
|
|
875
|
+
async execute(ctx, input) {
|
|
876
|
+
return await ctx.client.objPlace.addLine(input);
|
|
877
|
+
}
|
|
878
|
+
});
|
|
879
|
+
registerSkill(AddLineSkill);
|
|
880
|
+
|
|
881
|
+
// generated/obj-place/add-rect.ts
|
|
882
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService5 } from "@hqedge/connect";
|
|
883
|
+
var AddRectSkill = defineSkill({
|
|
884
|
+
id: "obj-place-add-rect",
|
|
885
|
+
title: "Add Rect",
|
|
886
|
+
description: "Add Rect via ObjPlaceService.AddRect",
|
|
887
|
+
domain: "obj-place",
|
|
888
|
+
service: "ObjPlaceService",
|
|
889
|
+
method: "AddRect",
|
|
890
|
+
isStreaming: false,
|
|
891
|
+
inputSchema: HqServicesV1ObjPlaceService5.BoxPlaceRequestSchema,
|
|
892
|
+
async execute(ctx, input) {
|
|
893
|
+
return await ctx.client.objPlace.addRect(input);
|
|
894
|
+
}
|
|
895
|
+
});
|
|
896
|
+
registerSkill(AddRectSkill);
|
|
897
|
+
|
|
898
|
+
// generated/obj-place/add-wire-segment.ts
|
|
899
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService6 } from "@hqedge/connect";
|
|
900
|
+
var AddWireSegmentSkill = defineSkill({
|
|
901
|
+
id: "obj-place-add-wire-segment",
|
|
902
|
+
title: "Add Wire Segment",
|
|
903
|
+
description: "Add Wire Segment via ObjPlaceService.AddWireSegment",
|
|
904
|
+
domain: "obj-place",
|
|
905
|
+
service: "ObjPlaceService",
|
|
906
|
+
method: "AddWireSegment",
|
|
907
|
+
isStreaming: false,
|
|
908
|
+
inputSchema: HqServicesV1ObjPlaceService6.LocalClickRequestSchema,
|
|
909
|
+
async execute(ctx, input) {
|
|
910
|
+
return await ctx.client.objPlace.addWireSegment(input);
|
|
911
|
+
}
|
|
912
|
+
});
|
|
913
|
+
registerSkill(AddWireSegmentSkill);
|
|
914
|
+
|
|
915
|
+
// generated/obj-place/cancel-bus-draw.ts
|
|
916
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService7 } from "@hqedge/connect";
|
|
917
|
+
var CancelBusDrawSkill = defineSkill({
|
|
918
|
+
id: "obj-place-cancel-bus-draw",
|
|
919
|
+
title: "Cancel Bus Draw",
|
|
920
|
+
description: "Cancel Bus Draw via ObjPlaceService.CancelBusDraw",
|
|
921
|
+
domain: "obj-place",
|
|
922
|
+
service: "ObjPlaceService",
|
|
923
|
+
method: "CancelBusDraw",
|
|
924
|
+
isStreaming: false,
|
|
925
|
+
inputSchema: HqServicesV1ObjPlaceService7.ContextOnlyRequestSchema,
|
|
926
|
+
async execute(ctx, input) {
|
|
927
|
+
return await ctx.client.objPlace.cancelBusDraw(input);
|
|
928
|
+
}
|
|
929
|
+
});
|
|
930
|
+
registerSkill(CancelBusDrawSkill);
|
|
931
|
+
|
|
932
|
+
// generated/obj-place/cancel-ellipse-arc-draw.ts
|
|
933
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService8 } from "@hqedge/connect";
|
|
934
|
+
var CancelEllipseArcDrawSkill = defineSkill({
|
|
935
|
+
id: "obj-place-cancel-ellipse-arc-draw",
|
|
936
|
+
title: "Cancel Ellipse Arc Draw",
|
|
937
|
+
description: "Cancel Ellipse Arc Draw via ObjPlaceService.CancelEllipseArcDraw",
|
|
938
|
+
domain: "obj-place",
|
|
939
|
+
service: "ObjPlaceService",
|
|
940
|
+
method: "CancelEllipseArcDraw",
|
|
941
|
+
isStreaming: false,
|
|
942
|
+
inputSchema: HqServicesV1ObjPlaceService8.ContextOnlyRequestSchema,
|
|
943
|
+
async execute(ctx, input) {
|
|
944
|
+
return await ctx.client.objPlace.cancelEllipseArcDraw(input);
|
|
945
|
+
}
|
|
946
|
+
});
|
|
947
|
+
registerSkill(CancelEllipseArcDrawSkill);
|
|
948
|
+
|
|
949
|
+
// generated/obj-place/cancel-ellipse-draw.ts
|
|
950
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService9 } from "@hqedge/connect";
|
|
951
|
+
var CancelEllipseDrawSkill = defineSkill({
|
|
952
|
+
id: "obj-place-cancel-ellipse-draw",
|
|
953
|
+
title: "Cancel Ellipse Draw",
|
|
954
|
+
description: "Cancel Ellipse Draw via ObjPlaceService.CancelEllipseDraw",
|
|
955
|
+
domain: "obj-place",
|
|
956
|
+
service: "ObjPlaceService",
|
|
957
|
+
method: "CancelEllipseDraw",
|
|
958
|
+
isStreaming: false,
|
|
959
|
+
inputSchema: HqServicesV1ObjPlaceService9.ContextOnlyRequestSchema,
|
|
960
|
+
async execute(ctx, input) {
|
|
961
|
+
return await ctx.client.objPlace.cancelEllipseDraw(input);
|
|
962
|
+
}
|
|
963
|
+
});
|
|
964
|
+
registerSkill(CancelEllipseDrawSkill);
|
|
965
|
+
|
|
966
|
+
// generated/obj-place/cancel-free-line-draw.ts
|
|
967
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService10 } from "@hqedge/connect";
|
|
968
|
+
var CancelFreeLineDrawSkill = defineSkill({
|
|
969
|
+
id: "obj-place-cancel-free-line-draw",
|
|
970
|
+
title: "Cancel Free Line Draw",
|
|
971
|
+
description: "Cancel Free Line Draw via ObjPlaceService.CancelFreeLineDraw",
|
|
972
|
+
domain: "obj-place",
|
|
973
|
+
service: "ObjPlaceService",
|
|
974
|
+
method: "CancelFreeLineDraw",
|
|
975
|
+
isStreaming: false,
|
|
976
|
+
inputSchema: HqServicesV1ObjPlaceService10.ContextOnlyRequestSchema,
|
|
977
|
+
async execute(ctx, input) {
|
|
978
|
+
return await ctx.client.objPlace.cancelFreeLineDraw(input);
|
|
979
|
+
}
|
|
980
|
+
});
|
|
981
|
+
registerSkill(CancelFreeLineDrawSkill);
|
|
982
|
+
|
|
983
|
+
// generated/obj-place/cancel-line-draw.ts
|
|
984
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService11 } from "@hqedge/connect";
|
|
985
|
+
var CancelLineDrawSkill = defineSkill({
|
|
986
|
+
id: "obj-place-cancel-line-draw",
|
|
987
|
+
title: "Cancel Line Draw",
|
|
988
|
+
description: "Cancel Line Draw via ObjPlaceService.CancelLineDraw",
|
|
989
|
+
domain: "obj-place",
|
|
990
|
+
service: "ObjPlaceService",
|
|
991
|
+
method: "CancelLineDraw",
|
|
992
|
+
isStreaming: false,
|
|
993
|
+
inputSchema: HqServicesV1ObjPlaceService11.CancelLineDrawRequestSchema,
|
|
994
|
+
async execute(ctx, input) {
|
|
995
|
+
return await ctx.client.objPlace.cancelLineDraw(input);
|
|
996
|
+
}
|
|
997
|
+
});
|
|
998
|
+
registerSkill(CancelLineDrawSkill);
|
|
999
|
+
|
|
1000
|
+
// generated/obj-place/cancel-rect-draw.ts
|
|
1001
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService12 } from "@hqedge/connect";
|
|
1002
|
+
var CancelRectDrawSkill = defineSkill({
|
|
1003
|
+
id: "obj-place-cancel-rect-draw",
|
|
1004
|
+
title: "Cancel Rect Draw",
|
|
1005
|
+
description: "Cancel Rect Draw via ObjPlaceService.CancelRectDraw",
|
|
1006
|
+
domain: "obj-place",
|
|
1007
|
+
service: "ObjPlaceService",
|
|
1008
|
+
method: "CancelRectDraw",
|
|
1009
|
+
isStreaming: false,
|
|
1010
|
+
inputSchema: HqServicesV1ObjPlaceService12.ContextOnlyRequestSchema,
|
|
1011
|
+
async execute(ctx, input) {
|
|
1012
|
+
return await ctx.client.objPlace.cancelRectDraw(input);
|
|
1013
|
+
}
|
|
1014
|
+
});
|
|
1015
|
+
registerSkill(CancelRectDrawSkill);
|
|
1016
|
+
|
|
1017
|
+
// generated/obj-place/cancel-wire-draw.ts
|
|
1018
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService13 } from "@hqedge/connect";
|
|
1019
|
+
var CancelWireDrawSkill = defineSkill({
|
|
1020
|
+
id: "obj-place-cancel-wire-draw",
|
|
1021
|
+
title: "Cancel Wire Draw",
|
|
1022
|
+
description: "Cancel Wire Draw via ObjPlaceService.CancelWireDraw",
|
|
1023
|
+
domain: "obj-place",
|
|
1024
|
+
service: "ObjPlaceService",
|
|
1025
|
+
method: "CancelWireDraw",
|
|
1026
|
+
isStreaming: false,
|
|
1027
|
+
inputSchema: HqServicesV1ObjPlaceService13.ContextOnlyRequestSchema,
|
|
1028
|
+
async execute(ctx, input) {
|
|
1029
|
+
return await ctx.client.objPlace.cancelWireDraw(input);
|
|
1030
|
+
}
|
|
1031
|
+
});
|
|
1032
|
+
registerSkill(CancelWireDrawSkill);
|
|
1033
|
+
|
|
1034
|
+
// generated/obj-place/handle-bus-draw-click.ts
|
|
1035
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService14 } from "@hqedge/connect";
|
|
1036
|
+
var HandleBusDrawClickSkill = defineSkill({
|
|
1037
|
+
id: "obj-place-handle-bus-draw-click",
|
|
1038
|
+
title: "Handle Bus Draw Click",
|
|
1039
|
+
description: "bus",
|
|
1040
|
+
domain: "obj-place",
|
|
1041
|
+
service: "ObjPlaceService",
|
|
1042
|
+
method: "HandleBusDrawClick",
|
|
1043
|
+
isStreaming: false,
|
|
1044
|
+
inputSchema: HqServicesV1ObjPlaceService14.LocalClickRequestSchema,
|
|
1045
|
+
async execute(ctx, input) {
|
|
1046
|
+
return await ctx.client.objPlace.handleBusDrawClick(input);
|
|
1047
|
+
}
|
|
1048
|
+
});
|
|
1049
|
+
registerSkill(HandleBusDrawClickSkill);
|
|
1050
|
+
|
|
1051
|
+
// generated/obj-place/handle-ellipse-arc-draw-click.ts
|
|
1052
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService15 } from "@hqedge/connect";
|
|
1053
|
+
var HandleEllipseArcDrawClickSkill = defineSkill({
|
|
1054
|
+
id: "obj-place-handle-ellipse-arc-draw-click",
|
|
1055
|
+
title: "Handle Ellipse Arc Draw Click",
|
|
1056
|
+
description: "Handle Ellipse Arc Draw Click via ObjPlaceService.HandleEllipseArcDrawClick",
|
|
1057
|
+
domain: "obj-place",
|
|
1058
|
+
service: "ObjPlaceService",
|
|
1059
|
+
method: "HandleEllipseArcDrawClick",
|
|
1060
|
+
isStreaming: false,
|
|
1061
|
+
inputSchema: HqServicesV1ObjPlaceService15.LocalClickRequestSchema,
|
|
1062
|
+
async execute(ctx, input) {
|
|
1063
|
+
return await ctx.client.objPlace.handleEllipseArcDrawClick(input);
|
|
1064
|
+
}
|
|
1065
|
+
});
|
|
1066
|
+
registerSkill(HandleEllipseArcDrawClickSkill);
|
|
1067
|
+
|
|
1068
|
+
// generated/obj-place/handle-ellipse-draw-click.ts
|
|
1069
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService16 } from "@hqedge/connect";
|
|
1070
|
+
var HandleEllipseDrawClickSkill = defineSkill({
|
|
1071
|
+
id: "obj-place-handle-ellipse-draw-click",
|
|
1072
|
+
title: "Handle Ellipse Draw Click",
|
|
1073
|
+
description: "Handle Ellipse Draw Click via ObjPlaceService.HandleEllipseDrawClick",
|
|
1074
|
+
domain: "obj-place",
|
|
1075
|
+
service: "ObjPlaceService",
|
|
1076
|
+
method: "HandleEllipseDrawClick",
|
|
1077
|
+
isStreaming: false,
|
|
1078
|
+
inputSchema: HqServicesV1ObjPlaceService16.LocalClickRequestSchema,
|
|
1079
|
+
async execute(ctx, input) {
|
|
1080
|
+
return await ctx.client.objPlace.handleEllipseDrawClick(input);
|
|
1081
|
+
}
|
|
1082
|
+
});
|
|
1083
|
+
registerSkill(HandleEllipseDrawClickSkill);
|
|
1084
|
+
|
|
1085
|
+
// generated/obj-place/handle-free-line-draw-click.ts
|
|
1086
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService17 } from "@hqedge/connect";
|
|
1087
|
+
var HandleFreeLineDrawClickSkill = defineSkill({
|
|
1088
|
+
id: "obj-place-handle-free-line-draw-click",
|
|
1089
|
+
title: "Handle Free Line Draw Click",
|
|
1090
|
+
description: "Handle Free Line Draw Click via ObjPlaceService.HandleFreeLineDrawClick",
|
|
1091
|
+
domain: "obj-place",
|
|
1092
|
+
service: "ObjPlaceService",
|
|
1093
|
+
method: "HandleFreeLineDrawClick",
|
|
1094
|
+
isStreaming: false,
|
|
1095
|
+
inputSchema: HqServicesV1ObjPlaceService17.LocalClickRequestSchema,
|
|
1096
|
+
async execute(ctx, input) {
|
|
1097
|
+
return await ctx.client.objPlace.handleFreeLineDrawClick(input);
|
|
1098
|
+
}
|
|
1099
|
+
});
|
|
1100
|
+
registerSkill(HandleFreeLineDrawClickSkill);
|
|
1101
|
+
|
|
1102
|
+
// generated/obj-place/handle-image-draw-click.ts
|
|
1103
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService18 } from "@hqedge/connect";
|
|
1104
|
+
var HandleImageDrawClickSkill = defineSkill({
|
|
1105
|
+
id: "obj-place-handle-image-draw-click",
|
|
1106
|
+
title: "Handle Image Draw Click",
|
|
1107
|
+
description: "Handle Image Draw Click via ObjPlaceService.HandleImageDrawClick",
|
|
1108
|
+
domain: "obj-place",
|
|
1109
|
+
service: "ObjPlaceService",
|
|
1110
|
+
method: "HandleImageDrawClick",
|
|
1111
|
+
isStreaming: false,
|
|
1112
|
+
inputSchema: HqServicesV1ObjPlaceService18.HandleImageDrawClickRequestSchema,
|
|
1113
|
+
async execute(ctx, input) {
|
|
1114
|
+
return await ctx.client.objPlace.handleImageDrawClick(input);
|
|
1115
|
+
}
|
|
1116
|
+
});
|
|
1117
|
+
registerSkill(HandleImageDrawClickSkill);
|
|
1118
|
+
|
|
1119
|
+
// generated/obj-place/handle-line-draw-click.ts
|
|
1120
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService19 } from "@hqedge/connect";
|
|
1121
|
+
var HandleLineDrawClickSkill = defineSkill({
|
|
1122
|
+
id: "obj-place-handle-line-draw-click",
|
|
1123
|
+
title: "Handle Line Draw Click",
|
|
1124
|
+
description: "Handle Line Draw Click via ObjPlaceService.HandleLineDrawClick",
|
|
1125
|
+
domain: "obj-place",
|
|
1126
|
+
service: "ObjPlaceService",
|
|
1127
|
+
method: "HandleLineDrawClick",
|
|
1128
|
+
isStreaming: false,
|
|
1129
|
+
inputSchema: HqServicesV1ObjPlaceService19.HandleLineDrawClickRequestSchema,
|
|
1130
|
+
async execute(ctx, input) {
|
|
1131
|
+
return await ctx.client.objPlace.handleLineDrawClick(input);
|
|
1132
|
+
}
|
|
1133
|
+
});
|
|
1134
|
+
registerSkill(HandleLineDrawClickSkill);
|
|
1135
|
+
|
|
1136
|
+
// generated/obj-place/handle-net-alias-draw-click.ts
|
|
1137
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService20 } from "@hqedge/connect";
|
|
1138
|
+
var HandleNetAliasDrawClickSkill = defineSkill({
|
|
1139
|
+
id: "obj-place-handle-net-alias-draw-click",
|
|
1140
|
+
title: "Handle Net Alias Draw Click",
|
|
1141
|
+
description: "Handle Net Alias Draw Click via ObjPlaceService.HandleNetAliasDrawClick",
|
|
1142
|
+
domain: "obj-place",
|
|
1143
|
+
service: "ObjPlaceService",
|
|
1144
|
+
method: "HandleNetAliasDrawClick",
|
|
1145
|
+
isStreaming: false,
|
|
1146
|
+
inputSchema: HqServicesV1ObjPlaceService20.LocalClickRequestSchema,
|
|
1147
|
+
async execute(ctx, input) {
|
|
1148
|
+
return await ctx.client.objPlace.handleNetAliasDrawClick(input);
|
|
1149
|
+
}
|
|
1150
|
+
});
|
|
1151
|
+
registerSkill(HandleNetAliasDrawClickSkill);
|
|
1152
|
+
|
|
1153
|
+
// generated/obj-place/handle-rect-draw-click.ts
|
|
1154
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService21 } from "@hqedge/connect";
|
|
1155
|
+
var HandleRectDrawClickSkill = defineSkill({
|
|
1156
|
+
id: "obj-place-handle-rect-draw-click",
|
|
1157
|
+
title: "Handle Rect Draw Click",
|
|
1158
|
+
description: "Handle Rect Draw Click via ObjPlaceService.HandleRectDrawClick",
|
|
1159
|
+
domain: "obj-place",
|
|
1160
|
+
service: "ObjPlaceService",
|
|
1161
|
+
method: "HandleRectDrawClick",
|
|
1162
|
+
isStreaming: false,
|
|
1163
|
+
inputSchema: HqServicesV1ObjPlaceService21.LocalClickRequestSchema,
|
|
1164
|
+
async execute(ctx, input) {
|
|
1165
|
+
return await ctx.client.objPlace.handleRectDrawClick(input);
|
|
1166
|
+
}
|
|
1167
|
+
});
|
|
1168
|
+
registerSkill(HandleRectDrawClickSkill);
|
|
1169
|
+
|
|
1170
|
+
// generated/obj-place/handle-table-draw-click.ts
|
|
1171
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService22 } from "@hqedge/connect";
|
|
1172
|
+
var HandleTableDrawClickSkill = defineSkill({
|
|
1173
|
+
id: "obj-place-handle-table-draw-click",
|
|
1174
|
+
title: "Handle Table Draw Click",
|
|
1175
|
+
description: "Handle Table Draw Click via ObjPlaceService.HandleTableDrawClick",
|
|
1176
|
+
domain: "obj-place",
|
|
1177
|
+
service: "ObjPlaceService",
|
|
1178
|
+
method: "HandleTableDrawClick",
|
|
1179
|
+
isStreaming: false,
|
|
1180
|
+
inputSchema: HqServicesV1ObjPlaceService22.LocalClickRequestSchema,
|
|
1181
|
+
async execute(ctx, input) {
|
|
1182
|
+
return await ctx.client.objPlace.handleTableDrawClick(input);
|
|
1183
|
+
}
|
|
1184
|
+
});
|
|
1185
|
+
registerSkill(HandleTableDrawClickSkill);
|
|
1186
|
+
|
|
1187
|
+
// generated/obj-place/handle-text-draw-click.ts
|
|
1188
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService23 } from "@hqedge/connect";
|
|
1189
|
+
var HandleTextDrawClickSkill = defineSkill({
|
|
1190
|
+
id: "obj-place-handle-text-draw-click",
|
|
1191
|
+
title: "Handle Text Draw Click",
|
|
1192
|
+
description: "Handle Text Draw Click via ObjPlaceService.HandleTextDrawClick",
|
|
1193
|
+
domain: "obj-place",
|
|
1194
|
+
service: "ObjPlaceService",
|
|
1195
|
+
method: "HandleTextDrawClick",
|
|
1196
|
+
isStreaming: false,
|
|
1197
|
+
inputSchema: HqServicesV1ObjPlaceService23.LocalClickRequestSchema,
|
|
1198
|
+
async execute(ctx, input) {
|
|
1199
|
+
return await ctx.client.objPlace.handleTextDrawClick(input);
|
|
1200
|
+
}
|
|
1201
|
+
});
|
|
1202
|
+
registerSkill(HandleTextDrawClickSkill);
|
|
1203
|
+
|
|
1204
|
+
// generated/obj-place/handle-wire-draw-click.ts
|
|
1205
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService24 } from "@hqedge/connect";
|
|
1206
|
+
var HandleWireDrawClickSkill = defineSkill({
|
|
1207
|
+
id: "obj-place-handle-wire-draw-click",
|
|
1208
|
+
title: "Handle Wire Draw Click",
|
|
1209
|
+
description: "wire",
|
|
1210
|
+
domain: "obj-place",
|
|
1211
|
+
service: "ObjPlaceService",
|
|
1212
|
+
method: "HandleWireDrawClick",
|
|
1213
|
+
isStreaming: false,
|
|
1214
|
+
inputSchema: HqServicesV1ObjPlaceService24.LocalClickRequestSchema,
|
|
1215
|
+
async execute(ctx, input) {
|
|
1216
|
+
return await ctx.client.objPlace.handleWireDrawClick(input);
|
|
1217
|
+
}
|
|
1218
|
+
});
|
|
1219
|
+
registerSkill(HandleWireDrawClickSkill);
|
|
1220
|
+
|
|
1221
|
+
// generated/obj-place/place-bus.ts
|
|
1222
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService25 } from "@hqedge/connect";
|
|
1223
|
+
var PlaceBusSkill = defineSkill({
|
|
1224
|
+
id: "obj-place-place-bus",
|
|
1225
|
+
title: "Place Bus",
|
|
1226
|
+
description: "Place Bus via ObjPlaceService.PlaceBus",
|
|
1227
|
+
domain: "obj-place",
|
|
1228
|
+
service: "ObjPlaceService",
|
|
1229
|
+
method: "PlaceBus",
|
|
1230
|
+
isStreaming: false,
|
|
1231
|
+
inputSchema: HqServicesV1ObjPlaceService25.PlaceLineRequestSchema,
|
|
1232
|
+
async execute(ctx, input) {
|
|
1233
|
+
return await ctx.client.objPlace.placeBus(input);
|
|
1234
|
+
}
|
|
1235
|
+
});
|
|
1236
|
+
registerSkill(PlaceBusSkill);
|
|
1237
|
+
|
|
1238
|
+
// generated/obj-place/place-ellipse.ts
|
|
1239
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService26 } from "@hqedge/connect";
|
|
1240
|
+
var PlaceEllipseSkill = defineSkill({
|
|
1241
|
+
id: "obj-place-place-ellipse",
|
|
1242
|
+
title: "Place Ellipse",
|
|
1243
|
+
description: "ellipse",
|
|
1244
|
+
domain: "obj-place",
|
|
1245
|
+
service: "ObjPlaceService",
|
|
1246
|
+
method: "PlaceEllipse",
|
|
1247
|
+
isStreaming: false,
|
|
1248
|
+
inputSchema: HqServicesV1ObjPlaceService26.BoxShiftPlaceRequestSchema,
|
|
1249
|
+
async execute(ctx, input) {
|
|
1250
|
+
return await ctx.client.objPlace.placeEllipse(input);
|
|
1251
|
+
}
|
|
1252
|
+
});
|
|
1253
|
+
registerSkill(PlaceEllipseSkill);
|
|
1254
|
+
|
|
1255
|
+
// generated/obj-place/place-ellipse-arc.ts
|
|
1256
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService27 } from "@hqedge/connect";
|
|
1257
|
+
var PlaceEllipseArcSkill = defineSkill({
|
|
1258
|
+
id: "obj-place-place-ellipse-arc",
|
|
1259
|
+
title: "Place Ellipse Arc",
|
|
1260
|
+
description: "ellipse arc",
|
|
1261
|
+
domain: "obj-place",
|
|
1262
|
+
service: "ObjPlaceService",
|
|
1263
|
+
method: "PlaceEllipseArc",
|
|
1264
|
+
isStreaming: false,
|
|
1265
|
+
inputSchema: HqServicesV1ObjPlaceService27.ObjDataPlaceRequestSchema,
|
|
1266
|
+
async execute(ctx, input) {
|
|
1267
|
+
return await ctx.client.objPlace.placeEllipseArc(input);
|
|
1268
|
+
}
|
|
1269
|
+
});
|
|
1270
|
+
registerSkill(PlaceEllipseArcSkill);
|
|
1271
|
+
|
|
1272
|
+
// generated/obj-place/place-ellipse-arc-from-virtual.ts
|
|
1273
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService28 } from "@hqedge/connect";
|
|
1274
|
+
var PlaceEllipseArcFromVirtualSkill = defineSkill({
|
|
1275
|
+
id: "obj-place-place-ellipse-arc-from-virtual",
|
|
1276
|
+
title: "Place Ellipse Arc From Virtual",
|
|
1277
|
+
description: "Place Ellipse Arc From Virtual via ObjPlaceService.PlaceEllipseArcFromVirtual",
|
|
1278
|
+
domain: "obj-place",
|
|
1279
|
+
service: "ObjPlaceService",
|
|
1280
|
+
method: "PlaceEllipseArcFromVirtual",
|
|
1281
|
+
isStreaming: false,
|
|
1282
|
+
inputSchema: HqServicesV1ObjPlaceService28.ContextOnlyRequestSchema,
|
|
1283
|
+
async execute(ctx, input) {
|
|
1284
|
+
return await ctx.client.objPlace.placeEllipseArcFromVirtual(input);
|
|
1285
|
+
}
|
|
1286
|
+
});
|
|
1287
|
+
registerSkill(PlaceEllipseArcFromVirtualSkill);
|
|
1288
|
+
|
|
1289
|
+
// generated/obj-place/place-free-line.ts
|
|
1290
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService29 } from "@hqedge/connect";
|
|
1291
|
+
var PlaceFreeLineSkill = defineSkill({
|
|
1292
|
+
id: "obj-place-place-free-line",
|
|
1293
|
+
title: "Place Free Line",
|
|
1294
|
+
description: "free line",
|
|
1295
|
+
domain: "obj-place",
|
|
1296
|
+
service: "ObjPlaceService",
|
|
1297
|
+
method: "PlaceFreeLine",
|
|
1298
|
+
isStreaming: false,
|
|
1299
|
+
inputSchema: HqServicesV1ObjPlaceService29.PlaceFreeLineRequestSchema,
|
|
1300
|
+
async execute(ctx, input) {
|
|
1301
|
+
return await ctx.client.objPlace.placeFreeLine(input);
|
|
1302
|
+
}
|
|
1303
|
+
});
|
|
1304
|
+
registerSkill(PlaceFreeLineSkill);
|
|
1305
|
+
|
|
1306
|
+
// generated/obj-place/place-image.ts
|
|
1307
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService30 } from "@hqedge/connect";
|
|
1308
|
+
var PlaceImageSkill = defineSkill({
|
|
1309
|
+
id: "obj-place-place-image",
|
|
1310
|
+
title: "Place Image",
|
|
1311
|
+
description: "image",
|
|
1312
|
+
domain: "obj-place",
|
|
1313
|
+
service: "ObjPlaceService",
|
|
1314
|
+
method: "PlaceImage",
|
|
1315
|
+
isStreaming: false,
|
|
1316
|
+
inputSchema: HqServicesV1ObjPlaceService30.PlaceImageRequestSchema,
|
|
1317
|
+
async execute(ctx, input) {
|
|
1318
|
+
return await ctx.client.objPlace.placeImage(input);
|
|
1319
|
+
}
|
|
1320
|
+
});
|
|
1321
|
+
registerSkill(PlaceImageSkill);
|
|
1322
|
+
|
|
1323
|
+
// generated/obj-place/place-line.ts
|
|
1324
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService31 } from "@hqedge/connect";
|
|
1325
|
+
var PlaceLineSkill = defineSkill({
|
|
1326
|
+
id: "obj-place-place-line",
|
|
1327
|
+
title: "Place Line",
|
|
1328
|
+
description: "line",
|
|
1329
|
+
domain: "obj-place",
|
|
1330
|
+
service: "ObjPlaceService",
|
|
1331
|
+
method: "PlaceLine",
|
|
1332
|
+
isStreaming: false,
|
|
1333
|
+
inputSchema: HqServicesV1ObjPlaceService31.PlaceLineRequestSchema,
|
|
1334
|
+
async execute(ctx, input) {
|
|
1335
|
+
return await ctx.client.objPlace.placeLine(input);
|
|
1336
|
+
}
|
|
1337
|
+
});
|
|
1338
|
+
registerSkill(PlaceLineSkill);
|
|
1339
|
+
|
|
1340
|
+
// generated/obj-place/place-net-alias.ts
|
|
1341
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService32 } from "@hqedge/connect";
|
|
1342
|
+
var PlaceNetAliasSkill = defineSkill({
|
|
1343
|
+
id: "obj-place-place-net-alias",
|
|
1344
|
+
title: "Place Net Alias",
|
|
1345
|
+
description: "net alias",
|
|
1346
|
+
domain: "obj-place",
|
|
1347
|
+
service: "ObjPlaceService",
|
|
1348
|
+
method: "PlaceNetAlias",
|
|
1349
|
+
isStreaming: false,
|
|
1350
|
+
inputSchema: HqServicesV1ObjPlaceService32.PlaceNetAliasRequestSchema,
|
|
1351
|
+
async execute(ctx, input) {
|
|
1352
|
+
return await ctx.client.objPlace.placeNetAlias(input);
|
|
1353
|
+
}
|
|
1354
|
+
});
|
|
1355
|
+
registerSkill(PlaceNetAliasSkill);
|
|
1356
|
+
|
|
1357
|
+
// generated/obj-place/place-rect.ts
|
|
1358
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService33 } from "@hqedge/connect";
|
|
1359
|
+
var PlaceRectSkill = defineSkill({
|
|
1360
|
+
id: "obj-place-place-rect",
|
|
1361
|
+
title: "Place Rect",
|
|
1362
|
+
description: "rect",
|
|
1363
|
+
domain: "obj-place",
|
|
1364
|
+
service: "ObjPlaceService",
|
|
1365
|
+
method: "PlaceRect",
|
|
1366
|
+
isStreaming: false,
|
|
1367
|
+
inputSchema: HqServicesV1ObjPlaceService33.BoxPlaceRequestSchema,
|
|
1368
|
+
async execute(ctx, input) {
|
|
1369
|
+
return await ctx.client.objPlace.placeRect(input);
|
|
1370
|
+
}
|
|
1371
|
+
});
|
|
1372
|
+
registerSkill(PlaceRectSkill);
|
|
1373
|
+
|
|
1374
|
+
// generated/obj-place/place-table.ts
|
|
1375
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService34 } from "@hqedge/connect";
|
|
1376
|
+
var PlaceTableSkill = defineSkill({
|
|
1377
|
+
id: "obj-place-place-table",
|
|
1378
|
+
title: "Place Table",
|
|
1379
|
+
description: "table",
|
|
1380
|
+
domain: "obj-place",
|
|
1381
|
+
service: "ObjPlaceService",
|
|
1382
|
+
method: "PlaceTable",
|
|
1383
|
+
isStreaming: false,
|
|
1384
|
+
inputSchema: HqServicesV1ObjPlaceService34.ObjDataPlaceRequestSchema,
|
|
1385
|
+
async execute(ctx, input) {
|
|
1386
|
+
return await ctx.client.objPlace.placeTable(input);
|
|
1387
|
+
}
|
|
1388
|
+
});
|
|
1389
|
+
registerSkill(PlaceTableSkill);
|
|
1390
|
+
|
|
1391
|
+
// generated/obj-place/place-table-from-virtual.ts
|
|
1392
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService35 } from "@hqedge/connect";
|
|
1393
|
+
var PlaceTableFromVirtualSkill = defineSkill({
|
|
1394
|
+
id: "obj-place-place-table-from-virtual",
|
|
1395
|
+
title: "Place Table From Virtual",
|
|
1396
|
+
description: "Place Table From Virtual via ObjPlaceService.PlaceTableFromVirtual",
|
|
1397
|
+
domain: "obj-place",
|
|
1398
|
+
service: "ObjPlaceService",
|
|
1399
|
+
method: "PlaceTableFromVirtual",
|
|
1400
|
+
isStreaming: false,
|
|
1401
|
+
inputSchema: HqServicesV1ObjPlaceService35.ContextOnlyRequestSchema,
|
|
1402
|
+
async execute(ctx, input) {
|
|
1403
|
+
return await ctx.client.objPlace.placeTableFromVirtual(input);
|
|
1404
|
+
}
|
|
1405
|
+
});
|
|
1406
|
+
registerSkill(PlaceTableFromVirtualSkill);
|
|
1407
|
+
|
|
1408
|
+
// generated/obj-place/place-text.ts
|
|
1409
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService36 } from "@hqedge/connect";
|
|
1410
|
+
var PlaceTextSkill = defineSkill({
|
|
1411
|
+
id: "obj-place-place-text",
|
|
1412
|
+
title: "Place Text",
|
|
1413
|
+
description: "text",
|
|
1414
|
+
domain: "obj-place",
|
|
1415
|
+
service: "ObjPlaceService",
|
|
1416
|
+
method: "PlaceText",
|
|
1417
|
+
isStreaming: false,
|
|
1418
|
+
inputSchema: HqServicesV1ObjPlaceService36.ObjDataPlaceRequestSchema,
|
|
1419
|
+
async execute(ctx, input) {
|
|
1420
|
+
return await ctx.client.objPlace.placeText(input);
|
|
1421
|
+
}
|
|
1422
|
+
});
|
|
1423
|
+
registerSkill(PlaceTextSkill);
|
|
1424
|
+
|
|
1425
|
+
// generated/obj-place/place-text-from-virtual.ts
|
|
1426
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService37 } from "@hqedge/connect";
|
|
1427
|
+
var PlaceTextFromVirtualSkill = defineSkill({
|
|
1428
|
+
id: "obj-place-place-text-from-virtual",
|
|
1429
|
+
title: "Place Text From Virtual",
|
|
1430
|
+
description: "Place Text From Virtual via ObjPlaceService.PlaceTextFromVirtual",
|
|
1431
|
+
domain: "obj-place",
|
|
1432
|
+
service: "ObjPlaceService",
|
|
1433
|
+
method: "PlaceTextFromVirtual",
|
|
1434
|
+
isStreaming: false,
|
|
1435
|
+
inputSchema: HqServicesV1ObjPlaceService37.ContextOnlyRequestSchema,
|
|
1436
|
+
async execute(ctx, input) {
|
|
1437
|
+
return await ctx.client.objPlace.placeTextFromVirtual(input);
|
|
1438
|
+
}
|
|
1439
|
+
});
|
|
1440
|
+
registerSkill(PlaceTextFromVirtualSkill);
|
|
1441
|
+
|
|
1442
|
+
// generated/obj-place/place-wire.ts
|
|
1443
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService38 } from "@hqedge/connect";
|
|
1444
|
+
var PlaceWireSkill = defineSkill({
|
|
1445
|
+
id: "obj-place-place-wire",
|
|
1446
|
+
title: "Place Wire",
|
|
1447
|
+
description: "Place Wire via ObjPlaceService.PlaceWire",
|
|
1448
|
+
domain: "obj-place",
|
|
1449
|
+
service: "ObjPlaceService",
|
|
1450
|
+
method: "PlaceWire",
|
|
1451
|
+
isStreaming: false,
|
|
1452
|
+
inputSchema: HqServicesV1ObjPlaceService38.PlaceLineRequestSchema,
|
|
1453
|
+
async execute(ctx, input) {
|
|
1454
|
+
return await ctx.client.objPlace.placeWire(input);
|
|
1455
|
+
}
|
|
1456
|
+
});
|
|
1457
|
+
registerSkill(PlaceWireSkill);
|
|
1458
|
+
|
|
1459
|
+
// generated/placement/cancel-block-draw.ts
|
|
1460
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService39 } from "@hqedge/connect";
|
|
1461
|
+
var CancelBlockDrawSkill = defineSkill({
|
|
1462
|
+
id: "placement-cancel-block-draw",
|
|
1463
|
+
title: "Cancel Block Draw",
|
|
1464
|
+
description: "Cancel Block Draw via ComponentPlaceService.CancelBlockDraw",
|
|
1465
|
+
domain: "placement",
|
|
1466
|
+
service: "ComponentPlaceService",
|
|
1467
|
+
method: "CancelBlockDraw",
|
|
1468
|
+
isStreaming: false,
|
|
1469
|
+
inputSchema: HqServicesV1ObjPlaceService39.ContextOnlyRequestSchema,
|
|
1470
|
+
async execute(ctx, input) {
|
|
1471
|
+
return await ctx.client.componentPlace.cancelBlockDraw(input);
|
|
1472
|
+
}
|
|
1473
|
+
});
|
|
1474
|
+
registerSkill(CancelBlockDrawSkill);
|
|
1475
|
+
|
|
1476
|
+
// generated/placement/clear-net-alias-attach-obj.ts
|
|
1477
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService40 } from "@hqedge/connect";
|
|
1478
|
+
var ClearNetAliasAttachObjSkill = defineSkill({
|
|
1479
|
+
id: "placement-clear-net-alias-attach-obj",
|
|
1480
|
+
title: "Clear Net Alias Attach Obj",
|
|
1481
|
+
description: "Clear Net Alias Attach Obj via ComponentPlaceService.ClearNetAliasAttachObj",
|
|
1482
|
+
domain: "placement",
|
|
1483
|
+
service: "ComponentPlaceService",
|
|
1484
|
+
method: "ClearNetAliasAttachObj",
|
|
1485
|
+
isStreaming: false,
|
|
1486
|
+
inputSchema: HqServicesV1ObjPlaceService40.ContextOnlyRequestSchema,
|
|
1487
|
+
async execute(ctx, input) {
|
|
1488
|
+
return await ctx.client.componentPlace.clearNetAliasAttachObj(input);
|
|
1489
|
+
}
|
|
1490
|
+
});
|
|
1491
|
+
registerSkill(ClearNetAliasAttachObjSkill);
|
|
1492
|
+
|
|
1493
|
+
// generated/placement/handle-block-draw-click.ts
|
|
1494
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService41 } from "@hqedge/connect";
|
|
1495
|
+
var HandleBlockDrawClickSkill = defineSkill({
|
|
1496
|
+
id: "placement-handle-block-draw-click",
|
|
1497
|
+
title: "Handle Block Draw Click",
|
|
1498
|
+
description: "Handle Block Draw Click via ComponentPlaceService.HandleBlockDrawClick",
|
|
1499
|
+
domain: "placement",
|
|
1500
|
+
service: "ComponentPlaceService",
|
|
1501
|
+
method: "HandleBlockDrawClick",
|
|
1502
|
+
isStreaming: false,
|
|
1503
|
+
inputSchema: HqServicesV1ObjPlaceService41.LocalClickRequestSchema,
|
|
1504
|
+
async execute(ctx, input) {
|
|
1505
|
+
return await ctx.client.componentPlace.handleBlockDrawClick(input);
|
|
1506
|
+
}
|
|
1507
|
+
});
|
|
1508
|
+
registerSkill(HandleBlockDrawClickSkill);
|
|
1509
|
+
|
|
1510
|
+
// generated/placement/handle-part-draw-click.ts
|
|
1511
|
+
import { HqServicesV1ComponentPlaceService } from "@hqedge/connect";
|
|
1512
|
+
var HandlePartDrawClickSkill = defineSkill({
|
|
1513
|
+
id: "placement-handle-part-draw-click",
|
|
1514
|
+
title: "Handle Part Draw Click",
|
|
1515
|
+
description: "Handle Part Draw Click via ComponentPlaceService.HandlePartDrawClick",
|
|
1516
|
+
domain: "placement",
|
|
1517
|
+
service: "ComponentPlaceService",
|
|
1518
|
+
method: "HandlePartDrawClick",
|
|
1519
|
+
isStreaming: false,
|
|
1520
|
+
inputSchema: HqServicesV1ComponentPlaceService.HandlePartDrawClickRequestSchema,
|
|
1521
|
+
async execute(ctx, input) {
|
|
1522
|
+
return await ctx.client.componentPlace.handlePartDrawClick(input);
|
|
1523
|
+
}
|
|
1524
|
+
});
|
|
1525
|
+
registerSkill(HandlePartDrawClickSkill);
|
|
1526
|
+
|
|
1527
|
+
// generated/placement/handle-symbol-draw-click.ts
|
|
1528
|
+
import { HqServicesV1ComponentPlaceService as HqServicesV1ComponentPlaceService2 } from "@hqedge/connect";
|
|
1529
|
+
var HandleSymbolDrawClickSkill = defineSkill({
|
|
1530
|
+
id: "placement-handle-symbol-draw-click",
|
|
1531
|
+
title: "Handle Symbol Draw Click",
|
|
1532
|
+
description: "Handle Symbol Draw Click via ComponentPlaceService.HandleSymbolDrawClick",
|
|
1533
|
+
domain: "placement",
|
|
1534
|
+
service: "ComponentPlaceService",
|
|
1535
|
+
method: "HandleSymbolDrawClick",
|
|
1536
|
+
isStreaming: false,
|
|
1537
|
+
inputSchema: HqServicesV1ComponentPlaceService2.HandleSymbolDrawClickRequestSchema,
|
|
1538
|
+
async execute(ctx, input) {
|
|
1539
|
+
return await ctx.client.componentPlace.handleSymbolDrawClick(input);
|
|
1540
|
+
}
|
|
1541
|
+
});
|
|
1542
|
+
registerSkill(HandleSymbolDrawClickSkill);
|
|
1543
|
+
|
|
1544
|
+
// generated/placement/place-block.ts
|
|
1545
|
+
import { HqServicesV1ObjPlaceService as HqServicesV1ObjPlaceService42 } from "@hqedge/connect";
|
|
1546
|
+
var PlaceBlockSkill = defineSkill({
|
|
1547
|
+
id: "placement-place-block",
|
|
1548
|
+
title: "Place Block",
|
|
1549
|
+
description: "block",
|
|
1550
|
+
domain: "placement",
|
|
1551
|
+
service: "ComponentPlaceService",
|
|
1552
|
+
method: "PlaceBlock",
|
|
1553
|
+
isStreaming: false,
|
|
1554
|
+
inputSchema: HqServicesV1ObjPlaceService42.BoxPlaceRequestSchema,
|
|
1555
|
+
async execute(ctx, input) {
|
|
1556
|
+
return await ctx.client.componentPlace.placeBlock(input);
|
|
1557
|
+
}
|
|
1558
|
+
});
|
|
1559
|
+
registerSkill(PlaceBlockSkill);
|
|
1560
|
+
|
|
1561
|
+
// generated/placement/place-part.ts
|
|
1562
|
+
import { HqServicesV1ComponentPlaceService as HqServicesV1ComponentPlaceService3 } from "@hqedge/connect";
|
|
1563
|
+
var PlacePartSkill = defineSkill({
|
|
1564
|
+
id: "placement-place-part",
|
|
1565
|
+
title: "Place Part",
|
|
1566
|
+
description: "part",
|
|
1567
|
+
domain: "placement",
|
|
1568
|
+
service: "ComponentPlaceService",
|
|
1569
|
+
method: "PlacePart",
|
|
1570
|
+
isStreaming: false,
|
|
1571
|
+
inputSchema: HqServicesV1ComponentPlaceService3.PlacePartRequestSchema,
|
|
1572
|
+
async execute(ctx, input) {
|
|
1573
|
+
return await ctx.client.componentPlace.placePart(input);
|
|
1574
|
+
}
|
|
1575
|
+
});
|
|
1576
|
+
registerSkill(PlacePartSkill);
|
|
1577
|
+
|
|
1578
|
+
// generated/placement/place-symbol.ts
|
|
1579
|
+
import { HqServicesV1ComponentPlaceService as HqServicesV1ComponentPlaceService4 } from "@hqedge/connect";
|
|
1580
|
+
var PlaceSymbolSkill = defineSkill({
|
|
1581
|
+
id: "placement-place-symbol",
|
|
1582
|
+
title: "Place Symbol",
|
|
1583
|
+
description: "symbol",
|
|
1584
|
+
domain: "placement",
|
|
1585
|
+
service: "ComponentPlaceService",
|
|
1586
|
+
method: "PlaceSymbol",
|
|
1587
|
+
isStreaming: false,
|
|
1588
|
+
inputSchema: HqServicesV1ComponentPlaceService4.PlaceSymbolRequestSchema,
|
|
1589
|
+
async execute(ctx, input) {
|
|
1590
|
+
return await ctx.client.componentPlace.placeSymbol(input);
|
|
1591
|
+
}
|
|
1592
|
+
});
|
|
1593
|
+
registerSkill(PlaceSymbolSkill);
|
|
1594
|
+
|
|
1595
|
+
// generated/placement/set-net-alias-attach-obj.ts
|
|
1596
|
+
import { HqServicesV1ComponentPlaceService as HqServicesV1ComponentPlaceService5 } from "@hqedge/connect";
|
|
1597
|
+
var SetNetAliasAttachObjSkill = defineSkill({
|
|
1598
|
+
id: "placement-set-net-alias-attach-obj",
|
|
1599
|
+
title: "Set Net Alias Attach Obj",
|
|
1600
|
+
description: "net alias attach",
|
|
1601
|
+
domain: "placement",
|
|
1602
|
+
service: "ComponentPlaceService",
|
|
1603
|
+
method: "SetNetAliasAttachObj",
|
|
1604
|
+
isStreaming: false,
|
|
1605
|
+
inputSchema: HqServicesV1ComponentPlaceService5.SetNetAliasAttachObjRequestSchema,
|
|
1606
|
+
async execute(ctx, input) {
|
|
1607
|
+
return await ctx.client.componentPlace.setNetAliasAttachObj(input);
|
|
1608
|
+
}
|
|
1609
|
+
});
|
|
1610
|
+
registerSkill(SetNetAliasAttachObjSkill);
|
|
1611
|
+
|
|
1612
|
+
// generated/project/close-project.ts
|
|
1613
|
+
import { HqServicesV1ProjectService } from "@hqedge/connect";
|
|
1614
|
+
var CloseProjectSkill = defineSkill({
|
|
1615
|
+
id: "project-close-project",
|
|
1616
|
+
title: "Close Project",
|
|
1617
|
+
description: "Closes an opened project.",
|
|
1618
|
+
domain: "project",
|
|
1619
|
+
service: "ProjectService",
|
|
1620
|
+
method: "CloseProject",
|
|
1621
|
+
isStreaming: false,
|
|
1622
|
+
inputSchema: HqServicesV1ProjectService.CloseProjectRequestSchema,
|
|
1623
|
+
async execute(ctx, input) {
|
|
1624
|
+
return await ctx.client.project.closeProject(input);
|
|
1625
|
+
}
|
|
1626
|
+
});
|
|
1627
|
+
registerSkill(CloseProjectSkill);
|
|
1628
|
+
|
|
1629
|
+
// generated/project/get-active-project.ts
|
|
1630
|
+
import { HqServicesV1ProjectService as HqServicesV1ProjectService2 } from "@hqedge/connect";
|
|
1631
|
+
var GetActiveProjectSkill = defineSkill({
|
|
1632
|
+
id: "project-get-active-project",
|
|
1633
|
+
title: "Get Active Project",
|
|
1634
|
+
description: "Returns the project currently active in the editor UI.",
|
|
1635
|
+
domain: "project",
|
|
1636
|
+
service: "ProjectService",
|
|
1637
|
+
method: "GetActiveProject",
|
|
1638
|
+
isStreaming: false,
|
|
1639
|
+
inputSchema: HqServicesV1ProjectService2.GetActiveProjectRequestSchema,
|
|
1640
|
+
async execute(ctx, input) {
|
|
1641
|
+
return await ctx.client.project.getActiveProject(input);
|
|
1642
|
+
}
|
|
1643
|
+
});
|
|
1644
|
+
registerSkill(GetActiveProjectSkill);
|
|
1645
|
+
|
|
1646
|
+
// generated/project/get-project.ts
|
|
1647
|
+
import { HqServicesV1ProjectService as HqServicesV1ProjectService3 } from "@hqedge/connect";
|
|
1648
|
+
var GetProjectSkill = defineSkill({
|
|
1649
|
+
id: "project-get-project",
|
|
1650
|
+
title: "Get Project",
|
|
1651
|
+
description: "Returns one opened project.",
|
|
1652
|
+
domain: "project",
|
|
1653
|
+
service: "ProjectService",
|
|
1654
|
+
method: "GetProject",
|
|
1655
|
+
isStreaming: false,
|
|
1656
|
+
inputSchema: HqServicesV1ProjectService3.GetProjectRequestSchema,
|
|
1657
|
+
async execute(ctx, input) {
|
|
1658
|
+
return await ctx.client.project.getProject(input);
|
|
1659
|
+
}
|
|
1660
|
+
});
|
|
1661
|
+
registerSkill(GetProjectSkill);
|
|
1662
|
+
|
|
1663
|
+
// generated/project/list-open-projects.ts
|
|
1664
|
+
import { HqServicesV1ProjectService as HqServicesV1ProjectService4 } from "@hqedge/connect";
|
|
1665
|
+
var ListOpenProjectsSkill = defineSkill({
|
|
1666
|
+
id: "project-list-open-projects",
|
|
1667
|
+
title: "List Open Projects",
|
|
1668
|
+
description: "Returns all projects currently opened in this HQ EDA process.",
|
|
1669
|
+
domain: "project",
|
|
1670
|
+
service: "ProjectService",
|
|
1671
|
+
method: "ListOpenProjects",
|
|
1672
|
+
isStreaming: false,
|
|
1673
|
+
inputSchema: HqServicesV1ProjectService4.ListOpenProjectsRequestSchema,
|
|
1674
|
+
async execute(ctx, input) {
|
|
1675
|
+
return await ctx.client.project.listOpenProjects(input);
|
|
1676
|
+
}
|
|
1677
|
+
});
|
|
1678
|
+
registerSkill(ListOpenProjectsSkill);
|
|
1679
|
+
|
|
1680
|
+
// generated/project/open-project.ts
|
|
1681
|
+
import { HqServicesV1ProjectService as HqServicesV1ProjectService5 } from "@hqedge/connect";
|
|
1682
|
+
var OpenProjectSkill = defineSkill({
|
|
1683
|
+
id: "project-open-project",
|
|
1684
|
+
title: "Open Project",
|
|
1685
|
+
description: "Opens a project into the current HQ EDA editor process.",
|
|
1686
|
+
domain: "project",
|
|
1687
|
+
service: "ProjectService",
|
|
1688
|
+
method: "OpenProject",
|
|
1689
|
+
isStreaming: false,
|
|
1690
|
+
inputSchema: HqServicesV1ProjectService5.OpenProjectRequestSchema,
|
|
1691
|
+
async execute(ctx, input) {
|
|
1692
|
+
return await ctx.client.project.openProject(input);
|
|
1693
|
+
}
|
|
1694
|
+
});
|
|
1695
|
+
registerSkill(OpenProjectSkill);
|
|
1696
|
+
|
|
1697
|
+
// generated/project/save-project.ts
|
|
1698
|
+
import { HqServicesV1ProjectService as HqServicesV1ProjectService6 } from "@hqedge/connect";
|
|
1699
|
+
var SaveProjectSkill = defineSkill({
|
|
1700
|
+
id: "project-save-project",
|
|
1701
|
+
title: "Save Project",
|
|
1702
|
+
description: "Persists an opened project.",
|
|
1703
|
+
domain: "project",
|
|
1704
|
+
service: "ProjectService",
|
|
1705
|
+
method: "SaveProject",
|
|
1706
|
+
isStreaming: false,
|
|
1707
|
+
inputSchema: HqServicesV1ProjectService6.SaveProjectRequestSchema,
|
|
1708
|
+
async execute(ctx, input) {
|
|
1709
|
+
return await ctx.client.project.saveProject(input);
|
|
1710
|
+
}
|
|
1711
|
+
});
|
|
1712
|
+
registerSkill(SaveProjectSkill);
|
|
1713
|
+
|
|
1714
|
+
// generated/runtime/execute-commands.ts
|
|
1715
|
+
import { HqRuntimeV1Command } from "@hqedge/connect";
|
|
1716
|
+
var ExecuteCommandsSkill = defineSkill({
|
|
1717
|
+
id: "runtime-execute-commands",
|
|
1718
|
+
title: "Execute Commands",
|
|
1719
|
+
description: "Execute Commands via RuntimeService.ExecuteCommands",
|
|
1720
|
+
domain: "runtime",
|
|
1721
|
+
service: "RuntimeService",
|
|
1722
|
+
method: "ExecuteCommands",
|
|
1723
|
+
isStreaming: false,
|
|
1724
|
+
inputSchema: HqRuntimeV1Command.ExecuteCommandsRequestSchema,
|
|
1725
|
+
async execute(ctx, input) {
|
|
1726
|
+
return await ctx.client.runtime.executeCommands(input);
|
|
1727
|
+
}
|
|
1728
|
+
});
|
|
1729
|
+
registerSkill(ExecuteCommandsSkill);
|
|
1730
|
+
|
|
1731
|
+
// generated/runtime/validate-commands.ts
|
|
1732
|
+
import { HqRuntimeV1Validator } from "@hqedge/connect";
|
|
1733
|
+
var ValidateCommandsSkill = defineSkill({
|
|
1734
|
+
id: "runtime-validate-commands",
|
|
1735
|
+
title: "Validate Commands",
|
|
1736
|
+
description: "Validate Commands via RuntimeService.ValidateCommands",
|
|
1737
|
+
domain: "runtime",
|
|
1738
|
+
service: "RuntimeService",
|
|
1739
|
+
method: "ValidateCommands",
|
|
1740
|
+
isStreaming: false,
|
|
1741
|
+
inputSchema: HqRuntimeV1Validator.ValidationRequestSchema,
|
|
1742
|
+
async execute(ctx, input) {
|
|
1743
|
+
return await ctx.client.runtime.validateCommands(input);
|
|
1744
|
+
}
|
|
1745
|
+
});
|
|
1746
|
+
registerSkill(ValidateCommandsSkill);
|
|
1747
|
+
|
|
1748
|
+
// generated/selection/clear-selection.ts
|
|
1749
|
+
import { HqServicesV1SelectionService } from "@hqedge/connect";
|
|
1750
|
+
var ClearSelectionSkill = defineSkill({
|
|
1751
|
+
id: "selection-clear-selection",
|
|
1752
|
+
title: "Clear Selection",
|
|
1753
|
+
description: "Clear Selection via SelectionService.ClearSelection",
|
|
1754
|
+
domain: "selection",
|
|
1755
|
+
service: "SelectionService",
|
|
1756
|
+
method: "ClearSelection",
|
|
1757
|
+
isStreaming: false,
|
|
1758
|
+
inputSchema: HqServicesV1SelectionService.ClearSelectionRequestSchema,
|
|
1759
|
+
async execute(ctx, input) {
|
|
1760
|
+
return await ctx.client.selection.clearSelection(input);
|
|
1761
|
+
}
|
|
1762
|
+
});
|
|
1763
|
+
registerSkill(ClearSelectionSkill);
|
|
1764
|
+
|
|
1765
|
+
// generated/selection/get-selection.ts
|
|
1766
|
+
import { HqServicesV1SelectionService as HqServicesV1SelectionService2 } from "@hqedge/connect";
|
|
1767
|
+
var GetSelectionSkill = defineSkill({
|
|
1768
|
+
id: "selection-get-selection",
|
|
1769
|
+
title: "Get Selection",
|
|
1770
|
+
description: "Get Selection via SelectionService.GetSelection",
|
|
1771
|
+
domain: "selection",
|
|
1772
|
+
service: "SelectionService",
|
|
1773
|
+
method: "GetSelection",
|
|
1774
|
+
isStreaming: false,
|
|
1775
|
+
inputSchema: HqServicesV1SelectionService2.GetSelectionRequestSchema,
|
|
1776
|
+
async execute(ctx, input) {
|
|
1777
|
+
return await ctx.client.selection.getSelection(input);
|
|
1778
|
+
}
|
|
1779
|
+
});
|
|
1780
|
+
registerSkill(GetSelectionSkill);
|
|
1781
|
+
|
|
1782
|
+
// generated/selection/set-selection.ts
|
|
1783
|
+
import { HqServicesV1SelectionService as HqServicesV1SelectionService3 } from "@hqedge/connect";
|
|
1784
|
+
var SetSelectionSkill = defineSkill({
|
|
1785
|
+
id: "selection-set-selection",
|
|
1786
|
+
title: "Set Selection",
|
|
1787
|
+
description: "Set Selection via SelectionService.SetSelection",
|
|
1788
|
+
domain: "selection",
|
|
1789
|
+
service: "SelectionService",
|
|
1790
|
+
method: "SetSelection",
|
|
1791
|
+
isStreaming: false,
|
|
1792
|
+
inputSchema: HqServicesV1SelectionService3.SetSelectionRequestSchema,
|
|
1793
|
+
async execute(ctx, input) {
|
|
1794
|
+
return await ctx.client.selection.setSelection(input);
|
|
1795
|
+
}
|
|
1796
|
+
});
|
|
1797
|
+
registerSkill(SetSelectionSkill);
|
|
1798
|
+
|
|
1799
|
+
// generated/transaction/commit.ts
|
|
1800
|
+
import { HqRuntimeV1Transaction } from "@hqedge/connect";
|
|
1801
|
+
var CommitSkill = defineSkill({
|
|
1802
|
+
id: "transaction-commit",
|
|
1803
|
+
title: "Commit",
|
|
1804
|
+
description: "Commit via TransactionService.Commit",
|
|
1805
|
+
domain: "transaction",
|
|
1806
|
+
service: "TransactionService",
|
|
1807
|
+
method: "Commit",
|
|
1808
|
+
isStreaming: false,
|
|
1809
|
+
inputSchema: HqRuntimeV1Transaction.TransactionCommitRequestSchema,
|
|
1810
|
+
async execute(ctx, input) {
|
|
1811
|
+
return await ctx.client.transaction.commit(input);
|
|
1812
|
+
}
|
|
1813
|
+
});
|
|
1814
|
+
registerSkill(CommitSkill);
|
|
1815
|
+
|
|
1816
|
+
// generated/transaction/open.ts
|
|
1817
|
+
import { HqRuntimeV1Transaction as HqRuntimeV1Transaction2 } from "@hqedge/connect";
|
|
1818
|
+
var OpenSkill = defineSkill({
|
|
1819
|
+
id: "transaction-open",
|
|
1820
|
+
title: "Open",
|
|
1821
|
+
description: "Open via TransactionService.Open",
|
|
1822
|
+
domain: "transaction",
|
|
1823
|
+
service: "TransactionService",
|
|
1824
|
+
method: "Open",
|
|
1825
|
+
isStreaming: false,
|
|
1826
|
+
inputSchema: HqRuntimeV1Transaction2.TransactionOpenRequestSchema,
|
|
1827
|
+
async execute(ctx, input) {
|
|
1828
|
+
return await ctx.client.transaction.open(input);
|
|
1829
|
+
}
|
|
1830
|
+
});
|
|
1831
|
+
registerSkill(OpenSkill);
|
|
1832
|
+
|
|
1833
|
+
// generated/transaction/redo.ts
|
|
1834
|
+
import { HqRuntimeV1Undo } from "@hqedge/connect";
|
|
1835
|
+
var RedoSkill = defineSkill({
|
|
1836
|
+
id: "transaction-redo",
|
|
1837
|
+
title: "Redo",
|
|
1838
|
+
description: "Redo via TransactionService.Redo",
|
|
1839
|
+
domain: "transaction",
|
|
1840
|
+
service: "TransactionService",
|
|
1841
|
+
method: "Redo",
|
|
1842
|
+
isStreaming: false,
|
|
1843
|
+
inputSchema: HqRuntimeV1Undo.RedoRequestSchema,
|
|
1844
|
+
async execute(ctx, input) {
|
|
1845
|
+
return await ctx.client.transaction.redo(input);
|
|
1846
|
+
}
|
|
1847
|
+
});
|
|
1848
|
+
registerSkill(RedoSkill);
|
|
1849
|
+
|
|
1850
|
+
// generated/transaction/rollback.ts
|
|
1851
|
+
import { HqRuntimeV1Transaction as HqRuntimeV1Transaction3 } from "@hqedge/connect";
|
|
1852
|
+
var RollbackSkill = defineSkill({
|
|
1853
|
+
id: "transaction-rollback",
|
|
1854
|
+
title: "Rollback",
|
|
1855
|
+
description: "Rollback via TransactionService.Rollback",
|
|
1856
|
+
domain: "transaction",
|
|
1857
|
+
service: "TransactionService",
|
|
1858
|
+
method: "Rollback",
|
|
1859
|
+
isStreaming: false,
|
|
1860
|
+
inputSchema: HqRuntimeV1Transaction3.TransactionDiscardRequestSchema,
|
|
1861
|
+
async execute(ctx, input) {
|
|
1862
|
+
return await ctx.client.transaction.rollback(input);
|
|
1863
|
+
}
|
|
1864
|
+
});
|
|
1865
|
+
registerSkill(RollbackSkill);
|
|
1866
|
+
|
|
1867
|
+
// generated/transaction/undo.ts
|
|
1868
|
+
import { HqRuntimeV1Undo as HqRuntimeV1Undo2 } from "@hqedge/connect";
|
|
1869
|
+
var UndoSkill = defineSkill({
|
|
1870
|
+
id: "transaction-undo",
|
|
1871
|
+
title: "Undo",
|
|
1872
|
+
description: "Undo via TransactionService.Undo",
|
|
1873
|
+
domain: "transaction",
|
|
1874
|
+
service: "TransactionService",
|
|
1875
|
+
method: "Undo",
|
|
1876
|
+
isStreaming: false,
|
|
1877
|
+
inputSchema: HqRuntimeV1Undo2.UndoRequestSchema,
|
|
1878
|
+
async execute(ctx, input) {
|
|
1879
|
+
return await ctx.client.transaction.undo(input);
|
|
1880
|
+
}
|
|
1881
|
+
});
|
|
1882
|
+
registerSkill(UndoSkill);
|
|
1883
|
+
|
|
1884
|
+
// generated/index.ts
|
|
1885
|
+
var SKILLS = {
|
|
1886
|
+
"ai-execute-prompt": ExecutePromptSkill,
|
|
1887
|
+
"bom-get-bom": GetBomSkill,
|
|
1888
|
+
"canvas-align-objects": AlignObjectsSkill,
|
|
1889
|
+
"canvas-can-paste": CanPasteSkill,
|
|
1890
|
+
"canvas-clear-all-sel": ClearAllSelSkill,
|
|
1891
|
+
"canvas-copy-selected": CopySelectedSkill,
|
|
1892
|
+
"canvas-delete-selected": DeleteSelectedSkill,
|
|
1893
|
+
"canvas-distribute-objects": DistributeObjectsSkill,
|
|
1894
|
+
"canvas-get-align-type": GetAlignTypeSkill,
|
|
1895
|
+
"canvas-get-selected-object-json": GetSelectedObjectJsonSkill,
|
|
1896
|
+
"canvas-get-selected-objects-json": GetSelectedObjectsJsonSkill,
|
|
1897
|
+
"canvas-mirror-objects": MirrorObjectsSkill,
|
|
1898
|
+
"canvas-move-selected-objs": MoveSelectedObjsSkill,
|
|
1899
|
+
"canvas-on-canvas-escape": OnCanvasEscapeSkill,
|
|
1900
|
+
"canvas-pan-canvas": PanCanvasSkill,
|
|
1901
|
+
"canvas-paste-selected": PasteSelectedSkill,
|
|
1902
|
+
"canvas-rotate-objects": RotateObjectsSkill,
|
|
1903
|
+
"canvas-screen-to-canvas-local": ScreenToCanvasLocalSkill,
|
|
1904
|
+
"canvas-select-all": SelectAllSkill,
|
|
1905
|
+
"canvas-select-object-at": SelectObjectAtSkill,
|
|
1906
|
+
"canvas-set-align-type": SetAlignTypeSkill,
|
|
1907
|
+
"canvas-set-page-size": SetPageSizeSkill,
|
|
1908
|
+
"canvas-set-page-size-rect": SetPageSizeRectSkill,
|
|
1909
|
+
"canvas-zoom-all": ZoomAllSkill,
|
|
1910
|
+
"canvas-zoom-area-by-double-box": ZoomAreaByDoubleBoxSkill,
|
|
1911
|
+
"canvas-zoom-area-by-int-box": ZoomAreaByIntBoxSkill,
|
|
1912
|
+
"canvas-zoom-area-by-points": ZoomAreaByPointsSkill,
|
|
1913
|
+
"canvas-zoom-in": ZoomInSkill,
|
|
1914
|
+
"canvas-zoom-out": ZoomOutSkill,
|
|
1915
|
+
"canvas-zoom-selected": ZoomSelectedSkill,
|
|
1916
|
+
"capability-get-capabilities": GetCapabilitiesSkill,
|
|
1917
|
+
"context-get-context": GetContextSkill,
|
|
1918
|
+
"discovery-get-server-info": GetServerInfoSkill,
|
|
1919
|
+
"erc-clear-all-findings": ClearAllFindingsSkill,
|
|
1920
|
+
"erc-clear-findings": ClearFindingsSkill,
|
|
1921
|
+
"erc-run-checks": RunChecksSkill,
|
|
1922
|
+
"erc-set-erc-report-webview-visibility": SetErcReportWebviewVisibilitySkill,
|
|
1923
|
+
"erc-set-report-webview-state": SetReportWebviewStateSkill,
|
|
1924
|
+
"erc-show-findings": ShowFindingsSkill,
|
|
1925
|
+
"event-subscribe": SubscribeSkill,
|
|
1926
|
+
"export-export-bom": ExportBOMSkill,
|
|
1927
|
+
"export-export-target": ExportTargetSkill,
|
|
1928
|
+
"graph-get-connectivity": GetConnectivitySkill,
|
|
1929
|
+
"graph-query-graph": QueryGraphSkill,
|
|
1930
|
+
"import-import-design": ImportDesignSkill,
|
|
1931
|
+
"kernel-get-entity": GetEntitySkill,
|
|
1932
|
+
"kernel-get-snapshot": GetSnapshotSkill,
|
|
1933
|
+
"obj-place-add-bus-segment": AddBusSegmentSkill,
|
|
1934
|
+
"obj-place-add-ellipse": AddEllipseSkill,
|
|
1935
|
+
"obj-place-add-free-line-segment": AddFreeLineSegmentSkill,
|
|
1936
|
+
"obj-place-add-line": AddLineSkill,
|
|
1937
|
+
"obj-place-add-rect": AddRectSkill,
|
|
1938
|
+
"obj-place-add-wire-segment": AddWireSegmentSkill,
|
|
1939
|
+
"obj-place-cancel-bus-draw": CancelBusDrawSkill,
|
|
1940
|
+
"obj-place-cancel-ellipse-arc-draw": CancelEllipseArcDrawSkill,
|
|
1941
|
+
"obj-place-cancel-ellipse-draw": CancelEllipseDrawSkill,
|
|
1942
|
+
"obj-place-cancel-free-line-draw": CancelFreeLineDrawSkill,
|
|
1943
|
+
"obj-place-cancel-line-draw": CancelLineDrawSkill,
|
|
1944
|
+
"obj-place-cancel-rect-draw": CancelRectDrawSkill,
|
|
1945
|
+
"obj-place-cancel-wire-draw": CancelWireDrawSkill,
|
|
1946
|
+
"obj-place-handle-bus-draw-click": HandleBusDrawClickSkill,
|
|
1947
|
+
"obj-place-handle-ellipse-arc-draw-click": HandleEllipseArcDrawClickSkill,
|
|
1948
|
+
"obj-place-handle-ellipse-draw-click": HandleEllipseDrawClickSkill,
|
|
1949
|
+
"obj-place-handle-free-line-draw-click": HandleFreeLineDrawClickSkill,
|
|
1950
|
+
"obj-place-handle-image-draw-click": HandleImageDrawClickSkill,
|
|
1951
|
+
"obj-place-handle-line-draw-click": HandleLineDrawClickSkill,
|
|
1952
|
+
"obj-place-handle-net-alias-draw-click": HandleNetAliasDrawClickSkill,
|
|
1953
|
+
"obj-place-handle-rect-draw-click": HandleRectDrawClickSkill,
|
|
1954
|
+
"obj-place-handle-table-draw-click": HandleTableDrawClickSkill,
|
|
1955
|
+
"obj-place-handle-text-draw-click": HandleTextDrawClickSkill,
|
|
1956
|
+
"obj-place-handle-wire-draw-click": HandleWireDrawClickSkill,
|
|
1957
|
+
"obj-place-place-bus": PlaceBusSkill,
|
|
1958
|
+
"obj-place-place-ellipse": PlaceEllipseSkill,
|
|
1959
|
+
"obj-place-place-ellipse-arc": PlaceEllipseArcSkill,
|
|
1960
|
+
"obj-place-place-ellipse-arc-from-virtual": PlaceEllipseArcFromVirtualSkill,
|
|
1961
|
+
"obj-place-place-free-line": PlaceFreeLineSkill,
|
|
1962
|
+
"obj-place-place-image": PlaceImageSkill,
|
|
1963
|
+
"obj-place-place-line": PlaceLineSkill,
|
|
1964
|
+
"obj-place-place-net-alias": PlaceNetAliasSkill,
|
|
1965
|
+
"obj-place-place-rect": PlaceRectSkill,
|
|
1966
|
+
"obj-place-place-table": PlaceTableSkill,
|
|
1967
|
+
"obj-place-place-table-from-virtual": PlaceTableFromVirtualSkill,
|
|
1968
|
+
"obj-place-place-text": PlaceTextSkill,
|
|
1969
|
+
"obj-place-place-text-from-virtual": PlaceTextFromVirtualSkill,
|
|
1970
|
+
"obj-place-place-wire": PlaceWireSkill,
|
|
1971
|
+
"placement-cancel-block-draw": CancelBlockDrawSkill,
|
|
1972
|
+
"placement-clear-net-alias-attach-obj": ClearNetAliasAttachObjSkill,
|
|
1973
|
+
"placement-handle-block-draw-click": HandleBlockDrawClickSkill,
|
|
1974
|
+
"placement-handle-part-draw-click": HandlePartDrawClickSkill,
|
|
1975
|
+
"placement-handle-symbol-draw-click": HandleSymbolDrawClickSkill,
|
|
1976
|
+
"placement-place-block": PlaceBlockSkill,
|
|
1977
|
+
"placement-place-part": PlacePartSkill,
|
|
1978
|
+
"placement-place-symbol": PlaceSymbolSkill,
|
|
1979
|
+
"placement-set-net-alias-attach-obj": SetNetAliasAttachObjSkill,
|
|
1980
|
+
"project-close-project": CloseProjectSkill,
|
|
1981
|
+
"project-get-active-project": GetActiveProjectSkill,
|
|
1982
|
+
"project-get-project": GetProjectSkill,
|
|
1983
|
+
"project-list-open-projects": ListOpenProjectsSkill,
|
|
1984
|
+
"project-open-project": OpenProjectSkill,
|
|
1985
|
+
"project-save-project": SaveProjectSkill,
|
|
1986
|
+
"runtime-execute-commands": ExecuteCommandsSkill,
|
|
1987
|
+
"runtime-validate-commands": ValidateCommandsSkill,
|
|
1988
|
+
"selection-clear-selection": ClearSelectionSkill,
|
|
1989
|
+
"selection-get-selection": GetSelectionSkill,
|
|
1990
|
+
"selection-set-selection": SetSelectionSkill,
|
|
1991
|
+
"transaction-commit": CommitSkill,
|
|
1992
|
+
"transaction-open": OpenSkill,
|
|
1993
|
+
"transaction-redo": RedoSkill,
|
|
1994
|
+
"transaction-rollback": RollbackSkill,
|
|
1995
|
+
"transaction-undo": UndoSkill
|
|
1996
|
+
};
|
|
1997
|
+
function listSkills() {
|
|
1998
|
+
return Object.values(SKILLS).sort((a, b) => a.id.localeCompare(b.id));
|
|
1999
|
+
}
|
|
2000
|
+
function getSkill(id) {
|
|
2001
|
+
return SKILLS[id];
|
|
2002
|
+
}
|
|
2003
|
+
export {
|
|
2004
|
+
SKILLS,
|
|
2005
|
+
getSkill,
|
|
2006
|
+
listSkills
|
|
2007
|
+
};
|
|
2008
|
+
//# sourceMappingURL=index.js.map
|