@hectare/platform.clients.trading 1.1.135 → 1.1.137
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/BidDetail.d.ts +1 -0
- package/models/ContractDetail.d.ts +1 -0
- package/models/InventorySummarySchema.d.ts +9 -0
- package/models/ListingDetail.d.ts +2 -0
- package/models/ListingSummary.d.ts +1 -0
- package/models/SearchResultsBidSchema.d.ts +1 -0
- package/models/SearchResultsListingSchema.d.ts +1 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -7,4 +7,13 @@ export type InventorySummarySchema = {
|
|
|
7
7
|
grade: string;
|
|
8
8
|
tags: string;
|
|
9
9
|
varieties: string;
|
|
10
|
+
contract: {
|
|
11
|
+
contractType: 'base' | 'fixed' | 'unpriced' | 'premium' | null;
|
|
12
|
+
haulageType: 'ex-farm' | 'delivered' | null;
|
|
13
|
+
buyerNotes: string | null;
|
|
14
|
+
movement: {
|
|
15
|
+
months: Array<string>;
|
|
16
|
+
asAvailable: boolean;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
10
19
|
};
|
|
@@ -41,6 +41,7 @@ export type ListingDetail = {
|
|
|
41
41
|
id: string | null;
|
|
42
42
|
key?: string | null;
|
|
43
43
|
body: 'RT' | 'SQC';
|
|
44
|
+
name?: string | null;
|
|
44
45
|
location?: string | null;
|
|
45
46
|
} | null;
|
|
46
47
|
holdingNumber?: string;
|
|
@@ -298,6 +299,7 @@ export type ListingDetail = {
|
|
|
298
299
|
id: string | null;
|
|
299
300
|
key?: string | null;
|
|
300
301
|
body: 'RT' | 'SQC';
|
|
302
|
+
name?: string | null;
|
|
301
303
|
location?: string | null;
|
|
302
304
|
} | null;
|
|
303
305
|
holdingNumber?: string;
|