@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.
- package/models/BidDetail.d.ts +1 -1
- package/models/ContractDetail.d.ts +1 -1
- package/models/ListingBidInfoBid.d.ts +1 -1
- package/models/ListingDetail.d.ts +2 -2
- package/models/ListingSummary.d.ts +1 -1
- package/models/SearchResultsBidSchema.d.ts +1 -1
- package/models/SearchResultsListingSchema.d.ts +1 -1
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -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';
|
|
@@ -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';
|