@brakebein/prisma-generator-nestjs-dto
Version:
Generates DTO and Entity classes from Prisma Schema for NestJS
28 lines (27 loc) • 1.47 kB
TypeScript
export declare const DTO_IGNORE_MODEL: RegExp;
export declare const DTO_READ_ONLY: RegExp;
export declare const DTO_CREATE_HIDDEN: RegExp;
export declare const DTO_UPDATE_HIDDEN: RegExp;
export declare const DTO_ENTITY_HIDDEN: RegExp;
export declare const DTO_CONNECT_HIDDEN: RegExp;
export declare const DTO_API_HIDDEN: RegExp;
export declare const DTO_CREATE_OPTIONAL: RegExp;
export declare const DTO_CREATE_REQUIRED: RegExp;
export declare const DTO_UPDATE_OPTIONAL: RegExp;
export declare const DTO_UPDATE_REQUIRED: RegExp;
export declare const DTO_RELATION_REQUIRED: RegExp;
export declare const DTO_RELATION_INCLUDE_ID: RegExp;
export declare const DTO_RELATION_CAN_CREATE_ON_CREATE: RegExp;
export declare const DTO_RELATION_CAN_CONNECT_ON_CREATE: RegExp;
export declare const DTO_RELATION_CAN_CREATE_ON_UPDATE: RegExp;
export declare const DTO_RELATION_CAN_CONNECT_ON_UPDATE: RegExp;
export declare const DTO_RELATION_CAN_UPDATE_ON_UPDATE: RegExp;
export declare const DTO_RELATION_CAN_DISCONNECT_ON_UPDATE: RegExp;
export declare const DTO_RELATION_MODIFIERS_ON_CREATE: RegExp[];
export declare const DTO_RELATION_MODIFIERS_ON_UPDATE: RegExp[];
export declare const DTO_TYPE_FULL_UPDATE: RegExp;
export declare const DTO_CAST_TYPE: RegExp;
export declare const DTO_OVERRIDE_TYPE: RegExp;
export declare const DTO_OVERRIDE_API_PROPERTY_TYPE: RegExp;
export declare const DTO_CREATE_VALIDATE_IF: RegExp;
export declare const DTO_UPDATE_VALIDATE_IF: RegExp;