@hectare/platform.clients.trading 1.1.81 → 1.1.82
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 +2 -0
- 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;
|
|
@@ -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;
|