Allow app to extend object (#17116)

- exports `extendObject` utils from `twenty-sdk`
- define `*.object-extension.ts` filename pattern to extend and object
- handle object-extension configs in manifest
This commit is contained in:
martmull
2026-01-13 16:07:14 +01:00
committed by GitHub
parent f1be7129cb
commit d55b83375d
23 changed files with 1300 additions and 88 deletions
+3
View File
@@ -1,4 +1,5 @@
#!/usr/bin/env node
import { inspect } from 'util';
import chalk from 'chalk';
import { Command, CommanderError } from 'commander';
import { AppCommand } from '@/cli/commands/app.command';
@@ -6,6 +7,8 @@ import { AuthCommand } from '@/cli/commands/auth.command';
import { ConfigService } from '@/cli/services/config.service';
import packageJson from '../../package.json';
inspect.defaultOptions.depth = 10;
const program = new Command();
program