@hectare/platform.clients.trading 1.1.70 → 1.1.72

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.
@@ -5,7 +5,7 @@ export type BidDetail = {
5
5
  id: string;
6
6
  createdAtUTC: string;
7
7
  status: 'active' | 'closed' | 'traded';
8
- substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
8
+ substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
9
9
  business: {
10
10
  organisationId?: string;
11
11
  organisationCreatedAtUTC?: string;
@@ -73,6 +73,7 @@ export type BidDetail = {
73
73
  startDateUTC: string;
74
74
  endDateUTC: string | null;
75
75
  reviewEndDateUTC: string | null;
76
+ postReviewEndDateUTC: string | null;
76
77
  price: {
77
78
  amount: number;
78
79
  currency: string;
@@ -2,7 +2,7 @@ export type ListingDetail = {
2
2
  id: string;
3
3
  createdAtUTC: string;
4
4
  status: 'active' | 'closed' | 'traded';
5
- substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
5
+ substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
6
6
  business: {
7
7
  organisationId?: string;
8
8
  organisationCreatedAtUTC?: string;
@@ -70,6 +70,7 @@ export type ListingDetail = {
70
70
  startDateUTC: string;
71
71
  endDateUTC: string | null;
72
72
  reviewEndDateUTC: string | null;
73
+ postReviewEndDateUTC: string | null;
73
74
  price: {
74
75
  amount: number;
75
76
  currency: string;
@@ -244,7 +245,7 @@ export type ListingDetail = {
244
245
  id: string;
245
246
  createdAtUTC: string;
246
247
  status: 'active' | 'closed' | 'traded';
247
- substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
248
+ substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
248
249
  business: {
249
250
  organisationId?: string;
250
251
  organisationCreatedAtUTC?: string;
@@ -312,6 +313,7 @@ export type ListingDetail = {
312
313
  startDateUTC: string;
313
314
  endDateUTC: string | null;
314
315
  reviewEndDateUTC: string | null;
316
+ postReviewEndDateUTC: string | null;
315
317
  price: {
316
318
  amount: number;
317
319
  currency: string;
@@ -2,7 +2,7 @@ export type ListingSummary = {
2
2
  id: string;
3
3
  createdAtUTC: string;
4
4
  status: 'active' | 'closed' | 'traded';
5
- substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
5
+ substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
6
6
  business: {
7
7
  organisationId?: string;
8
8
  organisationCreatedAtUTC?: string;
@@ -70,6 +70,7 @@ export type ListingSummary = {
70
70
  startDateUTC: string;
71
71
  endDateUTC: string | null;
72
72
  reviewEndDateUTC: string | null;
73
+ postReviewEndDateUTC: string | null;
73
74
  price: {
74
75
  amount: number;
75
76
  currency: string;
@@ -1,3 +1,3 @@
1
1
  export type PatchListingSubstatusSchema = {
2
- substatus: 'scheduled' | 'open' | 'in-review';
2
+ substatus: 'scheduled' | 'open' | 'in-review' | 'post-review';
3
3
  };
@@ -59,7 +59,6 @@ export type TradingConfig = {
59
59
  };
60
60
  seamlessTrading?: {
61
61
  openPeriodMinutes: number;
62
- reviewPeriodMinutes: number | null;
63
- bidExpiryMinutes: number | null;
62
+ reviewPeriodMinutes: number;
64
63
  };
65
64
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.70",
3
+ "version": "1.1.72",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",