@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.
@@ -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;
@@ -76,6 +76,7 @@ export type CreateListing = {
76
76
  amount: number;
77
77
  currency: string;
78
78
  } | null;
79
+ sellerTargetPriceAutoOpen?: boolean | null;
79
80
  sellerListingReasonIds: Array<number> | null;
80
81
  sellerListingReasonDetail: string | null;
81
82
  } | 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?: {
@@ -64,6 +64,7 @@ export type PatchListingSchema = {
64
64
  amount: number;
65
65
  currency: string;
66
66
  } | null;
67
+ sellerTargetPriceAutoOpen?: boolean | null;
67
68
  sellerListingReasonIds?: Array<number> | null;
68
69
  sellerListingReasonDetail?: string | null;
69
70
  note?: string;
@@ -6,6 +6,10 @@ export type PatchMarketingPlanScheduleSchema = {
6
6
  weight: number;
7
7
  minWeight: number;
8
8
  maxWeight: number;
9
+ targetPrice: {
10
+ amount: number;
11
+ currency: string;
12
+ } | null;
9
13
  movement: {
10
14
  months: Array<string>;
11
15
  asAvailable: boolean | null;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.179",
3
+ "version": "1.1.181",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",