Update manifest structure (#17547)

Move all sync entities in an `entities` key. Rename functions to
logicFunctions

```json
{
  application: {
    ...
  },
  entities: {
    objects: [],
    logicFunctions: [],
    ...
  }
}
```
This commit is contained in:
martmull
2026-01-30 16:26:45 +01:00
committed by GitHub
parent bc022f82cb
commit f46da3eefd
162 changed files with 2555 additions and 3778 deletions
@@ -0,0 +1,67 @@
import { ApiService } from '@/cli/utilities/api/api-service';
import { CURRENT_EXECUTION_DIRECTORY } from '@/cli/utilities/config/current-execution-directory';
import chalk from 'chalk';
import { buildManifest } from '@/cli/utilities/build/manifest/manifest-build';
export class LogicFunctionLogsCommand {
private apiService = new ApiService();
async execute({
appPath = CURRENT_EXECUTION_DIRECTORY,
functionUniversalIdentifier,
functionName,
}: {
appPath?: string;
functionUniversalIdentifier?: string;
functionName?: string;
}): Promise<void> {
try {
const { manifest } = await buildManifest(appPath);
if (!manifest) {
process.exit(1);
}
this.logWatchInfo({
appName: manifest.application.displayName,
functionUniversalIdentifier,
functionName,
});
await this.apiService.subscribeToLogs({
applicationUniversalIdentifier:
manifest.application.universalIdentifier,
functionUniversalIdentifier,
functionName,
});
} catch (error) {
console.error(
chalk.red('Watch logs failed:'),
error instanceof Error ? error.message : error,
);
process.exit(1);
}
}
private logWatchInfo({
appName,
functionUniversalIdentifier,
functionName,
}: {
appName?: string;
functionUniversalIdentifier?: string;
functionName?: string;
}): void {
const appPath = appName ?? 'Twenty Application';
const functionIdentifier =
functionUniversalIdentifier || functionName
? `function "${functionUniversalIdentifier || functionName}"`
: 'functions';
console.log(
chalk.blue(`🚀 Watching ${appPath} ${functionIdentifier} logs:`),
);
console.log('');
}
}