@gitsense/gsc-utils 0.2.4 → 0.2.6

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.
@@ -2,11 +2,11 @@
2
2
  * Component: GitSenseChatUtils
3
3
  * Block-UUID: 5e8d1a9c-0b3f-4e1a-8c7d-9f0b2e1d3a4b
4
4
  * Parent-UUID: 7a9b1c8e-f1a4-4b2d-9e8f-6f7a0b1c2d3f
5
- * Version: 2.1.2
5
+ * Version: 2.1.3
6
6
  * Description: Interface class for GitSense Chat utilities providing a unified API for code block parsing (markdown), extraction, and patch operations. Integrates functionalities from CodeBlockUtils and PatchUtils modules, and now includes ConfigUtils and EnvUtils.
7
7
  * Language: JavaScript
8
8
  * Created-at: 2025-04-15T16:04:26.780Z
9
- * Authors: Claude 3.7 Sonnet (v1.0.0), Gemini 2.5 Pro (v2.0.0), Gemini 2.5 Pro (v2.1.0), Gemini 2.5 Pro (v2.1.1), Gemini 2.5 Flash (v2.1.2)
9
+ * Authors: Claude 3.7 Sonnet (v1.0.0), Gemini 2.5 Pro (v2.0.0), Gemini 2.5 Pro (v2.1.0), Gemini 2.5 Pro (v2.1.1), Gemini 2.5 Flash (v2.1.2), Gemini 2.5 Flash (v2.1.3)
10
10
  */
11
11
 
12
12
 
@@ -55,6 +55,17 @@ const {
55
55
  validateOverviewMetadata,
56
56
  } = AnalysisBlockUtils;
57
57
 
58
+ const {
59
+ buildChatIdToPathMap,
60
+ processLLMAnalysisResponse,
61
+ validateLLMAnalysisData,
62
+ getAnalyzers,
63
+ getAnalyzerSchema,
64
+ deleteAnalyzer,
65
+ getAnalyzerInstructionsContent,
66
+ saveAnalyzerConfiguration,
67
+ } = AnalyzerUtils;
68
+
58
69
  const {
59
70
  COMMENT_STYLES,
60
71
  generateUUID,
@@ -380,9 +391,13 @@ module.exports = {
380
391
  validateOverviewMetadata,
381
392
 
382
393
  // Analyzer Utilities
383
- buildChatIdToPathMap: AnalyzerUtils.buildChatIdToPathMap,
384
- processLLMAnalysisResponse: AnalyzerUtils.processLLMAnalysisResponse,
385
- validateLLMAnalysisData: AnalyzerUtils.validateLLMAnalysisData,
394
+ buildChatIdToPathMap,
395
+ processLLMAnalysisResponse,
396
+ validateLLMAnalysisData,
397
+ getAnalyzers,
398
+ getAnalyzerSchema,
399
+ deleteAnalyzer,
400
+ getAnalyzerInstructionsContent,
386
401
 
387
402
  // ChatUtils
388
403
  getChatMessages,