@hectare/platform.clients.trading 1.1.151 → 1.1.153
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/InventorySearchResultsSchema.d.ts +1 -0
- package/models/ListingDetail.d.ts +2 -0
- package/models/ListingSummary.d.ts +1 -0
- package/models/MarketingPlanSearchResultsSchema.d.ts +1 -0
- package/models/SearchResultsBidSchema.d.ts +2 -0
- package/models/SearchResultsListingSchema.d.ts +2 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -118,6 +118,7 @@ export type ListingDetail = {
|
|
|
118
118
|
haulageTypeTASCC?: boolean | null;
|
|
119
119
|
};
|
|
120
120
|
inventory: {
|
|
121
|
+
id?: string;
|
|
121
122
|
type: 'crop' | 'produce';
|
|
122
123
|
harvestYear: string;
|
|
123
124
|
commodity: {
|
|
@@ -380,6 +381,7 @@ export type ListingDetail = {
|
|
|
380
381
|
haulageTypeTASCC?: boolean | null;
|
|
381
382
|
};
|
|
382
383
|
inventory: {
|
|
384
|
+
id?: string;
|
|
383
385
|
type: 'crop' | 'produce';
|
|
384
386
|
harvestYear: string;
|
|
385
387
|
commodity: {
|
|
@@ -122,6 +122,7 @@ export type SearchResultsBidSchema = {
|
|
|
122
122
|
haulageTypeTASCC?: boolean | null;
|
|
123
123
|
};
|
|
124
124
|
inventory: {
|
|
125
|
+
id?: string;
|
|
125
126
|
type: 'crop' | 'produce';
|
|
126
127
|
harvestYear: string;
|
|
127
128
|
commodity: {
|
|
@@ -465,6 +466,7 @@ export type SearchResultsBidSchema = {
|
|
|
465
466
|
clearUrl: string;
|
|
466
467
|
activeFilters: Array<{
|
|
467
468
|
name: string;
|
|
469
|
+
displayName: string;
|
|
468
470
|
clearUrl: string;
|
|
469
471
|
terms: Array<{
|
|
470
472
|
name: string;
|
|
@@ -119,6 +119,7 @@ export type SearchResultsListingSchema = {
|
|
|
119
119
|
haulageTypeTASCC?: boolean | null;
|
|
120
120
|
};
|
|
121
121
|
inventory: {
|
|
122
|
+
id?: string;
|
|
122
123
|
type: 'crop' | 'produce';
|
|
123
124
|
harvestYear: string;
|
|
124
125
|
commodity: {
|
|
@@ -236,6 +237,7 @@ export type SearchResultsListingSchema = {
|
|
|
236
237
|
clearUrl: string;
|
|
237
238
|
activeFilters: Array<{
|
|
238
239
|
name: string;
|
|
240
|
+
displayName: string;
|
|
239
241
|
clearUrl: string;
|
|
240
242
|
terms: Array<{
|
|
241
243
|
name: string;
|