@hectare/platform.clients.trading 1.1.179 → 1.1.180
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/CreateListing.d.ts +1 -0
- package/models/ListingDetail.d.ts +2 -0
- package/models/ListingSummary.d.ts +1 -0
- package/models/MarketingPlanDetailSchema.d.ts +4 -0
- package/models/MarketingPlanSearchResultsSchema.d.ts +4 -0
- package/models/MarketingPlanSummarySchema.d.ts +4 -0
- package/models/PatchListingSchema.d.ts +1 -0
- package/models/PatchMarketingPlanScheduleSchema.d.ts +4 -0
- package/models/SearchResultsBidSchema.d.ts +1 -0
- package/models/SearchResultsListingSchema.d.ts +1 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -255,6 +255,7 @@ export type ListingDetail = {
|
|
|
255
255
|
amount: number;
|
|
256
256
|
currency: string;
|
|
257
257
|
} | null;
|
|
258
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
258
259
|
sellerListingReasonIds: Array<number> | null;
|
|
259
260
|
sellerListingReasonDetail: string | null;
|
|
260
261
|
} | null;
|
|
@@ -549,6 +550,7 @@ export type ListingDetail = {
|
|
|
549
550
|
amount: number;
|
|
550
551
|
currency: string;
|
|
551
552
|
} | null;
|
|
553
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
552
554
|
sellerListingReasonIds: Array<number> | null;
|
|
553
555
|
sellerListingReasonDetail: string | null;
|
|
554
556
|
} | null;
|
|
@@ -132,6 +132,10 @@ export type MarketingPlanDetailSchema = {
|
|
|
132
132
|
deadlineId?: number;
|
|
133
133
|
minWeight?: number;
|
|
134
134
|
maxWeight?: number;
|
|
135
|
+
targetPrice?: {
|
|
136
|
+
amount: number;
|
|
137
|
+
currency: string;
|
|
138
|
+
} | null;
|
|
135
139
|
reviewDateUTC?: string;
|
|
136
140
|
listingId?: string;
|
|
137
141
|
weight?: {
|
|
@@ -133,6 +133,10 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
133
133
|
deadlineId?: number;
|
|
134
134
|
minWeight?: number;
|
|
135
135
|
maxWeight?: number;
|
|
136
|
+
targetPrice?: {
|
|
137
|
+
amount: number;
|
|
138
|
+
currency: string;
|
|
139
|
+
} | null;
|
|
136
140
|
reviewDateUTC?: string;
|
|
137
141
|
listingId?: string;
|
|
138
142
|
weight?: {
|
|
@@ -132,6 +132,10 @@ export type MarketingPlanSummarySchema = {
|
|
|
132
132
|
deadlineId?: number;
|
|
133
133
|
minWeight?: number;
|
|
134
134
|
maxWeight?: number;
|
|
135
|
+
targetPrice?: {
|
|
136
|
+
amount: number;
|
|
137
|
+
currency: string;
|
|
138
|
+
} | null;
|
|
135
139
|
reviewDateUTC?: string;
|
|
136
140
|
listingId?: string;
|
|
137
141
|
weight?: {
|
|
@@ -256,6 +256,7 @@ export type SearchResultsListingSchema = {
|
|
|
256
256
|
amount: number;
|
|
257
257
|
currency: string;
|
|
258
258
|
} | null;
|
|
259
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
259
260
|
sellerListingReasonIds: Array<number> | null;
|
|
260
261
|
sellerListingReasonDetail: string | null;
|
|
261
262
|
} | null;
|