@camunda8/cli 2.0.0-alpha.9 → 2.0.0

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 (42) hide show
  1. package/LICENSE +203 -183
  2. package/README.md +32 -6
  3. package/dist/client.d.ts +2 -2
  4. package/dist/client.d.ts.map +1 -1
  5. package/dist/client.js +3 -3
  6. package/dist/client.js.map +1 -1
  7. package/dist/commands/completion.d.ts.map +1 -1
  8. package/dist/commands/completion.js +140 -3
  9. package/dist/commands/completion.js.map +1 -1
  10. package/dist/commands/help.d.ts +44 -0
  11. package/dist/commands/help.d.ts.map +1 -1
  12. package/dist/commands/help.js +474 -0
  13. package/dist/commands/help.js.map +1 -1
  14. package/dist/commands/incidents.d.ts.map +1 -1
  15. package/dist/commands/incidents.js +1 -0
  16. package/dist/commands/incidents.js.map +1 -1
  17. package/dist/commands/jobs.d.ts.map +1 -1
  18. package/dist/commands/jobs.js +1 -0
  19. package/dist/commands/jobs.js.map +1 -1
  20. package/dist/commands/mcp-proxy.d.ts +24 -0
  21. package/dist/commands/mcp-proxy.d.ts.map +1 -0
  22. package/dist/commands/mcp-proxy.js +284 -0
  23. package/dist/commands/mcp-proxy.js.map +1 -0
  24. package/dist/commands/process-instances.d.ts.map +1 -1
  25. package/dist/commands/process-instances.js +1 -0
  26. package/dist/commands/process-instances.js.map +1 -1
  27. package/dist/commands/search.d.ts +105 -0
  28. package/dist/commands/search.d.ts.map +1 -0
  29. package/dist/commands/search.js +438 -0
  30. package/dist/commands/search.js.map +1 -0
  31. package/dist/commands/user-tasks.d.ts.map +1 -1
  32. package/dist/commands/user-tasks.js +1 -0
  33. package/dist/commands/user-tasks.js.map +1 -1
  34. package/dist/config.js +1 -1
  35. package/dist/config.js.map +1 -1
  36. package/dist/index.js +105 -0
  37. package/dist/index.js.map +1 -1
  38. package/dist/logger.d.ts +8 -1
  39. package/dist/logger.d.ts.map +1 -1
  40. package/dist/logger.js +35 -19
  41. package/dist/logger.js.map +1 -1
  42. package/package.json +6 -2
@@ -18,10 +18,11 @@ _c8ctl_completions() {
18
18
  cword=\${COMP_CWORD}
19
19
 
20
20
  # Commands (verbs)
21
- local verbs="list get create cancel await complete fail activate resolve publish correlate deploy run watch add remove rm load unload sync use output completion help"
21
+ local verbs="list search get create cancel await complete fail activate resolve publish correlate deploy run watch add remove rm load unload sync use output completion help"
22
22
 
23
23
  # Resources by verb
24
24
  local list_resources="process-instances process-instance pi user-tasks user-task ut incidents incident inc jobs profiles profile plugins plugin"
25
+ local search_resources="process-instances process-instance pi process-definitions process-definition pd user-tasks user-task ut incidents incident inc jobs variables variable"
25
26
  local get_resources="process-instance pi process-definition pd incident inc topology form"
26
27
  local create_resources="process-instance pi"
27
28
  local cancel_resources="process-instance pi"
@@ -40,10 +41,10 @@ _c8ctl_completions() {
40
41
  local use_resources="profile tenant"
41
42
  local output_resources="json text"
42
43
  local completion_resources="bash zsh fish"
43
- local help_resources="list get create complete"
44
+ local help_resources="list get create complete await search deploy run watch cancel resolve fail activate publish correlate"
44
45
 
45
46
  # Global flags
46
- local flags="--help --version --profile --from --all --bpmnProcessId --id --processInstanceKey --variables --state --assignee --type --correlationKey --timeToLive --maxJobsToActivate --timeout --worker --retries --errorMessage --baseUrl --clientId --clientSecret --audience --oAuthUrl --defaultTenantId --awaitCompletion --fetchVariables --userTask --ut --processDefinition --pd"
47
+ local flags="--help --version --profile --from --all --bpmnProcessId --id --processInstanceKey --processDefinitionKey --parentProcessInstanceKey --variables --state --assignee --type --correlationKey --timeToLive --maxJobsToActivate --timeout --worker --retries --errorMessage --baseUrl --clientId --clientSecret --audience --oAuthUrl --defaultTenantId --awaitCompletion --fetchVariables --name --key --elementId --errorType --value --scopeKey --fullValue --userTask --ut --processDefinition --pd --iname --iid --iassignee --ierrorMessage --itype --ivalue"
47
48
 
48
49
  case \${cword} in
49
50
  1)
@@ -57,6 +58,9 @@ _c8ctl_completions() {
57
58
  list)
58
59
  COMPREPLY=( \$(compgen -W "\${list_resources}" -- "\${cur}") )
59
60
  ;;
61
+ search)
62
+ COMPREPLY=( \$(compgen -W "\${search_resources}" -- "\${cur}") )
63
+ ;;
60
64
  get)
61
65
  COMPREPLY=( \$(compgen -W "\${get_resources}" -- "\${cur}") )
62
66
  ;;
@@ -146,6 +150,7 @@ _c8ctl() {
146
150
 
147
151
  verbs=(
148
152
  'list:List resources'
153
+ 'search:Search resources with filters'
149
154
  'get:Get resource by key'
150
155
  'create:Create resource'
151
156
  'cancel:Cancel resource'
@@ -182,6 +187,8 @@ _c8ctl() {
182
187
  '--bpmnProcessId[Process definition ID]:id:'
183
188
  '--id[Process definition ID (alias for --bpmnProcessId)]:id:'
184
189
  '--processInstanceKey[Process instance key]:key:'
190
+ '--processDefinitionKey[Process definition key]:key:'
191
+ '--parentProcessInstanceKey[Parent process instance key]:key:'
185
192
  '--variables[JSON variables]:json:'
186
193
  '--state[Filter by state]:state:'
187
194
  '--assignee[Filter by assignee]:assignee:'
@@ -202,10 +209,23 @@ _c8ctl() {
202
209
  '--version[Process definition version]:version:'
203
210
  '--awaitCompletion[Wait for process instance to complete]'
204
211
  '--fetchVariables[Comma-separated variable names]:variables:'
212
+ '--name[Variable or resource name]:name:'
213
+ '--key[Resource key]:key:'
214
+ '--elementId[Element ID]:id:'
215
+ '--errorType[Error type]:type:'
216
+ '--value[Variable value]:value:'
217
+ '--scopeKey[Scope key]:key:'
218
+ '--fullValue[Return full variable values]'
205
219
  '--userTask[Get form for a user task]'
206
220
  '--ut[Get form for a user task (alias for --userTask)]'
207
221
  '--processDefinition[Get start form for a process definition]'
208
222
  '--pd[Get start form for a process definition (alias for --processDefinition)]'
223
+ '--iname[Case-insensitive name filter]:pattern:'
224
+ '--iid[Case-insensitive process definition ID filter]:pattern:'
225
+ '--iassignee[Case-insensitive assignee filter]:pattern:'
226
+ '--ierrorMessage[Case-insensitive error message filter]:pattern:'
227
+ '--itype[Case-insensitive job type filter]:pattern:'
228
+ '--ivalue[Case-insensitive variable value filter]:pattern:'
209
229
  )
210
230
 
211
231
  case \$CURRENT in
@@ -233,6 +253,26 @@ _c8ctl() {
233
253
  )
234
254
  _describe 'resource' resources
235
255
  ;;
256
+ search)
257
+ resources=(
258
+ 'process-instances:Search process instances'
259
+ 'process-instance:Search process instances'
260
+ 'pi:Search process instances'
261
+ 'process-definitions:Search process definitions'
262
+ 'process-definition:Search process definitions'
263
+ 'pd:Search process definitions'
264
+ 'user-tasks:Search user tasks'
265
+ 'user-task:Search user tasks'
266
+ 'ut:Search user tasks'
267
+ 'incidents:Search incidents'
268
+ 'incident:Search incidents'
269
+ 'inc:Search incidents'
270
+ 'jobs:Search jobs'
271
+ 'variables:Search variables'
272
+ 'variable:Search variables'
273
+ )
274
+ _describe 'resource' resources
275
+ ;;
236
276
  get)
237
277
  resources=(
238
278
  'process-instance:Get process instance'
@@ -367,6 +407,17 @@ _c8ctl() {
367
407
  'get:Show get command help'
368
408
  'create:Show create command help'
369
409
  'complete:Show complete command help'
410
+ 'await:Show await command help'
411
+ 'search:Show search command help'
412
+ 'deploy:Show deploy command help'
413
+ 'run:Show run command help'
414
+ 'watch:Show watch command help'
415
+ 'cancel:Show cancel command help'
416
+ 'resolve:Show resolve command help'
417
+ 'fail:Show fail command help'
418
+ 'activate:Show activate command help'
419
+ 'publish:Show publish command help'
420
+ 'correlate:Show correlate command help'
370
421
  )
371
422
  _describe 'resource' resources
372
423
  ;;
@@ -411,6 +462,10 @@ complete -c c8ctl -l id -d 'Process definition ID (alias for --bpmnProcessId)' -
411
462
  complete -c c8 -l id -d 'Process definition ID (alias for --bpmnProcessId)' -r
412
463
  complete -c c8ctl -l processInstanceKey -d 'Process instance key' -r
413
464
  complete -c c8 -l processInstanceKey -d 'Process instance key' -r
465
+ complete -c c8ctl -l processDefinitionKey -d 'Process definition key' -r
466
+ complete -c c8 -l processDefinitionKey -d 'Process definition key' -r
467
+ complete -c c8ctl -l parentProcessInstanceKey -d 'Parent process instance key' -r
468
+ complete -c c8 -l parentProcessInstanceKey -d 'Parent process instance key' -r
414
469
  complete -c c8ctl -l variables -d 'JSON variables' -r
415
470
  complete -c c8 -l variables -d 'JSON variables' -r
416
471
  complete -c c8ctl -l state -d 'Filter by state' -r
@@ -451,6 +506,20 @@ complete -c c8ctl -l awaitCompletion -d 'Wait for process instance to complete'
451
506
  complete -c c8 -l awaitCompletion -d 'Wait for process instance to complete'
452
507
  complete -c c8ctl -l fetchVariables -d 'Comma-separated variable names' -r
453
508
  complete -c c8 -l fetchVariables -d 'Comma-separated variable names' -r
509
+ complete -c c8ctl -l name -d 'Variable or resource name' -r
510
+ complete -c c8 -l name -d 'Variable or resource name' -r
511
+ complete -c c8ctl -l key -d 'Resource key' -r
512
+ complete -c c8 -l key -d 'Resource key' -r
513
+ complete -c c8ctl -l elementId -d 'Element ID' -r
514
+ complete -c c8 -l elementId -d 'Element ID' -r
515
+ complete -c c8ctl -l errorType -d 'Error type' -r
516
+ complete -c c8 -l errorType -d 'Error type' -r
517
+ complete -c c8ctl -l value -d 'Variable value' -r
518
+ complete -c c8 -l value -d 'Variable value' -r
519
+ complete -c c8ctl -l scopeKey -d 'Scope key' -r
520
+ complete -c c8 -l scopeKey -d 'Scope key' -r
521
+ complete -c c8ctl -l fullValue -d 'Return full variable values'
522
+ complete -c c8 -l fullValue -d 'Return full variable values'
454
523
  complete -c c8ctl -l userTask -d 'Get form for a user task'
455
524
  complete -c c8 -l userTask -d 'Get form for a user task'
456
525
  complete -c c8ctl -l ut -d 'Get form for a user task (alias for --userTask)'
@@ -459,10 +528,24 @@ complete -c c8ctl -l processDefinition -d 'Get start form for a process definiti
459
528
  complete -c c8 -l processDefinition -d 'Get start form for a process definition'
460
529
  complete -c c8ctl -l pd -d 'Get start form for a process definition (alias for --processDefinition)'
461
530
  complete -c c8 -l pd -d 'Get start form for a process definition (alias for --processDefinition)'
531
+ complete -c c8ctl -l iname -d 'Case-insensitive name filter' -r
532
+ complete -c c8 -l iname -d 'Case-insensitive name filter' -r
533
+ complete -c c8ctl -l iid -d 'Case-insensitive process definition ID filter' -r
534
+ complete -c c8 -l iid -d 'Case-insensitive process definition ID filter' -r
535
+ complete -c c8ctl -l iassignee -d 'Case-insensitive assignee filter' -r
536
+ complete -c c8 -l iassignee -d 'Case-insensitive assignee filter' -r
537
+ complete -c c8ctl -l ierrorMessage -d 'Case-insensitive error message filter' -r
538
+ complete -c c8 -l ierrorMessage -d 'Case-insensitive error message filter' -r
539
+ complete -c c8ctl -l itype -d 'Case-insensitive job type filter' -r
540
+ complete -c c8 -l itype -d 'Case-insensitive job type filter' -r
541
+ complete -c c8ctl -l ivalue -d 'Case-insensitive variable value filter' -r
542
+ complete -c c8 -l ivalue -d 'Case-insensitive variable value filter' -r
462
543
 
463
544
  # Commands (verbs) - only suggest when no command is given yet
464
545
  complete -c c8ctl -n '__fish_use_subcommand' -a 'list' -d 'List resources'
465
546
  complete -c c8 -n '__fish_use_subcommand' -a 'list' -d 'List resources'
547
+ complete -c c8ctl -n '__fish_use_subcommand' -a 'search' -d 'Search resources with filters'
548
+ complete -c c8 -n '__fish_use_subcommand' -a 'search' -d 'Search resources with filters'
466
549
  complete -c c8ctl -n '__fish_use_subcommand' -a 'get' -d 'Get resource by key'
467
550
  complete -c c8 -n '__fish_use_subcommand' -a 'get' -d 'Get resource by key'
468
551
  complete -c c8ctl -n '__fish_use_subcommand' -a 'create' -d 'Create resource'
@@ -540,6 +623,38 @@ complete -c c8 -n '__fish_seen_subcommand_from list' -a 'plugins' -d 'List plugi
540
623
  complete -c c8ctl -n '__fish_seen_subcommand_from list' -a 'plugin' -d 'List plugins'
541
624
  complete -c c8 -n '__fish_seen_subcommand_from list' -a 'plugin' -d 'List plugins'
542
625
 
626
+ # Resources for 'search' command
627
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'process-instances' -d 'Search process instances'
628
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'process-instances' -d 'Search process instances'
629
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'process-instance' -d 'Search process instances'
630
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'process-instance' -d 'Search process instances'
631
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'pi' -d 'Search process instances'
632
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'pi' -d 'Search process instances'
633
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'process-definitions' -d 'Search process definitions'
634
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'process-definitions' -d 'Search process definitions'
635
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'process-definition' -d 'Search process definitions'
636
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'process-definition' -d 'Search process definitions'
637
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'pd' -d 'Search process definitions'
638
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'pd' -d 'Search process definitions'
639
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'user-tasks' -d 'Search user tasks'
640
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'user-tasks' -d 'Search user tasks'
641
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'user-task' -d 'Search user tasks'
642
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'user-task' -d 'Search user tasks'
643
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'ut' -d 'Search user tasks'
644
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'ut' -d 'Search user tasks'
645
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'incidents' -d 'Search incidents'
646
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'incidents' -d 'Search incidents'
647
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'incident' -d 'Search incidents'
648
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'incident' -d 'Search incidents'
649
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'inc' -d 'Search incidents'
650
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'inc' -d 'Search incidents'
651
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'jobs' -d 'Search jobs'
652
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'jobs' -d 'Search jobs'
653
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'variables' -d 'Search variables'
654
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'variables' -d 'Search variables'
655
+ complete -c c8ctl -n '__fish_seen_subcommand_from search' -a 'variable' -d 'Search variables'
656
+ complete -c c8 -n '__fish_seen_subcommand_from search' -a 'variable' -d 'Search variables'
657
+
543
658
  # Resources for 'get' command
544
659
  complete -c c8ctl -n '__fish_seen_subcommand_from get' -a 'process-instance' -d 'Get process instance'
545
660
  complete -c c8 -n '__fish_seen_subcommand_from get' -a 'process-instance' -d 'Get process instance'
@@ -663,6 +778,28 @@ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'create' -d 'Show cre
663
778
  complete -c c8 -n '__fish_seen_subcommand_from help' -a 'create' -d 'Show create command help'
664
779
  complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'complete' -d 'Show complete command help'
665
780
  complete -c c8 -n '__fish_seen_subcommand_from help' -a 'complete' -d 'Show complete command help'
781
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'await' -d 'Show await command help'
782
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'await' -d 'Show await command help'
783
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'search' -d 'Show search command help'
784
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'search' -d 'Show search command help'
785
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'deploy' -d 'Show deploy command help'
786
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'deploy' -d 'Show deploy command help'
787
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'run' -d 'Show run command help'
788
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'run' -d 'Show run command help'
789
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'watch' -d 'Show watch command help'
790
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'watch' -d 'Show watch command help'
791
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'cancel' -d 'Show cancel command help'
792
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'cancel' -d 'Show cancel command help'
793
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'resolve' -d 'Show resolve command help'
794
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'resolve' -d 'Show resolve command help'
795
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'fail' -d 'Show fail command help'
796
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'fail' -d 'Show fail command help'
797
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'activate' -d 'Show activate command help'
798
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'activate' -d 'Show activate command help'
799
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'publish' -d 'Show publish command help'
800
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'publish' -d 'Show publish command help'
801
+ complete -c c8ctl -n '__fish_seen_subcommand_from help' -a 'correlate' -d 'Show correlate command help'
802
+ complete -c c8 -n '__fish_seen_subcommand_from help' -a 'correlate' -d 'Show correlate command help'
666
803
  `;
667
804
  }
668
805
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"completion.js","sourceRoot":"","sources":["../../src/commands/completion.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC;;GAEG;AACH,SAAS,sBAAsB;IAC7B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+HR,CAAC;AACF,CAAC;AAED;;GAEG;AACH,SAAS,qBAAqB;IAC5B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmPR,CAAC;AACF,CAAC;AAED;;GAEG;AACH,SAAS,sBAAsB;IAC7B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmRR,CAAC;AACF,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,cAAc,CAAC,KAAc;IAC3C,MAAM,MAAM,GAAG,SAAS,EAAE,CAAC;IAE3B,IAAI,CAAC,KAAK,EAAE,CAAC;QACX,MAAM,CAAC,KAAK,CAAC,2DAA2D,CAAC,CAAC;QAC1E,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,MAAM,eAAe,GAAG,KAAK,CAAC,WAAW,EAAE,CAAC;IAE5C,QAAQ,eAAe,EAAE,CAAC;QACxB,KAAK,MAAM;YACT,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,CAAC,CAAC;YACtC,MAAM;QACR,KAAK,KAAK;YACR,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,CAAC,CAAC;YACrC,MAAM;QACR,KAAK,MAAM;YACT,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,CAAC,CAAC;YACtC,MAAM;QACR;YACE,MAAM,CAAC,KAAK,CAAC,kBAAkB,KAAK,EAAE,CAAC,CAAC;YACxC,MAAM,CAAC,IAAI,CAAC,mCAAmC,CAAC,CAAC;YACjD,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,CAAC;YACpD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACpB,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"completion.js","sourceRoot":"","sources":["../../src/commands/completion.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC;;GAEG;AACH,SAAS,sBAAsB;IAC7B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmIR,CAAC;AACF,CAAC;AAED;;GAEG;AACH,SAAS,qBAAqB;IAC5B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkSR,CAAC;AACF,CAAC;AAED;;GAEG;AACH,SAAS,sBAAsB;IAC7B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyWR,CAAC;AACF,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,cAAc,CAAC,KAAc;IAC3C,MAAM,MAAM,GAAG,SAAS,EAAE,CAAC;IAE3B,IAAI,CAAC,KAAK,EAAE,CAAC;QACX,MAAM,CAAC,KAAK,CAAC,2DAA2D,CAAC,CAAC;QAC1E,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,MAAM,eAAe,GAAG,KAAK,CAAC,WAAW,EAAE,CAAC;IAE5C,QAAQ,eAAe,EAAE,CAAC;QACxB,KAAK,MAAM;YACT,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,CAAC,CAAC;YACtC,MAAM;QACR,KAAK,KAAK;YACR,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,CAAC,CAAC;YACrC,MAAM;QACR,KAAK,MAAM;YACT,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,CAAC,CAAC;YACtC,MAAM;QACR;YACE,MAAM,CAAC,KAAK,CAAC,kBAAkB,KAAK,EAAE,CAAC,CAAC;YACxC,MAAM,CAAC,IAAI,CAAC,mCAAmC,CAAC,CAAC;YACjD,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,CAAC;YACpD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACpB,CAAC;AACH,CAAC"}
@@ -37,6 +37,50 @@ export declare function showCompleteHelp(): void;
37
37
  * Show detailed help for await command
38
38
  */
39
39
  export declare function showAwaitHelp(): void;
40
+ /**
41
+ * Show detailed help for mcp-proxy command
42
+ */
43
+ export declare function showMcpProxyHelp(): void;
44
+ /**
45
+ * Show detailed help for search command
46
+ */
47
+ export declare function showSearchHelp(): void;
48
+ /**
49
+ * Show detailed help for deploy command
50
+ */
51
+ export declare function showDeployHelp(): void;
52
+ /**
53
+ * Show detailed help for run command
54
+ */
55
+ export declare function showRunHelp(): void;
56
+ /**
57
+ * Show detailed help for watch command
58
+ */
59
+ export declare function showWatchHelp(): void;
60
+ /**
61
+ * Show detailed help for cancel command
62
+ */
63
+ export declare function showCancelHelp(): void;
64
+ /**
65
+ * Show detailed help for resolve command
66
+ */
67
+ export declare function showResolveHelp(): void;
68
+ /**
69
+ * Show detailed help for fail command
70
+ */
71
+ export declare function showFailHelp(): void;
72
+ /**
73
+ * Show detailed help for activate command
74
+ */
75
+ export declare function showActivateHelp(): void;
76
+ /**
77
+ * Show detailed help for publish command
78
+ */
79
+ export declare function showPublishHelp(): void;
80
+ /**
81
+ * Show detailed help for correlate command
82
+ */
83
+ export declare function showCorrelateHelp(): void;
40
84
  /**
41
85
  * Show detailed help for specific commands
42
86
  */
@@ -1 +1 @@
1
- {"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../../src/commands/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAWH;;GAEG;AACH,wBAAgB,UAAU,IAAI,MAAM,CAInC;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,IAAI,CAGlC;AAED;;GAEG;AACH,wBAAgB,QAAQ,IAAI,IAAI,CA8F/B;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAgCpD;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,IAAI,CAgDnC;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,IAAI,CAwClC;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAsBrC;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,IAAI,CAqBvC;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,IAAI,CA6BpC;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAqBrD"}
1
+ {"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../../src/commands/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAWH;;GAEG;AACH,wBAAgB,UAAU,IAAI,MAAM,CAInC;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,IAAI,CAGlC;AAED;;GAEG;AACH,wBAAgB,QAAQ,IAAI,IAAI,CAuJ/B;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAkCpD;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,IAAI,CAgDnC;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,IAAI,CAwClC;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAsBrC;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,IAAI,CAqBvC;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,IAAI,CA6BpC;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,IAAI,CAsDvC;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAqFrC;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CA8BrC;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,IAAI,CAmBlC;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,IAAI,CA4BpC;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAerC;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,IAAI,CAoBtC;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,IAAI,CAoBnC;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,IAAI,CAqBvC;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,IAAI,CAuBtC;AAED;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,IAAI,CAsBxC;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAuDrD"}