# Introduction Followup of https://github.com/twentyhq/twenty/pull/17001#pullrequestreview-3638508738 close https://github.com/twentyhq/core-team-issues/issues/1910 We've completely decom the `sync-metadata` in production. We're now then removing its implementation in favor of the v2. ## TODO: - [x] Remove sync-metadata implem and commands - [x] Remove workspace decorators - [x] Type each deprecated field to deprecated on their workspaceEntity - [x] Remove the `workspace-sync-metadata` folder entirely - [x] remove workspace migration - [x] workspace migration removal migration - [x] remove the `v2` references from workspace manager file names - [x] remove the `v2` references from workspace manager modules - [ ] Double check impact on translation file path updates ## Note - Removed the gate logic - Remains some service v2 naming, serverless needs to be migrated on v2 fully - Removed workspaceMigration service app health consumption, making it always returning up ( no more down ) cc @FelixMalfait ( quite obsolete health check now, will require complete refactor once we introduce inter app dependency etc )
30 lines
1.6 KiB
TypeScript
30 lines
1.6 KiB
TypeScript
import { type ActorMetadata, FieldMetadataType } from 'twenty-shared/types';
|
|
|
|
import { DEFAULT_LABEL_IDENTIFIER_FIELD_NAME } from 'src/engine/metadata-modules/object-metadata/constants/object-metadata.constants';
|
|
import { BaseWorkspaceEntity } from 'src/engine/twenty-orm/base.workspace-entity';
|
|
import { type FieldTypeAndNameMetadata } from 'src/engine/workspace-manager/utils/get-ts-vector-column-expression.util';
|
|
import { type AttachmentWorkspaceEntity } from 'src/modules/attachment/standard-objects/attachment.workspace-entity';
|
|
import { type FavoriteWorkspaceEntity } from 'src/modules/favorite/standard-objects/favorite.workspace-entity';
|
|
import { type NoteTargetWorkspaceEntity } from 'src/modules/note/standard-objects/note-target.workspace-entity';
|
|
import { type TaskTargetWorkspaceEntity } from 'src/modules/task/standard-objects/task-target.workspace-entity';
|
|
import { type TimelineActivityWorkspaceEntity } from 'src/modules/timeline/standard-objects/timeline-activity.workspace-entity';
|
|
|
|
export const SEARCH_FIELDS_FOR_CUSTOM_OBJECT: FieldTypeAndNameMetadata[] = [
|
|
{
|
|
name: DEFAULT_LABEL_IDENTIFIER_FIELD_NAME,
|
|
type: FieldMetadataType.TEXT,
|
|
},
|
|
];
|
|
export class CustomWorkspaceEntity extends BaseWorkspaceEntity {
|
|
name: string | null;
|
|
position: number;
|
|
createdBy: ActorMetadata;
|
|
updatedBy: ActorMetadata;
|
|
noteTargets: NoteTargetWorkspaceEntity[];
|
|
taskTargets: TaskTargetWorkspaceEntity[];
|
|
favorites: FavoriteWorkspaceEntity[];
|
|
attachments: AttachmentWorkspaceEntity[];
|
|
timelineActivities: TimelineActivityWorkspaceEntity[];
|
|
searchVector: string;
|
|
}
|