src/issuer/configuration/webhook-endpoint/dto/create-webhook-endpoint.dto.ts
OmitType(WebhookEndpointEntity, [
...TENANT_RELATION_FIELDS,
])
import { OmitType } from "@nestjs/swagger";
import { TENANT_RELATION_FIELDS } from "../../../../shared/utils/dto-omit-fields";
import { WebhookEndpointEntity } from "../entities/webhook-endpoint.entity";
export class CreateWebhookEndpointDto extends OmitType(WebhookEndpointEntity, [
...TENANT_RELATION_FIELDS,
]) {}