snow-flow 1.3.27 → 1.3.28

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.
@@ -44,6 +44,7 @@ const types_js_1 = require("@modelcontextprotocol/sdk/types.js");
44
44
  const servicenow_client_js_1 = require("../utils/servicenow-client.js");
45
45
  const snow_oauth_js_1 = require("../utils/snow-oauth.js");
46
46
  const logger_js_1 = require("../utils/logger.js");
47
+ const flow_composer_js_1 = require("../orchestrator/flow-composer.js");
47
48
  class ServiceNowFlowComposerMCP {
48
49
  constructor() {
49
50
  this.server = new index_js_1.Server({
@@ -57,6 +58,7 @@ class ServiceNowFlowComposerMCP {
57
58
  this.client = new servicenow_client_js_1.ServiceNowClient();
58
59
  this.oauth = new snow_oauth_js_1.ServiceNowOAuth();
59
60
  this.logger = new logger_js_1.Logger('ServiceNowFlowComposerMCP');
61
+ this.composer = new flow_composer_js_1.EnhancedFlowComposer();
60
62
  this.setupHandlers();
61
63
  }
62
64
  setupHandlers() {
@@ -19,6 +19,7 @@ const path_1 = require("path");
19
19
  const self_documenting_system_js_1 = require("../documentation/self-documenting-system.js");
20
20
  const cost_optimization_engine_js_1 = require("../optimization/cost-optimization-engine.js");
21
21
  const advanced_compliance_system_js_1 = require("../compliance/advanced-compliance-system.js");
22
+ const self_healing_system_js_1 = require("../healing/self-healing-system.js");
22
23
  const memory_system_js_1 = require("../memory/memory-system.js");
23
24
  class ServiceNowIntelligentMCP {
24
25
  constructor() {
@@ -39,7 +40,7 @@ class ServiceNowIntelligentMCP {
39
40
  this.documentationSystem = new self_documenting_system_js_1.SelfDocumentingSystem(this.client, this.memorySystem);
40
41
  this.costOptimizationEngine = new cost_optimization_engine_js_1.CostOptimizationEngine(this.client, this.memorySystem);
41
42
  this.complianceSystem = new advanced_compliance_system_js_1.AdvancedComplianceSystem(this.client, this.memorySystem);
42
- this.selfHealingSystem = new SelfHealingSystem(this.client, this.memorySystem);
43
+ this.selfHealingSystem = new self_healing_system_js_1.SelfHealingSystem(this.client, this.memorySystem);
43
44
  this.setupHandlers();
44
45
  }
45
46
  setupHandlers() {
@@ -58,7 +58,7 @@ class ServiceNowClient {
58
58
  }
59
59
  return new Error(`Certificate hostname mismatch: ${hostname} not allowed`);
60
60
  },
61
- secureProtocol: 'TLSv1_2_method', // Enforce TLS 1.2 minimum
61
+ // secureProtocol removed to avoid conflict with minVersion/maxVersion
62
62
  ciphers: [
63
63
  'ECDHE-RSA-AES128-GCM-SHA256',
64
64
  'ECDHE-RSA-AES256-GCM-SHA384',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "1.3.27",
3
+ "version": "1.3.28",
4
4
  "description": "ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development inspired by claude-flow. Transform complex workflows into elegant one-command orchestration.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",