@hectare/platform.clients.trading 1.1.79 → 1.1.81
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/AdvancePayContractSchema.d.ts +1 -0
- package/models/BidDetail.d.ts +3 -1
- package/models/ContractDetail.d.ts +1 -0
- package/models/CreateContractRequest.d.ts +1 -0
- package/models/CreateListing.d.ts +2 -1
- package/models/CreateTradeRequest.d.ts +1 -0
- package/models/ListingDetail.d.ts +5 -2
- package/models/ListingSummary.d.ts +2 -1
- package/models/SearchResultsListingSchema.d.ts +2 -1
- package/models/TradeRequestDetail.d.ts +1 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ export type BidDetail = {
|
|
|
130
130
|
name: string;
|
|
131
131
|
};
|
|
132
132
|
variety: string;
|
|
133
|
+
varieties: Array<string>;
|
|
133
134
|
tags: Array<number>;
|
|
134
135
|
weight: {
|
|
135
136
|
name: string;
|
|
@@ -210,7 +211,7 @@ export type BidDetail = {
|
|
|
210
211
|
amount: number;
|
|
211
212
|
currency: string;
|
|
212
213
|
} | null;
|
|
213
|
-
|
|
214
|
+
sellerListingReasonIds: Array<number> | null;
|
|
214
215
|
sellerListingReasonDetail: string | null;
|
|
215
216
|
} | null;
|
|
216
217
|
};
|
|
@@ -305,6 +306,7 @@ export type BidDetail = {
|
|
|
305
306
|
name: string;
|
|
306
307
|
};
|
|
307
308
|
variety: string;
|
|
309
|
+
varieties: Array<string>;
|
|
308
310
|
tags: Array<number>;
|
|
309
311
|
weight: {
|
|
310
312
|
name: string;
|
|
@@ -45,6 +45,7 @@ export type CreateListing = {
|
|
|
45
45
|
type: number;
|
|
46
46
|
grade: number | null;
|
|
47
47
|
variety?: string | null;
|
|
48
|
+
varieties?: Array<string> | null;
|
|
48
49
|
tags?: Array<number> | null;
|
|
49
50
|
};
|
|
50
51
|
harvestYear: string;
|
|
@@ -75,7 +76,7 @@ export type CreateListing = {
|
|
|
75
76
|
amount: number;
|
|
76
77
|
currency: string;
|
|
77
78
|
} | null;
|
|
78
|
-
|
|
79
|
+
sellerListingReasonIds: Array<number> | null;
|
|
79
80
|
sellerListingReasonDetail: string | null;
|
|
80
81
|
} | null;
|
|
81
82
|
};
|
|
@@ -127,6 +127,7 @@ export type ListingDetail = {
|
|
|
127
127
|
name: string;
|
|
128
128
|
};
|
|
129
129
|
variety: string;
|
|
130
|
+
varieties: Array<string>;
|
|
130
131
|
tags: Array<number>;
|
|
131
132
|
weight: {
|
|
132
133
|
name: string;
|
|
@@ -207,7 +208,7 @@ export type ListingDetail = {
|
|
|
207
208
|
amount: number;
|
|
208
209
|
currency: string;
|
|
209
210
|
} | null;
|
|
210
|
-
|
|
211
|
+
sellerListingReasonIds: Array<number> | null;
|
|
211
212
|
sellerListingReasonDetail: string | null;
|
|
212
213
|
} | null;
|
|
213
214
|
marketBuyers: Array<{
|
|
@@ -384,6 +385,7 @@ export type ListingDetail = {
|
|
|
384
385
|
name: string;
|
|
385
386
|
};
|
|
386
387
|
variety: string;
|
|
388
|
+
varieties: Array<string>;
|
|
387
389
|
tags: Array<number>;
|
|
388
390
|
weight: {
|
|
389
391
|
name: string;
|
|
@@ -464,7 +466,7 @@ export type ListingDetail = {
|
|
|
464
466
|
amount: number;
|
|
465
467
|
currency: string;
|
|
466
468
|
} | null;
|
|
467
|
-
|
|
469
|
+
sellerListingReasonIds: Array<number> | null;
|
|
468
470
|
sellerListingReasonDetail: string | null;
|
|
469
471
|
} | null;
|
|
470
472
|
};
|
|
@@ -559,6 +561,7 @@ export type ListingDetail = {
|
|
|
559
561
|
name: string;
|
|
560
562
|
};
|
|
561
563
|
variety: string;
|
|
564
|
+
varieties: Array<string>;
|
|
562
565
|
tags: Array<number>;
|
|
563
566
|
weight: {
|
|
564
567
|
name: string;
|
|
@@ -127,6 +127,7 @@ export type ListingSummary = {
|
|
|
127
127
|
name: string;
|
|
128
128
|
};
|
|
129
129
|
variety: string;
|
|
130
|
+
varieties: Array<string>;
|
|
130
131
|
tags: Array<number>;
|
|
131
132
|
weight: {
|
|
132
133
|
name: string;
|
|
@@ -207,7 +208,7 @@ export type ListingSummary = {
|
|
|
207
208
|
amount: number;
|
|
208
209
|
currency: string;
|
|
209
210
|
} | null;
|
|
210
|
-
|
|
211
|
+
sellerListingReasonIds: Array<number> | null;
|
|
211
212
|
sellerListingReasonDetail: string | null;
|
|
212
213
|
} | null;
|
|
213
214
|
};
|
|
@@ -128,6 +128,7 @@ export type SearchResultsListingSchema = {
|
|
|
128
128
|
name: string;
|
|
129
129
|
};
|
|
130
130
|
variety: string;
|
|
131
|
+
varieties: Array<string>;
|
|
131
132
|
tags: Array<number>;
|
|
132
133
|
weight: {
|
|
133
134
|
name: string;
|
|
@@ -208,7 +209,7 @@ export type SearchResultsListingSchema = {
|
|
|
208
209
|
amount: number;
|
|
209
210
|
currency: string;
|
|
210
211
|
} | null;
|
|
211
|
-
|
|
212
|
+
sellerListingReasonIds: Array<number> | null;
|
|
212
213
|
sellerListingReasonDetail: string | null;
|
|
213
214
|
} | null;
|
|
214
215
|
}>;
|