@hectare/platform.clients.trading 1.1.50 → 1.1.52

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.
@@ -196,7 +196,6 @@ export type BidDetail = {
196
196
  tradeRequestId?: string;
197
197
  relistedFromListingId?: string;
198
198
  pending?: boolean;
199
- requiresContract?: boolean;
200
199
  };
201
200
  userId: string;
202
201
  userFullName: string;
@@ -410,4 +409,5 @@ export type BidDetail = {
410
409
  familyName: string;
411
410
  givenName: string;
412
411
  };
412
+ requiresContract: boolean;
413
413
  };
@@ -1,18 +1,15 @@
1
1
  export type InsightPrices = {
2
- contractTerm: string;
2
+ contractTerm: string | null;
3
3
  created: string;
4
- pricePerUnit: number;
5
- currency: string;
4
+ pricePerUnit: number | null;
5
+ priceCurrency: string | null;
6
6
  movementMonth: number;
7
7
  movementYear: number;
8
8
  category: string;
9
9
  group: string;
10
- targetPrice: number;
11
- priceCurrency: string;
12
- bidsMinAmount: number;
13
- bidsMaxAmount: number;
14
- spread: number;
15
- region?: string;
16
- countryIso?: string;
17
- bidOptionStatus: string;
10
+ spread: number | null;
11
+ region: string;
12
+ country: string;
13
+ termsHaulageType: string | null;
14
+ bidOptionStatus: string | null;
18
15
  };
@@ -193,7 +193,6 @@ export type ListingDetail = {
193
193
  tradeRequestId?: string;
194
194
  relistedFromListingId?: string;
195
195
  pending?: boolean;
196
- requiresContract?: boolean;
197
196
  marketBuyers: Array<{
198
197
  authPlatformId?: string;
199
198
  emailAddress?: string;
@@ -434,7 +433,6 @@ export type ListingDetail = {
434
433
  tradeRequestId?: string;
435
434
  relistedFromListingId?: string;
436
435
  pending?: boolean;
437
- requiresContract?: boolean;
438
436
  };
439
437
  userId: string;
440
438
  userFullName: string;
@@ -648,5 +646,6 @@ export type ListingDetail = {
648
646
  familyName: string;
649
647
  givenName: string;
650
648
  };
649
+ requiresContract: boolean;
651
650
  }>;
652
651
  };
@@ -193,5 +193,4 @@ export type ListingSummary = {
193
193
  tradeRequestId?: string;
194
194
  relistedFromListingId?: string;
195
195
  pending?: boolean;
196
- requiresContract?: boolean;
197
196
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.50",
3
+ "version": "1.1.52",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",