@lcdp/api-react-rest-client 2.0.4-develop.4145714117 → 2.0.4-develop.4173023694
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
|
@@ -41,12 +41,6 @@ export interface CartSubCartLine {
|
|
|
41
41
|
* @memberof CartSubCartLine
|
|
42
42
|
*/
|
|
43
43
|
saleOffer?: SaleOfferLink;
|
|
44
|
-
/**
|
|
45
|
-
* Indicate if the line has a good quantity
|
|
46
|
-
* @type {boolean}
|
|
47
|
-
* @memberof CartSubCartLine
|
|
48
|
-
*/
|
|
49
|
-
goodQuantity?: boolean;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {number}
|
|
@@ -30,7 +30,6 @@ function CartSubCartLineFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
30
30
|
'quantity': !(0, runtime_1.exists)(json, 'quantity') ? undefined : json['quantity'],
|
|
31
31
|
'product': !(0, runtime_1.exists)(json, 'product') ? undefined : (0, ProductLink_1.ProductLinkFromJSON)(json['product']),
|
|
32
32
|
'saleOffer': !(0, runtime_1.exists)(json, 'saleOffer') ? undefined : (0, SaleOfferLink_1.SaleOfferLinkFromJSON)(json['saleOffer']),
|
|
33
|
-
'goodQuantity': !(0, runtime_1.exists)(json, 'goodQuantity') ? undefined : json['goodQuantity'],
|
|
34
33
|
'distributionRangeId': !(0, runtime_1.exists)(json, 'distributionRangeId') ? undefined : json['distributionRangeId'],
|
|
35
34
|
'totalExcludingTaxes': !(0, runtime_1.exists)(json, 'totalExcludingTaxes') ? undefined : json['totalExcludingTaxes'],
|
|
36
35
|
};
|
|
@@ -48,7 +47,6 @@ function CartSubCartLineToJSON(value) {
|
|
|
48
47
|
'quantity': value.quantity,
|
|
49
48
|
'product': (0, ProductLink_1.ProductLinkToJSON)(value.product),
|
|
50
49
|
'saleOffer': (0, SaleOfferLink_1.SaleOfferLinkToJSON)(value.saleOffer),
|
|
51
|
-
'goodQuantity': value.goodQuantity,
|
|
52
50
|
'distributionRangeId': value.distributionRangeId,
|
|
53
51
|
'totalExcludingTaxes': value.totalExcludingTaxes,
|
|
54
52
|
};
|