feat: article is not required now

This commit is contained in:
2024-05-21 13:49:22 +03:00
parent dea4ae6625
commit a21807c5a6
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
import type { BarcodeTemplateSchema } from './BarcodeTemplateSchema';
export type ProductCreateRequest = {
name: string;
article: string;
article?: (string | null);
clientId: number;
barcodes: Array<string>;
barcodeTemplate?: (BarcodeTemplateSchema | null);