@requence/service 1.0.0-alpha.45 → 1.0.0-alpha.47

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