feat: chaining index

This commit is contained in:
Supan Adit Pratama 2024-10-29 10:45:06 +07:00
parent 4674b28d20
commit 62ea621cc0
16 changed files with 41 additions and 1 deletions

View File

@ -1,4 +1,6 @@
export * from './prisma.module';
export * from './prisma.service';
export * from './constants';
export * from './interfaces';
export * from './config.module-definition';
export * from './processes/list.process';

View File

@ -0,0 +1 @@
export * from './config-module-options.interface';

View File

@ -0,0 +1,2 @@
export * from './delete.process';
export * from './update.process';

View File

@ -0,0 +1,9 @@
export * from './batch';
export * from './create.process';
export * from './delete.process';
export * from './list.process';
export * from './pagination.process';
export * from './partial';
export * from './read.process';
export * from './update.process';

View File

@ -0,0 +1 @@
export * from './update.process';

View File

@ -0,0 +1,2 @@
export * from './update.process';
export * from './batch';

View File

@ -0,0 +1 @@
export * from './pagination.entity';

View File

@ -0,0 +1 @@
export * from './default.executor';

View File

@ -1,2 +1,6 @@
export * from './constants';
export * from './processes';
export * from './interfaces';
export * from './executors';
export * from './skeleton-crud.controller';
export * from './entities';

View File

@ -0,0 +1 @@
export * from './skeleton-crud.controller.interface';

View File

@ -0,0 +1,2 @@
export * from './skeleton-process.interface';
export * from './controller';

View File

@ -0,0 +1,2 @@
export * from './delete.process';
export * from './update.process';

View File

@ -0,0 +1,9 @@
export * from './create.process';
export * from './default.process';
export * from './delete.process';
export * from './list.process';
export * from './pagination.process';
export * from './read.process';
export * from './update.process';
export * from './batch';
export * from './partial';

View File

@ -0,0 +1 @@
export * from './update.process';

View File

@ -0,0 +1,2 @@
export * from './update.process';
export * from './batch';

View File

@ -1,6 +1,6 @@
{
"name": "@aditama-labs/nest-autocrud",
"version": "0.0.17",
"version": "0.0.18",
"description": "NestJS Auto CRUD Library",
"author": "Supan Adit Pratama",
"license": "MIT",