@lcdp/api-react-rest-client 3.1.7-LDS-5578-api-distinct-status-code-accodi.23847291272 → 3.1.7-develop.23855465779
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/auth/src/models/RestError.d.ts +5 -3
- package/auth/src/models/RestError.js +5 -3
- package/auth/src/models/index.d.ts +0 -4
- package/auth/src/models/index.js +0 -4
- package/catalog/src/models/RestError.d.ts +5 -3
- package/catalog/src/models/RestError.js +5 -3
- package/chargebee-hook/src/models/RestError.d.ts +5 -3
- package/chargebee-hook/src/models/RestError.js +5 -3
- package/configuration/src/models/RestError.d.ts +5 -3
- package/configuration/src/models/RestError.js +5 -3
- package/content/src/models/RestError.d.ts +5 -3
- package/content/src/models/RestError.js +5 -3
- package/favorite/src/models/RestError.d.ts +5 -3
- package/favorite/src/models/RestError.js +5 -3
- package/inventory/src/models/RestError.d.ts +5 -3
- package/inventory/src/models/RestError.js +5 -3
- package/invoice/src/models/RestError.d.ts +5 -3
- package/invoice/src/models/RestError.js +5 -3
- package/laboratory-store/src/models/RestError.d.ts +5 -3
- package/laboratory-store/src/models/RestError.js +5 -3
- package/lexicon/src/models/RestError.d.ts +5 -3
- package/lexicon/src/models/RestError.js +5 -3
- package/litigation/src/models/RestError.d.ts +5 -3
- package/litigation/src/models/RestError.js +5 -3
- package/magic-cart/src/models/ExpressOrder.d.ts +3 -3
- package/magic-cart/src/models/ExpressOrder.js +3 -3
- package/magic-cart/src/models/SaleOfferProposal.d.ts +51 -0
- package/magic-cart/src/models/SaleOfferProposal.js +61 -0
- package/magic-cart/src/models/SellerProposal.d.ts +45 -0
- package/magic-cart/src/models/SellerProposal.js +57 -0
- package/magic-cart/src/models/index.d.ts +2 -1
- package/magic-cart/src/models/index.js +2 -1
- package/mangopay-hook/src/models/RestError.d.ts +5 -3
- package/mangopay-hook/src/models/RestError.js +5 -3
- package/notification/src/models/RestError.d.ts +5 -3
- package/notification/src/models/RestError.js +5 -3
- package/order/src/apis/ManageMetaOrderApi.d.ts +45 -0
- package/{shopping-cart/src/apis/SearchCartLineApi.js → order/src/apis/ManageMetaOrderApi.js} +41 -46
- package/order/src/apis/ManageOrderApi.d.ts +8 -8
- package/order/src/apis/ManageOrderApi.js +10 -9
- package/order/src/apis/index.d.ts +1 -2
- package/order/src/apis/index.js +1 -2
- package/order/src/models/AnyMetaOrderWarning.d.ts +26 -0
- package/order/src/models/AnyMetaOrderWarning.js +50 -0
- package/order/src/models/MetaOrder.d.ts +64 -0
- package/order/src/models/MetaOrder.js +70 -0
- package/order/src/models/MetaOrderCreationParameters.d.ts +38 -0
- package/order/src/models/MetaOrderCreationParameters.js +52 -0
- package/order/src/models/MetaOrderCreationSubCartParameters.d.ts +31 -0
- package/order/src/models/MetaOrderCreationSubCartParameters.js +47 -0
- package/order/src/models/MetaOrderPrices.d.ts +79 -0
- package/order/src/models/MetaOrderPrices.js +79 -0
- package/order/src/models/MetaOrderWarning.d.ts +31 -0
- package/order/src/models/MetaOrderWarning.js +47 -0
- package/order/src/models/MetaOrderWithWarnings.d.ts +39 -0
- package/order/src/models/MetaOrderWithWarnings.js +49 -0
- package/order/src/models/Order.d.ts +75 -80
- package/order/src/models/Order.js +48 -53
- package/order/src/models/OrderItemPrices.d.ts +3 -3
- package/order/src/models/{ForeorderItemWarning.d.ts → OrderItemWarning.d.ts} +18 -23
- package/order/src/models/{ForeorderItemWarning.js → OrderItemWarning.js} +15 -18
- package/order/src/models/OrderWarning.d.ts +51 -0
- package/order/src/models/{ForeorderWarning.js → OrderWarning.js} +12 -12
- package/order/src/models/RestError.d.ts +5 -3
- package/order/src/models/RestError.js +5 -3
- package/order/src/models/ShoppedOffer.d.ts +2 -2
- package/order/src/models/ShoppedOffer.js +2 -2
- package/order/src/models/index.d.ts +9 -17
- package/order/src/models/index.js +9 -17
- package/package.json +1 -1
- package/product/src/models/RestError.d.ts +5 -3
- package/product/src/models/RestError.js +5 -3
- package/pub/src/models/RestError.d.ts +5 -3
- package/pub/src/models/RestError.js +5 -3
- package/rfx/src/models/RestError.d.ts +5 -3
- package/rfx/src/models/RestError.js +5 -3
- package/sale-offer/src/models/RestError.d.ts +5 -3
- package/sale-offer/src/models/RestError.js +5 -3
- package/servant/src/models/RestError.d.ts +5 -3
- package/servant/src/models/RestError.js +5 -3
- package/shipment/src/models/RestError.d.ts +5 -3
- package/shipment/src/models/RestError.js +5 -3
- package/shopping-cart/src/apis/ManageCartApi.d.ts +24 -35
- package/shopping-cart/src/apis/ManageCartApi.js +120 -57
- package/shopping-cart/src/apis/ManageCartSubCartApi.d.ts +107 -0
- package/shopping-cart/src/apis/ManageCartSubCartApi.js +556 -0
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.d.ts +151 -0
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.js +879 -0
- package/shopping-cart/src/apis/index.d.ts +2 -3
- package/shopping-cart/src/apis/index.js +2 -3
- package/shopping-cart/src/models/Cart.d.ts +4 -61
- package/shopping-cart/src/models/Cart.js +2 -47
- package/shopping-cart/src/models/CartSubCart.d.ts +76 -0
- package/shopping-cart/src/models/CartSubCart.js +78 -0
- package/shopping-cart/src/models/{CartLine.d.ts → CartSubCartLine.d.ts} +13 -13
- package/shopping-cart/src/models/{CartLine.js → CartSubCartLine.js} +11 -11
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.d.ts +37 -0
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.js +49 -0
- package/shopping-cart/src/models/{CartTransport.d.ts → CartSubCartTransport.d.ts} +12 -12
- package/shopping-cart/src/models/{CartTransport.js → CartSubCartTransport.js} +11 -11
- package/shopping-cart/src/models/RestError.d.ts +5 -3
- package/shopping-cart/src/models/RestError.js +5 -3
- package/shopping-cart/src/models/ShoppedOffer.d.ts +2 -2
- package/shopping-cart/src/models/ShoppedOffer.js +2 -2
- package/shopping-cart/src/models/index.d.ts +4 -12
- package/shopping-cart/src/models/index.js +4 -12
- package/smuggler/src/models/RestError.d.ts +5 -3
- package/smuggler/src/models/RestError.js +5 -3
- package/statistic/src/models/RestError.d.ts +5 -3
- package/statistic/src/models/RestError.js +5 -3
- package/third-party/src/models/RestError.d.ts +5 -3
- package/third-party/src/models/RestError.js +5 -3
- package/ubo/src/models/RestError.d.ts +5 -3
- package/ubo/src/models/RestError.js +5 -3
- package/user/src/models/RestError.d.ts +5 -3
- package/user/src/models/RestError.js +5 -3
- package/wish/src/models/RestError.d.ts +5 -3
- package/wish/src/models/RestError.js +5 -3
- package/auth/src/models/AnonymousUser.d.ts +0 -43
- package/auth/src/models/AnonymousUser.js +0 -55
- package/auth/src/models/AnyUser.d.ts +0 -26
- package/auth/src/models/AnyUser.js +0 -50
- package/auth/src/models/IdentifiedUser.d.ts +0 -37
- package/auth/src/models/IdentifiedUser.js +0 -51
- package/auth/src/models/User.d.ts +0 -31
- package/auth/src/models/User.js +0 -47
- package/magic-cart/src/models/ShoppedOffer.d.ts +0 -43
- package/magic-cart/src/models/ShoppedOffer.js +0 -53
- package/order/src/apis/ManageForeorderApi.d.ts +0 -31
- package/order/src/apis/ManageForeorderApi.js +0 -163
- package/order/src/apis/SearchForeorderItemApi.d.ts +0 -44
- package/order/src/apis/SearchForeorderItemApi.js +0 -175
- package/order/src/models/AnyForeorderCreationParameters.d.ts +0 -23
- package/order/src/models/AnyForeorderCreationParameters.js +0 -45
- package/order/src/models/AnyForeorderWarning.d.ts +0 -26
- package/order/src/models/AnyForeorderWarning.js +0 -50
- package/order/src/models/AnyOrderCreationParameters.d.ts +0 -26
- package/order/src/models/AnyOrderCreationParameters.js +0 -50
- package/order/src/models/AnySource.d.ts +0 -26
- package/order/src/models/AnySource.js +0 -50
- package/order/src/models/CartForeorderCreationParameters.d.ts +0 -37
- package/order/src/models/CartForeorderCreationParameters.js +0 -51
- package/order/src/models/CartSource.d.ts +0 -37
- package/order/src/models/CartSource.js +0 -49
- package/order/src/models/CloneOrderCreationParameters.d.ts +0 -37
- package/order/src/models/CloneOrderCreationParameters.js +0 -51
- package/order/src/models/Foreorder.d.ts +0 -155
- package/order/src/models/Foreorder.js +0 -128
- package/order/src/models/ForeorderCreationParameters.d.ts +0 -31
- package/order/src/models/ForeorderCreationParameters.js +0 -47
- package/order/src/models/ForeorderOrderCreationParameters.d.ts +0 -37
- package/order/src/models/ForeorderOrderCreationParameters.js +0 -51
- package/order/src/models/ForeorderWarning.d.ts +0 -51
- package/order/src/models/ForeorderWarningBase.d.ts +0 -37
- package/order/src/models/ForeorderWarningBase.js +0 -51
- package/order/src/models/ForeorderWithWarnings.d.ts +0 -39
- package/order/src/models/ForeorderWithWarnings.js +0 -53
- package/order/src/models/OrderCreationParameters.d.ts +0 -31
- package/order/src/models/OrderCreationParameters.js +0 -47
- package/order/src/models/OrderSource.d.ts +0 -37
- package/order/src/models/OrderSource.js +0 -49
- package/order/src/models/Source.d.ts +0 -31
- package/order/src/models/Source.js +0 -45
- package/shopping-cart/src/apis/ManageCartLineApi.d.ts +0 -45
- package/shopping-cart/src/apis/ManageCartLineApi.js +0 -238
- package/shopping-cart/src/apis/SearchCartApi.d.ts +0 -59
- package/shopping-cart/src/apis/SearchCartApi.js +0 -267
- package/shopping-cart/src/apis/SearchCartLineApi.d.ts +0 -41
- package/shopping-cart/src/models/CartCreationParameters.d.ts +0 -44
- package/shopping-cart/src/models/CartCreationParameters.js +0 -56
- package/shopping-cart/src/models/CartLineUpdateParameters.d.ts +0 -37
- package/shopping-cart/src/models/CartLineUpdateParameters.js +0 -49
- package/shopping-cart/src/models/CartLineWithWarnings.d.ts +0 -39
- package/shopping-cart/src/models/CartLineWithWarnings.js +0 -49
- package/shopping-cart/src/models/CartSummary.d.ts +0 -31
- package/shopping-cart/src/models/CartSummary.js +0 -47
- package/shopping-cart/src/models/CartUpdateParameters.d.ts +0 -31
- package/shopping-cart/src/models/CartUpdateParameters.js +0 -45
- package/shopping-cart/src/models/CartWarning.d.ts +0 -70
- package/shopping-cart/src/models/CartWarning.js +0 -67
- package/shopping-cart/src/models/CartsWithWarnings.d.ts +0 -39
- package/shopping-cart/src/models/CartsWithWarnings.js +0 -49
- package/shopping-cart/src/models/OwnerLink.d.ts +0 -43
- package/shopping-cart/src/models/OwnerLink.js +0 -53
- package/shopping-cart/src/models/PaginatedCarts.d.ts +0 -46
- package/shopping-cart/src/models/PaginatedCarts.js +0 -58
- package/shopping-cart/src/models/PagingMetadata.d.ts +0 -49
- package/shopping-cart/src/models/PagingMetadata.js +0 -55
|
@@ -17,6 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
/* tslint:disable */
|
|
18
18
|
/* eslint-disable */
|
|
19
19
|
__exportStar(require("./ManageCartApi"), exports);
|
|
20
|
-
__exportStar(require("./
|
|
21
|
-
__exportStar(require("./
|
|
22
|
-
__exportStar(require("./SearchCartLineApi"), exports);
|
|
20
|
+
__exportStar(require("./ManageCartSubCartApi"), exports);
|
|
21
|
+
__exportStar(require("./ManageCartSubCartLineApi"), exports);
|
|
@@ -9,10 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { OwnerLink } from './OwnerLink';
|
|
13
|
-
import type { CartTransport } from './CartTransport';
|
|
14
12
|
import type { HttpLink } from './HttpLink';
|
|
15
|
-
import type { SellerLink } from './SellerLink';
|
|
16
13
|
/**
|
|
17
14
|
*
|
|
18
15
|
* @export
|
|
@@ -24,73 +21,19 @@ export interface Cart {
|
|
|
24
21
|
* @type {number}
|
|
25
22
|
* @memberof Cart
|
|
26
23
|
*/
|
|
27
|
-
id
|
|
28
|
-
/**
|
|
29
|
-
* Creation date of this cart
|
|
30
|
-
* @type {Date}
|
|
31
|
-
* @memberof Cart
|
|
32
|
-
*/
|
|
33
|
-
createdAt: Date;
|
|
34
|
-
/**
|
|
35
|
-
* Last update date of this cart
|
|
36
|
-
* @type {Date}
|
|
37
|
-
* @memberof Cart
|
|
38
|
-
*/
|
|
39
|
-
updatedAt: Date;
|
|
40
|
-
/**
|
|
41
|
-
* Channel identifier
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof Cart
|
|
44
|
-
*/
|
|
45
|
-
channel: string;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {OwnerLink}
|
|
49
|
-
* @memberof Cart
|
|
50
|
-
*/
|
|
51
|
-
owner: OwnerLink;
|
|
52
|
-
/**
|
|
53
|
-
*
|
|
54
|
-
* @type {CartTransport}
|
|
55
|
-
* @memberof Cart
|
|
56
|
-
*/
|
|
57
|
-
transport: CartTransport;
|
|
24
|
+
id?: number;
|
|
58
25
|
/**
|
|
59
26
|
*
|
|
60
|
-
* @type {SellerLink}
|
|
61
|
-
* @memberof Cart
|
|
62
|
-
*/
|
|
63
|
-
seller: SellerLink;
|
|
64
|
-
/**
|
|
65
|
-
* Number of lines in this cart
|
|
66
27
|
* @type {number}
|
|
67
28
|
* @memberof Cart
|
|
68
29
|
*/
|
|
69
|
-
lineCount
|
|
30
|
+
lineCount?: number;
|
|
70
31
|
/**
|
|
71
32
|
*
|
|
72
|
-
* @type {HttpLink}
|
|
73
|
-
* @memberof Cart
|
|
74
|
-
*/
|
|
75
|
-
lines: HttpLink;
|
|
76
|
-
/**
|
|
77
|
-
* Total buyer commission for this sub cart
|
|
78
|
-
* @type {number}
|
|
79
|
-
* @memberof Cart
|
|
80
|
-
*/
|
|
81
|
-
totalBuyerCommissionExcludingTaxes: number;
|
|
82
|
-
/**
|
|
83
|
-
* Total price excluding taxes
|
|
84
|
-
* @type {number}
|
|
85
|
-
* @memberof Cart
|
|
86
|
-
*/
|
|
87
|
-
totalExcludingTaxes: number;
|
|
88
|
-
/**
|
|
89
|
-
* Total price including taxes
|
|
90
|
-
* @type {number}
|
|
33
|
+
* @type {Array<HttpLink>}
|
|
91
34
|
* @memberof Cart
|
|
92
35
|
*/
|
|
93
|
-
|
|
36
|
+
subCarts?: Array<HttpLink>;
|
|
94
37
|
}
|
|
95
38
|
/**
|
|
96
39
|
* Check if a given object implements the Cart interface.
|
|
@@ -14,38 +14,11 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.CartToJSON = exports.CartFromJSONTyped = exports.CartFromJSON = exports.instanceOfCart = void 0;
|
|
17
|
-
var OwnerLink_1 = require("./OwnerLink");
|
|
18
|
-
var CartTransport_1 = require("./CartTransport");
|
|
19
17
|
var HttpLink_1 = require("./HttpLink");
|
|
20
|
-
var SellerLink_1 = require("./SellerLink");
|
|
21
18
|
/**
|
|
22
19
|
* Check if a given object implements the Cart interface.
|
|
23
20
|
*/
|
|
24
21
|
function instanceOfCart(value) {
|
|
25
|
-
if (!('id' in value) || value['id'] === undefined)
|
|
26
|
-
return false;
|
|
27
|
-
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
28
|
-
return false;
|
|
29
|
-
if (!('updatedAt' in value) || value['updatedAt'] === undefined)
|
|
30
|
-
return false;
|
|
31
|
-
if (!('channel' in value) || value['channel'] === undefined)
|
|
32
|
-
return false;
|
|
33
|
-
if (!('owner' in value) || value['owner'] === undefined)
|
|
34
|
-
return false;
|
|
35
|
-
if (!('transport' in value) || value['transport'] === undefined)
|
|
36
|
-
return false;
|
|
37
|
-
if (!('seller' in value) || value['seller'] === undefined)
|
|
38
|
-
return false;
|
|
39
|
-
if (!('lineCount' in value) || value['lineCount'] === undefined)
|
|
40
|
-
return false;
|
|
41
|
-
if (!('lines' in value) || value['lines'] === undefined)
|
|
42
|
-
return false;
|
|
43
|
-
if (!('totalBuyerCommissionExcludingTaxes' in value) || value['totalBuyerCommissionExcludingTaxes'] === undefined)
|
|
44
|
-
return false;
|
|
45
|
-
if (!('totalExcludingTaxes' in value) || value['totalExcludingTaxes'] === undefined)
|
|
46
|
-
return false;
|
|
47
|
-
if (!('totalIncludingTaxes' in value) || value['totalIncludingTaxes'] === undefined)
|
|
48
|
-
return false;
|
|
49
22
|
return true;
|
|
50
23
|
}
|
|
51
24
|
exports.instanceOfCart = instanceOfCart;
|
|
@@ -59,17 +32,8 @@ function CartFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
59
32
|
}
|
|
60
33
|
return {
|
|
61
34
|
'id': json['id'],
|
|
62
|
-
'createdAt': (json['createdAt'] === null || json['createdAt'] === undefined) ? json['createdAt'] : new Date(json['createdAt']),
|
|
63
|
-
'updatedAt': (json['updatedAt'] === null || json['updatedAt'] === undefined) ? json['updatedAt'] : new Date(json['updatedAt']),
|
|
64
|
-
'channel': json['channel'],
|
|
65
|
-
'owner': (json['owner'] === null || json['owner'] === undefined) ? json['owner'] : (0, OwnerLink_1.OwnerLinkFromJSON)(json['owner']),
|
|
66
|
-
'transport': (json['transport'] === null || json['transport'] === undefined) ? json['transport'] : (0, CartTransport_1.CartTransportFromJSON)(json['transport']),
|
|
67
|
-
'seller': (json['seller'] === null || json['seller'] === undefined) ? json['seller'] : (0, SellerLink_1.SellerLinkFromJSON)(json['seller']),
|
|
68
35
|
'lineCount': json['lineCount'],
|
|
69
|
-
'
|
|
70
|
-
'totalBuyerCommissionExcludingTaxes': json['totalBuyerCommissionExcludingTaxes'],
|
|
71
|
-
'totalExcludingTaxes': json['totalExcludingTaxes'],
|
|
72
|
-
'totalIncludingTaxes': json['totalIncludingTaxes'],
|
|
36
|
+
'subCarts': (json['subCarts'] === null || json['subCarts'] === undefined) ? json['subCarts'] : json['subCarts'].map(HttpLink_1.HttpLinkFromJSON),
|
|
73
37
|
};
|
|
74
38
|
}
|
|
75
39
|
exports.CartFromJSONTyped = CartFromJSONTyped;
|
|
@@ -79,17 +43,8 @@ function CartToJSON(value) {
|
|
|
79
43
|
}
|
|
80
44
|
return {
|
|
81
45
|
'id': value['id'],
|
|
82
|
-
'createdAt': (value['createdAt'] === null || value['createdAt'] === undefined) ? value['createdAt'] : (value['createdAt']).toISOString(),
|
|
83
|
-
'updatedAt': (value['updatedAt'] === null || value['updatedAt'] === undefined) ? value['updatedAt'] : (value['updatedAt']).toISOString(),
|
|
84
|
-
'channel': value['channel'],
|
|
85
|
-
'owner': (0, OwnerLink_1.OwnerLinkToJSON)(value['owner']),
|
|
86
|
-
'transport': (0, CartTransport_1.CartTransportToJSON)(value['transport']),
|
|
87
|
-
'seller': (0, SellerLink_1.SellerLinkToJSON)(value['seller']),
|
|
88
46
|
'lineCount': value['lineCount'],
|
|
89
|
-
'
|
|
90
|
-
'totalBuyerCommissionExcludingTaxes': value['totalBuyerCommissionExcludingTaxes'],
|
|
91
|
-
'totalExcludingTaxes': value['totalExcludingTaxes'],
|
|
92
|
-
'totalIncludingTaxes': value['totalIncludingTaxes'],
|
|
47
|
+
'subCarts': (value['subCarts'] === null || value['subCarts'] === undefined) ? value['subCarts'] : value['subCarts'].map(HttpLink_1.HttpLinkToJSON),
|
|
93
48
|
};
|
|
94
49
|
}
|
|
95
50
|
exports.CartToJSON = CartToJSON;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { CartSubCartTransport } from './CartSubCartTransport';
|
|
13
|
+
import type { HttpLink } from './HttpLink';
|
|
14
|
+
import type { SellerLink } from './SellerLink';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface CartSubCart
|
|
19
|
+
*/
|
|
20
|
+
export interface CartSubCart {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {number}
|
|
24
|
+
* @memberof CartSubCart
|
|
25
|
+
*/
|
|
26
|
+
id: number;
|
|
27
|
+
/**
|
|
28
|
+
* Last update date of this sub cart
|
|
29
|
+
* @type {Date}
|
|
30
|
+
* @memberof CartSubCart
|
|
31
|
+
*/
|
|
32
|
+
updatedAt: Date;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {CartSubCartTransport}
|
|
36
|
+
* @memberof CartSubCart
|
|
37
|
+
*/
|
|
38
|
+
transport: CartSubCartTransport;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {SellerLink}
|
|
42
|
+
* @memberof CartSubCart
|
|
43
|
+
*/
|
|
44
|
+
seller: SellerLink;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {number}
|
|
48
|
+
* @memberof CartSubCart
|
|
49
|
+
*/
|
|
50
|
+
lineCount: number;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {HttpLink}
|
|
54
|
+
* @memberof CartSubCart
|
|
55
|
+
*/
|
|
56
|
+
lines: HttpLink;
|
|
57
|
+
/**
|
|
58
|
+
* Total buyer commission for this sub cart
|
|
59
|
+
* @type {number}
|
|
60
|
+
* @memberof CartSubCart
|
|
61
|
+
*/
|
|
62
|
+
totalBuyerCommissionExcludingTaxes: number;
|
|
63
|
+
/**
|
|
64
|
+
* Total price of the cart excluding taxes
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @memberof CartSubCart
|
|
67
|
+
*/
|
|
68
|
+
totalExcludingTaxes: number;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Check if a given object implements the CartSubCart interface.
|
|
72
|
+
*/
|
|
73
|
+
export declare function instanceOfCartSubCart(value: object): value is CartSubCart;
|
|
74
|
+
export declare function CartSubCartFromJSON(json: any): CartSubCart;
|
|
75
|
+
export declare function CartSubCartFromJSONTyped(json: any, ignoreDiscriminator: boolean): CartSubCart;
|
|
76
|
+
export declare function CartSubCartToJSON(value?: CartSubCart | null): any;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CartSubCartToJSON = exports.CartSubCartFromJSONTyped = exports.CartSubCartFromJSON = exports.instanceOfCartSubCart = void 0;
|
|
17
|
+
var CartSubCartTransport_1 = require("./CartSubCartTransport");
|
|
18
|
+
var HttpLink_1 = require("./HttpLink");
|
|
19
|
+
var SellerLink_1 = require("./SellerLink");
|
|
20
|
+
/**
|
|
21
|
+
* Check if a given object implements the CartSubCart interface.
|
|
22
|
+
*/
|
|
23
|
+
function instanceOfCartSubCart(value) {
|
|
24
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('transport' in value) || value['transport'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('seller' in value) || value['seller'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('lineCount' in value) || value['lineCount'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('lines' in value) || value['lines'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('totalBuyerCommissionExcludingTaxes' in value) || value['totalBuyerCommissionExcludingTaxes'] === undefined)
|
|
37
|
+
return false;
|
|
38
|
+
if (!('totalExcludingTaxes' in value) || value['totalExcludingTaxes'] === undefined)
|
|
39
|
+
return false;
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
exports.instanceOfCartSubCart = instanceOfCartSubCart;
|
|
43
|
+
function CartSubCartFromJSON(json) {
|
|
44
|
+
return CartSubCartFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
exports.CartSubCartFromJSON = CartSubCartFromJSON;
|
|
47
|
+
function CartSubCartFromJSONTyped(json, ignoreDiscriminator) {
|
|
48
|
+
if (json == null) {
|
|
49
|
+
return json;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'id': json['id'],
|
|
53
|
+
'updatedAt': (json['updatedAt'] === null || json['updatedAt'] === undefined) ? json['updatedAt'] : new Date(json['updatedAt']),
|
|
54
|
+
'transport': (json['transport'] === null || json['transport'] === undefined) ? json['transport'] : (0, CartSubCartTransport_1.CartSubCartTransportFromJSON)(json['transport']),
|
|
55
|
+
'seller': (json['seller'] === null || json['seller'] === undefined) ? json['seller'] : (0, SellerLink_1.SellerLinkFromJSON)(json['seller']),
|
|
56
|
+
'lineCount': json['lineCount'],
|
|
57
|
+
'lines': (json['lines'] === null || json['lines'] === undefined) ? json['lines'] : (0, HttpLink_1.HttpLinkFromJSON)(json['lines']),
|
|
58
|
+
'totalBuyerCommissionExcludingTaxes': json['totalBuyerCommissionExcludingTaxes'],
|
|
59
|
+
'totalExcludingTaxes': json['totalExcludingTaxes'],
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
exports.CartSubCartFromJSONTyped = CartSubCartFromJSONTyped;
|
|
63
|
+
function CartSubCartToJSON(value) {
|
|
64
|
+
if (value == null) {
|
|
65
|
+
return value;
|
|
66
|
+
}
|
|
67
|
+
return {
|
|
68
|
+
'id': value['id'],
|
|
69
|
+
'updatedAt': (value['updatedAt'] === null || value['updatedAt'] === undefined) ? value['updatedAt'] : (value['updatedAt']).toISOString(),
|
|
70
|
+
'transport': (0, CartSubCartTransport_1.CartSubCartTransportToJSON)(value['transport']),
|
|
71
|
+
'seller': (0, SellerLink_1.SellerLinkToJSON)(value['seller']),
|
|
72
|
+
'lineCount': value['lineCount'],
|
|
73
|
+
'lines': (0, HttpLink_1.HttpLinkToJSON)(value['lines']),
|
|
74
|
+
'totalBuyerCommissionExcludingTaxes': value['totalBuyerCommissionExcludingTaxes'],
|
|
75
|
+
'totalExcludingTaxes': value['totalExcludingTaxes'],
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
exports.CartSubCartToJSON = CartSubCartToJSON;
|
|
@@ -14,50 +14,50 @@ import type { SaleOfferLink } from './SaleOfferLink';
|
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
* @export
|
|
17
|
-
* @interface
|
|
17
|
+
* @interface CartSubCartLine
|
|
18
18
|
*/
|
|
19
|
-
export interface
|
|
19
|
+
export interface CartSubCartLine {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
22
|
* @type {number}
|
|
23
|
-
* @memberof
|
|
23
|
+
* @memberof CartSubCartLine
|
|
24
24
|
*/
|
|
25
25
|
id: number;
|
|
26
26
|
/**
|
|
27
27
|
* Quantity desired by the buyer
|
|
28
28
|
* @type {number}
|
|
29
|
-
* @memberof
|
|
29
|
+
* @memberof CartSubCartLine
|
|
30
30
|
*/
|
|
31
31
|
quantity: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {ProductLink}
|
|
35
|
-
* @memberof
|
|
35
|
+
* @memberof CartSubCartLine
|
|
36
36
|
*/
|
|
37
37
|
product: ProductLink;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {SaleOfferLink}
|
|
41
|
-
* @memberof
|
|
41
|
+
* @memberof CartSubCartLine
|
|
42
42
|
*/
|
|
43
43
|
saleOffer: SaleOfferLink;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
47
|
-
* @memberof
|
|
47
|
+
* @memberof CartSubCartLine
|
|
48
48
|
*/
|
|
49
49
|
distributionRangeId?: number;
|
|
50
50
|
/**
|
|
51
51
|
* Total price of the line excluding taxes
|
|
52
52
|
* @type {number}
|
|
53
|
-
* @memberof
|
|
53
|
+
* @memberof CartSubCartLine
|
|
54
54
|
*/
|
|
55
55
|
totalExcludingTaxes: number;
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* Check if a given object implements the
|
|
58
|
+
* Check if a given object implements the CartSubCartLine interface.
|
|
59
59
|
*/
|
|
60
|
-
export declare function
|
|
61
|
-
export declare function
|
|
62
|
-
export declare function
|
|
63
|
-
export declare function
|
|
60
|
+
export declare function instanceOfCartSubCartLine(value: object): value is CartSubCartLine;
|
|
61
|
+
export declare function CartSubCartLineFromJSON(json: any): CartSubCartLine;
|
|
62
|
+
export declare function CartSubCartLineFromJSONTyped(json: any, ignoreDiscriminator: boolean): CartSubCartLine;
|
|
63
|
+
export declare function CartSubCartLineToJSON(value?: CartSubCartLine | null): any;
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
16
|
+
exports.CartSubCartLineToJSON = exports.CartSubCartLineFromJSONTyped = exports.CartSubCartLineFromJSON = exports.instanceOfCartSubCartLine = void 0;
|
|
17
17
|
var ProductLink_1 = require("./ProductLink");
|
|
18
18
|
var SaleOfferLink_1 = require("./SaleOfferLink");
|
|
19
19
|
/**
|
|
20
|
-
* Check if a given object implements the
|
|
20
|
+
* Check if a given object implements the CartSubCartLine interface.
|
|
21
21
|
*/
|
|
22
|
-
function
|
|
22
|
+
function instanceOfCartSubCartLine(value) {
|
|
23
23
|
if (!('id' in value) || value['id'] === undefined)
|
|
24
24
|
return false;
|
|
25
25
|
if (!('quantity' in value) || value['quantity'] === undefined)
|
|
@@ -32,12 +32,12 @@ function instanceOfCartLine(value) {
|
|
|
32
32
|
return false;
|
|
33
33
|
return true;
|
|
34
34
|
}
|
|
35
|
-
exports.
|
|
36
|
-
function
|
|
37
|
-
return
|
|
35
|
+
exports.instanceOfCartSubCartLine = instanceOfCartSubCartLine;
|
|
36
|
+
function CartSubCartLineFromJSON(json) {
|
|
37
|
+
return CartSubCartLineFromJSONTyped(json, false);
|
|
38
38
|
}
|
|
39
|
-
exports.
|
|
40
|
-
function
|
|
39
|
+
exports.CartSubCartLineFromJSON = CartSubCartLineFromJSON;
|
|
40
|
+
function CartSubCartLineFromJSONTyped(json, ignoreDiscriminator) {
|
|
41
41
|
if (json == null) {
|
|
42
42
|
return json;
|
|
43
43
|
}
|
|
@@ -50,8 +50,8 @@ function CartLineFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
50
|
'totalExcludingTaxes': json['totalExcludingTaxes'],
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
|
-
exports.
|
|
54
|
-
function
|
|
53
|
+
exports.CartSubCartLineFromJSONTyped = CartSubCartLineFromJSONTyped;
|
|
54
|
+
function CartSubCartLineToJSON(value) {
|
|
55
55
|
if (value == null) {
|
|
56
56
|
return value;
|
|
57
57
|
}
|
|
@@ -64,4 +64,4 @@ function CartLineToJSON(value) {
|
|
|
64
64
|
'totalExcludingTaxes': value['totalExcludingTaxes'],
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
|
-
exports.
|
|
67
|
+
exports.CartSubCartLineToJSON = CartSubCartLineToJSON;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CartSubCartLineUpdateParameters
|
|
16
|
+
*/
|
|
17
|
+
export interface CartSubCartLineUpdateParameters {
|
|
18
|
+
/**
|
|
19
|
+
* Identifier of the distributed range to change in cart line
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof CartSubCartLineUpdateParameters
|
|
22
|
+
*/
|
|
23
|
+
distributedRangeId?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Quantity to change in cart line
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CartSubCartLineUpdateParameters
|
|
28
|
+
*/
|
|
29
|
+
quantity: number;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the CartSubCartLineUpdateParameters interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfCartSubCartLineUpdateParameters(value: object): value is CartSubCartLineUpdateParameters;
|
|
35
|
+
export declare function CartSubCartLineUpdateParametersFromJSON(json: any): CartSubCartLineUpdateParameters;
|
|
36
|
+
export declare function CartSubCartLineUpdateParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): CartSubCartLineUpdateParameters;
|
|
37
|
+
export declare function CartSubCartLineUpdateParametersToJSON(value?: CartSubCartLineUpdateParameters | null): any;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CartSubCartLineUpdateParametersToJSON = exports.CartSubCartLineUpdateParametersFromJSONTyped = exports.CartSubCartLineUpdateParametersFromJSON = exports.instanceOfCartSubCartLineUpdateParameters = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CartSubCartLineUpdateParameters interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCartSubCartLineUpdateParameters(value) {
|
|
21
|
+
if (!('quantity' in value) || value['quantity'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfCartSubCartLineUpdateParameters = instanceOfCartSubCartLineUpdateParameters;
|
|
26
|
+
function CartSubCartLineUpdateParametersFromJSON(json) {
|
|
27
|
+
return CartSubCartLineUpdateParametersFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.CartSubCartLineUpdateParametersFromJSON = CartSubCartLineUpdateParametersFromJSON;
|
|
30
|
+
function CartSubCartLineUpdateParametersFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'distributedRangeId': json['distributedRangeId'],
|
|
36
|
+
'quantity': json['quantity'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.CartSubCartLineUpdateParametersFromJSONTyped = CartSubCartLineUpdateParametersFromJSONTyped;
|
|
40
|
+
function CartSubCartLineUpdateParametersToJSON(value) {
|
|
41
|
+
if (value == null) {
|
|
42
|
+
return value;
|
|
43
|
+
}
|
|
44
|
+
return {
|
|
45
|
+
'distributedRangeId': value['distributedRangeId'],
|
|
46
|
+
'quantity': value['quantity'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
exports.CartSubCartLineUpdateParametersToJSON = CartSubCartLineUpdateParametersToJSON;
|
|
@@ -12,38 +12,38 @@
|
|
|
12
12
|
/**
|
|
13
13
|
*
|
|
14
14
|
* @export
|
|
15
|
-
* @interface
|
|
15
|
+
* @interface CartSubCartTransport
|
|
16
16
|
*/
|
|
17
|
-
export interface
|
|
17
|
+
export interface CartSubCartTransport {
|
|
18
18
|
/**
|
|
19
19
|
* Minimum price to buy
|
|
20
20
|
* @type {number}
|
|
21
|
-
* @memberof
|
|
21
|
+
* @memberof CartSubCartTransport
|
|
22
22
|
*/
|
|
23
23
|
minimumPrice: number | null;
|
|
24
24
|
/**
|
|
25
|
-
* Total shipping fees price excluding taxes
|
|
25
|
+
* Total shipping fees price of the sub cart excluding taxes
|
|
26
26
|
* @type {number}
|
|
27
|
-
* @memberof
|
|
27
|
+
* @memberof CartSubCartTransport
|
|
28
28
|
*/
|
|
29
29
|
totalShippingFeesExcludingTaxes: number;
|
|
30
30
|
/**
|
|
31
31
|
* Limit in euro (totalExcludingTaxes) to achieve to have free shipping fees. If no free carriage threshold reachable, value is null.
|
|
32
32
|
* @type {number}
|
|
33
|
-
* @memberof
|
|
33
|
+
* @memberof CartSubCartTransport
|
|
34
34
|
*/
|
|
35
35
|
freeCarriageThreshold: number | null;
|
|
36
36
|
/**
|
|
37
37
|
* Delivery delay in days
|
|
38
38
|
* @type {number}
|
|
39
|
-
* @memberof
|
|
39
|
+
* @memberof CartSubCartTransport
|
|
40
40
|
*/
|
|
41
41
|
deliveryDelay: number;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
* Check if a given object implements the
|
|
44
|
+
* Check if a given object implements the CartSubCartTransport interface.
|
|
45
45
|
*/
|
|
46
|
-
export declare function
|
|
47
|
-
export declare function
|
|
48
|
-
export declare function
|
|
49
|
-
export declare function
|
|
46
|
+
export declare function instanceOfCartSubCartTransport(value: object): value is CartSubCartTransport;
|
|
47
|
+
export declare function CartSubCartTransportFromJSON(json: any): CartSubCartTransport;
|
|
48
|
+
export declare function CartSubCartTransportFromJSONTyped(json: any, ignoreDiscriminator: boolean): CartSubCartTransport;
|
|
49
|
+
export declare function CartSubCartTransportToJSON(value?: CartSubCartTransport | null): any;
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
16
|
+
exports.CartSubCartTransportToJSON = exports.CartSubCartTransportFromJSONTyped = exports.CartSubCartTransportFromJSON = exports.instanceOfCartSubCartTransport = void 0;
|
|
17
17
|
/**
|
|
18
|
-
* Check if a given object implements the
|
|
18
|
+
* Check if a given object implements the CartSubCartTransport interface.
|
|
19
19
|
*/
|
|
20
|
-
function
|
|
20
|
+
function instanceOfCartSubCartTransport(value) {
|
|
21
21
|
if (!('minimumPrice' in value) || value['minimumPrice'] === undefined)
|
|
22
22
|
return false;
|
|
23
23
|
if (!('totalShippingFeesExcludingTaxes' in value) || value['totalShippingFeesExcludingTaxes'] === undefined)
|
|
@@ -28,12 +28,12 @@ function instanceOfCartTransport(value) {
|
|
|
28
28
|
return false;
|
|
29
29
|
return true;
|
|
30
30
|
}
|
|
31
|
-
exports.
|
|
32
|
-
function
|
|
33
|
-
return
|
|
31
|
+
exports.instanceOfCartSubCartTransport = instanceOfCartSubCartTransport;
|
|
32
|
+
function CartSubCartTransportFromJSON(json) {
|
|
33
|
+
return CartSubCartTransportFromJSONTyped(json, false);
|
|
34
34
|
}
|
|
35
|
-
exports.
|
|
36
|
-
function
|
|
35
|
+
exports.CartSubCartTransportFromJSON = CartSubCartTransportFromJSON;
|
|
36
|
+
function CartSubCartTransportFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
37
|
if (json == null) {
|
|
38
38
|
return json;
|
|
39
39
|
}
|
|
@@ -44,8 +44,8 @@ function CartTransportFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
44
44
|
'deliveryDelay': json['deliveryDelay'],
|
|
45
45
|
};
|
|
46
46
|
}
|
|
47
|
-
exports.
|
|
48
|
-
function
|
|
47
|
+
exports.CartSubCartTransportFromJSONTyped = CartSubCartTransportFromJSONTyped;
|
|
48
|
+
function CartSubCartTransportToJSON(value) {
|
|
49
49
|
if (value == null) {
|
|
50
50
|
return value;
|
|
51
51
|
}
|
|
@@ -56,4 +56,4 @@ function CartTransportToJSON(value) {
|
|
|
56
56
|
'deliveryDelay': value['deliveryDelay'],
|
|
57
57
|
};
|
|
58
58
|
}
|
|
59
|
-
exports.
|
|
59
|
+
exports.CartSubCartTransportToJSON = CartSubCartTransportToJSON;
|