@jagota/interfaces 1.2.43 → 1.2.45

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.43",
3
+ "version": "1.2.45",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -67,4 +67,25 @@ export interface IBiddingMarketPayloadItem extends IBiddingCustomerProductList {
67
67
  export interface IBiddingMarketPayload {
68
68
  custCode: string;
69
69
  list: IBiddingMarketPayloadItem[];
70
+ }
71
+ export interface IBiddingPricelist extends IBiddingCustomerProductList {
72
+ recordId: number;
73
+ productCode: string;
74
+ productShortCode: string;
75
+ productName: string;
76
+ thumbnail: string;
77
+ unit: string;
78
+ minPrice?: number;
79
+ centerPrice?: number;
80
+ price?: number;
81
+ }
82
+ export interface IBiddingPricelistPayload {
83
+ custCode: string;
84
+ periodFrom: string;
85
+ periodTo: string;
86
+ }
87
+ export interface ISetBiddingPricelistPayload extends IBiddingPricelistPayload {
88
+ custProductCode: string;
89
+ productCode: string;
90
+ price?: number;
70
91
  }