added merchants resource

This commit is contained in:
Joe Arndt 2026-02-08 15:21:47 -06:00
parent d7ad5828af
commit b5ced781c9
17 changed files with 214 additions and 80 deletions

View file

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