@hectare/platform.clients.trading 1.1.81 → 1.1.83
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/CreateBid.d.ts +1 -0
- package/models/CreateListing.d.ts +1 -0
- package/models/CreateTradeRequest.d.ts +1 -0
- package/models/ListingDetail.d.ts +4 -2
- package/models/ListingSummary.d.ts +1 -0
- package/models/SearchResultsListingSchema.d.ts +1 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
package/models/CreateBid.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ export type ListingDetail = {
|
|
|
79
79
|
startDateUTC: string;
|
|
80
80
|
endDateUTC: string;
|
|
81
81
|
type: 'date' | 'month';
|
|
82
|
+
excludedDatesUTC?: Array<string> | null;
|
|
82
83
|
asAvailable?: boolean | null;
|
|
83
84
|
};
|
|
84
85
|
buyerNotes: string | null;
|
|
@@ -211,7 +212,7 @@ export type ListingDetail = {
|
|
|
211
212
|
sellerListingReasonIds: Array<number> | null;
|
|
212
213
|
sellerListingReasonDetail: string | null;
|
|
213
214
|
} | null;
|
|
214
|
-
marketBuyers
|
|
215
|
+
marketBuyers?: Array<{
|
|
215
216
|
authPlatformId?: string;
|
|
216
217
|
emailAddress?: string;
|
|
217
218
|
fullName?: string;
|
|
@@ -223,7 +224,7 @@ export type ListingDetail = {
|
|
|
223
224
|
organisationName?: string | null;
|
|
224
225
|
userId: string;
|
|
225
226
|
}> | null;
|
|
226
|
-
bidAlerts
|
|
227
|
+
bidAlerts?: Array<{
|
|
227
228
|
authPlatformId?: string;
|
|
228
229
|
emailAddress?: string;
|
|
229
230
|
fullName?: string;
|
|
@@ -337,6 +338,7 @@ export type ListingDetail = {
|
|
|
337
338
|
startDateUTC: string;
|
|
338
339
|
endDateUTC: string;
|
|
339
340
|
type: 'date' | 'month';
|
|
341
|
+
excludedDatesUTC?: Array<string> | null;
|
|
340
342
|
asAvailable?: boolean | null;
|
|
341
343
|
};
|
|
342
344
|
buyerNotes: string | null;
|