@hectare/platform.clients.trading 1.1.67 → 1.1.69
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
CHANGED
|
@@ -54,6 +54,7 @@ export type { PatchBidOption } from './models/PatchBidOption.js';
|
|
|
54
54
|
export type { PatchContractDeliverySchema } from './models/PatchContractDeliverySchema.js';
|
|
55
55
|
export type { PatchContractPricingSchema } from './models/PatchContractPricingSchema.js';
|
|
56
56
|
export type { PatchContractRequest } from './models/PatchContractRequest.js';
|
|
57
|
+
export type { PatchListingSubstatusSchema } from './models/PatchListingSubstatusSchema.js';
|
|
57
58
|
export type { PatchMarketUpdateRequest } from './models/PatchMarketUpdateRequest.js';
|
|
58
59
|
export type { PriceScoreSchema } from './models/PriceScoreSchema.js';
|
|
59
60
|
export type { PublishExFarmPricingSchema } from './models/PublishExFarmPricingSchema.js';
|
package/models/BidDetail.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export type ListingDetail = {
|
|
2
2
|
id: string;
|
|
3
|
+
createdAtUTC: string;
|
|
3
4
|
status: 'active' | 'closed' | 'traded';
|
|
4
5
|
substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
|
|
5
6
|
business: {
|
|
@@ -241,6 +242,7 @@ export type ListingDetail = {
|
|
|
241
242
|
listingId: string;
|
|
242
243
|
listing?: {
|
|
243
244
|
id: string;
|
|
245
|
+
createdAtUTC: string;
|
|
244
246
|
status: 'active' | 'closed' | 'traded';
|
|
245
247
|
substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
|
|
246
248
|
business: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|