@hectare/platform.clients.trading 1.1.6 → 1.1.8
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/models/BidDetail.d.ts
CHANGED
|
@@ -77,6 +77,14 @@ export type BidDetail = {
|
|
|
77
77
|
amount: number;
|
|
78
78
|
currency: string;
|
|
79
79
|
} | null;
|
|
80
|
+
guidePriceMin: {
|
|
81
|
+
amount: number;
|
|
82
|
+
currency: string;
|
|
83
|
+
} | null;
|
|
84
|
+
guidePriceMax: {
|
|
85
|
+
amount: number;
|
|
86
|
+
currency: string;
|
|
87
|
+
} | null;
|
|
80
88
|
};
|
|
81
89
|
inventory: {
|
|
82
90
|
type: 'crop' | 'produce';
|
|
@@ -8,7 +8,7 @@ export type CreateTradeRequest = {
|
|
|
8
8
|
variety?: string | null;
|
|
9
9
|
tags?: Array<number> | null;
|
|
10
10
|
};
|
|
11
|
-
regionISOs
|
|
11
|
+
regionISOs: Array<string>;
|
|
12
12
|
harvestYear: string;
|
|
13
13
|
type?: 'crop' | 'produce';
|
|
14
14
|
farmAssured?: boolean;
|
|
@@ -27,5 +27,13 @@ export type CreateTradeRequest = {
|
|
|
27
27
|
amount: number;
|
|
28
28
|
currency: string;
|
|
29
29
|
} | null;
|
|
30
|
+
guidePriceMin?: {
|
|
31
|
+
amount: number;
|
|
32
|
+
currency: string;
|
|
33
|
+
} | null;
|
|
34
|
+
guidePriceMax?: {
|
|
35
|
+
amount: number;
|
|
36
|
+
currency: string;
|
|
37
|
+
} | null;
|
|
30
38
|
tags?: Array<string> | null;
|
|
31
39
|
};
|
|
@@ -74,6 +74,14 @@ export type ListingDetail = {
|
|
|
74
74
|
amount: number;
|
|
75
75
|
currency: string;
|
|
76
76
|
} | null;
|
|
77
|
+
guidePriceMin: {
|
|
78
|
+
amount: number;
|
|
79
|
+
currency: string;
|
|
80
|
+
} | null;
|
|
81
|
+
guidePriceMax: {
|
|
82
|
+
amount: number;
|
|
83
|
+
currency: string;
|
|
84
|
+
} | null;
|
|
77
85
|
};
|
|
78
86
|
inventory: {
|
|
79
87
|
type: 'crop' | 'produce';
|
|
@@ -276,6 +284,14 @@ export type ListingDetail = {
|
|
|
276
284
|
amount: number;
|
|
277
285
|
currency: string;
|
|
278
286
|
} | null;
|
|
287
|
+
guidePriceMin: {
|
|
288
|
+
amount: number;
|
|
289
|
+
currency: string;
|
|
290
|
+
} | null;
|
|
291
|
+
guidePriceMax: {
|
|
292
|
+
amount: number;
|
|
293
|
+
currency: string;
|
|
294
|
+
} | null;
|
|
279
295
|
};
|
|
280
296
|
inventory: {
|
|
281
297
|
type: 'crop' | 'produce';
|
|
@@ -74,6 +74,14 @@ export type ListingSummary = {
|
|
|
74
74
|
amount: number;
|
|
75
75
|
currency: string;
|
|
76
76
|
} | null;
|
|
77
|
+
guidePriceMin: {
|
|
78
|
+
amount: number;
|
|
79
|
+
currency: string;
|
|
80
|
+
} | null;
|
|
81
|
+
guidePriceMax: {
|
|
82
|
+
amount: number;
|
|
83
|
+
currency: string;
|
|
84
|
+
} | null;
|
|
77
85
|
};
|
|
78
86
|
inventory: {
|
|
79
87
|
type: 'crop' | 'produce';
|