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