@hectare/platform.clients.trading 1.1.45 → 1.1.47

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
  };
@@ -270,6 +270,12 @@ export type ContractDetail = {
270
270
  vetted?: boolean;
271
271
  rejected?: boolean;
272
272
  isMerchant?: boolean;
273
+ assurance?: {
274
+ id: string | null;
275
+ key?: string | null;
276
+ body: 'RT' | 'SQC';
277
+ location?: string | null;
278
+ } | null;
273
279
  assuranceId?: string;
274
280
  assuranceScheme?: 'RT' | 'SQC';
275
281
  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
  };
@@ -1,7 +1,7 @@
1
1
  export type TradingConfig = {
2
2
  id: string;
3
3
  lastSmlSyncUTC: string;
4
- livestockFilterOrder: Array<string>;
4
+ smlFilterOrder: Array<string>;
5
5
  settlementDeductionReasons: Array<{
6
6
  id: number;
7
7
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.45",
3
+ "version": "1.1.47",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",