feat: standard fields on custom (#4332)
* feat: add ability to sync standard fields on custom object * fix: clean * fix: wrong compute during object creation * fix: missing cascade delete * fix: remove unused injected class * fix: naming * fix: rename factory to paramsFactory and clean * fix: rename ExtendCustomObjectMetadata to BaseCustomObjectMetadata * fix: partial fix inconsistent label and description * Fixes * Fix --------- Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
3
packages/twenty-server/@types/common.d.ts
vendored
3
packages/twenty-server/@types/common.d.ts
vendored
@ -3,3 +3,6 @@ type DeepPartial<T> = {
|
||||
? Array<DeepPartial<R>>
|
||||
: DeepPartial<T[K]>;
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
||||
type ExcludeFunctions<T> = T extends Function ? never : T;
|
||||
|
||||
Reference in New Issue
Block a user