@mks2508/coolify-mks-cli-mcp 0.2.0 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mks2508/coolify-mks-cli-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "MCP server and CLI for Coolify deployment management",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -768,7 +768,12 @@ export type {
768
768
  ICoolifyApplication,
769
769
  ICoolifyDeployment,
770
770
  ICoolifyAppOptions,
771
+ ICoolifyAppResult,
771
772
  ICoolifyDeployOptions,
773
+ ICoolifyDeployResult,
774
+ ICoolifyDeleteResult,
772
775
  ICoolifyUpdateOptions,
773
776
  ICoolifyLogsOptions,
774
- }
777
+ ICoolifyLogs,
778
+ IProgressCallback,
779
+ } from './types.js'
@@ -46,6 +46,8 @@ export interface ICoolifyAppOptions {
46
46
  environmentUuid: string
47
47
  /** Server UUID */
48
48
  serverUuid: string
49
+ /** Destination UUID (optional, for specific destination targeting) */
50
+ destinationUuid?: string
49
51
  /** Application type */
50
52
  type?: TCoolifyApplicationType
51
53
  /** GitHub repository URL (for git-based apps) */