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