nowaikit 4.0.5 → 4.1.1

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 (62) hide show
  1. package/README.md +1 -1
  2. package/dist/a2a/agent-card.d.ts.map +1 -1
  3. package/dist/a2a/agent-card.js +2 -1
  4. package/dist/a2a/agent-card.js.map +1 -1
  5. package/dist/cli/setup.d.ts.map +1 -1
  6. package/dist/cli/setup.js +12 -1
  7. package/dist/cli/setup.js.map +1 -1
  8. package/dist/dashboard/index.d.ts.map +1 -1
  9. package/dist/dashboard/index.js +2 -1
  10. package/dist/dashboard/index.js.map +1 -1
  11. package/dist/direct/llm-client.d.ts +20 -2
  12. package/dist/direct/llm-client.d.ts.map +1 -1
  13. package/dist/direct/llm-client.js +257 -51
  14. package/dist/direct/llm-client.js.map +1 -1
  15. package/dist/server.d.ts.map +1 -1
  16. package/dist/server.js +41 -3
  17. package/dist/server.js.map +1 -1
  18. package/dist/servicenow/client.d.ts +2 -0
  19. package/dist/servicenow/client.d.ts.map +1 -1
  20. package/dist/servicenow/client.js +1 -1
  21. package/dist/servicenow/client.js.map +1 -1
  22. package/dist/tools/core.d.ts +97 -0
  23. package/dist/tools/core.d.ts.map +1 -1
  24. package/dist/tools/core.js +111 -9
  25. package/dist/tools/core.js.map +1 -1
  26. package/dist/tools/fluent.d.ts +83 -0
  27. package/dist/tools/fluent.d.ts.map +1 -1
  28. package/dist/tools/fluent.js +108 -4
  29. package/dist/tools/fluent.js.map +1 -1
  30. package/dist/tools/governance.d.ts +107 -0
  31. package/dist/tools/governance.d.ts.map +1 -0
  32. package/dist/tools/governance.js +149 -0
  33. package/dist/tools/governance.js.map +1 -0
  34. package/dist/tools/index.d.ts +346 -1811
  35. package/dist/tools/index.d.ts.map +1 -1
  36. package/dist/tools/index.js +64 -3
  37. package/dist/tools/index.js.map +1 -1
  38. package/dist/tools-manifest.json +189 -5
  39. package/dist/transport/auth-middleware.d.ts +3 -1
  40. package/dist/transport/auth-middleware.d.ts.map +1 -1
  41. package/dist/transport/auth-middleware.js +59 -5
  42. package/dist/transport/auth-middleware.js.map +1 -1
  43. package/dist/transport/index.d.ts.map +1 -1
  44. package/dist/transport/index.js +3 -2
  45. package/dist/transport/index.js.map +1 -1
  46. package/dist/utils/audit.d.ts +15 -0
  47. package/dist/utils/audit.d.ts.map +1 -0
  48. package/dist/utils/audit.js +48 -0
  49. package/dist/utils/audit.js.map +1 -0
  50. package/dist/utils/guardrails.d.ts +5 -0
  51. package/dist/utils/guardrails.d.ts.map +1 -0
  52. package/dist/utils/guardrails.js +50 -0
  53. package/dist/utils/guardrails.js.map +1 -0
  54. package/dist/utils/version.d.ts +3 -0
  55. package/dist/utils/version.d.ts.map +1 -0
  56. package/dist/utils/version.js +25 -0
  57. package/dist/utils/version.js.map +1 -0
  58. package/package.json +3 -2
  59. package/skills/README.md +21 -0
  60. package/skills/servicenow-cmdb-health-audit/SKILL.md +23 -0
  61. package/skills/servicenow-incident-triage/SKILL.md +22 -0
  62. package/skills/servicenow-safe-deployment/SKILL.md +24 -0
@@ -8,6 +8,12 @@
8
8
  * agile_manager, ai_developer, portal_developer, integration_engineer
9
9
  */
10
10
  import type { ServiceNowClient } from '../servicenow/client.js';
11
+ /** Search the full catalog by keyword, returning ranked matches. */
12
+ export declare function searchTools(query: string, limit?: number): Array<{
13
+ name: string;
14
+ description: string;
15
+ score: number;
16
+ }>;
11
17
  export declare function getTools(): ({
12
18
  name: string;
13
19
  description: string;
@@ -18,23 +24,12 @@ export declare function getTools(): ({
18
24
  type: string;
19
25
  description: string;
20
26
  };
21
- query: {
22
- type: string;
23
- description: string;
24
- };
25
- fields: {
26
- type: string;
27
- description: string;
28
- };
29
- limit: {
30
- type: string;
31
- description: string;
32
- };
33
- orderBy: {
34
- type: string;
35
- description: string;
36
- };
27
+ query?: undefined;
28
+ fields?: undefined;
29
+ limit?: undefined;
30
+ orderBy?: undefined;
37
31
  sys_id?: undefined;
32
+ dry_run?: undefined;
38
33
  user_identifier?: undefined;
39
34
  group_identifier?: undefined;
40
35
  ci_sys_id?: undefined;
@@ -61,11 +56,18 @@ export declare function getTools(): ({
61
56
  type: string;
62
57
  description: string;
63
58
  };
59
+ sys_id: {
60
+ type: string;
61
+ description: string;
62
+ };
63
+ fields: {
64
+ type: string;
65
+ description: string;
66
+ };
64
67
  query?: undefined;
65
- fields?: undefined;
66
68
  limit?: undefined;
67
69
  orderBy?: undefined;
68
- sys_id?: undefined;
70
+ dry_run?: undefined;
69
71
  user_identifier?: undefined;
70
72
  group_identifier?: undefined;
71
73
  ci_sys_id?: undefined;
@@ -92,17 +94,18 @@ export declare function getTools(): ({
92
94
  type: string;
93
95
  description: string;
94
96
  };
95
- sys_id: {
97
+ fields: {
96
98
  type: string;
97
99
  description: string;
98
100
  };
99
- fields: {
101
+ dry_run: {
100
102
  type: string;
101
103
  description: string;
102
104
  };
103
105
  query?: undefined;
104
106
  limit?: undefined;
105
107
  orderBy?: undefined;
108
+ sys_id?: undefined;
106
109
  user_identifier?: undefined;
107
110
  group_identifier?: undefined;
108
111
  ci_sys_id?: undefined;
@@ -129,14 +132,21 @@ export declare function getTools(): ({
129
132
  type: string;
130
133
  description: string;
131
134
  };
135
+ sys_id: {
136
+ type: string;
137
+ description: string;
138
+ };
132
139
  fields: {
133
140
  type: string;
134
141
  description: string;
135
142
  };
143
+ dry_run: {
144
+ type: string;
145
+ description: string;
146
+ };
136
147
  query?: undefined;
137
148
  limit?: undefined;
138
149
  orderBy?: undefined;
139
- sys_id?: undefined;
140
150
  user_identifier?: undefined;
141
151
  group_identifier?: undefined;
142
152
  ci_sys_id?: undefined;
@@ -167,6 +177,10 @@ export declare function getTools(): ({
167
177
  type: string;
168
178
  description: string;
169
179
  };
180
+ dry_run: {
181
+ type: string;
182
+ description: string;
183
+ };
170
184
  query?: undefined;
171
185
  fields?: undefined;
172
186
  limit?: undefined;
@@ -193,16 +207,17 @@ export declare function getTools(): ({
193
207
  inputSchema: {
194
208
  type: string;
195
209
  properties: {
196
- user_identifier: {
210
+ query: {
197
211
  type: string;
198
212
  description: string;
199
213
  };
200
214
  table?: undefined;
201
- query?: undefined;
202
215
  fields?: undefined;
203
216
  limit?: undefined;
204
217
  orderBy?: undefined;
205
218
  sys_id?: undefined;
219
+ dry_run?: undefined;
220
+ user_identifier?: undefined;
206
221
  group_identifier?: undefined;
207
222
  ci_sys_id?: undefined;
208
223
  active_only?: undefined;
@@ -224,7 +239,7 @@ export declare function getTools(): ({
224
239
  inputSchema: {
225
240
  type: string;
226
241
  properties: {
227
- group_identifier: {
242
+ user_identifier: {
228
243
  type: string;
229
244
  description: string;
230
245
  };
@@ -234,7 +249,8 @@ export declare function getTools(): ({
234
249
  limit?: undefined;
235
250
  orderBy?: undefined;
236
251
  sys_id?: undefined;
237
- user_identifier?: undefined;
252
+ dry_run?: undefined;
253
+ group_identifier?: undefined;
238
254
  ci_sys_id?: undefined;
239
255
  active_only?: undefined;
240
256
  service_sys_id?: undefined;
@@ -255,21 +271,19 @@ export declare function getTools(): ({
255
271
  inputSchema: {
256
272
  type: string;
257
273
  properties: {
258
- ci_sys_id: {
259
- type: string;
260
- description: string;
261
- };
262
- fields: {
274
+ group_identifier: {
263
275
  type: string;
264
276
  description: string;
265
277
  };
266
278
  table?: undefined;
267
279
  query?: undefined;
280
+ fields?: undefined;
268
281
  limit?: undefined;
269
282
  orderBy?: undefined;
270
283
  sys_id?: undefined;
284
+ dry_run?: undefined;
271
285
  user_identifier?: undefined;
272
- group_identifier?: undefined;
286
+ ci_sys_id?: undefined;
273
287
  active_only?: undefined;
274
288
  service_sys_id?: undefined;
275
289
  instruction?: undefined;
@@ -293,12 +307,16 @@ export declare function getTools(): ({
293
307
  type: string;
294
308
  description: string;
295
309
  };
310
+ fields: {
311
+ type: string;
312
+ description: string;
313
+ };
296
314
  table?: undefined;
297
315
  query?: undefined;
298
- fields?: undefined;
299
316
  limit?: undefined;
300
317
  orderBy?: undefined;
301
318
  sys_id?: undefined;
319
+ dry_run?: undefined;
302
320
  user_identifier?: undefined;
303
321
  group_identifier?: undefined;
304
322
  active_only?: undefined;
@@ -320,7 +338,7 @@ export declare function getTools(): ({
320
338
  inputSchema: {
321
339
  type: string;
322
340
  properties: {
323
- active_only: {
341
+ ci_sys_id: {
324
342
  type: string;
325
343
  description: string;
326
344
  };
@@ -330,9 +348,10 @@ export declare function getTools(): ({
330
348
  limit?: undefined;
331
349
  orderBy?: undefined;
332
350
  sys_id?: undefined;
351
+ dry_run?: undefined;
333
352
  user_identifier?: undefined;
334
353
  group_identifier?: undefined;
335
- ci_sys_id?: undefined;
354
+ active_only?: undefined;
336
355
  service_sys_id?: undefined;
337
356
  instruction?: undefined;
338
357
  name?: undefined;
@@ -343,7 +362,7 @@ export declare function getTools(): ({
343
362
  schedule_id?: undefined;
344
363
  mid_server?: undefined;
345
364
  };
346
- required: never[];
365
+ required: string[];
347
366
  };
348
367
  } | {
349
368
  name: string;
@@ -351,16 +370,20 @@ export declare function getTools(): ({
351
370
  inputSchema: {
352
371
  type: string;
353
372
  properties: {
373
+ active_only: {
374
+ type: string;
375
+ description: string;
376
+ };
354
377
  table?: undefined;
355
378
  query?: undefined;
356
379
  fields?: undefined;
357
380
  limit?: undefined;
358
381
  orderBy?: undefined;
359
382
  sys_id?: undefined;
383
+ dry_run?: undefined;
360
384
  user_identifier?: undefined;
361
385
  group_identifier?: undefined;
362
386
  ci_sys_id?: undefined;
363
- active_only?: undefined;
364
387
  service_sys_id?: undefined;
365
388
  instruction?: undefined;
366
389
  name?: undefined;
@@ -379,20 +402,18 @@ export declare function getTools(): ({
379
402
  inputSchema: {
380
403
  type: string;
381
404
  properties: {
382
- service_sys_id: {
383
- type: string;
384
- description: string;
385
- };
386
405
  table?: undefined;
387
406
  query?: undefined;
388
407
  fields?: undefined;
389
408
  limit?: undefined;
390
409
  orderBy?: undefined;
391
410
  sys_id?: undefined;
411
+ dry_run?: undefined;
392
412
  user_identifier?: undefined;
393
413
  group_identifier?: undefined;
394
414
  ci_sys_id?: undefined;
395
415
  active_only?: undefined;
416
+ service_sys_id?: undefined;
396
417
  instruction?: undefined;
397
418
  name?: undefined;
398
419
  parent?: undefined;
@@ -402,7 +423,7 @@ export declare function getTools(): ({
402
423
  schedule_id?: undefined;
403
424
  mid_server?: undefined;
404
425
  };
405
- required: string[];
426
+ required: never[];
406
427
  };
407
428
  } | {
408
429
  name: string;
@@ -410,23 +431,21 @@ export declare function getTools(): ({
410
431
  inputSchema: {
411
432
  type: string;
412
433
  properties: {
413
- query: {
414
- type: string;
415
- description: string;
416
- };
417
- limit: {
434
+ service_sys_id: {
418
435
  type: string;
419
436
  description: string;
420
437
  };
421
438
  table?: undefined;
439
+ query?: undefined;
422
440
  fields?: undefined;
441
+ limit?: undefined;
423
442
  orderBy?: undefined;
424
443
  sys_id?: undefined;
444
+ dry_run?: undefined;
425
445
  user_identifier?: undefined;
426
446
  group_identifier?: undefined;
427
447
  ci_sys_id?: undefined;
428
448
  active_only?: undefined;
429
- service_sys_id?: undefined;
430
449
  instruction?: undefined;
431
450
  name?: undefined;
432
451
  parent?: undefined;
@@ -457,6 +476,7 @@ export declare function getTools(): ({
457
476
  limit?: undefined;
458
477
  orderBy?: undefined;
459
478
  sys_id?: undefined;
479
+ dry_run?: undefined;
460
480
  user_identifier?: undefined;
461
481
  group_identifier?: undefined;
462
482
  ci_sys_id?: undefined;
@@ -488,6 +508,7 @@ export declare function getTools(): ({
488
508
  limit?: undefined;
489
509
  orderBy?: undefined;
490
510
  sys_id?: undefined;
511
+ dry_run?: undefined;
491
512
  user_identifier?: undefined;
492
513
  group_identifier?: undefined;
493
514
  ci_sys_id?: undefined;
@@ -527,6 +548,7 @@ export declare function getTools(): ({
527
548
  limit?: undefined;
528
549
  orderBy?: undefined;
529
550
  sys_id?: undefined;
551
+ dry_run?: undefined;
530
552
  user_identifier?: undefined;
531
553
  group_identifier?: undefined;
532
554
  ci_sys_id?: undefined;
@@ -560,6 +582,7 @@ export declare function getTools(): ({
560
582
  limit?: undefined;
561
583
  orderBy?: undefined;
562
584
  sys_id?: undefined;
585
+ dry_run?: undefined;
563
586
  user_identifier?: undefined;
564
587
  group_identifier?: undefined;
565
588
  active_only?: undefined;
@@ -594,6 +617,7 @@ export declare function getTools(): ({
594
617
  limit?: undefined;
595
618
  orderBy?: undefined;
596
619
  sys_id?: undefined;
620
+ dry_run?: undefined;
597
621
  user_identifier?: undefined;
598
622
  group_identifier?: undefined;
599
623
  ci_sys_id?: undefined;
@@ -608,6 +632,105 @@ export declare function getTools(): ({
608
632
  };
609
633
  required: string[];
610
634
  };
635
+ } | {
636
+ name: string;
637
+ description: string;
638
+ inputSchema: {
639
+ type: string;
640
+ properties: {
641
+ table: {
642
+ type: string;
643
+ description: string;
644
+ };
645
+ records: {
646
+ type: string;
647
+ items: {
648
+ type: string;
649
+ };
650
+ description: string;
651
+ };
652
+ rollback_on_error: {
653
+ type: string;
654
+ description: string;
655
+ };
656
+ dry_run: {
657
+ type: string;
658
+ description: string;
659
+ };
660
+ changes?: undefined;
661
+ instance_a?: undefined;
662
+ instance_b?: undefined;
663
+ query?: undefined;
664
+ property?: undefined;
665
+ };
666
+ required: string[];
667
+ };
668
+ } | {
669
+ name: string;
670
+ description: string;
671
+ inputSchema: {
672
+ type: string;
673
+ properties: {
674
+ changes: {
675
+ type: string;
676
+ description: string;
677
+ items: {
678
+ type: string;
679
+ properties: {
680
+ table: {
681
+ type: string;
682
+ };
683
+ sys_id: {
684
+ type: string;
685
+ };
686
+ };
687
+ required: string[];
688
+ };
689
+ };
690
+ table?: undefined;
691
+ records?: undefined;
692
+ rollback_on_error?: undefined;
693
+ dry_run?: undefined;
694
+ instance_a?: undefined;
695
+ instance_b?: undefined;
696
+ query?: undefined;
697
+ property?: undefined;
698
+ };
699
+ required: string[];
700
+ };
701
+ } | {
702
+ name: string;
703
+ description: string;
704
+ inputSchema: {
705
+ type: string;
706
+ properties: {
707
+ instance_a: {
708
+ type: string;
709
+ description: string;
710
+ };
711
+ instance_b: {
712
+ type: string;
713
+ description: string;
714
+ };
715
+ table: {
716
+ type: string;
717
+ description: string;
718
+ };
719
+ query: {
720
+ type: string;
721
+ description: string;
722
+ };
723
+ property: {
724
+ type: string;
725
+ description: string;
726
+ };
727
+ records?: undefined;
728
+ rollback_on_error?: undefined;
729
+ dry_run?: undefined;
730
+ changes?: undefined;
731
+ };
732
+ required: string[];
733
+ };
611
734
  } | {
612
735
  name: string;
613
736
  description: string;
@@ -1223,35 +1346,6 @@ export declare function getTools(): ({
1223
1346
  };
1224
1347
  required: never[];
1225
1348
  };
1226
- } | {
1227
- name: string;
1228
- description: string;
1229
- inputSchema: {
1230
- type: string;
1231
- properties: {
1232
- query: {
1233
- type: string;
1234
- description: string;
1235
- };
1236
- limit: {
1237
- type: string;
1238
- description: string;
1239
- };
1240
- knowledge_base: {
1241
- type: string;
1242
- description: string;
1243
- };
1244
- number_or_sysid?: undefined;
1245
- short_description?: undefined;
1246
- text?: undefined;
1247
- knowledge_base_sys_id?: undefined;
1248
- category?: undefined;
1249
- sys_id?: undefined;
1250
- fields?: undefined;
1251
- article_id?: undefined;
1252
- };
1253
- required: string[];
1254
- };
1255
1349
  } | {
1256
1350
  name: string;
1257
1351
  description: string;
@@ -1429,16 +1523,13 @@ export declare function getTools(): ({
1429
1523
  inputSchema: {
1430
1524
  type: string;
1431
1525
  properties: {
1432
- query: {
1433
- type: string;
1434
- description: string;
1435
- };
1436
- limit: {
1526
+ sys_id_or_name: {
1437
1527
  type: string;
1438
1528
  description: string;
1439
1529
  };
1440
1530
  category?: undefined;
1441
- sys_id_or_name?: undefined;
1531
+ limit?: undefined;
1532
+ query?: undefined;
1442
1533
  name?: undefined;
1443
1534
  short_description?: undefined;
1444
1535
  description?: undefined;
@@ -1473,48 +1564,7 @@ export declare function getTools(): ({
1473
1564
  inputSchema: {
1474
1565
  type: string;
1475
1566
  properties: {
1476
- sys_id_or_name: {
1477
- type: string;
1478
- description: string;
1479
- };
1480
- category?: undefined;
1481
- limit?: undefined;
1482
- query?: undefined;
1483
- name?: undefined;
1484
- short_description?: undefined;
1485
- description?: undefined;
1486
- price?: undefined;
1487
- delivery_time?: undefined;
1488
- active?: undefined;
1489
- roles?: undefined;
1490
- sys_id?: undefined;
1491
- fields?: undefined;
1492
- quantity?: undefined;
1493
- variables?: undefined;
1494
- table?: undefined;
1495
- approver_type?: undefined;
1496
- approver?: undefined;
1497
- condition?: undefined;
1498
- order?: undefined;
1499
- state?: undefined;
1500
- comments?: undefined;
1501
- task_sys_id?: undefined;
1502
- cat_item_id?: undefined;
1503
- question_text?: undefined;
1504
- type?: undefined;
1505
- mandatory?: undefined;
1506
- conditions?: undefined;
1507
- reverse_if_false?: undefined;
1508
- };
1509
- required: string[];
1510
- };
1511
- } | {
1512
- name: string;
1513
- description: string;
1514
- inputSchema: {
1515
- type: string;
1516
- properties: {
1517
- name: {
1567
+ name: {
1518
1568
  type: string;
1519
1569
  description: string;
1520
1570
  };
@@ -1761,53 +1811,6 @@ export declare function getTools(): ({
1761
1811
  };
1762
1812
  required: never[];
1763
1813
  };
1764
- } | {
1765
- name: string;
1766
- description: string;
1767
- inputSchema: {
1768
- type: string;
1769
- properties: {
1770
- query: {
1771
- type: string;
1772
- description: string;
1773
- };
1774
- state: {
1775
- type: string;
1776
- description: string;
1777
- };
1778
- limit: {
1779
- type: string;
1780
- description: string;
1781
- };
1782
- category?: undefined;
1783
- sys_id_or_name?: undefined;
1784
- name?: undefined;
1785
- short_description?: undefined;
1786
- description?: undefined;
1787
- price?: undefined;
1788
- delivery_time?: undefined;
1789
- active?: undefined;
1790
- roles?: undefined;
1791
- sys_id?: undefined;
1792
- fields?: undefined;
1793
- quantity?: undefined;
1794
- variables?: undefined;
1795
- table?: undefined;
1796
- approver_type?: undefined;
1797
- approver?: undefined;
1798
- condition?: undefined;
1799
- order?: undefined;
1800
- comments?: undefined;
1801
- task_sys_id?: undefined;
1802
- cat_item_id?: undefined;
1803
- question_text?: undefined;
1804
- type?: undefined;
1805
- mandatory?: undefined;
1806
- conditions?: undefined;
1807
- reverse_if_false?: undefined;
1808
- };
1809
- required: never[];
1810
- };
1811
1814
  } | {
1812
1815
  name: string;
1813
1816
  description: string;
@@ -1999,37 +2002,6 @@ export declare function getTools(): ({
1999
2002
  };
2000
2003
  required: string[];
2001
2004
  };
2002
- } | {
2003
- name: string;
2004
- description: string;
2005
- inputSchema: {
2006
- type: string;
2007
- properties: {
2008
- query: {
2009
- type: string;
2010
- description: string;
2011
- };
2012
- limit: {
2013
- type: string;
2014
- description: string;
2015
- };
2016
- user_name?: undefined;
2017
- email?: undefined;
2018
- first_name?: undefined;
2019
- last_name?: undefined;
2020
- title?: undefined;
2021
- department?: undefined;
2022
- sys_id?: undefined;
2023
- fields?: undefined;
2024
- name?: undefined;
2025
- description?: undefined;
2026
- manager?: undefined;
2027
- user_sys_id?: undefined;
2028
- group_sys_id?: undefined;
2029
- member_sys_id?: undefined;
2030
- };
2031
- required: never[];
2032
- };
2033
2005
  } | {
2034
2006
  name: string;
2035
2007
  description: string;
@@ -2301,67 +2273,6 @@ export declare function getTools(): ({
2301
2273
  };
2302
2274
  required: string[];
2303
2275
  };
2304
- } | {
2305
- name: string;
2306
- description: string;
2307
- inputSchema: {
2308
- type: string;
2309
- properties: {
2310
- table: {
2311
- type: string;
2312
- description: string;
2313
- };
2314
- group_by: {
2315
- type: string;
2316
- description: string;
2317
- };
2318
- aggregate: {
2319
- type: string;
2320
- description: string;
2321
- };
2322
- query: {
2323
- type: string;
2324
- description: string;
2325
- };
2326
- limit: {
2327
- type: string;
2328
- description: string;
2329
- };
2330
- search?: undefined;
2331
- category?: undefined;
2332
- sys_id_or_name?: undefined;
2333
- date_field?: undefined;
2334
- periods?: undefined;
2335
- widget_sys_id?: undefined;
2336
- time_range?: undefined;
2337
- fields?: undefined;
2338
- active?: undefined;
2339
- name?: undefined;
2340
- script?: undefined;
2341
- run_type?: undefined;
2342
- run_time?: undefined;
2343
- run_period?: undefined;
2344
- sys_id?: undefined;
2345
- title?: undefined;
2346
- type?: undefined;
2347
- field?: undefined;
2348
- roles?: undefined;
2349
- job_sys_id?: undefined;
2350
- status?: undefined;
2351
- report_id?: undefined;
2352
- frequency?: undefined;
2353
- recipients?: undefined;
2354
- day_of_week?: undefined;
2355
- day_of_month?: undefined;
2356
- format?: undefined;
2357
- conditions?: undefined;
2358
- unit?: undefined;
2359
- content?: undefined;
2360
- sections?: undefined;
2361
- capability?: undefined;
2362
- };
2363
- required: string[];
2364
- };
2365
2276
  } | {
2366
2277
  name: string;
2367
2278
  description: string;
@@ -2481,37 +2392,43 @@ export declare function getTools(): ({
2481
2392
  inputSchema: {
2482
2393
  type: string;
2483
2394
  properties: {
2484
- table: {
2395
+ name: {
2485
2396
  type: string;
2486
2397
  description: string;
2487
2398
  };
2488
- query: {
2399
+ script: {
2489
2400
  type: string;
2490
2401
  description: string;
2491
2402
  };
2492
- fields: {
2403
+ run_type: {
2493
2404
  type: string;
2494
2405
  description: string;
2495
2406
  };
2496
- limit: {
2407
+ run_time: {
2408
+ type: string;
2409
+ description: string;
2410
+ };
2411
+ run_period: {
2412
+ type: string;
2413
+ description: string;
2414
+ };
2415
+ active: {
2497
2416
  type: string;
2498
2417
  description: string;
2499
2418
  };
2500
2419
  search?: undefined;
2501
2420
  category?: undefined;
2421
+ limit?: undefined;
2502
2422
  sys_id_or_name?: undefined;
2423
+ table?: undefined;
2503
2424
  group_by?: undefined;
2504
2425
  aggregate?: undefined;
2426
+ query?: undefined;
2505
2427
  date_field?: undefined;
2506
2428
  periods?: undefined;
2507
2429
  widget_sys_id?: undefined;
2508
2430
  time_range?: undefined;
2509
- active?: undefined;
2510
- name?: undefined;
2511
- script?: undefined;
2512
- run_type?: undefined;
2513
- run_time?: undefined;
2514
- run_period?: undefined;
2431
+ fields?: undefined;
2515
2432
  sys_id?: undefined;
2516
2433
  title?: undefined;
2517
2434
  type?: undefined;
@@ -2539,32 +2456,32 @@ export declare function getTools(): ({
2539
2456
  inputSchema: {
2540
2457
  type: string;
2541
2458
  properties: {
2542
- query: {
2459
+ sys_id: {
2543
2460
  type: string;
2544
2461
  description: string;
2545
2462
  };
2546
- limit: {
2463
+ fields: {
2547
2464
  type: string;
2548
2465
  description: string;
2549
2466
  };
2550
2467
  search?: undefined;
2551
2468
  category?: undefined;
2469
+ limit?: undefined;
2552
2470
  sys_id_or_name?: undefined;
2553
2471
  table?: undefined;
2554
2472
  group_by?: undefined;
2555
2473
  aggregate?: undefined;
2474
+ query?: undefined;
2556
2475
  date_field?: undefined;
2557
2476
  periods?: undefined;
2558
2477
  widget_sys_id?: undefined;
2559
2478
  time_range?: undefined;
2560
- fields?: undefined;
2561
2479
  active?: undefined;
2562
2480
  name?: undefined;
2563
2481
  script?: undefined;
2564
2482
  run_type?: undefined;
2565
2483
  run_time?: undefined;
2566
2484
  run_period?: undefined;
2567
- sys_id?: undefined;
2568
2485
  title?: undefined;
2569
2486
  type?: undefined;
2570
2487
  field?: undefined;
@@ -2583,7 +2500,7 @@ export declare function getTools(): ({
2583
2500
  sections?: undefined;
2584
2501
  capability?: undefined;
2585
2502
  };
2586
- required: never[];
2503
+ required: string[];
2587
2504
  };
2588
2505
  } | {
2589
2506
  name: string;
@@ -2591,35 +2508,29 @@ export declare function getTools(): ({
2591
2508
  inputSchema: {
2592
2509
  type: string;
2593
2510
  properties: {
2594
- active: {
2595
- type: string;
2596
- description: string;
2597
- };
2598
- query: {
2599
- type: string;
2600
- description: string;
2601
- };
2602
- limit: {
2511
+ sys_id: {
2603
2512
  type: string;
2604
2513
  description: string;
2605
2514
  };
2606
2515
  search?: undefined;
2607
2516
  category?: undefined;
2517
+ limit?: undefined;
2608
2518
  sys_id_or_name?: undefined;
2609
2519
  table?: undefined;
2610
2520
  group_by?: undefined;
2611
2521
  aggregate?: undefined;
2522
+ query?: undefined;
2612
2523
  date_field?: undefined;
2613
2524
  periods?: undefined;
2614
2525
  widget_sys_id?: undefined;
2615
2526
  time_range?: undefined;
2616
2527
  fields?: undefined;
2528
+ active?: undefined;
2617
2529
  name?: undefined;
2618
2530
  script?: undefined;
2619
2531
  run_type?: undefined;
2620
2532
  run_time?: undefined;
2621
2533
  run_period?: undefined;
2622
- sys_id?: undefined;
2623
2534
  title?: undefined;
2624
2535
  type?: undefined;
2625
2536
  field?: undefined;
@@ -2638,7 +2549,7 @@ export declare function getTools(): ({
2638
2549
  sections?: undefined;
2639
2550
  capability?: undefined;
2640
2551
  };
2641
- required: never[];
2552
+ required: string[];
2642
2553
  };
2643
2554
  } | {
2644
2555
  name: string;
@@ -2646,27 +2557,35 @@ export declare function getTools(): ({
2646
2557
  inputSchema: {
2647
2558
  type: string;
2648
2559
  properties: {
2649
- name: {
2560
+ title: {
2650
2561
  type: string;
2651
2562
  description: string;
2652
2563
  };
2653
- script: {
2564
+ table: {
2654
2565
  type: string;
2655
2566
  description: string;
2656
2567
  };
2657
- run_type: {
2568
+ type: {
2658
2569
  type: string;
2659
2570
  description: string;
2660
2571
  };
2661
- run_time: {
2572
+ field: {
2662
2573
  type: string;
2663
2574
  description: string;
2664
2575
  };
2665
- run_period: {
2576
+ query: {
2666
2577
  type: string;
2667
2578
  description: string;
2668
2579
  };
2669
- active: {
2580
+ aggregate: {
2581
+ type: string;
2582
+ description: string;
2583
+ };
2584
+ group_by: {
2585
+ type: string;
2586
+ description: string;
2587
+ };
2588
+ roles: {
2670
2589
  type: string;
2671
2590
  description: string;
2672
2591
  };
@@ -2674,20 +2593,18 @@ export declare function getTools(): ({
2674
2593
  category?: undefined;
2675
2594
  limit?: undefined;
2676
2595
  sys_id_or_name?: undefined;
2677
- table?: undefined;
2678
- group_by?: undefined;
2679
- aggregate?: undefined;
2680
- query?: undefined;
2681
2596
  date_field?: undefined;
2682
2597
  periods?: undefined;
2683
2598
  widget_sys_id?: undefined;
2684
2599
  time_range?: undefined;
2685
2600
  fields?: undefined;
2601
+ active?: undefined;
2602
+ name?: undefined;
2603
+ script?: undefined;
2604
+ run_type?: undefined;
2605
+ run_time?: undefined;
2606
+ run_period?: undefined;
2686
2607
  sys_id?: undefined;
2687
- title?: undefined;
2688
- type?: undefined;
2689
- field?: undefined;
2690
- roles?: undefined;
2691
2608
  job_sys_id?: undefined;
2692
2609
  status?: undefined;
2693
2610
  report_id?: undefined;
@@ -2710,17 +2627,20 @@ export declare function getTools(): ({
2710
2627
  inputSchema: {
2711
2628
  type: string;
2712
2629
  properties: {
2713
- sys_id: {
2630
+ job_sys_id: {
2714
2631
  type: string;
2715
2632
  description: string;
2716
2633
  };
2717
- fields: {
2634
+ status: {
2635
+ type: string;
2636
+ description: string;
2637
+ };
2638
+ limit: {
2718
2639
  type: string;
2719
2640
  description: string;
2720
2641
  };
2721
2642
  search?: undefined;
2722
2643
  category?: undefined;
2723
- limit?: undefined;
2724
2644
  sys_id_or_name?: undefined;
2725
2645
  table?: undefined;
2726
2646
  group_by?: undefined;
@@ -2730,188 +2650,14 @@ export declare function getTools(): ({
2730
2650
  periods?: undefined;
2731
2651
  widget_sys_id?: undefined;
2732
2652
  time_range?: undefined;
2653
+ fields?: undefined;
2733
2654
  active?: undefined;
2734
2655
  name?: undefined;
2735
2656
  script?: undefined;
2736
2657
  run_type?: undefined;
2737
2658
  run_time?: undefined;
2738
2659
  run_period?: undefined;
2739
- title?: undefined;
2740
- type?: undefined;
2741
- field?: undefined;
2742
- roles?: undefined;
2743
- job_sys_id?: undefined;
2744
- status?: undefined;
2745
- report_id?: undefined;
2746
- frequency?: undefined;
2747
- recipients?: undefined;
2748
- day_of_week?: undefined;
2749
- day_of_month?: undefined;
2750
- format?: undefined;
2751
- conditions?: undefined;
2752
- unit?: undefined;
2753
- content?: undefined;
2754
- sections?: undefined;
2755
- capability?: undefined;
2756
- };
2757
- required: string[];
2758
- };
2759
- } | {
2760
- name: string;
2761
- description: string;
2762
- inputSchema: {
2763
- type: string;
2764
- properties: {
2765
- sys_id: {
2766
- type: string;
2767
- description: string;
2768
- };
2769
- search?: undefined;
2770
- category?: undefined;
2771
- limit?: undefined;
2772
- sys_id_or_name?: undefined;
2773
- table?: undefined;
2774
- group_by?: undefined;
2775
- aggregate?: undefined;
2776
- query?: undefined;
2777
- date_field?: undefined;
2778
- periods?: undefined;
2779
- widget_sys_id?: undefined;
2780
- time_range?: undefined;
2781
- fields?: undefined;
2782
- active?: undefined;
2783
- name?: undefined;
2784
- script?: undefined;
2785
- run_type?: undefined;
2786
- run_time?: undefined;
2787
- run_period?: undefined;
2788
- title?: undefined;
2789
- type?: undefined;
2790
- field?: undefined;
2791
- roles?: undefined;
2792
- job_sys_id?: undefined;
2793
- status?: undefined;
2794
- report_id?: undefined;
2795
- frequency?: undefined;
2796
- recipients?: undefined;
2797
- day_of_week?: undefined;
2798
- day_of_month?: undefined;
2799
- format?: undefined;
2800
- conditions?: undefined;
2801
- unit?: undefined;
2802
- content?: undefined;
2803
- sections?: undefined;
2804
- capability?: undefined;
2805
- };
2806
- required: string[];
2807
- };
2808
- } | {
2809
- name: string;
2810
- description: string;
2811
- inputSchema: {
2812
- type: string;
2813
- properties: {
2814
- title: {
2815
- type: string;
2816
- description: string;
2817
- };
2818
- table: {
2819
- type: string;
2820
- description: string;
2821
- };
2822
- type: {
2823
- type: string;
2824
- description: string;
2825
- };
2826
- field: {
2827
- type: string;
2828
- description: string;
2829
- };
2830
- query: {
2831
- type: string;
2832
- description: string;
2833
- };
2834
- aggregate: {
2835
- type: string;
2836
- description: string;
2837
- };
2838
- group_by: {
2839
- type: string;
2840
- description: string;
2841
- };
2842
- roles: {
2843
- type: string;
2844
- description: string;
2845
- };
2846
- search?: undefined;
2847
- category?: undefined;
2848
- limit?: undefined;
2849
- sys_id_or_name?: undefined;
2850
- date_field?: undefined;
2851
- periods?: undefined;
2852
- widget_sys_id?: undefined;
2853
- time_range?: undefined;
2854
- fields?: undefined;
2855
- active?: undefined;
2856
- name?: undefined;
2857
- script?: undefined;
2858
- run_type?: undefined;
2859
- run_time?: undefined;
2860
- run_period?: undefined;
2861
- sys_id?: undefined;
2862
- job_sys_id?: undefined;
2863
- status?: undefined;
2864
- report_id?: undefined;
2865
- frequency?: undefined;
2866
- recipients?: undefined;
2867
- day_of_week?: undefined;
2868
- day_of_month?: undefined;
2869
- format?: undefined;
2870
- conditions?: undefined;
2871
- unit?: undefined;
2872
- content?: undefined;
2873
- sections?: undefined;
2874
- capability?: undefined;
2875
- };
2876
- required: string[];
2877
- };
2878
- } | {
2879
- name: string;
2880
- description: string;
2881
- inputSchema: {
2882
- type: string;
2883
- properties: {
2884
- job_sys_id: {
2885
- type: string;
2886
- description: string;
2887
- };
2888
- status: {
2889
- type: string;
2890
- description: string;
2891
- };
2892
- limit: {
2893
- type: string;
2894
- description: string;
2895
- };
2896
- search?: undefined;
2897
- category?: undefined;
2898
- sys_id_or_name?: undefined;
2899
- table?: undefined;
2900
- group_by?: undefined;
2901
- aggregate?: undefined;
2902
- query?: undefined;
2903
- date_field?: undefined;
2904
- periods?: undefined;
2905
- widget_sys_id?: undefined;
2906
- time_range?: undefined;
2907
- fields?: undefined;
2908
- active?: undefined;
2909
- name?: undefined;
2910
- script?: undefined;
2911
- run_type?: undefined;
2912
- run_time?: undefined;
2913
- run_period?: undefined;
2914
- sys_id?: undefined;
2660
+ sys_id?: undefined;
2915
2661
  title?: undefined;
2916
2662
  type?: undefined;
2917
2663
  field?: undefined;
@@ -3139,32 +2885,6 @@ export declare function getTools(): ({
3139
2885
  };
3140
2886
  required: string[];
3141
2887
  };
3142
- } | {
3143
- name: string;
3144
- description: string;
3145
- inputSchema: {
3146
- type: string;
3147
- properties: {
3148
- active: {
3149
- type: string;
3150
- description: string;
3151
- };
3152
- query: {
3153
- type: string;
3154
- description: string;
3155
- };
3156
- limit: {
3157
- type: string;
3158
- description: string;
3159
- };
3160
- sys_id_or_name?: undefined;
3161
- sys_id?: undefined;
3162
- suite_sys_id?: undefined;
3163
- result_sys_id?: undefined;
3164
- suite_result_sys_id?: undefined;
3165
- };
3166
- required: never[];
3167
- };
3168
2888
  } | {
3169
2889
  name: string;
3170
2890
  description: string;
@@ -3305,40 +3025,6 @@ export declare function getTools(): ({
3305
3025
  };
3306
3026
  required: string[];
3307
3027
  };
3308
- } | {
3309
- name: string;
3310
- description: string;
3311
- inputSchema: {
3312
- type: string;
3313
- properties: {
3314
- query: {
3315
- type: string;
3316
- description: string;
3317
- };
3318
- sources: {
3319
- type: string;
3320
- items: {
3321
- type: string;
3322
- };
3323
- description: string;
3324
- };
3325
- limit: {
3326
- type: string;
3327
- description: string;
3328
- };
3329
- question?: undefined;
3330
- table?: undefined;
3331
- sys_id?: undefined;
3332
- incident_sys_id?: undefined;
3333
- short_description?: undefined;
3334
- description?: undefined;
3335
- active?: undefined;
3336
- category?: undefined;
3337
- playbook_sys_id?: undefined;
3338
- context?: undefined;
3339
- };
3340
- required: string[];
3341
- };
3342
3028
  } | {
3343
3029
  name: string;
3344
3030
  description: string;
@@ -3750,19 +3436,13 @@ export declare function getTools(): ({
3750
3436
  inputSchema: {
3751
3437
  type: string;
3752
3438
  properties: {
3753
- query: {
3754
- type: string;
3755
- description: string;
3756
- };
3757
- active: {
3758
- type: string;
3759
- description: string;
3760
- };
3761
- limit: {
3439
+ sys_id_or_name: {
3762
3440
  type: string;
3763
3441
  description: string;
3764
3442
  };
3765
3443
  table?: undefined;
3444
+ active?: undefined;
3445
+ limit?: undefined;
3766
3446
  sys_id?: undefined;
3767
3447
  name?: undefined;
3768
3448
  when?: undefined;
@@ -3770,7 +3450,7 @@ export declare function getTools(): ({
3770
3450
  condition?: undefined;
3771
3451
  order?: undefined;
3772
3452
  fields?: undefined;
3773
- sys_id_or_name?: undefined;
3453
+ query?: undefined;
3774
3454
  api_name?: undefined;
3775
3455
  access?: undefined;
3776
3456
  type?: undefined;
@@ -3788,7 +3468,7 @@ export declare function getTools(): ({
3788
3468
  roles?: undefined;
3789
3469
  description?: undefined;
3790
3470
  };
3791
- required: never[];
3471
+ required: string[];
3792
3472
  };
3793
3473
  } | {
3794
3474
  name: string;
@@ -3796,47 +3476,7 @@ export declare function getTools(): ({
3796
3476
  inputSchema: {
3797
3477
  type: string;
3798
3478
  properties: {
3799
- sys_id_or_name: {
3800
- type: string;
3801
- description: string;
3802
- };
3803
- table?: undefined;
3804
- active?: undefined;
3805
- limit?: undefined;
3806
- sys_id?: undefined;
3807
- name?: undefined;
3808
- when?: undefined;
3809
- script?: undefined;
3810
- condition?: undefined;
3811
- order?: undefined;
3812
- fields?: undefined;
3813
- query?: undefined;
3814
- api_name?: undefined;
3815
- access?: undefined;
3816
- type?: undefined;
3817
- state?: undefined;
3818
- field_name?: undefined;
3819
- global?: undefined;
3820
- short_description?: undefined;
3821
- conditions?: undefined;
3822
- run_scripts?: undefined;
3823
- action_name?: undefined;
3824
- form_button?: undefined;
3825
- list_button?: undefined;
3826
- operation?: undefined;
3827
- admin_overrides?: undefined;
3828
- roles?: undefined;
3829
- description?: undefined;
3830
- };
3831
- required: string[];
3832
- };
3833
- } | {
3834
- name: string;
3835
- description: string;
3836
- inputSchema: {
3837
- type: string;
3838
- properties: {
3839
- name: {
3479
+ name: {
3840
3480
  type: string;
3841
3481
  description: string;
3842
3482
  };
@@ -5093,54 +4733,6 @@ export declare function getTools(): ({
5093
4733
  };
5094
4734
  required: string[];
5095
4735
  };
5096
- } | {
5097
- name: string;
5098
- description: string;
5099
- inputSchema: {
5100
- type: string;
5101
- properties: {
5102
- account: {
5103
- type: string;
5104
- description: string;
5105
- };
5106
- contact: {
5107
- type: string;
5108
- description: string;
5109
- };
5110
- state: {
5111
- type: string;
5112
- description: string;
5113
- };
5114
- priority: {
5115
- type: string;
5116
- description: string;
5117
- };
5118
- limit: {
5119
- type: string;
5120
- description: string;
5121
- };
5122
- query: {
5123
- type: string;
5124
- description: string;
5125
- };
5126
- short_description?: undefined;
5127
- category?: undefined;
5128
- subcategory?: undefined;
5129
- description?: undefined;
5130
- product?: undefined;
5131
- assignment_group?: undefined;
5132
- number_or_sysid?: undefined;
5133
- sys_id?: undefined;
5134
- fields?: undefined;
5135
- resolution_code?: undefined;
5136
- resolution_notes?: undefined;
5137
- name_or_sysid?: undefined;
5138
- active?: undefined;
5139
- account_sysid?: undefined;
5140
- case_sysid?: undefined;
5141
- };
5142
- required: never[];
5143
- };
5144
4736
  } | {
5145
4737
  name: string;
5146
4738
  description: string;
@@ -5213,84 +4805,6 @@ export declare function getTools(): ({
5213
4805
  };
5214
4806
  required: string[];
5215
4807
  };
5216
- } | {
5217
- name: string;
5218
- description: string;
5219
- inputSchema: {
5220
- type: string;
5221
- properties: {
5222
- query: {
5223
- type: string;
5224
- description: string;
5225
- };
5226
- active: {
5227
- type: string;
5228
- description: string;
5229
- };
5230
- limit: {
5231
- type: string;
5232
- description: string;
5233
- };
5234
- short_description?: undefined;
5235
- account?: undefined;
5236
- contact?: undefined;
5237
- category?: undefined;
5238
- subcategory?: undefined;
5239
- priority?: undefined;
5240
- description?: undefined;
5241
- product?: undefined;
5242
- assignment_group?: undefined;
5243
- number_or_sysid?: undefined;
5244
- sys_id?: undefined;
5245
- fields?: undefined;
5246
- state?: undefined;
5247
- resolution_code?: undefined;
5248
- resolution_notes?: undefined;
5249
- name_or_sysid?: undefined;
5250
- account_sysid?: undefined;
5251
- case_sysid?: undefined;
5252
- };
5253
- required: never[];
5254
- };
5255
- } | {
5256
- name: string;
5257
- description: string;
5258
- inputSchema: {
5259
- type: string;
5260
- properties: {
5261
- account_sysid: {
5262
- type: string;
5263
- description: string;
5264
- };
5265
- query: {
5266
- type: string;
5267
- description: string;
5268
- };
5269
- limit: {
5270
- type: string;
5271
- description: string;
5272
- };
5273
- short_description?: undefined;
5274
- account?: undefined;
5275
- contact?: undefined;
5276
- category?: undefined;
5277
- subcategory?: undefined;
5278
- priority?: undefined;
5279
- description?: undefined;
5280
- product?: undefined;
5281
- assignment_group?: undefined;
5282
- number_or_sysid?: undefined;
5283
- sys_id?: undefined;
5284
- fields?: undefined;
5285
- state?: undefined;
5286
- resolution_code?: undefined;
5287
- resolution_notes?: undefined;
5288
- name_or_sysid?: undefined;
5289
- active?: undefined;
5290
- case_sysid?: undefined;
5291
- };
5292
- required: never[];
5293
- };
5294
4808
  } | {
5295
4809
  name: string;
5296
4810
  description: string;
@@ -5324,42 +4838,6 @@ export declare function getTools(): ({
5324
4838
  };
5325
4839
  required: string[];
5326
4840
  };
5327
- } | {
5328
- name: string;
5329
- description: string;
5330
- inputSchema: {
5331
- type: string;
5332
- properties: {
5333
- query: {
5334
- type: string;
5335
- description: string;
5336
- };
5337
- limit: {
5338
- type: string;
5339
- description: string;
5340
- };
5341
- short_description?: undefined;
5342
- account?: undefined;
5343
- contact?: undefined;
5344
- category?: undefined;
5345
- subcategory?: undefined;
5346
- priority?: undefined;
5347
- description?: undefined;
5348
- product?: undefined;
5349
- assignment_group?: undefined;
5350
- number_or_sysid?: undefined;
5351
- sys_id?: undefined;
5352
- fields?: undefined;
5353
- state?: undefined;
5354
- resolution_code?: undefined;
5355
- resolution_notes?: undefined;
5356
- name_or_sysid?: undefined;
5357
- active?: undefined;
5358
- account_sysid?: undefined;
5359
- case_sysid?: undefined;
5360
- };
5361
- required: never[];
5362
- };
5363
4841
  } | {
5364
4842
  name: string;
5365
4843
  description: string;
@@ -5520,10 +4998,6 @@ export declare function getTools(): ({
5520
4998
  type: string;
5521
4999
  description: string;
5522
5000
  };
5523
- severity: {
5524
- type: string;
5525
- description: string;
5526
- };
5527
5001
  category: {
5528
5002
  type: string;
5529
5003
  description: string;
@@ -5532,18 +5006,16 @@ export declare function getTools(): ({
5532
5006
  type: string;
5533
5007
  description: string;
5534
5008
  };
5535
- query: {
5536
- type: string;
5537
- description: string;
5538
- };
5539
5009
  short_description?: undefined;
5540
5010
  subcategory?: undefined;
5011
+ severity?: undefined;
5541
5012
  description?: undefined;
5542
5013
  affected_cis?: undefined;
5543
5014
  assignment_group?: undefined;
5544
5015
  number_or_sysid?: undefined;
5545
5016
  sys_id?: undefined;
5546
5017
  fields?: undefined;
5018
+ query?: undefined;
5547
5019
  ci_sysid?: undefined;
5548
5020
  risk_sysid?: undefined;
5549
5021
  type?: undefined;
@@ -5570,15 +5042,11 @@ export declare function getTools(): ({
5570
5042
  inputSchema: {
5571
5043
  type: string;
5572
5044
  properties: {
5573
- state: {
5574
- type: string;
5575
- description: string;
5576
- };
5577
- severity: {
5045
+ risk_sysid: {
5578
5046
  type: string;
5579
5047
  description: string;
5580
5048
  };
5581
- ci_sysid: {
5049
+ state: {
5582
5050
  type: string;
5583
5051
  description: string;
5584
5052
  };
@@ -5586,20 +5054,18 @@ export declare function getTools(): ({
5586
5054
  type: string;
5587
5055
  description: string;
5588
5056
  };
5589
- query: {
5590
- type: string;
5591
- description: string;
5592
- };
5593
5057
  short_description?: undefined;
5594
5058
  category?: undefined;
5595
5059
  subcategory?: undefined;
5060
+ severity?: undefined;
5596
5061
  description?: undefined;
5597
5062
  affected_cis?: undefined;
5598
5063
  assignment_group?: undefined;
5599
5064
  number_or_sysid?: undefined;
5600
5065
  sys_id?: undefined;
5601
5066
  fields?: undefined;
5602
- risk_sysid?: undefined;
5067
+ query?: undefined;
5068
+ ci_sysid?: undefined;
5603
5069
  type?: undefined;
5604
5070
  active?: undefined;
5605
5071
  playbook_sys_id?: undefined;
@@ -5624,7 +5090,7 @@ export declare function getTools(): ({
5624
5090
  inputSchema: {
5625
5091
  type: string;
5626
5092
  properties: {
5627
- state: {
5093
+ active: {
5628
5094
  type: string;
5629
5095
  description: string;
5630
5096
  };
@@ -5645,11 +5111,11 @@ export declare function getTools(): ({
5645
5111
  number_or_sysid?: undefined;
5646
5112
  sys_id?: undefined;
5647
5113
  fields?: undefined;
5114
+ state?: undefined;
5648
5115
  query?: undefined;
5649
5116
  ci_sysid?: undefined;
5650
5117
  risk_sysid?: undefined;
5651
5118
  type?: undefined;
5652
- active?: undefined;
5653
5119
  playbook_sys_id?: undefined;
5654
5120
  incident_sys_id?: undefined;
5655
5121
  parameters?: undefined;
@@ -5672,15 +5138,15 @@ export declare function getTools(): ({
5672
5138
  inputSchema: {
5673
5139
  type: string;
5674
5140
  properties: {
5675
- risk_sysid: {
5141
+ playbook_sys_id: {
5676
5142
  type: string;
5677
5143
  description: string;
5678
5144
  };
5679
- state: {
5145
+ incident_sys_id: {
5680
5146
  type: string;
5681
5147
  description: string;
5682
5148
  };
5683
- limit: {
5149
+ parameters: {
5684
5150
  type: string;
5685
5151
  description: string;
5686
5152
  };
@@ -5694,13 +5160,13 @@ export declare function getTools(): ({
5694
5160
  number_or_sysid?: undefined;
5695
5161
  sys_id?: undefined;
5696
5162
  fields?: undefined;
5163
+ state?: undefined;
5164
+ limit?: undefined;
5697
5165
  query?: undefined;
5698
5166
  ci_sysid?: undefined;
5167
+ risk_sysid?: undefined;
5699
5168
  type?: undefined;
5700
5169
  active?: undefined;
5701
- playbook_sys_id?: undefined;
5702
- incident_sys_id?: undefined;
5703
- parameters?: undefined;
5704
5170
  days?: undefined;
5705
5171
  ci_sys_ids?: undefined;
5706
5172
  group?: undefined;
@@ -5712,7 +5178,7 @@ export declare function getTools(): ({
5712
5178
  policy_sys_id?: undefined;
5713
5179
  control_sys_id?: undefined;
5714
5180
  };
5715
- required: never[];
5181
+ required: string[];
5716
5182
  };
5717
5183
  } | {
5718
5184
  name: string;
@@ -5720,15 +5186,7 @@ export declare function getTools(): ({
5720
5186
  inputSchema: {
5721
5187
  type: string;
5722
5188
  properties: {
5723
- query: {
5724
- type: string;
5725
- description: string;
5726
- };
5727
- type: {
5728
- type: string;
5729
- description: string;
5730
- };
5731
- limit: {
5189
+ days: {
5732
5190
  type: string;
5733
5191
  description: string;
5734
5192
  };
@@ -5743,13 +5201,15 @@ export declare function getTools(): ({
5743
5201
  sys_id?: undefined;
5744
5202
  fields?: undefined;
5745
5203
  state?: undefined;
5204
+ limit?: undefined;
5205
+ query?: undefined;
5746
5206
  ci_sysid?: undefined;
5747
5207
  risk_sysid?: undefined;
5208
+ type?: undefined;
5748
5209
  active?: undefined;
5749
5210
  playbook_sys_id?: undefined;
5750
5211
  incident_sys_id?: undefined;
5751
5212
  parameters?: undefined;
5752
- days?: undefined;
5753
5213
  ci_sys_ids?: undefined;
5754
5214
  group?: undefined;
5755
5215
  scan_type?: undefined;
@@ -5760,7 +5220,7 @@ export declare function getTools(): ({
5760
5220
  policy_sys_id?: undefined;
5761
5221
  control_sys_id?: undefined;
5762
5222
  };
5763
- required: string[];
5223
+ required: never[];
5764
5224
  };
5765
5225
  } | {
5766
5226
  name: string;
@@ -5768,145 +5228,7 @@ export declare function getTools(): ({
5768
5228
  inputSchema: {
5769
5229
  type: string;
5770
5230
  properties: {
5771
- active: {
5772
- type: string;
5773
- description: string;
5774
- };
5775
- category: {
5776
- type: string;
5777
- description: string;
5778
- };
5779
- limit: {
5780
- type: string;
5781
- description: string;
5782
- };
5783
- short_description?: undefined;
5784
- subcategory?: undefined;
5785
- severity?: undefined;
5786
- description?: undefined;
5787
- affected_cis?: undefined;
5788
- assignment_group?: undefined;
5789
- number_or_sysid?: undefined;
5790
- sys_id?: undefined;
5791
- fields?: undefined;
5792
- state?: undefined;
5793
- query?: undefined;
5794
- ci_sysid?: undefined;
5795
- risk_sysid?: undefined;
5796
- type?: undefined;
5797
- playbook_sys_id?: undefined;
5798
- incident_sys_id?: undefined;
5799
- parameters?: undefined;
5800
- days?: undefined;
5801
- ci_sys_ids?: undefined;
5802
- group?: undefined;
5803
- scan_type?: undefined;
5804
- name?: undefined;
5805
- impact?: undefined;
5806
- likelihood?: undefined;
5807
- owner?: undefined;
5808
- policy_sys_id?: undefined;
5809
- control_sys_id?: undefined;
5810
- };
5811
- required: never[];
5812
- };
5813
- } | {
5814
- name: string;
5815
- description: string;
5816
- inputSchema: {
5817
- type: string;
5818
- properties: {
5819
- playbook_sys_id: {
5820
- type: string;
5821
- description: string;
5822
- };
5823
- incident_sys_id: {
5824
- type: string;
5825
- description: string;
5826
- };
5827
- parameters: {
5828
- type: string;
5829
- description: string;
5830
- };
5831
- short_description?: undefined;
5832
- category?: undefined;
5833
- subcategory?: undefined;
5834
- severity?: undefined;
5835
- description?: undefined;
5836
- affected_cis?: undefined;
5837
- assignment_group?: undefined;
5838
- number_or_sysid?: undefined;
5839
- sys_id?: undefined;
5840
- fields?: undefined;
5841
- state?: undefined;
5842
- limit?: undefined;
5843
- query?: undefined;
5844
- ci_sysid?: undefined;
5845
- risk_sysid?: undefined;
5846
- type?: undefined;
5847
- active?: undefined;
5848
- days?: undefined;
5849
- ci_sys_ids?: undefined;
5850
- group?: undefined;
5851
- scan_type?: undefined;
5852
- name?: undefined;
5853
- impact?: undefined;
5854
- likelihood?: undefined;
5855
- owner?: undefined;
5856
- policy_sys_id?: undefined;
5857
- control_sys_id?: undefined;
5858
- };
5859
- required: string[];
5860
- };
5861
- } | {
5862
- name: string;
5863
- description: string;
5864
- inputSchema: {
5865
- type: string;
5866
- properties: {
5867
- days: {
5868
- type: string;
5869
- description: string;
5870
- };
5871
- short_description?: undefined;
5872
- category?: undefined;
5873
- subcategory?: undefined;
5874
- severity?: undefined;
5875
- description?: undefined;
5876
- affected_cis?: undefined;
5877
- assignment_group?: undefined;
5878
- number_or_sysid?: undefined;
5879
- sys_id?: undefined;
5880
- fields?: undefined;
5881
- state?: undefined;
5882
- limit?: undefined;
5883
- query?: undefined;
5884
- ci_sysid?: undefined;
5885
- risk_sysid?: undefined;
5886
- type?: undefined;
5887
- active?: undefined;
5888
- playbook_sys_id?: undefined;
5889
- incident_sys_id?: undefined;
5890
- parameters?: undefined;
5891
- ci_sys_ids?: undefined;
5892
- group?: undefined;
5893
- scan_type?: undefined;
5894
- name?: undefined;
5895
- impact?: undefined;
5896
- likelihood?: undefined;
5897
- owner?: undefined;
5898
- policy_sys_id?: undefined;
5899
- control_sys_id?: undefined;
5900
- };
5901
- required: never[];
5902
- };
5903
- } | {
5904
- name: string;
5905
- description: string;
5906
- inputSchema: {
5907
- type: string;
5908
- properties: {
5909
- ci_sys_ids: {
5231
+ ci_sys_ids: {
5910
5232
  type: string;
5911
5233
  items: {
5912
5234
  type: string;
@@ -6146,46 +5468,6 @@ export declare function getTools(): ({
6146
5468
  };
6147
5469
  required: never[];
6148
5470
  };
6149
- } | {
6150
- name: string;
6151
- description: string;
6152
- inputSchema: {
6153
- type: string;
6154
- properties: {
6155
- query: {
6156
- type: string;
6157
- description: string;
6158
- };
6159
- active: {
6160
- type: string;
6161
- description: string;
6162
- };
6163
- category: {
6164
- type: string;
6165
- description: string;
6166
- };
6167
- limit: {
6168
- type: string;
6169
- description: string;
6170
- };
6171
- name_or_sysid?: undefined;
6172
- flow_sys_id?: undefined;
6173
- inputs?: undefined;
6174
- execution_sysid?: undefined;
6175
- status?: undefined;
6176
- name?: undefined;
6177
- description?: undefined;
6178
- trigger_type?: undefined;
6179
- trigger_table?: undefined;
6180
- scope?: undefined;
6181
- outputs?: undefined;
6182
- script?: undefined;
6183
- type?: undefined;
6184
- test_inputs?: undefined;
6185
- days?: undefined;
6186
- };
6187
- required: never[];
6188
- };
6189
5471
  } | {
6190
5472
  name: string;
6191
5473
  description: string;
@@ -6320,80 +5602,6 @@ export declare function getTools(): ({
6320
5602
  };
6321
5603
  required: string[];
6322
5604
  };
6323
- } | {
6324
- name: string;
6325
- description: string;
6326
- inputSchema: {
6327
- type: string;
6328
- properties: {
6329
- query: {
6330
- type: string;
6331
- description: string;
6332
- };
6333
- active: {
6334
- type: string;
6335
- description: string;
6336
- };
6337
- limit: {
6338
- type: string;
6339
- description: string;
6340
- };
6341
- category?: undefined;
6342
- name_or_sysid?: undefined;
6343
- flow_sys_id?: undefined;
6344
- inputs?: undefined;
6345
- execution_sysid?: undefined;
6346
- status?: undefined;
6347
- name?: undefined;
6348
- description?: undefined;
6349
- trigger_type?: undefined;
6350
- trigger_table?: undefined;
6351
- scope?: undefined;
6352
- outputs?: undefined;
6353
- script?: undefined;
6354
- type?: undefined;
6355
- test_inputs?: undefined;
6356
- days?: undefined;
6357
- };
6358
- required: never[];
6359
- };
6360
- } | {
6361
- name: string;
6362
- description: string;
6363
- inputSchema: {
6364
- type: string;
6365
- properties: {
6366
- query: {
6367
- type: string;
6368
- description: string;
6369
- };
6370
- category: {
6371
- type: string;
6372
- description: string;
6373
- };
6374
- limit: {
6375
- type: string;
6376
- description: string;
6377
- };
6378
- active?: undefined;
6379
- name_or_sysid?: undefined;
6380
- flow_sys_id?: undefined;
6381
- inputs?: undefined;
6382
- execution_sysid?: undefined;
6383
- status?: undefined;
6384
- name?: undefined;
6385
- description?: undefined;
6386
- trigger_type?: undefined;
6387
- trigger_table?: undefined;
6388
- scope?: undefined;
6389
- outputs?: undefined;
6390
- script?: undefined;
6391
- type?: undefined;
6392
- test_inputs?: undefined;
6393
- days?: undefined;
6394
- };
6395
- required: never[];
6396
- };
6397
5605
  } | {
6398
5606
  name: string;
6399
5607
  description: string;
@@ -6634,44 +5842,6 @@ export declare function getTools(): ({
6634
5842
  };
6635
5843
  required: string[];
6636
5844
  };
6637
- } | {
6638
- name: string;
6639
- description: string;
6640
- inputSchema: {
6641
- type: string;
6642
- properties: {
6643
- query: {
6644
- type: string;
6645
- description: string;
6646
- };
6647
- limit: {
6648
- type: string;
6649
- description: string;
6650
- };
6651
- title?: undefined;
6652
- url_suffix?: undefined;
6653
- default_homepage?: undefined;
6654
- theme?: undefined;
6655
- logo?: undefined;
6656
- description?: undefined;
6657
- id?: undefined;
6658
- portal_sys_id?: undefined;
6659
- sys_id?: undefined;
6660
- id_or_sysid?: undefined;
6661
- name?: undefined;
6662
- template?: undefined;
6663
- css?: undefined;
6664
- client_script?: undefined;
6665
- server_script?: undefined;
6666
- option_schema?: undefined;
6667
- demo_data?: undefined;
6668
- fields?: undefined;
6669
- widget_sys_id?: undefined;
6670
- sys_id_or_name?: undefined;
6671
- app_sys_id?: undefined;
6672
- };
6673
- required: never[];
6674
- };
6675
5845
  } | {
6676
5846
  name: string;
6677
5847
  description: string;
@@ -6771,61 +5941,20 @@ export declare function getTools(): ({
6771
5941
  description: string;
6772
5942
  inputSchema: {
6773
5943
  type: string;
6774
- properties: {
6775
- id: {
6776
- type: string;
6777
- description: string;
6778
- };
6779
- query?: undefined;
6780
- limit?: undefined;
6781
- title?: undefined;
6782
- url_suffix?: undefined;
6783
- default_homepage?: undefined;
6784
- theme?: undefined;
6785
- logo?: undefined;
6786
- description?: undefined;
6787
- portal_sys_id?: undefined;
6788
- sys_id?: undefined;
6789
- id_or_sysid?: undefined;
6790
- name?: undefined;
6791
- template?: undefined;
6792
- css?: undefined;
6793
- client_script?: undefined;
6794
- server_script?: undefined;
6795
- option_schema?: undefined;
6796
- demo_data?: undefined;
6797
- fields?: undefined;
6798
- widget_sys_id?: undefined;
6799
- sys_id_or_name?: undefined;
6800
- app_sys_id?: undefined;
6801
- };
6802
- required: string[];
6803
- };
6804
- } | {
6805
- name: string;
6806
- description: string;
6807
- inputSchema: {
6808
- type: string;
6809
- properties: {
6810
- portal_sys_id: {
6811
- type: string;
6812
- description: string;
6813
- };
6814
- query: {
6815
- type: string;
6816
- description: string;
6817
- };
6818
- limit: {
5944
+ properties: {
5945
+ id: {
6819
5946
  type: string;
6820
5947
  description: string;
6821
5948
  };
5949
+ query?: undefined;
5950
+ limit?: undefined;
6822
5951
  title?: undefined;
6823
5952
  url_suffix?: undefined;
6824
5953
  default_homepage?: undefined;
6825
5954
  theme?: undefined;
6826
5955
  logo?: undefined;
6827
5956
  description?: undefined;
6828
- id?: undefined;
5957
+ portal_sys_id?: undefined;
6829
5958
  sys_id?: undefined;
6830
5959
  id_or_sysid?: undefined;
6831
5960
  name?: undefined;
@@ -7079,47 +6208,6 @@ export declare function getTools(): ({
7079
6208
  };
7080
6209
  required: string[];
7081
6210
  };
7082
- } | {
7083
- name: string;
7084
- description: string;
7085
- inputSchema: {
7086
- type: string;
7087
- properties: {
7088
- app_sys_id: {
7089
- type: string;
7090
- description: string;
7091
- };
7092
- query: {
7093
- type: string;
7094
- description: string;
7095
- };
7096
- limit: {
7097
- type: string;
7098
- description: string;
7099
- };
7100
- title?: undefined;
7101
- url_suffix?: undefined;
7102
- default_homepage?: undefined;
7103
- theme?: undefined;
7104
- logo?: undefined;
7105
- description?: undefined;
7106
- id?: undefined;
7107
- portal_sys_id?: undefined;
7108
- sys_id?: undefined;
7109
- id_or_sysid?: undefined;
7110
- name?: undefined;
7111
- template?: undefined;
7112
- css?: undefined;
7113
- client_script?: undefined;
7114
- server_script?: undefined;
7115
- option_schema?: undefined;
7116
- demo_data?: undefined;
7117
- fields?: undefined;
7118
- widget_sys_id?: undefined;
7119
- sys_id_or_name?: undefined;
7120
- };
7121
- required: string[];
7122
- };
7123
6211
  } | {
7124
6212
  name: string;
7125
6213
  description: string;
@@ -7155,44 +6243,6 @@ export declare function getTools(): ({
7155
6243
  };
7156
6244
  required: never[];
7157
6245
  };
7158
- } | {
7159
- name: string;
7160
- description: string;
7161
- inputSchema: {
7162
- type: string;
7163
- properties: {
7164
- query: {
7165
- type: string;
7166
- description: string;
7167
- };
7168
- limit: {
7169
- type: string;
7170
- description: string;
7171
- };
7172
- sys_id_or_name?: undefined;
7173
- rest_message_sys_id?: undefined;
7174
- name?: undefined;
7175
- endpoint?: undefined;
7176
- description?: undefined;
7177
- use_mutual_auth?: undefined;
7178
- authentication_type?: undefined;
7179
- target_table?: undefined;
7180
- transform_map_sys_id?: undefined;
7181
- import_set_sys_id?: undefined;
7182
- state?: undefined;
7183
- sys_id?: undefined;
7184
- staging_table?: undefined;
7185
- data?: undefined;
7186
- type?: undefined;
7187
- name_or_sysid?: undefined;
7188
- table?: undefined;
7189
- event_name?: undefined;
7190
- record_sys_id?: undefined;
7191
- parm1?: undefined;
7192
- parm2?: undefined;
7193
- };
7194
- required: never[];
7195
- };
7196
6246
  } | {
7197
6247
  name: string;
7198
6248
  description: string;
@@ -7313,47 +6363,6 @@ export declare function getTools(): ({
7313
6363
  };
7314
6364
  required: string[];
7315
6365
  };
7316
- } | {
7317
- name: string;
7318
- description: string;
7319
- inputSchema: {
7320
- type: string;
7321
- properties: {
7322
- query: {
7323
- type: string;
7324
- description: string;
7325
- };
7326
- target_table: {
7327
- type: string;
7328
- description: string;
7329
- };
7330
- limit: {
7331
- type: string;
7332
- description: string;
7333
- };
7334
- sys_id_or_name?: undefined;
7335
- rest_message_sys_id?: undefined;
7336
- name?: undefined;
7337
- endpoint?: undefined;
7338
- description?: undefined;
7339
- use_mutual_auth?: undefined;
7340
- authentication_type?: undefined;
7341
- transform_map_sys_id?: undefined;
7342
- import_set_sys_id?: undefined;
7343
- state?: undefined;
7344
- sys_id?: undefined;
7345
- staging_table?: undefined;
7346
- data?: undefined;
7347
- type?: undefined;
7348
- name_or_sysid?: undefined;
7349
- table?: undefined;
7350
- event_name?: undefined;
7351
- record_sys_id?: undefined;
7352
- parm1?: undefined;
7353
- parm2?: undefined;
7354
- };
7355
- required: never[];
7356
- };
7357
6366
  } | {
7358
6367
  name: string;
7359
6368
  description: string;
@@ -7430,47 +6439,6 @@ export declare function getTools(): ({
7430
6439
  };
7431
6440
  required: string[];
7432
6441
  };
7433
- } | {
7434
- name: string;
7435
- description: string;
7436
- inputSchema: {
7437
- type: string;
7438
- properties: {
7439
- state: {
7440
- type: string;
7441
- description: string;
7442
- };
7443
- query: {
7444
- type: string;
7445
- description: string;
7446
- };
7447
- limit: {
7448
- type: string;
7449
- description: string;
7450
- };
7451
- sys_id_or_name?: undefined;
7452
- rest_message_sys_id?: undefined;
7453
- name?: undefined;
7454
- endpoint?: undefined;
7455
- description?: undefined;
7456
- use_mutual_auth?: undefined;
7457
- authentication_type?: undefined;
7458
- target_table?: undefined;
7459
- transform_map_sys_id?: undefined;
7460
- import_set_sys_id?: undefined;
7461
- sys_id?: undefined;
7462
- staging_table?: undefined;
7463
- data?: undefined;
7464
- type?: undefined;
7465
- name_or_sysid?: undefined;
7466
- table?: undefined;
7467
- event_name?: undefined;
7468
- record_sys_id?: undefined;
7469
- parm1?: undefined;
7470
- parm2?: undefined;
7471
- };
7472
- required: never[];
7473
- };
7474
6442
  } | {
7475
6443
  name: string;
7476
6444
  description: string;
@@ -7544,47 +6512,6 @@ export declare function getTools(): ({
7544
6512
  };
7545
6513
  required: string[];
7546
6514
  };
7547
- } | {
7548
- name: string;
7549
- description: string;
7550
- inputSchema: {
7551
- type: string;
7552
- properties: {
7553
- query: {
7554
- type: string;
7555
- description: string;
7556
- };
7557
- type: {
7558
- type: string;
7559
- description: string;
7560
- };
7561
- limit: {
7562
- type: string;
7563
- description: string;
7564
- };
7565
- sys_id_or_name?: undefined;
7566
- rest_message_sys_id?: undefined;
7567
- name?: undefined;
7568
- endpoint?: undefined;
7569
- description?: undefined;
7570
- use_mutual_auth?: undefined;
7571
- authentication_type?: undefined;
7572
- target_table?: undefined;
7573
- transform_map_sys_id?: undefined;
7574
- import_set_sys_id?: undefined;
7575
- state?: undefined;
7576
- sys_id?: undefined;
7577
- staging_table?: undefined;
7578
- data?: undefined;
7579
- name_or_sysid?: undefined;
7580
- table?: undefined;
7581
- event_name?: undefined;
7582
- record_sys_id?: undefined;
7583
- parm1?: undefined;
7584
- parm2?: undefined;
7585
- };
7586
- required: never[];
7587
- };
7588
6515
  } | {
7589
6516
  name: string;
7590
6517
  description: string;
@@ -7726,76 +6653,26 @@ export declare function getTools(): ({
7726
6653
  type: string;
7727
6654
  description: string;
7728
6655
  };
7729
- query?: undefined;
7730
- sys_id_or_name?: undefined;
7731
- rest_message_sys_id?: undefined;
7732
- name?: undefined;
7733
- endpoint?: undefined;
7734
- description?: undefined;
7735
- use_mutual_auth?: undefined;
7736
- authentication_type?: undefined;
7737
- target_table?: undefined;
7738
- transform_map_sys_id?: undefined;
7739
- import_set_sys_id?: undefined;
7740
- sys_id?: undefined;
7741
- staging_table?: undefined;
7742
- data?: undefined;
7743
- type?: undefined;
7744
- name_or_sysid?: undefined;
7745
- table?: undefined;
7746
- record_sys_id?: undefined;
7747
- parm1?: undefined;
7748
- parm2?: undefined;
7749
- };
7750
- required: never[];
7751
- };
7752
- } | {
7753
- name: string;
7754
- description: string;
7755
- inputSchema: {
7756
- type: string;
7757
- properties: {
7758
- query: {
7759
- type: string;
7760
- description: string;
7761
- };
7762
- table: {
7763
- type: string;
7764
- description: string;
7765
- };
7766
- event: {
7767
- type: string;
7768
- description: string;
7769
- };
7770
- active: {
7771
- type: string;
7772
- description: string;
7773
- };
7774
- limit: {
7775
- type: string;
7776
- description: string;
7777
- };
6656
+ query?: undefined;
7778
6657
  sys_id_or_name?: undefined;
6658
+ rest_message_sys_id?: undefined;
7779
6659
  name?: undefined;
7780
- subject?: undefined;
7781
- message_html?: undefined;
7782
- recipients?: undefined;
7783
- condition?: undefined;
6660
+ endpoint?: undefined;
6661
+ description?: undefined;
6662
+ use_mutual_auth?: undefined;
6663
+ authentication_type?: undefined;
6664
+ target_table?: undefined;
6665
+ transform_map_sys_id?: undefined;
6666
+ import_set_sys_id?: undefined;
7784
6667
  sys_id?: undefined;
7785
- fields?: undefined;
7786
- state?: undefined;
7787
- recipient?: undefined;
6668
+ staging_table?: undefined;
6669
+ data?: undefined;
6670
+ type?: undefined;
6671
+ name_or_sysid?: undefined;
6672
+ table?: undefined;
7788
6673
  record_sys_id?: undefined;
7789
- attachment_sys_id?: undefined;
7790
- file_name?: undefined;
7791
- content_type?: undefined;
7792
- content_base64?: undefined;
7793
- user_sys_id?: undefined;
7794
- notification_sys_id?: undefined;
7795
- body?: undefined;
7796
- channels?: undefined;
7797
- notification_id?: undefined;
7798
- schedule?: undefined;
6674
+ parm1?: undefined;
6675
+ parm2?: undefined;
7799
6676
  };
7800
6677
  required: never[];
7801
6678
  };
@@ -8154,47 +7031,6 @@ export declare function getTools(): ({
8154
7031
  };
8155
7032
  required: string[];
8156
7033
  };
8157
- } | {
8158
- name: string;
8159
- description: string;
8160
- inputSchema: {
8161
- type: string;
8162
- properties: {
8163
- query: {
8164
- type: string;
8165
- description: string;
8166
- };
8167
- limit: {
8168
- type: string;
8169
- description: string;
8170
- };
8171
- table?: undefined;
8172
- event?: undefined;
8173
- active?: undefined;
8174
- sys_id_or_name?: undefined;
8175
- name?: undefined;
8176
- subject?: undefined;
8177
- message_html?: undefined;
8178
- recipients?: undefined;
8179
- condition?: undefined;
8180
- sys_id?: undefined;
8181
- fields?: undefined;
8182
- state?: undefined;
8183
- recipient?: undefined;
8184
- record_sys_id?: undefined;
8185
- attachment_sys_id?: undefined;
8186
- file_name?: undefined;
8187
- content_type?: undefined;
8188
- content_base64?: undefined;
8189
- user_sys_id?: undefined;
8190
- notification_sys_id?: undefined;
8191
- body?: undefined;
8192
- channels?: undefined;
8193
- notification_id?: undefined;
8194
- schedule?: undefined;
8195
- };
8196
- required: never[];
8197
- };
8198
7034
  } | {
8199
7035
  name: string;
8200
7036
  description: string;
@@ -8330,46 +7166,6 @@ export declare function getTools(): ({
8330
7166
  };
8331
7167
  required: string[];
8332
7168
  };
8333
- } | {
8334
- name: string;
8335
- description: string;
8336
- inputSchema: {
8337
- type: string;
8338
- properties: {
8339
- query: {
8340
- type: string;
8341
- description: string;
8342
- };
8343
- category: {
8344
- type: string;
8345
- description: string;
8346
- };
8347
- active: {
8348
- type: string;
8349
- description: string;
8350
- };
8351
- limit: {
8352
- type: string;
8353
- description: string;
8354
- };
8355
- sys_id_or_name?: undefined;
8356
- indicator_sys_id?: undefined;
8357
- breakdown_sys_id?: undefined;
8358
- period?: undefined;
8359
- include_scores?: undefined;
8360
- start_date?: undefined;
8361
- end_date?: undefined;
8362
- sys_id?: undefined;
8363
- name?: undefined;
8364
- description?: undefined;
8365
- roles?: undefined;
8366
- fields?: undefined;
8367
- table?: undefined;
8368
- sample_size?: undefined;
8369
- tables?: undefined;
8370
- };
8371
- required: never[];
8372
- };
8373
7169
  } | {
8374
7170
  name: string;
8375
7171
  description: string;
@@ -8481,77 +7277,6 @@ export declare function getTools(): ({
8481
7277
  };
8482
7278
  required: string[];
8483
7279
  };
8484
- } | {
8485
- name: string;
8486
- description: string;
8487
- inputSchema: {
8488
- type: string;
8489
- properties: {
8490
- query: {
8491
- type: string;
8492
- description: string;
8493
- };
8494
- limit: {
8495
- type: string;
8496
- description: string;
8497
- };
8498
- category?: undefined;
8499
- active?: undefined;
8500
- sys_id_or_name?: undefined;
8501
- indicator_sys_id?: undefined;
8502
- breakdown_sys_id?: undefined;
8503
- period?: undefined;
8504
- include_scores?: undefined;
8505
- start_date?: undefined;
8506
- end_date?: undefined;
8507
- sys_id?: undefined;
8508
- name?: undefined;
8509
- description?: undefined;
8510
- roles?: undefined;
8511
- fields?: undefined;
8512
- table?: undefined;
8513
- sample_size?: undefined;
8514
- tables?: undefined;
8515
- };
8516
- required: never[];
8517
- };
8518
- } | {
8519
- name: string;
8520
- description: string;
8521
- inputSchema: {
8522
- type: string;
8523
- properties: {
8524
- active: {
8525
- type: string;
8526
- description: string;
8527
- };
8528
- query: {
8529
- type: string;
8530
- description: string;
8531
- };
8532
- limit: {
8533
- type: string;
8534
- description: string;
8535
- };
8536
- category?: undefined;
8537
- sys_id_or_name?: undefined;
8538
- indicator_sys_id?: undefined;
8539
- breakdown_sys_id?: undefined;
8540
- period?: undefined;
8541
- include_scores?: undefined;
8542
- start_date?: undefined;
8543
- end_date?: undefined;
8544
- sys_id?: undefined;
8545
- name?: undefined;
8546
- description?: undefined;
8547
- roles?: undefined;
8548
- fields?: undefined;
8549
- table?: undefined;
8550
- sample_size?: undefined;
8551
- tables?: undefined;
8552
- };
8553
- required: never[];
8554
- };
8555
7280
  } | {
8556
7281
  name: string;
8557
7282
  description: string;
@@ -8823,38 +7548,6 @@ export declare function getTools(): ({
8823
7548
  };
8824
7549
  required: string[];
8825
7550
  };
8826
- } | {
8827
- name: string;
8828
- description: string;
8829
- inputSchema: {
8830
- type: string;
8831
- properties: {
8832
- query: {
8833
- type: string;
8834
- description: string;
8835
- };
8836
- category: {
8837
- type: string;
8838
- description: string;
8839
- };
8840
- type: {
8841
- type: string;
8842
- description: string;
8843
- };
8844
- limit: {
8845
- type: string;
8846
- description: string;
8847
- };
8848
- name?: undefined;
8849
- value?: undefined;
8850
- description?: undefined;
8851
- search?: undefined;
8852
- names?: undefined;
8853
- properties?: undefined;
8854
- dry_run?: undefined;
8855
- };
8856
- required: never[];
8857
- };
8858
7551
  } | {
8859
7552
  name: string;
8860
7553
  description: string;
@@ -9067,45 +7760,18 @@ export declare function getTools(): ({
9067
7760
  names?: undefined;
9068
7761
  properties?: undefined;
9069
7762
  dry_run?: undefined;
9070
- };
9071
- required: string[];
9072
- };
9073
- } | {
9074
- name: string;
9075
- description: string;
9076
- inputSchema: {
9077
- type: string;
9078
- properties: {
9079
- state?: undefined;
9080
- query?: undefined;
9081
- limit?: undefined;
9082
- name?: undefined;
9083
- description?: undefined;
9084
- release?: undefined;
9085
- switch_to?: undefined;
9086
- sys_id?: undefined;
9087
- default_name?: undefined;
9088
- };
9089
- required: never[];
9090
- };
9091
- } | {
9092
- name: string;
9093
- description: string;
9094
- inputSchema: {
9095
- type: string;
9096
- properties: {
9097
- state: {
9098
- type: string;
9099
- description: string;
9100
- };
9101
- query: {
9102
- type: string;
9103
- description: string;
9104
- };
9105
- limit: {
9106
- type: string;
9107
- description: string;
9108
- };
7763
+ };
7764
+ required: string[];
7765
+ };
7766
+ } | {
7767
+ name: string;
7768
+ description: string;
7769
+ inputSchema: {
7770
+ type: string;
7771
+ properties: {
7772
+ state?: undefined;
7773
+ query?: undefined;
7774
+ limit?: undefined;
9109
7775
  name?: undefined;
9110
7776
  description?: undefined;
9111
7777
  release?: undefined;
@@ -9298,39 +7964,6 @@ export declare function getTools(): ({
9298
7964
  };
9299
7965
  required: string[];
9300
7966
  };
9301
- } | {
9302
- name: string;
9303
- description: string;
9304
- inputSchema: {
9305
- type: string;
9306
- properties: {
9307
- active: {
9308
- type: string;
9309
- description: string;
9310
- };
9311
- category: {
9312
- type: string;
9313
- description: string;
9314
- };
9315
- query: {
9316
- type: string;
9317
- description: string;
9318
- };
9319
- limit: {
9320
- type: string;
9321
- description: string;
9322
- };
9323
- name?: undefined;
9324
- description?: undefined;
9325
- fulfillment_type?: undefined;
9326
- sys_id?: undefined;
9327
- fields?: undefined;
9328
- conversation_id?: undefined;
9329
- topic_sys_id?: undefined;
9330
- user_sys_id?: undefined;
9331
- };
9332
- required: never[];
9333
- };
9334
7967
  } | {
9335
7968
  name: string;
9336
7969
  description: string;
@@ -9412,59 +8045,6 @@ export declare function getTools(): ({
9412
8045
  };
9413
8046
  required: never[];
9414
8047
  };
9415
- } | {
9416
- name: string;
9417
- description: string;
9418
- inputSchema: {
9419
- type: string;
9420
- properties: {
9421
- asset_class: {
9422
- type: string;
9423
- description: string;
9424
- };
9425
- state: {
9426
- type: string;
9427
- description: string;
9428
- };
9429
- assigned_to: {
9430
- type: string;
9431
- description: string;
9432
- };
9433
- location: {
9434
- type: string;
9435
- description: string;
9436
- };
9437
- query: {
9438
- type: string;
9439
- description: string;
9440
- };
9441
- limit: {
9442
- type: string;
9443
- description: string;
9444
- };
9445
- sys_id?: undefined;
9446
- display_name?: undefined;
9447
- asset_tag?: undefined;
9448
- model_category?: undefined;
9449
- model?: undefined;
9450
- serial_number?: undefined;
9451
- cost?: undefined;
9452
- cost_center?: undefined;
9453
- purchase_date?: undefined;
9454
- fields?: undefined;
9455
- disposal_reason?: undefined;
9456
- disposal_date?: undefined;
9457
- license_sys_id?: undefined;
9458
- asset_sys_id?: undefined;
9459
- active?: undefined;
9460
- asset_id?: undefined;
9461
- new_stage?: undefined;
9462
- notes?: undefined;
9463
- software_name?: undefined;
9464
- threshold_pct?: undefined;
9465
- };
9466
- required: never[];
9467
- };
9468
8048
  } | {
9469
8049
  name: string;
9470
8050
  description: string;
@@ -9653,47 +8233,6 @@ export declare function getTools(): ({
9653
8233
  };
9654
8234
  required: string[];
9655
8235
  };
9656
- } | {
9657
- name: string;
9658
- description: string;
9659
- inputSchema: {
9660
- type: string;
9661
- properties: {
9662
- query: {
9663
- type: string;
9664
- description: string;
9665
- };
9666
- limit: {
9667
- type: string;
9668
- description: string;
9669
- };
9670
- asset_class?: undefined;
9671
- state?: undefined;
9672
- assigned_to?: undefined;
9673
- location?: undefined;
9674
- sys_id?: undefined;
9675
- display_name?: undefined;
9676
- asset_tag?: undefined;
9677
- model_category?: undefined;
9678
- model?: undefined;
9679
- serial_number?: undefined;
9680
- cost?: undefined;
9681
- cost_center?: undefined;
9682
- purchase_date?: undefined;
9683
- fields?: undefined;
9684
- disposal_reason?: undefined;
9685
- disposal_date?: undefined;
9686
- license_sys_id?: undefined;
9687
- asset_sys_id?: undefined;
9688
- active?: undefined;
9689
- asset_id?: undefined;
9690
- new_stage?: undefined;
9691
- notes?: undefined;
9692
- software_name?: undefined;
9693
- threshold_pct?: undefined;
9694
- };
9695
- required: never[];
9696
- };
9697
8236
  } | {
9698
8237
  name: string;
9699
8238
  description: string;
@@ -10083,37 +8622,6 @@ export declare function getTools(): ({
10083
8622
  };
10084
8623
  required: never[];
10085
8624
  };
10086
- } | {
10087
- name: string;
10088
- description: string;
10089
- inputSchema: {
10090
- type: string;
10091
- properties: {
10092
- query: {
10093
- type: string;
10094
- description: string;
10095
- };
10096
- active: {
10097
- type: string;
10098
- description: string;
10099
- };
10100
- limit: {
10101
- type: string;
10102
- description: string;
10103
- };
10104
- id?: undefined;
10105
- name?: undefined;
10106
- scope?: undefined;
10107
- version?: undefined;
10108
- short_description?: undefined;
10109
- description?: undefined;
10110
- vendor?: undefined;
10111
- logo?: undefined;
10112
- sys_id?: undefined;
10113
- fields?: undefined;
10114
- };
10115
- required: never[];
10116
- };
10117
8625
  } | {
10118
8626
  name: string;
10119
8627
  description: string;
@@ -11872,6 +10380,8 @@ export declare function getTools(): ({
11872
10380
  operations?: undefined;
11873
10381
  script?: undefined;
11874
10382
  scope?: undefined;
10383
+ query?: undefined;
10384
+ fields?: undefined;
11875
10385
  topic?: undefined;
11876
10386
  name?: undefined;
11877
10387
  template?: undefined;
@@ -11926,6 +10436,8 @@ export declare function getTools(): ({
11926
10436
  displayValue?: undefined;
11927
10437
  script?: undefined;
11928
10438
  scope?: undefined;
10439
+ query?: undefined;
10440
+ fields?: undefined;
11929
10441
  topic?: undefined;
11930
10442
  name?: undefined;
11931
10443
  template?: undefined;
@@ -11958,6 +10470,8 @@ export declare function getTools(): ({
11958
10470
  limit?: undefined;
11959
10471
  displayValue?: undefined;
11960
10472
  operations?: undefined;
10473
+ query?: undefined;
10474
+ fields?: undefined;
11961
10475
  topic?: undefined;
11962
10476
  name?: undefined;
11963
10477
  template?: undefined;
@@ -11965,6 +10479,34 @@ export declare function getTools(): ({
11965
10479
  };
11966
10480
  required: string[];
11967
10481
  };
10482
+ } | {
10483
+ name: string;
10484
+ description: string;
10485
+ inputSchema: {
10486
+ type: string;
10487
+ properties: {
10488
+ table?: undefined;
10489
+ where?: undefined;
10490
+ orWhere?: undefined;
10491
+ select?: undefined;
10492
+ aggregate?: undefined;
10493
+ aggregateField?: undefined;
10494
+ groupBy?: undefined;
10495
+ orderBy?: undefined;
10496
+ limit?: undefined;
10497
+ displayValue?: undefined;
10498
+ operations?: undefined;
10499
+ script?: undefined;
10500
+ scope?: undefined;
10501
+ query?: undefined;
10502
+ fields?: undefined;
10503
+ topic?: undefined;
10504
+ name?: undefined;
10505
+ template?: undefined;
10506
+ directory?: undefined;
10507
+ };
10508
+ required: never[];
10509
+ };
11968
10510
  } | {
11969
10511
  name: string;
11970
10512
  description: string;
@@ -11988,6 +10530,8 @@ export declare function getTools(): ({
11988
10530
  operations?: undefined;
11989
10531
  script?: undefined;
11990
10532
  scope?: undefined;
10533
+ query?: undefined;
10534
+ fields?: undefined;
11991
10535
  name?: undefined;
11992
10536
  template?: undefined;
11993
10537
  directory?: undefined;
@@ -12025,6 +10569,8 @@ export declare function getTools(): ({
12025
10569
  operations?: undefined;
12026
10570
  script?: undefined;
12027
10571
  scope?: undefined;
10572
+ query?: undefined;
10573
+ fields?: undefined;
12028
10574
  topic?: undefined;
12029
10575
  };
12030
10576
  required: string[];
@@ -12052,6 +10598,8 @@ export declare function getTools(): ({
12052
10598
  operations?: undefined;
12053
10599
  script?: undefined;
12054
10600
  scope?: undefined;
10601
+ query?: undefined;
10602
+ fields?: undefined;
12055
10603
  topic?: undefined;
12056
10604
  name?: undefined;
12057
10605
  template?: undefined;
@@ -12097,36 +10645,6 @@ export declare function getTools(): ({
12097
10645
  };
12098
10646
  required: string[];
12099
10647
  };
12100
- } | {
12101
- name: string;
12102
- description: string;
12103
- inputSchema: {
12104
- type: string;
12105
- properties: {
12106
- active: {
12107
- type: string;
12108
- description: string;
12109
- };
12110
- limit: {
12111
- type: string;
12112
- description: string;
12113
- };
12114
- query: {
12115
- type: string;
12116
- description: string;
12117
- };
12118
- name?: undefined;
12119
- description?: undefined;
12120
- input_schema?: undefined;
12121
- output_schema?: undefined;
12122
- prompt_template?: undefined;
12123
- model?: undefined;
12124
- sys_id?: undefined;
12125
- skill_sys_id?: undefined;
12126
- test_input?: undefined;
12127
- };
12128
- required: never[];
12129
- };
12130
10648
  } | {
12131
10649
  name: string;
12132
10650
  description: string;
@@ -12563,6 +11081,23 @@ export declare function getTools(): ({
12563
11081
  };
12564
11082
  required: string[];
12565
11083
  };
11084
+ } | {
11085
+ name: string;
11086
+ description: string;
11087
+ inputSchema: {
11088
+ type: string;
11089
+ properties: {
11090
+ query: {
11091
+ type: string;
11092
+ description: string;
11093
+ };
11094
+ limit: {
11095
+ type: string;
11096
+ description: string;
11097
+ };
11098
+ };
11099
+ required: string[];
11100
+ };
12566
11101
  })[];
12567
11102
  export declare function executeTool(client: ServiceNowClient, name: string, args: Record<string, any>): Promise<any>;
12568
11103
  //# sourceMappingURL=index.d.ts.map