@hectare/platform.clients.trading 1.1.184 → 1.1.186

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.
@@ -37,6 +37,7 @@ export type BidDetail = {
37
37
  lon: number;
38
38
  } | null;
39
39
  } | null;
40
+ email?: string | null;
40
41
  givenName: string | null;
41
42
  familyName: string | null;
42
43
  phone: {
@@ -34,6 +34,7 @@ export type ListingDetail = {
34
34
  lon: number;
35
35
  } | null;
36
36
  } | null;
37
+ email?: string | null;
37
38
  givenName: string | null;
38
39
  familyName: string | null;
39
40
  phone: {
@@ -332,6 +333,7 @@ export type ListingDetail = {
332
333
  lon: number;
333
334
  } | null;
334
335
  } | null;
336
+ email?: string | null;
335
337
  givenName: string | null;
336
338
  familyName: string | null;
337
339
  phone: {
@@ -34,6 +34,7 @@ export type ListingSummary = {
34
34
  lon: number;
35
35
  } | null;
36
36
  } | null;
37
+ email?: string | null;
37
38
  givenName: string | null;
38
39
  familyName: string | null;
39
40
  phone: {
@@ -7,6 +7,7 @@ export type PatchBid = {
7
7
  endDateUTC: string;
8
8
  type: 'date' | 'month';
9
9
  excludedDatesUTC?: Array<string> | null;
10
+ asAvailable?: boolean | null;
10
11
  };
11
12
  movement?: {
12
13
  months: Array<string>;
@@ -5,6 +5,7 @@ export type PatchBidOption = {
5
5
  endDateUTC: string;
6
6
  type: 'date' | 'month';
7
7
  excludedDatesUTC?: Array<string> | null;
8
+ asAvailable?: boolean | null;
8
9
  };
9
10
  movement?: {
10
11
  months: Array<string>;
@@ -38,6 +38,7 @@ export type SearchResultsBidSchema = {
38
38
  lon: number;
39
39
  } | null;
40
40
  } | null;
41
+ email?: string | null;
41
42
  givenName: string | null;
42
43
  familyName: string | null;
43
44
  phone: {
@@ -35,6 +35,7 @@ export type SearchResultsListingSchema = {
35
35
  lon: number;
36
36
  } | null;
37
37
  } | null;
38
+ email?: string | null;
38
39
  givenName: string | null;
39
40
  familyName: string | null;
40
41
  phone: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.184",
3
+ "version": "1.1.186",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",