@hectare/platform.clients.trading 1.1.74 → 1.1.75
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
|
@@ -199,11 +199,13 @@ export type BidDetail = {
|
|
|
199
199
|
tradeRequestId?: string;
|
|
200
200
|
relistedFromListingId?: string;
|
|
201
201
|
pending?: boolean;
|
|
202
|
-
|
|
202
|
+
feedback?: {
|
|
203
203
|
user: string;
|
|
204
|
-
note: string;
|
|
205
|
-
createdAtUTC
|
|
206
|
-
|
|
204
|
+
note: string | null;
|
|
205
|
+
createdAtUTC: string | null;
|
|
206
|
+
noBidReason: string | null;
|
|
207
|
+
noConversionReason: string;
|
|
208
|
+
} | null;
|
|
207
209
|
};
|
|
208
210
|
userId: string;
|
|
209
211
|
userFullName: string;
|
|
@@ -196,11 +196,13 @@ export type ListingDetail = {
|
|
|
196
196
|
tradeRequestId?: string;
|
|
197
197
|
relistedFromListingId?: string;
|
|
198
198
|
pending?: boolean;
|
|
199
|
-
|
|
199
|
+
feedback?: {
|
|
200
200
|
user: string;
|
|
201
|
-
note: string;
|
|
202
|
-
createdAtUTC
|
|
203
|
-
|
|
201
|
+
note: string | null;
|
|
202
|
+
createdAtUTC: string | null;
|
|
203
|
+
noBidReason: string | null;
|
|
204
|
+
noConversionReason: string;
|
|
205
|
+
} | null;
|
|
204
206
|
marketBuyers: Array<{
|
|
205
207
|
authPlatformId?: string;
|
|
206
208
|
emailAddress?: string;
|
|
@@ -444,11 +446,13 @@ export type ListingDetail = {
|
|
|
444
446
|
tradeRequestId?: string;
|
|
445
447
|
relistedFromListingId?: string;
|
|
446
448
|
pending?: boolean;
|
|
447
|
-
|
|
449
|
+
feedback?: {
|
|
448
450
|
user: string;
|
|
449
|
-
note: string;
|
|
450
|
-
createdAtUTC
|
|
451
|
-
|
|
451
|
+
note: string | null;
|
|
452
|
+
createdAtUTC: string | null;
|
|
453
|
+
noBidReason: string | null;
|
|
454
|
+
noConversionReason: string;
|
|
455
|
+
} | null;
|
|
452
456
|
};
|
|
453
457
|
userId: string;
|
|
454
458
|
userFullName: string;
|
|
@@ -196,9 +196,11 @@ export type ListingSummary = {
|
|
|
196
196
|
tradeRequestId?: string;
|
|
197
197
|
relistedFromListingId?: string;
|
|
198
198
|
pending?: boolean;
|
|
199
|
-
|
|
199
|
+
feedback?: {
|
|
200
200
|
user: string;
|
|
201
|
-
note: string;
|
|
202
|
-
createdAtUTC
|
|
203
|
-
|
|
201
|
+
note: string | null;
|
|
202
|
+
createdAtUTC: string | null;
|
|
203
|
+
noBidReason: string | null;
|
|
204
|
+
noConversionReason: string;
|
|
205
|
+
} | null;
|
|
204
206
|
};
|
|
@@ -197,11 +197,13 @@ export type SearchResultsListingSchema = {
|
|
|
197
197
|
tradeRequestId?: string;
|
|
198
198
|
relistedFromListingId?: string;
|
|
199
199
|
pending?: boolean;
|
|
200
|
-
|
|
200
|
+
feedback?: {
|
|
201
201
|
user: string;
|
|
202
|
-
note: string;
|
|
203
|
-
createdAtUTC
|
|
204
|
-
|
|
202
|
+
note: string | null;
|
|
203
|
+
createdAtUTC: string | null;
|
|
204
|
+
noBidReason: string | null;
|
|
205
|
+
noConversionReason: string;
|
|
206
|
+
} | null;
|
|
205
207
|
}>;
|
|
206
208
|
custom?: any;
|
|
207
209
|
totalDocs?: number;
|