@hectare/platform.clients.trading 1.1.50 → 1.1.51
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
CHANGED
|
@@ -196,7 +196,6 @@ export type BidDetail = {
|
|
|
196
196
|
tradeRequestId?: string;
|
|
197
197
|
relistedFromListingId?: string;
|
|
198
198
|
pending?: boolean;
|
|
199
|
-
requiresContract?: boolean;
|
|
200
199
|
};
|
|
201
200
|
userId: string;
|
|
202
201
|
userFullName: string;
|
|
@@ -410,4 +409,5 @@ export type BidDetail = {
|
|
|
410
409
|
familyName: string;
|
|
411
410
|
givenName: string;
|
|
412
411
|
};
|
|
412
|
+
requiresContract: boolean;
|
|
413
413
|
};
|
|
@@ -193,7 +193,6 @@ export type ListingDetail = {
|
|
|
193
193
|
tradeRequestId?: string;
|
|
194
194
|
relistedFromListingId?: string;
|
|
195
195
|
pending?: boolean;
|
|
196
|
-
requiresContract?: boolean;
|
|
197
196
|
marketBuyers: Array<{
|
|
198
197
|
authPlatformId?: string;
|
|
199
198
|
emailAddress?: string;
|
|
@@ -434,7 +433,6 @@ export type ListingDetail = {
|
|
|
434
433
|
tradeRequestId?: string;
|
|
435
434
|
relistedFromListingId?: string;
|
|
436
435
|
pending?: boolean;
|
|
437
|
-
requiresContract?: boolean;
|
|
438
436
|
};
|
|
439
437
|
userId: string;
|
|
440
438
|
userFullName: string;
|
|
@@ -648,5 +646,6 @@ export type ListingDetail = {
|
|
|
648
646
|
familyName: string;
|
|
649
647
|
givenName: string;
|
|
650
648
|
};
|
|
649
|
+
requiresContract: boolean;
|
|
651
650
|
}>;
|
|
652
651
|
};
|