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