@hectare/platform.clients.trading 1.1.61 → 1.1.63

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.
@@ -71,6 +71,7 @@ export type BidDetail = {
71
71
  details: {
72
72
  startDateUTC: string;
73
73
  endDateUTC: string | null;
74
+ reviewEndDateUTC: string | null;
74
75
  price: {
75
76
  amount: number;
76
77
  currency: string;
@@ -5,7 +5,7 @@ export type InsightsDailySpotPricesSchema = {
5
5
  price: {
6
6
  amount: number;
7
7
  currency: string;
8
- };
8
+ } | null;
9
9
  closeAtUtc?: string;
10
10
  diff: number;
11
11
  }>;
@@ -68,6 +68,7 @@ export type ListingDetail = {
68
68
  details: {
69
69
  startDateUTC: string;
70
70
  endDateUTC: string | null;
71
+ reviewEndDateUTC: string | null;
71
72
  price: {
72
73
  amount: number;
73
74
  currency: string;
@@ -308,6 +309,7 @@ export type ListingDetail = {
308
309
  details: {
309
310
  startDateUTC: string;
310
311
  endDateUTC: string | null;
312
+ reviewEndDateUTC: string | null;
311
313
  price: {
312
314
  amount: number;
313
315
  currency: string;
@@ -68,6 +68,7 @@ export type ListingSummary = {
68
68
  details: {
69
69
  startDateUTC: string;
70
70
  endDateUTC: string | null;
71
+ reviewEndDateUTC: string | null;
71
72
  price: {
72
73
  amount: number;
73
74
  currency: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.61",
3
+ "version": "1.1.63",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",