@hectare/platform.clients.trading 1.1.136 → 1.1.138
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 +2 -0
- package/models/ContractDetail.d.ts +1 -0
- package/models/CreateBid.d.ts +1 -0
- package/models/ListingDetail.d.ts +3 -0
- package/models/ListingSummary.d.ts +1 -0
- package/models/PatchBid.d.ts +1 -0
- package/models/SearchResultsBidSchema.d.ts +2 -0
- package/models/SearchResultsListingSchema.d.ts +1 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export type BidDetail = {
|
|
|
44
44
|
id: string | null;
|
|
45
45
|
key?: string | null;
|
|
46
46
|
body: 'RT' | 'SQC';
|
|
47
|
+
name?: string | null;
|
|
47
48
|
location?: string | null;
|
|
48
49
|
} | null;
|
|
49
50
|
holdingNumber?: string;
|
|
@@ -279,6 +280,7 @@ export type BidDetail = {
|
|
|
279
280
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
280
281
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
281
282
|
haulageType?: 'ex-farm' | 'delivered';
|
|
283
|
+
cropHome?: string | null;
|
|
282
284
|
sellerNotes: string | null;
|
|
283
285
|
deliveryPostcode: string | null;
|
|
284
286
|
};
|
package/models/CreateBid.d.ts
CHANGED
|
@@ -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;
|
|
@@ -533,6 +535,7 @@ export type ListingDetail = {
|
|
|
533
535
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
534
536
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
535
537
|
haulageType?: 'ex-farm' | 'delivered';
|
|
538
|
+
cropHome?: string | null;
|
|
536
539
|
sellerNotes: string | null;
|
|
537
540
|
deliveryPostcode: string | null;
|
|
538
541
|
};
|
package/models/PatchBid.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export type SearchResultsBidSchema = {
|
|
|
45
45
|
id: string | null;
|
|
46
46
|
key?: string | null;
|
|
47
47
|
body: 'RT' | 'SQC';
|
|
48
|
+
name?: string | null;
|
|
48
49
|
location?: string | null;
|
|
49
50
|
} | null;
|
|
50
51
|
holdingNumber?: string;
|
|
@@ -280,6 +281,7 @@ export type SearchResultsBidSchema = {
|
|
|
280
281
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
281
282
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
282
283
|
haulageType?: 'ex-farm' | 'delivered';
|
|
284
|
+
cropHome?: string | null;
|
|
283
285
|
sellerNotes: string | null;
|
|
284
286
|
deliveryPostcode: string | null;
|
|
285
287
|
};
|