@jagota/interfaces 1.3.29 → 1.3.31

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.29",
3
+ "version": "1.3.31",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -43,9 +43,15 @@ export interface IBiddingCustomerInfo extends IBiddingCustCodeAndName {
43
43
  win?: number;
44
44
  loss?: number;
45
45
  }
46
- export interface IBiddingCustomerProductList {
46
+ export interface IBiddingUploadMarketList {
47
47
  custProductCode: string;
48
48
  custProductName: string;
49
+ }
50
+ export interface IBiddingUploadMarketListPayload {
51
+ custCode: string;
52
+ list: IBiddingUploadMarketList[];
53
+ }
54
+ export interface IBiddingCustomerProductList extends IBiddingUploadMarketList {
49
55
  seq: number;
50
56
  }
51
57
  export interface IBiddingProductList extends IBiddingCustomerProductList {