snow-flow 2.6.4 → 2.6.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.
- package/dist/mcp/servicenow-development-assistant-mcp.js +29 -4
- package/dist/queen/queen-memory.d.ts +12 -6
- package/dist/queen/queen-memory.js +264 -187
- package/dist/queen/types.d.ts +1 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +9 -0
- package/package.json +1 -1
- package/dist/mcp/example-refactored-server.d.ts +0 -18
- package/dist/mcp/example-refactored-server.js +0 -57
- package/dist/mcp/servicenow-automation-mcp-refactored.d.ts +0 -26
- package/dist/mcp/servicenow-automation-mcp-refactored.js +0 -632
- package/dist/mcp/servicenow-deployment-mcp-refactored.d.ts +0 -74
- package/dist/mcp/servicenow-deployment-mcp-refactored.js +0 -1044
- package/dist/mcp/servicenow-flow-composer-mcp-refactored.d.ts +0 -25
- package/dist/mcp/servicenow-flow-composer-mcp-refactored.js +0 -565
- package/dist/mcp/servicenow-graph-memory-mcp-refactored.d.ts +0 -32
- package/dist/mcp/servicenow-graph-memory-mcp-refactored.js +0 -642
- package/dist/mcp/servicenow-integration-mcp-refactored.d.ts +0 -24
- package/dist/mcp/servicenow-integration-mcp-refactored.js +0 -612
- package/dist/mcp/servicenow-intelligent-mcp-refactored.d.ts +0 -63
- package/dist/mcp/servicenow-intelligent-mcp-refactored.js +0 -782
- package/dist/mcp/servicenow-operations-mcp-refactored.d.ts +0 -63
- package/dist/mcp/servicenow-operations-mcp-refactored.js +0 -1770
- package/dist/mcp/servicenow-platform-development-mcp-refactored.d.ts +0 -25
- package/dist/mcp/servicenow-platform-development-mcp-refactored.js +0 -542
- package/dist/mcp/servicenow-reporting-analytics-mcp-refactored.d.ts +0 -26
- package/dist/mcp/servicenow-reporting-analytics-mcp-refactored.js +0 -648
- package/dist/mcp/servicenow-security-compliance-mcp-refactored.d.ts +0 -25
- package/dist/mcp/servicenow-security-compliance-mcp-refactored.js +0 -600
- package/dist/mcp/servicenow-update-set-mcp-refactored.d.ts +0 -31
- package/dist/mcp/servicenow-update-set-mcp-refactored.js +0 -662
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* ServiceNow Deployment MCP Server - Agent-Integrated Version
|
|
4
|
-
* Provides specialized deployment tools with full agent coordination
|
|
5
|
-
* NEW v1.3.1: Complete XML Update Set auto-import with preview and commit controls
|
|
6
|
-
*/
|
|
7
|
-
import { BaseMCPServer } from './shared/base-mcp-server.js';
|
|
8
|
-
export declare class ServiceNowDeploymentMCP extends BaseMCPServer {
|
|
9
|
-
private scopeManager;
|
|
10
|
-
private globalScopeStrategy;
|
|
11
|
-
constructor();
|
|
12
|
-
private setupHandlers;
|
|
13
|
-
/**
|
|
14
|
-
* Main deployment method with full agent integration and intelligent workflow
|
|
15
|
-
*/
|
|
16
|
-
private deployWithAgentCoordination;
|
|
17
|
-
/**
|
|
18
|
-
* Deploy a single artifact with memory tracking
|
|
19
|
-
*/
|
|
20
|
-
private deploySingleArtifact;
|
|
21
|
-
/**
|
|
22
|
-
* Deploy multiple artifacts in batch
|
|
23
|
-
*/
|
|
24
|
-
private deployBatch;
|
|
25
|
-
/**
|
|
26
|
-
* Deploy XML Update Set to ServiceNow
|
|
27
|
-
*/
|
|
28
|
-
private deployXMLUpdateSet;
|
|
29
|
-
/**
|
|
30
|
-
* Deploy widget with agent tracking and intelligent error handling
|
|
31
|
-
*/
|
|
32
|
-
private deployWidget;
|
|
33
|
-
/**
|
|
34
|
-
* Validate widget configuration before deployment
|
|
35
|
-
*/
|
|
36
|
-
private validateWidgetConfig;
|
|
37
|
-
/**
|
|
38
|
-
* Deploy flow with agent tracking
|
|
39
|
-
*/
|
|
40
|
-
private deployFlow;
|
|
41
|
-
/**
|
|
42
|
-
* Deploy application with scope management
|
|
43
|
-
*/
|
|
44
|
-
private deployApplication;
|
|
45
|
-
/**
|
|
46
|
-
* Deploy script or business rule
|
|
47
|
-
*/
|
|
48
|
-
private deployScript;
|
|
49
|
-
/**
|
|
50
|
-
* Get deployment status with session filtering
|
|
51
|
-
*/
|
|
52
|
-
private getDeploymentStatusWithContext;
|
|
53
|
-
/**
|
|
54
|
-
* Validate deployment with agent context
|
|
55
|
-
*/
|
|
56
|
-
private validateDeploymentWithContext;
|
|
57
|
-
/**
|
|
58
|
-
* Rollback deployment with coordination
|
|
59
|
-
*/
|
|
60
|
-
private rollbackDeploymentWithContext;
|
|
61
|
-
private validateArtifact;
|
|
62
|
-
private rollbackBatch;
|
|
63
|
-
private groupByType;
|
|
64
|
-
private calculateSuccessRate;
|
|
65
|
-
/**
|
|
66
|
-
* Extract artifact name from natural language instruction
|
|
67
|
-
*/
|
|
68
|
-
private extractNameFromInstruction;
|
|
69
|
-
/**
|
|
70
|
-
* Extract search terms from instruction for discovery
|
|
71
|
-
*/
|
|
72
|
-
private extractSearchTermsFromInstruction;
|
|
73
|
-
}
|
|
74
|
-
//# sourceMappingURL=servicenow-deployment-mcp-refactored.d.ts.map
|