@hectare/platform.clients.trading 1.1.44 → 1.1.45

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.
@@ -39,6 +39,25 @@ export type BidDetail = {
39
39
  lon: number;
40
40
  } | null;
41
41
  } | null;
42
+ collectionLocation?: {
43
+ what3words: string | null;
44
+ address: {
45
+ name?: string | null;
46
+ line1: string;
47
+ line2?: string | null;
48
+ line3?: string | null;
49
+ city?: string | null;
50
+ region?: string | null;
51
+ regionISO?: string | null;
52
+ postcode: string;
53
+ countryName?: string | null;
54
+ countryISO: 'GB' | 'US' | 'ZA' | 'FR';
55
+ };
56
+ coordinates: {
57
+ lat: number;
58
+ lon: number;
59
+ } | null;
60
+ } | null;
42
61
  holdingNumber?: string;
43
62
  assuranceScheme?: 'RT' | 'SQC';
44
63
  assuranceId?: string;
@@ -36,6 +36,25 @@ export type ListingDetail = {
36
36
  lon: number;
37
37
  } | null;
38
38
  } | null;
39
+ collectionLocation?: {
40
+ what3words: string | null;
41
+ address: {
42
+ name?: string | null;
43
+ line1: string;
44
+ line2?: string | null;
45
+ line3?: string | null;
46
+ city?: string | null;
47
+ region?: string | null;
48
+ regionISO?: string | null;
49
+ postcode: string;
50
+ countryName?: string | null;
51
+ countryISO: 'GB' | 'US' | 'ZA' | 'FR';
52
+ };
53
+ coordinates: {
54
+ lat: number;
55
+ lon: number;
56
+ } | null;
57
+ } | null;
39
58
  holdingNumber?: string;
40
59
  assuranceScheme?: 'RT' | 'SQC';
41
60
  assuranceId?: string;
@@ -251,6 +270,25 @@ export type ListingDetail = {
251
270
  lon: number;
252
271
  } | null;
253
272
  } | null;
273
+ collectionLocation?: {
274
+ what3words: string | null;
275
+ address: {
276
+ name?: string | null;
277
+ line1: string;
278
+ line2?: string | null;
279
+ line3?: string | null;
280
+ city?: string | null;
281
+ region?: string | null;
282
+ regionISO?: string | null;
283
+ postcode: string;
284
+ countryName?: string | null;
285
+ countryISO: 'GB' | 'US' | 'ZA' | 'FR';
286
+ };
287
+ coordinates: {
288
+ lat: number;
289
+ lon: number;
290
+ } | null;
291
+ } | null;
254
292
  holdingNumber?: string;
255
293
  assuranceScheme?: 'RT' | 'SQC';
256
294
  assuranceId?: string;
@@ -36,6 +36,25 @@ export type ListingSummary = {
36
36
  lon: number;
37
37
  } | null;
38
38
  } | null;
39
+ collectionLocation?: {
40
+ what3words: string | null;
41
+ address: {
42
+ name?: string | null;
43
+ line1: string;
44
+ line2?: string | null;
45
+ line3?: string | null;
46
+ city?: string | null;
47
+ region?: string | null;
48
+ regionISO?: string | null;
49
+ postcode: string;
50
+ countryName?: string | null;
51
+ countryISO: 'GB' | 'US' | 'ZA' | 'FR';
52
+ };
53
+ coordinates: {
54
+ lat: number;
55
+ lon: number;
56
+ } | null;
57
+ } | null;
39
58
  holdingNumber?: string;
40
59
  assuranceScheme?: 'RT' | 'SQC';
41
60
  assuranceId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.44",
3
+ "version": "1.1.45",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",