@hectare/platform.clients.trading 1.1.175 → 1.1.177

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.
@@ -266,14 +266,12 @@ export type BidDetail = {
266
266
  business: {
267
267
  id: string | null;
268
268
  name: string | null;
269
- companyNumber: string | null;
270
- vatNumber: string | null;
271
269
  vetted: boolean;
272
270
  organisationId: string;
273
271
  organisationName: string;
274
272
  createdAtUTC: string;
275
273
  logo: string | null;
276
- location: {
274
+ location?: {
277
275
  what3words: string | null;
278
276
  address: {
279
277
  name?: string | null;
@@ -292,6 +290,9 @@ export type BidDetail = {
292
290
  lon: number;
293
291
  } | null;
294
292
  } | null;
293
+ bio?: string | null;
294
+ companyNumber?: string | null;
295
+ vatNumber?: string | null;
295
296
  };
296
297
  userId: string;
297
298
  userFullName?: string;
@@ -12,4 +12,5 @@ export type InsightPrices = {
12
12
  country: string;
13
13
  termsHaulageType: string | null;
14
14
  bidOptionStatus: string | null;
15
+ harvestYear: string | null;
15
16
  };
@@ -557,14 +557,12 @@ export type ListingDetail = {
557
557
  business: {
558
558
  id: string | null;
559
559
  name: string | null;
560
- companyNumber: string | null;
561
- vatNumber: string | null;
562
560
  vetted: boolean;
563
561
  organisationId: string;
564
562
  organisationName: string;
565
563
  createdAtUTC: string;
566
564
  logo: string | null;
567
- location: {
565
+ location?: {
568
566
  what3words: string | null;
569
567
  address: {
570
568
  name?: string | null;
@@ -583,6 +581,9 @@ export type ListingDetail = {
583
581
  lon: number;
584
582
  } | null;
585
583
  } | null;
584
+ bio?: string | null;
585
+ companyNumber?: string | null;
586
+ vatNumber?: string | null;
586
587
  };
587
588
  userId: string;
588
589
  userFullName?: string;
@@ -267,14 +267,12 @@ export type SearchResultsBidSchema = {
267
267
  business: {
268
268
  id: string | null;
269
269
  name: string | null;
270
- companyNumber: string | null;
271
- vatNumber: string | null;
272
270
  vetted: boolean;
273
271
  organisationId: string;
274
272
  organisationName: string;
275
273
  createdAtUTC: string;
276
274
  logo: string | null;
277
- location: {
275
+ location?: {
278
276
  what3words: string | null;
279
277
  address: {
280
278
  name?: string | null;
@@ -293,6 +291,9 @@ export type SearchResultsBidSchema = {
293
291
  lon: number;
294
292
  } | null;
295
293
  } | null;
294
+ bio?: string | null;
295
+ companyNumber?: string | null;
296
+ vatNumber?: string | null;
296
297
  };
297
298
  userId: string;
298
299
  userFullName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.175",
3
+ "version": "1.1.177",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",