@hectare/platform.clients.trading 1.1.225 → 1.1.226

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.
@@ -6,6 +6,7 @@ export type BidDetail = {
6
6
  createdAtUTC: string;
7
7
  status: 'active' | 'closed' | 'traded';
8
8
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
9
+ tradingStatus?: 'with-buyers' | 'scheduled' | 'review' | 'request-trade' | 'expired' | 'no-offers' | 'traded' | 'not-traded';
9
10
  business: {
10
11
  organisationId: string;
11
12
  organisationCreatedAtUTC?: string;
@@ -3,6 +3,7 @@ export type ListingDetail = {
3
3
  createdAtUTC: string;
4
4
  status: 'active' | 'closed' | 'traded';
5
5
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
6
+ tradingStatus?: 'with-buyers' | 'scheduled' | 'review' | 'request-trade' | 'expired' | 'no-offers' | 'traded' | 'not-traded';
6
7
  business: {
7
8
  organisationId: string;
8
9
  organisationCreatedAtUTC?: string;
@@ -304,6 +305,7 @@ export type ListingDetail = {
304
305
  createdAtUTC: string;
305
306
  status: 'active' | 'closed' | 'traded';
306
307
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
308
+ tradingStatus?: 'with-buyers' | 'scheduled' | 'review' | 'request-trade' | 'expired' | 'no-offers' | 'traded' | 'not-traded';
307
309
  business: {
308
310
  organisationId: string;
309
311
  organisationCreatedAtUTC?: string;
@@ -3,6 +3,7 @@ export type ListingSummary = {
3
3
  createdAtUTC: string;
4
4
  status: 'active' | 'closed' | 'traded';
5
5
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
6
+ tradingStatus?: 'with-buyers' | 'scheduled' | 'review' | 'request-trade' | 'expired' | 'no-offers' | 'traded' | 'not-traded';
6
7
  business: {
7
8
  organisationId: string;
8
9
  organisationCreatedAtUTC?: string;
@@ -7,6 +7,7 @@ export type SearchResultsBidSchema = {
7
7
  createdAtUTC: string;
8
8
  status: 'active' | 'closed' | 'traded';
9
9
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
10
+ tradingStatus?: 'with-buyers' | 'scheduled' | 'review' | 'request-trade' | 'expired' | 'no-offers' | 'traded' | 'not-traded';
10
11
  business: {
11
12
  organisationId: string;
12
13
  organisationCreatedAtUTC?: string;
@@ -4,6 +4,7 @@ export type SearchResultsListingSchema = {
4
4
  createdAtUTC: string;
5
5
  status: 'active' | 'closed' | 'traded';
6
6
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
7
+ tradingStatus?: 'with-buyers' | 'scheduled' | 'review' | 'request-trade' | 'expired' | 'no-offers' | 'traded' | 'not-traded';
7
8
  business: {
8
9
  organisationId: string;
9
10
  organisationCreatedAtUTC?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.225",
3
+ "version": "1.1.226",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",