@jagota/interfaces 1.2.48 → 1.2.50

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.48",
3
+ "version": "1.2.50",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -128,4 +128,19 @@ export interface IBiddingListResponse extends IBaseResponse {
128
128
  }
129
129
  export interface IBiddingByRidPayload {
130
130
  recordId: string;
131
+ }
132
+ export interface IBiddingByRidResponse extends IBaseResponse {
133
+ data: IBiddingByRid;
134
+ }
135
+ export interface IBiddingByRid {
136
+ recordId: number;
137
+ status: string;
138
+ periodFrom: string;
139
+ periodTo: string;
140
+ docType: string;
141
+ docBook: string;
142
+ docNo: string;
143
+ custCode: string;
144
+ custName: string;
145
+ address: string;
131
146
  }