@hectare/platform.clients.trading 1.1.81 → 1.1.83

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
  startDateUTC: string;
83
83
  endDateUTC: string;
84
84
  type: 'date' | 'month';
85
+ excludedDatesUTC?: Array<string> | null;
85
86
  asAvailable?: boolean | null;
86
87
  };
87
88
  buyerNotes: string | null;
@@ -6,6 +6,7 @@ export type CreateBid = {
6
6
  startDateUTC: string;
7
7
  endDateUTC: string;
8
8
  type: 'date' | 'month';
9
+ excludedDatesUTC?: Array<string> | null;
9
10
  asAvailable?: boolean | null;
10
11
  };
11
12
  pricePerUnit: {
@@ -24,6 +24,7 @@ export type CreateListing = {
24
24
  startDateUTC: string;
25
25
  endDateUTC: string;
26
26
  type: 'date' | 'month';
27
+ excludedDatesUTC?: Array<string> | null;
27
28
  asAvailable?: boolean | null;
28
29
  };
29
30
  price?: {
@@ -18,6 +18,7 @@ export type CreateTradeRequest = {
18
18
  startDateUTC: string;
19
19
  endDateUTC: string;
20
20
  type: 'date' | 'month';
21
+ excludedDatesUTC?: Array<string> | null;
21
22
  };
22
23
  haulageTerms: {
23
24
  haulageType: 'ex-farm' | 'delivered';
@@ -79,6 +79,7 @@ export type ListingDetail = {
79
79
  startDateUTC: string;
80
80
  endDateUTC: string;
81
81
  type: 'date' | 'month';
82
+ excludedDatesUTC?: Array<string> | null;
82
83
  asAvailable?: boolean | null;
83
84
  };
84
85
  buyerNotes: string | null;
@@ -211,7 +212,7 @@ export type ListingDetail = {
211
212
  sellerListingReasonIds: Array<number> | null;
212
213
  sellerListingReasonDetail: string | null;
213
214
  } | null;
214
- marketBuyers: Array<{
215
+ marketBuyers?: Array<{
215
216
  authPlatformId?: string;
216
217
  emailAddress?: string;
217
218
  fullName?: string;
@@ -223,7 +224,7 @@ export type ListingDetail = {
223
224
  organisationName?: string | null;
224
225
  userId: string;
225
226
  }> | null;
226
- bidAlerts: Array<{
227
+ bidAlerts?: Array<{
227
228
  authPlatformId?: string;
228
229
  emailAddress?: string;
229
230
  fullName?: string;
@@ -337,6 +338,7 @@ export type ListingDetail = {
337
338
  startDateUTC: string;
338
339
  endDateUTC: string;
339
340
  type: 'date' | 'month';
341
+ excludedDatesUTC?: Array<string> | null;
340
342
  asAvailable?: boolean | null;
341
343
  };
342
344
  buyerNotes: string | null;
@@ -79,6 +79,7 @@ export type ListingSummary = {
79
79
  startDateUTC: string;
80
80
  endDateUTC: string;
81
81
  type: 'date' | 'month';
82
+ excludedDatesUTC?: Array<string> | null;
82
83
  asAvailable?: boolean | null;
83
84
  };
84
85
  buyerNotes: string | null;
@@ -80,6 +80,7 @@ export type SearchResultsListingSchema = {
80
80
  startDateUTC: string;
81
81
  endDateUTC: string;
82
82
  type: 'date' | 'month';
83
+ excludedDatesUTC?: Array<string> | null;
83
84
  asAvailable?: boolean | null;
84
85
  };
85
86
  buyerNotes: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.81",
3
+ "version": "1.1.83",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",