@hectare/platform.clients.trading 1.1.320 → 1.1.322
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/BuyerBenchmarkSchema.d.ts +1 -0
- package/models/ContractDetail.d.ts +2 -0
- package/models/CreateListing.d.ts +1 -0
- package/models/CreateManualListingTrade.d.ts +1 -0
- package/models/CropContractSearchSchema.d.ts +1 -0
- package/models/ListingDetail.d.ts +1 -0
- package/models/PatchListingSchema.d.ts +1 -0
- package/models/SearchResultsBidSchema.d.ts +1 -0
- package/models/SearchResultsContractSchema.d.ts +2 -0
- package/models/SearchResultsListingSchema.d.ts +1 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -252,6 +252,7 @@ export type BidDetail = {
|
|
|
252
252
|
currency: string;
|
|
253
253
|
} | null;
|
|
254
254
|
contractType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
255
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
255
256
|
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
256
257
|
haulageTypeTASCC?: boolean | null;
|
|
257
258
|
};
|
|
@@ -106,6 +106,7 @@ export type BuyerBenchmarkSchema = {
|
|
|
106
106
|
currency: string;
|
|
107
107
|
} | null;
|
|
108
108
|
contractType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
109
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
109
110
|
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
110
111
|
haulageTypeTASCC?: boolean | null;
|
|
111
112
|
};
|
|
@@ -14,6 +14,7 @@ export type ContractDetail = {
|
|
|
14
14
|
weight?: number;
|
|
15
15
|
};
|
|
16
16
|
priceType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
17
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
17
18
|
compositionType: 'individual' | 'multiple' | 'other';
|
|
18
19
|
totalPrice: {
|
|
19
20
|
amount: number | null;
|
|
@@ -540,6 +541,7 @@ export type ContractDetail = {
|
|
|
540
541
|
currency: string;
|
|
541
542
|
} | null;
|
|
542
543
|
contractType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
544
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
543
545
|
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
544
546
|
haulageTypeTASCC?: boolean | null;
|
|
545
547
|
};
|
|
@@ -17,6 +17,7 @@ export type CreateListing = {
|
|
|
17
17
|
asAvailable: boolean | null;
|
|
18
18
|
};
|
|
19
19
|
contractType?: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
20
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
20
21
|
startDateUTC?: string | null;
|
|
21
22
|
haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
|
|
22
23
|
haulageTypeTASCC?: boolean | null;
|
|
@@ -18,6 +18,7 @@ export type CreateManualListingTrade = {
|
|
|
18
18
|
asAvailable: boolean | null;
|
|
19
19
|
};
|
|
20
20
|
contractType?: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
21
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
21
22
|
startDateUTC?: string | null;
|
|
22
23
|
haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
|
|
23
24
|
haulageTypeTASCC?: boolean | null;
|
|
@@ -12,6 +12,7 @@ export type CropContractSearchSchema = {
|
|
|
12
12
|
variety?: string | null;
|
|
13
13
|
haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
|
|
14
14
|
contractType?: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus' | null;
|
|
15
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
15
16
|
commodityId?: number | null;
|
|
16
17
|
movement?: string | null;
|
|
17
18
|
paymentMonth?: string | null;
|
|
@@ -105,6 +105,7 @@ export type ListingDetail = {
|
|
|
105
105
|
currency: string;
|
|
106
106
|
} | null;
|
|
107
107
|
contractType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
108
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
108
109
|
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
109
110
|
haulageTypeTASCC?: boolean | null;
|
|
110
111
|
};
|
|
@@ -17,6 +17,7 @@ export type PatchListingSchema = {
|
|
|
17
17
|
asAvailable: boolean | null;
|
|
18
18
|
};
|
|
19
19
|
contractType?: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
20
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
20
21
|
startDateUTC?: string | null;
|
|
21
22
|
haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
|
|
22
23
|
haulageTypeTASCC?: boolean | null;
|
|
@@ -253,6 +253,7 @@ export type SearchResultsBidSchema = {
|
|
|
253
253
|
currency: string;
|
|
254
254
|
} | null;
|
|
255
255
|
contractType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
256
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
256
257
|
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
257
258
|
haulageTypeTASCC?: boolean | null;
|
|
258
259
|
};
|
|
@@ -15,6 +15,7 @@ export type SearchResultsContractSchema = {
|
|
|
15
15
|
weight?: number;
|
|
16
16
|
};
|
|
17
17
|
priceType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
18
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
18
19
|
compositionType: 'individual' | 'multiple' | 'other';
|
|
19
20
|
totalPrice: {
|
|
20
21
|
amount: number | null;
|
|
@@ -541,6 +542,7 @@ export type SearchResultsContractSchema = {
|
|
|
541
542
|
currency: string;
|
|
542
543
|
} | null;
|
|
543
544
|
contractType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
545
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
544
546
|
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
545
547
|
haulageTypeTASCC?: boolean | null;
|
|
546
548
|
};
|
|
@@ -106,6 +106,7 @@ export type SearchResultsListingSchema = {
|
|
|
106
106
|
currency: string;
|
|
107
107
|
} | null;
|
|
108
108
|
contractType: 'base' | 'fixed' | 'premium-only' | 'unpriced' | 'premium' | 'base-plus-oil-bonus';
|
|
109
|
+
pricingBasis?: 'milling' | 'feed' | null;
|
|
109
110
|
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
110
111
|
haulageTypeTASCC?: boolean | null;
|
|
111
112
|
};
|