Add isRemote field on object metadata (#4668)
Add isRemote field Co-authored-by: Thomas Trompette <thomast@twenty.com>
This commit is contained in:
@ -74,6 +74,7 @@ export const currencyObjectDefinition = {
|
||||
isActive: true,
|
||||
isSystem: true,
|
||||
isCustom: false,
|
||||
isRemote: false,
|
||||
} satisfies ObjectMetadataInterface;
|
||||
|
||||
export type CurrencyMetadata = {
|
||||
|
||||
@ -74,6 +74,7 @@ export const fullNameObjectDefinition = {
|
||||
isActive: true,
|
||||
isSystem: true,
|
||||
isCustom: false,
|
||||
isRemote: false,
|
||||
} satisfies ObjectMetadataInterface;
|
||||
|
||||
export type FullNameMetadata = {
|
||||
|
||||
@ -74,6 +74,7 @@ export const linkObjectDefinition = {
|
||||
isActive: true,
|
||||
isSystem: true,
|
||||
isCustom: false,
|
||||
isRemote: false,
|
||||
} satisfies ObjectMetadataInterface;
|
||||
|
||||
export type LinkMetadata = {
|
||||
|
||||
@ -15,4 +15,5 @@ export interface ObjectMetadataInterface {
|
||||
isSystem: boolean;
|
||||
isCustom: boolean;
|
||||
isActive: boolean;
|
||||
isRemote: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user