@hectare/platform.clients.trading 1.1.233 → 1.1.234

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.
@@ -230,6 +230,7 @@ export type BidDetail = {
230
230
  } | null;
231
231
  soldWeight: number | null;
232
232
  bids: Record<string, {
233
+ organisationId: string;
233
234
  userId: string;
234
235
  userFullName: string;
235
236
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
@@ -329,6 +329,7 @@ export type ContractDetail = {
329
329
  } | null;
330
330
  soldWeight: number | null;
331
331
  bids: Record<string, {
332
+ organisationId: string;
332
333
  userId: string;
333
334
  userFullName: string;
334
335
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
@@ -1,4 +1,5 @@
1
1
  export type ListingBidInfoBid = {
2
+ organisationId: string;
2
3
  userId: string;
3
4
  userFullName: string;
4
5
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
@@ -227,6 +227,7 @@ export type ListingDetail = {
227
227
  } | null;
228
228
  soldWeight: number | null;
229
229
  bids: Record<string, {
230
+ organisationId: string;
230
231
  userId: string;
231
232
  userFullName: string;
232
233
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
@@ -531,6 +532,7 @@ export type ListingDetail = {
531
532
  } | null;
532
533
  soldWeight: number | null;
533
534
  bids: Record<string, {
535
+ organisationId: string;
534
536
  userId: string;
535
537
  userFullName: string;
536
538
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
@@ -227,6 +227,7 @@ export type ListingSummary = {
227
227
  } | null;
228
228
  soldWeight: number | null;
229
229
  bids: Record<string, {
230
+ organisationId: string;
230
231
  userId: string;
231
232
  userFullName: string;
232
233
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
@@ -231,6 +231,7 @@ export type SearchResultsBidSchema = {
231
231
  } | null;
232
232
  soldWeight: number | null;
233
233
  bids: Record<string, {
234
+ organisationId: string;
234
235
  userId: string;
235
236
  userFullName: string;
236
237
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
@@ -228,6 +228,7 @@ export type SearchResultsListingSchema = {
228
228
  } | null;
229
229
  soldWeight: number | null;
230
230
  bids: Record<string, {
231
+ organisationId: string;
231
232
  userId: string;
232
233
  userFullName: string;
233
234
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.233",
3
+ "version": "1.1.234",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",