@hectare/platform.clients.trading 1.1.73 → 1.1.75
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 +7 -0
- package/models/ListingDetail.d.ts +14 -0
- package/models/ListingSummary.d.ts +7 -0
- package/models/PatchListingSchema.d.ts +7 -0
- package/models/PatchListingSchema.js +1 -0
- package/models/SearchResultsListingSchema.d.ts +7 -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,13 @@ export type BidDetail = {
|
|
|
199
199
|
tradeRequestId?: string;
|
|
200
200
|
relistedFromListingId?: string;
|
|
201
201
|
pending?: boolean;
|
|
202
|
+
feedback?: {
|
|
203
|
+
user: string;
|
|
204
|
+
note: string | null;
|
|
205
|
+
createdAtUTC: string | null;
|
|
206
|
+
noBidReason: string | null;
|
|
207
|
+
noConversionReason: string;
|
|
208
|
+
} | null;
|
|
202
209
|
};
|
|
203
210
|
userId: string;
|
|
204
211
|
userFullName: string;
|
|
@@ -196,6 +196,13 @@ export type ListingDetail = {
|
|
|
196
196
|
tradeRequestId?: string;
|
|
197
197
|
relistedFromListingId?: string;
|
|
198
198
|
pending?: boolean;
|
|
199
|
+
feedback?: {
|
|
200
|
+
user: string;
|
|
201
|
+
note: string | null;
|
|
202
|
+
createdAtUTC: string | null;
|
|
203
|
+
noBidReason: string | null;
|
|
204
|
+
noConversionReason: string;
|
|
205
|
+
} | null;
|
|
199
206
|
marketBuyers: Array<{
|
|
200
207
|
authPlatformId?: string;
|
|
201
208
|
emailAddress?: string;
|
|
@@ -439,6 +446,13 @@ export type ListingDetail = {
|
|
|
439
446
|
tradeRequestId?: string;
|
|
440
447
|
relistedFromListingId?: string;
|
|
441
448
|
pending?: boolean;
|
|
449
|
+
feedback?: {
|
|
450
|
+
user: string;
|
|
451
|
+
note: string | null;
|
|
452
|
+
createdAtUTC: string | null;
|
|
453
|
+
noBidReason: string | null;
|
|
454
|
+
noConversionReason: string;
|
|
455
|
+
} | null;
|
|
442
456
|
};
|
|
443
457
|
userId: string;
|
|
444
458
|
userFullName: string;
|
|
@@ -196,4 +196,11 @@ export type ListingSummary = {
|
|
|
196
196
|
tradeRequestId?: string;
|
|
197
197
|
relistedFromListingId?: string;
|
|
198
198
|
pending?: boolean;
|
|
199
|
+
feedback?: {
|
|
200
|
+
user: string;
|
|
201
|
+
note: string | null;
|
|
202
|
+
createdAtUTC: string | null;
|
|
203
|
+
noBidReason: string | null;
|
|
204
|
+
noConversionReason: string;
|
|
205
|
+
} | null;
|
|
199
206
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -197,6 +197,13 @@ export type SearchResultsListingSchema = {
|
|
|
197
197
|
tradeRequestId?: string;
|
|
198
198
|
relistedFromListingId?: string;
|
|
199
199
|
pending?: boolean;
|
|
200
|
+
feedback?: {
|
|
201
|
+
user: string;
|
|
202
|
+
note: string | null;
|
|
203
|
+
createdAtUTC: string | null;
|
|
204
|
+
noBidReason: string | null;
|
|
205
|
+
noConversionReason: string;
|
|
206
|
+
} | null;
|
|
200
207
|
}>;
|
|
201
208
|
custom?: any;
|
|
202
209
|
totalDocs?: number;
|