@mks2508/coolify-mks-cli-mcp 0.4.0 → 0.4.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/dist/cli/index.js +3 -3
- package/dist/coolify/index.d.ts.map +1 -1
- package/dist/coolify/types.d.ts +3 -1
- package/dist/coolify/types.d.ts.map +1 -1
- package/dist/index.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/server/stdio.js +3 -3
- package/package.json +1 -1
- package/src/coolify/index.ts +1 -2
- package/src/coolify/types.ts +3 -1
package/dist/index.js
CHANGED
|
@@ -28213,9 +28213,7 @@ var CoolifyService = class {
|
|
|
28213
28213
|
body: JSON.stringify({
|
|
28214
28214
|
key,
|
|
28215
28215
|
value,
|
|
28216
|
-
is_preview: false
|
|
28217
|
-
is_build_time: false,
|
|
28218
|
-
is_literal: false
|
|
28216
|
+
is_preview: false
|
|
28219
28217
|
})
|
|
28220
28218
|
});
|
|
28221
28219
|
if (result.error) {
|
|
@@ -28490,6 +28488,7 @@ var CoolifyService = class {
|
|
|
28490
28488
|
if (options.dockerfileLocation) body.dockerfile_location = options.dockerfileLocation;
|
|
28491
28489
|
if (options.baseDirectory) body.base_directory = options.baseDirectory;
|
|
28492
28490
|
if (options.domains) body.domains = options.domains;
|
|
28491
|
+
if (options.dockerComposeDomains) body.docker_compose_domains = options.dockerComposeDomains;
|
|
28493
28492
|
if (options.isForceHttpsEnabled !== void 0) body.is_force_https_enabled = options.isForceHttpsEnabled;
|
|
28494
28493
|
if (options.isAutoDeployEnabled !== void 0) body.is_auto_deploy_enabled = options.isAutoDeployEnabled;
|
|
28495
28494
|
const result = await this.request(`/applications/${appUuid}`, {
|