@hectare/platform.clients.trading 1.1.167 → 1.1.169

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.
@@ -243,7 +243,8 @@ export type BidDetail = {
243
243
  updatedAtUTC: string;
244
244
  }>;
245
245
  };
246
- tradeRequestId?: string;
246
+ tradeRequestId: string | null;
247
+ tradeRequestUserId: string | null;
247
248
  relistedFromListingId?: string;
248
249
  preferences: Array<string>;
249
250
  pending?: boolean;
@@ -4,6 +4,7 @@ export type InventorySummarySchema = {
4
4
  commodityId: number;
5
5
  commodityTypeId: number;
6
6
  commodityGradeId: number;
7
+ tagsIds: Array<number>;
7
8
  businessUnitName: string;
8
9
  harvestYear: string;
9
10
  commodity: string;
@@ -240,7 +240,8 @@ export type ListingDetail = {
240
240
  updatedAtUTC: string;
241
241
  }>;
242
242
  };
243
- tradeRequestId?: string;
243
+ tradeRequestId?: string | null;
244
+ tradeRequestUserId?: string | null;
244
245
  relistedFromListingId?: string;
245
246
  preferences: Array<string>;
246
247
  pending?: boolean;
@@ -533,7 +534,8 @@ export type ListingDetail = {
533
534
  updatedAtUTC: string;
534
535
  }>;
535
536
  };
536
- tradeRequestId?: string;
537
+ tradeRequestId: string | null;
538
+ tradeRequestUserId: string | null;
537
539
  relistedFromListingId?: string;
538
540
  preferences: Array<string>;
539
541
  pending?: boolean;
@@ -240,7 +240,8 @@ export type ListingSummary = {
240
240
  updatedAtUTC: string;
241
241
  }>;
242
242
  };
243
- tradeRequestId?: string;
243
+ tradeRequestId: string | null;
244
+ tradeRequestUserId: string | null;
244
245
  relistedFromListingId?: string;
245
246
  preferences: Array<string>;
246
247
  pending?: boolean;
@@ -244,7 +244,8 @@ export type SearchResultsBidSchema = {
244
244
  updatedAtUTC: string;
245
245
  }>;
246
246
  };
247
- tradeRequestId?: string;
247
+ tradeRequestId: string | null;
248
+ tradeRequestUserId: string | null;
248
249
  relistedFromListingId?: string;
249
250
  preferences: Array<string>;
250
251
  pending?: boolean;
@@ -241,7 +241,8 @@ export type SearchResultsListingSchema = {
241
241
  updatedAtUTC: string;
242
242
  }>;
243
243
  };
244
- tradeRequestId?: string;
244
+ tradeRequestId: string | null;
245
+ tradeRequestUserId: string | null;
245
246
  relistedFromListingId?: string;
246
247
  preferences: Array<string>;
247
248
  pending?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.167",
3
+ "version": "1.1.169",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",