@hectare/platform.clients.trading 1.1.46 → 1.1.48

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,13 @@ export type BidDetail = {
39
39
  lon: number;
40
40
  } | null;
41
41
  } | null;
42
+ assurance?: {
43
+ id: string | null;
44
+ key?: string | null;
45
+ body: 'RT' | 'SQC';
46
+ location?: string | null;
47
+ } | null;
48
+ holdingNumber?: string;
42
49
  collectionLocation?: {
43
50
  what3words: string | null;
44
51
  address: {
@@ -58,7 +65,6 @@ export type BidDetail = {
58
65
  lon: number;
59
66
  } | null;
60
67
  } | null;
61
- holdingNumber?: string;
62
68
  assuranceScheme?: 'RT' | 'SQC';
63
69
  assuranceId?: string;
64
70
  };
@@ -201,6 +201,8 @@ export type ContractDetail = {
201
201
  };
202
202
  buyer: {
203
203
  id?: string;
204
+ businessId?: string;
205
+ businessUnitId?: string;
204
206
  createdAtUTC?: string;
205
207
  name?: string;
206
208
  location?: {
@@ -270,6 +272,12 @@ export type ContractDetail = {
270
272
  vetted?: boolean;
271
273
  rejected?: boolean;
272
274
  isMerchant?: boolean;
275
+ assurance?: {
276
+ id: string | null;
277
+ key?: string | null;
278
+ body: 'RT' | 'SQC';
279
+ location?: string | null;
280
+ } | null;
273
281
  assuranceId?: string;
274
282
  assuranceScheme?: 'RT' | 'SQC';
275
283
  advancePay?: {
@@ -36,6 +36,13 @@ export type ListingDetail = {
36
36
  lon: number;
37
37
  } | null;
38
38
  } | null;
39
+ assurance?: {
40
+ id: string | null;
41
+ key?: string | null;
42
+ body: 'RT' | 'SQC';
43
+ location?: string | null;
44
+ } | null;
45
+ holdingNumber?: string;
39
46
  collectionLocation?: {
40
47
  what3words: string | null;
41
48
  address: {
@@ -55,7 +62,6 @@ export type ListingDetail = {
55
62
  lon: number;
56
63
  } | null;
57
64
  } | null;
58
- holdingNumber?: string;
59
65
  assuranceScheme?: 'RT' | 'SQC';
60
66
  assuranceId?: string;
61
67
  };
@@ -270,6 +276,13 @@ export type ListingDetail = {
270
276
  lon: number;
271
277
  } | null;
272
278
  } | null;
279
+ assurance?: {
280
+ id: string | null;
281
+ key?: string | null;
282
+ body: 'RT' | 'SQC';
283
+ location?: string | null;
284
+ } | null;
285
+ holdingNumber?: string;
273
286
  collectionLocation?: {
274
287
  what3words: string | null;
275
288
  address: {
@@ -289,7 +302,6 @@ export type ListingDetail = {
289
302
  lon: number;
290
303
  } | null;
291
304
  } | null;
292
- holdingNumber?: string;
293
305
  assuranceScheme?: 'RT' | 'SQC';
294
306
  assuranceId?: string;
295
307
  };
@@ -36,6 +36,13 @@ export type ListingSummary = {
36
36
  lon: number;
37
37
  } | null;
38
38
  } | null;
39
+ assurance?: {
40
+ id: string | null;
41
+ key?: string | null;
42
+ body: 'RT' | 'SQC';
43
+ location?: string | null;
44
+ } | null;
45
+ holdingNumber?: string;
39
46
  collectionLocation?: {
40
47
  what3words: string | null;
41
48
  address: {
@@ -55,7 +62,6 @@ export type ListingSummary = {
55
62
  lon: number;
56
63
  } | null;
57
64
  } | null;
58
- holdingNumber?: string;
59
65
  assuranceScheme?: 'RT' | 'SQC';
60
66
  assuranceId?: string;
61
67
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.46",
3
+ "version": "1.1.48",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",