@hectare/platform.clients.trading 1.1.87 → 1.1.89
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
|
@@ -160,6 +160,7 @@ export type BidDetail = {
|
|
|
160
160
|
min: number | null;
|
|
161
161
|
max: number | null;
|
|
162
162
|
}> | null;
|
|
163
|
+
hasSampled: boolean | null;
|
|
163
164
|
};
|
|
164
165
|
activeBids: number;
|
|
165
166
|
bidInfo?: {
|
|
@@ -201,6 +202,7 @@ export type BidDetail = {
|
|
|
201
202
|
};
|
|
202
203
|
tradeRequestId?: string;
|
|
203
204
|
relistedFromListingId?: string;
|
|
205
|
+
preferences: Array<string>;
|
|
204
206
|
pending?: boolean;
|
|
205
207
|
feedback?: {
|
|
206
208
|
user: string;
|
|
@@ -157,6 +157,7 @@ export type ListingDetail = {
|
|
|
157
157
|
min: number | null;
|
|
158
158
|
max: number | null;
|
|
159
159
|
}> | null;
|
|
160
|
+
hasSampled: boolean | null;
|
|
160
161
|
};
|
|
161
162
|
activeBids: number;
|
|
162
163
|
bidInfo?: {
|
|
@@ -198,6 +199,7 @@ export type ListingDetail = {
|
|
|
198
199
|
};
|
|
199
200
|
tradeRequestId?: string;
|
|
200
201
|
relistedFromListingId?: string;
|
|
202
|
+
preferences: Array<string>;
|
|
201
203
|
pending?: boolean;
|
|
202
204
|
feedback?: {
|
|
203
205
|
user: string;
|
|
@@ -404,6 +406,7 @@ export type ListingDetail = {
|
|
|
404
406
|
min: number | null;
|
|
405
407
|
max: number | null;
|
|
406
408
|
}> | null;
|
|
409
|
+
hasSampled: boolean | null;
|
|
407
410
|
};
|
|
408
411
|
activeBids: number;
|
|
409
412
|
bidInfo?: {
|
|
@@ -445,6 +448,7 @@ export type ListingDetail = {
|
|
|
445
448
|
};
|
|
446
449
|
tradeRequestId?: string;
|
|
447
450
|
relistedFromListingId?: string;
|
|
451
|
+
preferences: Array<string>;
|
|
448
452
|
pending?: boolean;
|
|
449
453
|
feedback?: {
|
|
450
454
|
user: string;
|
|
@@ -157,6 +157,7 @@ export type ListingSummary = {
|
|
|
157
157
|
min: number | null;
|
|
158
158
|
max: number | null;
|
|
159
159
|
}> | null;
|
|
160
|
+
hasSampled: boolean | null;
|
|
160
161
|
};
|
|
161
162
|
activeBids: number;
|
|
162
163
|
bidInfo?: {
|
|
@@ -198,6 +199,7 @@ export type ListingSummary = {
|
|
|
198
199
|
};
|
|
199
200
|
tradeRequestId?: string;
|
|
200
201
|
relistedFromListingId?: string;
|
|
202
|
+
preferences: Array<string>;
|
|
201
203
|
pending?: boolean;
|
|
202
204
|
feedback?: {
|
|
203
205
|
user: string;
|
|
@@ -158,6 +158,7 @@ export type SearchResultsListingSchema = {
|
|
|
158
158
|
min: number | null;
|
|
159
159
|
max: number | null;
|
|
160
160
|
}> | null;
|
|
161
|
+
hasSampled: boolean | null;
|
|
161
162
|
};
|
|
162
163
|
activeBids: number;
|
|
163
164
|
bidInfo?: {
|
|
@@ -199,6 +200,7 @@ export type SearchResultsListingSchema = {
|
|
|
199
200
|
};
|
|
200
201
|
tradeRequestId?: string;
|
|
201
202
|
relistedFromListingId?: string;
|
|
203
|
+
preferences: Array<string>;
|
|
202
204
|
pending?: boolean;
|
|
203
205
|
feedback?: {
|
|
204
206
|
user: string;
|