@hectare/platform.clients.trading 1.1.80 → 1.1.82
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.
- package/models/AdvancePayContractSchema.d.ts +1 -0
- package/models/BidDetail.d.ts +3 -0
- package/models/ContractDetail.d.ts +1 -0
- package/models/CreateBid.d.ts +1 -0
- package/models/CreateContractRequest.d.ts +1 -0
- package/models/CreateListing.d.ts +2 -0
- package/models/CreateTradeRequest.d.ts +2 -0
- package/models/ListingDetail.d.ts +5 -0
- package/models/ListingSummary.d.ts +2 -0
- package/models/SearchResultsListingSchema.d.ts +2 -0
- package/models/TradeRequestDetail.d.ts +1 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -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;
|
|
@@ -130,6 +131,7 @@ export type BidDetail = {
|
|
|
130
131
|
name: string;
|
|
131
132
|
};
|
|
132
133
|
variety: string;
|
|
134
|
+
varieties: Array<string>;
|
|
133
135
|
tags: Array<number>;
|
|
134
136
|
weight: {
|
|
135
137
|
name: string;
|
|
@@ -305,6 +307,7 @@ export type BidDetail = {
|
|
|
305
307
|
name: string;
|
|
306
308
|
};
|
|
307
309
|
variety: string;
|
|
310
|
+
varieties: Array<string>;
|
|
308
311
|
tags: Array<number>;
|
|
309
312
|
weight: {
|
|
310
313
|
name: string;
|
package/models/CreateBid.d.ts
CHANGED
|
@@ -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?: {
|
|
@@ -45,6 +46,7 @@ export type CreateListing = {
|
|
|
45
46
|
type: number;
|
|
46
47
|
grade: number | null;
|
|
47
48
|
variety?: string | null;
|
|
49
|
+
varieties?: Array<string> | null;
|
|
48
50
|
tags?: Array<number> | null;
|
|
49
51
|
};
|
|
50
52
|
harvestYear: string;
|
|
@@ -6,6 +6,7 @@ export type CreateTradeRequest = {
|
|
|
6
6
|
type: number;
|
|
7
7
|
grade: number | null;
|
|
8
8
|
variety?: string | null;
|
|
9
|
+
varieties?: Array<string> | null;
|
|
9
10
|
tags?: Array<number> | null;
|
|
10
11
|
};
|
|
11
12
|
regionISOs?: Array<string>;
|
|
@@ -17,6 +18,7 @@ export type CreateTradeRequest = {
|
|
|
17
18
|
startDateUTC: string;
|
|
18
19
|
endDateUTC: string;
|
|
19
20
|
type: 'date' | 'month';
|
|
21
|
+
excludedDatesUTC?: Array<string> | null;
|
|
20
22
|
};
|
|
21
23
|
haulageTerms: {
|
|
22
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;
|
|
@@ -127,6 +128,7 @@ export type ListingDetail = {
|
|
|
127
128
|
name: string;
|
|
128
129
|
};
|
|
129
130
|
variety: string;
|
|
131
|
+
varieties: Array<string>;
|
|
130
132
|
tags: Array<number>;
|
|
131
133
|
weight: {
|
|
132
134
|
name: string;
|
|
@@ -336,6 +338,7 @@ export type ListingDetail = {
|
|
|
336
338
|
startDateUTC: string;
|
|
337
339
|
endDateUTC: string;
|
|
338
340
|
type: 'date' | 'month';
|
|
341
|
+
excludedDatesUTC?: Array<string> | null;
|
|
339
342
|
asAvailable?: boolean | null;
|
|
340
343
|
};
|
|
341
344
|
buyerNotes: string | null;
|
|
@@ -384,6 +387,7 @@ export type ListingDetail = {
|
|
|
384
387
|
name: string;
|
|
385
388
|
};
|
|
386
389
|
variety: string;
|
|
390
|
+
varieties: Array<string>;
|
|
387
391
|
tags: Array<number>;
|
|
388
392
|
weight: {
|
|
389
393
|
name: string;
|
|
@@ -559,6 +563,7 @@ export type ListingDetail = {
|
|
|
559
563
|
name: string;
|
|
560
564
|
};
|
|
561
565
|
variety: string;
|
|
566
|
+
varieties: Array<string>;
|
|
562
567
|
tags: Array<number>;
|
|
563
568
|
weight: {
|
|
564
569
|
name: string;
|
|
@@ -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;
|
|
@@ -127,6 +128,7 @@ export type ListingSummary = {
|
|
|
127
128
|
name: string;
|
|
128
129
|
};
|
|
129
130
|
variety: string;
|
|
131
|
+
varieties: Array<string>;
|
|
130
132
|
tags: Array<number>;
|
|
131
133
|
weight: {
|
|
132
134
|
name: string;
|
|
@@ -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;
|
|
@@ -128,6 +129,7 @@ export type SearchResultsListingSchema = {
|
|
|
128
129
|
name: string;
|
|
129
130
|
};
|
|
130
131
|
variety: string;
|
|
132
|
+
varieties: Array<string>;
|
|
131
133
|
tags: Array<number>;
|
|
132
134
|
weight: {
|
|
133
135
|
name: string;
|