@hectare/platform.clients.trading 1.1.186 → 1.1.188
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/CreateListing.d.ts +1 -1
- package/models/CreateWantedAd.d.ts +1 -1
- package/models/ListingDetail.d.ts +2 -2
- package/models/ListingSummary.d.ts +1 -1
- package/models/PatchListingSchema.d.ts +1 -1
- package/models/SearchResultsBidSchema.d.ts +1 -1
- package/models/SearchResultsListingSchema.d.ts +1 -1
- package/models/WantedAdDetailSchema.d.ts +1 -1
- package/models/WantedAdSearchResultsSchema.d.ts +1 -1
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -149,7 +149,7 @@ export type BidDetail = {
|
|
|
149
149
|
currency: string;
|
|
150
150
|
} | null;
|
|
151
151
|
isBasePremOnly: boolean;
|
|
152
|
-
haulageType: 'ex-farm' | 'delivered' | null;
|
|
152
|
+
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
153
153
|
haulageTypeTASCC?: boolean | null;
|
|
154
154
|
};
|
|
155
155
|
inventory: {
|
|
@@ -43,7 +43,7 @@ export type CreateListing = {
|
|
|
43
43
|
isBasePremOnly?: boolean;
|
|
44
44
|
startDateUTC?: string | null;
|
|
45
45
|
endDateUTC?: string | null;
|
|
46
|
-
haulageType?: 'ex-farm' | 'delivered' | null;
|
|
46
|
+
haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
|
|
47
47
|
haulageTypeTASCC?: boolean | null;
|
|
48
48
|
};
|
|
49
49
|
inventory: {
|
|
@@ -146,7 +146,7 @@ export type ListingDetail = {
|
|
|
146
146
|
currency: string;
|
|
147
147
|
} | null;
|
|
148
148
|
isBasePremOnly: boolean;
|
|
149
|
-
haulageType: 'ex-farm' | 'delivered' | null;
|
|
149
|
+
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
150
150
|
haulageTypeTASCC?: boolean | null;
|
|
151
151
|
};
|
|
152
152
|
inventory: {
|
|
@@ -445,7 +445,7 @@ export type ListingDetail = {
|
|
|
445
445
|
currency: string;
|
|
446
446
|
} | null;
|
|
447
447
|
isBasePremOnly: boolean;
|
|
448
|
-
haulageType: 'ex-farm' | 'delivered' | null;
|
|
448
|
+
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
449
449
|
haulageTypeTASCC?: boolean | null;
|
|
450
450
|
};
|
|
451
451
|
inventory: {
|
|
@@ -146,7 +146,7 @@ export type ListingSummary = {
|
|
|
146
146
|
currency: string;
|
|
147
147
|
} | null;
|
|
148
148
|
isBasePremOnly: boolean;
|
|
149
|
-
haulageType: 'ex-farm' | 'delivered' | null;
|
|
149
|
+
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
150
150
|
haulageTypeTASCC?: boolean | null;
|
|
151
151
|
};
|
|
152
152
|
inventory: {
|
|
@@ -34,7 +34,7 @@ export type PatchListingSchema = {
|
|
|
34
34
|
isBasePremOnly?: boolean;
|
|
35
35
|
startDateUTC?: string | null;
|
|
36
36
|
endDateUTC?: string | null;
|
|
37
|
-
haulageType?: 'ex-farm' | 'delivered' | null;
|
|
37
|
+
haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
|
|
38
38
|
haulageTypeTASCC?: boolean | null;
|
|
39
39
|
};
|
|
40
40
|
inventory?: {
|
|
@@ -150,7 +150,7 @@ export type SearchResultsBidSchema = {
|
|
|
150
150
|
currency: string;
|
|
151
151
|
} | null;
|
|
152
152
|
isBasePremOnly: boolean;
|
|
153
|
-
haulageType: 'ex-farm' | 'delivered' | null;
|
|
153
|
+
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
154
154
|
haulageTypeTASCC?: boolean | null;
|
|
155
155
|
};
|
|
156
156
|
inventory: {
|
|
@@ -147,7 +147,7 @@ export type SearchResultsListingSchema = {
|
|
|
147
147
|
currency: string;
|
|
148
148
|
} | null;
|
|
149
149
|
isBasePremOnly: boolean;
|
|
150
|
-
haulageType: 'ex-farm' | 'delivered' | null;
|
|
150
|
+
haulageType: 'ex-farm' | 'delivered' | 'both' | null;
|
|
151
151
|
haulageTypeTASCC?: boolean | null;
|
|
152
152
|
};
|
|
153
153
|
inventory: {
|