@syntero/orca-cli 1.3.2 → 1.3.4

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 (95) hide show
  1. package/dist/assistant/anthropic.js +1 -1
  2. package/dist/assistant/anthropic.js.map +1 -1
  3. package/dist/assistant/helpers.js +1 -1
  4. package/dist/assistant/helpers.js.map +1 -1
  5. package/dist/assistant/openai.js +1 -1
  6. package/dist/assistant/openai.js.map +1 -1
  7. package/dist/assistant/prompts.d.ts.map +1 -1
  8. package/dist/assistant/prompts.js +63 -34
  9. package/dist/assistant/prompts.js.map +1 -1
  10. package/dist/assistant/types.d.ts +1 -1
  11. package/dist/assistant/types.d.ts.map +1 -1
  12. package/dist/components/ChatApp.d.ts.map +1 -1
  13. package/dist/components/ChatApp.js +8 -6
  14. package/dist/components/ChatApp.js.map +1 -1
  15. package/dist/components/InputFooter.d.ts.map +1 -1
  16. package/dist/components/InputFooter.js +34 -695
  17. package/dist/components/InputFooter.js.map +1 -1
  18. package/dist/components/ResumeMenu.d.ts.map +1 -1
  19. package/dist/components/ResumeMenu.js +24 -3
  20. package/dist/components/ResumeMenu.js.map +1 -1
  21. package/dist/components/hooks/useCommandPalette.d.ts +13 -0
  22. package/dist/components/hooks/useCommandPalette.d.ts.map +1 -0
  23. package/dist/components/hooks/useCommandPalette.js +38 -0
  24. package/dist/components/hooks/useCommandPalette.js.map +1 -0
  25. package/dist/components/hooks/useInputKeyHandler.d.ts +14 -0
  26. package/dist/components/hooks/useInputKeyHandler.d.ts.map +1 -0
  27. package/dist/components/hooks/useInputKeyHandler.js +584 -0
  28. package/dist/components/hooks/useInputKeyHandler.js.map +1 -0
  29. package/dist/components/hooks/useInputLines.d.ts +18 -0
  30. package/dist/components/hooks/useInputLines.d.ts.map +1 -0
  31. package/dist/components/hooks/useInputLines.js +46 -0
  32. package/dist/components/hooks/useInputLines.js.map +1 -0
  33. package/dist/components/hooks/useMenus.d.ts +60 -0
  34. package/dist/components/hooks/useMenus.d.ts.map +1 -0
  35. package/dist/components/hooks/useMenus.js +266 -0
  36. package/dist/components/hooks/useMenus.js.map +1 -0
  37. package/dist/components/hooks/usePasteBlocks.d.ts +14 -0
  38. package/dist/components/hooks/usePasteBlocks.d.ts.map +1 -0
  39. package/dist/components/hooks/usePasteBlocks.js +32 -0
  40. package/dist/components/hooks/usePasteBlocks.js.map +1 -0
  41. package/dist/models.js +4 -4
  42. package/dist/settings.js +1 -1
  43. package/dist/tools/auth-tools.d.ts +26 -0
  44. package/dist/tools/auth-tools.d.ts.map +1 -0
  45. package/dist/tools/auth-tools.js +53 -0
  46. package/dist/tools/auth-tools.js.map +1 -0
  47. package/dist/tools/command.d.ts +28 -0
  48. package/dist/tools/command.d.ts.map +1 -0
  49. package/dist/tools/command.js +76 -0
  50. package/dist/tools/command.js.map +1 -0
  51. package/dist/tools/database.d.ts +19 -0
  52. package/dist/tools/database.d.ts.map +1 -0
  53. package/dist/tools/database.js +90 -0
  54. package/dist/tools/database.js.map +1 -0
  55. package/dist/tools/deployment.d.ts +195 -0
  56. package/dist/tools/deployment.d.ts.map +1 -0
  57. package/dist/tools/deployment.js +324 -0
  58. package/dist/tools/deployment.js.map +1 -0
  59. package/dist/tools/docker.d.ts +51 -0
  60. package/dist/tools/docker.d.ts.map +1 -0
  61. package/dist/tools/docker.js +68 -0
  62. package/dist/tools/docker.js.map +1 -0
  63. package/dist/tools/env.d.ts +18 -0
  64. package/dist/tools/env.d.ts.map +1 -0
  65. package/dist/tools/env.js +52 -0
  66. package/dist/tools/env.js.map +1 -0
  67. package/dist/tools/filesystem.d.ts +77 -0
  68. package/dist/tools/filesystem.d.ts.map +1 -0
  69. package/dist/tools/filesystem.js +138 -0
  70. package/dist/tools/filesystem.js.map +1 -0
  71. package/dist/tools/handler.d.ts +5 -0
  72. package/dist/tools/handler.d.ts.map +1 -0
  73. package/dist/tools/handler.js +62 -0
  74. package/dist/tools/handler.js.map +1 -0
  75. package/dist/tools/index.d.ts +614 -0
  76. package/dist/tools/index.d.ts.map +1 -0
  77. package/dist/tools/index.js +40 -0
  78. package/dist/tools/index.js.map +1 -0
  79. package/dist/tools/inference.d.ts +127 -0
  80. package/dist/tools/inference.d.ts.map +1 -0
  81. package/dist/tools/inference.js +318 -0
  82. package/dist/tools/inference.js.map +1 -0
  83. package/dist/tools/shared.d.ts +21 -0
  84. package/dist/tools/shared.d.ts.map +1 -0
  85. package/dist/tools/shared.js +75 -0
  86. package/dist/tools/shared.js.map +1 -0
  87. package/dist/tools/types.d.ts +2 -0
  88. package/dist/tools/types.d.ts.map +1 -0
  89. package/dist/tools/types.js +3 -0
  90. package/dist/tools/types.js.map +1 -0
  91. package/package.json +4 -4
  92. package/dist/tools.d.ts +0 -908
  93. package/dist/tools.d.ts.map +0 -1
  94. package/dist/tools.js +0 -774
  95. package/dist/tools.js.map +0 -1
@@ -0,0 +1,614 @@
1
+ /**
2
+ * Tools module — barrel file.
3
+ * Aggregates tool definitions from domain submodules and re-exports
4
+ * the central handleToolCall dispatcher plus shared types.
5
+ */
6
+ export { detectDangerousCommand, checkCommand, allCategoriesApproved, type DangerousCommand, type DangerCheckResult, type RiskLevel, } from './types.js';
7
+ export { runCommand } from './command.js';
8
+ export { handleToolCall } from './handler.js';
9
+ export declare const TOOLS_ANTHROPIC: ({
10
+ name: string;
11
+ description: string;
12
+ input_schema: {
13
+ type: string;
14
+ properties: {
15
+ command: {
16
+ type: string;
17
+ description: string;
18
+ };
19
+ gist: {
20
+ type: string;
21
+ description: string;
22
+ };
23
+ };
24
+ required: string[];
25
+ };
26
+ } | {
27
+ name: string;
28
+ description: string;
29
+ input_schema: {
30
+ type: string;
31
+ properties: {
32
+ path: {
33
+ type: string;
34
+ description: string;
35
+ };
36
+ tail: {
37
+ type: string;
38
+ description: string;
39
+ };
40
+ pattern?: undefined;
41
+ case_insensitive?: undefined;
42
+ context_lines?: undefined;
43
+ };
44
+ required: string[];
45
+ };
46
+ } | {
47
+ name: string;
48
+ description: string;
49
+ input_schema: {
50
+ type: string;
51
+ properties: {
52
+ path: {
53
+ type: string;
54
+ description: string;
55
+ };
56
+ tail?: undefined;
57
+ pattern?: undefined;
58
+ case_insensitive?: undefined;
59
+ context_lines?: undefined;
60
+ };
61
+ required: string[];
62
+ };
63
+ } | {
64
+ name: string;
65
+ description: string;
66
+ input_schema: {
67
+ type: string;
68
+ properties: {
69
+ pattern: {
70
+ type: string;
71
+ description: string;
72
+ };
73
+ path: {
74
+ type: string;
75
+ description: string;
76
+ };
77
+ case_insensitive: {
78
+ type: string;
79
+ description: string;
80
+ };
81
+ context_lines: {
82
+ type: string;
83
+ description: string;
84
+ };
85
+ tail?: undefined;
86
+ };
87
+ required: string[];
88
+ };
89
+ } | {
90
+ name: string;
91
+ description: string;
92
+ input_schema: {
93
+ type: string;
94
+ properties: {
95
+ show_all: {
96
+ type: string;
97
+ description: string;
98
+ };
99
+ };
100
+ };
101
+ } | {
102
+ name: string;
103
+ description: string;
104
+ input_schema: {
105
+ type: string;
106
+ properties: {
107
+ query: {
108
+ type: string;
109
+ description: string;
110
+ };
111
+ };
112
+ required: string[];
113
+ };
114
+ } | {
115
+ name: string;
116
+ description: string;
117
+ input_schema: {
118
+ type: string;
119
+ properties: {
120
+ container: {
121
+ type: string;
122
+ description: string;
123
+ };
124
+ pattern: {
125
+ type: string;
126
+ description: string;
127
+ };
128
+ case_insensitive: {
129
+ type: string;
130
+ description: string;
131
+ };
132
+ context_lines: {
133
+ type: string;
134
+ description: string;
135
+ };
136
+ };
137
+ required: string[];
138
+ };
139
+ } | {
140
+ name: string;
141
+ description: string;
142
+ input_schema: {
143
+ type: string;
144
+ properties: {};
145
+ required?: undefined;
146
+ };
147
+ } | {
148
+ name: string;
149
+ description: string;
150
+ input_schema: {
151
+ type: string;
152
+ properties: {};
153
+ required: never[];
154
+ };
155
+ } | {
156
+ name: string;
157
+ description: string;
158
+ input_schema: {
159
+ type: string;
160
+ properties: {
161
+ target_dir: {
162
+ type: string;
163
+ description: string;
164
+ };
165
+ path?: undefined;
166
+ event?: undefined;
167
+ version?: undefined;
168
+ previous_version?: undefined;
169
+ status?: undefined;
170
+ notes?: undefined;
171
+ limit?: undefined;
172
+ include_prerelease?: undefined;
173
+ org_id?: undefined;
174
+ };
175
+ required: string[];
176
+ };
177
+ } | {
178
+ name: string;
179
+ description: string;
180
+ input_schema: {
181
+ type: string;
182
+ properties: {
183
+ path: {
184
+ type: string;
185
+ description: string;
186
+ };
187
+ target_dir?: undefined;
188
+ event?: undefined;
189
+ version?: undefined;
190
+ previous_version?: undefined;
191
+ status?: undefined;
192
+ notes?: undefined;
193
+ limit?: undefined;
194
+ include_prerelease?: undefined;
195
+ org_id?: undefined;
196
+ };
197
+ required: string[];
198
+ };
199
+ } | {
200
+ name: string;
201
+ description: string;
202
+ input_schema: {
203
+ type: string;
204
+ properties: {
205
+ event: {
206
+ type: string;
207
+ enum: string[];
208
+ description: string;
209
+ };
210
+ version: {
211
+ type: string;
212
+ description: string;
213
+ };
214
+ previous_version: {
215
+ type: string;
216
+ description: string;
217
+ };
218
+ status: {
219
+ type: string;
220
+ enum: string[];
221
+ description: string;
222
+ };
223
+ notes: {
224
+ type: string;
225
+ description: string;
226
+ };
227
+ target_dir?: undefined;
228
+ path?: undefined;
229
+ limit?: undefined;
230
+ include_prerelease?: undefined;
231
+ org_id?: undefined;
232
+ };
233
+ required: string[];
234
+ };
235
+ } | {
236
+ name: string;
237
+ description: string;
238
+ input_schema: {
239
+ type: string;
240
+ properties: {
241
+ org_id: {
242
+ type: string;
243
+ description: string;
244
+ };
245
+ target_dir?: undefined;
246
+ path?: undefined;
247
+ event?: undefined;
248
+ version?: undefined;
249
+ previous_version?: undefined;
250
+ status?: undefined;
251
+ notes?: undefined;
252
+ limit?: undefined;
253
+ include_prerelease?: undefined;
254
+ };
255
+ required: string[];
256
+ };
257
+ } | {
258
+ name: string;
259
+ description: string;
260
+ input_schema: {
261
+ type: string;
262
+ properties: {
263
+ agent_id: {
264
+ type: string;
265
+ description: string;
266
+ };
267
+ target_dir?: undefined;
268
+ endpoint_url?: undefined;
269
+ model?: undefined;
270
+ prompt?: undefined;
271
+ model_name?: undefined;
272
+ };
273
+ required: string[];
274
+ };
275
+ } | {
276
+ name: string;
277
+ description: string;
278
+ input_schema: {
279
+ type: string;
280
+ properties: {
281
+ agent_id: {
282
+ type: string;
283
+ description: string;
284
+ };
285
+ target_dir: {
286
+ type: string;
287
+ description: string;
288
+ };
289
+ endpoint_url?: undefined;
290
+ model?: undefined;
291
+ prompt?: undefined;
292
+ model_name?: undefined;
293
+ };
294
+ required: string[];
295
+ };
296
+ } | {
297
+ name: string;
298
+ description: string;
299
+ input_schema: {
300
+ type: string;
301
+ properties: {
302
+ endpoint_url: {
303
+ type: string;
304
+ description: string;
305
+ };
306
+ model: {
307
+ type: string;
308
+ description: string;
309
+ };
310
+ prompt: {
311
+ type: string;
312
+ description: string;
313
+ };
314
+ agent_id?: undefined;
315
+ target_dir?: undefined;
316
+ model_name?: undefined;
317
+ };
318
+ required: string[];
319
+ };
320
+ } | {
321
+ name: string;
322
+ description: string;
323
+ input_schema: {
324
+ type: string;
325
+ properties: {
326
+ endpoint_url: {
327
+ type: string;
328
+ description: string;
329
+ };
330
+ model_name: {
331
+ type: string;
332
+ description: string;
333
+ };
334
+ agent_id?: undefined;
335
+ target_dir?: undefined;
336
+ model?: undefined;
337
+ prompt?: undefined;
338
+ };
339
+ required: string[];
340
+ };
341
+ })[];
342
+ export declare const TOOLS_OPENAI: {
343
+ type: "function";
344
+ function: {
345
+ name: string;
346
+ description: string;
347
+ parameters: {
348
+ type: string;
349
+ properties: {
350
+ command: {
351
+ type: string;
352
+ description: string;
353
+ };
354
+ gist: {
355
+ type: string;
356
+ description: string;
357
+ };
358
+ };
359
+ required: string[];
360
+ } | {
361
+ type: string;
362
+ properties: {
363
+ path: {
364
+ type: string;
365
+ description: string;
366
+ };
367
+ tail: {
368
+ type: string;
369
+ description: string;
370
+ };
371
+ pattern?: undefined;
372
+ case_insensitive?: undefined;
373
+ context_lines?: undefined;
374
+ };
375
+ required: string[];
376
+ } | {
377
+ type: string;
378
+ properties: {
379
+ path: {
380
+ type: string;
381
+ description: string;
382
+ };
383
+ tail?: undefined;
384
+ pattern?: undefined;
385
+ case_insensitive?: undefined;
386
+ context_lines?: undefined;
387
+ };
388
+ required: string[];
389
+ } | {
390
+ type: string;
391
+ properties: {
392
+ pattern: {
393
+ type: string;
394
+ description: string;
395
+ };
396
+ path: {
397
+ type: string;
398
+ description: string;
399
+ };
400
+ case_insensitive: {
401
+ type: string;
402
+ description: string;
403
+ };
404
+ context_lines: {
405
+ type: string;
406
+ description: string;
407
+ };
408
+ tail?: undefined;
409
+ };
410
+ required: string[];
411
+ } | {
412
+ type: string;
413
+ properties: {
414
+ show_all: {
415
+ type: string;
416
+ description: string;
417
+ };
418
+ };
419
+ } | {
420
+ type: string;
421
+ properties: {
422
+ query: {
423
+ type: string;
424
+ description: string;
425
+ };
426
+ };
427
+ required: string[];
428
+ } | {
429
+ type: string;
430
+ properties: {
431
+ container: {
432
+ type: string;
433
+ description: string;
434
+ };
435
+ pattern: {
436
+ type: string;
437
+ description: string;
438
+ };
439
+ case_insensitive: {
440
+ type: string;
441
+ description: string;
442
+ };
443
+ context_lines: {
444
+ type: string;
445
+ description: string;
446
+ };
447
+ };
448
+ required: string[];
449
+ } | {
450
+ type: string;
451
+ properties: {};
452
+ required?: undefined;
453
+ } | {
454
+ type: string;
455
+ properties: {};
456
+ required: never[];
457
+ } | {
458
+ type: string;
459
+ properties: {
460
+ target_dir: {
461
+ type: string;
462
+ description: string;
463
+ };
464
+ path?: undefined;
465
+ event?: undefined;
466
+ version?: undefined;
467
+ previous_version?: undefined;
468
+ status?: undefined;
469
+ notes?: undefined;
470
+ limit?: undefined;
471
+ include_prerelease?: undefined;
472
+ org_id?: undefined;
473
+ };
474
+ required: string[];
475
+ } | {
476
+ type: string;
477
+ properties: {
478
+ path: {
479
+ type: string;
480
+ description: string;
481
+ };
482
+ target_dir?: undefined;
483
+ event?: undefined;
484
+ version?: undefined;
485
+ previous_version?: undefined;
486
+ status?: undefined;
487
+ notes?: undefined;
488
+ limit?: undefined;
489
+ include_prerelease?: undefined;
490
+ org_id?: undefined;
491
+ };
492
+ required: string[];
493
+ } | {
494
+ type: string;
495
+ properties: {
496
+ event: {
497
+ type: string;
498
+ enum: string[];
499
+ description: string;
500
+ };
501
+ version: {
502
+ type: string;
503
+ description: string;
504
+ };
505
+ previous_version: {
506
+ type: string;
507
+ description: string;
508
+ };
509
+ status: {
510
+ type: string;
511
+ enum: string[];
512
+ description: string;
513
+ };
514
+ notes: {
515
+ type: string;
516
+ description: string;
517
+ };
518
+ target_dir?: undefined;
519
+ path?: undefined;
520
+ limit?: undefined;
521
+ include_prerelease?: undefined;
522
+ org_id?: undefined;
523
+ };
524
+ required: string[];
525
+ } | {
526
+ type: string;
527
+ properties: {
528
+ org_id: {
529
+ type: string;
530
+ description: string;
531
+ };
532
+ target_dir?: undefined;
533
+ path?: undefined;
534
+ event?: undefined;
535
+ version?: undefined;
536
+ previous_version?: undefined;
537
+ status?: undefined;
538
+ notes?: undefined;
539
+ limit?: undefined;
540
+ include_prerelease?: undefined;
541
+ };
542
+ required: string[];
543
+ } | {
544
+ type: string;
545
+ properties: {
546
+ agent_id: {
547
+ type: string;
548
+ description: string;
549
+ };
550
+ target_dir?: undefined;
551
+ endpoint_url?: undefined;
552
+ model?: undefined;
553
+ prompt?: undefined;
554
+ model_name?: undefined;
555
+ };
556
+ required: string[];
557
+ } | {
558
+ type: string;
559
+ properties: {
560
+ agent_id: {
561
+ type: string;
562
+ description: string;
563
+ };
564
+ target_dir: {
565
+ type: string;
566
+ description: string;
567
+ };
568
+ endpoint_url?: undefined;
569
+ model?: undefined;
570
+ prompt?: undefined;
571
+ model_name?: undefined;
572
+ };
573
+ required: string[];
574
+ } | {
575
+ type: string;
576
+ properties: {
577
+ endpoint_url: {
578
+ type: string;
579
+ description: string;
580
+ };
581
+ model: {
582
+ type: string;
583
+ description: string;
584
+ };
585
+ prompt: {
586
+ type: string;
587
+ description: string;
588
+ };
589
+ agent_id?: undefined;
590
+ target_dir?: undefined;
591
+ model_name?: undefined;
592
+ };
593
+ required: string[];
594
+ } | {
595
+ type: string;
596
+ properties: {
597
+ endpoint_url: {
598
+ type: string;
599
+ description: string;
600
+ };
601
+ model_name: {
602
+ type: string;
603
+ description: string;
604
+ };
605
+ agent_id?: undefined;
606
+ target_dir?: undefined;
607
+ model?: undefined;
608
+ prompt?: undefined;
609
+ };
610
+ required: string[];
611
+ };
612
+ };
613
+ }[];
614
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EACL,sBAAsB,EACtB,YAAY,EACZ,qBAAqB,EACrB,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,KAAK,SAAS,GACf,MAAM,YAAY,CAAC;AAGpB,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAa9C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAS3B,CAAC;AAGF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAOtB,CAAC"}
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Tools module — barrel file.
3
+ * Aggregates tool definitions from domain submodules and re-exports
4
+ * the central handleToolCall dispatcher plus shared types.
5
+ */
6
+ // Re-export types
7
+ export { detectDangerousCommand, checkCommand, allCategoriesApproved, } from './types.js';
8
+ // Re-export handler functions used externally
9
+ export { runCommand } from './command.js';
10
+ export { handleToolCall } from './handler.js';
11
+ // Import tool definition arrays from each domain module
12
+ import { COMMAND_TOOLS } from './command.js';
13
+ import { FILESYSTEM_TOOLS } from './filesystem.js';
14
+ import { ENV_TOOLS } from './env.js';
15
+ import { DATABASE_TOOLS } from './database.js';
16
+ import { DOCKER_TOOLS } from './docker.js';
17
+ import { AUTH_TOOLS } from './auth-tools.js';
18
+ import { DEPLOYMENT_TOOLS } from './deployment.js';
19
+ import { INFERENCE_TOOLS } from './inference.js';
20
+ // Tool definitions for Anthropic format
21
+ export const TOOLS_ANTHROPIC = [
22
+ ...COMMAND_TOOLS,
23
+ ...FILESYSTEM_TOOLS,
24
+ ...ENV_TOOLS,
25
+ ...DATABASE_TOOLS,
26
+ ...DOCKER_TOOLS,
27
+ ...AUTH_TOOLS,
28
+ ...DEPLOYMENT_TOOLS,
29
+ ...INFERENCE_TOOLS,
30
+ ];
31
+ // Convert to OpenAI format
32
+ export const TOOLS_OPENAI = TOOLS_ANTHROPIC.map((tool) => ({
33
+ type: 'function',
34
+ function: {
35
+ name: tool.name,
36
+ description: tool.description,
37
+ parameters: tool.input_schema,
38
+ },
39
+ }));
40
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,kBAAkB;AAClB,OAAO,EACL,sBAAsB,EACtB,YAAY,EACZ,qBAAqB,GAItB,MAAM,YAAY,CAAC;AAEpB,8CAA8C;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,wDAAwD;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAEjD,wCAAwC;AACxC,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,GAAG,aAAa;IAChB,GAAG,gBAAgB;IACnB,GAAG,SAAS;IACZ,GAAG,cAAc;IACjB,GAAG,YAAY;IACf,GAAG,UAAU;IACb,GAAG,gBAAgB;IACnB,GAAG,eAAe;CACnB,CAAC;AAEF,2BAA2B;AAC3B,MAAM,CAAC,MAAM,YAAY,GAAG,eAAe,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IACzD,IAAI,EAAE,UAAmB;IACzB,QAAQ,EAAE;QACR,IAAI,EAAE,IAAI,CAAC,IAAI;QACf,WAAW,EAAE,IAAI,CAAC,WAAW;QAC7B,UAAU,EAAE,IAAI,CAAC,YAAY;KAC9B;CACF,CAAC,CAAC,CAAC"}