@requence/task 1.0.0-alpha.32 → 1.0.0-alpha.35
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/CHANGELOG.md +18 -0
- package/build/chunk-y4v98p2s.js.map +1 -1
- package/build/cli.js +2 -2
- package/build/cli.js.map +3 -3
- package/build/index.js +14 -2
- package/build/index.js.map +5 -5
- package/build/types/helpers/src/index.d.ts +1 -0
- package/build/types/helpers/src/index.d.ts.map +1 -1
- package/build/types/helpers/src/jsonschema/mapSchema.d.ts.map +1 -1
- package/build/types/helpers/src/jsonschema/types.d.ts +1 -0
- package/build/types/helpers/src/jsonschema/types.d.ts.map +1 -1
- package/build/types/helpers/src/jsonschema/validate.d.ts.map +1 -1
- package/build/types/helpers/src/jsonschema/zod.d.ts +6 -2
- package/build/types/helpers/src/jsonschema/zod.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/NodeTree.d.ts +71 -573
- package/build/types/helpers/src/protocol/NodeTree.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/command.d.ts +58 -414
- package/build/types/helpers/src/protocol/command.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/helpers.d.ts +2 -0
- package/build/types/helpers/src/protocol/helpers.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/index.d.ts +1 -0
- package/build/types/helpers/src/protocol/index.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/nodeType.d.ts +45 -304
- package/build/types/helpers/src/protocol/nodeType.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/taskOptions.d.ts +4 -4
- package/build/types/helpers/src/protocol/taskOptions.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/templateNodeTypes.d.ts +235 -0
- package/build/types/helpers/src/protocol/templateNodeTypes.d.ts.map +1 -0
- package/build/types/helpers/src/protocol/treeNodes.d.ts +197 -889
- package/build/types/helpers/src/protocol/treeNodes.d.ts.map +1 -1
- package/build/types/helpers/src/protocol/update.d.ts +3 -1
- package/build/types/helpers/src/protocol/update.d.ts.map +1 -1
- package/build/types/helpers/src/utils/types.d.ts +4 -0
- package/build/types/helpers/src/utils/types.d.ts.map +1 -0
- package/build/types/task/src/createTask.d.ts.map +1 -1
- package/build/types/task/src/types.d.ts +3 -5
- package/build/types/task/src/types.d.ts.map +1 -1
- package/build/types/task/src/watchTasks.d.ts +3 -0
- package/build/types/task/src/watchTasks.d.ts.map +1 -1
- package/package.json +3 -4
|
@@ -18,11 +18,11 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
18
18
|
options: z.ZodObject<{
|
|
19
19
|
maxExecutions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
20
20
|
compliance: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
21
|
-
|
|
21
|
+
MCP_TOOL: "MCP_TOOL";
|
|
22
22
|
}>>>;
|
|
23
23
|
mode: z.ZodDefault<z.ZodEnum<{
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
LINEAR: "LINEAR";
|
|
25
|
+
CONTINUOUS: "CONTINUOUS";
|
|
26
26
|
}>>;
|
|
27
27
|
priority: z.ZodDefault<z.ZodInt>;
|
|
28
28
|
uploadUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -41,23 +41,7 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
41
41
|
id: string;
|
|
42
42
|
type: "entry";
|
|
43
43
|
inputSchema: import("json-schema").JSONSchema7;
|
|
44
|
-
outputs: {
|
|
45
|
-
name: string | null;
|
|
46
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
47
|
-
types?: {
|
|
48
|
-
input: string;
|
|
49
|
-
output: string;
|
|
50
|
-
} | undefined;
|
|
51
|
-
}[];
|
|
52
|
-
position: {
|
|
53
|
-
x: number;
|
|
54
|
-
y: number;
|
|
55
|
-
};
|
|
56
44
|
alias?: string | undefined;
|
|
57
|
-
size?: {
|
|
58
|
-
width?: number | undefined;
|
|
59
|
-
height?: number | undefined;
|
|
60
|
-
} | undefined;
|
|
61
45
|
} | {
|
|
62
46
|
id: string;
|
|
63
47
|
type: "service";
|
|
@@ -65,35 +49,21 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
65
49
|
type: "object";
|
|
66
50
|
} & import("json-schema").JSONSchema7) | {
|
|
67
51
|
type: "null";
|
|
68
|
-
}
|
|
52
|
+
} | ({
|
|
53
|
+
$ref: string;
|
|
54
|
+
} & import("json-schema").JSONSchema7);
|
|
69
55
|
name: string;
|
|
70
56
|
version: string;
|
|
71
57
|
configurationSchema: import("json-schema").JSONSchema7;
|
|
72
58
|
outputs: {
|
|
73
59
|
name: string | null;
|
|
74
60
|
schema: import("json-schema").JSONSchema7 | null;
|
|
75
|
-
types?: {
|
|
76
|
-
input: string;
|
|
77
|
-
output: string;
|
|
78
|
-
} | undefined;
|
|
79
61
|
}[];
|
|
80
|
-
position: {
|
|
81
|
-
x: number;
|
|
82
|
-
y: number;
|
|
83
|
-
};
|
|
84
62
|
alias?: string | undefined;
|
|
85
|
-
inputTypes?: {
|
|
86
|
-
input: string;
|
|
87
|
-
output: string;
|
|
88
|
-
} | undefined;
|
|
89
63
|
configuration?: any;
|
|
90
64
|
ttl?: number | undefined;
|
|
91
65
|
retry?: number | undefined;
|
|
92
66
|
retryDelay?: number | undefined;
|
|
93
|
-
size?: {
|
|
94
|
-
width?: number | undefined;
|
|
95
|
-
height?: number | undefined;
|
|
96
|
-
} | undefined;
|
|
97
67
|
} | {
|
|
98
68
|
id: string;
|
|
99
69
|
type: "logic";
|
|
@@ -104,91 +74,37 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
104
74
|
outputs: {
|
|
105
75
|
name: string | null;
|
|
106
76
|
schema: import("json-schema").JSONSchema7 | null;
|
|
107
|
-
types?: {
|
|
108
|
-
input: string;
|
|
109
|
-
output: string;
|
|
110
|
-
} | undefined;
|
|
111
77
|
}[];
|
|
112
|
-
position: {
|
|
113
|
-
x: number;
|
|
114
|
-
y: number;
|
|
115
|
-
};
|
|
116
78
|
alias?: string | undefined;
|
|
117
|
-
outputNames?: string[] | undefined;
|
|
118
|
-
size?: {
|
|
119
|
-
width?: number | undefined;
|
|
120
|
-
height?: number | undefined;
|
|
121
|
-
} | undefined;
|
|
122
79
|
} | {
|
|
123
80
|
id: string;
|
|
124
81
|
type: "or";
|
|
125
|
-
outputs: {
|
|
126
|
-
name: string | null;
|
|
127
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
128
|
-
types?: {
|
|
129
|
-
input: string;
|
|
130
|
-
output: string;
|
|
131
|
-
} | undefined;
|
|
132
|
-
}[];
|
|
133
|
-
position: {
|
|
134
|
-
x: number;
|
|
135
|
-
y: number;
|
|
136
|
-
};
|
|
137
82
|
alias?: string | undefined;
|
|
138
|
-
size?: {
|
|
139
|
-
width?: number | undefined;
|
|
140
|
-
height?: number | undefined;
|
|
141
|
-
} | undefined;
|
|
142
83
|
} | {
|
|
143
84
|
id: string;
|
|
144
85
|
type: "reference";
|
|
145
86
|
reference: string;
|
|
87
|
+
inputSchema: ({
|
|
88
|
+
type: "object";
|
|
89
|
+
} & import("json-schema").JSONSchema7) | {
|
|
90
|
+
type: "null";
|
|
91
|
+
} | ({
|
|
92
|
+
$ref: string;
|
|
93
|
+
} & import("json-schema").JSONSchema7);
|
|
146
94
|
outputs: {
|
|
147
95
|
name: string | null;
|
|
148
96
|
schema: import("json-schema").JSONSchema7 | null;
|
|
149
|
-
types?: {
|
|
150
|
-
input: string;
|
|
151
|
-
output: string;
|
|
152
|
-
} | undefined;
|
|
153
97
|
}[];
|
|
154
|
-
position: {
|
|
155
|
-
x: number;
|
|
156
|
-
y: number;
|
|
157
|
-
};
|
|
158
98
|
alias?: string | undefined;
|
|
159
|
-
inputTypes?: {
|
|
160
|
-
input: string;
|
|
161
|
-
output: string;
|
|
162
|
-
} | undefined;
|
|
163
|
-
size?: {
|
|
164
|
-
width?: number | undefined;
|
|
165
|
-
height?: number | undefined;
|
|
166
|
-
} | undefined;
|
|
167
99
|
} | {
|
|
168
100
|
id: string;
|
|
169
101
|
type: "exit";
|
|
170
|
-
position: {
|
|
171
|
-
x: number;
|
|
172
|
-
y: number;
|
|
173
|
-
};
|
|
174
102
|
alias?: string | undefined;
|
|
175
|
-
size?: {
|
|
176
|
-
width?: number | undefined;
|
|
177
|
-
height?: number | undefined;
|
|
178
|
-
} | undefined;
|
|
179
103
|
} | {
|
|
180
104
|
id: string;
|
|
181
105
|
type: "comment";
|
|
182
106
|
text: string;
|
|
183
|
-
position: {
|
|
184
|
-
x: number;
|
|
185
|
-
y: number;
|
|
186
|
-
};
|
|
187
107
|
alias?: string | undefined;
|
|
188
|
-
size?: {
|
|
189
|
-
width?: number | undefined;
|
|
190
|
-
height?: number | undefined;
|
|
191
|
-
} | undefined;
|
|
192
108
|
})[];
|
|
193
109
|
edges: {
|
|
194
110
|
id: string;
|
|
@@ -201,40 +117,15 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
201
117
|
id: string;
|
|
202
118
|
options: {
|
|
203
119
|
maxExecutions: number;
|
|
204
|
-
compliance: "
|
|
205
|
-
mode: "
|
|
206
|
-
priority: number;
|
|
207
|
-
uploadUrl?: string | undefined;
|
|
208
|
-
streamUrl?: string | undefined;
|
|
209
|
-
referencedBy?: {
|
|
210
|
-
rootTaskId: string;
|
|
211
|
-
taskId: string;
|
|
212
|
-
nodeId: string;
|
|
213
|
-
messageId: string;
|
|
214
|
-
} | undefined;
|
|
120
|
+
compliance: "MCP_TOOL" | null;
|
|
121
|
+
mode: "LINEAR" | "CONTINUOUS";
|
|
215
122
|
};
|
|
216
123
|
tree: {
|
|
217
124
|
nodes: ({
|
|
218
125
|
id: string;
|
|
219
126
|
type: "entry";
|
|
220
127
|
inputSchema: import("json-schema").JSONSchema7;
|
|
221
|
-
outputs: {
|
|
222
|
-
name: string | null;
|
|
223
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
224
|
-
types?: {
|
|
225
|
-
input: string;
|
|
226
|
-
output: string;
|
|
227
|
-
} | undefined;
|
|
228
|
-
}[];
|
|
229
|
-
position: {
|
|
230
|
-
x: number;
|
|
231
|
-
y: number;
|
|
232
|
-
};
|
|
233
128
|
alias?: string | undefined;
|
|
234
|
-
size?: {
|
|
235
|
-
width?: number | undefined;
|
|
236
|
-
height?: number | undefined;
|
|
237
|
-
} | undefined;
|
|
238
129
|
} | {
|
|
239
130
|
id: string;
|
|
240
131
|
type: "service";
|
|
@@ -242,35 +133,21 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
242
133
|
type: "object";
|
|
243
134
|
} & import("json-schema").JSONSchema7) | {
|
|
244
135
|
type: "null";
|
|
245
|
-
}
|
|
136
|
+
} | ({
|
|
137
|
+
$ref: string;
|
|
138
|
+
} & import("json-schema").JSONSchema7);
|
|
246
139
|
name: string;
|
|
247
140
|
version: string;
|
|
248
141
|
configurationSchema: import("json-schema").JSONSchema7;
|
|
249
142
|
outputs: {
|
|
250
143
|
name: string | null;
|
|
251
144
|
schema: import("json-schema").JSONSchema7 | null;
|
|
252
|
-
types?: {
|
|
253
|
-
input: string;
|
|
254
|
-
output: string;
|
|
255
|
-
} | undefined;
|
|
256
145
|
}[];
|
|
257
|
-
position: {
|
|
258
|
-
x: number;
|
|
259
|
-
y: number;
|
|
260
|
-
};
|
|
261
146
|
alias?: string | undefined;
|
|
262
|
-
inputTypes?: {
|
|
263
|
-
input: string;
|
|
264
|
-
output: string;
|
|
265
|
-
} | undefined;
|
|
266
147
|
configuration?: any;
|
|
267
148
|
ttl?: number | undefined;
|
|
268
149
|
retry?: number | undefined;
|
|
269
150
|
retryDelay?: number | undefined;
|
|
270
|
-
size?: {
|
|
271
|
-
width?: number | undefined;
|
|
272
|
-
height?: number | undefined;
|
|
273
|
-
} | undefined;
|
|
274
151
|
} | {
|
|
275
152
|
id: string;
|
|
276
153
|
type: "logic";
|
|
@@ -281,91 +158,37 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
281
158
|
outputs: {
|
|
282
159
|
name: string | null;
|
|
283
160
|
schema: import("json-schema").JSONSchema7 | null;
|
|
284
|
-
types?: {
|
|
285
|
-
input: string;
|
|
286
|
-
output: string;
|
|
287
|
-
} | undefined;
|
|
288
161
|
}[];
|
|
289
|
-
position: {
|
|
290
|
-
x: number;
|
|
291
|
-
y: number;
|
|
292
|
-
};
|
|
293
162
|
alias?: string | undefined;
|
|
294
|
-
outputNames?: string[] | undefined;
|
|
295
|
-
size?: {
|
|
296
|
-
width?: number | undefined;
|
|
297
|
-
height?: number | undefined;
|
|
298
|
-
} | undefined;
|
|
299
163
|
} | {
|
|
300
164
|
id: string;
|
|
301
165
|
type: "or";
|
|
302
|
-
outputs: {
|
|
303
|
-
name: string | null;
|
|
304
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
305
|
-
types?: {
|
|
306
|
-
input: string;
|
|
307
|
-
output: string;
|
|
308
|
-
} | undefined;
|
|
309
|
-
}[];
|
|
310
|
-
position: {
|
|
311
|
-
x: number;
|
|
312
|
-
y: number;
|
|
313
|
-
};
|
|
314
166
|
alias?: string | undefined;
|
|
315
|
-
size?: {
|
|
316
|
-
width?: number | undefined;
|
|
317
|
-
height?: number | undefined;
|
|
318
|
-
} | undefined;
|
|
319
167
|
} | {
|
|
320
168
|
id: string;
|
|
321
169
|
type: "reference";
|
|
322
170
|
reference: string;
|
|
171
|
+
inputSchema: ({
|
|
172
|
+
type: "object";
|
|
173
|
+
} & import("json-schema").JSONSchema7) | {
|
|
174
|
+
type: "null";
|
|
175
|
+
} | ({
|
|
176
|
+
$ref: string;
|
|
177
|
+
} & import("json-schema").JSONSchema7);
|
|
323
178
|
outputs: {
|
|
324
179
|
name: string | null;
|
|
325
180
|
schema: import("json-schema").JSONSchema7 | null;
|
|
326
|
-
types?: {
|
|
327
|
-
input: string;
|
|
328
|
-
output: string;
|
|
329
|
-
} | undefined;
|
|
330
181
|
}[];
|
|
331
|
-
position: {
|
|
332
|
-
x: number;
|
|
333
|
-
y: number;
|
|
334
|
-
};
|
|
335
182
|
alias?: string | undefined;
|
|
336
|
-
inputTypes?: {
|
|
337
|
-
input: string;
|
|
338
|
-
output: string;
|
|
339
|
-
} | undefined;
|
|
340
|
-
size?: {
|
|
341
|
-
width?: number | undefined;
|
|
342
|
-
height?: number | undefined;
|
|
343
|
-
} | undefined;
|
|
344
183
|
} | {
|
|
345
184
|
id: string;
|
|
346
185
|
type: "exit";
|
|
347
|
-
position: {
|
|
348
|
-
x: number;
|
|
349
|
-
y: number;
|
|
350
|
-
};
|
|
351
186
|
alias?: string | undefined;
|
|
352
|
-
size?: {
|
|
353
|
-
width?: number | undefined;
|
|
354
|
-
height?: number | undefined;
|
|
355
|
-
} | undefined;
|
|
356
187
|
} | {
|
|
357
188
|
id: string;
|
|
358
189
|
type: "comment";
|
|
359
190
|
text: string;
|
|
360
|
-
position: {
|
|
361
|
-
x: number;
|
|
362
|
-
y: number;
|
|
363
|
-
};
|
|
364
191
|
alias?: string | undefined;
|
|
365
|
-
size?: {
|
|
366
|
-
width?: number | undefined;
|
|
367
|
-
height?: number | undefined;
|
|
368
|
-
} | undefined;
|
|
369
192
|
})[];
|
|
370
193
|
edges: {
|
|
371
194
|
id: string;
|
|
@@ -374,7 +197,6 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
374
197
|
target: string;
|
|
375
198
|
}[];
|
|
376
199
|
};
|
|
377
|
-
references: /*elided*/ any[];
|
|
378
200
|
}[] | undefined;
|
|
379
201
|
schemas?: Record<string, import("json-schema").JSONSchema7> | undefined;
|
|
380
202
|
};
|
|
@@ -382,8 +204,8 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
382
204
|
input: any;
|
|
383
205
|
options: {
|
|
384
206
|
maxExecutions: number;
|
|
385
|
-
compliance: "
|
|
386
|
-
mode: "
|
|
207
|
+
compliance: "MCP_TOOL" | null;
|
|
208
|
+
mode: "LINEAR" | "CONTINUOUS";
|
|
387
209
|
priority: number;
|
|
388
210
|
uploadUrl?: string | undefined;
|
|
389
211
|
streamUrl?: string | undefined;
|
|
@@ -407,8 +229,8 @@ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
|
|
|
407
229
|
input: any;
|
|
408
230
|
options: {
|
|
409
231
|
maxExecutions: number;
|
|
410
|
-
compliance: "
|
|
411
|
-
mode: "
|
|
232
|
+
compliance: "MCP_TOOL" | null;
|
|
233
|
+
mode: "LINEAR" | "CONTINUOUS";
|
|
412
234
|
priority: number;
|
|
413
235
|
uploadUrl?: string | undefined;
|
|
414
236
|
streamUrl?: string | undefined;
|
|
@@ -438,11 +260,11 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
438
260
|
options: z.ZodObject<{
|
|
439
261
|
maxExecutions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
440
262
|
compliance: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
441
|
-
|
|
263
|
+
MCP_TOOL: "MCP_TOOL";
|
|
442
264
|
}>>>;
|
|
443
265
|
mode: z.ZodDefault<z.ZodEnum<{
|
|
444
|
-
|
|
445
|
-
|
|
266
|
+
LINEAR: "LINEAR";
|
|
267
|
+
CONTINUOUS: "CONTINUOUS";
|
|
446
268
|
}>>;
|
|
447
269
|
priority: z.ZodDefault<z.ZodInt>;
|
|
448
270
|
uploadUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -461,23 +283,7 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
461
283
|
id: string;
|
|
462
284
|
type: "entry";
|
|
463
285
|
inputSchema: import("json-schema").JSONSchema7;
|
|
464
|
-
outputs: {
|
|
465
|
-
name: string | null;
|
|
466
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
467
|
-
types?: {
|
|
468
|
-
input: string;
|
|
469
|
-
output: string;
|
|
470
|
-
} | undefined;
|
|
471
|
-
}[];
|
|
472
|
-
position: {
|
|
473
|
-
x: number;
|
|
474
|
-
y: number;
|
|
475
|
-
};
|
|
476
286
|
alias?: string | undefined;
|
|
477
|
-
size?: {
|
|
478
|
-
width?: number | undefined;
|
|
479
|
-
height?: number | undefined;
|
|
480
|
-
} | undefined;
|
|
481
287
|
} | {
|
|
482
288
|
id: string;
|
|
483
289
|
type: "service";
|
|
@@ -485,35 +291,21 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
485
291
|
type: "object";
|
|
486
292
|
} & import("json-schema").JSONSchema7) | {
|
|
487
293
|
type: "null";
|
|
488
|
-
}
|
|
294
|
+
} | ({
|
|
295
|
+
$ref: string;
|
|
296
|
+
} & import("json-schema").JSONSchema7);
|
|
489
297
|
name: string;
|
|
490
298
|
version: string;
|
|
491
299
|
configurationSchema: import("json-schema").JSONSchema7;
|
|
492
300
|
outputs: {
|
|
493
301
|
name: string | null;
|
|
494
302
|
schema: import("json-schema").JSONSchema7 | null;
|
|
495
|
-
types?: {
|
|
496
|
-
input: string;
|
|
497
|
-
output: string;
|
|
498
|
-
} | undefined;
|
|
499
303
|
}[];
|
|
500
|
-
position: {
|
|
501
|
-
x: number;
|
|
502
|
-
y: number;
|
|
503
|
-
};
|
|
504
304
|
alias?: string | undefined;
|
|
505
|
-
inputTypes?: {
|
|
506
|
-
input: string;
|
|
507
|
-
output: string;
|
|
508
|
-
} | undefined;
|
|
509
305
|
configuration?: any;
|
|
510
306
|
ttl?: number | undefined;
|
|
511
307
|
retry?: number | undefined;
|
|
512
308
|
retryDelay?: number | undefined;
|
|
513
|
-
size?: {
|
|
514
|
-
width?: number | undefined;
|
|
515
|
-
height?: number | undefined;
|
|
516
|
-
} | undefined;
|
|
517
309
|
} | {
|
|
518
310
|
id: string;
|
|
519
311
|
type: "logic";
|
|
@@ -524,91 +316,37 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
524
316
|
outputs: {
|
|
525
317
|
name: string | null;
|
|
526
318
|
schema: import("json-schema").JSONSchema7 | null;
|
|
527
|
-
types?: {
|
|
528
|
-
input: string;
|
|
529
|
-
output: string;
|
|
530
|
-
} | undefined;
|
|
531
319
|
}[];
|
|
532
|
-
position: {
|
|
533
|
-
x: number;
|
|
534
|
-
y: number;
|
|
535
|
-
};
|
|
536
320
|
alias?: string | undefined;
|
|
537
|
-
outputNames?: string[] | undefined;
|
|
538
|
-
size?: {
|
|
539
|
-
width?: number | undefined;
|
|
540
|
-
height?: number | undefined;
|
|
541
|
-
} | undefined;
|
|
542
321
|
} | {
|
|
543
322
|
id: string;
|
|
544
323
|
type: "or";
|
|
545
|
-
outputs: {
|
|
546
|
-
name: string | null;
|
|
547
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
548
|
-
types?: {
|
|
549
|
-
input: string;
|
|
550
|
-
output: string;
|
|
551
|
-
} | undefined;
|
|
552
|
-
}[];
|
|
553
|
-
position: {
|
|
554
|
-
x: number;
|
|
555
|
-
y: number;
|
|
556
|
-
};
|
|
557
324
|
alias?: string | undefined;
|
|
558
|
-
size?: {
|
|
559
|
-
width?: number | undefined;
|
|
560
|
-
height?: number | undefined;
|
|
561
|
-
} | undefined;
|
|
562
325
|
} | {
|
|
563
326
|
id: string;
|
|
564
327
|
type: "reference";
|
|
565
328
|
reference: string;
|
|
329
|
+
inputSchema: ({
|
|
330
|
+
type: "object";
|
|
331
|
+
} & import("json-schema").JSONSchema7) | {
|
|
332
|
+
type: "null";
|
|
333
|
+
} | ({
|
|
334
|
+
$ref: string;
|
|
335
|
+
} & import("json-schema").JSONSchema7);
|
|
566
336
|
outputs: {
|
|
567
337
|
name: string | null;
|
|
568
338
|
schema: import("json-schema").JSONSchema7 | null;
|
|
569
|
-
types?: {
|
|
570
|
-
input: string;
|
|
571
|
-
output: string;
|
|
572
|
-
} | undefined;
|
|
573
339
|
}[];
|
|
574
|
-
position: {
|
|
575
|
-
x: number;
|
|
576
|
-
y: number;
|
|
577
|
-
};
|
|
578
340
|
alias?: string | undefined;
|
|
579
|
-
inputTypes?: {
|
|
580
|
-
input: string;
|
|
581
|
-
output: string;
|
|
582
|
-
} | undefined;
|
|
583
|
-
size?: {
|
|
584
|
-
width?: number | undefined;
|
|
585
|
-
height?: number | undefined;
|
|
586
|
-
} | undefined;
|
|
587
341
|
} | {
|
|
588
342
|
id: string;
|
|
589
343
|
type: "exit";
|
|
590
|
-
position: {
|
|
591
|
-
x: number;
|
|
592
|
-
y: number;
|
|
593
|
-
};
|
|
594
344
|
alias?: string | undefined;
|
|
595
|
-
size?: {
|
|
596
|
-
width?: number | undefined;
|
|
597
|
-
height?: number | undefined;
|
|
598
|
-
} | undefined;
|
|
599
345
|
} | {
|
|
600
346
|
id: string;
|
|
601
347
|
type: "comment";
|
|
602
348
|
text: string;
|
|
603
|
-
position: {
|
|
604
|
-
x: number;
|
|
605
|
-
y: number;
|
|
606
|
-
};
|
|
607
349
|
alias?: string | undefined;
|
|
608
|
-
size?: {
|
|
609
|
-
width?: number | undefined;
|
|
610
|
-
height?: number | undefined;
|
|
611
|
-
} | undefined;
|
|
612
350
|
})[];
|
|
613
351
|
edges: {
|
|
614
352
|
id: string;
|
|
@@ -621,40 +359,15 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
621
359
|
id: string;
|
|
622
360
|
options: {
|
|
623
361
|
maxExecutions: number;
|
|
624
|
-
compliance: "
|
|
625
|
-
mode: "
|
|
626
|
-
priority: number;
|
|
627
|
-
uploadUrl?: string | undefined;
|
|
628
|
-
streamUrl?: string | undefined;
|
|
629
|
-
referencedBy?: {
|
|
630
|
-
rootTaskId: string;
|
|
631
|
-
taskId: string;
|
|
632
|
-
nodeId: string;
|
|
633
|
-
messageId: string;
|
|
634
|
-
} | undefined;
|
|
362
|
+
compliance: "MCP_TOOL" | null;
|
|
363
|
+
mode: "LINEAR" | "CONTINUOUS";
|
|
635
364
|
};
|
|
636
365
|
tree: {
|
|
637
366
|
nodes: ({
|
|
638
367
|
id: string;
|
|
639
368
|
type: "entry";
|
|
640
369
|
inputSchema: import("json-schema").JSONSchema7;
|
|
641
|
-
outputs: {
|
|
642
|
-
name: string | null;
|
|
643
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
644
|
-
types?: {
|
|
645
|
-
input: string;
|
|
646
|
-
output: string;
|
|
647
|
-
} | undefined;
|
|
648
|
-
}[];
|
|
649
|
-
position: {
|
|
650
|
-
x: number;
|
|
651
|
-
y: number;
|
|
652
|
-
};
|
|
653
370
|
alias?: string | undefined;
|
|
654
|
-
size?: {
|
|
655
|
-
width?: number | undefined;
|
|
656
|
-
height?: number | undefined;
|
|
657
|
-
} | undefined;
|
|
658
371
|
} | {
|
|
659
372
|
id: string;
|
|
660
373
|
type: "service";
|
|
@@ -662,35 +375,21 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
662
375
|
type: "object";
|
|
663
376
|
} & import("json-schema").JSONSchema7) | {
|
|
664
377
|
type: "null";
|
|
665
|
-
}
|
|
378
|
+
} | ({
|
|
379
|
+
$ref: string;
|
|
380
|
+
} & import("json-schema").JSONSchema7);
|
|
666
381
|
name: string;
|
|
667
382
|
version: string;
|
|
668
383
|
configurationSchema: import("json-schema").JSONSchema7;
|
|
669
384
|
outputs: {
|
|
670
385
|
name: string | null;
|
|
671
386
|
schema: import("json-schema").JSONSchema7 | null;
|
|
672
|
-
types?: {
|
|
673
|
-
input: string;
|
|
674
|
-
output: string;
|
|
675
|
-
} | undefined;
|
|
676
387
|
}[];
|
|
677
|
-
position: {
|
|
678
|
-
x: number;
|
|
679
|
-
y: number;
|
|
680
|
-
};
|
|
681
388
|
alias?: string | undefined;
|
|
682
|
-
inputTypes?: {
|
|
683
|
-
input: string;
|
|
684
|
-
output: string;
|
|
685
|
-
} | undefined;
|
|
686
389
|
configuration?: any;
|
|
687
390
|
ttl?: number | undefined;
|
|
688
391
|
retry?: number | undefined;
|
|
689
392
|
retryDelay?: number | undefined;
|
|
690
|
-
size?: {
|
|
691
|
-
width?: number | undefined;
|
|
692
|
-
height?: number | undefined;
|
|
693
|
-
} | undefined;
|
|
694
393
|
} | {
|
|
695
394
|
id: string;
|
|
696
395
|
type: "logic";
|
|
@@ -701,91 +400,37 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
701
400
|
outputs: {
|
|
702
401
|
name: string | null;
|
|
703
402
|
schema: import("json-schema").JSONSchema7 | null;
|
|
704
|
-
types?: {
|
|
705
|
-
input: string;
|
|
706
|
-
output: string;
|
|
707
|
-
} | undefined;
|
|
708
403
|
}[];
|
|
709
|
-
position: {
|
|
710
|
-
x: number;
|
|
711
|
-
y: number;
|
|
712
|
-
};
|
|
713
404
|
alias?: string | undefined;
|
|
714
|
-
outputNames?: string[] | undefined;
|
|
715
|
-
size?: {
|
|
716
|
-
width?: number | undefined;
|
|
717
|
-
height?: number | undefined;
|
|
718
|
-
} | undefined;
|
|
719
405
|
} | {
|
|
720
406
|
id: string;
|
|
721
407
|
type: "or";
|
|
722
|
-
outputs: {
|
|
723
|
-
name: string | null;
|
|
724
|
-
schema: import("json-schema").JSONSchema7 | null;
|
|
725
|
-
types?: {
|
|
726
|
-
input: string;
|
|
727
|
-
output: string;
|
|
728
|
-
} | undefined;
|
|
729
|
-
}[];
|
|
730
|
-
position: {
|
|
731
|
-
x: number;
|
|
732
|
-
y: number;
|
|
733
|
-
};
|
|
734
408
|
alias?: string | undefined;
|
|
735
|
-
size?: {
|
|
736
|
-
width?: number | undefined;
|
|
737
|
-
height?: number | undefined;
|
|
738
|
-
} | undefined;
|
|
739
409
|
} | {
|
|
740
410
|
id: string;
|
|
741
411
|
type: "reference";
|
|
742
412
|
reference: string;
|
|
413
|
+
inputSchema: ({
|
|
414
|
+
type: "object";
|
|
415
|
+
} & import("json-schema").JSONSchema7) | {
|
|
416
|
+
type: "null";
|
|
417
|
+
} | ({
|
|
418
|
+
$ref: string;
|
|
419
|
+
} & import("json-schema").JSONSchema7);
|
|
743
420
|
outputs: {
|
|
744
421
|
name: string | null;
|
|
745
422
|
schema: import("json-schema").JSONSchema7 | null;
|
|
746
|
-
types?: {
|
|
747
|
-
input: string;
|
|
748
|
-
output: string;
|
|
749
|
-
} | undefined;
|
|
750
423
|
}[];
|
|
751
|
-
position: {
|
|
752
|
-
x: number;
|
|
753
|
-
y: number;
|
|
754
|
-
};
|
|
755
424
|
alias?: string | undefined;
|
|
756
|
-
inputTypes?: {
|
|
757
|
-
input: string;
|
|
758
|
-
output: string;
|
|
759
|
-
} | undefined;
|
|
760
|
-
size?: {
|
|
761
|
-
width?: number | undefined;
|
|
762
|
-
height?: number | undefined;
|
|
763
|
-
} | undefined;
|
|
764
425
|
} | {
|
|
765
426
|
id: string;
|
|
766
427
|
type: "exit";
|
|
767
|
-
position: {
|
|
768
|
-
x: number;
|
|
769
|
-
y: number;
|
|
770
|
-
};
|
|
771
428
|
alias?: string | undefined;
|
|
772
|
-
size?: {
|
|
773
|
-
width?: number | undefined;
|
|
774
|
-
height?: number | undefined;
|
|
775
|
-
} | undefined;
|
|
776
429
|
} | {
|
|
777
430
|
id: string;
|
|
778
431
|
type: "comment";
|
|
779
432
|
text: string;
|
|
780
|
-
position: {
|
|
781
|
-
x: number;
|
|
782
|
-
y: number;
|
|
783
|
-
};
|
|
784
433
|
alias?: string | undefined;
|
|
785
|
-
size?: {
|
|
786
|
-
width?: number | undefined;
|
|
787
|
-
height?: number | undefined;
|
|
788
|
-
} | undefined;
|
|
789
434
|
})[];
|
|
790
435
|
edges: {
|
|
791
436
|
id: string;
|
|
@@ -794,7 +439,6 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
794
439
|
target: string;
|
|
795
440
|
}[];
|
|
796
441
|
};
|
|
797
|
-
references: /*elided*/ any[];
|
|
798
442
|
}[] | undefined;
|
|
799
443
|
schemas?: Record<string, import("json-schema").JSONSchema7> | undefined;
|
|
800
444
|
};
|
|
@@ -802,8 +446,8 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
802
446
|
input: any;
|
|
803
447
|
options: {
|
|
804
448
|
maxExecutions: number;
|
|
805
|
-
compliance: "
|
|
806
|
-
mode: "
|
|
449
|
+
compliance: "MCP_TOOL" | null;
|
|
450
|
+
mode: "LINEAR" | "CONTINUOUS";
|
|
807
451
|
priority: number;
|
|
808
452
|
uploadUrl?: string | undefined;
|
|
809
453
|
streamUrl?: string | undefined;
|
|
@@ -827,8 +471,8 @@ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
827
471
|
input: any;
|
|
828
472
|
options: {
|
|
829
473
|
maxExecutions: number;
|
|
830
|
-
compliance: "
|
|
831
|
-
mode: "
|
|
474
|
+
compliance: "MCP_TOOL" | null;
|
|
475
|
+
mode: "LINEAR" | "CONTINUOUS";
|
|
832
476
|
priority: number;
|
|
833
477
|
uploadUrl?: string | undefined;
|
|
834
478
|
streamUrl?: string | undefined;
|