@jagota/interfaces 1.3.26 → 1.3.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jagota/interfaces",
3
- "version": "1.3.26",
3
+ "version": "1.3.27",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -144,9 +144,10 @@ export interface IBiddingStatusResponse extends IBaseResponse {
144
144
  }
145
145
 
146
146
  export interface IBiddingQuotation {
147
- docType: string;
148
- docBook: string;
149
- docNo: string;
147
+ docType?: string;
148
+ docBook?: string;
149
+ docNo?: number;
150
+ quotationStatus?: string;
150
151
  }
151
152
 
152
153
  export interface IBiddingList extends IBiddingStatusPayload, IBiddingQuotation, IBiddingPeriodDate {
@@ -177,7 +178,8 @@ export interface IWinLoss {
177
178
  export interface IBiddingDetail extends IBiddingProductDetail, IBiddingCustomerProductList, IWinLoss, IBiddingCustCode {
178
179
  recordId: number;
179
180
  price: number;
180
- reqMinNarration: string;
181
+ reqMinNarration?: string;
182
+ quotationStatus?: string;
181
183
  winLossHistory: IProductWinLossHistory[];
182
184
  lossReasons: IBiddingReason[];
183
185
  }