nowaikit 4.1.6 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/README.md +3 -3
  2. package/dist/embed.d.ts +37 -0
  3. package/dist/embed.d.ts.map +1 -0
  4. package/dist/embed.js +75 -0
  5. package/dist/embed.js.map +1 -0
  6. package/dist/server.d.ts.map +1 -1
  7. package/dist/server.js +12 -2
  8. package/dist/server.js.map +1 -1
  9. package/dist/servicenow/client.d.ts +13 -0
  10. package/dist/servicenow/client.d.ts.map +1 -1
  11. package/dist/servicenow/client.js +52 -1
  12. package/dist/servicenow/client.js.map +1 -1
  13. package/dist/servicenow/instances.d.ts.map +1 -1
  14. package/dist/servicenow/instances.js +20 -0
  15. package/dist/servicenow/instances.js.map +1 -1
  16. package/dist/tools/blast-radius.d.ts +75 -0
  17. package/dist/tools/blast-radius.d.ts.map +1 -0
  18. package/dist/tools/blast-radius.js +185 -0
  19. package/dist/tools/blast-radius.js.map +1 -0
  20. package/dist/tools/catalog.d.ts.map +1 -1
  21. package/dist/tools/catalog.js +20 -3
  22. package/dist/tools/catalog.js.map +1 -1
  23. package/dist/tools/core.js +2 -2
  24. package/dist/tools/core.js.map +1 -1
  25. package/dist/tools/index.d.ts +147 -779
  26. package/dist/tools/index.d.ts.map +1 -1
  27. package/dist/tools/index.js +16 -2
  28. package/dist/tools/index.js.map +1 -1
  29. package/dist/tools/knowledge.d.ts.map +1 -1
  30. package/dist/tools/knowledge.js +9 -3
  31. package/dist/tools/knowledge.js.map +1 -1
  32. package/dist/tools/local-sync.d.ts +55 -0
  33. package/dist/tools/local-sync.d.ts.map +1 -0
  34. package/dist/tools/local-sync.js +210 -0
  35. package/dist/tools/local-sync.js.map +1 -0
  36. package/dist/tools/ml.d.ts +1 -1
  37. package/dist/tools/now-assist.d.ts +11 -145
  38. package/dist/tools/now-assist.d.ts.map +1 -1
  39. package/dist/tools/now-assist.js +50 -110
  40. package/dist/tools/now-assist.js.map +1 -1
  41. package/dist/tools/reporting.d.ts +55 -17
  42. package/dist/tools/reporting.d.ts.map +1 -1
  43. package/dist/tools/reporting.js +24 -15
  44. package/dist/tools/reporting.js.map +1 -1
  45. package/dist/tools-manifest.json +204 -95
  46. package/dist/transport/index.d.ts.map +1 -1
  47. package/dist/transport/index.js +18 -2
  48. package/dist/transport/index.js.map +1 -1
  49. package/dist/utils/permissions.d.ts +10 -5
  50. package/dist/utils/permissions.d.ts.map +1 -1
  51. package/dist/utils/permissions.js +43 -20
  52. package/dist/utils/permissions.js.map +1 -1
  53. package/dist/utils/request-context.d.ts +28 -0
  54. package/dist/utils/request-context.d.ts.map +1 -0
  55. package/dist/utils/request-context.js +49 -0
  56. package/dist/utils/request-context.js.map +1 -0
  57. package/package.json +8 -3
@@ -46,44 +46,6 @@ export declare function getTools(): ({
46
46
  };
47
47
  required: string[];
48
48
  };
49
- } | {
50
- name: string;
51
- description: string;
52
- inputSchema: {
53
- type: string;
54
- properties: {
55
- table: {
56
- type: string;
57
- description: string;
58
- };
59
- sys_id: {
60
- type: string;
61
- description: string;
62
- };
63
- fields: {
64
- type: string;
65
- description: string;
66
- };
67
- query?: undefined;
68
- limit?: undefined;
69
- orderBy?: undefined;
70
- dry_run?: undefined;
71
- user_identifier?: undefined;
72
- group_identifier?: undefined;
73
- ci_sys_id?: undefined;
74
- active_only?: undefined;
75
- service_sys_id?: undefined;
76
- instruction?: undefined;
77
- name?: undefined;
78
- parent?: undefined;
79
- child?: undefined;
80
- type?: undefined;
81
- depth?: undefined;
82
- schedule_id?: undefined;
83
- mid_server?: undefined;
84
- };
85
- required: string[];
86
- };
87
49
  } | {
88
50
  name: string;
89
51
  description: string;
@@ -122,85 +84,6 @@ export declare function getTools(): ({
122
84
  };
123
85
  required: string[];
124
86
  };
125
- } | {
126
- name: string;
127
- description: string;
128
- inputSchema: {
129
- type: string;
130
- properties: {
131
- table: {
132
- type: string;
133
- description: string;
134
- };
135
- sys_id: {
136
- type: string;
137
- description: string;
138
- };
139
- fields: {
140
- type: string;
141
- description: string;
142
- };
143
- dry_run: {
144
- type: string;
145
- description: string;
146
- };
147
- query?: undefined;
148
- limit?: undefined;
149
- orderBy?: undefined;
150
- user_identifier?: undefined;
151
- group_identifier?: undefined;
152
- ci_sys_id?: undefined;
153
- active_only?: undefined;
154
- service_sys_id?: undefined;
155
- instruction?: undefined;
156
- name?: undefined;
157
- parent?: undefined;
158
- child?: undefined;
159
- type?: undefined;
160
- depth?: undefined;
161
- schedule_id?: undefined;
162
- mid_server?: undefined;
163
- };
164
- required: string[];
165
- };
166
- } | {
167
- name: string;
168
- description: string;
169
- inputSchema: {
170
- type: string;
171
- properties: {
172
- table: {
173
- type: string;
174
- description: string;
175
- };
176
- sys_id: {
177
- type: string;
178
- description: string;
179
- };
180
- dry_run: {
181
- type: string;
182
- description: string;
183
- };
184
- query?: undefined;
185
- fields?: undefined;
186
- limit?: undefined;
187
- orderBy?: undefined;
188
- user_identifier?: undefined;
189
- group_identifier?: undefined;
190
- ci_sys_id?: undefined;
191
- active_only?: undefined;
192
- service_sys_id?: undefined;
193
- instruction?: undefined;
194
- name?: undefined;
195
- parent?: undefined;
196
- child?: undefined;
197
- type?: undefined;
198
- depth?: undefined;
199
- schedule_id?: undefined;
200
- mid_server?: undefined;
201
- };
202
- required: string[];
203
- };
204
87
  } | {
205
88
  name: string;
206
89
  description: string;
@@ -364,67 +247,6 @@ export declare function getTools(): ({
364
247
  };
365
248
  required: string[];
366
249
  };
367
- } | {
368
- name: string;
369
- description: string;
370
- inputSchema: {
371
- type: string;
372
- properties: {
373
- active_only: {
374
- type: string;
375
- description: string;
376
- };
377
- table?: undefined;
378
- query?: undefined;
379
- fields?: undefined;
380
- limit?: undefined;
381
- orderBy?: undefined;
382
- sys_id?: undefined;
383
- dry_run?: undefined;
384
- user_identifier?: undefined;
385
- group_identifier?: undefined;
386
- ci_sys_id?: undefined;
387
- service_sys_id?: undefined;
388
- instruction?: undefined;
389
- name?: undefined;
390
- parent?: undefined;
391
- child?: undefined;
392
- type?: undefined;
393
- depth?: undefined;
394
- schedule_id?: undefined;
395
- mid_server?: undefined;
396
- };
397
- required: never[];
398
- };
399
- } | {
400
- name: string;
401
- description: string;
402
- inputSchema: {
403
- type: string;
404
- properties: {
405
- table?: undefined;
406
- query?: undefined;
407
- fields?: undefined;
408
- limit?: undefined;
409
- orderBy?: undefined;
410
- sys_id?: undefined;
411
- dry_run?: undefined;
412
- user_identifier?: undefined;
413
- group_identifier?: undefined;
414
- ci_sys_id?: undefined;
415
- active_only?: undefined;
416
- service_sys_id?: undefined;
417
- instruction?: undefined;
418
- name?: undefined;
419
- parent?: undefined;
420
- child?: undefined;
421
- type?: undefined;
422
- depth?: undefined;
423
- schedule_id?: undefined;
424
- mid_server?: undefined;
425
- };
426
- required: never[];
427
- };
428
250
  } | {
429
251
  name: string;
430
252
  description: string;
@@ -909,76 +731,6 @@ export declare function getTools(): ({
909
731
  };
910
732
  required: string[];
911
733
  };
912
- } | {
913
- name: string;
914
- description: string;
915
- inputSchema: {
916
- type: string;
917
- properties: {
918
- table: {
919
- type: string;
920
- description: string;
921
- };
922
- sys_id: {
923
- type: string;
924
- description: string;
925
- };
926
- note: {
927
- type: string;
928
- description: string;
929
- };
930
- short_description?: undefined;
931
- urgency?: undefined;
932
- impact?: undefined;
933
- priority?: undefined;
934
- description?: undefined;
935
- assignment_group?: undefined;
936
- caller_id?: undefined;
937
- category?: undefined;
938
- subcategory?: undefined;
939
- number_or_sysid?: undefined;
940
- fields?: undefined;
941
- resolution_code?: undefined;
942
- resolution_notes?: undefined;
943
- comment?: undefined;
944
- };
945
- required: string[];
946
- };
947
- } | {
948
- name: string;
949
- description: string;
950
- inputSchema: {
951
- type: string;
952
- properties: {
953
- table: {
954
- type: string;
955
- description: string;
956
- };
957
- sys_id: {
958
- type: string;
959
- description: string;
960
- };
961
- comment: {
962
- type: string;
963
- description: string;
964
- };
965
- short_description?: undefined;
966
- urgency?: undefined;
967
- impact?: undefined;
968
- priority?: undefined;
969
- description?: undefined;
970
- assignment_group?: undefined;
971
- caller_id?: undefined;
972
- category?: undefined;
973
- subcategory?: undefined;
974
- number_or_sysid?: undefined;
975
- fields?: undefined;
976
- resolution_code?: undefined;
977
- resolution_notes?: undefined;
978
- note?: undefined;
979
- };
980
- required: string[];
981
- };
982
734
  } | {
983
735
  name: string;
984
736
  description: string;
@@ -1479,16 +1231,13 @@ export declare function getTools(): ({
1479
1231
  inputSchema: {
1480
1232
  type: string;
1481
1233
  properties: {
1482
- category: {
1483
- type: string;
1484
- description: string;
1485
- };
1486
- limit: {
1234
+ sys_id_or_name: {
1487
1235
  type: string;
1488
1236
  description: string;
1489
1237
  };
1238
+ category?: undefined;
1239
+ limit?: undefined;
1490
1240
  query?: undefined;
1491
- sys_id_or_name?: undefined;
1492
1241
  name?: undefined;
1493
1242
  short_description?: undefined;
1494
1243
  description?: undefined;
@@ -1515,48 +1264,7 @@ export declare function getTools(): ({
1515
1264
  conditions?: undefined;
1516
1265
  reverse_if_false?: undefined;
1517
1266
  };
1518
- required: never[];
1519
- };
1520
- } | {
1521
- name: string;
1522
- description: string;
1523
- inputSchema: {
1524
- type: string;
1525
- properties: {
1526
- sys_id_or_name: {
1527
- type: string;
1528
- description: string;
1529
- };
1530
- category?: undefined;
1531
- limit?: undefined;
1532
- query?: undefined;
1533
- name?: undefined;
1534
- short_description?: undefined;
1535
- description?: undefined;
1536
- price?: undefined;
1537
- delivery_time?: undefined;
1538
- active?: undefined;
1539
- roles?: undefined;
1540
- sys_id?: undefined;
1541
- fields?: undefined;
1542
- quantity?: undefined;
1543
- variables?: undefined;
1544
- table?: undefined;
1545
- approver_type?: undefined;
1546
- approver?: undefined;
1547
- condition?: undefined;
1548
- order?: undefined;
1549
- state?: undefined;
1550
- comments?: undefined;
1551
- task_sys_id?: undefined;
1552
- cat_item_id?: undefined;
1553
- question_text?: undefined;
1554
- type?: undefined;
1555
- mandatory?: undefined;
1556
- conditions?: undefined;
1557
- reverse_if_false?: undefined;
1558
- };
1559
- required: string[];
1267
+ required: string[];
1560
1268
  };
1561
1269
  } | {
1562
1270
  name: string;
@@ -1770,47 +1478,6 @@ export declare function getTools(): ({
1770
1478
  };
1771
1479
  required: string[];
1772
1480
  };
1773
- } | {
1774
- name: string;
1775
- description: string;
1776
- inputSchema: {
1777
- type: string;
1778
- properties: {
1779
- state: {
1780
- type: string;
1781
- description: string;
1782
- };
1783
- category?: undefined;
1784
- limit?: undefined;
1785
- query?: undefined;
1786
- sys_id_or_name?: undefined;
1787
- name?: undefined;
1788
- short_description?: undefined;
1789
- description?: undefined;
1790
- price?: undefined;
1791
- delivery_time?: undefined;
1792
- active?: undefined;
1793
- roles?: undefined;
1794
- sys_id?: undefined;
1795
- fields?: undefined;
1796
- quantity?: undefined;
1797
- variables?: undefined;
1798
- table?: undefined;
1799
- approver_type?: undefined;
1800
- approver?: undefined;
1801
- condition?: undefined;
1802
- order?: undefined;
1803
- comments?: undefined;
1804
- task_sys_id?: undefined;
1805
- cat_item_id?: undefined;
1806
- question_text?: undefined;
1807
- type?: undefined;
1808
- mandatory?: undefined;
1809
- conditions?: undefined;
1810
- reverse_if_false?: undefined;
1811
- };
1812
- required: never[];
1813
- };
1814
1481
  } | {
1815
1482
  name: string;
1816
1483
  description: string;
@@ -2169,61 +1836,6 @@ export declare function getTools(): ({
2169
1836
  };
2170
1837
  required: string[];
2171
1838
  };
2172
- } | {
2173
- name: string;
2174
- description: string;
2175
- inputSchema: {
2176
- type: string;
2177
- properties: {
2178
- search: {
2179
- type: string;
2180
- description: string;
2181
- };
2182
- category: {
2183
- type: string;
2184
- description: string;
2185
- };
2186
- limit: {
2187
- type: string;
2188
- description: string;
2189
- };
2190
- sys_id_or_name?: undefined;
2191
- table?: undefined;
2192
- group_by?: undefined;
2193
- aggregate?: undefined;
2194
- query?: undefined;
2195
- date_field?: undefined;
2196
- periods?: undefined;
2197
- widget_sys_id?: undefined;
2198
- time_range?: undefined;
2199
- fields?: undefined;
2200
- active?: undefined;
2201
- name?: undefined;
2202
- script?: undefined;
2203
- run_type?: undefined;
2204
- run_time?: undefined;
2205
- run_period?: undefined;
2206
- sys_id?: undefined;
2207
- title?: undefined;
2208
- type?: undefined;
2209
- field?: undefined;
2210
- roles?: undefined;
2211
- job_sys_id?: undefined;
2212
- status?: undefined;
2213
- report_id?: undefined;
2214
- frequency?: undefined;
2215
- recipients?: undefined;
2216
- day_of_week?: undefined;
2217
- day_of_month?: undefined;
2218
- format?: undefined;
2219
- conditions?: undefined;
2220
- unit?: undefined;
2221
- content?: undefined;
2222
- sections?: undefined;
2223
- capability?: undefined;
2224
- };
2225
- required: never[];
2226
- };
2227
1839
  } | {
2228
1840
  name: string;
2229
1841
  description: string;
@@ -2243,8 +1855,10 @@ export declare function getTools(): ({
2243
1855
  query?: undefined;
2244
1856
  date_field?: undefined;
2245
1857
  periods?: undefined;
1858
+ indicator_sys_id?: undefined;
2246
1859
  widget_sys_id?: undefined;
2247
- time_range?: undefined;
1860
+ from?: undefined;
1861
+ to?: undefined;
2248
1862
  fields?: undefined;
2249
1863
  active?: undefined;
2250
1864
  name?: undefined;
@@ -2304,60 +1918,10 @@ export declare function getTools(): ({
2304
1918
  limit?: undefined;
2305
1919
  sys_id_or_name?: undefined;
2306
1920
  aggregate?: undefined;
1921
+ indicator_sys_id?: undefined;
2307
1922
  widget_sys_id?: undefined;
2308
- time_range?: undefined;
2309
- fields?: undefined;
2310
- active?: undefined;
2311
- name?: undefined;
2312
- script?: undefined;
2313
- run_type?: undefined;
2314
- run_time?: undefined;
2315
- run_period?: undefined;
2316
- sys_id?: undefined;
2317
- title?: undefined;
2318
- type?: undefined;
2319
- field?: undefined;
2320
- roles?: undefined;
2321
- job_sys_id?: undefined;
2322
- status?: undefined;
2323
- report_id?: undefined;
2324
- frequency?: undefined;
2325
- recipients?: undefined;
2326
- day_of_week?: undefined;
2327
- day_of_month?: undefined;
2328
- format?: undefined;
2329
- conditions?: undefined;
2330
- unit?: undefined;
2331
- content?: undefined;
2332
- sections?: undefined;
2333
- capability?: undefined;
2334
- };
2335
- required: string[];
2336
- };
2337
- } | {
2338
- name: string;
2339
- description: string;
2340
- inputSchema: {
2341
- type: string;
2342
- properties: {
2343
- widget_sys_id: {
2344
- type: string;
2345
- description: string;
2346
- };
2347
- time_range: {
2348
- type: string;
2349
- description: string;
2350
- };
2351
- search?: undefined;
2352
- category?: undefined;
2353
- limit?: undefined;
2354
- sys_id_or_name?: undefined;
2355
- table?: undefined;
2356
- group_by?: undefined;
2357
- aggregate?: undefined;
2358
- query?: undefined;
2359
- date_field?: undefined;
2360
- periods?: undefined;
1923
+ from?: undefined;
1924
+ to?: undefined;
2361
1925
  fields?: undefined;
2362
1926
  active?: undefined;
2363
1927
  name?: undefined;
@@ -2426,8 +1990,10 @@ export declare function getTools(): ({
2426
1990
  query?: undefined;
2427
1991
  date_field?: undefined;
2428
1992
  periods?: undefined;
1993
+ indicator_sys_id?: undefined;
2429
1994
  widget_sys_id?: undefined;
2430
- time_range?: undefined;
1995
+ from?: undefined;
1996
+ to?: undefined;
2431
1997
  fields?: undefined;
2432
1998
  sys_id?: undefined;
2433
1999
  title?: undefined;
@@ -2474,8 +2040,10 @@ export declare function getTools(): ({
2474
2040
  query?: undefined;
2475
2041
  date_field?: undefined;
2476
2042
  periods?: undefined;
2043
+ indicator_sys_id?: undefined;
2477
2044
  widget_sys_id?: undefined;
2478
- time_range?: undefined;
2045
+ from?: undefined;
2046
+ to?: undefined;
2479
2047
  active?: undefined;
2480
2048
  name?: undefined;
2481
2049
  script?: undefined;
@@ -2522,8 +2090,10 @@ export declare function getTools(): ({
2522
2090
  query?: undefined;
2523
2091
  date_field?: undefined;
2524
2092
  periods?: undefined;
2093
+ indicator_sys_id?: undefined;
2525
2094
  widget_sys_id?: undefined;
2526
- time_range?: undefined;
2095
+ from?: undefined;
2096
+ to?: undefined;
2527
2097
  fields?: undefined;
2528
2098
  active?: undefined;
2529
2099
  name?: undefined;
@@ -2595,8 +2165,10 @@ export declare function getTools(): ({
2595
2165
  sys_id_or_name?: undefined;
2596
2166
  date_field?: undefined;
2597
2167
  periods?: undefined;
2168
+ indicator_sys_id?: undefined;
2598
2169
  widget_sys_id?: undefined;
2599
- time_range?: undefined;
2170
+ from?: undefined;
2171
+ to?: undefined;
2600
2172
  fields?: undefined;
2601
2173
  active?: undefined;
2602
2174
  name?: undefined;
@@ -2621,61 +2193,6 @@ export declare function getTools(): ({
2621
2193
  };
2622
2194
  required: string[];
2623
2195
  };
2624
- } | {
2625
- name: string;
2626
- description: string;
2627
- inputSchema: {
2628
- type: string;
2629
- properties: {
2630
- job_sys_id: {
2631
- type: string;
2632
- description: string;
2633
- };
2634
- status: {
2635
- type: string;
2636
- description: string;
2637
- };
2638
- limit: {
2639
- type: string;
2640
- description: string;
2641
- };
2642
- search?: undefined;
2643
- category?: undefined;
2644
- sys_id_or_name?: undefined;
2645
- table?: undefined;
2646
- group_by?: undefined;
2647
- aggregate?: undefined;
2648
- query?: undefined;
2649
- date_field?: undefined;
2650
- periods?: undefined;
2651
- widget_sys_id?: undefined;
2652
- time_range?: undefined;
2653
- fields?: undefined;
2654
- active?: undefined;
2655
- name?: undefined;
2656
- script?: undefined;
2657
- run_type?: undefined;
2658
- run_time?: undefined;
2659
- run_period?: undefined;
2660
- sys_id?: undefined;
2661
- title?: undefined;
2662
- type?: undefined;
2663
- field?: undefined;
2664
- roles?: undefined;
2665
- report_id?: undefined;
2666
- frequency?: undefined;
2667
- recipients?: undefined;
2668
- day_of_week?: undefined;
2669
- day_of_month?: undefined;
2670
- format?: undefined;
2671
- conditions?: undefined;
2672
- unit?: undefined;
2673
- content?: undefined;
2674
- sections?: undefined;
2675
- capability?: undefined;
2676
- };
2677
- required: never[];
2678
- };
2679
2196
  } | {
2680
2197
  name: string;
2681
2198
  description: string;
@@ -2717,8 +2234,10 @@ export declare function getTools(): ({
2717
2234
  query?: undefined;
2718
2235
  date_field?: undefined;
2719
2236
  periods?: undefined;
2237
+ indicator_sys_id?: undefined;
2720
2238
  widget_sys_id?: undefined;
2721
- time_range?: undefined;
2239
+ from?: undefined;
2240
+ to?: undefined;
2722
2241
  fields?: undefined;
2723
2242
  active?: undefined;
2724
2243
  name?: undefined;
@@ -2779,8 +2298,10 @@ export declare function getTools(): ({
2779
2298
  query?: undefined;
2780
2299
  date_field?: undefined;
2781
2300
  periods?: undefined;
2301
+ indicator_sys_id?: undefined;
2782
2302
  widget_sys_id?: undefined;
2783
- time_range?: undefined;
2303
+ from?: undefined;
2304
+ to?: undefined;
2784
2305
  fields?: undefined;
2785
2306
  active?: undefined;
2786
2307
  script?: undefined;
@@ -2860,8 +2381,10 @@ export declare function getTools(): ({
2860
2381
  query?: undefined;
2861
2382
  date_field?: undefined;
2862
2383
  periods?: undefined;
2384
+ indicator_sys_id?: undefined;
2863
2385
  widget_sys_id?: undefined;
2864
- time_range?: undefined;
2386
+ from?: undefined;
2387
+ to?: undefined;
2865
2388
  fields?: undefined;
2866
2389
  active?: undefined;
2867
2390
  name?: undefined;
@@ -3014,67 +2537,10 @@ export declare function getTools(): ({
3014
2537
  };
3015
2538
  query?: undefined;
3016
2539
  sources?: undefined;
3017
- sys_id?: undefined;
3018
- incident_sys_id?: undefined;
3019
2540
  short_description?: undefined;
3020
2541
  description?: undefined;
3021
2542
  active?: undefined;
3022
2543
  category?: undefined;
3023
- playbook_sys_id?: undefined;
3024
- context?: undefined;
3025
- };
3026
- required: string[];
3027
- };
3028
- } | {
3029
- name: string;
3030
- description: string;
3031
- inputSchema: {
3032
- type: string;
3033
- properties: {
3034
- table: {
3035
- type: string;
3036
- description: string;
3037
- };
3038
- sys_id: {
3039
- type: string;
3040
- description: string;
3041
- };
3042
- question?: undefined;
3043
- limit?: undefined;
3044
- query?: undefined;
3045
- sources?: undefined;
3046
- incident_sys_id?: undefined;
3047
- short_description?: undefined;
3048
- description?: undefined;
3049
- active?: undefined;
3050
- category?: undefined;
3051
- playbook_sys_id?: undefined;
3052
- context?: undefined;
3053
- };
3054
- required: string[];
3055
- };
3056
- } | {
3057
- name: string;
3058
- description: string;
3059
- inputSchema: {
3060
- type: string;
3061
- properties: {
3062
- incident_sys_id: {
3063
- type: string;
3064
- description: string;
3065
- };
3066
- question?: undefined;
3067
- table?: undefined;
3068
- limit?: undefined;
3069
- query?: undefined;
3070
- sources?: undefined;
3071
- sys_id?: undefined;
3072
- short_description?: undefined;
3073
- description?: undefined;
3074
- active?: undefined;
3075
- category?: undefined;
3076
- playbook_sys_id?: undefined;
3077
- context?: undefined;
3078
2544
  };
3079
2545
  required: string[];
3080
2546
  };
@@ -3097,12 +2563,8 @@ export declare function getTools(): ({
3097
2563
  limit?: undefined;
3098
2564
  query?: undefined;
3099
2565
  sources?: undefined;
3100
- sys_id?: undefined;
3101
- incident_sys_id?: undefined;
3102
2566
  active?: undefined;
3103
2567
  category?: undefined;
3104
- playbook_sys_id?: undefined;
3105
- context?: undefined;
3106
2568
  };
3107
2569
  required: string[];
3108
2570
  };
@@ -3128,65 +2590,8 @@ export declare function getTools(): ({
3128
2590
  table?: undefined;
3129
2591
  query?: undefined;
3130
2592
  sources?: undefined;
3131
- sys_id?: undefined;
3132
- incident_sys_id?: undefined;
3133
- short_description?: undefined;
3134
- description?: undefined;
3135
- playbook_sys_id?: undefined;
3136
- context?: undefined;
3137
- };
3138
- required: never[];
3139
- };
3140
- } | {
3141
- name: string;
3142
- description: string;
3143
- inputSchema: {
3144
- type: string;
3145
- properties: {
3146
- playbook_sys_id: {
3147
- type: string;
3148
- description: string;
3149
- };
3150
- context: {
3151
- type: string;
3152
- description: string;
3153
- };
3154
- question?: undefined;
3155
- table?: undefined;
3156
- limit?: undefined;
3157
- query?: undefined;
3158
- sources?: undefined;
3159
- sys_id?: undefined;
3160
- incident_sys_id?: undefined;
3161
- short_description?: undefined;
3162
- description?: undefined;
3163
- active?: undefined;
3164
- category?: undefined;
3165
- };
3166
- required: string[];
3167
- };
3168
- } | {
3169
- name: string;
3170
- description: string;
3171
- inputSchema: {
3172
- type: string;
3173
- properties: {
3174
- limit: {
3175
- type: string;
3176
- description: string;
3177
- };
3178
- question?: undefined;
3179
- table?: undefined;
3180
- query?: undefined;
3181
- sources?: undefined;
3182
- sys_id?: undefined;
3183
- incident_sys_id?: undefined;
3184
2593
  short_description?: undefined;
3185
2594
  description?: undefined;
3186
- active?: undefined;
3187
- category?: undefined;
3188
- playbook_sys_id?: undefined;
3189
- context?: undefined;
3190
2595
  };
3191
2596
  required: never[];
3192
2597
  };
@@ -3194,32 +2599,22 @@ export declare function getTools(): ({
3194
2599
  name: string;
3195
2600
  description: string;
3196
2601
  inputSchema: {
3197
- type: string;
3198
- properties: {
3199
- table: {
3200
- type: string;
3201
- description: string;
3202
- };
3203
- sys_id: {
3204
- type: string;
3205
- description: string;
3206
- };
3207
- context: {
2602
+ type: string;
2603
+ properties: {
2604
+ limit: {
3208
2605
  type: string;
3209
2606
  description: string;
3210
2607
  };
3211
2608
  question?: undefined;
3212
- limit?: undefined;
2609
+ table?: undefined;
3213
2610
  query?: undefined;
3214
2611
  sources?: undefined;
3215
- incident_sys_id?: undefined;
3216
2612
  short_description?: undefined;
3217
2613
  description?: undefined;
3218
2614
  active?: undefined;
3219
2615
  category?: undefined;
3220
- playbook_sys_id?: undefined;
3221
2616
  };
3222
- required: string[];
2617
+ required: never[];
3223
2618
  };
3224
2619
  } | {
3225
2620
  name: string;
@@ -3232,14 +2627,10 @@ export declare function getTools(): ({
3232
2627
  limit?: undefined;
3233
2628
  query?: undefined;
3234
2629
  sources?: undefined;
3235
- sys_id?: undefined;
3236
- incident_sys_id?: undefined;
3237
2630
  short_description?: undefined;
3238
2631
  description?: undefined;
3239
2632
  active?: undefined;
3240
2633
  category?: undefined;
3241
- playbook_sys_id?: undefined;
3242
- context?: undefined;
3243
2634
  };
3244
2635
  required: never[];
3245
2636
  };
@@ -3571,49 +2962,6 @@ export declare function getTools(): ({
3571
2962
  };
3572
2963
  required: never[];
3573
2964
  };
3574
- } | {
3575
- name: string;
3576
- description: string;
3577
- inputSchema: {
3578
- type: string;
3579
- properties: {
3580
- state: {
3581
- type: string;
3582
- description: string;
3583
- };
3584
- limit: {
3585
- type: string;
3586
- description: string;
3587
- };
3588
- table?: undefined;
3589
- active?: undefined;
3590
- sys_id?: undefined;
3591
- name?: undefined;
3592
- when?: undefined;
3593
- script?: undefined;
3594
- condition?: undefined;
3595
- order?: undefined;
3596
- fields?: undefined;
3597
- query?: undefined;
3598
- sys_id_or_name?: undefined;
3599
- api_name?: undefined;
3600
- access?: undefined;
3601
- type?: undefined;
3602
- field_name?: undefined;
3603
- global?: undefined;
3604
- short_description?: undefined;
3605
- conditions?: undefined;
3606
- run_scripts?: undefined;
3607
- action_name?: undefined;
3608
- form_button?: undefined;
3609
- list_button?: undefined;
3610
- operation?: undefined;
3611
- admin_overrides?: undefined;
3612
- roles?: undefined;
3613
- description?: undefined;
3614
- };
3615
- required: never[];
3616
- };
3617
2965
  } | {
3618
2966
  name: string;
3619
2967
  description: string;
@@ -6814,53 +6162,6 @@ export declare function getTools(): ({
6814
6162
  };
6815
6163
  required: string[];
6816
6164
  };
6817
- } | {
6818
- name: string;
6819
- description: string;
6820
- inputSchema: {
6821
- type: string;
6822
- properties: {
6823
- state: {
6824
- type: string;
6825
- description: string;
6826
- };
6827
- recipient: {
6828
- type: string;
6829
- description: string;
6830
- };
6831
- subject: {
6832
- type: string;
6833
- description: string;
6834
- };
6835
- limit: {
6836
- type: string;
6837
- description: string;
6838
- };
6839
- query?: undefined;
6840
- table?: undefined;
6841
- event?: undefined;
6842
- active?: undefined;
6843
- sys_id_or_name?: undefined;
6844
- name?: undefined;
6845
- message_html?: undefined;
6846
- recipients?: undefined;
6847
- condition?: undefined;
6848
- sys_id?: undefined;
6849
- fields?: undefined;
6850
- record_sys_id?: undefined;
6851
- attachment_sys_id?: undefined;
6852
- file_name?: undefined;
6853
- content_type?: undefined;
6854
- content_base64?: undefined;
6855
- user_sys_id?: undefined;
6856
- notification_sys_id?: undefined;
6857
- body?: undefined;
6858
- channels?: undefined;
6859
- notification_id?: undefined;
6860
- schedule?: undefined;
6861
- };
6862
- required: never[];
6863
- };
6864
6165
  } | {
6865
6166
  name: string;
6866
6167
  description: string;
@@ -7031,50 +6332,6 @@ export declare function getTools(): ({
7031
6332
  };
7032
6333
  required: string[];
7033
6334
  };
7034
- } | {
7035
- name: string;
7036
- description: string;
7037
- inputSchema: {
7038
- type: string;
7039
- properties: {
7040
- user_sys_id: {
7041
- type: string;
7042
- description: string;
7043
- };
7044
- notification_sys_id: {
7045
- type: string;
7046
- description: string;
7047
- };
7048
- limit: {
7049
- type: string;
7050
- description: string;
7051
- };
7052
- query?: undefined;
7053
- table?: undefined;
7054
- event?: undefined;
7055
- active?: undefined;
7056
- sys_id_or_name?: undefined;
7057
- name?: undefined;
7058
- subject?: undefined;
7059
- message_html?: undefined;
7060
- recipients?: undefined;
7061
- condition?: undefined;
7062
- sys_id?: undefined;
7063
- fields?: undefined;
7064
- state?: undefined;
7065
- recipient?: undefined;
7066
- record_sys_id?: undefined;
7067
- attachment_sys_id?: undefined;
7068
- file_name?: undefined;
7069
- content_type?: undefined;
7070
- content_base64?: undefined;
7071
- body?: undefined;
7072
- channels?: undefined;
7073
- notification_id?: undefined;
7074
- schedule?: undefined;
7075
- };
7076
- required: never[];
7077
- };
7078
6335
  } | {
7079
6336
  name: string;
7080
6337
  description: string;
@@ -11279,6 +10536,117 @@ export declare function getTools(): ({
11279
10536
  };
11280
10537
  required: string[];
11281
10538
  };
10539
+ } | {
10540
+ name: string;
10541
+ description: string;
10542
+ inputSchema: {
10543
+ type: string;
10544
+ properties: {
10545
+ table: {
10546
+ type: string;
10547
+ description: string;
10548
+ };
10549
+ limit: {
10550
+ type: string;
10551
+ description: string;
10552
+ };
10553
+ field?: undefined;
10554
+ name?: undefined;
10555
+ };
10556
+ required: string[];
10557
+ };
10558
+ } | {
10559
+ name: string;
10560
+ description: string;
10561
+ inputSchema: {
10562
+ type: string;
10563
+ properties: {
10564
+ table: {
10565
+ type: string;
10566
+ description: string;
10567
+ };
10568
+ field: {
10569
+ type: string;
10570
+ description: string;
10571
+ };
10572
+ limit: {
10573
+ type: string;
10574
+ description: string;
10575
+ };
10576
+ name?: undefined;
10577
+ };
10578
+ required: string[];
10579
+ };
10580
+ } | {
10581
+ name: string;
10582
+ description: string;
10583
+ inputSchema: {
10584
+ type: string;
10585
+ properties: {
10586
+ name: {
10587
+ type: string;
10588
+ description: string;
10589
+ };
10590
+ limit: {
10591
+ type: string;
10592
+ description: string;
10593
+ };
10594
+ table?: undefined;
10595
+ field?: undefined;
10596
+ };
10597
+ required: string[];
10598
+ };
10599
+ } | {
10600
+ name: string;
10601
+ description: string;
10602
+ inputSchema: {
10603
+ type: string;
10604
+ properties: {
10605
+ table?: undefined;
10606
+ sys_id?: undefined;
10607
+ fields?: undefined;
10608
+ };
10609
+ required: never[];
10610
+ };
10611
+ } | {
10612
+ name: string;
10613
+ description: string;
10614
+ inputSchema: {
10615
+ type: string;
10616
+ properties: {
10617
+ table: {
10618
+ type: string;
10619
+ description: string;
10620
+ };
10621
+ sys_id: {
10622
+ type: string;
10623
+ description: string;
10624
+ };
10625
+ fields?: undefined;
10626
+ };
10627
+ required: string[];
10628
+ };
10629
+ } | {
10630
+ name: string;
10631
+ description: string;
10632
+ inputSchema: {
10633
+ type: string;
10634
+ properties: {
10635
+ table: {
10636
+ type: string;
10637
+ description: string;
10638
+ };
10639
+ sys_id: {
10640
+ type: string;
10641
+ description: string;
10642
+ };
10643
+ fields: {
10644
+ type: string;
10645
+ description: string;
10646
+ };
10647
+ };
10648
+ required: string[];
10649
+ };
11282
10650
  } | {
11283
10651
  name: string;
11284
10652
  description: string;