@lcdp/api-react-rest-client 2.1.1 → 2.1.2-LDS-2841-internalerror-managed-internal-.4324559963
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
|
@@ -45,12 +45,6 @@ export interface Transport {
|
|
|
45
45
|
* @memberof Transport
|
|
46
46
|
*/
|
|
47
47
|
deliveryDelay: number | null;
|
|
48
|
-
/**
|
|
49
|
-
* Should minimum price be displayed
|
|
50
|
-
* @type {boolean}
|
|
51
|
-
* @memberof Transport
|
|
52
|
-
*/
|
|
53
|
-
showMinimumPrice: boolean;
|
|
54
48
|
}
|
|
55
49
|
export declare function TransportFromJSON(json: any): Transport;
|
|
56
50
|
export declare function TransportFromJSONTyped(json: any, ignoreDiscriminator: boolean): Transport;
|
|
@@ -28,7 +28,6 @@ function TransportFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
28
|
'shippingFeesBase': json['shippingFeesBase'],
|
|
29
29
|
'minimumPrice': json['minimumPrice'],
|
|
30
30
|
'deliveryDelay': json['deliveryDelay'],
|
|
31
|
-
'showMinimumPrice': json['showMinimumPrice'],
|
|
32
31
|
};
|
|
33
32
|
}
|
|
34
33
|
exports.TransportFromJSONTyped = TransportFromJSONTyped;
|
|
@@ -45,7 +44,6 @@ function TransportToJSON(value) {
|
|
|
45
44
|
'shippingFeesBase': value.shippingFeesBase,
|
|
46
45
|
'minimumPrice': value.minimumPrice,
|
|
47
46
|
'deliveryDelay': value.deliveryDelay,
|
|
48
|
-
'showMinimumPrice': value.showMinimumPrice,
|
|
49
47
|
};
|
|
50
48
|
}
|
|
51
49
|
exports.TransportToJSON = TransportToJSON;
|