@hectare/platform.clients.trading 1.1.87 → 1.1.88

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.
@@ -160,6 +160,7 @@ export type BidDetail = {
160
160
  min: number | null;
161
161
  max: number | null;
162
162
  }> | null;
163
+ hasSampled: boolean | null;
163
164
  };
164
165
  activeBids: number;
165
166
  bidInfo?: {
@@ -60,6 +60,7 @@ export type CreateListing = {
60
60
  min: number;
61
61
  max: number;
62
62
  };
63
+ hasSampled?: boolean;
63
64
  };
64
65
  tags?: Array<string> | null;
65
66
  tradeRequestId?: string;
@@ -157,6 +157,7 @@ export type ListingDetail = {
157
157
  min: number | null;
158
158
  max: number | null;
159
159
  }> | null;
160
+ hasSampled: boolean | null;
160
161
  };
161
162
  activeBids: number;
162
163
  bidInfo?: {
@@ -404,6 +405,7 @@ export type ListingDetail = {
404
405
  min: number | null;
405
406
  max: number | null;
406
407
  }> | null;
408
+ hasSampled: boolean | null;
407
409
  };
408
410
  activeBids: number;
409
411
  bidInfo?: {
@@ -157,6 +157,7 @@ export type ListingSummary = {
157
157
  min: number | null;
158
158
  max: number | null;
159
159
  }> | null;
160
+ hasSampled: boolean | null;
160
161
  };
161
162
  activeBids: number;
162
163
  bidInfo?: {
@@ -51,6 +51,7 @@ export type PatchListingSchema = {
51
51
  min: number;
52
52
  max: number;
53
53
  };
54
+ hasSampled?: boolean;
54
55
  };
55
56
  feedback?: {
56
57
  sellerTargetPrice?: {
@@ -158,6 +158,7 @@ export type SearchResultsListingSchema = {
158
158
  min: number | null;
159
159
  max: number | null;
160
160
  }> | null;
161
+ hasSampled: boolean | null;
161
162
  };
162
163
  activeBids: number;
163
164
  bidInfo?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.87",
3
+ "version": "1.1.88",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",