This PR is fixing some issues and adding enhancement in TwentyORM: - [x] Composite fields in nested relations are not formatted properly - [x] Passing operators like `Any` in `where` condition is breaking the query - [x] Ability to auto load workspace-entities based on a regex path I've also introduced an example of use for `CalendarEventService`: https://github.com/twentyhq/twenty/pull/5439/files#diff-3a7dffc0dea57345d10e70c648e911f98fe237248bcea124dafa9c8deb1db748R15
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity';
|
|
import { BaseWorkspaceEntity } from 'src/engine/twenty-orm/base.workspace-entity';
|
|
import { WorkspaceField } from 'src/engine/twenty-orm/decorators/workspace-field.decorator';
|
|
import { WorkspaceIsNotAuditLogged } from 'src/engine/twenty-orm/decorators/workspace-is-not-audit-logged.decorator';
|
|
import { WorkspaceIsSystem } from 'src/engine/twenty-orm/decorators/workspace-is-system.decorator';
|
|
import { WorkspaceEntity } from 'src/engine/twenty-orm/decorators/workspace-entity.decorator';
|
|
import { WEBHOOK_STANDARD_FIELD_IDS } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids';
|
|
import { STANDARD_OBJECT_IDS } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-object-ids';
|
|
|
|
@WorkspaceEntity({
|
|
standardId: STANDARD_OBJECT_IDS.webhook,
|
|
namePlural: 'webhooks',
|
|
labelSingular: 'Webhook',
|
|
labelPlural: 'Webhooks',
|
|
description: 'A webhook',
|
|
icon: 'IconRobot',
|
|
})
|
|
@WorkspaceIsNotAuditLogged()
|
|
@WorkspaceIsSystem()
|
|
export class WebhookWorkspaceEntity extends BaseWorkspaceEntity {
|
|
@WorkspaceField({
|
|
standardId: WEBHOOK_STANDARD_FIELD_IDS.targetUrl,
|
|
type: FieldMetadataType.TEXT,
|
|
label: 'Target Url',
|
|
description: 'Webhook target url',
|
|
icon: 'IconLink',
|
|
})
|
|
targetUrl: string;
|
|
|
|
@WorkspaceField({
|
|
standardId: WEBHOOK_STANDARD_FIELD_IDS.operation,
|
|
type: FieldMetadataType.TEXT,
|
|
label: 'Operation',
|
|
description: 'Webhook operation',
|
|
icon: 'IconCheckbox',
|
|
})
|
|
operation: string;
|
|
}
|