Skip to main content

edit

client.apps.edit(data: EditAppRequest): Promise<unknown>

Opens an application for editing.

Launches the app's source code or configuration in an editable mode, allowing modifications to its behavior.

Parameters

ParameterTypeRequiredDescription
dataEditAppRequestYesThe edit configuration

Returns

Promise<unknown> — A promise that resolves when the app is ready for editing

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.apps.edit(/* EditAppRequest */);
console.log(result);