import { CurrencyMetadata } from 'src/metadata/field-metadata/composite-types/currency.composite-type'; import { LinkMetadata } from 'src/metadata/field-metadata/composite-types/link.composite-type'; import { FieldMetadataType } from 'src/metadata/field-metadata/field-metadata.entity'; import { RelationMetadataType } from 'src/metadata/relation-metadata/relation-metadata.entity'; import { FieldMetadata } from 'src/workspace/workspace-sync-metadata/decorators/field-metadata.decorator'; import { IsNullable } from 'src/workspace/workspace-sync-metadata/decorators/is-nullable.decorator'; import { ObjectMetadata } from 'src/workspace/workspace-sync-metadata/decorators/object-metadata.decorator'; import { RelationMetadata } from 'src/workspace/workspace-sync-metadata/decorators/relation-metadata.decorator'; import { ActivityTargetObjectMetadata } from 'src/workspace/workspace-sync-metadata/standard-objects/activity-target.object-metadata'; import { AttachmentObjectMetadata } from 'src/workspace/workspace-sync-metadata/standard-objects/attachment.object-metadata'; import { BaseObjectMetadata } from 'src/workspace/workspace-sync-metadata/standard-objects/base.object-metadata'; import { FavoriteObjectMetadata } from 'src/workspace/workspace-sync-metadata/standard-objects/favorite.object-metadata'; import { OpportunityObjectMetadata } from 'src/workspace/workspace-sync-metadata/standard-objects/opportunity.object-metadata'; import { PersonObjectMetadata } from 'src/workspace/workspace-sync-metadata/standard-objects/person.object-metadata'; import { WorkspaceMemberObjectMetadata } from 'src/workspace/workspace-sync-metadata/standard-objects/workspace-member.object-metadata'; @ObjectMetadata({ namePlural: 'companies', labelSingular: 'Company', labelPlural: 'Companies', description: 'A company', icon: 'IconBuildingSkyscraper', }) export class CompanyObjectMetadata extends BaseObjectMetadata { @FieldMetadata({ type: FieldMetadataType.TEXT, label: 'Name', description: 'The company name', icon: 'IconBuildingSkyscraper', }) name: string; @FieldMetadata({ type: FieldMetadataType.TEXT, label: 'Domain Name', description: 'The company website URL. We use this url to fetch the company icon', icon: 'IconLink', }) @IsNullable() domainName?: string; @FieldMetadata({ type: FieldMetadataType.TEXT, label: 'Address', description: 'The company address', icon: 'IconMap', }) @IsNullable() address: string; @FieldMetadata({ type: FieldMetadataType.NUMBER, label: 'Employees', description: 'Number of employees in the company', icon: 'IconUsers', }) @IsNullable() employees: number; @FieldMetadata({ type: FieldMetadataType.LINK, label: 'Linkedin', description: 'The company Linkedin account', icon: 'IconBrandLinkedin', }) @IsNullable() linkedinLink: LinkMetadata; @FieldMetadata({ type: FieldMetadataType.LINK, label: 'X', description: 'The company Twitter/X account', icon: 'IconBrandX', }) @IsNullable() xLink: LinkMetadata; @FieldMetadata({ type: FieldMetadataType.CURRENCY, label: 'ARR', description: 'Annual Recurring Revenue: The actual or estimated annual revenue of the company', icon: 'IconMoneybag', }) @IsNullable() annualRecurringRevenue: CurrencyMetadata; @FieldMetadata({ type: FieldMetadataType.BOOLEAN, label: 'ICP', description: 'Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you', icon: 'IconTarget', }) @IsNullable() idealCustomerProfile: boolean; // Relations @FieldMetadata({ type: FieldMetadataType.RELATION, label: 'People', description: 'People linked to the company.', icon: 'IconUsers', }) @RelationMetadata({ type: RelationMetadataType.ONE_TO_MANY, objectName: 'person', }) @IsNullable() people: PersonObjectMetadata[]; @FieldMetadata({ type: FieldMetadataType.RELATION, label: 'Account Owner', description: 'Your team member responsible for managing the company account', icon: 'IconUserCircle', joinColumn: 'accountOwnerId', }) @IsNullable() accountOwner: WorkspaceMemberObjectMetadata; @FieldMetadata({ type: FieldMetadataType.RELATION, label: 'Activities', description: 'Activities tied to the company', icon: 'IconCheckbox', }) @RelationMetadata({ type: RelationMetadataType.ONE_TO_MANY, objectName: 'activityTarget', }) @IsNullable() activityTargets: ActivityTargetObjectMetadata[]; @FieldMetadata({ type: FieldMetadataType.RELATION, label: 'Opportunities', description: 'Opportunities linked to the company.', icon: 'IconTargetArrow', }) @RelationMetadata({ type: RelationMetadataType.ONE_TO_MANY, objectName: 'opportunity', }) @IsNullable() opportunities: OpportunityObjectMetadata[]; @FieldMetadata({ type: FieldMetadataType.RELATION, label: 'Favorites', description: 'Favorites linked to the company', icon: 'IconHeart', }) @RelationMetadata({ type: RelationMetadataType.ONE_TO_MANY, objectName: 'favorite', }) @IsNullable() favorites: FavoriteObjectMetadata[]; @FieldMetadata({ type: FieldMetadataType.RELATION, label: 'Attachments', description: 'Attachments linked to the company.', icon: 'IconFileImport', }) @RelationMetadata({ type: RelationMetadataType.ONE_TO_MANY, objectName: 'attachment', }) @IsNullable() attachments: AttachmentObjectMetadata[]; }