installed typeorm and added initial merchant resource

This commit is contained in:
Joe Arndt 2026-02-07 21:50:04 -06:00
parent 746adcd2fd
commit ccc6540ae8
15 changed files with 1972 additions and 321 deletions

View file

@ -0,0 +1,4 @@
import { PartialType } from '@nestjs/mapped-types';
import { CreateMerchantDto } from './create-merchant.dto';
export class UpdateMerchantDto extends PartialType(CreateMerchantDto) {}