@hectare/platform.clients.trading 1.1.234 → 1.1.235

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