@hectare/platform.clients.trading 1.1.73 → 1.1.74
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 +1 -0
- package/models/BidDetail.d.ts +5 -0
- package/models/ListingDetail.d.ts +10 -0
- package/models/ListingSummary.d.ts +5 -0
- package/models/PatchListingSchema.d.ts +3 -0
- package/models/PatchListingSchema.js +1 -0
- package/models/SearchResultsListingSchema.d.ts +5 -0
- package/package.json +1 -1
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 { PatchListingSchema } from './models/PatchListingSchema.js';
|
|
57
58
|
export type { PatchListingSubstatusSchema } from './models/PatchListingSubstatusSchema.js';
|
|
58
59
|
export type { PatchMarketUpdateRequest } from './models/PatchMarketUpdateRequest.js';
|
|
59
60
|
export type { PriceScoreSchema } from './models/PriceScoreSchema.js';
|
package/models/BidDetail.d.ts
CHANGED
|
@@ -199,6 +199,11 @@ export type BidDetail = {
|
|
|
199
199
|
tradeRequestId?: string;
|
|
200
200
|
relistedFromListingId?: string;
|
|
201
201
|
pending?: boolean;
|
|
202
|
+
notes?: Array<{
|
|
203
|
+
user: string;
|
|
204
|
+
note: string;
|
|
205
|
+
createdAtUTC?: string;
|
|
206
|
+
} | null>;
|
|
202
207
|
};
|
|
203
208
|
userId: string;
|
|
204
209
|
userFullName: string;
|
|
@@ -196,6 +196,11 @@ export type ListingDetail = {
|
|
|
196
196
|
tradeRequestId?: string;
|
|
197
197
|
relistedFromListingId?: string;
|
|
198
198
|
pending?: boolean;
|
|
199
|
+
notes?: Array<{
|
|
200
|
+
user: string;
|
|
201
|
+
note: string;
|
|
202
|
+
createdAtUTC?: string;
|
|
203
|
+
} | null>;
|
|
199
204
|
marketBuyers: Array<{
|
|
200
205
|
authPlatformId?: string;
|
|
201
206
|
emailAddress?: string;
|
|
@@ -439,6 +444,11 @@ export type ListingDetail = {
|
|
|
439
444
|
tradeRequestId?: string;
|
|
440
445
|
relistedFromListingId?: string;
|
|
441
446
|
pending?: boolean;
|
|
447
|
+
notes?: Array<{
|
|
448
|
+
user: string;
|
|
449
|
+
note: string;
|
|
450
|
+
createdAtUTC?: string;
|
|
451
|
+
} | null>;
|
|
442
452
|
};
|
|
443
453
|
userId: string;
|
|
444
454
|
userFullName: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -197,6 +197,11 @@ export type SearchResultsListingSchema = {
|
|
|
197
197
|
tradeRequestId?: string;
|
|
198
198
|
relistedFromListingId?: string;
|
|
199
199
|
pending?: boolean;
|
|
200
|
+
notes?: Array<{
|
|
201
|
+
user: string;
|
|
202
|
+
note: string;
|
|
203
|
+
createdAtUTC?: string;
|
|
204
|
+
} | null>;
|
|
200
205
|
}>;
|
|
201
206
|
custom?: any;
|
|
202
207
|
totalDocs?: number;
|