fix: nullable
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 4s
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 4s
This commit is contained in:
parent
ce42a6dca6
commit
f1a774f3bc
3 changed files with 7 additions and 7 deletions
|
|
@ -43,7 +43,7 @@ type EmployeePassportPayload = {
|
|||
|
||||
workerStatus: string;
|
||||
nationality: string;
|
||||
otherNationality: string;
|
||||
otherNationality?: string;
|
||||
namePrefix?: string | null;
|
||||
firstName: string;
|
||||
firstNameEN: string;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue