nexup-mcp-server 1.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.

Potentially problematic release.


This version of nexup-mcp-server might be problematic. Click here for more details.

Files changed (66) hide show
  1. package/README.md +41 -0
  2. package/dist/client/auth.d.ts +6 -0
  3. package/dist/client/auth.d.ts.map +1 -0
  4. package/dist/client/auth.js +14 -0
  5. package/dist/client/auth.js.map +1 -0
  6. package/dist/client/http-client.d.ts +33 -0
  7. package/dist/client/http-client.d.ts.map +1 -0
  8. package/dist/client/http-client.js +149 -0
  9. package/dist/client/http-client.js.map +1 -0
  10. package/dist/config.d.ts +7 -0
  11. package/dist/config.d.ts.map +1 -0
  12. package/dist/config.js +19 -0
  13. package/dist/config.js.map +1 -0
  14. package/dist/index.d.ts +3 -0
  15. package/dist/index.d.ts.map +1 -0
  16. package/dist/index.js +108 -0
  17. package/dist/index.js.map +1 -0
  18. package/dist/resources/crm-resources.d.ts +8 -0
  19. package/dist/resources/crm-resources.d.ts.map +1 -0
  20. package/dist/resources/crm-resources.js +501 -0
  21. package/dist/resources/crm-resources.js.map +1 -0
  22. package/dist/resources/index.d.ts +2 -0
  23. package/dist/resources/index.d.ts.map +1 -0
  24. package/dist/resources/index.js +2 -0
  25. package/dist/resources/index.js.map +1 -0
  26. package/dist/tools/customers.d.ts +221 -0
  27. package/dist/tools/customers.d.ts.map +1 -0
  28. package/dist/tools/customers.js +207 -0
  29. package/dist/tools/customers.js.map +1 -0
  30. package/dist/tools/index.d.ts +883 -0
  31. package/dist/tools/index.d.ts.map +1 -0
  32. package/dist/tools/index.js +38 -0
  33. package/dist/tools/index.js.map +1 -0
  34. package/dist/tools/notifications.d.ts +16 -0
  35. package/dist/tools/notifications.d.ts.map +1 -0
  36. package/dist/tools/notifications.js +47 -0
  37. package/dist/tools/notifications.js.map +1 -0
  38. package/dist/tools/prospects.d.ts +478 -0
  39. package/dist/tools/prospects.d.ts.map +1 -0
  40. package/dist/tools/prospects.js +336 -0
  41. package/dist/tools/prospects.js.map +1 -0
  42. package/dist/tools/tickets.d.ts +83 -0
  43. package/dist/tools/tickets.d.ts.map +1 -0
  44. package/dist/tools/tickets.js +171 -0
  45. package/dist/tools/tickets.js.map +1 -0
  46. package/dist/tools/transcripts.d.ts +97 -0
  47. package/dist/tools/transcripts.d.ts.map +1 -0
  48. package/dist/tools/transcripts.js +188 -0
  49. package/dist/tools/transcripts.js.map +1 -0
  50. package/dist/utils/errors.d.ts +9 -0
  51. package/dist/utils/errors.d.ts.map +1 -0
  52. package/dist/utils/errors.js +28 -0
  53. package/dist/utils/errors.js.map +1 -0
  54. package/dist/utils/formatters.d.ts +5 -0
  55. package/dist/utils/formatters.d.ts.map +1 -0
  56. package/dist/utils/formatters.js +21 -0
  57. package/dist/utils/formatters.js.map +1 -0
  58. package/dist/utils/logger.d.ts +4 -0
  59. package/dist/utils/logger.d.ts.map +1 -0
  60. package/dist/utils/logger.js +43 -0
  61. package/dist/utils/logger.js.map +1 -0
  62. package/dist/validation/schemas.d.ts +424 -0
  63. package/dist/validation/schemas.d.ts.map +1 -0
  64. package/dist/validation/schemas.js +114 -0
  65. package/dist/validation/schemas.js.map +1 -0
  66. package/package.json +34 -0
@@ -0,0 +1,883 @@
1
+ export declare const allTools: ({
2
+ name: string;
3
+ description: string;
4
+ inputSchema: {
5
+ type: string;
6
+ properties: {
7
+ search: {
8
+ type: string;
9
+ description: string;
10
+ };
11
+ status: {
12
+ type: string;
13
+ enum: string[];
14
+ description: string;
15
+ };
16
+ priority: {
17
+ type: string;
18
+ enum: string[];
19
+ description: string;
20
+ };
21
+ owner: {
22
+ type: string;
23
+ description: string;
24
+ };
25
+ companyName?: undefined;
26
+ address?: undefined;
27
+ industry?: undefined;
28
+ website?: undefined;
29
+ eventMetAt?: undefined;
30
+ nextAction?: undefined;
31
+ nextActionDueDate?: undefined;
32
+ notes?: undefined;
33
+ prospectId?: undefined;
34
+ firstName?: undefined;
35
+ lastName?: undefined;
36
+ email?: undefined;
37
+ phone?: undefined;
38
+ role?: undefined;
39
+ isPrimary?: undefined;
40
+ contactId?: undefined;
41
+ type?: undefined;
42
+ date?: undefined;
43
+ summary?: undefined;
44
+ outcome?: undefined;
45
+ contactFirstName?: undefined;
46
+ contactLastName?: undefined;
47
+ contactEmail?: undefined;
48
+ contactPhone?: undefined;
49
+ contactRole?: undefined;
50
+ };
51
+ required: never[];
52
+ };
53
+ } | {
54
+ name: string;
55
+ description: string;
56
+ inputSchema: {
57
+ type: string;
58
+ properties: {
59
+ companyName: {
60
+ type: string;
61
+ description: string;
62
+ };
63
+ address: {
64
+ type: string;
65
+ description: string;
66
+ };
67
+ industry: {
68
+ type: string;
69
+ description: string;
70
+ };
71
+ website: {
72
+ type: string;
73
+ description: string;
74
+ };
75
+ priority: {
76
+ type: string;
77
+ enum: string[];
78
+ description: string;
79
+ };
80
+ status: {
81
+ type: string;
82
+ enum: string[];
83
+ description: string;
84
+ };
85
+ eventMetAt: {
86
+ type: string;
87
+ description: string;
88
+ };
89
+ nextAction: {
90
+ type: string;
91
+ description: string;
92
+ };
93
+ nextActionDueDate: {
94
+ type: string;
95
+ description: string;
96
+ };
97
+ owner: {
98
+ type: string;
99
+ description: string;
100
+ };
101
+ notes: {
102
+ type: string;
103
+ description: string;
104
+ };
105
+ search?: undefined;
106
+ prospectId?: undefined;
107
+ firstName?: undefined;
108
+ lastName?: undefined;
109
+ email?: undefined;
110
+ phone?: undefined;
111
+ role?: undefined;
112
+ isPrimary?: undefined;
113
+ contactId?: undefined;
114
+ type?: undefined;
115
+ date?: undefined;
116
+ summary?: undefined;
117
+ outcome?: undefined;
118
+ contactFirstName?: undefined;
119
+ contactLastName?: undefined;
120
+ contactEmail?: undefined;
121
+ contactPhone?: undefined;
122
+ contactRole?: undefined;
123
+ };
124
+ required: string[];
125
+ };
126
+ } | {
127
+ name: string;
128
+ description: string;
129
+ inputSchema: {
130
+ type: string;
131
+ properties: {
132
+ prospectId: {
133
+ type: string;
134
+ description: string;
135
+ };
136
+ companyName: {
137
+ type: string;
138
+ description: string;
139
+ };
140
+ address: {
141
+ type: string;
142
+ description: string;
143
+ };
144
+ industry: {
145
+ type: string;
146
+ description: string;
147
+ };
148
+ website: {
149
+ type: string;
150
+ description: string;
151
+ };
152
+ priority: {
153
+ type: string;
154
+ enum: string[];
155
+ description: string;
156
+ };
157
+ status: {
158
+ type: string;
159
+ enum: string[];
160
+ description: string;
161
+ };
162
+ nextAction: {
163
+ type: string;
164
+ description: string;
165
+ };
166
+ nextActionDueDate: {
167
+ type: string;
168
+ description: string;
169
+ };
170
+ owner: {
171
+ type: string;
172
+ description: string;
173
+ };
174
+ notes: {
175
+ type: string;
176
+ description: string;
177
+ };
178
+ search?: undefined;
179
+ eventMetAt?: undefined;
180
+ firstName?: undefined;
181
+ lastName?: undefined;
182
+ email?: undefined;
183
+ phone?: undefined;
184
+ role?: undefined;
185
+ isPrimary?: undefined;
186
+ contactId?: undefined;
187
+ type?: undefined;
188
+ date?: undefined;
189
+ summary?: undefined;
190
+ outcome?: undefined;
191
+ contactFirstName?: undefined;
192
+ contactLastName?: undefined;
193
+ contactEmail?: undefined;
194
+ contactPhone?: undefined;
195
+ contactRole?: undefined;
196
+ };
197
+ required: string[];
198
+ };
199
+ } | {
200
+ name: string;
201
+ description: string;
202
+ inputSchema: {
203
+ type: string;
204
+ properties: {
205
+ prospectId: {
206
+ type: string;
207
+ description: string;
208
+ };
209
+ firstName: {
210
+ type: string;
211
+ description: string;
212
+ };
213
+ lastName: {
214
+ type: string;
215
+ description: string;
216
+ };
217
+ email: {
218
+ type: string;
219
+ description: string;
220
+ };
221
+ phone: {
222
+ type: string;
223
+ description: string;
224
+ };
225
+ role: {
226
+ type: string;
227
+ description: string;
228
+ };
229
+ isPrimary: {
230
+ type: string;
231
+ description: string;
232
+ };
233
+ notes: {
234
+ type: string;
235
+ description: string;
236
+ };
237
+ search?: undefined;
238
+ status?: undefined;
239
+ priority?: undefined;
240
+ owner?: undefined;
241
+ companyName?: undefined;
242
+ address?: undefined;
243
+ industry?: undefined;
244
+ website?: undefined;
245
+ eventMetAt?: undefined;
246
+ nextAction?: undefined;
247
+ nextActionDueDate?: undefined;
248
+ contactId?: undefined;
249
+ type?: undefined;
250
+ date?: undefined;
251
+ summary?: undefined;
252
+ outcome?: undefined;
253
+ contactFirstName?: undefined;
254
+ contactLastName?: undefined;
255
+ contactEmail?: undefined;
256
+ contactPhone?: undefined;
257
+ contactRole?: undefined;
258
+ };
259
+ required: string[];
260
+ };
261
+ } | {
262
+ name: string;
263
+ description: string;
264
+ inputSchema: {
265
+ type: string;
266
+ properties: {
267
+ prospectId: {
268
+ type: string;
269
+ description: string;
270
+ };
271
+ search?: undefined;
272
+ status?: undefined;
273
+ priority?: undefined;
274
+ owner?: undefined;
275
+ companyName?: undefined;
276
+ address?: undefined;
277
+ industry?: undefined;
278
+ website?: undefined;
279
+ eventMetAt?: undefined;
280
+ nextAction?: undefined;
281
+ nextActionDueDate?: undefined;
282
+ notes?: undefined;
283
+ firstName?: undefined;
284
+ lastName?: undefined;
285
+ email?: undefined;
286
+ phone?: undefined;
287
+ role?: undefined;
288
+ isPrimary?: undefined;
289
+ contactId?: undefined;
290
+ type?: undefined;
291
+ date?: undefined;
292
+ summary?: undefined;
293
+ outcome?: undefined;
294
+ contactFirstName?: undefined;
295
+ contactLastName?: undefined;
296
+ contactEmail?: undefined;
297
+ contactPhone?: undefined;
298
+ contactRole?: undefined;
299
+ };
300
+ required: string[];
301
+ };
302
+ } | {
303
+ name: string;
304
+ description: string;
305
+ inputSchema: {
306
+ type: string;
307
+ properties: {
308
+ prospectId: {
309
+ type: string;
310
+ description: string;
311
+ };
312
+ contactId: {
313
+ type: string;
314
+ description: string;
315
+ };
316
+ type: {
317
+ type: string;
318
+ enum: string[];
319
+ description: string;
320
+ };
321
+ date: {
322
+ type: string;
323
+ description: string;
324
+ };
325
+ summary: {
326
+ type: string;
327
+ description: string;
328
+ };
329
+ outcome: {
330
+ type: string;
331
+ enum: string[];
332
+ description: string;
333
+ };
334
+ search?: undefined;
335
+ status?: undefined;
336
+ priority?: undefined;
337
+ owner?: undefined;
338
+ companyName?: undefined;
339
+ address?: undefined;
340
+ industry?: undefined;
341
+ website?: undefined;
342
+ eventMetAt?: undefined;
343
+ nextAction?: undefined;
344
+ nextActionDueDate?: undefined;
345
+ notes?: undefined;
346
+ firstName?: undefined;
347
+ lastName?: undefined;
348
+ email?: undefined;
349
+ phone?: undefined;
350
+ role?: undefined;
351
+ isPrimary?: undefined;
352
+ contactFirstName?: undefined;
353
+ contactLastName?: undefined;
354
+ contactEmail?: undefined;
355
+ contactPhone?: undefined;
356
+ contactRole?: undefined;
357
+ };
358
+ required: string[];
359
+ };
360
+ } | {
361
+ name: string;
362
+ description: string;
363
+ inputSchema: {
364
+ type: string;
365
+ properties: {
366
+ prospectId: {
367
+ type: string;
368
+ description: string;
369
+ };
370
+ search?: undefined;
371
+ status?: undefined;
372
+ priority?: undefined;
373
+ owner?: undefined;
374
+ companyName?: undefined;
375
+ address?: undefined;
376
+ industry?: undefined;
377
+ website?: undefined;
378
+ eventMetAt?: undefined;
379
+ nextAction?: undefined;
380
+ nextActionDueDate?: undefined;
381
+ notes?: undefined;
382
+ firstName?: undefined;
383
+ lastName?: undefined;
384
+ email?: undefined;
385
+ phone?: undefined;
386
+ role?: undefined;
387
+ isPrimary?: undefined;
388
+ contactId?: undefined;
389
+ type?: undefined;
390
+ date?: undefined;
391
+ summary?: undefined;
392
+ outcome?: undefined;
393
+ contactFirstName?: undefined;
394
+ contactLastName?: undefined;
395
+ contactEmail?: undefined;
396
+ contactPhone?: undefined;
397
+ contactRole?: undefined;
398
+ };
399
+ required?: undefined;
400
+ };
401
+ } | {
402
+ name: string;
403
+ description: string;
404
+ inputSchema: {
405
+ type: string;
406
+ properties: {
407
+ companyName: {
408
+ type: string;
409
+ description: string;
410
+ };
411
+ address: {
412
+ type: string;
413
+ description: string;
414
+ };
415
+ industry: {
416
+ type: string;
417
+ description: string;
418
+ };
419
+ website: {
420
+ type: string;
421
+ description: string;
422
+ };
423
+ priority: {
424
+ type: string;
425
+ enum: string[];
426
+ description: string;
427
+ };
428
+ eventMetAt: {
429
+ type: string;
430
+ description: string;
431
+ };
432
+ notes: {
433
+ type: string;
434
+ description: string;
435
+ };
436
+ contactFirstName: {
437
+ type: string;
438
+ description: string;
439
+ };
440
+ contactLastName: {
441
+ type: string;
442
+ description: string;
443
+ };
444
+ contactEmail: {
445
+ type: string;
446
+ description: string;
447
+ };
448
+ contactPhone: {
449
+ type: string;
450
+ description: string;
451
+ };
452
+ contactRole: {
453
+ type: string;
454
+ description: string;
455
+ };
456
+ search?: undefined;
457
+ status?: undefined;
458
+ owner?: undefined;
459
+ nextAction?: undefined;
460
+ nextActionDueDate?: undefined;
461
+ prospectId?: undefined;
462
+ firstName?: undefined;
463
+ lastName?: undefined;
464
+ email?: undefined;
465
+ phone?: undefined;
466
+ role?: undefined;
467
+ isPrimary?: undefined;
468
+ contactId?: undefined;
469
+ type?: undefined;
470
+ date?: undefined;
471
+ summary?: undefined;
472
+ outcome?: undefined;
473
+ };
474
+ required: string[];
475
+ };
476
+ } | {
477
+ name: string;
478
+ description: string;
479
+ inputSchema: {
480
+ type: string;
481
+ properties: {
482
+ search: {
483
+ type: string;
484
+ description: string;
485
+ };
486
+ owner: {
487
+ type: string;
488
+ description: string;
489
+ };
490
+ companyName?: undefined;
491
+ address?: undefined;
492
+ industry?: undefined;
493
+ website?: undefined;
494
+ sentiment?: undefined;
495
+ notes?: undefined;
496
+ customerId?: undefined;
497
+ nextAction?: undefined;
498
+ nextActionDueDate?: undefined;
499
+ firstName?: undefined;
500
+ lastName?: undefined;
501
+ email?: undefined;
502
+ phone?: undefined;
503
+ role?: undefined;
504
+ isPrimary?: undefined;
505
+ };
506
+ required: never[];
507
+ };
508
+ } | {
509
+ name: string;
510
+ description: string;
511
+ inputSchema: {
512
+ type: string;
513
+ properties: {
514
+ companyName: {
515
+ type: string;
516
+ description: string;
517
+ };
518
+ address: {
519
+ type: string;
520
+ description: string;
521
+ };
522
+ industry: {
523
+ type: string;
524
+ description: string;
525
+ };
526
+ website: {
527
+ type: string;
528
+ description: string;
529
+ };
530
+ owner: {
531
+ type: string;
532
+ description: string;
533
+ };
534
+ sentiment: {
535
+ type: string;
536
+ description: string;
537
+ minimum: number;
538
+ maximum: number;
539
+ };
540
+ notes: {
541
+ type: string;
542
+ description: string;
543
+ };
544
+ search?: undefined;
545
+ customerId?: undefined;
546
+ nextAction?: undefined;
547
+ nextActionDueDate?: undefined;
548
+ firstName?: undefined;
549
+ lastName?: undefined;
550
+ email?: undefined;
551
+ phone?: undefined;
552
+ role?: undefined;
553
+ isPrimary?: undefined;
554
+ };
555
+ required: string[];
556
+ };
557
+ } | {
558
+ name: string;
559
+ description: string;
560
+ inputSchema: {
561
+ type: string;
562
+ properties: {
563
+ customerId: {
564
+ type: string;
565
+ description: string;
566
+ };
567
+ companyName: {
568
+ type: string;
569
+ description: string;
570
+ };
571
+ address: {
572
+ type: string;
573
+ description: string;
574
+ };
575
+ industry: {
576
+ type: string;
577
+ description: string;
578
+ };
579
+ website: {
580
+ type: string;
581
+ description: string;
582
+ };
583
+ sentiment: {
584
+ type: string;
585
+ description: string;
586
+ minimum: number;
587
+ maximum: number;
588
+ };
589
+ nextAction: {
590
+ type: string;
591
+ description: string;
592
+ };
593
+ nextActionDueDate: {
594
+ type: string;
595
+ description: string;
596
+ };
597
+ owner: {
598
+ type: string;
599
+ description: string;
600
+ };
601
+ notes: {
602
+ type: string;
603
+ description: string;
604
+ };
605
+ search?: undefined;
606
+ firstName?: undefined;
607
+ lastName?: undefined;
608
+ email?: undefined;
609
+ phone?: undefined;
610
+ role?: undefined;
611
+ isPrimary?: undefined;
612
+ };
613
+ required: string[];
614
+ };
615
+ } | {
616
+ name: string;
617
+ description: string;
618
+ inputSchema: {
619
+ type: string;
620
+ properties: {
621
+ customerId: {
622
+ type: string;
623
+ description: string;
624
+ };
625
+ firstName: {
626
+ type: string;
627
+ description: string;
628
+ };
629
+ lastName: {
630
+ type: string;
631
+ description: string;
632
+ };
633
+ email: {
634
+ type: string;
635
+ description: string;
636
+ };
637
+ phone: {
638
+ type: string;
639
+ description: string;
640
+ };
641
+ role: {
642
+ type: string;
643
+ description: string;
644
+ };
645
+ isPrimary: {
646
+ type: string;
647
+ description: string;
648
+ };
649
+ notes: {
650
+ type: string;
651
+ description: string;
652
+ };
653
+ search?: undefined;
654
+ owner?: undefined;
655
+ companyName?: undefined;
656
+ address?: undefined;
657
+ industry?: undefined;
658
+ website?: undefined;
659
+ sentiment?: undefined;
660
+ nextAction?: undefined;
661
+ nextActionDueDate?: undefined;
662
+ };
663
+ required: string[];
664
+ };
665
+ } | {
666
+ name: string;
667
+ description: string;
668
+ inputSchema: {
669
+ type: string;
670
+ properties: {
671
+ customerId: {
672
+ type: string;
673
+ description: string;
674
+ };
675
+ search?: undefined;
676
+ owner?: undefined;
677
+ companyName?: undefined;
678
+ address?: undefined;
679
+ industry?: undefined;
680
+ website?: undefined;
681
+ sentiment?: undefined;
682
+ notes?: undefined;
683
+ nextAction?: undefined;
684
+ nextActionDueDate?: undefined;
685
+ firstName?: undefined;
686
+ lastName?: undefined;
687
+ email?: undefined;
688
+ phone?: undefined;
689
+ role?: undefined;
690
+ isPrimary?: undefined;
691
+ };
692
+ required: string[];
693
+ };
694
+ } | {
695
+ name: string;
696
+ description: string;
697
+ inputSchema: {
698
+ type: string;
699
+ properties: {
700
+ entityType: {
701
+ type: string;
702
+ enum: string[];
703
+ description: string;
704
+ };
705
+ prospectId: {
706
+ type: string;
707
+ description: string;
708
+ };
709
+ customerId: {
710
+ type: string;
711
+ description: string;
712
+ };
713
+ date: {
714
+ type: string;
715
+ description: string;
716
+ };
717
+ duration: {
718
+ type: string;
719
+ description: string;
720
+ };
721
+ summary: {
722
+ type: string;
723
+ description: string;
724
+ };
725
+ transcript: {
726
+ type: string;
727
+ description: string;
728
+ };
729
+ sentiment: {
730
+ type: string;
731
+ description: string;
732
+ minimum: number;
733
+ maximum: number;
734
+ };
735
+ transcriptId?: undefined;
736
+ };
737
+ required: string[];
738
+ };
739
+ } | {
740
+ name: string;
741
+ description: string;
742
+ inputSchema: {
743
+ type: string;
744
+ properties: {
745
+ entityType: {
746
+ type: string;
747
+ enum: string[];
748
+ description: string;
749
+ };
750
+ prospectId: {
751
+ type: string;
752
+ description: string;
753
+ };
754
+ customerId: {
755
+ type: string;
756
+ description: string;
757
+ };
758
+ date?: undefined;
759
+ duration?: undefined;
760
+ summary?: undefined;
761
+ transcript?: undefined;
762
+ sentiment?: undefined;
763
+ transcriptId?: undefined;
764
+ };
765
+ required?: undefined;
766
+ };
767
+ } | {
768
+ name: string;
769
+ description: string;
770
+ inputSchema: {
771
+ type: string;
772
+ properties: {
773
+ transcriptId: {
774
+ type: string;
775
+ description: string;
776
+ };
777
+ entityType?: undefined;
778
+ prospectId?: undefined;
779
+ customerId?: undefined;
780
+ date?: undefined;
781
+ duration?: undefined;
782
+ summary?: undefined;
783
+ transcript?: undefined;
784
+ sentiment?: undefined;
785
+ };
786
+ required: string[];
787
+ };
788
+ } | {
789
+ name: string;
790
+ description: string;
791
+ inputSchema: {
792
+ type: string;
793
+ properties: {
794
+ customerId: {
795
+ type: string;
796
+ description: string;
797
+ };
798
+ title: {
799
+ type: string;
800
+ description: string;
801
+ };
802
+ description: {
803
+ type: string;
804
+ description: string;
805
+ };
806
+ priority: {
807
+ type: string;
808
+ enum: string[];
809
+ description: string;
810
+ };
811
+ assignee: {
812
+ type: string;
813
+ description: string;
814
+ };
815
+ dueDate: {
816
+ type: string;
817
+ description: string;
818
+ };
819
+ status?: undefined;
820
+ ticketId?: undefined;
821
+ };
822
+ required: string[];
823
+ };
824
+ } | {
825
+ name: string;
826
+ description: string;
827
+ inputSchema: {
828
+ type: string;
829
+ properties: {
830
+ customerId: {
831
+ type: string;
832
+ description: string;
833
+ };
834
+ status: {
835
+ type: string;
836
+ enum: string[];
837
+ description: string;
838
+ };
839
+ title?: undefined;
840
+ description?: undefined;
841
+ priority?: undefined;
842
+ assignee?: undefined;
843
+ dueDate?: undefined;
844
+ ticketId?: undefined;
845
+ };
846
+ required?: undefined;
847
+ };
848
+ } | {
849
+ name: string;
850
+ description: string;
851
+ inputSchema: {
852
+ type: string;
853
+ properties: {
854
+ ticketId: {
855
+ type: string;
856
+ description: string;
857
+ };
858
+ customerId?: undefined;
859
+ title?: undefined;
860
+ description?: undefined;
861
+ priority?: undefined;
862
+ assignee?: undefined;
863
+ dueDate?: undefined;
864
+ status?: undefined;
865
+ };
866
+ required: string[];
867
+ };
868
+ } | {
869
+ name: string;
870
+ description: string;
871
+ inputSchema: {
872
+ type: string;
873
+ properties: {
874
+ notificationId: {
875
+ type: string;
876
+ description: string;
877
+ };
878
+ };
879
+ required: string[];
880
+ };
881
+ })[];
882
+ export declare function handleToolCall(toolName: string, params: any): Promise<any>;
883
+ //# sourceMappingURL=index.d.ts.map