@hectare/platform.clients.trading 1.1.75 → 1.1.76
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
CHANGED
|
@@ -241,6 +241,7 @@ export type BidDetail = {
|
|
|
241
241
|
advancePayContractId: string | null;
|
|
242
242
|
acceptedAtUTC: string | null;
|
|
243
243
|
soldWeight: number | null;
|
|
244
|
+
haulageType: 'ex-farm' | 'delivered';
|
|
244
245
|
}>;
|
|
245
246
|
terms: {
|
|
246
247
|
weight: {
|
|
@@ -258,7 +259,7 @@ export type BidDetail = {
|
|
|
258
259
|
paymentDays: number;
|
|
259
260
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
260
261
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
261
|
-
haulageType
|
|
262
|
+
haulageType?: 'ex-farm' | 'delivered';
|
|
262
263
|
sellerNotes: string | null;
|
|
263
264
|
deliveryPostcode: string | null;
|
|
264
265
|
};
|
package/models/CreateBid.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type CreateBid = {
|
|
|
12
12
|
amount: number;
|
|
13
13
|
currency: string;
|
|
14
14
|
};
|
|
15
|
+
haulageType?: 'ex-farm' | 'delivered';
|
|
15
16
|
}>;
|
|
16
17
|
terms: {
|
|
17
18
|
weight: {
|
|
@@ -21,7 +22,7 @@ export type CreateBid = {
|
|
|
21
22
|
paymentDays: number;
|
|
22
23
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
23
24
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
24
|
-
haulageType
|
|
25
|
+
haulageType?: 'ex-farm' | 'delivered';
|
|
25
26
|
deliveryPostcode?: string | null;
|
|
26
27
|
sellerNotes?: string | null;
|
|
27
28
|
};
|
|
@@ -488,6 +488,7 @@ export type ListingDetail = {
|
|
|
488
488
|
advancePayContractId: string | null;
|
|
489
489
|
acceptedAtUTC: string | null;
|
|
490
490
|
soldWeight: number | null;
|
|
491
|
+
haulageType: 'ex-farm' | 'delivered';
|
|
491
492
|
}>;
|
|
492
493
|
terms: {
|
|
493
494
|
weight: {
|
|
@@ -505,7 +506,7 @@ export type ListingDetail = {
|
|
|
505
506
|
paymentDays: number;
|
|
506
507
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
507
508
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
508
|
-
haulageType
|
|
509
|
+
haulageType?: 'ex-farm' | 'delivered';
|
|
509
510
|
sellerNotes: string | null;
|
|
510
511
|
deliveryPostcode: string | null;
|
|
511
512
|
};
|
package/models/PatchBid.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export type PatchBid = {
|
|
|
11
11
|
amount: number;
|
|
12
12
|
currency: string;
|
|
13
13
|
};
|
|
14
|
+
haulageType?: 'ex-farm' | 'delivered';
|
|
14
15
|
}>;
|
|
15
16
|
terms: {
|
|
16
17
|
weight: {
|
|
@@ -20,7 +21,7 @@ export type PatchBid = {
|
|
|
20
21
|
paymentDays: number;
|
|
21
22
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
22
23
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
23
|
-
haulageType
|
|
24
|
+
haulageType?: 'ex-farm' | 'delivered';
|
|
24
25
|
deliveryPostcode?: string | null;
|
|
25
26
|
sellerNotes?: string | null;
|
|
26
27
|
};
|