@hectare/platform.clients.trading 1.1.78 → 1.1.80
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
|
@@ -206,6 +206,12 @@ export type BidDetail = {
|
|
|
206
206
|
createdAtUTC: string | null;
|
|
207
207
|
noBidReason: string | null;
|
|
208
208
|
noConversionReason: string;
|
|
209
|
+
sellerTargetPrice: {
|
|
210
|
+
amount: number;
|
|
211
|
+
currency: string;
|
|
212
|
+
} | null;
|
|
213
|
+
sellerListingReasonIds: Array<number> | null;
|
|
214
|
+
sellerListingReasonDetail: string | null;
|
|
209
215
|
} | null;
|
|
210
216
|
};
|
|
211
217
|
userId: string;
|
|
@@ -203,6 +203,12 @@ export type ListingDetail = {
|
|
|
203
203
|
createdAtUTC: string | null;
|
|
204
204
|
noBidReason: string | null;
|
|
205
205
|
noConversionReason: string;
|
|
206
|
+
sellerTargetPrice: {
|
|
207
|
+
amount: number;
|
|
208
|
+
currency: string;
|
|
209
|
+
} | null;
|
|
210
|
+
sellerListingReasonIds: Array<number> | null;
|
|
211
|
+
sellerListingReasonDetail: string | null;
|
|
206
212
|
} | null;
|
|
207
213
|
marketBuyers: Array<{
|
|
208
214
|
authPlatformId?: string;
|
|
@@ -454,6 +460,12 @@ export type ListingDetail = {
|
|
|
454
460
|
createdAtUTC: string | null;
|
|
455
461
|
noBidReason: string | null;
|
|
456
462
|
noConversionReason: string;
|
|
463
|
+
sellerTargetPrice: {
|
|
464
|
+
amount: number;
|
|
465
|
+
currency: string;
|
|
466
|
+
} | null;
|
|
467
|
+
sellerListingReasonIds: Array<number> | null;
|
|
468
|
+
sellerListingReasonDetail: string | null;
|
|
457
469
|
} | null;
|
|
458
470
|
};
|
|
459
471
|
userId: string;
|
|
@@ -203,5 +203,11 @@ export type ListingSummary = {
|
|
|
203
203
|
createdAtUTC: string | null;
|
|
204
204
|
noBidReason: string | null;
|
|
205
205
|
noConversionReason: string;
|
|
206
|
+
sellerTargetPrice: {
|
|
207
|
+
amount: number;
|
|
208
|
+
currency: string;
|
|
209
|
+
} | null;
|
|
210
|
+
sellerListingReasonIds: Array<number> | null;
|
|
211
|
+
sellerListingReasonDetail: string | null;
|
|
206
212
|
} | null;
|
|
207
213
|
};
|
|
@@ -204,6 +204,12 @@ export type SearchResultsListingSchema = {
|
|
|
204
204
|
createdAtUTC: string | null;
|
|
205
205
|
noBidReason: string | null;
|
|
206
206
|
noConversionReason: string;
|
|
207
|
+
sellerTargetPrice: {
|
|
208
|
+
amount: number;
|
|
209
|
+
currency: string;
|
|
210
|
+
} | null;
|
|
211
|
+
sellerListingReasonIds: Array<number> | null;
|
|
212
|
+
sellerListingReasonDetail: string | null;
|
|
207
213
|
} | null;
|
|
208
214
|
}>;
|
|
209
215
|
custom?: any;
|