@hectare/platform.clients.trading 1.1.179 → 1.1.181
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/CreateListing.d.ts +1 -0
- package/models/ListingDetail.d.ts +4 -0
- package/models/ListingSummary.d.ts +2 -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 +2 -0
- package/models/SearchResultsListingSchema.d.ts +2 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export type BidDetail = {
|
|
|
43
43
|
callingCode: string;
|
|
44
44
|
number: string;
|
|
45
45
|
};
|
|
46
|
+
type: 'collection' | 'business' | 'delivery' | 'business-collection';
|
|
46
47
|
} | null;
|
|
47
48
|
id?: string;
|
|
48
49
|
name: string;
|
|
@@ -258,6 +259,7 @@ export type BidDetail = {
|
|
|
258
259
|
amount: number;
|
|
259
260
|
currency: string;
|
|
260
261
|
} | null;
|
|
262
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
261
263
|
sellerListingReasonIds: Array<number> | null;
|
|
262
264
|
sellerListingReasonDetail: string | null;
|
|
263
265
|
} | null;
|
|
@@ -40,6 +40,7 @@ export type ListingDetail = {
|
|
|
40
40
|
callingCode: string;
|
|
41
41
|
number: string;
|
|
42
42
|
};
|
|
43
|
+
type: 'collection' | 'business' | 'delivery' | 'business-collection';
|
|
43
44
|
} | null;
|
|
44
45
|
id?: string;
|
|
45
46
|
name: string;
|
|
@@ -255,6 +256,7 @@ export type ListingDetail = {
|
|
|
255
256
|
amount: number;
|
|
256
257
|
currency: string;
|
|
257
258
|
} | null;
|
|
259
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
258
260
|
sellerListingReasonIds: Array<number> | null;
|
|
259
261
|
sellerListingReasonDetail: string | null;
|
|
260
262
|
} | null;
|
|
@@ -334,6 +336,7 @@ export type ListingDetail = {
|
|
|
334
336
|
callingCode: string;
|
|
335
337
|
number: string;
|
|
336
338
|
};
|
|
339
|
+
type: 'collection' | 'business' | 'delivery' | 'business-collection';
|
|
337
340
|
} | null;
|
|
338
341
|
id?: string;
|
|
339
342
|
name: string;
|
|
@@ -549,6 +552,7 @@ export type ListingDetail = {
|
|
|
549
552
|
amount: number;
|
|
550
553
|
currency: string;
|
|
551
554
|
} | null;
|
|
555
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
552
556
|
sellerListingReasonIds: Array<number> | null;
|
|
553
557
|
sellerListingReasonDetail: string | null;
|
|
554
558
|
} | null;
|
|
@@ -40,6 +40,7 @@ export type ListingSummary = {
|
|
|
40
40
|
callingCode: string;
|
|
41
41
|
number: string;
|
|
42
42
|
};
|
|
43
|
+
type: 'collection' | 'business' | 'delivery' | 'business-collection';
|
|
43
44
|
} | null;
|
|
44
45
|
id?: string;
|
|
45
46
|
name: string;
|
|
@@ -255,6 +256,7 @@ export type ListingSummary = {
|
|
|
255
256
|
amount: number;
|
|
256
257
|
currency: string;
|
|
257
258
|
} | null;
|
|
259
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
258
260
|
sellerListingReasonIds: Array<number> | null;
|
|
259
261
|
sellerListingReasonDetail: string | null;
|
|
260
262
|
} | 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?: {
|
|
@@ -44,6 +44,7 @@ export type SearchResultsBidSchema = {
|
|
|
44
44
|
callingCode: string;
|
|
45
45
|
number: string;
|
|
46
46
|
};
|
|
47
|
+
type: 'collection' | 'business' | 'delivery' | 'business-collection';
|
|
47
48
|
} | null;
|
|
48
49
|
id?: string;
|
|
49
50
|
name: string;
|
|
@@ -259,6 +260,7 @@ export type SearchResultsBidSchema = {
|
|
|
259
260
|
amount: number;
|
|
260
261
|
currency: string;
|
|
261
262
|
} | null;
|
|
263
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
262
264
|
sellerListingReasonIds: Array<number> | null;
|
|
263
265
|
sellerListingReasonDetail: string | null;
|
|
264
266
|
} | null;
|
|
@@ -41,6 +41,7 @@ export type SearchResultsListingSchema = {
|
|
|
41
41
|
callingCode: string;
|
|
42
42
|
number: string;
|
|
43
43
|
};
|
|
44
|
+
type: 'collection' | 'business' | 'delivery' | 'business-collection';
|
|
44
45
|
} | null;
|
|
45
46
|
id?: string;
|
|
46
47
|
name: string;
|
|
@@ -256,6 +257,7 @@ export type SearchResultsListingSchema = {
|
|
|
256
257
|
amount: number;
|
|
257
258
|
currency: string;
|
|
258
259
|
} | null;
|
|
260
|
+
sellerTargetPriceAutoOpen: boolean | null;
|
|
259
261
|
sellerListingReasonIds: Array<number> | null;
|
|
260
262
|
sellerListingReasonDetail: string | null;
|
|
261
263
|
} | null;
|