@hectare/platform.clients.trading 1.1.6 → 1.1.7

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.
@@ -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';
@@ -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';
@@ -62,4 +62,12 @@ export type TradeRequestDetail = {
62
62
  amount: number;
63
63
  currency: string;
64
64
  } | null;
65
+ guidePriceMin: {
66
+ amount: number;
67
+ currency: string;
68
+ } | null;
69
+ guidePriceMax: {
70
+ amount: number;
71
+ currency: string;
72
+ } | null;
65
73
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",