@lcdp/api-react-rest-client 2.6.9-develop.9397977761 → 2.6.9-develop.9444103981
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/package.json
CHANGED
|
@@ -30,6 +30,8 @@ export interface GetSaleOffersRequest {
|
|
|
30
30
|
sptEq?: string;
|
|
31
31
|
cdateGte?: Date;
|
|
32
32
|
cdateLte?: Date;
|
|
33
|
+
udateGte?: Date;
|
|
34
|
+
udateLte?: Date;
|
|
33
35
|
stdateGte?: Date;
|
|
34
36
|
sNumberOfSalesGte?: number;
|
|
35
37
|
stReasonEq?: SaleOfferStatusReason;
|
|
@@ -94,6 +96,8 @@ export declare enum GetSaleOffersOrderByEnum {
|
|
|
94
96
|
OWNERCOMPANYLEGALNAMEdesc = "OWNER_COMPANY_LEGAL_NAME:desc",
|
|
95
97
|
CREATEDATdesc = "CREATED_AT:desc",
|
|
96
98
|
CREATEDATasc = "CREATED_AT:asc",
|
|
99
|
+
UPDATEDATasc = "UPDATED_AT:asc",
|
|
100
|
+
UPDATEDATdesc = "UPDATED_AT:desc",
|
|
97
101
|
JOURNALSTATUSUPDATEDATasc = "JOURNAL_STATUS_UPDATED_AT:asc",
|
|
98
102
|
JOURNALSTATUSUPDATEDATdesc = "JOURNAL_STATUS_UPDATED_AT:desc",
|
|
99
103
|
STATISTICLASTSALEDATEasc = "STATISTIC_LAST_SALE_DATE:asc",
|
|
@@ -211,6 +211,12 @@ var SearchSaleOfferApi = /** @class */ (function (_super) {
|
|
|
211
211
|
if (requestParameters.cdateLte !== undefined) {
|
|
212
212
|
queryParameters['cdate[lte]'] = requestParameters.cdateLte.toISOString();
|
|
213
213
|
}
|
|
214
|
+
if (requestParameters.udateGte !== undefined) {
|
|
215
|
+
queryParameters['udate[gte]'] = requestParameters.udateGte.toISOString();
|
|
216
|
+
}
|
|
217
|
+
if (requestParameters.udateLte !== undefined) {
|
|
218
|
+
queryParameters['udate[lte]'] = requestParameters.udateLte.toISOString();
|
|
219
|
+
}
|
|
214
220
|
if (requestParameters.stdateGte !== undefined) {
|
|
215
221
|
queryParameters['stdate[gte]'] = requestParameters.stdateGte.toISOString();
|
|
216
222
|
}
|
|
@@ -343,6 +349,8 @@ var GetSaleOffersOrderByEnum;
|
|
|
343
349
|
GetSaleOffersOrderByEnum["OWNERCOMPANYLEGALNAMEdesc"] = "OWNER_COMPANY_LEGAL_NAME:desc";
|
|
344
350
|
GetSaleOffersOrderByEnum["CREATEDATdesc"] = "CREATED_AT:desc";
|
|
345
351
|
GetSaleOffersOrderByEnum["CREATEDATasc"] = "CREATED_AT:asc";
|
|
352
|
+
GetSaleOffersOrderByEnum["UPDATEDATasc"] = "UPDATED_AT:asc";
|
|
353
|
+
GetSaleOffersOrderByEnum["UPDATEDATdesc"] = "UPDATED_AT:desc";
|
|
346
354
|
GetSaleOffersOrderByEnum["JOURNALSTATUSUPDATEDATasc"] = "JOURNAL_STATUS_UPDATED_AT:asc";
|
|
347
355
|
GetSaleOffersOrderByEnum["JOURNALSTATUSUPDATEDATdesc"] = "JOURNAL_STATUS_UPDATED_AT:desc";
|
|
348
356
|
GetSaleOffersOrderByEnum["STATISTICLASTSALEDATEasc"] = "STATISTIC_LAST_SALE_DATE:asc";
|
|
@@ -43,7 +43,7 @@ function SaleOfferFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
43
43
|
'minimalUnitPrice': json['minimalUnitPrice'],
|
|
44
44
|
'bestRebate': json['bestRebate'],
|
|
45
45
|
'owner': (0, OwnerLink_1.OwnerLinkFromJSON)(json['owner']),
|
|
46
|
-
'
|
|
46
|
+
'updatedAt': (new Date(json['updatedAt'])),
|
|
47
47
|
'createdAt': (new Date(json['createdAt'])),
|
|
48
48
|
'images': (0, Images_1.ImagesFromJSON)(json['images']),
|
|
49
49
|
'rank': json['rank'],
|
|
@@ -71,7 +71,7 @@ function SaleOfferToJSON(value) {
|
|
|
71
71
|
'minimalUnitPrice': value.minimalUnitPrice,
|
|
72
72
|
'bestRebate': value.bestRebate,
|
|
73
73
|
'owner': (0, OwnerLink_1.OwnerLinkToJSON)(value.owner),
|
|
74
|
-
'
|
|
74
|
+
'updatedAt': (value.updatedAt.toISOString()),
|
|
75
75
|
'createdAt': (value.createdAt.toISOString()),
|
|
76
76
|
'images': (0, Images_1.ImagesToJSON)(value.images),
|
|
77
77
|
'rank': value.rank,
|