@jagota/interfaces 1.3.25 → 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.25",
3
+ "version": "1.3.27",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -23,18 +23,18 @@ export interface IBiddingPeriod {
23
23
  status: string;
24
24
  }
25
25
 
26
- export interface ICustomerForBidding extends IBiddingCustCodeAndName {
26
+ export interface ICustomerForBidding extends IBiddingCustCodeAndName {
27
27
  status: string;
28
28
  statusText: string;
29
29
  tradeName: string;
30
30
  biddingStatus: string;
31
31
  }
32
- export interface IBiddingCustomer extends IBiddingCustCodeAndName{
32
+ export interface IBiddingCustomer extends IBiddingCustCodeAndName {
33
33
  status: string;
34
34
  statusText: string;
35
35
  tradeName: string;
36
36
  }
37
- export interface IBiddingCustomerInfo extends IBiddingCustCodeAndName{
37
+ export interface IBiddingCustomerInfo extends IBiddingCustCodeAndName {
38
38
  address: string;
39
39
  tradeName: string;
40
40
  salesCode: string;
@@ -92,7 +92,7 @@ export interface IBiddingPeriodDate {
92
92
  periodTo: string;
93
93
  }
94
94
 
95
- export interface IBiddingPricelistPayload extends IBiddingPeriodDate, IBiddingCustCode{
95
+ export interface IBiddingPricelistPayload extends IBiddingPeriodDate, IBiddingCustCode {
96
96
  }
97
97
 
98
98
  export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload {
@@ -144,15 +144,16 @@ 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 {
153
154
  winRate: number;
154
155
  }
155
- export interface IBiddingListPayload extends IBiddingCustCode{
156
+ export interface IBiddingListPayload extends IBiddingCustCode {
156
157
  }
157
158
 
158
159
  export interface IBiddingListResponse extends IBaseResponse {
@@ -171,12 +172,14 @@ export interface IBiddingByRid extends IBiddingQuotation, IBiddingPeriodDate, IB
171
172
  companyName: string;
172
173
  companyAddress: string;
173
174
  }
174
- export interface IWinLoss{
175
+ export interface IWinLoss {
175
176
  winLoss: "W" | "L" | null;
176
177
  }
177
178
  export interface IBiddingDetail extends IBiddingProductDetail, IBiddingCustomerProductList, IWinLoss, IBiddingCustCode {
178
179
  recordId: number;
179
- price: number;
180
+ price: number;
181
+ reqMinNarration?: string;
182
+ quotationStatus?: string;
180
183
  winLossHistory: IProductWinLossHistory[];
181
184
  lossReasons: IBiddingReason[];
182
185
  }
@@ -207,7 +210,7 @@ export interface IBiddingReasonByDetailRidResponse extends IBaseResponse {
207
210
  data: IBiddingReason[];
208
211
  }
209
212
 
210
- export interface IBiddingCustomerCommon extends IBiddingCustCodeAndName{
213
+ export interface IBiddingCustomerCommon extends IBiddingCustCodeAndName {
211
214
  startDate: Date;
212
215
  submissionDay: number;
213
216
  }