@hectare/platform.clients.trading 1.1.182 → 1.1.184
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 +2 -0
- package/models/ListingDetail.d.ts +4 -0
- package/models/ListingSummary.d.ts +2 -0
- package/models/SearchResultsBidSchema.d.ts +2 -0
- package/models/SearchResultsListingSchema.d.ts +2 -0
- 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
|
@@ -246,6 +246,8 @@ export type BidDetail = {
|
|
|
246
246
|
};
|
|
247
247
|
tradeRequestId: string | null;
|
|
248
248
|
tradeRequestUserId: string | null;
|
|
249
|
+
wantedAdId: string | null;
|
|
250
|
+
wantedAdUserId: string | null;
|
|
249
251
|
relistedFromListingId?: string;
|
|
250
252
|
preferences: Array<string>;
|
|
251
253
|
pending?: boolean;
|
|
@@ -243,6 +243,8 @@ export type ListingDetail = {
|
|
|
243
243
|
};
|
|
244
244
|
tradeRequestId: string | null;
|
|
245
245
|
tradeRequestUserId: string | null;
|
|
246
|
+
wantedAdId: string | null;
|
|
247
|
+
wantedAdUserId: string | null;
|
|
246
248
|
relistedFromListingId?: string;
|
|
247
249
|
preferences: Array<string>;
|
|
248
250
|
pending?: boolean;
|
|
@@ -539,6 +541,8 @@ export type ListingDetail = {
|
|
|
539
541
|
};
|
|
540
542
|
tradeRequestId: string | null;
|
|
541
543
|
tradeRequestUserId: string | null;
|
|
544
|
+
wantedAdId: string | null;
|
|
545
|
+
wantedAdUserId: string | null;
|
|
542
546
|
relistedFromListingId?: string;
|
|
543
547
|
preferences: Array<string>;
|
|
544
548
|
pending?: boolean;
|
|
@@ -243,6 +243,8 @@ export type ListingSummary = {
|
|
|
243
243
|
};
|
|
244
244
|
tradeRequestId: string | null;
|
|
245
245
|
tradeRequestUserId: string | null;
|
|
246
|
+
wantedAdId: string | null;
|
|
247
|
+
wantedAdUserId: string | null;
|
|
246
248
|
relistedFromListingId?: string;
|
|
247
249
|
preferences: Array<string>;
|
|
248
250
|
pending?: boolean;
|
|
@@ -247,6 +247,8 @@ export type SearchResultsBidSchema = {
|
|
|
247
247
|
};
|
|
248
248
|
tradeRequestId: string | null;
|
|
249
249
|
tradeRequestUserId: string | null;
|
|
250
|
+
wantedAdId: string | null;
|
|
251
|
+
wantedAdUserId: string | null;
|
|
250
252
|
relistedFromListingId?: string;
|
|
251
253
|
preferences: Array<string>;
|
|
252
254
|
pending?: boolean;
|
|
@@ -244,6 +244,8 @@ export type SearchResultsListingSchema = {
|
|
|
244
244
|
};
|
|
245
245
|
tradeRequestId: string | null;
|
|
246
246
|
tradeRequestUserId: string | null;
|
|
247
|
+
wantedAdId: string | null;
|
|
248
|
+
wantedAdUserId: string | null;
|
|
247
249
|
relistedFromListingId?: string;
|
|
248
250
|
preferences: Array<string>;
|
|
249
251
|
pending?: boolean;
|