-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathprocesses-tool-definitions.ts
More file actions
1033 lines (1012 loc) · 31.6 KB
/
Copy pathprocesses-tool-definitions.ts
File metadata and controls
1033 lines (1012 loc) · 31.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { z } from "zod";
// Schema for getting processes with pagination and filtering
export const GetProcessesSchema = z.object({
keywords: z
.string()
.optional()
.describe(
"Search keywords that apply to process name or description (case-insensitive)"
),
tags: z
.array(z.string())
.optional()
.describe("Filter processes by tags (array of tag names)"),
page: z
.number()
.int()
.min(0)
.default(0)
.optional()
.describe("Page number for pagination (0-based index)"),
limit: z
.number()
.int()
.min(1)
.max(100)
.default(10)
.optional()
.describe("Maximum number of processes to retrieve per page"),
});
// Schema for creating a process
export const CreateProcessSchema = z.object({
name: z
.string()
.describe(
"The name of the process. This will be displayed in the UI and used for identification."
),
slug: z
.string()
.optional()
.describe(
"A unique identifier for the process. Used in URLs and API calls. Must be URL-safe (lowercase, hyphens, no spaces)."
),
description: z
.string()
.optional()
.describe(
"A detailed description of what the process does. This helps users understand the process purpose and functionality."
),
readme: z
.string()
.optional()
.describe(
"Markdown documentation for the process. This can include usage instructions, examples, and additional context."
),
programmingLanguage: z
.enum(["JAVASCRIPT", "PYTHON"])
.describe(
"The programming language used for the process source code. Supported languages are JAVASCRIPT and PYTHON."
),
sourceCode: z
.string()
.describe(
"The source code of the process. This is the executable code that will run when the process is executed."
),
parametersSchema: z
.string()
.optional()
.describe(
"JSON Schema defining the input parameters for the process. This schema is used to generate forms in the UI and validate input data."
),
webhook: z
.record(z.any())
.optional()
.describe(
"Webhook configuration for the process. Defines how the process can be triggered via HTTP webhooks."
),
manifest: z
.record(z.any())
.optional()
.describe(
"Process manifest configuration. Contains metadata and configuration for the process deployment and execution."
),
settings: z
.record(z.any())
.optional()
.describe(
"Process settings and configuration options. Includes publication settings, form configurations, and dependencies."
),
tags: z
.array(z.string())
.optional()
.describe(
"Tags for categorizing and organizing processes. Used for filtering and grouping in the UI."
),
});
// Schema for getting a specific process
export const GetProcessSchema = z.object({
identifier: z
.string()
.describe("Unique identifier of the process to retrieve (UUID or slug)"),
});
// Schema for deleting a process
export const DeleteProcessSchema = z.object({
identifier: z
.string()
.describe("Unique identifier of the process to delete (UUID or slug)"),
});
// Schema for updating a process
export const UpdateProcessSchema = z.object({
identifier: z
.string()
.describe("Unique identifier of the process to update (UUID or slug)"),
name: z
.string()
.optional()
.describe(
"The updated name of the process. This will be displayed in the UI and used for identification."
),
slug: z
.string()
.optional()
.describe(
"The updated unique identifier for the process. Used in URLs and API calls. Must be URL-safe (lowercase, hyphens, no spaces)."
),
description: z
.string()
.optional()
.describe(
"The updated detailed description of what the process does. This helps users understand the process purpose and functionality."
),
readme: z
.string()
.optional()
.describe(
"The updated markdown documentation for the process. This can include usage instructions, examples, and additional context."
),
sourceCode: z
.string()
.optional()
.describe(
"The updated source code of the process. This is the executable code that will run when the process is executed."
),
parametersSchema: z
.string()
.optional()
.describe(
"The updated JSON Schema defining the input parameters for the process. This schema is used to generate forms in the UI and validate input data."
),
webhook: z
.record(z.any())
.optional()
.describe(
"Updated webhook configuration for the process. Defines how the process can be triggered via HTTP webhooks."
),
settings: z
.record(z.any())
.optional()
.describe(
"Updated process settings and configuration options. Includes publication settings, form configurations, and dependencies."
),
manifest: z
.record(z.any())
.optional()
.describe(
"Updated process manifest configuration. Contains metadata and configuration for the process deployment and execution."
),
tags: z
.array(z.string())
.optional()
.describe(
"Updated tags for categorizing and organizing processes. Used for filtering and grouping in the UI."
),
});
// Schema for getting process versions
export const GetProcessVersionsSchema = z.object({
processId: z.string().describe("Process ID"),
page: z.number().int().min(0).default(0).optional().describe("Page number"),
limit: z
.number()
.int()
.min(1)
.max(100)
.default(10)
.optional()
.describe("Amount of items to retrieve"),
});
// Schema for publishing a process version
export const PublishProcessVersionSchema = z.object({
processId: z.string().describe("Process ID"),
tag: z.string().optional().describe("Version tag"),
readme: z.string().optional().describe("Version readme"),
comment: z.string().optional().describe("Version comment"),
sourceCode: z.string().optional().describe("Process source code"),
parametersSchema: z
.string()
.optional()
.describe(
"JSON Schema defining the input parameters for the process version"
),
});
// Schema for getting a specific process version
export const GetProcessVersionSchema = z.object({
processId: z.string().describe("Process ID"),
versionId: z.string().describe("Version ID"),
});
// Schema for deleting a process version
export const DeleteProcessVersionSchema = z.object({
processId: z.string().describe("Process ID"),
versionId: z.string().describe("Version ID"),
});
// Schema for getting process version aliases
export const GetProcessVersionAliasesSchema = z.object({
processId: z.string().describe("Process ID"),
versionId: z.string().optional().describe("Version ID"),
page: z.number().int().min(0).default(0).optional().describe("Page number"),
limit: z
.number()
.int()
.min(1)
.max(100)
.default(10)
.optional()
.describe("Amount of items to retrieve"),
});
// Schema for creating a process version alias
export const CreateProcessVersionAliasSchema = z.object({
processId: z.string().describe("Process ID"),
name: z.string().describe("Alias name"),
versionId: z.string().describe("The version id of the process being aliased"),
});
// Schema for getting a specific process version alias
export const GetProcessVersionAliasSchema = z.object({
processId: z.string().describe("Process ID"),
aliasId: z.string().describe("Alias ID"),
});
// Schema for deleting a process version alias
export const DeleteProcessVersionAliasSchema = z.object({
processId: z.string().describe("Process ID"),
aliasId: z.string().describe("Alias ID"),
});
// Schema for updating a process version alias
export const UpdateProcessVersionAliasSchema = z.object({
processId: z.string().describe("Process ID"),
aliasId: z.string().describe("Alias ID"),
name: z.string().optional().describe("Alias name"),
versionId: z
.string()
.optional()
.describe("The version id of the process being aliased"),
});
// Schema for execution settings
export const ExecuteProcessSettingsSchema = z.object({
agentPoolSlug: z.string().optional().describe("Agent pool where to execute"),
callbackUrl: z
.string()
.optional()
.describe(
"URL to receive execution results upon completion (success or failure)"
),
});
// Schema for executing a process asynchronously
export const ExecuteProcessAsyncSchema = z.object({
identifier: z
.string()
.describe(
"Unique identifier of the process to execute asynchronously (UUID or slug)"
),
parameters: z
.any()
.optional()
.describe(
"Process parameters (JSON string or object). Must match the process parameter schema."
),
tag: z
.string()
.optional()
.describe("A version tag or an alias of the version"),
comment: z
.string()
.optional()
.describe("Optional comment or description for this execution"),
initiatedBy: z
.string()
.optional()
.describe("An identifier for the individual initiating the request"),
settings: ExecuteProcessSettingsSchema.optional().describe(
"Execution-specific settings and configuration options"
),
});
// Schema for executing a process synchronously
export const ExecuteProcessSyncSchema = z.object({
identifier: z
.string()
.describe(
"Unique identifier of the process to execute synchronously (UUID or slug)"
),
parameters: z
.any()
.optional()
.describe(
"Process parameters (JSON string or object). Must match the process parameter schema."
),
tag: z
.string()
.optional()
.describe("A version tag or an alias of the version"),
comment: z
.string()
.optional()
.describe("Optional comment or description for this execution"),
initiatedBy: z
.string()
.optional()
.describe("An identifier for the individual initiating the request"),
settings: ExecuteProcessSettingsSchema.optional().describe(
"Execution-specific settings and configuration options"
),
});
// Schema for scheduling a process
export const ScheduleProcessSchema = z.object({
identifier: z
.string()
.describe("Unique identifier of the process to schedule (UUID or slug)"),
cron: z
.string()
.optional()
.describe(
"Cron expression defining when the process should be executed. Uses standard cron syntax (minute hour day month dayOfWeek)."
),
dateTime: z
.string()
.datetime()
.optional()
.describe(
"Specific date and time when the process should be executed. Used for one-time scheduled executions (ISO 8601 format)."
),
allowConcurrentExecutions: z
.boolean()
.optional()
.describe(
"Whether multiple executions of the same process can run concurrently. If false, new executions will be queued if one is already running."
),
input: z
.object({
parameters: z
.string()
.optional()
.describe(
"JSON string containing the input parameters for the process execution. Must match the process parameter schema."
),
tag: z
.string()
.optional()
.describe("A version tag or an alias of the version"),
comment: z
.string()
.optional()
.describe(
"Optional comment or description for this execution. Useful for tracking and debugging purposes."
),
settings: z
.object({
agentPoolSlug: z
.string()
.optional()
.describe("Agent pool where to execute"),
callbackUrl: z
.string()
.url()
.optional()
.describe(
"URL to receive execution results upon completion (success or failure)"
),
})
.optional()
.describe(
"Execution-specific settings and configuration options. Overrides default process settings for this execution."
),
})
.optional()
.describe(
"Input parameters and settings for the scheduled process execution. Defines what parameters will be passed to the process when it runs."
),
});
// Tool names
export const processesToolNames = {
getProcesses: "get_processes",
createProcess: "create_process",
getProcess: "get_process",
updateProcess: "update_process",
deleteProcess: "delete_process",
getProcessVersions: "get_process_versions",
publishProcessVersion: "publish_process_version",
getProcessVersion: "get_process_version",
deleteProcessVersion: "delete_process_version",
getProcessVersionAliases: "get_process_version_aliases",
createProcessVersionAlias: "create_process_version_alias",
getProcessVersionAlias: "get_process_version_alias",
deleteProcessVersionAlias: "delete_process_version_alias",
updateProcessVersionAlias: "update_process_version_alias",
executeProcessAsync: "execute_process_async",
executeProcessSync: "execute_process_sync",
scheduleProcess: "schedule_process",
} as const;
// Tool definitions
export const processesToolDefinitions = [
{
name: processesToolNames.getProcesses,
title: "Get Processes",
description:
"Retrieves a paginated list of processes with optional filtering by keywords and tags. Processes are executable code units that can be scheduled or triggered manually.",
inputSchema: {
type: "object",
properties: {
keywords: {
type: "string",
description:
"Search keywords that apply to process name or description (case-insensitive)",
},
tags: {
type: "array",
items: { type: "string" },
description: "Filter processes by tags (array of tag names)",
},
page: {
type: "integer",
format: "int32",
default: 0,
description: "Page number for pagination (0-based index)",
},
limit: {
type: "integer",
format: "int32",
default: 10,
description: "Maximum number of processes to retrieve per page",
},
},
},
},
{
name: processesToolNames.createProcess,
title: "Create Process",
description:
"Creates a new process with source code, configuration, and metadata. The process can be written in JavaScript or Python and includes parameter schemas for form generation.",
inputSchema: {
type: "object",
properties: {
name: {
type: "string",
description:
"The name of the process. This will be displayed in the UI and used for identification.",
},
slug: {
type: "string",
description:
"A unique identifier for the process. Used in URLs and API calls. Must be URL-safe (lowercase, hyphens, no spaces).",
},
description: {
type: "string",
description:
"A detailed description of what the process does. This helps users understand the process purpose and functionality.",
},
readme: {
type: "string",
description:
"Markdown documentation for the process. This can include usage instructions, examples, and additional context.",
},
programmingLanguage: {
type: "string",
enum: ["JAVASCRIPT", "PYTHON"],
description:
"The programming language used for the process source code. Supported languages are JAVASCRIPT and PYTHON.",
},
sourceCode: {
type: "string",
description:
"The source code of the process. This is the executable code that will run when the process is executed.",
},
parametersSchema: {
type: "string",
description:
"JSON Schema defining the input parameters for the process. This schema is used to generate forms in the UI and validate input data.",
},
webhook: {
type: "object",
description:
"Webhook configuration for the process. Defines how the process can be triggered via HTTP webhooks.",
},
manifest: {
type: "object",
description:
"Process manifest configuration. Contains metadata and configuration for the process deployment and execution.",
},
settings: {
type: "object",
description:
"Process settings and configuration options. Includes publication settings, form configurations, and dependencies.",
},
tags: {
type: "array",
items: { type: "string" },
description:
"Tags for categorizing and organizing processes. Used for filtering and grouping in the UI.",
},
},
required: ["name", "programmingLanguage", "sourceCode"],
},
},
{
name: processesToolNames.getProcess,
title: "Get Process",
description:
"Retrieves detailed information about a specific process including its configuration, source code, and metadata.",
inputSchema: {
type: "object",
properties: {
identifier: {
type: "string",
description:
"Unique identifier of the process to retrieve (UUID or slug)",
},
},
required: ["identifier"],
},
},
{
name: processesToolNames.updateProcess,
title: "Update Process",
description:
"Updates an existing process with new configuration, source code, or metadata. All fields provided will replace the existing values.",
inputSchema: {
type: "object",
properties: {
identifier: {
type: "string",
description:
"Unique identifier of the process to update (UUID or slug)",
},
name: {
type: "string",
description:
"The updated name of the process. This will be displayed in the UI and used for identification.",
},
slug: {
type: "string",
description:
"The updated unique identifier for the process. Used in URLs and API calls. Must be URL-safe (lowercase, hyphens, no spaces).",
},
description: {
type: "string",
description:
"The updated detailed description of what the process does. This helps users understand the process purpose and functionality.",
},
readme: {
type: "string",
description:
"The updated markdown documentation for the process. This can include usage instructions, examples, and additional context.",
},
sourceCode: {
type: "string",
description:
"The updated source code of the process. This is the executable code that will run when the process is executed.",
},
parametersSchema: {
type: "string",
description:
"The updated JSON Schema defining the input parameters for the process. This schema is used to generate forms in the UI and validate input data.",
},
webhook: {
type: "object",
description:
"Updated webhook configuration for the process. Defines how the process can be triggered via HTTP webhooks.",
},
settings: {
type: "object",
description:
"Updated process settings and configuration options. Includes publication settings, form configurations, and dependencies.",
},
manifest: {
type: "object",
description:
"Updated process manifest configuration. Contains metadata and configuration for the process deployment and execution.",
},
tags: {
type: "array",
items: { type: "string" },
description:
"Updated tags for categorizing and organizing processes. Used for filtering and grouping in the UI.",
},
},
required: ["identifier"],
},
},
{
name: processesToolNames.deleteProcess,
title: "Delete Process",
description:
"Deletes a process and all its versions. This action cannot be undone.",
inputSchema: {
type: "object",
properties: {
identifier: {
type: "string",
description:
"Unique identifier of the process to delete (UUID or slug)",
},
},
required: ["identifier"],
},
},
{
name: processesToolNames.executeProcessAsync,
title: "Execute Process Async",
description:
"Executes a process asynchronously and returns an execution ID for tracking.",
inputSchema: {
type: "object",
properties: {
identifier: {
type: "string",
description:
"Unique identifier of the process to execute asynchronously (UUID or slug)",
},
parameters: {
type: ["string", "object"],
description:
"Process parameters (JSON string or object). Must match the process parameter schema.",
},
tag: {
type: "string",
description: "A version tag or an alias of the version",
},
comment: {
type: "string",
description:
"Optional comment or description for this execution. Useful for tracking and debugging purposes.",
},
initiatedBy: {
type: "string",
description:
"An identifier for the individual initiating the request. This could be an employee ID, a username, or any other unique identifier.",
},
settings: {
type: "object",
properties: {
agentPoolSlug: {
type: "string",
description: "Agent pool where to execute",
},
callbackUrl: {
type: "string",
description:
"URL to receive execution results upon completion (success or failure)",
},
},
description:
"Execution-specific settings and configuration options. Overrides default process settings for this execution.",
},
},
required: ["identifier"],
},
},
{
name: processesToolNames.executeProcessSync,
title: "Execute Process Sync",
description: "Executes a process synchronously and waits for completion.",
inputSchema: {
type: "object",
properties: {
identifier: {
type: "string",
description:
"Unique identifier of the process to execute synchronously (UUID or slug)",
},
parameters: {
type: ["string", "object"],
description:
"Process parameters (JSON string or object). Must match the process parameter schema.",
},
tag: {
type: "string",
description: "A version tag or an alias of the version",
},
comment: {
type: "string",
description:
"Optional comment or description for this execution. Useful for tracking and debugging purposes.",
},
initiatedBy: {
type: "string",
description:
"An identifier for the individual initiating the request. This could be an employee ID, a username, or any other unique identifier.",
},
settings: {
type: "object",
properties: {
agentPoolSlug: {
type: "string",
description: "Agent pool where to execute",
},
callbackUrl: {
type: "string",
description:
"URL to receive execution results upon completion (success or failure)",
},
},
description:
"Execution-specific settings and configuration options. Overrides default process settings for this execution.",
},
},
required: ["identifier"],
},
},
{
name: processesToolNames.scheduleProcess,
title: "Schedule Process",
description:
"Creates a schedule for a process to run automatically at specified times.",
inputSchema: {
type: "object",
properties: {
identifier: {
type: "string",
description:
"Unique identifier of the process to schedule (UUID or slug)",
},
cron: {
type: "string",
description: "Cron expression for PERIODIC schedules",
},
dateTime: {
type: "string",
format: "date-time",
description: "Date and time for ONCE schedules (ISO format)",
},
allowConcurrentExecutions: {
type: "boolean",
description:
"Whether multiple executions of the same process can run concurrently. If false, new executions will be queued if one is already running.",
},
input: {
type: "object",
description:
"Input parameters and settings for the scheduled process execution. Defines what parameters will be passed to the process when it runs.",
properties: {
parameters: {
type: "string",
description:
"JSON string containing the input parameters for the process execution. Must match the process parameter schema.",
},
tag: {
type: "string",
description: "A version tag or an alias of the version",
},
comment: {
type: "string",
description:
"Optional comment or description for this execution. Useful for tracking and debugging purposes.",
},
settings: {
type: "object",
description:
"Execution-specific settings and configuration options. Overrides default process settings for this execution.",
properties: {
agentPoolSlug: {
type: "string",
description: "Agent pool where to execute",
},
callbackUrl: {
type: "string",
format: "uri",
description:
"URL to receive execution results upon completion (success or failure)",
},
},
},
},
},
},
required: ["identifier", "type"],
},
},
];
export const processesWithVersionsToolDefinitions = [
{
name: processesToolNames.getProcessVersions,
title: "Get Process Versions",
description:
"Retrieves a paginated list of versions for a specific process.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
page: {
type: "integer",
format: "int32",
default: 0,
description: "Page number",
},
limit: {
type: "integer",
format: "int32",
default: 10,
description: "Amount of items to retrieve",
},
},
required: ["processId"],
},
},
{
name: processesToolNames.publishProcessVersion,
title: "Publish Process Version",
description: "Publishes a new version of a process.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
tag: {
type: "string",
description: "Version tag",
},
readme: {
type: "string",
description: "Version readme",
},
comment: {
type: "string",
description: "Version comment",
},
sourceCode: {
type: "string",
description: "Process source code",
},
parametersSchema: {
type: "string",
description:
"JSON Schema defining the input parameters for the process version",
},
},
required: ["processId"],
},
},
{
name: processesToolNames.getProcessVersion,
title: "Get Process Version",
description:
"Retrieves detailed information about a specific process version.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
versionId: {
type: "string",
description: "Version ID",
},
},
required: ["processId", "versionId"],
},
},
{
name: processesToolNames.deleteProcessVersion,
title: "Delete Process Version",
description:
"Deletes a specific process version. This action cannot be undone.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
versionId: {
type: "string",
description: "Version ID",
},
},
required: ["processId", "versionId"],
},
},
{
name: processesToolNames.getProcessVersionAliases,
title: "Get Process Version Aliases",
description:
"Retrieves a paginated list of version aliases for a specific process.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
versionId: {
type: "string",
description: "Version ID",
},
page: {
type: "integer",
format: "int32",
default: 0,
description: "Page number",
},
limit: {
type: "integer",
format: "int32",
default: 10,
description: "Amount of items to retrieve",
},
},
required: ["processId"],
},
},
{
name: processesToolNames.createProcessVersionAlias,
title: "Create Process Version Alias",
description: "Creates a new alias for a process version.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
name: {
type: "string",
description: "Alias name",
},
versionId: {
type: "string",
description: "The version id of the process being aliased",
},
},
required: ["processId", "name", "versionId"],
},
},
{
name: processesToolNames.getProcessVersionAlias,
title: "Get Process Version Alias",
description:
"Retrieves detailed information about a specific process version alias.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
aliasId: {
type: "string",
description: "Alias ID",
},
},
required: ["processId", "aliasId"],
},
},
{
name: processesToolNames.deleteProcessVersionAlias,
title: "Delete Process Version Alias",
description:
"Permanently deletes a process version alias. This action cannot be undone.",
inputSchema: {
type: "object",
properties: {
processId: {
type: "string",
description: "Process ID",
},
aliasId: {
type: "string",
description: "Alias ID",
},