fix: nullable
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 4s

This commit is contained in:
Methapon2001 2025-04-28 16:07:13 +07:00
parent ce42a6dca6
commit f1a774f3bc
3 changed files with 7 additions and 7 deletions

View file

@ -43,7 +43,7 @@ type EmployeePassportPayload = {
workerStatus: string;
nationality: string;
otherNationality: string;
otherNationality?: string;
namePrefix?: string | null;
firstName: string;
firstNameEN: string;

View file

@ -55,7 +55,7 @@ type QuotationCreate = {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
otherNationality?: string | null;
namePrefix?: string;
firstName: string;
firstNameEN: string;
@ -113,7 +113,7 @@ type QuotationUpdate = {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
otherNationality?: string | null;
namePrefix?: string;
firstName?: string;
@ -1010,7 +1010,7 @@ export class QuotationActionController extends Controller {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
otherNationality?: string | null;
namePrefix?: string;
firstName: string;
firstNameEN: string;
@ -1033,7 +1033,7 @@ export class QuotationActionController extends Controller {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
otherNationality?: string | null;
namePrefix?: string;
firstName: string;
firstNameEN: string;

View file

@ -76,7 +76,7 @@ type DebitNoteCreate = {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality: string;
otherNationality?: string | null;
namePrefix?: string;
firstName: string;
firstNameEN: string;
@ -112,7 +112,7 @@ type DebitNoteUpdate = {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality: string;
otherNationality?: string | null;
namePrefix?: string;
firstName?: string;
firstNameEN: string;