@hectare/platform.clients.trading 1.1.26 → 1.1.28

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.
@@ -82,6 +82,7 @@ export type BidDetail = {
82
82
  amount: number;
83
83
  currency: string;
84
84
  } | null;
85
+ isBasePremOnly: boolean;
85
86
  };
86
87
  inventory: {
87
88
  type: 'crop' | 'produce';
@@ -34,6 +34,7 @@ export type CreateListing = {
34
34
  amount: number;
35
35
  currency: string;
36
36
  } | null;
37
+ isBasePremOnly?: boolean;
37
38
  };
38
39
  inventory: {
39
40
  commodity: {
@@ -79,6 +79,7 @@ export type ListingDetail = {
79
79
  amount: number;
80
80
  currency: string;
81
81
  } | null;
82
+ isBasePremOnly: boolean;
82
83
  };
83
84
  inventory: {
84
85
  type: 'crop' | 'produce';
@@ -286,6 +287,7 @@ export type ListingDetail = {
286
287
  amount: number;
287
288
  currency: string;
288
289
  } | null;
290
+ isBasePremOnly: boolean;
289
291
  };
290
292
  inventory: {
291
293
  type: 'crop' | 'produce';
@@ -79,6 +79,7 @@ export type ListingSummary = {
79
79
  amount: number;
80
80
  currency: string;
81
81
  } | null;
82
+ isBasePremOnly: boolean;
82
83
  };
83
84
  inventory: {
84
85
  type: 'crop' | 'produce';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.26",
3
+ "version": "1.1.28",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",