nowaikit 2.5.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 (209) hide show
  1. package/.env.example +96 -0
  2. package/LICENSE +21 -0
  3. package/README.md +1253 -0
  4. package/desktop/renderer/dist/apple-touch-icon.png +0 -0
  5. package/desktop/renderer/dist/assets/index-Bb0ncZQl.css +1 -0
  6. package/desktop/renderer/dist/assets/index-MlBBSUMZ.js +49 -0
  7. package/desktop/renderer/dist/favicon-32.png +0 -0
  8. package/desktop/renderer/dist/favicon.svg +18 -0
  9. package/desktop/renderer/dist/index.html +18 -0
  10. package/desktop/serve.cjs +449 -0
  11. package/dist/cli/auth.d.ts +14 -0
  12. package/dist/cli/auth.d.ts.map +1 -0
  13. package/dist/cli/auth.js +179 -0
  14. package/dist/cli/auth.js.map +1 -0
  15. package/dist/cli/config-store.d.ts +28 -0
  16. package/dist/cli/config-store.d.ts.map +1 -0
  17. package/dist/cli/config-store.js +64 -0
  18. package/dist/cli/config-store.js.map +1 -0
  19. package/dist/cli/detect-clients.d.ts +16 -0
  20. package/dist/cli/detect-clients.d.ts.map +1 -0
  21. package/dist/cli/detect-clients.js +151 -0
  22. package/dist/cli/detect-clients.js.map +1 -0
  23. package/dist/cli/index.d.ts +3 -0
  24. package/dist/cli/index.d.ts.map +1 -0
  25. package/dist/cli/index.js +193 -0
  26. package/dist/cli/index.js.map +1 -0
  27. package/dist/cli/setup.d.ts +4 -0
  28. package/dist/cli/setup.d.ts.map +1 -0
  29. package/dist/cli/setup.js +575 -0
  30. package/dist/cli/setup.js.map +1 -0
  31. package/dist/cli/writers/index.d.ts +9 -0
  32. package/dist/cli/writers/index.d.ts.map +1 -0
  33. package/dist/cli/writers/index.js +140 -0
  34. package/dist/cli/writers/index.js.map +1 -0
  35. package/dist/prompts/index.d.ts +25 -0
  36. package/dist/prompts/index.d.ts.map +1 -0
  37. package/dist/prompts/index.js +38 -0
  38. package/dist/prompts/index.js.map +1 -0
  39. package/dist/prompts/itsm.d.ts +20 -0
  40. package/dist/prompts/itsm.d.ts.map +1 -0
  41. package/dist/prompts/itsm.js +110 -0
  42. package/dist/prompts/itsm.js.map +1 -0
  43. package/dist/prompts/user-prompts.d.ts +3 -0
  44. package/dist/prompts/user-prompts.d.ts.map +1 -0
  45. package/dist/prompts/user-prompts.js +35 -0
  46. package/dist/prompts/user-prompts.js.map +1 -0
  47. package/dist/resources/index.d.ts +26 -0
  48. package/dist/resources/index.d.ts.map +1 -0
  49. package/dist/resources/index.js +99 -0
  50. package/dist/resources/index.js.map +1 -0
  51. package/dist/server.d.ts +3 -0
  52. package/dist/server.d.ts.map +1 -0
  53. package/dist/server.js +129 -0
  54. package/dist/server.js.map +1 -0
  55. package/dist/servicenow/client.d.ts +135 -0
  56. package/dist/servicenow/client.d.ts.map +1 -0
  57. package/dist/servicenow/client.js +803 -0
  58. package/dist/servicenow/client.js.map +1 -0
  59. package/dist/servicenow/instances.d.ts +28 -0
  60. package/dist/servicenow/instances.d.ts.map +1 -0
  61. package/dist/servicenow/instances.js +204 -0
  62. package/dist/servicenow/instances.js.map +1 -0
  63. package/dist/servicenow/types.d.ts +574 -0
  64. package/dist/servicenow/types.d.ts.map +1 -0
  65. package/dist/servicenow/types.js +3 -0
  66. package/dist/servicenow/types.js.map +1 -0
  67. package/dist/tools/agile.d.ts +225 -0
  68. package/dist/tools/agile.d.ts.map +1 -0
  69. package/dist/tools/agile.js +205 -0
  70. package/dist/tools/agile.js.map +1 -0
  71. package/dist/tools/app-studio.d.ts +139 -0
  72. package/dist/tools/app-studio.d.ts.map +1 -0
  73. package/dist/tools/app-studio.js +139 -0
  74. package/dist/tools/app-studio.js.map +1 -0
  75. package/dist/tools/atf.d.ts +144 -0
  76. package/dist/tools/atf.d.ts.map +1 -0
  77. package/dist/tools/atf.js +186 -0
  78. package/dist/tools/atf.js.map +1 -0
  79. package/dist/tools/catalog.d.ts +628 -0
  80. package/dist/tools/catalog.d.ts.map +1 -0
  81. package/dist/tools/catalog.js +397 -0
  82. package/dist/tools/catalog.js.map +1 -0
  83. package/dist/tools/change.d.ts +347 -0
  84. package/dist/tools/change.d.ts.map +1 -0
  85. package/dist/tools/change.js +213 -0
  86. package/dist/tools/change.js.map +1 -0
  87. package/dist/tools/core.d.ts +540 -0
  88. package/dist/tools/core.d.ts.map +1 -0
  89. package/dist/tools/core.js +373 -0
  90. package/dist/tools/core.js.map +1 -0
  91. package/dist/tools/csm.d.ts +401 -0
  92. package/dist/tools/csm.d.ts.map +1 -0
  93. package/dist/tools/csm.js +255 -0
  94. package/dist/tools/csm.js.map +1 -0
  95. package/dist/tools/deployment.d.ts +366 -0
  96. package/dist/tools/deployment.d.ts.map +1 -0
  97. package/dist/tools/deployment.js +181 -0
  98. package/dist/tools/deployment.js.map +1 -0
  99. package/dist/tools/devops.d.ts +236 -0
  100. package/dist/tools/devops.d.ts.map +1 -0
  101. package/dist/tools/devops.js +207 -0
  102. package/dist/tools/devops.js.map +1 -0
  103. package/dist/tools/flow.d.ts +496 -0
  104. package/dist/tools/flow.d.ts.map +1 -0
  105. package/dist/tools/flow.js +348 -0
  106. package/dist/tools/flow.js.map +1 -0
  107. package/dist/tools/hrsd.d.ts +789 -0
  108. package/dist/tools/hrsd.d.ts.map +1 -0
  109. package/dist/tools/hrsd.js +377 -0
  110. package/dist/tools/hrsd.js.map +1 -0
  111. package/dist/tools/incident.d.ts +256 -0
  112. package/dist/tools/incident.d.ts.map +1 -0
  113. package/dist/tools/incident.js +163 -0
  114. package/dist/tools/incident.js.map +1 -0
  115. package/dist/tools/index.d.ts +11514 -0
  116. package/dist/tools/index.d.ts.map +1 -0
  117. package/dist/tools/index.js +276 -0
  118. package/dist/tools/index.js.map +1 -0
  119. package/dist/tools/integration.d.ts +603 -0
  120. package/dist/tools/integration.d.ts.map +1 -0
  121. package/dist/tools/integration.js +510 -0
  122. package/dist/tools/integration.js.map +1 -0
  123. package/dist/tools/itam.d.ts +462 -0
  124. package/dist/tools/itam.d.ts.map +1 -0
  125. package/dist/tools/itam.js +306 -0
  126. package/dist/tools/itam.js.map +1 -0
  127. package/dist/tools/knowledge.d.ts +187 -0
  128. package/dist/tools/knowledge.d.ts.map +1 -0
  129. package/dist/tools/knowledge.js +161 -0
  130. package/dist/tools/knowledge.js.map +1 -0
  131. package/dist/tools/ml.d.ts +263 -0
  132. package/dist/tools/ml.d.ts.map +1 -0
  133. package/dist/tools/ml.js +251 -0
  134. package/dist/tools/ml.js.map +1 -0
  135. package/dist/tools/mobile.d.ts +352 -0
  136. package/dist/tools/mobile.d.ts.map +1 -0
  137. package/dist/tools/mobile.js +122 -0
  138. package/dist/tools/mobile.js.map +1 -0
  139. package/dist/tools/notification.d.ts +590 -0
  140. package/dist/tools/notification.d.ts.map +1 -0
  141. package/dist/tools/notification.js +382 -0
  142. package/dist/tools/notification.js.map +1 -0
  143. package/dist/tools/now-assist.d.ts +300 -0
  144. package/dist/tools/now-assist.d.ts.map +1 -0
  145. package/dist/tools/now-assist.js +227 -0
  146. package/dist/tools/now-assist.js.map +1 -0
  147. package/dist/tools/performance.d.ts +447 -0
  148. package/dist/tools/performance.d.ts.map +1 -0
  149. package/dist/tools/performance.js +473 -0
  150. package/dist/tools/performance.js.map +1 -0
  151. package/dist/tools/portal.d.ts +530 -0
  152. package/dist/tools/portal.d.ts.map +1 -0
  153. package/dist/tools/portal.js +425 -0
  154. package/dist/tools/portal.js.map +1 -0
  155. package/dist/tools/problem.d.ts +110 -0
  156. package/dist/tools/problem.d.ts.map +1 -0
  157. package/dist/tools/problem.js +100 -0
  158. package/dist/tools/problem.js.map +1 -0
  159. package/dist/tools/reporting.d.ts +825 -0
  160. package/dist/tools/reporting.d.ts.map +1 -0
  161. package/dist/tools/reporting.js +460 -0
  162. package/dist/tools/reporting.js.map +1 -0
  163. package/dist/tools/script.d.ts +714 -0
  164. package/dist/tools/script.d.ts.map +1 -0
  165. package/dist/tools/script.js +629 -0
  166. package/dist/tools/script.js.map +1 -0
  167. package/dist/tools/security.d.ts +794 -0
  168. package/dist/tools/security.d.ts.map +1 -0
  169. package/dist/tools/security.js +425 -0
  170. package/dist/tools/security.js.map +1 -0
  171. package/dist/tools/sys-properties.d.ts +315 -0
  172. package/dist/tools/sys-properties.d.ts.map +1 -0
  173. package/dist/tools/sys-properties.js +372 -0
  174. package/dist/tools/sys-properties.js.map +1 -0
  175. package/dist/tools/task.d.ts +82 -0
  176. package/dist/tools/task.d.ts.map +1 -0
  177. package/dist/tools/task.js +96 -0
  178. package/dist/tools/task.js.map +1 -0
  179. package/dist/tools/updateset.d.ts +159 -0
  180. package/dist/tools/updateset.d.ts.map +1 -0
  181. package/dist/tools/updateset.js +212 -0
  182. package/dist/tools/updateset.js.map +1 -0
  183. package/dist/tools/user.d.ts +206 -0
  184. package/dist/tools/user.d.ts.map +1 -0
  185. package/dist/tools/user.js +163 -0
  186. package/dist/tools/user.js.map +1 -0
  187. package/dist/tools/va.d.ts +217 -0
  188. package/dist/tools/va.d.ts.map +1 -0
  189. package/dist/tools/va.js +178 -0
  190. package/dist/tools/va.js.map +1 -0
  191. package/dist/tools/workspace.d.ts +565 -0
  192. package/dist/tools/workspace.d.ts.map +1 -0
  193. package/dist/tools/workspace.js +201 -0
  194. package/dist/tools/workspace.js.map +1 -0
  195. package/dist/tools-manifest.json +7852 -0
  196. package/dist/utils/errors.d.ts +6 -0
  197. package/dist/utils/errors.d.ts.map +1 -0
  198. package/dist/utils/errors.js +11 -0
  199. package/dist/utils/errors.js.map +1 -0
  200. package/dist/utils/logging.d.ts +7 -0
  201. package/dist/utils/logging.d.ts.map +1 -0
  202. package/dist/utils/logging.js +15 -0
  203. package/dist/utils/logging.js.map +1 -0
  204. package/dist/utils/permissions.d.ts +21 -0
  205. package/dist/utils/permissions.d.ts.map +1 -0
  206. package/dist/utils/permissions.js +54 -0
  207. package/dist/utils/permissions.js.map +1 -0
  208. package/instances.example.json +71 -0
  209. package/package.json +110 -0
@@ -0,0 +1,496 @@
1
+ /**
2
+ * Flow Designer tools — list, inspect, trigger, and monitor flows and subflows.
3
+ * Read tools: Tier 0. Trigger/create tools: Tier 1 (WRITE_ENABLED=true).
4
+ */
5
+ import type { ServiceNowClient } from '../servicenow/client.js';
6
+ export declare function getFlowToolDefinitions(): ({
7
+ name: string;
8
+ description: string;
9
+ inputSchema: {
10
+ type: string;
11
+ properties: {
12
+ query: {
13
+ type: string;
14
+ description: string;
15
+ };
16
+ active: {
17
+ type: string;
18
+ description: string;
19
+ };
20
+ category: {
21
+ type: string;
22
+ description: string;
23
+ };
24
+ limit: {
25
+ type: string;
26
+ description: string;
27
+ };
28
+ name_or_sysid?: undefined;
29
+ flow_sys_id?: undefined;
30
+ inputs?: undefined;
31
+ execution_sysid?: undefined;
32
+ status?: undefined;
33
+ name?: undefined;
34
+ description?: undefined;
35
+ trigger_type?: undefined;
36
+ trigger_table?: undefined;
37
+ scope?: undefined;
38
+ outputs?: undefined;
39
+ script?: undefined;
40
+ type?: undefined;
41
+ test_inputs?: undefined;
42
+ days?: undefined;
43
+ };
44
+ required: never[];
45
+ };
46
+ } | {
47
+ name: string;
48
+ description: string;
49
+ inputSchema: {
50
+ type: string;
51
+ properties: {
52
+ name_or_sysid: {
53
+ type: string;
54
+ description: string;
55
+ };
56
+ query?: undefined;
57
+ active?: undefined;
58
+ category?: undefined;
59
+ limit?: undefined;
60
+ flow_sys_id?: undefined;
61
+ inputs?: undefined;
62
+ execution_sysid?: undefined;
63
+ status?: undefined;
64
+ name?: undefined;
65
+ description?: undefined;
66
+ trigger_type?: undefined;
67
+ trigger_table?: undefined;
68
+ scope?: undefined;
69
+ outputs?: undefined;
70
+ script?: undefined;
71
+ type?: undefined;
72
+ test_inputs?: undefined;
73
+ days?: undefined;
74
+ };
75
+ required: string[];
76
+ };
77
+ } | {
78
+ name: string;
79
+ description: string;
80
+ inputSchema: {
81
+ type: string;
82
+ properties: {
83
+ flow_sys_id: {
84
+ type: string;
85
+ description: string;
86
+ };
87
+ inputs: {
88
+ type: string;
89
+ description: string;
90
+ items?: undefined;
91
+ };
92
+ query?: undefined;
93
+ active?: undefined;
94
+ category?: undefined;
95
+ limit?: undefined;
96
+ name_or_sysid?: undefined;
97
+ execution_sysid?: undefined;
98
+ status?: undefined;
99
+ name?: undefined;
100
+ description?: undefined;
101
+ trigger_type?: undefined;
102
+ trigger_table?: undefined;
103
+ scope?: undefined;
104
+ outputs?: undefined;
105
+ script?: undefined;
106
+ type?: undefined;
107
+ test_inputs?: undefined;
108
+ days?: undefined;
109
+ };
110
+ required: string[];
111
+ };
112
+ } | {
113
+ name: string;
114
+ description: string;
115
+ inputSchema: {
116
+ type: string;
117
+ properties: {
118
+ execution_sysid: {
119
+ type: string;
120
+ description: string;
121
+ };
122
+ query?: undefined;
123
+ active?: undefined;
124
+ category?: undefined;
125
+ limit?: undefined;
126
+ name_or_sysid?: undefined;
127
+ flow_sys_id?: undefined;
128
+ inputs?: undefined;
129
+ status?: undefined;
130
+ name?: undefined;
131
+ description?: undefined;
132
+ trigger_type?: undefined;
133
+ trigger_table?: undefined;
134
+ scope?: undefined;
135
+ outputs?: undefined;
136
+ script?: undefined;
137
+ type?: undefined;
138
+ test_inputs?: undefined;
139
+ days?: undefined;
140
+ };
141
+ required: string[];
142
+ };
143
+ } | {
144
+ name: string;
145
+ description: string;
146
+ inputSchema: {
147
+ type: string;
148
+ properties: {
149
+ flow_sys_id: {
150
+ type: string;
151
+ description: string;
152
+ };
153
+ status: {
154
+ type: string;
155
+ description: string;
156
+ };
157
+ limit: {
158
+ type: string;
159
+ description: string;
160
+ };
161
+ query?: undefined;
162
+ active?: undefined;
163
+ category?: undefined;
164
+ name_or_sysid?: undefined;
165
+ inputs?: undefined;
166
+ execution_sysid?: undefined;
167
+ name?: undefined;
168
+ description?: undefined;
169
+ trigger_type?: undefined;
170
+ trigger_table?: undefined;
171
+ scope?: undefined;
172
+ outputs?: undefined;
173
+ script?: undefined;
174
+ type?: undefined;
175
+ test_inputs?: undefined;
176
+ days?: undefined;
177
+ };
178
+ required: string[];
179
+ };
180
+ } | {
181
+ name: string;
182
+ description: string;
183
+ inputSchema: {
184
+ type: string;
185
+ properties: {
186
+ query: {
187
+ type: string;
188
+ description: string;
189
+ };
190
+ active: {
191
+ type: string;
192
+ description: string;
193
+ };
194
+ limit: {
195
+ type: string;
196
+ description: string;
197
+ };
198
+ category?: undefined;
199
+ name_or_sysid?: undefined;
200
+ flow_sys_id?: undefined;
201
+ inputs?: undefined;
202
+ execution_sysid?: undefined;
203
+ status?: undefined;
204
+ name?: undefined;
205
+ description?: undefined;
206
+ trigger_type?: undefined;
207
+ trigger_table?: undefined;
208
+ scope?: undefined;
209
+ outputs?: undefined;
210
+ script?: undefined;
211
+ type?: undefined;
212
+ test_inputs?: undefined;
213
+ days?: undefined;
214
+ };
215
+ required: never[];
216
+ };
217
+ } | {
218
+ name: string;
219
+ description: string;
220
+ inputSchema: {
221
+ type: string;
222
+ properties: {
223
+ query: {
224
+ type: string;
225
+ description: string;
226
+ };
227
+ category: {
228
+ type: string;
229
+ description: string;
230
+ };
231
+ limit: {
232
+ type: string;
233
+ description: string;
234
+ };
235
+ active?: undefined;
236
+ name_or_sysid?: undefined;
237
+ flow_sys_id?: undefined;
238
+ inputs?: undefined;
239
+ execution_sysid?: undefined;
240
+ status?: undefined;
241
+ name?: undefined;
242
+ description?: undefined;
243
+ trigger_type?: undefined;
244
+ trigger_table?: undefined;
245
+ scope?: undefined;
246
+ outputs?: undefined;
247
+ script?: undefined;
248
+ type?: undefined;
249
+ test_inputs?: undefined;
250
+ days?: undefined;
251
+ };
252
+ required: never[];
253
+ };
254
+ } | {
255
+ name: string;
256
+ description: string;
257
+ inputSchema: {
258
+ type: string;
259
+ properties: {
260
+ name: {
261
+ type: string;
262
+ description: string;
263
+ };
264
+ description: {
265
+ type: string;
266
+ description: string;
267
+ };
268
+ trigger_type: {
269
+ type: string;
270
+ description: string;
271
+ };
272
+ trigger_table: {
273
+ type: string;
274
+ description: string;
275
+ };
276
+ scope: {
277
+ type: string;
278
+ description: string;
279
+ };
280
+ query?: undefined;
281
+ active?: undefined;
282
+ category?: undefined;
283
+ limit?: undefined;
284
+ name_or_sysid?: undefined;
285
+ flow_sys_id?: undefined;
286
+ inputs?: undefined;
287
+ execution_sysid?: undefined;
288
+ status?: undefined;
289
+ outputs?: undefined;
290
+ script?: undefined;
291
+ type?: undefined;
292
+ test_inputs?: undefined;
293
+ days?: undefined;
294
+ };
295
+ required: string[];
296
+ };
297
+ } | {
298
+ name: string;
299
+ description: string;
300
+ inputSchema: {
301
+ type: string;
302
+ properties: {
303
+ name: {
304
+ type: string;
305
+ description: string;
306
+ };
307
+ description: {
308
+ type: string;
309
+ description: string;
310
+ };
311
+ inputs: {
312
+ type: string;
313
+ items: {
314
+ type: string;
315
+ };
316
+ description: string;
317
+ };
318
+ scope: {
319
+ type: string;
320
+ description: string;
321
+ };
322
+ query?: undefined;
323
+ active?: undefined;
324
+ category?: undefined;
325
+ limit?: undefined;
326
+ name_or_sysid?: undefined;
327
+ flow_sys_id?: undefined;
328
+ execution_sysid?: undefined;
329
+ status?: undefined;
330
+ trigger_type?: undefined;
331
+ trigger_table?: undefined;
332
+ outputs?: undefined;
333
+ script?: undefined;
334
+ type?: undefined;
335
+ test_inputs?: undefined;
336
+ days?: undefined;
337
+ };
338
+ required: string[];
339
+ };
340
+ } | {
341
+ name: string;
342
+ description: string;
343
+ inputSchema: {
344
+ type: string;
345
+ properties: {
346
+ name: {
347
+ type: string;
348
+ description: string;
349
+ };
350
+ description: {
351
+ type: string;
352
+ description: string;
353
+ };
354
+ inputs: {
355
+ type: string;
356
+ items: {
357
+ type: string;
358
+ };
359
+ description: string;
360
+ };
361
+ outputs: {
362
+ type: string;
363
+ items: {
364
+ type: string;
365
+ };
366
+ description: string;
367
+ };
368
+ script: {
369
+ type: string;
370
+ description: string;
371
+ };
372
+ query?: undefined;
373
+ active?: undefined;
374
+ category?: undefined;
375
+ limit?: undefined;
376
+ name_or_sysid?: undefined;
377
+ flow_sys_id?: undefined;
378
+ execution_sysid?: undefined;
379
+ status?: undefined;
380
+ trigger_type?: undefined;
381
+ trigger_table?: undefined;
382
+ scope?: undefined;
383
+ type?: undefined;
384
+ test_inputs?: undefined;
385
+ days?: undefined;
386
+ };
387
+ required: string[];
388
+ };
389
+ } | {
390
+ name: string;
391
+ description: string;
392
+ inputSchema: {
393
+ type: string;
394
+ properties: {
395
+ flow_sys_id: {
396
+ type: string;
397
+ description: string;
398
+ };
399
+ type: {
400
+ type: string;
401
+ description: string;
402
+ };
403
+ query?: undefined;
404
+ active?: undefined;
405
+ category?: undefined;
406
+ limit?: undefined;
407
+ name_or_sysid?: undefined;
408
+ inputs?: undefined;
409
+ execution_sysid?: undefined;
410
+ status?: undefined;
411
+ name?: undefined;
412
+ description?: undefined;
413
+ trigger_type?: undefined;
414
+ trigger_table?: undefined;
415
+ scope?: undefined;
416
+ outputs?: undefined;
417
+ script?: undefined;
418
+ test_inputs?: undefined;
419
+ days?: undefined;
420
+ };
421
+ required: string[];
422
+ };
423
+ } | {
424
+ name: string;
425
+ description: string;
426
+ inputSchema: {
427
+ type: string;
428
+ properties: {
429
+ flow_sys_id: {
430
+ type: string;
431
+ description: string;
432
+ };
433
+ test_inputs: {
434
+ type: string;
435
+ description: string;
436
+ };
437
+ query?: undefined;
438
+ active?: undefined;
439
+ category?: undefined;
440
+ limit?: undefined;
441
+ name_or_sysid?: undefined;
442
+ inputs?: undefined;
443
+ execution_sysid?: undefined;
444
+ status?: undefined;
445
+ name?: undefined;
446
+ description?: undefined;
447
+ trigger_type?: undefined;
448
+ trigger_table?: undefined;
449
+ scope?: undefined;
450
+ outputs?: undefined;
451
+ script?: undefined;
452
+ type?: undefined;
453
+ days?: undefined;
454
+ };
455
+ required: string[];
456
+ };
457
+ } | {
458
+ name: string;
459
+ description: string;
460
+ inputSchema: {
461
+ type: string;
462
+ properties: {
463
+ flow_sys_id: {
464
+ type: string;
465
+ description: string;
466
+ };
467
+ days: {
468
+ type: string;
469
+ description: string;
470
+ };
471
+ limit: {
472
+ type: string;
473
+ description: string;
474
+ };
475
+ query?: undefined;
476
+ active?: undefined;
477
+ category?: undefined;
478
+ name_or_sysid?: undefined;
479
+ inputs?: undefined;
480
+ execution_sysid?: undefined;
481
+ status?: undefined;
482
+ name?: undefined;
483
+ description?: undefined;
484
+ trigger_type?: undefined;
485
+ trigger_table?: undefined;
486
+ scope?: undefined;
487
+ outputs?: undefined;
488
+ script?: undefined;
489
+ type?: undefined;
490
+ test_inputs?: undefined;
491
+ };
492
+ required: string[];
493
+ };
494
+ })[];
495
+ export declare function executeFlowToolCall(client: ServiceNowClient, name: string, args: Record<string, any>): Promise<any>;
496
+ //# sourceMappingURL=flow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flow.d.ts","sourceRoot":"","sources":["../../src/tools/flow.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAIhE,wBAAgB,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA+MrC;AAED,wBAAsB,mBAAmB,CACvC,MAAM,EAAE,gBAAgB,EACxB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GACxB,OAAO,CAAC,GAAG,CAAC,CA+Gd"}