feat: add metadata
This commit is contained in:
parent
3ff4c9d4f4
commit
99632ee0d0
1 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
import { CustomerType } from '../customer/types';
|
import { CustomerType } from '../customer/types';
|
||||||
import { Status } from '../types';
|
import { CreatedBy, Status, UpdatedBy } from '../types';
|
||||||
|
|
||||||
type CustomerBranchRelation = {
|
type CustomerBranchRelation = {
|
||||||
customer: {
|
customer: {
|
||||||
|
|
@ -204,8 +204,10 @@ export type Quotation = {
|
||||||
customerBranch: CustomerBranchRelation;
|
customerBranch: CustomerBranchRelation;
|
||||||
|
|
||||||
createdByUserId: string;
|
createdByUserId: string;
|
||||||
|
createdBy: CreatedBy;
|
||||||
createdAt: string | Date;
|
createdAt: string | Date;
|
||||||
updatedByUserId: string;
|
updatedByUserId: string;
|
||||||
|
updatedBy: UpdatedBy;
|
||||||
updatedAt: string | Date;
|
updatedAt: string | Date;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -262,8 +264,10 @@ export type QuotationFull = {
|
||||||
|
|
||||||
createdByUserId: string;
|
createdByUserId: string;
|
||||||
createdAt: string | Date;
|
createdAt: string | Date;
|
||||||
|
createdBy: CreatedBy;
|
||||||
updatedByUserId: string;
|
updatedByUserId: string;
|
||||||
updatedAt: string | Date;
|
updatedAt: string | Date;
|
||||||
|
updatedBy: UpdatedBy;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type QuotationPayload = {
|
export type QuotationPayload = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue