@hectare/platform.clients.trading 1.1.48 → 1.1.50
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/index.d.ts +2 -0
- package/models/BidDetail.d.ts +1 -0
- package/models/InsightsDailySpotPricesByDateRangeSchema.d.ts +7 -0
- package/models/InsightsDailySpotPricesByDateRangeSchema.js +1 -0
- package/models/InsightsDailySpotPricesSchema.d.ts +12 -0
- package/models/InsightsDailySpotPricesSchema.js +1 -0
- package/models/ListingDetail.d.ts +2 -0
- package/models/ListingSummary.d.ts +1 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -39,6 +39,8 @@ export type { InsightPrices } from './models/InsightPrices.js';
|
|
|
39
39
|
export type { InsightPriceSpread } from './models/InsightPriceSpread.js';
|
|
40
40
|
export type { InsightPriceSpreadMonth } from './models/InsightPriceSpreadMonth.js';
|
|
41
41
|
export type { InsightPriceSpreadMonths } from './models/InsightPriceSpreadMonths.js';
|
|
42
|
+
export type { InsightsDailySpotPricesByDateRangeSchema } from './models/InsightsDailySpotPricesByDateRangeSchema.js';
|
|
43
|
+
export type { InsightsDailySpotPricesSchema } from './models/InsightsDailySpotPricesSchema.js';
|
|
42
44
|
export type { LinkContractSchema } from './models/LinkContractSchema.js';
|
|
43
45
|
export type { ListingBidInfoBid } from './models/ListingBidInfoBid.js';
|
|
44
46
|
export type { ListingDetail } from './models/ListingDetail.js';
|
package/models/BidDetail.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -193,6 +193,7 @@ export type ListingDetail = {
|
|
|
193
193
|
tradeRequestId?: string;
|
|
194
194
|
relistedFromListingId?: string;
|
|
195
195
|
pending?: boolean;
|
|
196
|
+
requiresContract?: boolean;
|
|
196
197
|
marketBuyers: Array<{
|
|
197
198
|
authPlatformId?: string;
|
|
198
199
|
emailAddress?: string;
|
|
@@ -433,6 +434,7 @@ export type ListingDetail = {
|
|
|
433
434
|
tradeRequestId?: string;
|
|
434
435
|
relistedFromListingId?: string;
|
|
435
436
|
pending?: boolean;
|
|
437
|
+
requiresContract?: boolean;
|
|
436
438
|
};
|
|
437
439
|
userId: string;
|
|
438
440
|
userFullName: string;
|