@hectare/platform.clients.trading 1.1.76 → 1.1.78

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.
@@ -111,6 +111,7 @@ export type BidDetail = {
111
111
  currency: string;
112
112
  } | null;
113
113
  isBasePremOnly: boolean;
114
+ haulageType: 'ex-farm' | 'delivered' | null;
114
115
  };
115
116
  inventory: {
116
117
  type: 'crop' | 'produce';
@@ -37,6 +37,7 @@ export type CreateListing = {
37
37
  isBasePremOnly?: boolean;
38
38
  startDateUTC?: string | null;
39
39
  endDateUTC?: string | null;
40
+ haulageType?: 'ex-farm' | 'delivered' | null;
40
41
  };
41
42
  inventory: {
42
43
  commodity: {
@@ -69,4 +70,12 @@ export type CreateListing = {
69
70
  tags?: Array<string> | null;
70
71
  tradeRequestId?: string;
71
72
  relistedFromListingId?: string;
73
+ feedback?: {
74
+ sellerTargetPrice: {
75
+ amount: number;
76
+ currency: string;
77
+ } | null;
78
+ sellerListingReasonId: number | null;
79
+ sellerListingReasonDetail: string | null;
80
+ } | null;
72
81
  };
@@ -108,6 +108,7 @@ export type ListingDetail = {
108
108
  currency: string;
109
109
  } | null;
110
110
  isBasePremOnly: boolean;
111
+ haulageType: 'ex-farm' | 'delivered' | null;
111
112
  };
112
113
  inventory: {
113
114
  type: 'crop' | 'produce';
@@ -358,6 +359,7 @@ export type ListingDetail = {
358
359
  currency: string;
359
360
  } | null;
360
361
  isBasePremOnly: boolean;
362
+ haulageType: 'ex-farm' | 'delivered' | null;
361
363
  };
362
364
  inventory: {
363
365
  type: 'crop' | 'produce';
@@ -108,6 +108,7 @@ export type ListingSummary = {
108
108
  currency: string;
109
109
  } | null;
110
110
  isBasePremOnly: boolean;
111
+ haulageType: 'ex-farm' | 'delivered' | null;
111
112
  };
112
113
  inventory: {
113
114
  type: 'crop' | 'produce';
@@ -109,6 +109,7 @@ export type SearchResultsListingSchema = {
109
109
  currency: string;
110
110
  } | null;
111
111
  isBasePremOnly: boolean;
112
+ haulageType: 'ex-farm' | 'delivered' | null;
112
113
  };
113
114
  inventory: {
114
115
  type: 'crop' | 'produce';
@@ -21,6 +21,10 @@ export type TradingConfig = {
21
21
  id: number;
22
22
  description: string;
23
23
  }>;
24
+ openListingReason?: Array<{
25
+ id: number;
26
+ description: string;
27
+ }>;
24
28
  advancePay: {
25
29
  harvestYears: Array<string>;
26
30
  interestRates: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.76",
3
+ "version": "1.1.78",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",