@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
11 lines (10 loc) • 565 B
TypeScript
import { IApiBaseEntity } from '../../../../api-base-entity.interface';
import { TApiAuthorizationScopeWhere } from '../../../../../type/class/api/authorization/scope-where.type';
import { TApiControllerGeneratedScopeFunctionType } from '../../../../../type/class/api/controller/generated/scope-function-type.type';
export interface IApiControllerGeneratedReadScopeEntry {
functionType: TApiControllerGeneratedScopeFunctionType;
input: object;
isClaimed: boolean;
isWriteHydration: boolean;
where: TApiAuthorizationScopeWhere<IApiBaseEntity>;
}