@hectare/platform.clients.trading 1.1.141 → 1.1.142

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.
@@ -2,5 +2,6 @@ export type AcceptBid = {
2
2
  optionId: number;
3
3
  weight: number;
4
4
  price?: number;
5
+ buyerNotes?: string | null;
5
6
  force?: boolean | null;
6
7
  };
@@ -262,6 +262,7 @@ export type BidDetail = {
262
262
  acceptedAtUTC: string | null;
263
263
  soldWeight: number | null;
264
264
  haulageType: 'ex-farm' | 'delivered';
265
+ buyerNotes: string | null;
265
266
  }>;
266
267
  terms: {
267
268
  weight: {
@@ -517,6 +517,7 @@ export type ListingDetail = {
517
517
  acceptedAtUTC: string | null;
518
518
  soldWeight: number | null;
519
519
  haulageType: 'ex-farm' | 'delivered';
520
+ buyerNotes: string | null;
520
521
  }>;
521
522
  terms: {
522
523
  weight: {
@@ -263,6 +263,7 @@ export type SearchResultsBidSchema = {
263
263
  acceptedAtUTC: string | null;
264
264
  soldWeight: number | null;
265
265
  haulageType: 'ex-farm' | 'delivered';
266
+ buyerNotes: string | null;
266
267
  }>;
267
268
  terms: {
268
269
  weight: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.141",
3
+ "version": "1.1.142",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",