@jagota/interfaces 1.2.46 → 1.2.48

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.2.46",
3
+ "version": "1.2.48",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -102,11 +102,19 @@ export interface ISetBiddingPricelistResponse extends IBaseResponse {
102
102
  }
103
103
  }
104
104
 
105
- export interface IBiddingList {
105
+ export interface IBiddingStatusPayload {
106
106
  recordId: number;
107
+ status: string;
108
+ }
109
+ export interface IBiddingStatusResponse extends IBaseResponse {
110
+ data: {
111
+ STATUS: string;
112
+ }
113
+ }
114
+
115
+ export interface IBiddingList extends IBiddingStatusPayload{
107
116
  periodFrom: string;
108
117
  periodTo: string;
109
- status: string;
110
118
  winRate: number;
111
119
  docType: string;
112
120
  docBook: string;
@@ -117,4 +125,7 @@ export interface IBiddingListPayload {
117
125
  }
118
126
  export interface IBiddingListResponse extends IBaseResponse {
119
127
  data: IBiddingList[];
128
+ }
129
+ export interface IBiddingByRidPayload {
130
+ recordId: string;
120
131
  }